blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
5
146
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
7
license_type
stringclasses
2 values
repo_name
stringlengths
6
79
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
4 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.07k
426M
star_events_count
int64
0
27
fork_events_count
int64
0
12
gha_license_id
stringclasses
3 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
6 values
src_encoding
stringclasses
26 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
20
6.28M
extension
stringclasses
20 values
content
stringlengths
20
6.28M
authors
sequencelengths
1
16
author_lines
sequencelengths
1
16
33ba05a5f184cd79ba0d85e9aa4c734d189bb167
4b0f51aeecddecf3f57a29ffa7a184ae48f1dc61
/CleanProject/OgreMaxLoader/Include/Utilities.cpp
4b74477f80bff36e1eb087aeb7e05b92ea7dbef5
[]
no_license
bahao247/apeengine2
56560dbf6d262364fbc0f9f96ba4231e5e4ed301
f2617b2a42bdf2907c6d56e334c0d027fb62062d
refs/heads/master
2021-01-10T14:04:02.319337
2009-08-26T08:23:33
2009-08-26T08:23:33
45,979,392
0
1
null
null
null
null
UTF-8
C++
false
false
3,234
cpp
/* * OgreMaxViewer - An Ogre 3D-based viewer for .scene and .mesh files * Copyright 2008 Derek Nedelman * * This code is available under the OgreMax Free License: * -You may use this code for any purpose, commercial or non-commercial. * -If distributing derived works (that use this source code) in binary or source code form, * you must give the following credit in your work's end-user documentation: * "Portions of this work provided by OgreMax (www.ogremax.com)" * * Derek Nedelman assumes no responsibility for any harm caused by using this code. * * OgreMaxViewer was written by Derek Nedelman and released at www.ogremax.com */ //Includes--------------------------------------------------------------------- #include "Utilities.hpp" using namespace Ogre; using namespace OgreMax; //Implementation--------------------------------------------------------------- #if OGRE_PLATFORM == OGRE_PLATFORM_APPLE #include <CoreFoundation/CoreFoundation.h> // This function will locate the path to our application on OS X, // unlike windows you can not rely on the curent working directory // for locating your configuration files and resources. String Utilities::GetMacBundlePath() { char path[1024]; CFBundleRef mainBundle = CFBundleGetMainBundle(); assert(mainBundle); CFURLRef mainBundleURL = CFBundleCopyBundleURL(mainBundle); assert(mainBundleURL); CFStringRef cfStringRef = CFURLCopyFileSystemPath( mainBundleURL, kCFURLPOSIXPathStyle); assert(cfStringRef); CFStringGetCString(cfStringRef, path, 1024, kCFStringEncodingASCII); CFRelease(mainBundleURL); CFRelease(cfStringRef); return String(path); } #endif String Utilities::GetApplicationResourcesPath() { #if OGRE_PLATFORM == OGRE_PLATFORM_APPLE return GetMacBundlePath() + "/Contents/Resources/"; #else return StringUtil::BLANK; #endif } bool Utilities::EndsWithNoCase(const String& text, const String& endsWith) { bool result = false; size_t textLength = text.length(); size_t endsWithLength = endsWith.length(); if (endsWithLength <= textLength) { //Get the end string, lowercase String end = text.substr(textLength - endsWithLength); StringUtil::toLowerCase(end); //Get the 'ends with' string, lowercase String endsWithLower = endsWith; StringUtil::toLowerCase(endsWithLower); result = end == endsWithLower; } return result; } bool Utilities::ImageCodecCanCode(const Ogre::String& name) { if (name == "dds" || name == "cut" || name == "g3" || name == "gif" || name == "hdr" || name == "ico" || name == "iff" || name == "jng" || name == "koa" || name == "lbm" || name == "mng" || name == "pcd" || name == "pcx" || name == "psd" || name == "ras" || name == "sgi" || name == "wap" || name == "wbm" || name == "wbmp" || name == "xbm") { return false; } else return true; }
[ "pablosn@06488772-1f9a-11de-8b5c-13accb87f508" ]
[ [ [ 1, 110 ] ] ]
12f4f9559d73d877907da1b24588314d6b9e2af9
a6a5c29ab75e58093e813afc951f08222001c38d
/TCC/include/core/ComponentSkeleton.h
5af1d7161d888363ecebfac09dd1246531edf4b1
[]
no_license
voidribeiro/jogoshadow
b066bc75cc24c0f50b6243f91d91e286c0d997c7
946a4648ac420cb8988267f69c42688a0bc5ba6f
refs/heads/master
2016-09-05T23:42:09.869743
2010-02-25T12:17:06
2010-02-25T12:17:06
32,122,243
0
0
null
null
null
null
UTF-8
C++
false
false
3,937
h
#ifndef _COMPONENTSKELETON_H_ #define _COMPONENTSKELETON_H_ #include "AbstractComponent.h" #include "TextureManager.h" #include "Skeleton.h" using namespace irr; using namespace scene; using namespace video; using namespace core; class ComponentSkeleton : public AbstractComponent{ private: bool isVisible; IAnimatedMesh* mesh; IAnimatedMeshSceneNode* node; // speed variable u32 speed; core::array<core::vector3df> bonesOsci; core::array<core::vector3df> bonesOsciPos; void animWalk(); void animRun(); void animStand(); void animJump(); void animBackward(); void animStrafeLeft(); void animStrafeRight(); void animHead(core::position2di pos); void init(scene::IAnimatedMeshSceneNode *node, u32 setSpeed); void animInterpolation(); bool enableInterpolation; u32 interpolationCount; CSK_ANIM animType; CSK_ANIM lastAnimType; // storing bone names core::array<irr::c8*> boneName; // storing bone scene nodes core::array<scene::IBoneSceneNode*> bones; // storing bone rotations for stand position core::array<core::vector3df> bonesRot; // storing bone positions core::array<core::vector3df> bonesPos; // motion variable u32 i,k,a,b,c; u32 kTemp; // oscillation functions f32 alpha, gamma; f32 sinAlpha, sinGamma; f32 sinAlphaTwo; f32 cosAlpha; // player velocity core::vector3df skeletonVelocity; core::vector3df matrixRotation(core::vector3df rotation, core::vector3df vec); core::vector3df* destination; public: // constructor explicit ComponentSkeleton(); // node = player scene node with bones // setSpeed = how fast should the animation run // caution: you should only take numbers between 2 and 50 explicit ComponentSkeleton(const std::string filename, const u32 speed=8); // destructor virtual ~ComponentSkeleton(); // set the type of animation void setAnimType(CSK_ANIM setAnimType); // get the current animation type CSK_ANIM getAnimType() const{ return animType; } // animates the skeleton void animSkeleton(); // returns skeleton scene node scene::IAnimatedMeshSceneNode *getSkeletonSceneNode(); // returns motion variable u32 getMotionVariable(); // return the second motion variable u32 getSecondMotionVariable(); // return player velocity core::vector3df getSkeletonVelocity() const{return skeletonVelocity;} virtual void Update(); virtual void Draw(); void WalkTo(vector3df pos); int GetType() { return CSKELETON; }; const char* GetTypeName() { return "ComponentSkeleton"; }; void SetVisible(bool visible){ isVisible = visible; } int IsWalking(); //TODO - This method should never exist void SetPosition(const core::vector3df &newpos); }; class ComponentSkeletonBinder{ public: static int registerFunctions(lua_State* L); static int bnd_Instantiate (lua_State* L); static int bnd_DontDestroy (lua_State* L); static int bnd_AddTo (lua_State* L); static int bnd_SetVisible (lua_State* L); static int bnd_WalkTo (lua_State* L); static int bnd_IsWalking (lua_State* L); static int bnd_GetFrom (lua_State* L); static int bnd_SetPosition (lua_State* L); }; static const luaL_reg componentSkeletonFunctions[] = { {"Instantiate", ComponentSkeletonBinder::bnd_Instantiate}, {"AddTo", ComponentSkeletonBinder::bnd_AddTo}, {"SetVisible", ComponentSkeletonBinder::bnd_SetVisible}, {"WalkTo", ComponentSkeletonBinder::bnd_WalkTo}, {"IsWalking", ComponentSkeletonBinder::bnd_IsWalking}, {"GetFrom", ComponentSkeletonBinder::bnd_GetFrom}, {"SetPosition", ComponentSkeletonBinder::bnd_SetPosition}, {NULL, NULL} }; #endif
[ "suisen.no.ryuu@17fd7b7e-20b4-11de-a108-cd2f117ce590", "rafarlira@17fd7b7e-20b4-11de-a108-cd2f117ce590" ]
[ [ [ 1, 118 ], [ 121, 132 ], [ 134, 142 ], [ 144, 146 ] ], [ [ 119, 120 ], [ 133, 133 ], [ 143, 143 ], [ 147, 148 ] ] ]
fd5a6abb9606b2f23d87a9e01bb44b1e1ff4511e
6e563096253fe45a51956dde69e96c73c5ed3c18
/NBPlayer/ResManage.cpp
4e0df4ea3c597ec6020d72359f378c6f73408983
[]
no_license
15831944/phoebemail
0931b76a5c52324669f902176c8477e3bd69f9b1
e10140c36153aa00d0251f94bde576c16cab61bd
refs/heads/master
2023-03-16T00:47:40.484758
2010-10-11T02:31:02
2010-10-11T02:31:02
null
0
0
null
null
null
null
GB18030
C++
false
false
4,261
cpp
#include "StdAfx.h" #include "ResManage.h" #include <assert.h> #include "SingleZenoLock.h" #include "PlaySDK.h" #include "NBPlayer.h" CResManage CResManage::m_staticThis; CResManage::CResManage(void) { m_bManageInit = false; } CResManage::~CResManage(void) { UnInitManage(); } CResManage* CResManage::Instance() { return &m_staticThis; } bool CResManage::InitManage() { m_bManageInit = true; return true; } void CResManage::UnInitManage() { m_bManageInit = false; ClearAllResource(); } void CResManage::SaveRander(HWND hWnd, VideoRender* pRander) { if (m_bManageInit) { //渲染对象将不做存储 if (false) { CSingleZenoLock lock(m_mtxRander); m_mapRander[hWnd].push_front(pRander); } else { delete pRander; } } else { delete pRander; } } VideoRender* CResManage::LoadRander(HWND hWnd) { if (m_bManageInit == false) { return NULL; } CSingleZenoLock lock(m_mtxRander); map<HWND, list<VideoRender*> >::iterator iter = m_mapRander.find(hWnd); if (iter == m_mapRander.end()) { return NULL; } list<VideoRender*>& listRander = iter->second; VideoRender* pRet = listRander.front(); listRander.pop_front(); if (listRander.empty()) { m_mapRander.erase(iter); } return pRet; } void CResManage::SavePort(int nDevType, int nPort, uint32 nBufSize) { if (m_bManageInit) { if (nDevType == StreamSourceType_Dahua) { //海康的通道不做缓冲 PlaySDK_ClearBufData(nDevType, nPort); CSingleZenoLock lock(m_mtxPort); m_listPort[nDevType].push_front(nPort); m_listPortBufSize[nDevType].push_front(nBufSize); return; } } PlaySDK_CloseStream(nDevType, nPort); CNBPlayer::UnusePort(nDevType, nPort); } int CResManage::LoadPort(int nDevType, uint32 nBufSize) { if (m_bManageInit == false) { return -1; } CSingleZenoLock lock(m_mtxPort); list<int>::iterator iter1 = m_listPort[nDevType].begin(); list<uint32>::iterator iter2 = m_listPortBufSize[nDevType].begin(); while (iter1 != m_listPort[nDevType].end()) { if ((*iter2) == nBufSize) { int nRet = *iter1; m_listPort[nDevType].erase(iter1); m_listPortBufSize[nDevType].erase(iter2); return nRet; } ++iter1; ++iter2; } if (m_listPort[nDevType].empty() == false) { //防止存储的过长,这里减掉一个 int nPort = m_listPort[nDevType].front(); m_listPort[nDevType].pop_front(); m_listPortBufSize[nDevType].pop_front(); lock.release(); PlaySDK_CloseStream(nDevType, nPort); CNBPlayer::UnusePort(nDevType, nPort); } return -1; } void CResManage::SaveFrameBuffer(char* pBuf) { if (m_bManageInit) { CSingleZenoLock lock(m_mtxFrameBuffer); m_listFrameBuffer.push_front(pBuf); } else { delete pBuf; } } char* CResManage::LoadFrameBuffer() { if (m_bManageInit == false) { return NULL; } CSingleZenoLock lock(m_mtxFrameBuffer); if (m_listFrameBuffer.empty()) { return NULL; } char* pRet = m_listFrameBuffer.front(); m_listFrameBuffer.pop_front(); return pRet; } void CResManage::ClearAllResource() { map<HWND, list<VideoRender*> > mapRander; CSingleZenoLock lock1(m_mtxRander); mapRander.swap(m_mapRander); lock1.release(); for (map<HWND, list<VideoRender*> >::iterator iter = mapRander.begin();iter != mapRander.end();++iter) { list<VideoRender*>& listRander = iter->second; for (list<VideoRender*>::iterator iter1 = listRander.begin();iter1 != listRander.end();++iter1) { delete *iter1; } } list<int> listPort[StreamSourceType_Num]; CSingleZenoLock lock2(m_mtxPort); for (int i = 0;i < StreamSourceType_Num;i++) { listPort[i].swap(m_listPort[i]); } lock2.release(); for (int i = 0;i < StreamSourceType_Num;i++) { for (list<int>::iterator iter = listPort[i].begin();iter != listPort[i].end();++iter) { PlaySDK_CloseStream(i, *iter); CNBPlayer::UnusePort(i, *iter); } } list<char*> listBuf; CSingleZenoLock lock3(m_mtxFrameBuffer); listBuf.swap(m_listFrameBuffer); lock3.release(); for (list<char*>::iterator iter = listBuf.begin();iter != listBuf.end();++iter) { delete *iter; } }
[ "guoqiao@a83c37f4-16cc-5f24-7598-dca3a346d5dd" ]
[ [ [ 1, 209 ] ] ]
9c4ad3f7796d3e1147f394299a05e860234ff84f
478570cde911b8e8e39046de62d3b5966b850384
/apicompatanamdw/bcdrivers/os/ossrv/stdlibs/apps/libpthread/testsemdestroy/inc/tsemdestroyserver.h
ac497233ee9e6def2d157ae3a78ac83602ed0a12
[]
no_license
SymbianSource/oss.FCL.sftools.ana.compatanamdw
a6a8abf9ef7ad71021d43b7f2b2076b504d4445e
1169475bbf82ebb763de36686d144336fcf9d93b
refs/heads/master
2020-12-24T12:29:44.646072
2010-11-11T14:03:20
2010-11-11T14:03:20
72,994,432
0
0
null
null
null
null
UTF-8
C++
false
false
821
h
/* * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" * which accompanies this distribution, and is available * at the URL "http://www.eclipse.org/legal/epl-v10.html". * * Initial Contributors: * Nokia Corporation - initial contribution. * * Contributors: * * Description: * */ #ifndef __TSEMDESTROYSERVER_H__ #define __TSEMDESTROYSERVER_H__ #include <f32file.h> #include <test/TestExecuteServerBase.h> class CSemdestroyTestServer : public CTestServer { public: static CSemdestroyTestServer* NewL(); virtual CTestStep* CreateTestStep(const TDesC& aStepName); RFs& Fs() {return iFs;} private: RFs iFs; }; #endif //
[ "none@none" ]
[ [ [ 1, 36 ] ] ]
4f36274bd834e9d8df34300fe8100af92799f397
e947bc69d8ee60ab0f1ccf28c9943027fa43f397
/YJListWnd.h
7e5ae9727e441bdbb05d0561185ac958e34098f3
[]
no_license
losywee/yjui
fc33d8034d707a6663afef6cb8b55b1483992fc5
caeea083b91597f7f3c46cb9e69dcb009258649a
refs/heads/master
2021-01-10T07:35:15.909900
2010-04-01T09:14:23
2010-04-01T09:14:23
45,093,947
0
0
null
null
null
null
UTF-8
C++
false
false
3,576
h
#pragma once #include <afxtempl.h> #define LIST_SELECTED WM_USER + 1200 #define LIST_SELECT_CHANGED WM_USER + 1201 class CYJDropScrollBar : public CScrollBar { DECLARE_DYNAMIC(CYJDropScrollBar) private: BOOL m_bTracking; BOOL m_bIsCapture; public: CYJDropScrollBar(); virtual ~CYJDropScrollBar(); protected: DECLARE_MESSAGE_MAP() public: afx_msg void OnMouseMove(UINT nFlags, CPoint point); afx_msg LRESULT OnMouseLeave(WPARAM wParam, LPARAM lParam); }; #pragma pack(1) typedef struct _LIST_ITEM { _LIST_ITEM(LPCTSTR szText = NULL, LPCTSTR szNote = NULL) : strItemText(szText),strNote(szNote) {} //_LIST_ITEM(_LIST_ITEM item){strItemText = item.strItemText;strNote = item.strNote;} CString strItemText; CString strNote; }LIST_ITEM; #pragma pack() typedef CArray<LIST_ITEM,LIST_ITEM&> CItemArray; class AFX_EXT_CLASS CYJListWnd : public CWnd { DECLARE_DYNAMIC(CYJListWnd) private: CWnd* m_pParent; CYJDropScrollBar m_ctrlVertBar; BOOL m_bIsInit; COLORREF m_clrText; int m_nRowHeight; int m_nCurSel; int m_nVisibleItemCount; int m_nTopIndex; BOOL m_bIsCapture; BOOL m_bTracking; BOOL m_bSizing; int m_nMouseDiffX; int m_nMouseDiffY; CDC* m_pDesktopDC; CRect m_rcOldFocusRect; int m_cxScreen; int m_cyScreen; CItemArray m_arrItemList; CItemArray m_arrItemDisplayList; CRect m_rcWnd; BOOL m_bIsFirstShow; int m_nMinHeight; void SetScroller(); public: CYJListWnd(); virtual ~CYJListWnd(); void Init(CWnd* pParent); void AddString(LPCTSTR szText, LPCTSTR szNote = NULL); void AddStrings(CItemArray& arrItem); void RemoveAll(){m_arrItemList.RemoveAll();m_arrItemDisplayList.RemoveAll();} void SetTextColor(COLORREF clrText, BOOL bRepaint = FALSE); void SetRowHeight(int nHeight, BOOL bRepaint = FALSE); void SetTopIndex(int nTopIndex, BOOL bRepaint = FALSE); void StartCapture(); int FindLikeString(const CString str); void FindAll(); void CalculateWindowRect(); COLORREF GetTextColor(){return m_clrText;} int GetRowHeight(){return m_nRowHeight;} int GetTopIndex(){return m_nTopIndex;} int GetItemCount(){return (int)m_arrItemDisplayList.GetCount();} void GetString(CString& strOut, int nItem); static int CompareString(const void* p1, const void* p2); protected: DECLARE_MESSAGE_MAP() virtual void DrawItem(CDC* pDC, int nWidth); virtual void DrawSize(CDC* pDC, CRect& rect); virtual void SortString(CArray<LIST_ITEM,LIST_ITEM&>& arrList); int HitTest(CPoint ptPoint); long GetScrollBarWidth(); public: afx_msg void OnPaint(); afx_msg void OnShowWindow(BOOL bShow, UINT nStatus); afx_msg void OnKillFocus(CWnd* pNewWnd); afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message); afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags); virtual BOOL PreTranslateMessage(MSG* pMsg); afx_msg UINT OnNcHitTest(CPoint point); afx_msg BOOL OnEraseBkgnd(CDC* pDC); afx_msg void OnSize(UINT nType, int cx, int cy); afx_msg void OnGetMinMaxInfo(MINMAXINFO* lpMMI); afx_msg void OnMouseMove(UINT nFlags, CPoint point); afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar); afx_msg void OnLButtonUp(UINT nFlags, CPoint point); afx_msg void OnLButtonDown(UINT nFlags, CPoint point); afx_msg LRESULT OnMouseLeave(WPARAM wParam, LPARAM lParam); afx_msg LRESULT OnMouseHover(WPARAM wParam, LPARAM lParam); afx_msg void OnRButtonDown(UINT nFlags, CPoint point); };
[ "Caiyj.84@3d1e88fc-ca97-11de-9d4f-f947ee5921c8" ]
[ [ [ 1, 121 ] ] ]
d4e5b38b6a74a2edcefb31cc6743eceb9c51e968
3c4f5bd6d7ac3878c181fb05ab41c1d755ddf343
/HWHash.cpp
b6f51013b5466c765344b15072e953ec04c86efa
[]
no_license
imcooder/public
1078df18c1459e67afd1200346dd971ea3b71933
be947923c6e2fbd9c993a41115ace3e32dad74bf
refs/heads/master
2021-05-28T08:43:00.027020
2010-07-24T07:39:51
2010-07-24T07:39:51
32,301,120
2
1
null
null
null
null
UTF-8
C++
false
false
2,354
cpp
#include "stdafx.h" #include "HWHash.h" #include <StrSafe.h> unsigned long HWSDBMHash(const char *str) { unsigned long hash = 0; while (*str) { hash = (*str++) + (hash << 6) + (hash << 16) - hash; } return (hash & 0x7FFFFFFF); } // RS Hash unsigned long HWRSHash(const char *str) { unsigned long b = 378551; unsigned long a = 63689; unsigned long hash = 0; while (*str) { hash = hash * a + (*str++); a *= b; } return (hash & 0x7FFFFFFF); } // JS Hash unsigned long HWJSHash(const char *str) { unsigned long hash = 1315423911; while (*str) { hash ^= ((hash << 5) + (*str++) + (hash >> 2)); } return (hash & 0x7FFFFFFF); } // P. J. Weinberger Hash unsigned long HWPJWHash(const char *str) { unsigned long BitsInUnignedInt = (unsigned int)(sizeof(unsigned int) * 8); unsigned long ThreeQuarters = (unsigned int)((BitsInUnignedInt * 3) / 4); unsigned long OneEighth = (unsigned int)(BitsInUnignedInt / 8); unsigned long HighBits = (unsigned int)(0xFFFFFFFF) << (BitsInUnignedInt - OneEighth); unsigned long hash = 0; unsigned long test = 0; while (*str) { hash = (hash << OneEighth) + (*str++); if ((test = hash & HighBits) != 0) { hash = ((hash ^ (test >> ThreeQuarters)) & (~HighBits)); } } return (hash & 0x7FFFFFFF); } // ELF Hash unsigned long HWELFHash(const char *str) { unsigned long hash = 0; unsigned long x = 0; while (*str) { hash = (hash << 4) + (*str++); if ((x = hash & 0xF0000000L) != 0) { hash ^= (x >> 24); hash &= ~x; } } return (hash & 0x7FFFFFFF); } // BKDR Hash unsigned long HWBKDRHash(const char *str) { unsigned long seed = 131; // 31 131 1313 13131 131313 etc.. unsigned long hash = 0; while (*str) { hash = hash * seed + (*str++); } return (hash & 0x7FFFFFFF); } // DJB Hash unsigned long HWDJBHash(const char *str) { unsigned long hash = 5381; while (*str) { hash += (hash << 5) + (*str++); } return (hash & 0x7FFFFFFF); } // AP Hash unsigned long HWAPHash(const char *str) { unsigned long hash = 0; long i; for (i=0; *str; i++) { if ((i & 1) == 0) { hash ^= ((hash << 7) ^ (*str++) ^ (hash >> 3)); } else { hash ^= (~((hash << 11) ^ (*str++) ^ (hash >> 5))); } } return (hash & 0x7FFFFFFF); }
[ "[email protected]@716a2f10-c84c-11dd-bf7c-81814f527a11" ]
[ [ [ 1, 117 ] ] ]
c15eafdeb37105690e858dd544fb97156c449aff
3533c9f37def95dcc9d6b530c59138f7570ca239
/guCORE/src/guCORE_CGame.cpp
5fa611fb163fdcbad5e978fa65fe1ed2d1fbac9b
[]
no_license
LiberatorUSA/GU
7e8af0dccede7edf5fc9c96c266b9888cff6d76e
2493438447e5cde3270e1c491fe2a6094dc0b4dc
refs/heads/master
2021-01-01T18:28:53.809051
2011-06-04T00:12:42
2011-06-04T00:12:42
41,840,823
0
0
null
null
null
null
UTF-8
C++
false
false
3,003
cpp
/* * guCORE: Main module of the Galaxy Unlimited system * Copyright (C) 2002 - 2008. Dinand Vanvelzen * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /*-------------------------------------------------------------------------// // // // INCLUDES // // // //-------------------------------------------------------------------------*/ #include "guCORE_CGame.h" /*-------------------------------------------------------------------------// // // // NAMESPACE // // // //-------------------------------------------------------------------------*/ namespace GU { namespace CORE { /*-------------------------------------------------------------------------// // // // CLASSES // // // //-------------------------------------------------------------------------*/ CGame::CGame( void ) {GUCEF_TRACE; } /*-------------------------------------------------------------------------*/ CGame::~CGame() {GUCEF_TRACE; } /*-------------------------------------------------------------------------*/ const CString& CGame::GetType( void ) const {GUCEF_TRACE; return GetGameTitle(); } /*-------------------------------------------------------------------------// // // // NAMESPACE // // // //-------------------------------------------------------------------------*/ }; /* namespace CORE */ }; /* namespace GU */ /*-------------------------------------------------------------------------*/
[ [ [ 1, 73 ] ] ]
2a0ee999643222611f864320730ca5a83e79ae4f
ea12fed4c32e9c7992956419eb3e2bace91f063a
/zombie/code/zombie/nfsm/src/nfsm/ntransition_cmds.cc
4c9b3b0552df643bb72571d257c2f72a74724e34
[]
no_license
ugozapad/TheZombieEngine
832492930df28c28cd349673f79f3609b1fe7190
8e8c3e6225c2ed93e07287356def9fbdeacf3d6a
refs/heads/master
2020-04-30T11:35:36.258363
2011-02-24T14:18:43
2011-02-24T14:18:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,438
cc
//----------------------------------------------------------------------------- // ntransition_cmds.cc // (C) 2005 Conjurer Services, S.A. //----------------------------------------------------------------------------- #include "precompiled/pchnfsm.h" #include "nfsm/ntransition.h" #include "nfsm/neventcondition.h" #include "nfsm/nstate.h" #include "nfsm/nfsm.h" #include "nfsmserver/nfsmserver.h" //------------------------------------------------------------------------------ /** Nebula class scripting initialization */ NSCRIPT_INITCMDS_BEGIN( nTransition ) NSCRIPT_ADDCMD('SETC', void, SetCondition, 1, (nCondition*), 0, ()); NSCRIPT_ADDCMD('GETC', nCondition*, GetCondition , 0, (), 0, ()); NSCRIPT_ADDCMD('ADDT', void, AddTarget, 2, (nState*, int), 0, ()); NSCRIPT_ADDCMD('REMT', void, RemoveTarget, 1, (nState*), 0, ()); NSCRIPT_ADDCMD('SETP', void, SetTargetProbability, 2, (const nState*, int), 0, ()); NSCRIPT_ADDCMD('GNOT', int, GetTargetsNumber , 0, (), 0, ()); NSCRIPT_ADDCMD('GTBI', nState*, GetTargetStateByIndex, 1, (int), 0, ()); NSCRIPT_ADDCMD('SSBI', void, SetTargetStateByIndex, 2, (int, nState*), 0, ()); NSCRIPT_ADDCMD('GPBI', int, GetTargetProbabilityByIndex, 1, (int), 0, ()); NSCRIPT_ADDCMD('SPBI', void, SetTargetProbabilityByIndex, 2, (int, int), 0, ()); NSCRIPT_ADDCMD('RTBI', void, RemoveTargetByIndex, 1, (int), 0, ()); NSCRIPT_ADDCMD('ESEC', void, SetEventCondition, 1, (const char*), 0, ()); NSCRIPT_ADDCMD('ESSC', void, SetScriptCondition, 1, (const char*), 0, ()); NSCRIPT_ADDCMD('ESFC', void, SetFilterCondition, 1, (const char*), 0, ()); NSCRIPT_ADDCMD('EATN', void, AddTargetByName, 4, (const char*, const char*, int, int), 0, ()); NSCRIPT_INITCMDS_END() //------------------------------------------------------------------------------ /** Nebula class persistence */ bool nTransition::SaveCmds( nPersistServer* ps ) { // Condition if ( !this->condition ) { return false; } switch ( this->condition->GetConditionType() ) { case nCondition::Event: if ( static_cast<nEventCondition*>(this->condition)->GetFilterCondition() ) { // Event conditions with filter are local to the transition ps->Put( this, 'ESFC', this->condition->GetName() ); } else { // Event conditions without filter are shared among transitions ps->Put( this, 'ESEC', this->condition->GetName() ); } break; case nCondition::Script: ps->Put( this, 'ESSC', this->condition->GetName() ); break; default: n_error( "It's just impossible to reach this line?!?! Maybe has a new condition type been added?" ); return false; } // Targets for ( int i(0); i < this->targets.Size(); ++i ) { nState* state = this->targets[i].state; nFSM* fsm = nFSMServer::Instance()->FindFSMOfState( state ); ps->Put( this, 'EATN', fsm->GetName(), state->GetName(), state->GetStateType(), this->targets[i].probability ); } return true; } //------------------------------------------------------------------------------ // EOF //------------------------------------------------------------------------------
[ "magarcias@c1fa4281-9647-0410-8f2c-f027dd5e0a91" ]
[ [ [ 1, 80 ] ] ]
e147a8ebaf5fd5711658a733b115876fc7ef3e23
0bea742434663bf4ddce7e60fe2703a05b1f1cd3
/JuceLibraryCode/BinaryData.cpp
5261aa30425be61442435f0207aa85ad8371b018
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
rspindel/SoundFXMachine
84c593542484dbec9f7d264b11342d39adb32eea
d18fc8522104fe26540d89a39e93c49cf5d31ceb
refs/heads/master
2020-12-24T21:11:23.785667
2011-04-29T03:31:48
2011-04-29T03:31:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,284,714
cpp
/* ==================================== JUCER_BINARY_RESOURCE ==================================== This is an auto-generated file, created by The Jucer V3.0.0 Do not edit anything in this file! */ #include "BinaryData.h" const char* BinaryData::getNamedResource (const char* resourceNameUTF8, int& numBytes) throw() { int hash = 0; if (resourceNameUTF8 != 0) while (*resourceNameUTF8 != 0) hash = 31 * hash + *resourceNameUTF8++; switch (hash) { case 0x8916494a: numBytes = BinaryData::libpd_dylibSize; return BinaryData::libpd_dylib; default: break; } numBytes = 0; return 0; } //================== libpd.dylib ================== static const unsigned char temp_3bcf81c2[] = { 202,254,186,190,0,0,0,2,1,0,0,7,0,0,0,3,0,0,16,0,0,16,130,200,0,0,0,12,0,0,0,7,0,0,0,3,0,16,160,0,0,14,19,212,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,250,237,254,7,0,0,1,3,0,0,0,6,0, 0,0,9,0,0,0,184,5,0,0,133,0,16,0,0,0,0,0,25,0,0,0,120,2,0,0,95,95,84,69,88,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,11,0,0,0,0,0,7,0,0,0,5,0,0,0,7,0,0,0,0,0,0,0,95,95,116,101,120,116,0,0,0,0,0,0,0,0,0,0,95,95,84,69, 88,84,0,0,0,0,0,0,0,0,0,0,168,13,0,0,0,0,0,0,28,182,8,0,0,0,0,0,168,13,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,128,0,0,0,0,0,0,0,0,0,0,0,0,95,95,115,121,109,98,111,108,95,115,116,117,98,49,0,0,95,95,84,69,88,84,0,0,0,0,0,0,0,0,0,0,196,195,8,0,0,0,0,0,154,2, 0,0,0,0,0,0,196,195,8,0,1,0,0,0,0,0,0,0,0,0,0,0,8,4,0,128,0,0,0,0,6,0,0,0,0,0,0,0,95,95,99,115,116,114,105,110,103,0,0,0,0,0,0,0,95,95,84,69,88,84,0,0,0,0,0,0,0,0,0,0,96,198,8,0,0,0,0,0,219,140,0,0,0,0,0,0,96,198,8,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,95,95,99,111,110,115,116,0,0,0,0,0,0,0,0,0,95,95,84,69,88,84,0,0,0,0,0,0,0,0,0,0,64,83,9,0,0,0,0,0,16,4,0,0,0,0,0,0,64,83,9,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,115,116,117,98,95,104,101,108,112,101,114, 0,0,0,95,95,84,69,88,84,0,0,0,0,0,0,0,0,0,0,80,87,9,0,0,0,0,0,102,4,0,0,0,0,0,0,80,87,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,128,0,0,0,0,0,0,0,0,0,0,0,0,95,95,117,110,119,105,110,100,95,105,110,102,111,0,0,0,95,95,84,69,88,84,0,0,0,0,0,0,0,0,0,0,192,91,9, 0,0,0,0,0,48,9,0,0,0,0,0,0,192,91,9,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,101,104,95,102,114,97,109,101,0,0,0,0,0,0,95,95,84,69,88,84,0,0,0,0,0,0,0,0,0,0,240,100,9,0,0,0,0,0,16,203,1,0,0,0,0,0,240,100,9,0,3,0,0,0,0,0,0,0,0,0, 0,0,11,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,216,1,0,0,95,95,68,65,84,65,0,0,0,0,0,0,0,0,0,0,0,48,11,0,0,0,0,0,0,112,0,0,0,0,0,0,0,48,11,0,0,0,0,0,0,32,0,0,0,0,0,0,7,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,95,95,110,108,95,115,121,109,98,111,108,95,112,116,114, 0,95,95,68,65,84,65,0,0,0,0,0,0,0,0,0,0,0,48,11,0,0,0,0,0,40,0,0,0,0,0,0,0,0,48,11,0,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,95,95,108,97,95,115,121,109,98,111,108,95,112,116,114,0,95,95,68,65,84,65,0,0,0,0,0,0,0,0,0,0,40,48,11,0,0, 0,0,0,120,3,0,0,0,0,0,0,40,48,11,0,2,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,95,95,100,97,116,97,0,0,0,0,0,0,0,0,0,0,95,95,68,65,84,65,0,0,0,0,0,0,0,0,0,0,160,51,11,0,0,0,0,0,208,19,0,0,0,0,0,0,160,51,11,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,98,115,115,0,0,0,0,0,0,0,0,0,0,0,95,95,68,65,84,65,0,0,0,0,0,0,0,0,0,0,128,71,11,0,0,0,0,0,12,70,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,99,111,109,109,111,110,0,0,0,0,0,0,0, 0,95,95,68,65,84,65,0,0,0,0,0,0,0,0,0,0,160,141,11,0,0,0,0,0,88,12,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,72,0,0,0,95,95,76,73,78,75,69,68,73,84,0,0,0,0,0,0,0,160,11,0,0,0,0,0,0,64,5,0,0,0,0,0,0,80,11,0,0, 0,0,0,200,50,5,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,56,0,0,0,24,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,64,108,111,97,100,101,114,95,112,97,116,104,47,108,105,98,112,100,46,100,121,108,105,98,0,0,0,0,0,0,0,0,27,0,0,0,24,0,0,0,209,51,179,217,120,78, 151,10,4,115,63,81,240,239,196,241,34,0,0,128,48,0,0,0,0,80,11,0,40,0,0,0,40,80,11,0,80,0,0,0,0,0,0,0,0,0,0,0,120,80,11,0,96,7,0,0,216,87,11,0,184,75,0,0,2,0,0,0,24,0,0,0,144,163,11,0,202,52,0,0,192,243,14,0,8,143,1,0,11,0,0,0,80,0,0,0,0,0,0,0,100,48, 0,0,100,48,0,0,243,3,0,0,87,52,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,240,14,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,56,0,0,0,24,0,0,0,2,0,0,0,1,2,125,0,0,0,1,0,47,117,115,114,47,108,105,98,47,108,105,98,83,121, 115,116,101,109,46,66,46,100,121,108,105,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,131,125,228,1,126,17,72,141,61,152,184,8,0,184,0,0,0,0,232,236,144,7,0,131,125,228,0,116,97,72,139,61,169,57,11,0,232,64,212, 6,0,72,137,69,248,72,139,117,248,72,131,198,52,72,139,125,248,232,230,192,6,0,72,139,85,216,139,117,228,191,0,0,0,0,232,26,31,6,0,72,139,69,248,243,15,17,64,52,72,139,125,248,72,141,53,50,42,11,0,232,47,197,6,0,72,139,85,248,184,0,0,0,0,137,66,48,72, 139,69,248,72,137,69,208,235,79,72,139,61,64,57,11,0,232,223,211,6,0,72,137,69,240,72,139,117,240,72,139,125,240,72,141,13,248,41,11,0,72,141,21,241,41,11,0,232,239,184,6,0,72,139,125,240,72,141,53,225,41,11,0,232,222,196,6,0,72,139,85,240,184,0,0,0, 0,137,66,48,72,139,69,240,72,137,69,208,72,139,69,208,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,72,139, 69,216,72,131,192,32,72,139,0,137,69,252,235,43,72,139,69,240,243,15,16,8,72,139,69,232,243,15,16,0,243,15,88,193,72,139,69,224,243,15,17,0,72,131,69,224,4,72,131,69,240,4,72,131,69,232,4,255,77,252,131,125,252,255,117,204,72,139,69,216,72,131,192,40, 201,195,85,72,137,229,72,137,125,152,72,139,69,152,72,131,192,8,72,139,0,72,137,69,176,72,139,69,152,72,131,192,16,72,139,0,72,137,69,168,72,139,69,152,72,131,192,24,72,139,0,72,137,69,160,72,139,69,152,72,131,192,32,72,139,0,137,69,252,233,135,1,0,0, 72,139,69,176,139,0,137,69,248,72,139,69,176,72,131,192,4,139,0,137,69,244,72,139,69,176,72,131,192,8,139,0,137,69,240,72,139,69,176,72,131,192,12,139,0,137,69,236,72,139,69,176,72,131,192,16,139,0,137,69,232,72,139,69,176,72,131,192,20,139,0,137,69, 228,72,139,69,176,72,131,192,24,139,0,137,69,224,72,139,69,176,72,131,192,28,139,0,137,69,220,72,139,69,168,139,0,137,69,216,72,139,69,168,72,131,192,4,139,0,137,69,212,72,139,69,168,72,131,192,8,139,0,137,69,208,72,139,69,168,72,131,192,12,139,0,137, 69,204,72,139,69,168,72,131,192,16,139,0,137,69,200,72,139,69,168,72,131,192,20,139,0,137,69,196,72,139,69,168,72,131,192,24,139,0,137,69,192,72,139,69,168,72,131,192,28,139,0,137,69,188,243,15,16,69,248,243,15,88,69,216,72,139,69,160,243,15,17,0,72, 139,69,160,72,131,192,4,243,15,16,69,244,243,15,88,69,212,243,15,17,0,72,139,69,160,72,131,192,8,243,15,16,69,240,243,15,88,69,208,243,15,17,0,72,139,69,160,72,131,192,12,243,15,16,69,236,243,15,88,69,204,243,15,17,0,72,139,69,160,72,131,192,16,243,15, 16,69,232,243,15,88,69,200,243,15,17,0,72,139,69,160,72,131,192,20,243,15,16,69,228,243,15,88,69,196,243,15,17,0,72,139,69,160,72,131,192,24,243,15,16,69,224,243,15,88,69,192,243,15,17,0,72,139,69,160,72,131,192,28,243,15,16,69,220,243,15,88,69,188,243, 15,17,0,131,109,252,8,72,131,69,176,32,72,131,69,168,32,72,131,69,160,32,131,125,252,0,15,133,111,254,255,255,72,139,69,152,72,131,192,40,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192, 16,72,139,0,139,0,137,69,252,72,139,69,216,72,131,192,24,72,139,0,72,137,69,232,72,139,69,216,72,131,192,32,72,139,0,137,69,248,235,31,72,139,69,240,243,15,16,0,243,15,88,69,252,72,139,69,232,243,15,17,0,72,131,69,232,4,72,131,69,240,4,255,77,248,131, 125,248,255,117,216,72,139,69,216,72,131,192,40,201,195,85,72,137,229,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,208,72,139,69,184,72,131,192,16,72,139,0,139,0,137,69,252,72,139,69,184,72,131,192,24,72,139,0,72,137,69,200,72,139,69, 184,72,131,192,32,72,139,0,137,69,248,233,30,1,0,0,72,139,69,208,139,0,137,69,244,72,139,69,208,72,131,192,4,139,0,137,69,240,72,139,69,208,72,131,192,8,139,0,137,69,236,72,139,69,208,72,131,192,12,139,0,137,69,232,72,139,69,208,72,131,192,16,139,0,137, 69,228,72,139,69,208,72,131,192,20,139,0,137,69,224,72,139,69,208,72,131,192,24,139,0,137,69,220,72,139,69,208,72,131,192,28,139,0,137,69,216,243,15,16,69,244,243,15,88,69,252,72,139,69,200,243,15,17,0,72,139,69,200,72,131,192,4,243,15,16,69,240,243, 15,88,69,252,243,15,17,0,72,139,69,200,72,131,192,8,243,15,16,69,236,243,15,88,69,252,243,15,17,0,72,139,69,200,72,131,192,12,243,15,16,69,232,243,15,88,69,252,243,15,17,0,72,139,69,200,72,131,192,16,243,15,16,69,228,243,15,88,69,252,243,15,17,0,72,139, 69,200,72,131,192,20,243,15,16,69,224,243,15,88,69,252,243,15,17,0,72,139,69,200,72,131,192,24,243,15,16,69,220,243,15,88,69,252,243,15,17,0,72,139,69,200,72,131,192,28,243,15,16,69,216,243,15,88,69,252,243,15,17,0,131,109,248,8,72,131,69,208,32,72,131, 69,200,32,131,125,248,0,15,133,216,254,255,255,72,139,69,184,72,131,192,40,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,137,77,228,139,69,228,131,224,7,133,192,116,48,139,69,228,72,139,85,232,72,139,77,240,72,139,117, 248,65,137,193,73,137,208,72,137,242,190,4,0,0,0,72,141,61,98,251,255,255,184,0,0,0,0,232,84,205,1,0,235,46,139,69,228,72,139,85,232,72,139,77,240,72,139,117,248,65,137,193,73,137,208,72,137,242,190,4,0,0,0,72,141,61,181,251,255,255,184,0,0,0,0,232,36, 205,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,16,72,139,0,72,139,80,8,72,139,69,240,72,131,192,8,72,139,0,72,139,112,8,72,139,69,240,72,139,0,72,139,120,8,232,56,255,255, 255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,76,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,8,72,139,0,72,139,112,8,72,139,125,248,72,131,199,52,72,139,69,240,72,139, 0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,227,252,255,255,184,0,0,0,0,232,111,204,1,0,235,74,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,8,72,139,0,72,139,112,8,72,139,125,248,72,131,199,52,72,139,69,240,72,139,0, 72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,15,253,255,255,184,0,0,0,0,232,35,204,1,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,47,249,255,255,72,141,61,252,177,8,0,232,145,150,6,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0, 0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,196,132,6,0,72,137,5,199,50,11,0,72,141,61,24,191,8,0,232,81,150,6,0,72,141,53,156,254,255,255,72,139,61,173,50,11,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,206,139,6,0,72,139,61,148, 50,11,0,190,48,0,0,0,232,148,147,6,0,72,141,61,130,177,8,0,232,20,150,6,0,72,137,198,72,139,61,116,50,11,0,232,184,146,6,0,72,141,61,100,177,8,0,232,249,149,6,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0, 232,49,132,6,0,72,137,5,60,50,11,0,72,139,61,53,50,11,0,190,48,0,0,0,232,45,147,6,0,72,141,61,116,190,8,0,232,173,149,6,0,72,141,53,65,254,255,255,72,139,61,17,50,11,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,42,139,6,0,72,141,61,239,176,8,0,232,129,149, 6,0,72,137,198,72,139,61,233,49,11,0,232,37,146,6,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,131,125,228,1,126,17,72,141,61,190,176,8,0,184,0,0,0,0,232,233,136,7,0,131,125,228,0,116,97,72,139,61,182, 49,11,0,232,61,204,6,0,72,137,69,248,72,139,117,248,72,131,198,52,72,139,125,248,232,227,184,6,0,72,139,85,216,139,117,228,191,0,0,0,0,232,23,23,6,0,72,139,69,248,243,15,17,64,52,72,139,125,248,72,141,53,47,34,11,0,232,44,189,6,0,72,139,85,248,184,0, 0,0,0,137,66,48,72,139,69,248,72,137,69,208,235,79,72,139,61,77,49,11,0,232,220,203,6,0,72,137,69,240,72,139,117,240,72,139,125,240,72,141,13,245,33,11,0,72,141,21,238,33,11,0,232,236,176,6,0,72,139,125,240,72,141,53,222,33,11,0,232,219,188,6,0,72,139, 85,240,184,0,0,0,0,137,66,48,72,139,69,240,72,137,69,208,72,139,69,208,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137, 69,224,72,139,69,216,72,131,192,32,72,139,0,137,69,252,235,49,72,139,69,240,243,15,16,8,72,139,69,232,243,15,16,0,15,40,209,243,15,92,208,15,40,194,72,139,69,224,243,15,17,0,72,131,69,224,4,72,131,69,240,4,72,131,69,232,4,255,77,252,131,125,252,255,117, 198,72,139,69,216,72,131,192,40,201,195,85,72,137,229,72,137,125,152,72,139,69,152,72,131,192,8,72,139,0,72,137,69,176,72,139,69,152,72,131,192,16,72,139,0,72,137,69,168,72,139,69,152,72,131,192,24,72,139,0,72,137,69,160,72,139,69,152,72,131,192,32,72, 139,0,137,69,252,233,135,1,0,0,72,139,69,176,139,0,137,69,248,72,139,69,176,72,131,192,4,139,0,137,69,244,72,139,69,176,72,131,192,8,139,0,137,69,240,72,139,69,176,72,131,192,12,139,0,137,69,236,72,139,69,176,72,131,192,16,139,0,137,69,232,72,139,69, 176,72,131,192,20,139,0,137,69,228,72,139,69,176,72,131,192,24,139,0,137,69,224,72,139,69,176,72,131,192,28,139,0,137,69,220,72,139,69,168,139,0,137,69,216,72,139,69,168,72,131,192,4,139,0,137,69,212,72,139,69,168,72,131,192,8,139,0,137,69,208,72,139, 69,168,72,131,192,12,139,0,137,69,204,72,139,69,168,72,131,192,16,139,0,137,69,200,72,139,69,168,72,131,192,20,139,0,137,69,196,72,139,69,168,72,131,192,24,139,0,137,69,192,72,139,69,168,72,131,192,28,139,0,137,69,188,243,15,16,69,248,243,15,92,69,216, 72,139,69,160,243,15,17,0,72,139,69,160,72,131,192,4,243,15,16,69,244,243,15,92,69,212,243,15,17,0,72,139,69,160,72,131,192,8,243,15,16,69,240,243,15,92,69,208,243,15,17,0,72,139,69,160,72,131,192,12,243,15,16,69,236,243,15,92,69,204,243,15,17,0,72,139, 69,160,72,131,192,16,243,15,16,69,232,243,15,92,69,200,243,15,17,0,72,139,69,160,72,131,192,20,243,15,16,69,228,243,15,92,69,196,243,15,17,0,72,139,69,160,72,131,192,24,243,15,16,69,224,243,15,92,69,192,243,15,17,0,72,139,69,160,72,131,192,28,243,15, 16,69,220,243,15,92,69,188,243,15,17,0,131,109,252,8,72,131,69,176,32,72,131,69,168,32,72,131,69,160,32,131,125,252,0,15,133,111,254,255,255,72,139,69,152,72,131,192,40,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69, 240,72,139,69,216,72,131,192,16,72,139,0,139,0,137,69,252,72,139,69,216,72,131,192,24,72,139,0,72,137,69,232,72,139,69,216,72,131,192,32,72,139,0,137,69,248,235,31,72,139,69,240,243,15,16,0,243,15,92,69,252,72,139,69,232,243,15,17,0,72,131,69,232,4,72, 131,69,240,4,255,77,248,131,125,248,255,117,216,72,139,69,216,72,131,192,40,201,195,85,72,137,229,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,208,72,139,69,184,72,131,192,16,72,139,0,139,0,137,69,252,72,139,69,184,72,131,192,24,72,139, 0,72,137,69,200,72,139,69,184,72,131,192,32,72,139,0,137,69,248,233,30,1,0,0,72,139,69,208,139,0,137,69,244,72,139,69,208,72,131,192,4,139,0,137,69,240,72,139,69,208,72,131,192,8,139,0,137,69,236,72,139,69,208,72,131,192,12,139,0,137,69,232,72,139,69, 208,72,131,192,16,139,0,137,69,228,72,139,69,208,72,131,192,20,139,0,137,69,224,72,139,69,208,72,131,192,24,139,0,137,69,220,72,139,69,208,72,131,192,28,139,0,137,69,216,243,15,16,69,244,243,15,92,69,252,72,139,69,200,243,15,17,0,72,139,69,200,72,131, 192,4,243,15,16,69,240,243,15,92,69,252,243,15,17,0,72,139,69,200,72,131,192,8,243,15,16,69,236,243,15,92,69,252,243,15,17,0,72,139,69,200,72,131,192,12,243,15,16,69,232,243,15,92,69,252,243,15,17,0,72,139,69,200,72,131,192,16,243,15,16,69,228,243,15, 92,69,252,243,15,17,0,72,139,69,200,72,131,192,20,243,15,16,69,224,243,15,92,69,252,243,15,17,0,72,139,69,200,72,131,192,24,243,15,16,69,220,243,15,92,69,252,243,15,17,0,72,139,69,200,72,131,192,28,243,15,16,69,216,243,15,92,69,252,243,15,17,0,131,109, 248,8,72,131,69,208,32,72,131,69,200,32,131,125,248,0,15,133,216,254,255,255,72,139,69,184,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,83,72,139,69,240,72,139,0,139, 8,72,139,69,240,72,131,192,16,72,139,0,72,139,112,8,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,58,251,255,255,184,0,0,0,0,232,41,197,1,0,235,81,72,139,69, 240,72,139,0,139,8,72,139,69,240,72,131,192,16,72,139,0,72,139,112,8,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,112,251,255,255,184,0,0,0,0,232,214,196,1, 0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,76,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,8,72,139,0,72,139,112,8,72,139,125,248,72,131,199,52,72,139,69,240,72,139, 0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,231,252,255,255,184,0,0,0,0,232,106,196,1,0,235,74,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,8,72,139,0,72,139,112,8,72,139,125,248,72,131,199,52,72,139,69,240,72,139,0, 72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,19,253,255,255,184,0,0,0,0,232,30,196,1,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,45,249,255,255,72,141,61,32,170,8,0,232,140,142,6,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0, 0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,191,124,6,0,72,137,5,210,42,11,0,72,139,61,203,42,11,0,190,48,0,0,0,232,187,139,6,0,72,141,61,2,183,8,0,232,59,142,6,0,72,141,53,14,254,255,255,72,139,61,167,42,11,0,185,0,0,0,0,72, 137,194,184,0,0,0,0,232,184,131,6,0,72,141,61,125,169,8,0,232,15,142,6,0,72,137,198,72,139,61,127,42,11,0,232,179,138,6,0,72,141,61,136,169,8,0,232,244,141,6,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0, 232,44,124,6,0,72,137,5,71,42,11,0,72,139,61,64,42,11,0,190,48,0,0,0,232,40,139,6,0,72,141,61,111,182,8,0,232,168,141,6,0,72,141,53,65,254,255,255,72,139,61,28,42,11,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,37,131,6,0,72,141,61,234,168,8,0,232,124,141, 6,0,72,137,198,72,139,61,244,41,11,0,232,32,138,6,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,131,125,228,1,126,17,72,141,61,216,168,8,0,184,0,0,0,0,232,228,128,7,0,131,125,228,0,116,97,72,139,61,193, 41,11,0,232,56,196,6,0,72,137,69,248,72,139,117,248,72,131,198,52,72,139,125,248,232,222,176,6,0,72,139,85,216,139,117,228,191,0,0,0,0,232,18,15,6,0,72,139,69,248,243,15,17,64,52,72,139,125,248,72,141,53,42,26,11,0,232,39,181,6,0,72,139,85,248,184,0, 0,0,0,137,66,48,72,139,69,248,72,137,69,208,235,79,72,139,61,88,41,11,0,232,215,195,6,0,72,137,69,240,72,139,117,240,72,139,125,240,72,141,13,240,25,11,0,72,141,21,233,25,11,0,232,231,168,6,0,72,139,125,240,72,141,53,217,25,11,0,232,214,180,6,0,72,139, 85,240,184,0,0,0,0,137,66,48,72,139,69,240,72,137,69,208,72,139,69,208,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137, 69,224,72,139,69,216,72,131,192,32,72,139,0,137,69,252,235,43,72,139,69,240,243,15,16,8,72,139,69,232,243,15,16,0,243,15,89,193,72,139,69,224,243,15,17,0,72,131,69,224,4,72,131,69,240,4,72,131,69,232,4,255,77,252,131,125,252,255,117,204,72,139,69,216, 72,131,192,40,201,195,85,72,137,229,72,137,125,152,72,139,69,152,72,131,192,8,72,139,0,72,137,69,176,72,139,69,152,72,131,192,16,72,139,0,72,137,69,168,72,139,69,152,72,131,192,24,72,139,0,72,137,69,160,72,139,69,152,72,131,192,32,72,139,0,137,69,252, 233,135,1,0,0,72,139,69,176,139,0,137,69,248,72,139,69,176,72,131,192,4,139,0,137,69,244,72,139,69,176,72,131,192,8,139,0,137,69,240,72,139,69,176,72,131,192,12,139,0,137,69,236,72,139,69,176,72,131,192,16,139,0,137,69,232,72,139,69,176,72,131,192,20, 139,0,137,69,228,72,139,69,176,72,131,192,24,139,0,137,69,224,72,139,69,176,72,131,192,28,139,0,137,69,220,72,139,69,168,139,0,137,69,216,72,139,69,168,72,131,192,4,139,0,137,69,212,72,139,69,168,72,131,192,8,139,0,137,69,208,72,139,69,168,72,131,192, 12,139,0,137,69,204,72,139,69,168,72,131,192,16,139,0,137,69,200,72,139,69,168,72,131,192,20,139,0,137,69,196,72,139,69,168,72,131,192,24,139,0,137,69,192,72,139,69,168,72,131,192,28,139,0,137,69,188,243,15,16,69,248,243,15,89,69,216,72,139,69,160,243, 15,17,0,72,139,69,160,72,131,192,4,243,15,16,69,244,243,15,89,69,212,243,15,17,0,72,139,69,160,72,131,192,8,243,15,16,69,240,243,15,89,69,208,243,15,17,0,72,139,69,160,72,131,192,12,243,15,16,69,236,243,15,89,69,204,243,15,17,0,72,139,69,160,72,131,192, 16,243,15,16,69,232,243,15,89,69,200,243,15,17,0,72,139,69,160,72,131,192,20,243,15,16,69,228,243,15,89,69,196,243,15,17,0,72,139,69,160,72,131,192,24,243,15,16,69,224,243,15,89,69,192,243,15,17,0,72,139,69,160,72,131,192,28,243,15,16,69,220,243,15,89, 69,188,243,15,17,0,131,109,252,8,72,131,69,176,32,72,131,69,168,32,72,131,69,160,32,131,125,252,0,15,133,111,254,255,255,72,139,69,152,72,131,192,40,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216, 72,131,192,16,72,139,0,139,0,137,69,252,72,139,69,216,72,131,192,24,72,139,0,72,137,69,232,72,139,69,216,72,131,192,32,72,139,0,137,69,248,235,31,72,139,69,240,243,15,16,0,243,15,89,69,252,72,139,69,232,243,15,17,0,72,131,69,232,4,72,131,69,240,4,255, 77,248,131,125,248,255,117,216,72,139,69,216,72,131,192,40,201,195,85,72,137,229,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,208,72,139,69,184,72,131,192,16,72,139,0,139,0,137,69,252,72,139,69,184,72,131,192,24,72,139,0,72,137,69,200, 72,139,69,184,72,131,192,32,72,139,0,137,69,248,233,30,1,0,0,72,139,69,208,139,0,137,69,244,72,139,69,208,72,131,192,4,139,0,137,69,240,72,139,69,208,72,131,192,8,139,0,137,69,236,72,139,69,208,72,131,192,12,139,0,137,69,232,72,139,69,208,72,131,192, 16,139,0,137,69,228,72,139,69,208,72,131,192,20,139,0,137,69,224,72,139,69,208,72,131,192,24,139,0,137,69,220,72,139,69,208,72,131,192,28,139,0,137,69,216,243,15,16,69,244,243,15,89,69,252,72,139,69,200,243,15,17,0,72,139,69,200,72,131,192,4,243,15,16, 69,240,243,15,89,69,252,243,15,17,0,72,139,69,200,72,131,192,8,243,15,16,69,236,243,15,89,69,252,243,15,17,0,72,139,69,200,72,131,192,12,243,15,16,69,232,243,15,89,69,252,243,15,17,0,72,139,69,200,72,131,192,16,243,15,16,69,228,243,15,89,69,252,243,15, 17,0,72,139,69,200,72,131,192,20,243,15,16,69,224,243,15,89,69,252,243,15,17,0,72,139,69,200,72,131,192,24,243,15,16,69,220,243,15,89,69,252,243,15,17,0,72,139,69,200,72,131,192,28,243,15,16,69,216,243,15,89,69,252,243,15,17,0,131,109,248,8,72,131,69, 208,32,72,131,69,200,32,131,125,248,0,15,133,216,254,255,255,72,139,69,184,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,83,72,139,69,240,72,139,0,139,8,72,139,69,240, 72,131,192,16,72,139,0,72,139,112,8,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,64,251,255,255,184,0,0,0,0,232,42,189,1,0,235,81,72,139,69,240,72,139,0,139, 8,72,139,69,240,72,131,192,16,72,139,0,72,139,112,8,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,112,251,255,255,184,0,0,0,0,232,215,188,1,0,201,195,85,72,137, 229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,76,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,8,72,139,0,72,139,112,8,72,139,125,248,72,131,199,52,72,139,69,240,72,139,0,72,139,80,8,65,137, 201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,231,252,255,255,184,0,0,0,0,232,107,188,1,0,235,74,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,8,72,139,0,72,139,112,8,72,139,125,248,72,131,199,52,72,139,69,240,72,139,0,72,139,80,8,65,137,201, 73,137,240,72,137,249,190,4,0,0,0,72,141,61,19,253,255,255,184,0,0,0,0,232,31,188,1,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,51,249,255,255,72,141,61,64,162,8,0,232,141,134,6,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185, 56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,192,116,6,0,72,137,5,227,34,11,0,72,139,61,220,34,11,0,190,48,0,0,0,232,188,131,6,0,72,141,61,3,175,8,0,232,60,134,6,0,72,141,53,14,254,255,255,72,139,61,184,34,11,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232, 185,123,6,0,72,141,61,126,161,8,0,232,16,134,6,0,72,137,198,72,139,61,144,34,11,0,232,180,130,6,0,72,141,61,168,161,8,0,232,245,133,6,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,45,116,6,0,72,137,5, 88,34,11,0,72,139,61,81,34,11,0,190,48,0,0,0,232,41,131,6,0,72,141,61,112,174,8,0,232,169,133,6,0,72,141,53,65,254,255,255,72,139,61,45,34,11,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,38,123,6,0,72,141,61,235,160,8,0,232,125,133,6,0,72,137,198,72,139, 61,5,34,11,0,232,33,130,6,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,131,125,228,1,126,17,72,141,61,248,160,8,0,184,0,0,0,0,232,229,120,7,0,131,125,228,0,116,97,72,139,61,210,33,11,0,232,57,188,6,0, 72,137,69,248,72,139,117,248,72,131,198,52,72,139,125,248,232,223,168,6,0,72,139,85,216,139,117,228,191,0,0,0,0,232,19,7,6,0,72,139,69,248,243,15,17,64,52,72,139,125,248,72,141,53,43,18,11,0,232,40,173,6,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69, 248,72,137,69,208,235,79,72,139,61,105,33,11,0,232,216,187,6,0,72,137,69,240,72,139,117,240,72,139,125,240,72,141,13,241,17,11,0,72,141,21,234,17,11,0,232,232,160,6,0,72,139,125,240,72,141,53,218,17,11,0,232,215,172,6,0,72,139,85,240,184,0,0,0,0,137, 66,48,72,139,69,240,72,137,69,208,72,139,69,208,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,72,139,69,216, 72,131,192,32,72,139,0,137,69,252,235,81,72,139,69,232,139,0,137,69,248,72,131,69,232,4,15,87,192,15,46,69,248,117,4,122,2,235,28,72,139,69,240,243,15,16,0,15,40,200,243,15,94,77,248,243,15,17,77,212,72,131,69,240,4,235,8,15,87,192,243,15,17,69,212,72, 139,69,224,243,15,16,77,212,243,15,17,8,72,131,69,224,4,255,77,252,131,125,252,255,117,166,72,139,69,216,72,131,192,40,201,195,85,72,137,229,72,131,236,104,72,137,125,152,72,139,69,152,72,131,192,8,72,139,0,72,137,69,176,72,139,69,152,72,131,192,16,72, 139,0,72,137,69,168,72,139,69,152,72,131,192,24,72,139,0,72,137,69,160,72,139,69,152,72,131,192,32,72,139,0,137,69,252,233,57,3,0,0,72,139,69,176,139,0,137,69,248,72,139,69,176,72,131,192,4,139,0,137,69,244,72,139,69,176,72,131,192,8,139,0,137,69,240, 72,139,69,176,72,131,192,12,139,0,137,69,236,72,139,69,176,72,131,192,16,139,0,137,69,232,72,139,69,176,72,131,192,20,139,0,137,69,228,72,139,69,176,72,131,192,24,139,0,137,69,224,72,139,69,176,72,131,192,28,139,0,137,69,220,72,139,69,168,139,0,137,69, 216,72,139,69,168,72,131,192,4,139,0,137,69,212,72,139,69,168,72,131,192,8,139,0,137,69,208,72,139,69,168,72,131,192,12,139,0,137,69,204,72,139,69,168,72,131,192,16,139,0,137,69,200,72,139,69,168,72,131,192,20,139,0,137,69,196,72,139,69,168,72,131,192, 24,139,0,137,69,192,72,139,69,168,72,131,192,28,139,0,137,69,188,15,87,192,15,46,69,216,117,4,122,2,235,23,243,15,16,69,248,15,40,200,243,15,94,77,216,243,15,17,141,36,255,255,255,235,11,15,87,192,243,15,17,133,36,255,255,255,72,139,69,160,243,15,16, 141,36,255,255,255,243,15,17,8,72,139,69,160,72,131,192,4,72,137,133,40,255,255,255,15,87,192,15,46,69,212,117,4,122,2,235,23,243,15,16,69,244,15,40,200,243,15,94,77,212,243,15,17,141,52,255,255,255,235,11,15,87,192,243,15,17,133,52,255,255,255,243,15, 16,133,52,255,255,255,72,139,133,40,255,255,255,243,15,17,0,72,139,69,160,72,131,192,8,72,137,133,56,255,255,255,15,87,192,15,46,69,208,117,4,122,2,235,23,243,15,16,69,240,15,40,200,243,15,94,77,208,243,15,17,141,68,255,255,255,235,11,15,87,192,243,15, 17,133,68,255,255,255,243,15,16,133,68,255,255,255,72,139,133,56,255,255,255,243,15,17,0,72,139,69,160,72,131,192,12,72,137,133,72,255,255,255,15,87,192,15,46,69,204,117,4,122,2,235,23,243,15,16,69,236,15,40,200,243,15,94,77,204,243,15,17,141,84,255, 255,255,235,11,15,87,192,243,15,17,133,84,255,255,255,243,15,16,133,84,255,255,255,72,139,133,72,255,255,255,243,15,17,0,72,139,69,160,72,131,192,16,72,137,133,88,255,255,255,15,87,192,15,46,69,200,117,4,122,2,235,23,243,15,16,69,232,15,40,200,243,15, 94,77,200,243,15,17,141,100,255,255,255,235,11,15,87,192,243,15,17,133,100,255,255,255,243,15,16,133,100,255,255,255,72,139,133,88,255,255,255,243,15,17,0,72,139,69,160,72,131,192,20,72,137,133,104,255,255,255,15,87,192,15,46,69,196,117,4,122,2,235,23, 243,15,16,69,228,15,40,200,243,15,94,77,196,243,15,17,141,116,255,255,255,235,11,15,87,192,243,15,17,133,116,255,255,255,243,15,16,133,116,255,255,255,72,139,133,104,255,255,255,243,15,17,0,72,139,69,160,72,131,192,24,72,137,133,120,255,255,255,15,87, 192,15,46,69,192,117,4,122,2,235,20,243,15,16,69,224,15,40,200,243,15,94,77,192,243,15,17,77,132,235,8,15,87,192,243,15,17,69,132,243,15,16,69,132,72,139,133,120,255,255,255,243,15,17,0,72,139,69,160,72,131,192,28,72,137,69,136,15,87,192,15,46,69,188, 117,4,122,2,235,20,243,15,16,69,220,15,40,200,243,15,94,77,188,243,15,17,77,148,235,8,15,87,192,243,15,17,69,148,243,15,16,69,148,72,139,69,136,243,15,17,0,131,109,252,8,72,131,69,176,32,72,131,69,168,32,72,131,69,160,32,131,125,252,0,15,133,189,252, 255,255,72,139,69,152,72,131,192,40,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,139,0,137,69,252,72,139,69,216,72,131,192,24,72,139,0,72,137,69,232,72,139,69,216,72,131,192, 32,72,139,0,137,69,248,15,87,192,15,46,69,252,117,4,122,2,235,51,243,15,16,5,16,40,9,0,243,15,94,69,252,243,15,17,69,252,235,31,72,139,69,240,243,15,16,0,243,15,89,69,252,72,139,69,232,243,15,17,0,72,131,69,232,4,72,131,69,240,4,255,77,248,131,125,248, 255,117,216,72,139,69,216,72,131,192,40,201,195,85,72,137,229,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,208,72,139,69,184,72,131,192,16,72,139,0,139,0,137,69,252,72,139,69,184,72,131,192,24,72,139,0,72,137,69,200,72,139,69,184,72,131, 192,32,72,139,0,137,69,248,15,87,192,15,46,69,252,117,7,122,5,233,53,1,0,0,243,15,16,5,118,39,9,0,243,15,94,69,252,243,15,17,69,252,233,30,1,0,0,72,139,69,208,139,0,137,69,244,72,139,69,208,72,131,192,4,139,0,137,69,240,72,139,69,208,72,131,192,8,139, 0,137,69,236,72,139,69,208,72,131,192,12,139,0,137,69,232,72,139,69,208,72,131,192,16,139,0,137,69,228,72,139,69,208,72,131,192,20,139,0,137,69,224,72,139,69,208,72,131,192,24,139,0,137,69,220,72,139,69,208,72,131,192,28,139,0,137,69,216,243,15,16,69, 244,243,15,89,69,252,72,139,69,200,243,15,17,0,72,139,69,200,72,131,192,4,243,15,16,69,240,243,15,89,69,252,243,15,17,0,72,139,69,200,72,131,192,8,243,15,16,69,236,243,15,89,69,252,243,15,17,0,72,139,69,200,72,131,192,12,243,15,16,69,232,243,15,89,69, 252,243,15,17,0,72,139,69,200,72,131,192,16,243,15,16,69,228,243,15,89,69,252,243,15,17,0,72,139,69,200,72,131,192,20,243,15,16,69,224,243,15,89,69,252,243,15,17,0,72,139,69,200,72,131,192,24,243,15,16,69,220,243,15,89,69,252,243,15,17,0,72,139,69,200, 72,131,192,28,243,15,16,69,216,243,15,89,69,252,243,15,17,0,131,109,248,8,72,131,69,208,32,72,131,69,200,32,131,125,248,0,15,133,216,254,255,255,72,139,69,184,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240, 72,139,0,139,0,131,224,7,133,192,116,83,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,16,72,139,0,72,139,112,8,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72, 141,61,35,249,255,255,184,0,0,0,0,232,14,179,1,0,235,81,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,16,72,139,0,72,139,112,8,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249, 190,4,0,0,0,72,141,61,121,249,255,255,184,0,0,0,0,232,187,178,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,76,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,8,72,139,0, 72,139,112,8,72,139,125,248,72,131,199,52,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,166,252,255,255,184,0,0,0,0,232,79,178,1,0,235,74,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,8,72,139,0,72, 139,112,8,72,139,125,248,72,131,199,52,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,241,252,255,255,184,0,0,0,0,232,3,178,1,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,22,247,255,255,72,141,61,67,152, 8,0,232,113,124,6,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,164,106,6,0,72,137,5,215,24,11,0,72,139,61,208,24,11,0,190,48,0,0,0,232,160,121,6,0,72,141,61,231,164,8,0,232,32,124,6, 0,72,141,53,14,254,255,255,72,139,61,172,24,11,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,157,113,6,0,72,141,61,98,151,8,0,232,244,123,6,0,72,137,198,72,139,61,132,24,11,0,232,152,120,6,0,72,141,61,171,151,8,0,232,217,123,6,0,72,137,199,65,185,0,0,0,0, 65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,17,106,6,0,72,137,5,76,24,11,0,72,139,61,69,24,11,0,190,48,0,0,0,232,13,121,6,0,72,141,61,84,164,8,0,232,141,123,6,0,72,141,53,65,254,255,255,72,139,61,33,24,11,0,185,0,0,0,0,72,137, 194,184,0,0,0,0,232,10,113,6,0,72,141,61,207,150,8,0,232,97,123,6,0,72,137,198,72,139,61,249,23,11,0,232,5,120,6,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,131,125,228,1,126,17,72,141,61,251,150,8, 0,184,0,0,0,0,232,201,110,7,0,131,125,228,0,116,97,72,139,61,198,23,11,0,232,29,178,6,0,72,137,69,248,72,139,117,248,72,131,198,52,72,139,125,248,232,195,158,6,0,72,139,85,216,139,117,228,191,0,0,0,0,232,247,252,5,0,72,139,69,248,243,15,17,64,52,72,139, 125,248,72,141,53,15,8,11,0,232,12,163,6,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,72,137,69,208,235,79,72,139,61,93,23,11,0,232,188,177,6,0,72,137,69,240,72,139,117,240,72,139,125,240,72,141,13,213,7,11,0,72,141,21,206,7,11,0,232,204,150,6, 0,72,139,125,240,72,141,53,190,7,11,0,232,187,162,6,0,72,139,85,240,184,0,0,0,0,137,66,48,72,139,69,240,72,137,69,208,72,139,69,208,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,232,72,139,69,200,72,131,192,16,72, 139,0,72,137,69,224,72,139,69,200,72,131,192,24,72,139,0,72,137,69,216,72,139,69,200,72,131,192,32,72,139,0,137,69,252,235,81,72,139,69,232,139,0,137,69,248,72,131,69,232,4,72,139,69,224,139,0,137,69,244,72,131,69,224,4,243,15,16,69,248,15,46,69,244, 119,2,235,12,243,15,16,69,248,243,15,17,69,196,235,10,243,15,16,69,244,243,15,17,69,196,72,139,69,216,243,15,16,69,196,243,15,17,0,72,131,69,216,4,255,77,252,131,125,252,255,117,166,72,139,69,200,72,131,192,40,201,195,85,72,137,229,72,131,236,104,72, 137,125,152,72,139,69,152,72,131,192,8,72,139,0,72,137,69,176,72,139,69,152,72,131,192,16,72,139,0,72,137,69,168,72,139,69,152,72,131,192,24,72,139,0,72,137,69,160,72,139,69,152,72,131,192,32,72,139,0,137,69,252,233,9,3,0,0,72,139,69,176,139,0,137,69, 248,72,139,69,176,72,131,192,4,139,0,137,69,244,72,139,69,176,72,131,192,8,139,0,137,69,240,72,139,69,176,72,131,192,12,139,0,137,69,236,72,139,69,176,72,131,192,16,139,0,137,69,232,72,139,69,176,72,131,192,20,139,0,137,69,228,72,139,69,176,72,131,192, 24,139,0,137,69,224,72,139,69,176,72,131,192,28,139,0,137,69,220,72,139,69,168,139,0,137,69,216,72,139,69,168,72,131,192,4,139,0,137,69,212,72,139,69,168,72,131,192,8,139,0,137,69,208,72,139,69,168,72,131,192,12,139,0,137,69,204,72,139,69,168,72,131, 192,16,139,0,137,69,200,72,139,69,168,72,131,192,20,139,0,137,69,196,72,139,69,168,72,131,192,24,139,0,137,69,192,72,139,69,168,72,131,192,28,139,0,137,69,188,243,15,16,69,248,15,46,69,216,119,2,235,15,243,15,16,69,248,243,15,17,133,36,255,255,255,235, 13,243,15,16,69,216,243,15,17,133,36,255,255,255,72,139,69,160,243,15,16,133,36,255,255,255,243,15,17,0,72,139,69,160,72,131,192,4,72,137,133,40,255,255,255,243,15,16,69,244,15,46,69,212,119,2,235,15,243,15,16,69,244,243,15,17,133,52,255,255,255,235, 13,243,15,16,69,212,243,15,17,133,52,255,255,255,243,15,16,133,52,255,255,255,72,139,133,40,255,255,255,243,15,17,0,72,139,69,160,72,131,192,8,72,137,133,56,255,255,255,243,15,16,69,240,15,46,69,208,119,2,235,15,243,15,16,69,240,243,15,17,133,68,255, 255,255,235,13,243,15,16,69,208,243,15,17,133,68,255,255,255,243,15,16,133,68,255,255,255,72,139,133,56,255,255,255,243,15,17,0,72,139,69,160,72,131,192,12,72,137,133,72,255,255,255,243,15,16,69,236,15,46,69,204,119,2,235,15,243,15,16,69,236,243,15,17, 133,84,255,255,255,235,13,243,15,16,69,204,243,15,17,133,84,255,255,255,243,15,16,133,84,255,255,255,72,139,133,72,255,255,255,243,15,17,0,72,139,69,160,72,131,192,16,72,137,133,88,255,255,255,243,15,16,69,232,15,46,69,200,119,2,235,15,243,15,16,69,232, 243,15,17,133,100,255,255,255,235,13,243,15,16,69,200,243,15,17,133,100,255,255,255,243,15,16,133,100,255,255,255,72,139,133,88,255,255,255,243,15,17,0,72,139,69,160,72,131,192,20,72,137,133,104,255,255,255,243,15,16,69,228,15,46,69,196,119,2,235,15, 243,15,16,69,228,243,15,17,133,116,255,255,255,235,13,243,15,16,69,196,243,15,17,133,116,255,255,255,243,15,16,133,116,255,255,255,72,139,133,104,255,255,255,243,15,17,0,72,139,69,160,72,131,192,24,72,137,133,120,255,255,255,243,15,16,69,224,15,46,69, 192,119,2,235,12,243,15,16,69,224,243,15,17,69,132,235,10,243,15,16,69,192,243,15,17,69,132,243,15,16,69,132,72,139,133,120,255,255,255,243,15,17,0,72,139,69,160,72,131,192,28,72,137,69,136,243,15,16,69,220,15,46,69,188,119,2,235,12,243,15,16,69,220, 243,15,17,69,148,235,10,243,15,16,69,188,243,15,17,69,148,243,15,16,69,148,72,139,69,136,243,15,17,0,131,109,252,8,72,131,69,176,32,72,131,69,168,32,72,131,69,160,32,131,125,252,0,15,133,237,252,255,255,72,139,69,152,72,131,192,40,201,195,85,72,137,229, 72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,232,72,139,69,216,72,131,192,16,72,139,0,139,0,137,69,252,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,72,139,69,216,72,131,192,32,72,139,0,137,69,248,235,67,72,139,69,232,139,0,137,69, 244,72,131,69,232,4,243,15,16,69,252,15,46,69,244,119,2,235,12,243,15,16,69,252,243,15,17,69,212,235,10,243,15,16,69,244,243,15,17,69,212,72,139,69,224,243,15,16,69,212,243,15,17,0,72,131,69,224,4,255,77,248,131,125,248,255,117,180,72,139,69,216,72,131, 192,40,201,195,85,72,137,229,72,131,236,72,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,208,72,139,69,184,72,131,192,16,72,139,0,139,0,137,69,252,72,139,69,184,72,131,192,24,72,139,0,72,137,69,200,72,139,69,184,72,131,192,32,72,139,0, 137,69,248,233,130,2,0,0,72,139,69,208,139,0,137,69,244,72,139,69,208,72,131,192,4,139,0,137,69,240,72,139,69,208,72,131,192,8,139,0,137,69,236,72,139,69,208,72,131,192,12,139,0,137,69,232,72,139,69,208,72,131,192,16,139,0,137,69,228,72,139,69,208,72, 131,192,20,139,0,137,69,224,72,139,69,208,72,131,192,24,139,0,137,69,220,72,139,69,208,72,131,192,28,139,0,137,69,216,243,15,16,69,244,15,46,69,252,119,2,235,15,243,15,16,69,244,243,15,17,133,68,255,255,255,235,13,243,15,16,69,252,243,15,17,133,68,255, 255,255,72,139,69,200,243,15,16,133,68,255,255,255,243,15,17,0,72,139,69,200,72,131,192,4,72,137,133,72,255,255,255,243,15,16,69,240,15,46,69,252,119,2,235,15,243,15,16,69,240,243,15,17,133,84,255,255,255,235,13,243,15,16,69,252,243,15,17,133,84,255, 255,255,243,15,16,133,84,255,255,255,72,139,133,72,255,255,255,243,15,17,0,72,139,69,200,72,131,192,8,72,137,133,88,255,255,255,243,15,16,69,236,15,46,69,252,119,2,235,15,243,15,16,69,236,243,15,17,133,100,255,255,255,235,13,243,15,16,69,252,243,15,17, 133,100,255,255,255,243,15,16,133,100,255,255,255,72,139,133,88,255,255,255,243,15,17,0,72,139,69,200,72,131,192,12,72,137,133,104,255,255,255,243,15,16,69,232,15,46,69,252,119,2,235,15,243,15,16,69,232,243,15,17,133,116,255,255,255,235,13,243,15,16, 69,252,243,15,17,133,116,255,255,255,243,15,16,133,116,255,255,255,72,139,133,104,255,255,255,243,15,17,0,72,139,69,200,72,131,192,16,72,137,133,120,255,255,255,243,15,16,69,228,15,46,69,252,119,2,235,12,243,15,16,69,228,243,15,17,69,132,235,10,243,15, 16,69,252,243,15,17,69,132,243,15,16,69,132,72,139,133,120,255,255,255,243,15,17,0,72,139,69,200,72,131,192,20,72,137,69,136,243,15,16,69,224,15,46,69,252,119,2,235,12,243,15,16,69,224,243,15,17,69,148,235,10,243,15,16,69,252,243,15,17,69,148,243,15, 16,69,148,72,139,69,136,243,15,17,0,72,139,69,200,72,131,192,24,72,137,69,152,243,15,16,69,220,15,46,69,252,119,2,235,12,243,15,16,69,220,243,15,17,69,164,235,10,243,15,16,69,252,243,15,17,69,164,243,15,16,69,164,72,139,69,152,243,15,17,0,72,139,69,200, 72,131,192,28,72,137,69,168,243,15,16,69,216,15,46,69,252,119,2,235,12,243,15,16,69,216,243,15,17,69,180,235,10,243,15,16,69,252,243,15,17,69,180,243,15,16,69,180,72,139,69,168,243,15,17,0,131,109,248,8,72,131,69,208,32,72,131,69,200,32,131,125,248,0, 15,133,116,253,255,255,72,139,69,184,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,83,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,16,72,139,0,72,139,112,8, 72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,8,248,255,255,184,0,0,0,0,232,215,167,1,0,235,81,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,16,72,139, 0,72,139,112,8,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,94,248,255,255,184,0,0,0,0,232,132,167,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72, 137,117,240,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,76,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,8,72,139,0,72,139,112,8,72,139,125,248,72,131,199,52,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0, 0,72,141,61,91,251,255,255,184,0,0,0,0,232,24,167,1,0,235,74,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,8,72,139,0,72,139,112,8,72,139,125,248,72,131,199,52,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72, 141,61,171,251,255,255,184,0,0,0,0,232,204,166,1,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,251,245,255,255,72,141,61,45,141,8,0,232,58,113,6,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184, 0,0,0,0,232,109,95,6,0,72,137,5,176,13,11,0,72,139,61,169,13,11,0,190,48,0,0,0,232,105,110,6,0,72,141,61,176,153,8,0,232,233,112,6,0,72,141,53,14,254,255,255,72,139,61,133,13,11,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,102,102,6,0,72,141,61,43,140,8, 0,232,189,112,6,0,72,137,198,72,139,61,93,13,11,0,232,97,109,6,0,72,141,61,149,140,8,0,232,162,112,6,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,218,94,6,0,72,137,5,37,13,11,0,72,139,61,30,13,11,0,190, 48,0,0,0,232,214,109,6,0,72,141,61,29,153,8,0,232,86,112,6,0,72,141,53,65,254,255,255,72,139,61,250,12,11,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,211,101,6,0,72,141,61,152,139,8,0,232,42,112,6,0,72,137,198,72,139,61,210,12,11,0,232,206,108,6,0,72,131, 196,24,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,131,125,228,1,126,17,72,141,61,231,139,8,0,184,0,0,0,0,232,146,99,7,0,131,125,228,0,116,97,72,139,61,159,12,11,0,232,230,166,6,0,72,137,69,248,72,139,117,248,72,131, 198,48,72,139,125,248,232,140,147,6,0,72,139,85,216,139,117,228,191,0,0,0,0,232,192,241,5,0,72,139,69,248,243,15,17,64,48,72,139,125,248,72,141,53,216,252,10,0,232,213,151,6,0,72,139,85,248,184,0,0,0,0,137,66,52,72,139,69,248,72,137,69,208,235,79,72, 139,61,54,12,11,0,232,133,166,6,0,72,137,69,240,72,139,117,240,72,139,125,240,72,141,13,158,252,10,0,72,141,21,151,252,10,0,232,149,139,6,0,72,139,125,240,72,141,53,135,252,10,0,232,132,151,6,0,72,139,85,240,184,0,0,0,0,137,66,48,72,139,69,240,72,137, 69,208,72,139,69,208,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,232,72,139,69,200,72,131,192,16,72,139,0,72,137,69,224,72,139,69,200,72,131,192,24,72,139,0,72,137,69,216,72,139,69,200,72,131,192,32,72,139,0,137, 69,252,235,85,72,139,69,232,139,0,137,69,248,72,131,69,232,4,72,139,69,224,139,0,137,69,244,72,131,69,224,4,243,15,16,77,248,243,15,16,69,244,15,46,193,119,2,235,12,243,15,16,69,248,243,15,17,69,196,235,10,243,15,16,69,244,243,15,17,69,196,72,139,69, 216,243,15,16,69,196,243,15,17,0,72,131,69,216,4,255,77,252,131,125,252,255,117,162,72,139,69,200,72,131,192,40,201,195,85,72,137,229,72,131,236,104,72,137,125,152,72,139,69,152,72,131,192,8,72,139,0,72,137,69,176,72,139,69,152,72,131,192,16,72,139,0, 72,137,69,168,72,139,69,152,72,131,192,24,72,139,0,72,137,69,160,72,139,69,152,72,131,192,32,72,139,0,137,69,252,233,41,3,0,0,72,139,69,176,139,0,137,69,248,72,139,69,176,72,131,192,4,139,0,137,69,244,72,139,69,176,72,131,192,8,139,0,137,69,240,72,139, 69,176,72,131,192,12,139,0,137,69,236,72,139,69,176,72,131,192,16,139,0,137,69,232,72,139,69,176,72,131,192,20,139,0,137,69,228,72,139,69,176,72,131,192,24,139,0,137,69,224,72,139,69,176,72,131,192,28,139,0,137,69,220,72,139,69,168,139,0,137,69,216,72, 139,69,168,72,131,192,4,139,0,137,69,212,72,139,69,168,72,131,192,8,139,0,137,69,208,72,139,69,168,72,131,192,12,139,0,137,69,204,72,139,69,168,72,131,192,16,139,0,137,69,200,72,139,69,168,72,131,192,20,139,0,137,69,196,72,139,69,168,72,131,192,24,139, 0,137,69,192,72,139,69,168,72,131,192,28,139,0,137,69,188,243,15,16,77,248,243,15,16,69,216,15,46,193,119,2,235,15,243,15,16,69,248,243,15,17,133,36,255,255,255,235,13,243,15,16,69,216,243,15,17,133,36,255,255,255,72,139,69,160,243,15,16,133,36,255,255, 255,243,15,17,0,72,139,69,160,72,131,192,4,72,137,133,40,255,255,255,243,15,16,77,244,243,15,16,69,212,15,46,193,119,2,235,15,243,15,16,69,244,243,15,17,133,52,255,255,255,235,13,243,15,16,69,212,243,15,17,133,52,255,255,255,243,15,16,133,52,255,255, 255,72,139,133,40,255,255,255,243,15,17,0,72,139,69,160,72,131,192,8,72,137,133,56,255,255,255,243,15,16,77,240,243,15,16,69,208,15,46,193,119,2,235,15,243,15,16,69,240,243,15,17,133,68,255,255,255,235,13,243,15,16,69,208,243,15,17,133,68,255,255,255, 243,15,16,133,68,255,255,255,72,139,133,56,255,255,255,243,15,17,0,72,139,69,160,72,131,192,12,72,137,133,72,255,255,255,243,15,16,77,236,243,15,16,69,204,15,46,193,119,2,235,15,243,15,16,69,236,243,15,17,133,84,255,255,255,235,13,243,15,16,69,204,243, 15,17,133,84,255,255,255,243,15,16,133,84,255,255,255,72,139,133,72,255,255,255,243,15,17,0,72,139,69,160,72,131,192,16,72,137,133,88,255,255,255,243,15,16,77,232,243,15,16,69,200,15,46,193,119,2,235,15,243,15,16,69,232,243,15,17,133,100,255,255,255, 235,13,243,15,16,69,200,243,15,17,133,100,255,255,255,243,15,16,133,100,255,255,255,72,139,133,88,255,255,255,243,15,17,0,72,139,69,160,72,131,192,20,72,137,133,104,255,255,255,243,15,16,77,228,243,15,16,69,196,15,46,193,119,2,235,15,243,15,16,69,228, 243,15,17,133,116,255,255,255,235,13,243,15,16,69,196,243,15,17,133,116,255,255,255,243,15,16,133,116,255,255,255,72,139,133,104,255,255,255,243,15,17,0,72,139,69,160,72,131,192,24,72,137,133,120,255,255,255,243,15,16,77,224,243,15,16,69,192,15,46,193, 119,2,235,12,243,15,16,69,224,243,15,17,69,132,235,10,243,15,16,69,192,243,15,17,69,132,243,15,16,69,132,72,139,133,120,255,255,255,243,15,17,0,72,139,69,160,72,131,192,28,72,137,69,136,243,15,16,77,220,243,15,16,69,188,15,46,193,119,2,235,12,243,15, 16,69,220,243,15,17,69,148,235,10,243,15,16,69,188,243,15,17,69,148,243,15,16,69,148,72,139,69,136,243,15,17,0,131,109,252,8,72,131,69,176,32,72,131,69,168,32,72,131,69,160,32,131,125,252,0,15,133,205,252,255,255,72,139,69,152,72,131,192,40,201,195,85, 72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,232,72,139,69,216,72,131,192,16,72,139,0,139,0,137,69,252,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,72,139,69,216,72,131,192,32,72,139,0,137,69,248,235,71,72,139,69,232, 139,0,137,69,244,72,131,69,232,4,243,15,16,77,252,243,15,16,69,244,15,46,193,119,2,235,12,243,15,16,69,252,243,15,17,69,212,235,10,243,15,16,69,244,243,15,17,69,212,72,139,69,224,243,15,16,69,212,243,15,17,0,72,131,69,224,4,255,77,248,131,125,248,255, 117,176,72,139,69,216,72,131,192,40,201,195,85,72,137,229,72,131,236,72,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,208,72,139,69,184,72,131,192,16,72,139,0,139,0,137,69,252,72,139,69,184,72,131,192,24,72,139,0,72,137,69,200,72,139,69, 184,72,131,192,32,72,139,0,137,69,248,233,162,2,0,0,72,139,69,208,139,0,137,69,244,72,139,69,208,72,131,192,4,139,0,137,69,240,72,139,69,208,72,131,192,8,139,0,137,69,236,72,139,69,208,72,131,192,12,139,0,137,69,232,72,139,69,208,72,131,192,16,139,0, 137,69,228,72,139,69,208,72,131,192,20,139,0,137,69,224,72,139,69,208,72,131,192,24,139,0,137,69,220,72,139,69,208,72,131,192,28,139,0,137,69,216,243,15,16,77,244,243,15,16,69,252,15,46,193,119,2,235,15,243,15,16,69,244,243,15,17,133,68,255,255,255,235, 13,243,15,16,69,252,243,15,17,133,68,255,255,255,72,139,69,200,243,15,16,133,68,255,255,255,243,15,17,0,72,139,69,200,72,131,192,4,72,137,133,72,255,255,255,243,15,16,77,240,243,15,16,69,252,15,46,193,119,2,235,15,243,15,16,69,240,243,15,17,133,84,255, 255,255,235,13,243,15,16,69,252,243,15,17,133,84,255,255,255,243,15,16,133,84,255,255,255,72,139,133,72,255,255,255,243,15,17,0,72,139,69,200,72,131,192,8,72,137,133,88,255,255,255,243,15,16,77,236,243,15,16,69,252,15,46,193,119,2,235,15,243,15,16,69, 236,243,15,17,133,100,255,255,255,235,13,243,15,16,69,252,243,15,17,133,100,255,255,255,243,15,16,133,100,255,255,255,72,139,133,88,255,255,255,243,15,17,0,72,139,69,200,72,131,192,12,72,137,133,104,255,255,255,243,15,16,77,232,243,15,16,69,252,15,46, 193,119,2,235,15,243,15,16,69,232,243,15,17,133,116,255,255,255,235,13,243,15,16,69,252,243,15,17,133,116,255,255,255,243,15,16,133,116,255,255,255,72,139,133,104,255,255,255,243,15,17,0,72,139,69,200,72,131,192,16,72,137,133,120,255,255,255,243,15,16, 77,228,243,15,16,69,252,15,46,193,119,2,235,12,243,15,16,69,228,243,15,17,69,132,235,10,243,15,16,69,252,243,15,17,69,132,243,15,16,69,132,72,139,133,120,255,255,255,243,15,17,0,72,139,69,200,72,131,192,20,72,137,69,136,243,15,16,77,224,243,15,16,69, 252,15,46,193,119,2,235,12,243,15,16,69,224,243,15,17,69,148,235,10,243,15,16,69,252,243,15,17,69,148,243,15,16,69,148,72,139,69,136,243,15,17,0,72,139,69,200,72,131,192,24,72,137,69,152,243,15,16,77,220,243,15,16,69,252,15,46,193,119,2,235,12,243,15, 16,69,220,243,15,17,69,164,235,10,243,15,16,69,252,243,15,17,69,164,243,15,16,69,164,72,139,69,152,243,15,17,0,72,139,69,200,72,131,192,28,72,137,69,168,243,15,16,77,216,243,15,16,69,252,15,46,193,119,2,235,12,243,15,16,69,216,243,15,17,69,180,235,10, 243,15,16,69,252,243,15,17,69,180,243,15,16,69,180,72,139,69,168,243,15,17,0,131,109,248,8,72,131,69,208,32,72,131,69,200,32,131,125,248,0,15,133,84,253,255,255,72,139,69,184,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117, 240,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,83,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,16,72,139,0,72,139,112,8,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137, 249,190,4,0,0,0,72,141,61,192,247,255,255,184,0,0,0,0,232,88,156,1,0,235,81,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,16,72,139,0,72,139,112,8,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201, 73,137,240,72,137,249,190,4,0,0,0,72,141,61,26,248,255,255,184,0,0,0,0,232,5,156,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,76,72,139,69,240,72,139,0,139,8,72,139,69,240,72, 131,192,8,72,139,0,72,139,112,8,72,139,125,248,72,131,199,48,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,55,251,255,255,184,0,0,0,0,232,153,155,1,0,235,74,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131, 192,8,72,139,0,72,139,112,8,72,139,125,248,72,131,199,48,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,139,251,255,255,184,0,0,0,0,232,77,155,1,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,179,245,255, 255,72,141,61,209,129,8,0,232,187,101,6,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,238,83,6,0,72,137,5,65,2,11,0,72,139,61,58,2,11,0,190,48,0,0,0,232,234,98,6,0,72,141,61,49,142,8, 0,232,106,101,6,0,72,141,53,14,254,255,255,72,139,61,22,2,11,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,231,90,6,0,72,141,61,172,128,8,0,232,62,101,6,0,72,137,198,72,139,61,238,1,11,0,232,226,97,6,0,72,141,61,57,129,8,0,232,35,101,6,0,72,137,199,65,185, 0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,91,83,6,0,72,137,5,182,1,11,0,72,139,61,175,1,11,0,190,52,0,0,0,232,87,98,6,0,72,141,61,158,141,8,0,232,215,100,6,0,72,141,53,65,254,255,255,72,139,61,139,1,11,0,185,0,0,0,0, 72,137,194,184,0,0,0,0,232,84,90,6,0,72,141,61,25,128,8,0,232,171,100,6,0,72,137,198,72,139,61,99,1,11,0,232,79,97,6,0,72,131,196,24,91,201,195,85,72,137,229,232,223,205,255,255,232,223,213,255,255,232,217,221,255,255,232,240,231,255,255,232,34,243,255, 255,232,156,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,48,1,11,0,232,103,155,6,0,72,137,69,248,72,139,69,248,199,64,48,255,255,255,127,72,139,85,248,72,139,69,232,72,137,66,64,72,139,85,248,184,0,0,0,0,137,66,72,72,139,69, 248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,141,5,75,71,11,0,72,139,48,72,139,69,232,72,139,120,64,232,53,161,6,0,72,137,69,248,72,131,125,248,0,117,19,72,141,61,17,128,8,0,184,0,0,0,0,232,130,95,7,0,235,9,72,139,125,248,232,114,13,2,0, 201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,224,72,139,69,200,72,131,192,16,72,139,0,72,137,69,216,72,139,69,200,72,131,192,24,72,139,0,137,69,252,72,139,69,224,139,64,48,137,69,248,72,139,69,224,139, 64,52,137,69,244,72,139,69,224,72,139,64,56,72,133,192,15,132,195,0,0,0,139,69,244,59,69,248,15,142,172,0,0,0,139,85,248,139,69,244,41,208,137,69,240,72,139,69,224,72,139,80,56,139,69,248,72,152,72,193,224,3,72,141,4,2,72,137,69,208,139,69,240,59,69, 252,126,6,139,69,252,137,69,240,139,69,240,1,69,248,235,69,72,139,69,216,139,0,137,69,236,72,131,69,216,4,72,141,69,236,139,0,37,0,0,0,96,133,192,116,18,72,141,69,236,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,236,139,85,236,72,139,69,208, 137,16,72,131,69,208,8,255,77,240,131,125,240,255,117,178,139,69,248,59,69,244,124,16,72,139,125,224,232,178,254,255,255,199,69,248,255,255,255,127,72,139,85,224,139,69,248,137,66,48,235,11,72,139,69,224,199,64,48,255,255,255,127,72,139,69,200,72,131, 192,32,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,85,232,72,139,69,224,72,137,66,64,72,141,5,197,69,11,0,72,139,48,72,139,69,232,72,139,120,64,232,175,159,6,0,72,137,69,248,72,131,125,248,0,117,60,72,139,69,224,72,139,0, 15,182,0,132,192,116,32,72,139,69,232,72,139,64,64,72,139,16,72,139,125,232,72,141,53,132,126,8,0,184,0,0,0,0,232,28,92,7,0,72,139,69,232,72,199,64,56,0,0,0,0,235,84,72,139,85,232,72,131,194,56,72,139,117,232,72,131,198,52,72,139,125,248,232,185,12,2, 0,133,192,117,46,72,139,69,232,72,139,64,64,72,139,16,72,139,125,232,72,141,53,91,126,8,0,184,0,0,0,0,232,209,91,7,0,72,139,69,232,72,199,64,56,0,0,0,0,235,9,72,139,125,248,232,15,11,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240, 72,139,69,248,72,139,112,64,72,139,125,248,232,15,255,255,255,72,139,69,240,72,139,0,139,48,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,240,190,3,0,0,0,72,141,61,190,253,255,255,184,0,0,0,0,232,8,151,1,0,201,195,85,72,137,229,72,137,125,248, 72,139,69,248,199,64,48,0,0,0,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,201,243,15,16,69,244,15,46,193,119,2,235,14,243,15,16,69,244,243,15,44,192,137,69,240,235,7,199,69,240,0,0,0,0,72,139,69,248,139,85,240,137,80,48,201,195,85,72, 137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,64,48,61,255,255,255,127,116,20,72,139,125,248,232,241,252,255,255,72,139,69,248,199,64,48,255,255,255,127,201,195,85,72,137,229,83,72,131,236,24,72,141,29,143,252,255,255,72,141,61,106,125,8,0,232, 244,96,6,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,80,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,39,79,6,0,72,137,5,146,253,10,0,72,139,61,139,253,10,0,190,72,0,0,0,232,35,94,6,0,72,141,61,106,137,8,0,232,163,96,6,0,72,141,53, 182,254,255,255,72,139,61,103,253,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,32,86,6,0,72,141,61,94,139,8,0,232,119,96,6,0,72,141,53,186,253,255,255,72,139,61,59,253,10,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,238,85,6,0,72,141,61,197, 124,8,0,232,69,96,6,0,72,141,53,254,254,255,255,72,139,61,9,253,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,194,85,6,0,72,141,61,158,124,8,0,232,25,96,6,0,72,141,53,149,254,255,255,72,139,61,221,252,10,0,65,184,0,0,0,0,185,6,0,0,0,72,137,194,184,0,0, 0,0,232,144,85,6,0,72,141,53,90,254,255,255,72,139,61,183,252,10,0,232,154,91,6,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,160,252,10,0,232,207,150,6,0,72,137,69,248,72,141,53,144,3,0,0,72,139,125,248,232,108,160, 6,0,72,137,194,72,139,69,248,72,137,80,88,72,139,69,248,199,64,56,255,255,255,127,72,139,69,248,199,64,64,0,0,0,0,72,139,85,248,72,139,69,232,72,137,66,80,72,139,125,248,72,141,53,175,236,10,0,232,172,135,6,0,72,139,125,248,72,141,53,63,236,10,0,232, 156,135,6,0,72,137,194,72,139,69,248,72,137,80,48,72,139,69,248,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,224,72,139,69,200,72,131,192,16,72,139,0,72,137,69,216,72,139,69,200,72,131,192,24,72,139, 0,137,69,252,72,139,69,224,139,64,56,137,69,248,72,139,69,224,139,80,64,72,139,69,224,139,64,60,57,194,15,78,194,137,69,244,72,139,69,224,72,139,64,72,72,133,192,15,132,217,0,0,0,139,69,248,59,69,244,15,141,205,0,0,0,139,85,248,139,69,244,41,208,137, 69,240,72,139,69,224,72,139,80,72,139,69,248,72,152,72,193,224,3,72,141,4,2,72,137,69,208,139,69,240,59,69,252,126,6,139,69,252,137,69,240,139,85,240,139,69,252,41,208,137,69,236,139,69,240,1,69,248,235,22,72,139,69,208,139,16,72,139,69,216,137,16,72, 131,69,216,4,72,131,69,208,8,255,77,240,131,125,240,255,117,225,139,69,248,59,69,244,124,57,72,139,69,224,72,139,120,88,102,15,87,192,232,8,161,6,0,72,139,69,224,199,64,56,255,255,255,127,235,16,72,139,85,216,184,0,0,0,0,137,2,72,131,69,216,4,255,77, 236,131,125,236,255,117,231,235,10,72,139,85,224,139,69,248,137,66,56,72,139,69,200,72,131,192,32,72,137,69,192,235,37,72,139,85,216,184,0,0,0,0,137,2,72,131,69,216,4,255,77,252,131,125,252,255,117,231,72,139,69,200,72,131,192,32,72,137,69,192,72,139, 69,192,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,85,232,72,139,69,224,72,137,66,80,72,141,5,1,65,11,0,72,139,48,72,139,69,232,72,139,120,80,232,235,154,6,0,72,137,69,248,72,131,125,248,0,117,60,72,139,69,224,72,139,0,15, 182,0,132,192,116,32,72,139,69,232,72,139,64,80,72,139,16,72,139,125,232,72,141,53,22,122,8,0,184,0,0,0,0,232,88,87,7,0,72,139,69,232,72,199,64,72,0,0,0,0,235,84,72,139,85,232,72,131,194,72,72,139,117,232,72,131,198,60,72,139,125,248,232,245,7,2,0,133, 192,117,46,72,139,69,232,72,139,64,80,72,139,16,72,139,125,232,72,141,53,231,121,8,0,184,0,0,0,0,232,13,87,7,0,72,139,69,232,72,199,64,72,0,0,0,0,235,9,72,139,125,248,232,75,6,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139, 69,248,72,139,112,80,72,139,125,248,232,15,255,255,255,72,139,69,240,72,139,0,139,48,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,240,190,3,0,0,0,72,141,61,139,253,255,255,184,0,0,0,0,232,68,146,1,0,201,195,85,72,137,229,72,131,236,48,72,137, 125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85,208,139,117,220,191,0,0,0,0,232,180,222,5,0,243,72,15,44,192,72,137,69,248,72,139,85,208,139,117,220,191,1,0,0,0,232,154,222,5,0,243,72,15,44,192,72,137,69,240,72,131,125,248,0,121,8,72,199,69, 248,0,0,0,0,72,131,125,240,0,127,13,72,139,69,232,199,64,64,255,255,255,127,235,22,72,139,69,248,137,194,72,139,69,240,141,4,2,137,194,72,139,69,232,137,80,64,72,139,69,248,137,194,72,139,69,232,137,80,56,201,195,85,72,137,229,72,137,125,248,72,139,69, 248,199,64,56,255,255,255,127,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,48,232,12,133,6,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,88,232,105,159,6,0,201,195,85,72,137,229,65,84,83, 72,131,236,16,72,141,29,211,255,255,255,76,141,37,254,251,255,255,72,141,61,144,120,8,0,232,203,91,6,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,96,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,0,74,6,0,72,137,5,115,248,10,0,72,141, 61,84,132,8,0,232,141,91,6,0,72,141,53,100,254,255,255,72,139,61,89,248,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,10,81,6,0,72,141,61,225,119,8,0,232,97,91,6,0,72,141,53,31,255,255,255,72,139,61,45,248,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,222, 80,6,0,72,141,61,28,134,8,0,232,53,91,6,0,72,141,53,60,253,255,255,72,139,61,1,248,10,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,172,80,6,0,72,141,53,58,254,255,255,72,139,61,219,247,10,0,232,30,87,6,0,72,131,196,16,91,65,92,201,195,85,72, 137,229,72,131,236,32,72,137,125,232,72,139,61,194,247,10,0,232,233,145,6,0,72,137,69,248,72,139,85,248,72,139,69,232,72,137,66,64,72,139,69,248,72,199,64,56,0,0,0,0,72,141,61,178,130,8,0,232,179,90,6,0,72,137,198,72,139,125,248,232,227,130,6,0,72,139, 85,248,184,0,0,0,0,137,66,72,72,139,69,248,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,232,72,139,69,200,72,131,192,16,72,139,0,72,137,69,224,72,139,69,200,72,131,192,24,72,139,0,72,137,69,216,72,139,69,200,72,131, 192,32,72,139,0,137,69,252,72,139,69,232,72,139,64,56,72,137,69,208,72,139,69,232,139,64,48,255,200,137,69,248,72,131,125,208,0,116,125,199,69,244,0,0,0,0,235,78,72,139,69,224,243,15,16,0,243,15,44,192,137,69,240,72,131,69,224,4,131,125,240,0,121,9,199, 69,240,0,0,0,0,235,14,139,69,240,59,69,248,126,6,139,69,248,137,69,240,139,69,240,72,152,72,193,224,3,72,3,69,208,139,16,72,139,69,216,137,16,72,131,69,216,4,255,69,244,139,69,244,59,69,252,124,170,72,139,69,200,72,131,192,40,72,137,69,192,235,37,72, 139,85,216,184,0,0,0,0,137,2,72,131,69,216,4,255,77,252,131,125,252,255,117,231,72,139,69,200,72,131,192,40,72,137,69,192,72,139,69,192,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,85,232,72,139,69,224,72,137,66,64,72,141, 5,170,60,11,0,72,139,48,72,139,69,232,72,139,120,64,232,148,150,6,0,72,137,69,248,72,131,125,248,0,117,60,72,139,69,224,72,139,0,15,182,0,132,192,116,32,72,139,69,232,72,139,64,64,72,139,16,72,139,125,232,72,141,53,9,118,8,0,184,0,0,0,0,232,1,83,7,0, 72,139,69,232,72,199,64,56,0,0,0,0,235,84,72,139,85,232,72,131,194,56,72,139,117,232,72,131,198,48,72,139,125,248,232,158,3,2,0,133,192,117,46,72,139,69,232,72,139,64,64,72,139,16,72,139,125,232,72,141,53,218,117,8,0,184,0,0,0,0,232,182,82,7,0,72,139, 69,232,72,199,64,56,0,0,0,0,235,9,72,139,125,248,232,244,1,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,112,64,72,139,125,248,232,15,255,255,255,72,139,69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72, 139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,241,73,137,248,190,4,0,0,0,72,141,61,220,253,255,255,184,0,0,0,0,232,219,141,1,0,201,195,85,72,137,229,72,137,125,248,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,228, 255,255,255,76,141,37,79,253,255,255,72,141,61,69,117,8,0,232,54,88,6,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,80,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,107,70,6,0,72,137,5,230,244,10,0,72,139,61,223,244,10,0,190,72,0,0,0, 232,103,85,6,0,72,141,61,174,128,8,0,232,231,87,6,0,72,141,53,21,255,255,255,72,139,61,187,244,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,100,77,6,0,72,141,61,162,130,8,0,232,187,87,6,0,72,141,53,25,254,255,255,72,139,61,143,244,10,0,65,184,0,0,0,0, 185,2,0,0,0,72,137,194,184,0,0,0,0,232,50,77,6,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,99,244,10,0,232,130,142,6,0,72,137,69,248,72,139,85,248,72,139,69,232,72,137,66,64,72,139,69,248,72,199,64,56,0,0,0,0, 72,141,61,75,127,8,0,232,76,87,6,0,72,137,198,72,139,125,248,232,124,127,6,0,72,139,117,248,72,131,198,76,72,139,125,248,232,248,122,6,0,72,139,85,248,184,0,0,0,0,137,66,72,72,139,85,248,184,0,0,0,0,137,66,76,72,139,69,248,201,195,85,72,137,229,72,137, 125,152,72,139,69,152,72,131,192,8,72,139,0,72,137,69,208,72,139,69,152,72,131,192,16,72,139,0,72,137,69,200,72,139,69,152,72,131,192,24,72,139,0,72,137,69,192,72,139,69,152,72,131,192,32,72,139,0,137,69,252,72,139,69,208,72,139,64,56,72,137,69,184,72, 139,69,208,243,15,16,64,76,243,15,90,192,242,15,17,69,168,72,139,69,208,139,64,48,131,232,3,137,69,248,72,131,125,184,0,15,132,175,1,0,0,199,69,244,0,0,0,0,233,121,1,0,0,72,139,69,200,243,15,16,0,243,15,90,192,242,15,88,69,168,242,15,17,69,160,72,131, 69,200,4,242,15,16,69,160,242,15,44,192,137,69,240,131,125,240,0,127,17,199,69,240,1,0,0,0,184,0,0,0,0,137,69,236,235,55,139,69,240,59,69,248,126,16,139,69,248,137,69,240,184,0,0,128,63,137,69,236,235,31,242,15,42,69,240,242,15,16,77,160,102,15,40,209, 242,15,92,208,102,15,40,194,242,15,90,192,243,15,17,69,236,139,69,240,72,152,72,193,224,3,72,3,69,184,72,137,69,176,72,139,69,176,72,131,232,8,139,0,137,69,232,72,139,69,176,139,0,137,69,228,72,139,69,176,72,131,192,8,139,0,137,69,224,72,139,69,176,72, 131,192,16,139,0,137,69,220,243,15,16,69,224,243,15,92,69,228,243,15,17,69,216,243,15,90,101,228,243,15,90,109,236,243,15,90,117,216,243,15,90,77,236,242,15,16,5,221,253,8,0,102,15,40,208,242,15,92,209,102,15,40,202,242,15,16,5,209,253,8,0,102,15,40, 249,242,15,89,248,243,15,16,69,220,15,40,208,243,15,92,85,232,243,15,16,77,216,243,15,16,5,163,253,8,0,243,15,89,193,243,15,88,194,15,40,216,243,15,89,93,236,243,15,16,69,232,243,15,88,192,15,40,208,243,15,88,85,220,243,15,16,77,228,243,15,16,5,117,253, 8,0,243,15,89,193,243,15,88,194,243,15,88,195,243,15,90,192,242,15,89,199,242,15,88,198,242,15,89,197,242,15,88,196,242,15,90,192,72,139,69,192,243,15,17,0,72,131,69,192,4,255,69,244,139,69,244,59,69,252,15,140,123,254,255,255,72,139,69,152,72,131,192, 40,72,137,69,144,235,37,72,139,85,192,184,0,0,0,0,137,2,72,131,69,192,4,255,77,252,131,125,252,255,117,231,72,139,69,152,72,131,192,40,72,137,69,144,72,139,69,144,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,85,232,72,139, 69,224,72,137,66,64,72,141,5,221,55,11,0,72,139,48,72,139,69,232,72,139,120,64,232,199,145,6,0,72,137,69,248,72,131,125,248,0,117,60,72,139,69,224,72,139,0,15,182,0,132,192,116,32,72,139,69,232,72,139,64,64,72,139,16,72,139,125,232,72,141,53,127,113, 8,0,184,0,0,0,0,232,52,78,7,0,72,139,69,232,72,199,64,56,0,0,0,0,235,84,72,139,85,232,72,131,194,56,72,139,117,232,72,131,198,48,72,139,125,248,232,209,254,1,0,133,192,117,46,72,139,69,232,72,139,64,64,72,139,16,72,139,125,232,72,141,53,83,113,8,0,184, 0,0,0,0,232,233,77,7,0,72,139,69,232,72,199,64,56,0,0,0,0,235,9,72,139,125,248,232,39,253,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,112,64,72,139,125,248,232,15,255,255,255,72,139,69,240,72,139,0,139,48, 72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,241,73,137,248,190,4,0,0,0,72,141,61,147,252,255,255,184,0,0,0,0,232,14,137,1,0,201,195,85,72,137,229,72,137,125,248,201,195,85,72,137,229,65,84, 83,72,131,236,16,72,141,29,228,255,255,255,76,141,37,233,251,255,255,72,141,61,191,112,8,0,232,105,83,6,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,80,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,158,65,6,0,72,137,5,33,240,10,0,72, 139,61,26,240,10,0,190,72,0,0,0,232,154,80,6,0,72,141,61,225,123,8,0,232,26,83,6,0,72,141,53,21,255,255,255,72,139,61,246,239,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,151,72,6,0,72,141,61,213,125,8,0,232,238,82,6,0,72,141,53,25,254,255,255,72,139, 61,202,239,10,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,101,72,6,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,158,239,10,0,232,181,137,6,0,72,137,69,248,72,139,85,248,72,139,69,232,72,137,66,64,72, 139,69,248,72,199,64,56,0,0,0,0,72,139,85,248,184,0,0,0,68,137,66,48,72,139,85,248,184,0,0,0,59,137,66,52,72,141,61,102,122,8,0,232,103,82,6,0,72,137,198,72,139,125,248,232,151,122,6,0,72,141,61,134,117,8,0,232,79,82,6,0,72,137,193,72,139,117,248,72, 139,125,248,72,141,21,215,222,10,0,232,117,110,6,0,72,139,85,248,184,0,0,0,0,137,66,72,72,139,69,248,201,195,85,72,137,229,72,131,236,24,72,137,189,120,255,255,255,72,139,133,120,255,255,255,72,131,192,8,72,139,0,72,137,69,192,72,139,133,120,255,255, 255,72,131,192,16,72,139,0,72,137,69,184,72,139,133,120,255,255,255,72,131,192,24,72,139,0,72,137,69,176,72,139,133,120,255,255,255,72,131,192,32,72,139,0,137,69,252,72,139,69,192,139,64,48,137,69,244,243,15,16,77,244,243,15,16,5,227,249,8,0,15,40,209, 243,15,92,208,15,40,194,243,15,44,192,137,69,240,72,139,69,192,243,15,16,64,88,243,15,89,69,244,243,15,17,69,236,72,139,69,192,72,139,64,56,72,137,69,152,243,15,90,77,244,72,139,69,192,242,15,16,64,80,242,15,89,200,242,15,16,5,177,249,8,0,242,15,88,193, 242,15,17,69,136,72,131,125,152,0,15,132,43,2,0,0,72,184,0,0,0,0,0,0,56,65,72,137,69,160,139,69,164,137,69,248,233,88,1,0,0,72,139,69,136,72,137,69,160,72,139,69,184,243,15,16,0,243,15,89,69,236,243,15,90,200,242,15,16,69,136,242,15,88,193,242,15,17, 69,136,72,131,69,184,4,139,69,164,35,69,240,72,152,72,193,224,3,72,3,69,152,72,137,69,144,139,69,248,137,69,164,242,15,16,77,160,242,15,16,5,49,249,8,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,90,192,243,15,17,69,224,72,139,69,144,139,0,137,69, 220,72,139,69,144,72,131,192,8,139,0,137,69,216,72,139,69,144,72,131,192,16,139,0,137,69,212,72,139,69,144,72,131,192,24,139,0,137,69,208,243,15,16,69,212,243,15,92,69,216,243,15,17,69,204,243,15,90,101,216,243,15,90,109,224,243,15,90,117,204,243,15, 90,77,224,242,15,16,5,177,248,8,0,102,15,40,208,242,15,92,209,102,15,40,202,242,15,16,5,165,248,8,0,102,15,40,249,242,15,89,248,243,15,16,69,208,15,40,208,243,15,92,85,220,243,15,16,77,204,243,15,16,5,119,248,8,0,243,15,89,193,243,15,88,194,15,40,216, 243,15,89,93,224,243,15,16,69,220,243,15,88,192,15,40,208,243,15,88,85,208,243,15,16,77,216,243,15,16,5,73,248,8,0,243,15,89,193,243,15,88,194,243,15,88,195,243,15,90,192,242,15,89,199,242,15,88,198,242,15,89,197,242,15,88,196,242,15,90,192,72,139,69, 176,243,15,17,0,72,131,69,176,4,255,77,252,131,125,252,255,15,133,155,254,255,255,243,15,90,77,244,242,15,16,5,18,248,8,0,242,15,89,193,242,15,17,69,160,139,69,164,137,69,248,243,15,90,77,244,242,15,16,5,246,247,8,0,242,15,89,200,242,15,16,5,234,247, 8,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,88,69,136,242,15,17,69,160,139,69,248,137,69,164,242,15,16,85,160,243,15,90,77,244,242,15,16,5,196,247,8,0,242,15,89,193,102,15,40,202,242,15,88,200,72,139,69,192,243,15,16,64,52,243,15,90,192,242, 15,89,193,72,139,69,192,242,15,17,64,80,72,139,133,120,255,255,255,72,131,192,40,72,137,133,112,255,255,255,235,43,72,139,85,176,184,0,0,0,0,137,2,72,131,69,176,4,255,77,252,131,125,252,255,117,231,72,139,133,120,255,255,255,72,131,192,40,72,137,133, 112,255,255,255,72,139,133,112,255,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,85,232,72,139,69,224,72,137,66,64,72,141,5,27,50,11,0,72,139,48,72,139,69,232,72,139,120,64,232,5,140,6,0,72,137,69,240,72,131,125,240, 0,117,63,72,139,69,224,72,139,0,15,182,0,132,192,116,32,72,139,69,232,72,139,64,64,72,139,16,72,139,125,232,72,141,53,9,108,8,0,184,0,0,0,0,232,114,72,7,0,72,139,69,232,72,199,64,56,0,0,0,0,233,219,0,0,0,72,139,85,232,72,131,194,56,72,141,117,248,72, 139,125,240,232,16,249,1,0,133,192,117,49,72,139,69,232,72,139,64,64,72,139,16,72,139,125,232,72,141,53,219,107,8,0,184,0,0,0,0,232,40,72,7,0,72,139,69,232,72,199,64,56,0,0,0,0,233,145,0,0,0,139,69,248,131,232,3,137,69,252,139,69,248,141,120,253,232, 230,134,1,0,137,193,184,1,0,0,0,211,224,57,69,252,116,58,139,77,248,72,139,69,232,72,139,64,64,72,139,16,72,139,125,232,72,141,53,164,107,8,0,184,0,0,0,0,232,210,71,7,0,72,139,69,232,72,199,64,56,0,0,0,0,72,139,125,240,232,18,247,1,0,235,53,243,15,42, 69,252,72,139,69,232,243,15,17,64,48,242,15,42,77,252,242,15,16,5,0,246,8,0,242,15,94,193,242,15,90,192,72,139,69,232,243,15,17,64,52,72,139,125,240,232,219,246,1,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,243,15,90,69,244,72,139,69,248, 242,15,17,64,80,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,243,15,16,72,16,243,15,16,5,155,245,8,0,243,15,94,193,72,139,69,248,243,15,17,64,88,72,139,69,248,72,139,112,64,72,139,125,248,232,71,254,255,255, 72,139,69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,241,73,137,248,190,4,0,0,0,72,141,61,244,250,255,255,184,0,0,0,0,232,132,130,1,0,201,195,85,72,137,229,83,72,131,236, 24,72,141,29,63,250,255,255,72,141,61,199,106,8,0,232,242,76,6,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,96,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,37,59,6,0,72,137,5,176,233,10,0,72,139,61,169,233,10,0,190,72,0,0,0,232,33, 74,6,0,72,141,61,104,117,8,0,232,161,76,6,0,72,141,53,5,255,255,255,72,139,61,133,233,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,30,66,6,0,72,141,61,92,119,8,0,232,117,76,6,0,72,141,53,98,253,255,255,72,139,61,89,233,10,0,65,184,0,0,0,0,185,2,0,0,0, 72,137,194,184,0,0,0,0,232,236,65,6,0,72,141,61,122,111,8,0,232,67,76,6,0,72,141,53,138,254,255,255,72,139,61,39,233,10,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,186,65,6,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,72,137,125, 232,72,139,61,253,232,10,0,232,12,131,6,0,72,137,69,248,72,139,69,248,199,64,60,0,0,0,0,72,139,85,248,72,139,69,232,72,137,66,64,72,139,85,248,184,0,0,0,0,137,66,72,72,139,69,248,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,69,200,72,131, 192,8,72,139,0,72,137,69,232,72,139,69,200,72,131,192,16,72,139,0,72,137,69,224,72,139,69,200,72,131,192,24,72,139,0,137,69,252,72,139,69,232,72,139,64,48,72,137,69,216,72,139,69,232,139,64,60,137,69,248,72,139,69,232,72,139,64,48,72,133,192,15,132,171, 0,0,0,235,69,72,139,69,224,139,0,137,69,244,72,131,69,224,4,72,141,69,244,139,0,37,0,0,0,96,133,192,116,18,72,141,69,244,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,244,139,85,244,72,139,69,216,137,16,72,131,69,216,8,255,77,252,131,125,252, 255,117,178,255,77,248,131,125,248,255,117,72,72,141,5,68,46,11,0,72,139,48,72,139,69,232,72,139,120,64,232,46,136,6,0,72,137,69,208,72,131,125,208,0,117,19,72,141,61,201,104,8,0,184,0,0,0,0,232,123,70,7,0,235,9,72,139,125,208,232,107,244,1,0,72,139, 69,232,139,64,56,137,69,248,72,139,85,232,139,69,248,137,66,60,72,139,69,200,72,131,192,32,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,72,141,5,216,45,11,0,72,139,48,72,139,69,216,72,139,120,64,232,194,135,6,0,72,137,69,232,72,131, 125,232,0,117,59,72,139,69,216,72,139,64,64,72,139,0,15,182,0,132,192,15,132,0,1,0,0,72,139,69,216,72,139,64,64,72,139,16,72,139,125,216,72,141,53,68,104,8,0,184,0,0,0,0,232,39,68,7,0,233,219,0,0,0,72,139,85,216,72,131,194,48,72,141,117,248,72,139,125, 232,232,209,244,1,0,133,192,117,37,72,139,69,216,72,139,64,64,72,139,16,72,139,125,216,72,141,53,34,104,8,0,184,0,0,0,0,232,233,67,7,0,233,157,0,0,0,72,139,69,208,72,139,0,139,0,137,69,244,72,139,69,208,72,139,0,243,15,16,72,16,243,15,42,69,244,15,40, 209,243,15,94,208,15,40,194,243,15,44,192,137,69,240,131,125,240,0,127,7,199,69,240,1,0,0,0,72,139,85,216,139,69,240,137,66,56,72,139,69,216,139,64,60,59,69,240,126,10,72,139,85,216,139,69,240,137,66,60,139,69,248,57,69,244,125,6,139,69,244,137,69,248, 72,139,125,232,232,199,242,1,0,139,117,248,72,139,69,208,72,139,0,72,139,72,8,72,139,85,216,65,137,240,190,3,0,0,0,72,141,61,174,253,255,255,184,0,0,0,0,232,233,126,1,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,77,253,255,255,72,141,61,123,103, 8,0,232,87,73,6,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,80,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,138,55,6,0,72,137,5,29,230,10,0,72,139,61,22,230,10,0,190,72,0,0,0,232,134,70,6,0,72,141,61,205,113,8,0,232,6,73,6,0,72,141, 53,66,254,255,255,72,139,61,242,229,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,131,62,6,0,72,131,196,24,91,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139, 69,216,72,131,192,24,72,139,0,137,69,252,72,139,69,240,72,139,64,48,72,137,69,224,72,131,125,224,0,116,103,72,139,69,240,139,64,56,137,69,248,235,22,72,139,69,224,139,16,72,139,69,232,137,16,72,131,69,232,4,72,131,69,224,8,255,77,248,131,125,248,255, 117,225,72,139,69,240,139,80,56,139,69,252,41,208,137,69,248,235,16,72,139,85,232,184,0,0,0,0,137,2,72,131,69,232,4,255,77,248,131,125,248,255,117,231,235,25,72,139,85,232,184,0,0,0,0,137,2,72,131,69,232,4,255,77,252,131,125,252,255,117,231,72,139,69, 216,72,131,192,32,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,141,5,57,43,11,0,72,139,48,72,139,69,232,72,139,120,64,232,35,133,6,0,72,137,69,248,72,131,125,248,0,117,59,72,139,69,232,72,139,64,64,72,139,0,15,182,0,132,192,15, 132,194,0,0,0,72,139,69,232,72,139,64,64,72,139,16,72,139,125,232,72,141,53,165,101,8,0,184,0,0,0,0,232,136,65,7,0,233,157,0,0,0,72,139,85,232,72,131,194,48,72,139,117,232,72,131,198,56,72,139,125,248,232,46,242,1,0,133,192,117,34,72,139,69,232,72,139, 64,64,72,139,16,72,139,125,232,72,141,53,168,101,8,0,184,0,0,0,0,232,70,65,7,0,235,94,72,139,69,232,139,80,56,72,139,69,224,72,139,0,139,0,57,194,126,16,72,139,69,224,72,139,0,139,16,72,139,69,232,137,80,56,72,139,125,248,232,108,240,1,0,72,139,69,224, 72,139,0,139,48,72,139,69,224,72,139,0,72,139,72,8,72,139,85,232,65,137,240,190,3,0,0,0,72,141,61,63,254,255,255,184,0,0,0,0,232,136,124,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,1,228,10,0,232,8,126,6,0,72,137,69,248,72,139,85, 248,72,139,69,232,72,137,66,64,72,139,125,248,72,141,53,25,212,10,0,232,22,111,6,0,72,139,69,248,201,195,85,72,137,229,83,72,131,236,24,72,141,29,178,255,255,255,72,141,61,8,101,8,0,232,184,70,6,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0, 0,0,185,72,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,235,52,6,0,72,137,5,134,227,10,0,72,141,61,63,111,8,0,232,120,70,6,0,72,141,53,83,254,255,255,72,139,61,108,227,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,245,59,6,0,72,131,196,24,91,201,195,85, 72,137,229,72,131,236,48,72,137,125,216,243,15,17,69,212,72,141,5,107,41,11,0,72,139,48,72,139,69,216,72,139,120,48,232,85,131,6,0,72,137,69,240,72,131,125,240,0,117,37,72,139,69,216,72,139,64,48,72,139,16,72,139,125,216,72,141,53,95,100,8,0,184,0,0, 0,0,232,208,63,7,0,233,162,0,0,0,72,141,85,232,72,141,117,252,72,139,125,240,232,126,240,1,0,133,192,117,34,72,139,69,216,72,139,64,48,72,139,16,72,139,125,216,72,141,53,55,100,8,0,184,0,0,0,0,232,150,63,7,0,235,107,243,15,16,69,212,243,15,44,192,137, 69,248,131,125,248,0,121,9,199,69,248,0,0,0,0,235,16,139,69,252,57,69,248,124,8,139,69,252,255,200,137,69,248,139,69,252,133,192,116,31,139,69,248,72,152,72,193,224,3,72,137,194,72,139,69,232,72,141,4,2,243,15,16,0,243,15,17,69,208,235,8,15,87,192,243, 15,17,69,208,72,139,69,216,72,139,120,24,243,15,16,69,208,232,87,111,6,0,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,248,72,139,69,240,72,137,66,48,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,50,226,10,0,232,49,124, 6,0,72,137,69,248,72,139,85,248,72,139,69,232,72,137,66,48,72,139,125,248,72,141,53,162,209,10,0,232,63,109,6,0,72,139,69,248,201,195,85,72,137,229,83,72,131,236,24,72,141,29,178,255,255,255,72,141,61,108,99,8,0,232,225,68,6,0,72,137,199,199,4,36,0,0, 0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,20,51,6,0,72,137,5,183,225,10,0,72,141,53,85,254,255,255,72,139,61,169,225,10,0,232,136,64,6,0,72,141,61,117,111,8,0,232,142,68,6,0,72,141,53,50,255,255,255,72,139, 61,138,225,10,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,5,58,6,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,80,72,137,125,184,243,15,17,69,180,72,141,5,123,39,11,0,72,139,48,72,139,69,184,72,139,120,48,232,101,129,6,0,72,137,69,216, 72,131,125,216,0,117,37,72,139,69,184,72,139,64,48,72,139,16,72,139,125,184,72,141,53,111,98,8,0,184,0,0,0,0,232,224,61,7,0,233,1,2,0,0,72,141,85,208,72,141,117,252,72,139,125,216,232,142,238,1,0,133,192,117,37,72,139,69,184,72,139,64,48,72,139,16,72, 139,125,184,72,141,53,108,98,8,0,184,0,0,0,0,232,166,61,7,0,233,199,1,0,0,139,69,252,131,248,3,127,21,72,139,69,184,72,139,120,24,15,87,192,232,183,109,6,0,233,170,1,0,0,243,15,16,5,212,235,8,0,15,46,69,180,115,2,235,30,72,139,69,208,72,131,192,8,243, 15,16,0,72,139,69,184,72,139,120,24,232,137,109,6,0,233,124,1,0,0,139,69,252,131,232,2,243,15,42,200,243,15,16,69,180,15,46,193,115,2,235,43,72,139,69,208,72,141,80,240,139,69,252,72,152,72,193,224,3,72,141,4,2,243,15,16,0,72,139,69,184,72,139,120,24, 232,72,109,6,0,233,59,1,0,0,243,15,16,69,180,243,15,44,192,137,69,248,139,69,252,131,232,2,59,69,248,127,9,139,69,252,131,232,3,137,69,248,139,69,248,72,152,72,193,224,3,72,137,194,72,139,69,208,72,141,4,2,72,137,69,200,243,15,42,77,248,243,15,16,69, 180,243,15,92,193,243,15,17,69,224,72,139,69,200,72,131,232,8,139,0,137,69,244,72,139,69,200,139,0,137,69,240,72,139,69,200,72,131,192,8,139,0,137,69,236,72,139,69,200,72,131,192,16,139,0,137,69,232,243,15,16,69,236,243,15,92,69,240,243,15,17,69,228, 243,15,90,101,240,243,15,90,109,224,243,15,90,117,228,243,15,90,77,224,242,15,16,5,207,234,8,0,102,15,40,208,242,15,92,209,102,15,40,202,242,15,16,5,195,234,8,0,102,15,40,249,242,15,89,248,243,15,16,69,232,15,40,208,243,15,92,85,244,243,15,16,77,228, 243,15,16,5,149,234,8,0,243,15,89,193,243,15,88,194,15,40,216,243,15,89,93,224,243,15,16,69,244,243,15,88,192,15,40,208,243,15,88,85,232,243,15,16,77,240,243,15,16,5,103,234,8,0,243,15,89,193,243,15,88,194,243,15,88,195,243,15,90,192,242,15,89,199,242, 15,88,198,242,15,89,197,242,15,88,196,242,15,90,192,72,139,69,184,72,139,120,24,232,8,108,6,0,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,248,72,139,69,240,72,137,66,48,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,235, 222,10,0,232,226,120,6,0,72,137,69,248,72,139,85,248,72,139,69,232,72,137,66,48,72,139,125,248,72,141,53,83,206,10,0,232,240,105,6,0,72,139,69,248,201,195,85,72,137,229,83,72,131,236,24,72,141,29,178,255,255,255,72,141,61,67,96,8,0,232,146,65,6,0,72, 137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,197,47,6,0,72,137,5,112,222,10,0,72,141,53,246,252,255,255,72,139,61,98,222,10,0,232,57,61,6,0,72,141,61,38,108,8,0,232,63,65,6,0,72,141,53,50, 255,255,255,72,139,61,67,222,10,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,182,54,6,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,48,72,137,125,216,243,15,17,69,212,72,141,5,44,36,11,0,72,139,48,72,139,69,216,72,139,120,48,232,22,126, 6,0,72,137,69,232,72,131,125,232,0,117,37,72,139,69,216,72,139,64,48,72,139,16,72,139,125,216,72,141,53,32,95,8,0,184,0,0,0,0,232,145,58,7,0,233,135,0,0,0,72,141,85,224,72,141,117,248,72,139,125,232,232,63,235,1,0,133,192,117,34,72,139,69,216,72,139, 64,48,72,139,16,72,139,125,216,72,141,53,68,95,8,0,184,0,0,0,0,232,87,58,7,0,235,80,72,139,69,216,243,15,16,64,56,243,15,44,192,137,69,244,131,125,244,0,121,9,199,69,244,0,0,0,0,235,16,139,69,248,57,69,244,124,8,139,69,248,255,200,137,69,244,139,69,244, 72,152,72,193,224,3,72,137,194,72,139,69,224,72,1,194,139,69,212,137,2,72,139,125,232,232,195,233,1,0,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,248,72,139,69,240,72,137,66,48,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139, 61,30,221,10,0,232,13,119,6,0,72,137,69,248,72,139,85,248,184,0,0,0,0,137,66,56,72,139,85,248,72,139,69,232,72,137,66,48,72,139,117,248,72,131,198,56,72,139,125,248,232,155,99,6,0,72,139,69,248,201,195,85,72,137,229,83,72,131,236,24,72,141,29,165,255, 255,255,72,141,61,136,94,8,0,232,176,63,6,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,227,45,6,0,72,137,5,150,220,10,0,72,141,53,99,254,255,255,72,139,61,136,220,10,0,232,87,59,6,0,72, 141,61,68,106,8,0,232,93,63,6,0,72,141,53,37,255,255,255,72,139,61,105,220,10,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,212,52,6,0,72,131,196,24,91,201,195,85,72,137,229,232,23,222,255,255,232,50,227,255,255,232,194,230,255,255,232,138, 235,255,255,232,5,242,255,255,232,155,245,255,255,232,53,248,255,255,232,7,250,255,255,232,81,253,255,255,232,46,255,255,255,201,195,85,72,137,229,72,137,125,232,72,139,69,232,72,131,192,8,72,139,0,139,0,137,69,252,72,139,69,232,72,131,192,16,72,139, 0,72,137,69,240,72,139,69,232,72,131,192,24,72,139,0,137,69,248,235,14,72,139,85,240,139,69,252,137,2,72,131,69,240,4,255,77,248,131,125,248,255,117,233,72,139,69,232,72,131,192,32,201,195,85,72,137,229,72,137,125,232,72,139,69,232,72,131,192,8,72,139, 0,139,0,137,69,252,72,139,69,232,72,131,192,16,72,139,0,72,137,69,240,72,139,69,232,72,131,192,24,72,139,0,137,69,248,235,109,72,139,85,240,139,69,252,137,2,72,139,85,240,72,131,194,4,139,69,252,137,2,72,139,85,240,72,131,194,8,139,69,252,137,2,72,139, 85,240,72,131,194,12,139,69,252,137,2,72,139,85,240,72,131,194,16,139,69,252,137,2,72,139,85,240,72,131,194,20,139,69,252,137,2,72,139,85,240,72,131,194,24,139,69,252,137,2,72,139,85,240,72,131,194,28,139,69,252,137,2,131,109,248,8,72,131,69,240,32,131, 125,248,0,117,141,72,139,69,232,72,131,192,32,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,139,69,236,131,224,7,133,192,116,38,139,69,236,72,139,77,240,72,139,85,248,65,137,192,190,3,0,0,0,72,141,61,189,254,255,255,184, 0,0,0,0,232,31,115,1,0,235,36,139,69,236,72,139,77,240,72,139,85,248,65,137,192,190,3,0,0,0,72,141,61,239,254,255,255,184,0,0,0,0,232,249,114,1,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,201,195,85,72,137, 229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,72,131,194,48,65,137,240,190,3,0,0,0,72,141,61,55,254,255,255,184,0,0,0,0,232,153,114,1,0,201,195,85,72,137,229,72,131,236, 32,243,15,17,69,236,72,139,61,49,218,10,0,232,24,116,6,0,72,137,69,248,72,139,85,248,139,69,236,137,66,48,72,141,61,239,100,8,0,232,240,60,6,0,72,137,198,72,139,125,248,232,32,101,6,0,72,139,69,248,201,195,85,72,137,229,83,72,131,236,24,72,141,29,171, 255,255,255,72,141,61,163,91,8,0,232,194,60,6,0,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,245,42,6,0,72,137,5,176,217,10,0,72,141,53,4,255,255,255,72,139,61,162,217,10,0,232,105,56,6, 0,72,141,61,54,101,8,0,232,111,60,6,0,72,141,53,254,254,255,255,72,139,61,131,217,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,236,49,6,0,72,131,196,24,91,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,224,72,139,69, 200,72,131,192,16,72,139,0,72,137,69,216,72,139,69,200,72,131,192,24,72,139,0,137,69,252,72,139,69,224,139,64,52,137,69,248,72,141,69,248,139,0,37,0,0,0,96,133,192,116,18,72,141,69,248,139,0,37,0,0,0,96,61,0,0,0,96,117,18,184,0,0,0,0,137,69,248,139,85, 248,72,139,69,224,137,80,52,72,139,69,224,139,64,84,133,192,15,132,140,0,0,0,72,139,69,224,243,15,16,72,76,72,139,69,224,243,15,16,64,68,243,15,89,193,243,15,44,192,137,69,244,131,125,244,0,117,7,199,69,244,1,0,0,0,72,139,85,224,139,69,244,137,66,80, 72,139,69,224,243,15,16,72,48,72,139,69,224,243,15,16,64,52,243,15,92,200,243,15,42,69,244,15,40,209,243,15,94,208,15,40,194,72,139,69,224,243,15,17,64,56,72,139,69,224,243,15,16,72,64,72,139,69,224,243,15,16,64,56,243,15,89,193,72,139,69,224,243,15, 17,64,60,72,139,69,224,199,64,84,0,0,0,0,72,139,69,224,139,64,80,133,192,116,108,72,139,69,224,139,64,52,137,69,240,235,37,72,139,85,216,139,69,240,137,2,72,131,69,216,4,72,139,69,224,243,15,16,72,60,243,15,16,69,240,243,15,88,193,243,15,17,69,240,255, 77,252,131,125,252,255,117,210,72,139,69,224,243,15,16,72,52,72,139,69,224,243,15,16,64,56,243,15,88,193,72,139,69,224,243,15,17,64,52,72,139,69,224,139,64,80,141,80,255,72,139,69,224,137,80,80,235,49,72,139,69,224,139,80,48,72,139,69,224,137,80,52,72, 139,69,224,139,64,52,137,69,236,235,14,72,139,85,216,139,69,236,137,2,72,131,69,216,4,255,77,252,131,125,252,255,117,233,72,139,69,200,72,131,192,32,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,224,72,139,69,200, 72,131,192,16,72,139,0,72,137,69,216,72,139,69,200,72,131,192,24,72,139,0,137,69,252,72,139,69,224,139,64,52,137,69,248,72,141,69,248,139,0,37,0,0,0,96,133,192,116,18,72,141,69,248,139,0,37,0,0,0,96,61,0,0,0,96,117,18,184,0,0,0,0,137,69,248,139,85,248, 72,139,69,224,137,80,52,72,139,69,224,139,64,84,133,192,15,132,140,0,0,0,72,139,69,224,243,15,16,72,76,72,139,69,224,243,15,16,64,68,243,15,89,193,243,15,44,192,137,69,244,131,125,244,0,117,7,199,69,244,1,0,0,0,72,139,85,224,139,69,244,137,66,80,72,139, 69,224,243,15,16,72,48,72,139,69,224,243,15,16,64,52,243,15,92,200,243,15,42,69,244,15,40,209,243,15,94,208,15,40,194,72,139,69,224,243,15,17,64,56,72,139,69,224,243,15,16,72,64,72,139,69,224,243,15,16,64,56,243,15,89,193,72,139,69,224,243,15,17,64,60, 72,139,69,224,199,64,84,0,0,0,0,72,139,69,224,139,64,80,133,192,116,111,72,139,69,224,139,64,52,137,69,240,235,37,72,139,85,216,139,69,240,137,2,72,131,69,216,4,72,139,69,224,243,15,16,72,60,243,15,16,69,240,243,15,88,193,243,15,17,69,240,255,77,252, 131,125,252,255,117,210,72,139,69,224,243,15,16,72,52,72,139,69,224,243,15,16,64,56,243,15,88,193,72,139,69,224,243,15,17,64,52,72,139,69,224,139,64,80,141,80,255,72,139,69,224,137,80,80,233,141,0,0,0,72,139,69,224,139,80,48,72,139,69,224,137,80,52,72, 139,69,224,139,64,52,137,69,236,235,109,72,139,85,216,139,69,236,137,2,72,139,85,216,72,131,194,4,139,69,236,137,2,72,139,85,216,72,131,194,8,139,69,236,137,2,72,139,85,216,72,131,194,12,139,69,236,137,2,72,139,85,216,72,131,194,16,139,69,236,137,2,72, 139,85,216,72,131,194,20,139,69,236,137,2,72,139,85,216,72,131,194,24,139,69,236,137,2,72,139,85,216,72,131,194,28,139,69,236,137,2,131,109,252,8,72,131,69,216,32,131,125,252,0,117,141,72,139,69,200,72,131,192,32,201,195,85,72,137,229,72,137,125,248, 243,15,17,69,244,72,139,69,248,243,15,16,72,72,15,87,192,15,46,193,115,2,235,51,72,139,85,248,139,69,244,137,66,52,72,139,69,248,139,80,52,72,139,69,248,137,80,48,72,139,69,248,199,64,84,0,0,0,0,72,139,69,248,139,80,84,72,139,69,248,137,80,80,235,47, 72,139,85,248,139,69,244,137,66,48,72,139,69,248,199,64,84,1,0,0,0,72,139,69,248,139,80,72,72,139,69,248,137,80,76,72,139,85,248,184,0,0,0,0,137,66,72,201,195,85,72,137,229,72,137,125,248,72,139,69,248,139,80,52,72,139,69,248,137,80,48,72,139,69,248, 199,64,84,0,0,0,0,72,139,69,248,139,80,84,72,139,69,248,137,80,80,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,51,72,139,69,240,72,139,0,139,48,72,139,69,240,72,139,0,72,139,72,8, 72,139,85,248,65,137,240,190,3,0,0,0,72,141,61,41,251,255,255,184,0,0,0,0,232,219,108,1,0,235,49,72,139,69,240,72,139,0,139,48,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,240,190,3,0,0,0,72,141,61,180,252,255,255,184,0,0,0,0,232,168,108,1, 0,72,139,69,240,72,139,0,139,0,242,15,42,200,242,15,16,5,81,223,8,0,242,15,94,193,242,15,90,192,72,139,69,248,243,15,17,64,64,72,139,69,240,72,139,0,243,15,16,72,16,72,139,69,240,72,139,0,139,0,105,192,232,3,0,0,243,15,42,192,15,40,209,243,15,94,208, 15,40,194,72,139,69,248,243,15,17,64,68,201,195,85,72,137,229,72,131,236,16,72,139,61,245,211,10,0,232,212,109,6,0,72,137,69,248,72,141,61,181,94,8,0,232,182,54,6,0,72,137,198,72,139,125,248,232,230,94,6,0,72,139,117,248,72,131,198,72,72,139,125,248, 232,98,90,6,0,72,139,69,248,199,64,84,0,0,0,0,72,139,69,248,139,80,84,72,139,69,248,137,80,80,72,139,85,248,184,0,0,0,0,137,66,76,72,139,69,248,139,80,76,72,139,69,248,137,80,72,72,139,69,248,139,80,72,72,139,69,248,137,80,48,72,139,69,248,139,80,48, 72,139,69,248,137,80,52,72,139,69,248,201,195,85,72,137,229,72,141,61,26,85,8,0,232,52,54,6,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,88,0,0,0,186,0,0,0,0,72,141,53,58,255,255,255,184,0,0,0,0,232,106,36,6,0,72,137,5,45,211,10,0,72,141,53,143,253, 255,255,72,139,61,31,211,10,0,232,222,49,6,0,72,141,61,171,94,8,0,232,228,53,6,0,72,141,53,37,254,255,255,72,139,61,0,211,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,97,43,6,0,72,141,61,56,82,8,0,232,184,53,6,0,72,141,53,200,253,255,255,72,139,61,212, 210,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,53,43,6,0,201,195,85,72,137,229,72,131,236,112,72,137,125,152,72,139,69,152,72,131,192,8,72,139,0,72,137,69,240,72,139,69,152,72,131,192,16,72,139,0,72,137,69,232,72,139,69,152,72,131,192,24,72,139,0,137, 69,252,72,139,69,240,72,139,64,48,72,137,69,224,72,139,69,240,72,139,64,56,72,137,69,216,72,139,69,240,72,139,64,80,72,137,69,208,72,139,69,240,72,139,64,72,72,137,69,200,72,139,69,240,242,15,16,64,64,232,57,120,6,0,102,15,40,200,242,15,42,69,252,242, 15,89,69,208,102,15,40,209,242,15,92,208,102,15,40,194,242,15,17,69,192,72,139,69,240,72,139,64,112,72,137,69,184,199,69,248,0,0,0,0,233,237,1,0,0,242,15,16,69,192,242,15,88,69,208,242,15,17,69,176,72,131,125,184,0,15,132,84,1,0,0,72,139,69,184,242,15, 16,72,8,242,15,16,69,176,102,15,46,193,119,5,233,59,1,0,0,72,139,69,240,242,15,16,72,88,242,15,16,69,176,102,15,46,193,115,2,235,27,72,139,69,240,243,15,16,64,96,243,15,90,192,242,15,17,69,224,184,0,0,0,0,72,137,69,216,72,139,69,184,242,15,16,8,72,139, 69,184,242,15,16,64,8,102,15,46,193,115,2,235,29,72,139,69,184,243,15,16,64,16,243,15,90,192,242,15,17,69,224,184,0,0,0,0,72,137,69,216,235,124,72,139,69,184,243,15,16,64,16,243,15,90,192,102,15,40,208,242,15,92,85,224,72,139,69,184,242,15,16,8,72,139, 69,184,242,15,16,64,8,102,15,40,217,242,15,92,216,102,15,40,195,102,15,40,202,242,15,94,200,102,15,40,193,242,15,17,69,168,72,139,69,184,242,15,16,72,8,242,15,16,69,176,242,15,92,193,102,15,40,200,242,15,89,77,168,242,15,16,69,224,242,15,88,193,242,15, 17,69,224,242,15,16,69,168,242,15,89,69,208,242,15,17,69,216,72,139,85,240,72,139,69,216,72,137,66,56,72,139,69,184,139,80,16,72,139,69,240,137,80,96,72,139,69,184,72,139,16,72,139,69,240,72,137,80,88,72,139,69,184,72,139,80,24,72,139,69,240,72,137,80, 112,72,139,125,184,190,32,0,0,0,232,159,79,6,0,72,139,69,240,72,139,64,112,72,137,69,184,233,161,254,255,255,72,139,69,240,242,15,16,72,88,242,15,16,69,176,102,15,46,193,115,2,235,61,72,139,69,240,243,15,16,64,96,243,15,90,192,242,15,17,69,224,72,139, 85,240,184,0,0,0,0,72,137,66,56,72,139,69,240,72,139,64,56,72,137,69,216,72,139,85,240,72,184,64,140,181,120,29,175,21,68,72,137,66,88,242,15,90,69,224,72,139,69,232,243,15,17,0,72,131,69,232,4,242,15,16,69,224,242,15,88,69,216,242,15,17,69,224,72,139, 69,176,72,137,69,192,255,69,248,139,69,248,59,69,252,15,140,7,254,255,255,72,139,85,240,72,139,69,224,72,137,66,48,72,139,69,152,72,131,192,32,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,139,64,112,72,137,69,248,235,34,72,139, 69,248,72,139,64,24,72,137,69,240,72,139,125,248,190,32,0,0,0,232,185,78,6,0,72,139,69,240,72,137,69,248,72,131,125,248,0,117,215,72,139,69,232,72,199,64,112,0,0,0,0,72,139,85,232,184,0,0,0,0,72,137,66,56,72,139,85,232,184,0,0,0,0,137,66,104,72,139,69, 232,139,80,104,72,139,69,232,137,80,100,72,139,69,232,242,15,16,64,48,242,15,90,192,72,139,69,232,243,15,17,64,96,72,139,85,232,72,184,64,140,181,120,29,175,21,68,72,137,66,88,201,195,85,72,137,229,72,131,236,80,72,137,125,184,243,15,17,69,180,72,139, 69,184,242,15,16,64,64,232,52,117,6,0,242,15,17,69,240,72,139,69,184,243,15,16,72,100,15,87,192,15,46,193,118,2,235,16,72,139,69,184,243,15,16,64,100,243,15,17,69,176,235,8,15,87,192,243,15,17,69,176,243,15,16,69,176,243,15,17,69,252,72,139,69,184,139, 64,104,137,69,248,243,15,90,69,248,242,15,88,69,240,242,15,17,69,232,72,199,69,208,0,0,0,0,72,141,69,180,139,0,37,0,0,0,96,133,192,116,18,72,141,69,180,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,180,15,87,192,15,46,69,248,119,2,235,32,243, 15,16,69,180,243,15,90,192,72,139,69,184,242,15,17,64,48,72,139,125,184,232,151,254,255,255,233,156,1,0,0,191,32,0,0,0,232,129,75,6,0,72,137,69,200,72,139,69,184,72,139,64,112,72,133,192,116,84,72,139,69,184,72,139,64,112,242,15,16,64,8,102,15,46,69, 232,119,64,72,139,69,184,72,139,64,112,242,15,16,64,8,102,15,46,69,232,117,73,122,71,72,139,69,184,72,139,64,112,242,15,16,8,72,139,69,184,72,139,64,112,242,15,16,64,8,102,15,46,200,119,11,15,87,192,15,46,69,252,115,2,235,29,72,139,69,184,72,139,64,112, 72,137,69,208,72,139,85,184,72,139,69,200,72,137,66,112,233,187,0,0,0,72,139,69,184,72,139,64,112,72,137,69,224,235,98,72,139,69,216,242,15,16,64,8,102,15,46,69,232,119,52,72,139,69,216,242,15,16,64,8,102,15,46,69,232,117,58,122,56,72,139,69,216,242, 15,16,8,72,139,69,216,242,15,16,64,8,102,15,46,200,119,11,15,87,192,15,46,69,252,115,2,235,22,72,139,69,216,72,137,69,208,72,139,85,224,72,139,69,200,72,137,66,24,235,83,72,139,69,216,72,137,69,224,72,139,69,224,72,139,64,24,72,137,69,216,72,131,125, 216,0,117,139,72,139,85,224,72,139,69,200,72,137,66,24,72,199,69,208,0,0,0,0,235,34,72,139,69,208,72,139,64,24,72,137,69,224,72,139,125,208,190,32,0,0,0,232,64,76,6,0,72,139,69,224,72,137,69,208,72,131,125,208,0,117,215,72,139,69,200,72,199,64,24,0,0, 0,0,139,85,180,72,139,69,200,137,80,16,72,139,85,200,72,139,69,232,72,137,66,8,243,15,90,69,252,242,15,88,69,232,72,139,69,200,242,15,17,0,72,139,85,184,184,0,0,0,0,137,66,104,72,139,69,184,139,80,104,72,139,69,184,137,80,100,201,195,85,72,137,229,72, 131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,240,190,3,0,0,0,72,141,61,1,250,255,255,184,0,0,0,0,232,1,101,1,0,72,139,69,240,72,139,0,243,15,16,64,16,243,15,90,200,242, 15,16,5,199,215,8,0,102,15,40,209,242,15,94,208,102,15,40,194,72,139,69,248,242,15,17,64,72,72,139,69,240,72,139,0,243,15,16,64,16,243,15,90,200,242,15,16,5,154,215,8,0,242,15,94,193,72,139,69,248,242,15,17,64,80,201,195,85,72,137,229,72,131,236,16,72, 139,61,92,204,10,0,232,51,102,6,0,72,137,69,248,72,141,61,20,87,8,0,232,21,47,6,0,72,137,198,72,139,125,248,232,69,87,6,0,72,139,117,248,72,131,198,100,72,139,125,248,232,193,82,6,0,72,139,117,248,72,131,198,104,72,139,125,248,232,176,82,6,0,72,139,85, 248,184,0,0,0,0,137,66,104,72,139,69,248,139,80,104,72,139,69,248,137,80,100,72,139,85,248,184,0,0,0,0,72,137,66,56,72,139,69,248,72,139,80,56,72,139,69,248,72,137,80,48,232,146,113,6,0,72,139,69,248,242,15,17,64,64,72,139,69,248,72,199,64,112,0,0,0, 0,72,139,85,248,184,0,0,0,0,72,137,66,72,72,139,85,248,72,184,64,140,181,120,29,175,21,68,72,137,66,88,72,139,69,248,201,195,85,72,137,229,83,72,131,236,8,72,141,29,135,251,255,255,72,141,61,65,77,8,0,232,85,46,6,0,72,137,199,65,185,0,0,0,0,65,184,0, 0,0,0,185,120,0,0,0,72,137,218,72,141,53,254,254,255,255,184,0,0,0,0,232,141,28,6,0,72,137,5,88,203,10,0,72,141,53,229,251,255,255,72,139,61,74,203,10,0,232,1,42,6,0,72,141,61,206,86,8,0,232,7,46,6,0,72,141,53,50,254,255,255,72,139,61,43,203,10,0,185, 0,0,0,0,72,137,194,184,0,0,0,0,232,132,35,6,0,72,141,61,91,74,8,0,232,219,45,6,0,72,141,53,250,250,255,255,72,139,61,255,202,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,88,35,6,0,72,131,196,8,91,201,195,85,72,137,229,72,131,236,16,72,139,61,223,202,10, 0,232,174,100,6,0,72,137,69,248,72,139,85,248,184,0,0,0,0,137,66,48,72,139,125,248,72,141,53,31,186,10,0,232,188,85,6,0,72,139,85,248,184,0,0,0,0,137,66,52,72,139,69,248,201,195,85,72,137,229,72,137,125,232,72,139,69,232,72,131,192,8,72,139,0,72,137, 69,248,72,139,69,232,72,131,192,16,72,139,0,72,137,69,240,72,139,69,248,139,16,72,139,69,240,137,16,72,139,69,232,72,131,192,24,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,77,248,72,131,193,48,72,139,69,240,72,139,0,72,139, 64,8,72,141,80,252,72,139,69,240,72,139,0,139,0,72,152,72,193,224,2,72,1,194,190,2,0,0,0,72,141,61,127,255,255,255,184,0,0,0,0,232,87,98,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,64,48,72,139,69,248,72,139,120,24, 232,191,86,6,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,201,195,85,72,137,229,72,141,61,135,75,8,0,232,148,44,6,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,192,254,255, 255,184,0,0,0,0,232,202,26,6,0,72,137,5,157,201,10,0,72,139,61,150,201,10,0,190,52,0,0,0,232,198,41,6,0,72,141,61,13,85,8,0,232,70,44,6,0,72,141,53,13,255,255,255,72,139,61,114,201,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,195,33,6,0,72,141,61,1,87, 8,0,232,26,44,6,0,72,141,53,86,255,255,255,72,139,61,70,201,10,0,65,184,0,0,0,0,185,6,0,0,0,72,137,194,184,0,0,0,0,232,145,33,6,0,72,141,53,12,255,255,255,72,139,61,32,201,10,0,232,155,39,6,0,201,195,85,72,137,229,72,131,236,16,72,139,61,18,201,10,0, 232,217,98,6,0,72,137,69,248,72,139,125,248,72,141,53,86,184,10,0,232,243,83,6,0,72,139,85,248,184,0,0,0,0,137,66,64,72,139,69,248,199,64,48,0,0,0,0,72,139,69,248,72,199,64,56,0,0,0,0,72,139,69,248,199,64,52,0,0,0,0,72,139,69,248,201,195,85,72,137,229, 72,131,236,48,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,232,72,139,64,56,72,137,69,224,72,139,69,232,139,64,48,137,69,252,199,69,248,0,0,0,0,235,36,139,69,248,72,152, 72,193,224,2,72,137,194,72,3,85,224,139,69,248,72,152,72,193,224,2,72,3,69,240,139,0,137,2,255,69,248,139,69,248,59,69,252,124,212,232,240,109,6,0,72,139,69,232,242,15,17,64,72,72,139,69,232,199,64,52,1,0,0,0,72,139,69,216,72,131,192,24,201,195,85,72, 137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,224,72,139,0,139,0,137,69,252,72,139,69,232,139,64,48,59,69,252,116,93,72,139,69,232,72,139,64,56,72,133,192,116,30,72,139,69,232,139,64,48,72,152,72,141,52,133,0,0,0,0,72,139,69,232,72,139, 120,56,232,171,70,6,0,139,69,252,72,152,72,141,60,133,0,0,0,0,232,165,68,6,0,72,137,194,72,139,69,232,72,137,80,56,72,139,69,232,199,64,52,0,0,0,0,72,139,85,232,139,69,252,137,66,48,72,139,69,224,72,139,0,243,15,16,72,16,243,15,16,5,180,210,8,0,15,40, 209,243,15,94,208,15,40,194,72,139,69,232,243,15,17,64,68,72,139,69,224,72,139,0,72,139,80,8,72,139,77,232,190,2,0,0,0,72,141,61,161,254,255,255,184,0,0,0,0,232,142,95,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,139,64,52,133, 192,116,109,72,139,69,232,242,15,16,64,72,232,12,109,6,0,102,15,40,200,72,139,69,232,243,15,16,64,68,243,15,90,192,242,15,89,193,242,15,44,192,137,69,248,131,125,248,0,121,9,199,69,248,0,0,0,0,235,24,72,139,69,232,139,64,48,59,69,248,127,12,72,139,69, 232,139,64,48,255,200,137,69,248,72,139,69,232,72,139,80,56,139,69,248,72,152,72,193,224,2,72,141,4,2,139,0,137,69,252,235,8,184,0,0,0,0,137,69,252,72,139,69,232,72,139,120,24,243,15,16,69,252,232,122,83,6,0,201,195,85,72,137,229,72,131,236,16,72,137, 125,248,72,139,69,248,72,139,64,56,72,133,192,116,30,72,139,69,248,139,64,48,72,152,72,141,52,133,0,0,0,0,72,139,69,248,72,139,120,56,232,84,69,6,0,201,195,85,72,137,229,83,72,131,236,8,72,141,29,183,255,255,255,72,141,61,32,72,8,0,232,35,41,6,0,72,137, 199,65,185,0,0,0,0,65,184,0,0,0,0,185,80,0,0,0,72,137,218,72,141,53,38,253,255,255,184,0,0,0,0,232,91,23,6,0,72,137,5,54,198,10,0,72,139,61,47,198,10,0,190,64,0,0,0,232,87,38,6,0,72,141,61,158,81,8,0,232,215,40,6,0,72,141,53,229,253,255,255,72,139,61, 11,198,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,84,30,6,0,72,141,53,152,254,255,255,72,139,61,235,197,10,0,232,94,36,6,0,72,131,196,8,91,201,195,85,72,137,229,83,72,131,236,56,243,15,17,69,204,243,15,17,77,200,243,15,16,69,204,243,15,44,192,137,69, 236,243,15,16,69,200,243,15,44,192,137,69,232,131,125,236,0,127,7,199,69,236,0,4,0,0,131,125,232,0,127,15,139,85,236,137,208,193,232,31,1,208,209,248,137,69,232,139,69,236,141,80,31,133,192,15,72,194,193,248,5,255,192,59,69,232,126,19,139,69,236,141, 80,31,133,192,15,72,194,193,248,5,255,192,137,69,232,139,69,236,131,192,64,72,152,72,141,60,133,0,0,0,0,232,50,66,6,0,72,137,69,208,72,131,125,208,0,117,30,72,141,61,4,71,8,0,184,0,0,0,0,232,97,31,7,0,72,199,69,192,0,0,0,0,233,105,1,0,0,72,141,5,109, 10,11,0,72,139,56,232,233,94,6,0,72,137,69,216,72,139,85,216,72,139,69,208,72,137,66,64,72,139,85,216,139,69,236,137,66,84,72,139,69,216,199,64,72,0,0,0,0,72,139,85,216,139,69,232,137,66,76,199,69,228,0,0,0,0,235,22,139,69,228,72,139,77,216,72,99,208, 184,0,0,0,0,137,68,145,92,255,69,228,131,125,228,31,126,228,199,69,228,0,0,0,0,235,107,139,69,228,72,152,72,193,224,2,72,137,195,72,3,93,208,242,15,42,77,228,242,15,16,5,187,207,8,0,242,15,89,200,242,15,42,69,236,102,15,40,209,242,15,94,208,102,15,40, 194,232,145,64,8,0,102,15,40,200,242,15,16,5,109,207,8,0,102,15,40,208,242,15,92,209,102,15,40,202,242,15,42,69,236,102,15,40,209,242,15,94,208,102,15,40,194,242,15,90,192,243,15,17,3,255,69,228,139,69,228,59,69,236,124,141,235,26,139,69,228,72,152,72, 193,224,2,72,137,194,72,3,85,208,184,0,0,0,0,137,2,255,69,228,139,69,236,131,192,64,59,69,228,127,219,72,141,53,118,3,0,0,72,139,125,216,232,147,103,6,0,72,137,194,72,139,69,216,72,137,80,56,72,141,61,170,163,8,0,232,189,38,6,0,72,137,198,72,139,125, 216,232,237,78,6,0,72,137,194,72,139,69,216,72,137,80,48,72,139,85,216,184,0,0,0,0,137,130,220,0,0,0,72,139,69,216,199,128,224,0,0,0,64,0,0,0,72,139,69,216,72,137,69,192,72,139,69,192,72,131,196,56,91,201,195,85,72,137,229,72,131,236,80,72,137,125,184, 72,139,69,184,72,131,192,8,72,139,0,72,137,69,232,72,139,69,184,72,131,192,16,72,139,0,72,137,69,224,72,139,69,184,72,131,192,24,72,139,0,137,69,252,139,69,252,72,152,72,193,224,2,72,1,69,224,72,139,69,232,139,64,72,137,69,248,72,139,69,232,72,131,192, 92,72,137,69,216,233,145,0,0,0,72,139,69,232,72,139,80,64,139,69,248,72,152,72,193,224,2,72,141,4,2,72,137,69,208,72,139,69,224,72,137,69,200,72,139,69,216,139,0,137,69,244,199,69,240,0,0,0,0,235,62,72,131,109,200,4,72,139,69,208,243,15,16,16,72,139, 69,200,243,15,16,8,72,139,69,200,243,15,16,0,243,15,89,193,15,40,202,243,15,89,200,243,15,16,69,244,243,15,88,193,243,15,17,69,244,72,131,69,208,4,255,69,240,139,69,240,59,69,252,124,186,72,139,85,216,139,69,244,137,2,72,139,69,232,139,64,80,1,69,248, 72,131,69,216,4,72,139,69,232,139,64,84,59,69,248,15,143,95,255,255,255,72,139,85,216,184,0,0,0,0,137,2,72,139,69,232,139,64,72,137,194,43,85,252,72,139,69,232,137,80,72,72,139,69,232,139,64,72,133,192,15,137,131,0,0,0,72,139,69,232,139,80,92,72,139, 69,232,137,80,88,72,139,69,232,139,64,80,137,69,248,72,139,69,232,72,131,192,92,72,137,69,216,235,31,72,139,69,216,72,131,192,4,139,16,72,139,69,216,137,16,72,139,69,232,139,64,80,1,69,248,72,131,69,216,4,72,139,69,232,139,64,84,59,69,248,127,213,72, 139,85,216,184,0,0,0,0,137,2,72,139,69,232,139,64,80,137,194,43,85,252,72,139,69,232,137,80,72,72,139,69,232,72,139,64,56,72,137,199,102,15,87,192,232,112,103,6,0,72,139,69,184,72,131,192,32,201,195,85,72,137,229,83,72,131,236,40,72,137,125,216,72,137, 117,208,72,139,69,216,139,80,76,72,139,69,208,72,139,0,139,0,137,193,137,208,193,250,31,247,249,137,208,133,192,116,59,72,139,69,216,139,80,76,72,139,69,208,72,139,0,139,0,141,12,2,72,139,69,216,139,80,76,72,139,69,208,72,139,0,139,0,137,195,137,208, 193,250,31,247,251,137,208,137,202,41,194,72,139,69,216,137,80,80,235,14,72,139,69,216,139,80,76,72,139,69,216,137,80,80,72,139,69,208,72,139,0,139,16,72,139,69,216,139,128,224,0,0,0,57,194,15,142,136,0,0,0,72,139,69,216,139,80,84,72,139,69,208,72,139, 0,139,0,141,4,2,72,152,72,141,12,133,0,0,0,0,72,139,69,216,139,80,84,72,139,69,216,139,128,224,0,0,0,141,4,2,72,152,72,141,52,133,0,0,0,0,72,139,69,216,72,139,120,64,72,137,202,232,237,62,6,0,72,137,69,232,72,131,125,232,0,117,19,72,141,61,235,66,8,0, 184,0,0,0,0,232,104,23,7,0,235,80,72,139,85,232,72,139,69,216,72,137,80,64,72,139,69,208,72,139,0,139,16,72,139,69,216,137,144,224,0,0,0,72,139,69,208,72,139,0,139,48,72,139,69,208,72,139,0,72,139,72,8,72,139,85,216,65,137,240,190,3,0,0,0,72,141,61,2, 253,255,255,184,0,0,0,0,232,226,88,1,0,72,131,196,40,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,64,88,232,24,43,7,0,72,139,69,248,72,139,64,48,72,137,199,232,61,77,6,0,201,195,85,72,137,229,72,131,236,16,72,137,125, 248,72,139,69,248,72,139,64,56,72,137,199,232,150,102,6,0,72,139,69,248,139,80,84,72,139,69,248,139,128,224,0,0,0,141,4,2,72,152,72,141,52,133,0,0,0,0,72,139,69,248,72,139,120,64,232,7,63,6,0,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,165, 255,255,255,76,141,37,60,250,255,255,72,141,61,7,66,8,0,232,205,34,6,0,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,232,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,250,16,6,0,72,137,194,72,141,5,26,5,11,0,72,137,16, 72,141,5,16,5,11,0,72,139,56,190,220,0,0,0,232,237,31,6,0,72,141,61,52,75,8,0,232,109,34,6,0,72,137,194,72,141,53,168,253,255,255,72,141,5,230,4,11,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,231,23,6,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131, 236,48,243,15,17,69,236,243,15,17,77,232,243,15,17,85,228,243,15,17,93,224,72,139,61,104,191,10,0,232,39,89,6,0,72,137,69,248,72,139,69,248,199,64,76,0,0,0,0,72,139,85,248,184,0,0,0,0,137,66,88,72,141,53,68,1,0,0,72,139,125,248,232,173,98,6,0,72,137, 194,72,139,69,248,72,137,80,64,72,139,125,248,72,141,53,178,174,10,0,232,15,74,6,0,72,137,194,72,139,69,248,72,137,80,48,72,139,125,248,72,141,53,151,174,10,0,232,244,73,6,0,72,137,194,72,139,69,248,72,137,80,56,72,141,61,216,68,8,0,232,161,33,6,0,72, 137,193,72,139,117,248,72,139,125,248,72,141,21,41,174,10,0,232,199,61,6,0,72,139,85,248,184,0,0,0,0,137,66,92,72,139,85,248,184,0,0,0,0,137,66,72,243,15,16,69,224,243,15,16,77,228,243,15,16,101,232,139,69,236,72,139,125,248,15,40,216,15,40,209,15,40, 204,137,69,220,243,15,16,69,220,232,6,0,0,0,72,139,69,248,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,243,15,17,93,232,243,15,16,69,236,15,46,69,244,119,2,235,6,139,69,244,137,69,236,72,139,85,248,139,69,244, 137,66,80,72,139,85,248,139,69,240,137,66,96,72,139,85,248,139,69,236,137,66,84,72,139,85,248,139,69,232,137,66,100,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,15,182,208,72,139,69,248,137, 80,76,72,139,85,248,184,0,0,0,0,137,66,88,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,64,76,133,192,116,15,72,139,69,248,72,139,120,48,232,142,73,6,0,235,13,72,139,69,248,72,139,120,56,232,127,73,6,0,201,195,85,72,137,229,72, 131,236,48,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,72,139,69,232,243,15,16,72,88,15,87,192,15,46,200,119,2,235,42,72,139,69,232, 243,15,16,72,88,72,139,69,232,243,15,16,64,92,15,40,209,243,15,92,208,15,40,194,72,139,69,232,243,15,17,64,88,233,183,0,0,0,72,139,69,232,139,64,76,133,192,15,132,159,0,0,0,235,73,72,139,69,240,243,15,16,8,72,139,69,232,243,15,16,64,84,15,46,193,119, 2,235,44,72,139,69,232,72,139,120,64,102,15,87,192,232,122,98,6,0,72,139,69,232,199,64,76,0,0,0,0,72,139,69,232,139,80,100,72,139,69,232,137,80,88,235,98,72,131,69,240,4,255,77,252,131,125,252,255,117,174,235,82,72,139,69,240,243,15,16,8,72,139,69,232, 243,15,16,64,80,15,46,200,115,2,235,44,72,139,69,232,72,139,120,64,102,15,87,192,232,38,98,6,0,72,139,69,232,199,64,76,1,0,0,0,72,139,69,232,139,80,96,72,139,69,232,137,80,88,235,14,72,131,69,240,4,255,77,252,131,125,252,255,117,174,72,139,69,216,72, 131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,0,242,15,42,200,242,15,16,5,117,199,8,0,242,15,89,200,72,139,69,240,72,139,0,243,15,16,64,16,243,15,90,192,102,15,40,209,242,15,94,208,102,15,40,194, 242,15,90,192,72,139,69,248,243,15,17,64,92,72,139,69,240,72,139,0,139,16,72,139,69,240,72,139,0,72,139,64,8,72,139,77,248,65,137,208,72,137,194,190,3,0,0,0,72,141,61,78,254,255,255,184,0,0,0,0,232,54,84,1,0,201,195,85,72,137,229,72,131,236,16,72,137, 125,248,72,139,69,248,72,139,120,64,232,30,98,6,0,201,195,85,72,137,229,65,84,83,72,131,236,32,72,141,29,211,255,255,255,76,141,37,75,252,255,255,72,141,61,191,61,8,0,232,128,30,6,0,72,137,199,199,68,36,24,0,0,0,0,199,68,36,16,6,0,0,0,199,68,36,8,6,0, 0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,104,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,157,12,6,0,72,137,5,128,187,10,0,72,139,61,121,187,10,0,190,72,0,0,0,232,153,27,6,0,72,141,61,0,73,8,0,232,25,30,6,0,72,141,53,210,252,255,255,72,139, 61,85,187,10,0,199,68,36,8,0,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,123,19,6,0,72,141,61,9,65,8,0,232,210,29,6,0,72,141,53,228,252,255,255,72,139,61,14,187,10,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194, 184,0,0,0,0,232,73,19,6,0,72,141,61,103,70,8,0,232,160,29,6,0,72,141,53,81,254,255,255,72,139,61,220,186,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,29,19,6,0,72,131,196,32,91,65,92,201,195,85,72,137,229,232,144,224,255,255,232,37,231,255,255,232,243, 238,255,255,232,187,240,255,255,232,27,244,255,255,232,99,250,255,255,232,171,254,255,255,201,195,85,72,137,229,83,72,131,236,104,72,137,125,168,137,117,164,72,137,85,152,72,139,61,133,186,10,0,232,60,84,6,0,72,137,69,224,131,125,164,0,117,60,72,141, 69,176,72,137,69,152,199,69,164,2,0,0,0,199,69,176,1,0,0,0,184,0,0,128,63,137,69,184,72,141,69,176,72,131,192,16,199,0,1,0,0,0,72,141,69,176,72,141,80,16,184,0,0,0,64,137,66,8,139,69,164,72,99,208,72,139,69,224,72,137,80,48,139,69,164,72,152,72,141,60, 197,0,0,0,0,232,231,54,6,0,72,137,194,72,139,69,224,72,137,80,56,199,69,236,0,0,0,0,235,42,72,139,69,224,72,139,80,56,139,69,236,72,152,72,193,224,3,72,141,28,2,72,139,85,152,139,117,164,139,125,236,232,245,158,5,0,72,137,3,255,69,236,139,69,236,59,69, 164,124,206,199,69,236,1,0,0,0,235,30,72,139,117,224,72,139,125,224,72,141,13,164,169,10,0,72,141,21,157,169,10,0,232,155,56,6,0,255,69,236,139,69,236,59,69,164,124,218,72,139,85,224,184,0,0,0,0,137,66,64,72,139,69,224,72,131,196,104,91,201,195,85,72, 137,229,72,131,236,48,72,137,125,216,72,137,117,208,72,139,69,216,72,139,64,48,72,137,69,240,72,139,69,216,72,139,64,56,72,137,69,232,72,139,69,208,72,137,69,224,233,164,0,0,0,72,139,69,232,72,139,0,255,200,137,69,252,72,139,69,224,72,139,0,139,0,131, 248,64,116,19,72,141,61,43,59,8,0,184,0,0,0,0,232,70,19,7,0,235,109,131,125,252,0,120,103,232,0,126,6,0,59,69,252,126,93,139,69,252,72,152,72,193,224,8,72,137,194,72,141,5,9,2,11,0,72,139,0,72,141,52,2,72,139,69,224,72,139,0,72,139,72,8,139,69,252,72, 152,72,193,224,8,72,137,194,72,141,5,228,1,11,0,72,139,0,72,1,194,65,185,64,0,0,0,73,137,240,190,4,0,0,0,72,141,61,239,126,255,255,184,0,0,0,0,232,225,80,1,0,72,131,69,232,8,72,131,69,224,8,72,255,77,240,72,131,125,240,255,15,133,77,255,255,255,201,195, 85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,48,72,141,52,197,0,0,0,0,72,139,69,248,72,139,120,56,232,60,55,6,0,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,195,255,255,255,76,141,37,192,253,255,255,72,141,61,98,58,8,0, 232,2,27,6,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,72,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,55,9,6,0,72,137,5,34,184,10,0,72,139,61,27,184,10,0,190,64,0,0,0,232,51,24,6,0,72,141,61,122,67,8,0,232,179,26,6,0,72,141,53,112, 254,255,255,72,139,61,247,183,10,0,65,184,0,0,0,0,185,11,0,0,0,72,137,194,184,0,0,0,0,232,42,16,6,0,72,141,61,230,57,8,0,232,129,26,6,0,72,137,198,72,139,61,201,183,10,0,232,37,23,6,0,72,131,196,16,91,65,92,201,195,85,72,137,229,83,72,131,236,104,72, 137,125,168,137,117,164,72,137,85,152,72,139,61,168,183,10,0,232,87,81,6,0,72,137,69,224,131,125,164,0,117,60,72,141,69,176,72,137,69,152,199,69,164,2,0,0,0,199,69,176,1,0,0,0,184,0,0,128,63,137,69,184,72,141,69,176,72,131,192,16,199,0,1,0,0,0,72,141, 69,176,72,141,80,16,184,0,0,0,64,137,66,8,139,69,164,72,99,208,72,139,69,224,72,137,80,48,139,69,164,72,152,72,141,60,197,0,0,0,0,232,2,52,6,0,72,137,194,72,139,69,224,72,137,80,56,199,69,236,0,0,0,0,235,42,72,139,69,224,72,139,80,56,139,69,236,72,152, 72,193,224,3,72,141,28,2,72,139,85,152,139,117,164,139,125,236,232,16,156,5,0,72,137,3,255,69,236,139,69,236,59,69,164,124,206,199,69,236,0,0,0,0,235,19,72,139,125,224,72,141,53,195,166,10,0,232,192,65,6,0,255,69,236,139,69,236,59,69,164,124,229,72,139, 69,224,72,131,196,104,91,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,235,22,72,139,69,240,139,16,72,139,69,232, 137,16,72,131,69,232,4,72,131,69,240,4,255,77,252,131,125,252,255,117,225,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,208,72,139,69,184,72,131,192,16,72,139,0,72,137,69,200,72,139,69, 184,72,131,192,24,72,139,0,137,69,252,233,214,0,0,0,72,139,69,208,139,0,137,69,248,72,139,69,208,72,131,192,4,139,0,137,69,244,72,139,69,208,72,131,192,8,139,0,137,69,240,72,139,69,208,72,131,192,12,139,0,137,69,236,72,139,69,208,72,131,192,16,139,0, 137,69,232,72,139,69,208,72,131,192,20,139,0,137,69,228,72,139,69,208,72,131,192,24,139,0,137,69,224,72,139,69,208,72,131,192,28,139,0,137,69,220,72,139,85,200,139,69,248,137,2,72,139,85,200,72,131,194,4,139,69,244,137,2,72,139,85,200,72,131,194,8,139, 69,240,137,2,72,139,85,200,72,131,194,12,139,69,236,137,2,72,139,85,200,72,131,194,16,139,69,232,137,2,72,139,85,200,72,131,194,20,139,69,228,137,2,72,139,85,200,72,131,194,24,139,69,224,137,2,72,139,85,200,72,131,194,28,139,69,220,137,2,131,109,252, 8,72,131,69,208,32,72,131,69,200,32,131,125,252,0,15,133,32,255,255,255,72,139,69,184,72,131,192,32,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,139,69,236,131,224,7,133,192,116,38,139,69,236,72,139,77,240,72,139,85,248, 65,137,192,190,3,0,0,0,72,141,61,71,254,255,255,184,0,0,0,0,232,31,77,1,0,235,36,139,69,236,72,139,77,240,72,139,85,248,65,137,192,190,3,0,0,0,72,141,61,128,254,255,255,184,0,0,0,0,232,249,76,1,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72, 137,117,208,72,139,69,216,72,139,64,48,72,137,69,240,72,139,69,216,72,139,64,56,72,137,69,232,72,139,69,208,72,137,69,224,233,141,0,0,0,72,139,69,232,72,139,0,255,200,137,69,252,72,139,69,224,72,139,0,139,0,131,248,64,116,19,72,141,61,151,54,8,0,184, 0,0,0,0,232,141,14,7,0,235,86,131,125,252,0,120,59,232,86,121,6,0,59,69,252,126,49,72,139,69,224,72,139,0,72,139,112,8,139,69,252,72,152,72,193,224,8,72,137,194,72,141,5,61,253,10,0,72,139,0,72,141,60,2,186,64,0,0,0,232,246,254,255,255,235,21,72,139, 69,224,72,139,0,72,139,120,8,190,64,0,0,0,232,184,69,1,0,72,131,69,232,8,72,131,69,224,8,72,255,77,240,72,131,125,240,255,15,133,100,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,48,72,141,52,197,0,0,0,0,72,139, 69,248,72,139,120,56,232,154,50,6,0,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,195,255,255,255,76,141,37,3,252,255,255,72,141,61,229,53,8,0,232,96,22,6,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,64,0,0,0,72,137,218,76, 137,230,184,0,0,0,0,232,149,4,6,0,72,137,5,136,179,10,0,72,141,61,233,62,8,0,232,34,22,6,0,72,141,53,152,254,255,255,72,139,61,110,179,10,0,65,184,0,0,0,0,185,11,0,0,0,72,137,194,184,0,0,0,0,232,153,11,6,0,72,141,61,85,53,8,0,232,240,21,6,0,72,137,198, 72,139,61,64,179,10,0,232,148,18,6,0,72,131,196,16,91,65,92,201,195,85,72,137,229,232,168,250,255,255,232,69,255,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,243,15,16,64,56,15,40,200,243,15,89,77,228,243, 15,16,5,4,190,8,0,243,15,89,193,243,15,44,192,137,69,252,131,125,252,0,127,7,199,69,252,1,0,0,0,139,69,252,247,216,131,224,3,1,69,252,131,69,252,64,72,139,69,232,139,64,64,59,69,252,116,81,139,69,252,131,192,4,72,152,72,141,20,133,0,0,0,0,72,139,69,232, 139,64,64,131,192,4,72,152,72,141,52,133,0,0,0,0,72,139,69,232,72,139,120,72,232,75,48,6,0,72,137,194,72,139,69,232,72,137,80,72,72,139,85,232,139,69,252,137,66,64,72,139,69,232,199,64,80,4,0,0,0,201,195,85,72,137,229,83,72,131,236,24,72,137,125,232, 137,117,228,72,139,69,232,139,88,92,232,86,83,1,0,57,195,116,24,72,139,85,232,139,69,228,137,66,96,232,67,83,1,0,137,194,72,139,69,232,137,80,92,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,61,43,178,10, 0,232,202,75,6,0,72,137,69,248,72,139,69,232,72,139,0,15,182,0,132,192,117,16,72,141,61,45,52,8,0,232,158,20,6,0,72,137,69,232,72,139,125,248,72,139,117,232,232,90,79,6,0,72,139,85,248,72,139,69,232,72,137,66,48,72,139,85,248,139,69,228,137,66,56,72, 139,69,248,199,64,64,0,0,0,0,191,16,0,0,0,232,129,46,6,0,72,137,194,72,139,69,248,72,137,80,72,72,139,69,248,199,64,88,0,0,0,0,72,139,69,248,199,64,96,0,0,0,0,72,139,85,248,184,0,0,0,0,137,66,100,72,139,69,248,201,195,85,72,137,229,72,137,125,184,72, 139,69,184,72,131,192,8,72,139,0,72,137,69,232,72,139,69,184,72,131,192,16,72,139,0,72,137,69,224,72,139,69,184,72,131,192,24,72,139,0,137,69,252,72,139,69,224,139,64,16,137,69,248,72,139,69,224,139,0,137,69,244,72,139,69,224,72,139,64,8,72,137,69,216, 139,69,248,72,152,72,193,224,2,72,3,69,216,72,137,69,208,72,139,85,216,72,131,194,16,72,139,69,224,139,0,72,152,72,193,224,2,72,141,4,2,72,137,69,200,139,69,252,1,69,248,233,173,0,0,0,72,139,69,232,139,0,137,69,240,72,131,69,232,4,72,141,69,240,139,0, 37,0,0,0,96,133,192,116,18,72,141,69,240,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,240,139,69,240,72,139,85,208,137,2,72,131,69,208,4,72,139,69,208,72,59,69,200,117,94,72,139,69,200,72,131,232,16,139,16,72,139,69,216,137,16,72,139,85,216, 72,131,194,4,72,139,69,200,72,131,232,12,139,0,137,2,72,139,85,216,72,131,194,8,72,139,69,200,72,131,232,8,139,0,137,2,72,139,85,216,72,131,194,12,72,139,69,200,72,131,232,4,139,0,137,2,72,139,69,216,72,131,192,16,72,137,69,208,139,69,244,41,69,248,255, 77,252,131,125,252,255,15,133,70,255,255,255,72,139,85,224,139,69,248,137,66,16,72,139,69,184,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,8,72,139,117,248,72,131,198,64,72,139,69,240,72,139, 0,72,139,80,8,65,137,200,72,137,241,190,3,0,0,0,72,141,61,105,254,255,255,184,0,0,0,0,232,2,72,1,0,232,227,80,1,0,137,194,72,139,69,248,137,80,88,72,139,69,240,72,139,0,139,48,72,139,125,248,232,86,253,255,255,72,139,69,240,72,139,0,243,15,16,64,16,72, 139,125,248,232,145,252,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,112,48,72,139,125,248,232,11,78,6,0,72,139,69,248,139,64,64,131,192,4,72,152,72,141,52,133,0,0,0,0,72,139,69,248,72,139,120,72,232,44,46,6,0,201,195, 85,72,137,229,65,84,83,72,131,236,16,72,141,29,174,255,255,255,76,141,37,37,253,255,255,72,141,61,129,49,8,0,232,242,17,6,0,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,104,0,0,0,72,137,218,76,137,230,184,0,0,0,0, 232,31,0,6,0,72,137,5,34,175,10,0,72,139,61,27,175,10,0,190,100,0,0,0,232,27,15,6,0,72,141,61,98,58,8,0,232,155,17,6,0,72,141,53,190,254,255,255,72,139,61,247,174,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,24,7,6,0,72,131,196,16,91,65,92,201,195,85, 72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,61,204,174,10,0,232,99,72,6,0,72,137,69,248,72,139,85,248,72,139,69,232,72,137,66,48,72,139,85,248,184,0,0,128,63,137,66,64,72,139,85,248,184,0,0,128,63,137,66,68,72,139,69,248,199,64,72, 0,0,0,0,243,15,16,69,228,72,139,125,248,232,22,0,0,0,72,139,125,248,72,141,53,67,158,10,0,232,64,57,6,0,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,53,80,174,10,0,72,139,69,232,72,139,120,48,232,5,78,6,0,72, 137,69,240,72,139,85,232,139,69,228,137,66,56,72,131,125,240,0,15,132,188,0,0,0,72,139,69,240,139,64,64,137,69,248,72,139,69,232,243,15,16,72,64,72,139,69,232,243,15,16,64,56,243,15,89,193,243,15,90,200,242,15,16,5,6,185,8,0,242,15,88,193,242,15,44,192, 243,15,42,200,72,139,69,232,243,15,16,64,68,243,15,88,200,72,139,69,232,139,64,72,243,15,42,192,15,40,209,243,15,92,208,15,40,194,243,15,44,208,72,139,69,232,137,80,60,72,139,69,232,139,64,60,243,15,42,200,72,139,69,232,243,15,16,64,68,15,46,193,119, 2,235,22,72,139,69,232,243,15,16,64,68,243,15,44,208,72,139,69,232,137,80,60,235,38,72,139,69,232,139,80,60,72,139,69,240,139,64,64,131,232,64,57,194,126,17,72,139,69,240,139,64,64,141,80,192,72,139,69,232,137,80,60,201,195,85,72,137,229,72,137,125,184, 72,139,69,184,72,131,192,8,72,139,0,72,137,69,232,72,139,69,184,72,131,192,16,72,139,0,72,137,69,224,72,139,69,184,72,131,192,24,72,139,0,139,0,137,69,252,72,139,69,184,72,131,192,32,72,139,0,137,69,248,72,139,69,224,139,64,16,43,69,252,137,69,244,72, 139,69,224,139,0,137,69,240,72,139,69,224,72,139,64,8,72,137,69,216,72,139,85,216,72,131,194,16,72,139,69,224,139,0,72,152,72,193,224,2,72,141,4,2,72,137,69,200,131,125,244,0,121,6,139,69,240,1,69,244,139,69,244,72,152,72,193,224,2,72,3,69,216,72,137, 69,208,235,45,72,139,69,208,139,16,72,139,69,232,137,16,72,131,69,232,4,72,131,69,208,4,72,139,69,208,72,59,69,200,117,13,139,69,240,72,152,72,193,224,2,72,41,69,208,255,77,248,131,125,248,255,117,202,72,139,69,184,72,131,192,40,201,195,85,72,137,229, 83,72,131,236,56,72,137,125,216,72,137,117,208,72,139,53,115,172,10,0,72,139,69,216,72,139,120,48,232,40,76,6,0,72,137,69,232,72,139,69,208,72,139,0,243,15,16,64,16,243,15,90,200,242,15,16,5,90,183,8,0,242,15,89,193,242,15,90,192,72,139,69,216,243,15, 17,64,64,72,139,69,208,72,139,0,139,0,243,15,42,192,72,139,69,216,243,15,17,64,68,72,131,125,232,0,15,132,171,0,0,0,72,139,69,208,72,139,0,243,15,16,64,16,72,139,125,232,232,209,248,255,255,72,139,69,208,72,139,0,139,48,72,139,125,232,232,111,249,255, 255,72,139,69,232,139,88,88,232,213,76,1,0,57,195,116,12,72,139,69,232,139,64,96,137,69,204,235,7,199,69,204,0,0,0,0,72,139,69,216,139,85,204,137,80,72,72,139,69,216,243,15,16,64,56,72,139,125,216,232,74,253,255,255,72,139,69,208,72,139,0,139,8,72,139, 117,216,72,131,198,60,72,139,125,232,72,131,199,64,72,139,69,208,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,13,254,255,255,184,0,0,0,0,232,121,67,1,0,235,46,72,139,69,216,72,139,64,48,72,139,0,15,182,0,132,192,116,28, 72,139,69,216,72,139,64,48,72,139,48,72,141,61,121,45,8,0,184,0,0,0,0,232,63,5,7,0,72,131,196,56,91,201,195,85,72,137,229,83,72,131,236,24,72,141,29,76,252,255,255,72,141,61,113,45,8,0,232,178,13,6,0,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65, 185,7,0,0,0,65,184,0,0,0,0,185,80,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,221,251,5,0,72,137,5,232,170,10,0,72,141,61,49,54,8,0,232,106,13,6,0,72,141,53,66,254,255,255,72,139,61,206,170,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,231,2,6,0,72,141, 53,69,252,255,255,72,139,61,174,170,10,0,232,37,9,6,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,151,170,10,0,232,38,68,6,0,72,137,69,248,72,139,69,232,72,139,0,15,182,0,132,192,117,16,72,141,61,194,44,8,0,232,250,12, 6,0,72,137,69,232,72,139,85,248,72,139,69,232,72,137,66,48,72,139,85,248,184,0,0,128,63,137,66,56,72,139,69,248,199,64,60,0,0,0,0,72,139,125,248,72,141,53,2,154,10,0,232,255,52,6,0,72,139,85,248,184,0,0,0,0,137,66,64,72,139,69,248,201,195,85,72,137,229, 72,131,236,8,72,137,125,136,72,139,69,136,72,131,192,8,72,139,0,72,137,69,192,72,139,69,136,72,131,192,16,72,139,0,72,137,69,184,72,139,69,136,72,131,192,24,72,139,0,72,137,69,176,72,139,69,136,72,131,192,32,72,139,0,72,137,69,168,72,139,69,136,72,131, 192,40,72,139,0,137,69,252,72,139,69,176,139,0,137,69,248,139,85,252,139,69,248,41,208,255,200,243,15,42,192,243,15,17,69,244,139,69,252,255,200,243,15,42,192,243,15,17,69,240,72,139,69,176,72,139,64,8,72,137,69,160,72,139,69,176,139,64,16,72,152,72, 193,224,2,72,3,69,160,72,137,69,144,72,139,69,168,139,64,60,243,15,42,192,243,15,17,69,236,233,191,1,0,0,72,139,69,168,243,15,16,72,56,72,139,69,192,243,15,16,0,243,15,89,193,243,15,92,69,236,243,15,17,69,232,72,131,69,192,4,243,15,16,77,232,243,15,16, 5,52,180,8,0,15,46,193,119,2,235,8,184,84,0,128,63,137,69,232,243,15,16,69,232,15,46,69,244,119,2,235,6,139,69,244,137,69,232,243,15,16,69,232,243,15,88,69,240,243,15,17,69,232,243,15,16,77,240,243,15,16,5,182,179,8,0,15,40,209,243,15,92,208,15,40,194, 243,15,17,69,240,243,15,16,69,232,243,15,44,192,137,69,224,243,15,42,77,224,243,15,16,69,232,243,15,92,193,243,15,17,69,228,139,69,224,72,152,72,193,224,2,72,137,194,72,139,69,144,72,41,208,72,137,69,152,72,139,69,160,72,131,192,16,72,59,69,152,118,13, 139,69,248,72,152,72,193,224,2,72,1,69,152,72,139,69,152,72,131,232,12,139,0,137,69,208,72,139,69,152,72,131,232,8,139,0,137,69,212,72,139,69,152,72,131,232,4,139,0,137,69,216,72,139,69,152,139,0,137,69,220,243,15,16,69,212,243,15,92,69,216,243,15,17, 69,204,243,15,90,101,216,243,15,90,109,228,243,15,90,117,204,243,15,90,77,228,242,15,16,5,3,179,8,0,102,15,40,208,242,15,92,209,102,15,40,202,242,15,16,5,247,178,8,0,102,15,40,249,242,15,89,248,243,15,16,69,208,15,40,208,243,15,92,85,220,243,15,16,77, 204,243,15,16,5,201,178,8,0,243,15,89,193,243,15,88,194,15,40,216,243,15,89,93,228,243,15,16,69,220,243,15,88,192,15,40,208,243,15,88,85,208,243,15,16,77,216,243,15,16,5,155,178,8,0,243,15,89,193,243,15,88,194,243,15,88,195,243,15,90,192,242,15,89,199, 242,15,88,198,242,15,89,197,242,15,88,196,242,15,90,192,72,139,69,184,243,15,17,0,72,131,69,184,4,255,77,252,131,125,252,255,15,133,52,254,255,255,72,139,69,136,72,131,192,48,201,195,85,72,137,229,83,72,131,236,72,72,137,125,216,72,137,117,208,72,139, 53,119,167,10,0,72,139,69,216,72,139,120,48,232,44,71,6,0,72,137,69,232,72,139,69,208,72,139,0,243,15,16,64,16,243,15,90,200,242,15,16,5,94,178,8,0,242,15,89,193,242,15,90,192,72,139,69,216,243,15,17,64,56,72,131,125,232,0,15,132,149,0,0,0,72,139,69, 208,72,139,0,139,48,72,139,125,232,232,158,244,255,255,72,139,69,232,139,88,88,232,4,72,1,0,57,195,116,12,72,139,69,232,139,64,96,137,69,204,235,7,199,69,204,0,0,0,0,72,139,69,216,139,85,204,137,80,60,72,139,69,208,72,139,0,139,16,72,139,77,232,72,131, 193,64,72,139,69,208,72,131,192,8,72,139,0,72,139,112,8,72,139,69,208,72,139,0,72,139,120,8,72,139,69,216,137,20,36,73,137,193,73,137,200,72,137,241,72,137,250,190,5,0,0,0,72,141,61,142,252,255,255,184,0,0,0,0,232,169,62,1,0,235,28,72,139,69,216,72,139, 64,48,72,139,48,72,141,61,232,40,8,0,184,0,0,0,0,232,129,0,7,0,72,131,196,72,91,201,195,85,72,137,229,83,72,131,236,24,72,141,29,208,251,255,255,72,141,61,188,40,8,0,232,244,8,6,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,72,0,0,0, 186,0,0,0,0,72,137,222,184,0,0,0,0,232,39,247,5,0,72,137,5,58,166,10,0,72,141,61,123,49,8,0,232,180,8,6,0,72,141,53,136,254,255,255,72,139,61,32,166,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,49,254,5,0,72,139,61,7,166,10,0,190,64,0,0,0,232,247,5,6, 0,72,131,196,24,91,201,195,85,72,137,229,232,92,246,255,255,232,160,250,255,255,232,89,255,255,255,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216, 72,131,192,24,72,139,0,137,69,252,235,40,72,139,69,240,139,0,137,69,248,72,139,69,232,139,16,72,139,69,240,137,16,72,139,85,232,139,69,248,137,2,72,131,69,240,4,72,131,69,232,4,255,77,252,131,125,252,255,117,207,72,139,69,216,72,131,192,32,201,195,85, 72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,235,37,72,131,109,232,4,72,139,69,240,243,15,16,8,243,15,16,5,53,176,8,0,15, 87,193,72,139,69,232,243,15,17,0,72,131,69,240,4,255,77,252,131,125,252,255,117,210,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,139,61,251,164,10,0,232,130,62,6,0,72,137,69,248,72,141,61,99,47,8,0,232,100,7,6,0,72,137,198,72,139, 125,248,232,148,47,6,0,72,141,61,75,47,8,0,232,76,7,6,0,72,137,198,72,139,125,248,232,124,47,6,0,72,139,117,248,72,139,125,248,72,141,13,107,148,10,0,72,141,21,100,148,10,0,232,98,35,6,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72, 137,229,72,131,236,16,72,139,61,142,164,10,0,232,13,62,6,0,72,137,69,248,72,141,61,238,46,8,0,232,239,6,6,0,72,137,198,72,139,125,248,232,31,47,6,0,72,141,61,214,46,8,0,232,215,6,6,0,72,137,198,72,139,125,248,232,7,47,6,0,72,139,117,248,72,139,125,248, 72,141,13,246,147,10,0,72,141,21,239,147,10,0,232,237,34,6,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72, 137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,72,139,85,232,72,139,117,240,139,125,252,232,241,28,0,0,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139, 69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,72,139,85,232,72,139,117,240,139,125,252,232,45,30,0,0,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,72,137,85, 184,72,139,69,192,72,139,0,139,0,137,69,252,72,139,69,192,72,139,0,72,139,64,8,72,137,69,240,72,139,69,192,72,131,192,8,72,139,0,72,139,64,8,72,137,69,232,72,139,69,192,72,131,192,16,72,139,0,72,139,64,8,72,137,69,224,72,139,69,192,72,131,192,24,72,139, 0,72,139,64,8,72,137,69,216,72,139,69,224,72,59,69,232,117,51,72,139,69,216,72,59,69,240,117,41,139,69,252,72,139,77,216,72,139,85,224,65,137,192,190,3,0,0,0,72,141,61,253,252,255,255,184,0,0,0,0,232,206,58,1,0,233,176,0,0,0,72,139,69,224,72,59,69,232, 117,74,139,69,252,72,139,77,216,72,139,85,232,65,137,192,190,3,0,0,0,72,141,61,195,235,255,255,184,0,0,0,0,232,155,58,1,0,139,69,252,72,139,77,224,72,139,85,240,65,137,192,190,3,0,0,0,72,141,61,159,235,255,255,184,0,0,0,0,232,119,58,1,0,235,92,72,139, 69,224,72,59,69,240,116,36,139,69,252,72,139,77,224,72,139,85,240,65,137,192,190,3,0,0,0,72,141,61,111,235,255,255,184,0,0,0,0,232,71,58,1,0,72,139,69,216,72,59,69,232,116,36,139,69,252,72,139,77,216,72,139,85,232,65,137,192,190,3,0,0,0,72,141,61,65, 235,255,255,184,0,0,0,0,232,25,58,1,0,72,139,69,192,72,131,192,24,72,139,0,72,139,72,8,72,139,69,192,72,131,192,16,72,139,0,72,139,80,8,139,69,252,72,139,125,184,65,137,192,190,3,0,0,0,184,0,0,0,0,232,226,57,1,0,201,195,85,72,137,229,72,131,236,16,72, 137,125,248,72,137,117,240,72,139,117,240,72,139,125,248,72,141,21,175,253,255,255,232,78,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,240,72,139,125,248,72,141,21,219,253,255,255,232,40,254,255,255,201,195, 85,72,137,229,72,141,61,247,35,8,0,232,16,4,6,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,104,252,255,255,184,0,0,0,0,232,70,242,5,0,72,137,5,97,161,10,0,72,139,61,90,161,10,0,190,48,0,0,0,232,66,1,6,0,72,141,61,137, 44,8,0,232,194,3,6,0,72,141,53,79,255,255,255,72,139,61,54,161,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,63,249,5,0,72,141,61,130,35,8,0,232,150,3,6,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,99,252,255,255,184,0, 0,0,0,232,204,241,5,0,72,137,5,239,160,10,0,72,139,61,232,160,10,0,190,48,0,0,0,232,200,0,6,0,72,141,61,15,44,8,0,232,72,3,6,0,72,141,53,251,254,255,255,72,139,61,196,160,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,197,248,5,0,72,141,61,3,35,8,0,232, 28,3,6,0,72,137,198,72,139,61,156,160,10,0,232,192,255,5,0,201,195,85,72,137,229,72,131,236,16,72,139,61,142,160,10,0,232,5,58,6,0,72,137,69,248,72,141,61,230,42,8,0,232,231,2,6,0,72,137,198,72,139,125,248,232,23,43,6,0,72,141,61,206,42,8,0,232,207,2, 6,0,72,137,198,72,139,125,248,232,255,42,6,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,131,192,8,72,139,0,72,137,69,240,72,139,69,232,72,131,192,16,72,139,0,137,69,252,72,139, 117,240,139,125,252,232,51,28,0,0,72,139,69,232,72,131,192,24,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,72,139,69,208,72,139,0,139,0,137,69,252,139,69,252,209,248,137,69,248,72,139,69,208,72,139,0,72,139,64,8,72,137,69,240,72, 139,69,208,72,131,192,8,72,139,0,72,139,64,8,72,137,69,232,72,139,69,208,72,131,192,16,72,139,0,72,139,64,8,72,137,69,224,131,125,252,3,127,22,72,141,61,249,33,8,0,184,0,0,0,0,232,108,249,6,0,233,12,1,0,0,72,139,69,240,72,59,69,232,116,36,139,69,252, 72,139,77,232,72,139,85,240,65,137,192,190,3,0,0,0,72,141,61,107,232,255,255,184,0,0,0,0,232,67,55,1,0,139,77,252,72,139,85,232,190,2,0,0,0,72,141,61,11,255,255,255,184,0,0,0,0,232,38,55,1,0,139,117,248,255,206,139,69,248,72,152,72,193,224,2,72,137,193, 72,3,77,224,72,139,85,232,72,131,194,4,139,69,248,72,152,72,193,224,2,72,1,194,65,137,240,190,3,0,0,0,72,141,61,132,249,255,255,184,0,0,0,0,232,228,54,1,0,139,69,248,255,200,137,198,131,230,248,72,139,85,232,72,131,194,4,139,69,248,72,152,72,193,224, 2,72,141,60,2,232,57,48,1,0,139,69,248,255,200,137,198,131,230,7,72,139,77,232,72,131,193,4,139,69,248,255,200,131,224,248,72,152,72,137,194,139,69,248,72,152,72,141,4,2,72,193,224,2,72,141,60,1,232,4,48,1,0,139,69,248,72,152,72,193,224,2,72,137,199, 72,3,125,224,139,117,248,232,236,47,1,0,72,139,125,224,190,1,0,0,0,232,222,47,1,0,201,195,85,72,137,229,72,141,61,231,32,8,0,232,223,0,6,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,180,253,255,255,184,0,0,0,0,232,21, 239,5,0,72,137,5,64,158,10,0,72,139,61,57,158,10,0,190,48,0,0,0,232,17,254,5,0,72,141,61,88,41,8,0,232,145,0,6,0,72,141,53,24,254,255,255,72,139,61,21,158,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,14,246,5,0,72,141,61,76,32,8,0,232,101,0,6,0,72,137, 198,72,139,61,237,157,10,0,232,9,253,5,0,201,195,85,72,137,229,72,131,236,16,72,139,61,223,157,10,0,232,78,55,6,0,72,137,69,248,72,139,117,248,72,139,125,248,72,141,13,103,141,10,0,72,141,21,96,141,10,0,232,94,28,6,0,72,141,61,20,40,8,0,232,21,0,6,0, 72,137,198,72,139,125,248,232,69,40,6,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,131,192,8,72,139,0,72,137,69,240,72,139,69,232,72,131,192,16,72,139,0,137,69,252,72,139,117, 240,139,125,252,232,64,26,0,0,72,139,69,232,72,131,192,24,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,72,139,69,208,72,139,0,139,0,137,69,252,139,69,252,209,248,137,69,248,72,139,69,208,72,139,0,72,139,64,8,72,137,69,240,72,139, 69,208,72,131,192,8,72,139,0,72,139,64,8,72,137,69,232,72,139,69,208,72,131,192,16,72,139,0,72,139,64,8,72,137,69,224,131,125,252,3,127,22,72,141,61,63,31,8,0,184,0,0,0,0,232,178,246,6,0,233,235,0,0,0,72,139,69,232,72,59,69,224,117,94,139,117,248,255, 206,139,69,252,72,152,72,193,224,2,72,137,193,72,3,77,224,72,139,85,224,72,131,194,4,65,137,240,190,3,0,0,0,72,141,61,23,247,255,255,184,0,0,0,0,232,119,52,1,0,139,69,248,255,192,72,139,77,224,72,139,85,240,65,137,192,190,3,0,0,0,72,141,61,121,229,255, 255,184,0,0,0,0,232,81,52,1,0,235,102,72,139,69,240,72,59,69,224,116,38,139,69,248,255,192,72,139,77,224,72,139,85,240,65,137,192,190,3,0,0,0,72,141,61,71,229,255,255,184,0,0,0,0,232,31,52,1,0,139,117,248,255,206,139,69,252,72,152,72,193,224,2,72,137, 193,72,3,77,224,72,139,85,232,72,131,194,4,65,137,240,190,3,0,0,0,72,141,61,137,246,255,255,184,0,0,0,0,232,233,51,1,0,139,77,252,72,139,85,224,190,2,0,0,0,72,141,61,107,254,255,255,184,0,0,0,0,232,204,51,1,0,201,195,85,72,137,229,72,141,61,84,30,8,0, 232,70,254,5,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,210,253,255,255,184,0,0,0,0,232,124,236,5,0,72,137,5,175,155,10,0,72,139,61,168,155,10,0,190,48,0,0,0,232,120,251,5,0,72,141,61,191,38,8,0,232,248,253,5,0,72,141, 53,57,254,255,255,72,139,61,132,155,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,117,243,5,0,72,141,61,179,29,8,0,232,204,253,5,0,72,137,198,72,139,61,92,155,10,0,232,112,250,5,0,201,195,85,72,137,229,72,131,236,16,72,139,61,78,155,10,0,232,181,52,6,0, 72,137,69,248,72,139,117,248,72,139,125,248,72,141,13,206,138,10,0,72,141,21,199,138,10,0,232,197,25,6,0,72,141,61,123,37,8,0,232,124,253,5,0,72,137,198,72,139,125,248,232,172,37,6,0,72,141,61,99,37,8,0,232,100,253,5,0,72,137,198,72,139,125,248,232,148, 37,6,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,137,125,152,72,139,69,152,72,131,192,8,72,139,0,72,137,69,184,72,139,69,152,72,131,192,16,72,139,0,72,137,69,176,72,139,69,152,72,131,192,24,72,139,0,72,137,69,168,72,139, 69,152,72,131,192,32,72,139,0,72,137,69,160,184,0,0,0,0,137,69,252,72,139,69,184,139,0,137,69,248,72,139,69,184,72,131,192,4,139,0,137,69,244,184,0,0,0,0,137,69,240,72,139,69,176,139,0,137,69,236,72,139,69,176,72,131,192,4,139,0,137,69,232,72,139,69, 152,72,131,192,40,72,139,0,137,69,228,139,69,228,255,192,137,69,224,184,0,0,128,63,137,69,220,243,15,42,77,228,243,15,42,69,228,243,15,89,200,243,15,16,5,188,164,8,0,243,15,94,193,243,15,17,69,216,72,131,69,184,8,72,131,69,176,8,72,139,85,168,184,0,0, 0,0,137,2,72,139,69,168,139,16,72,139,69,160,137,16,72,131,69,160,4,72,131,69,168,4,131,109,228,2,233,119,1,0,0,139,69,248,137,69,252,139,69,244,137,69,248,72,139,69,184,139,0,137,69,244,72,131,69,184,4,139,69,236,137,69,240,139,69,232,137,69,236,72, 139,69,176,139,0,137,69,232,72,131,69,176,4,243,15,16,69,252,15,40,200,243,15,88,77,244,243,15,16,5,166,164,8,0,243,15,89,193,243,15,88,69,248,243,15,17,69,212,243,15,16,69,240,15,40,200,243,15,88,77,232,243,15,16,5,131,164,8,0,243,15,89,193,243,15,88, 69,236,243,15,17,69,208,243,15,16,69,212,15,40,200,243,15,89,77,212,243,15,16,69,208,243,15,89,69,208,243,15,88,193,243,15,17,69,204,243,15,90,69,204,102,15,46,5,88,164,8,0,119,5,233,128,0,0,0,243,15,16,69,252,243,15,92,69,244,15,40,200,243,15,89,77, 212,243,15,16,69,240,243,15,92,69,232,243,15,89,69,208,243,15,88,200,243,15,16,69,204,243,15,88,192,15,40,209,243,15,94,208,15,40,194,243,15,17,69,196,243,15,16,69,196,15,46,5,252,163,8,0,119,20,243,15,16,77,196,243,15,16,5,241,163,8,0,15,46,193,119, 2,235,16,184,0,0,0,0,137,69,204,139,69,204,137,69,200,235,31,243,15,16,69,220,243,15,88,69,196,243,15,17,69,200,235,14,184,0,0,0,0,137,69,204,139,69,204,137,69,200,72,139,85,168,139,69,200,137,2,72,131,69,168,4,243,15,16,69,216,243,15,89,69,204,72,139, 69,160,243,15,17,0,72,131,69,160,4,243,15,16,77,220,243,15,16,5,17,163,8,0,243,15,88,193,243,15,17,69,220,255,77,228,131,125,228,255,15,133,124,254,255,255,235,33,72,139,85,168,184,0,0,0,0,137,2,72,139,69,168,139,16,72,139,69,160,137,16,72,131,69,160, 4,72,131,69,168,4,255,77,224,131,125,224,255,117,214,72,139,69,152,72,131,192,48,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,139,69,224,72,139,0,139,0,137,69,252,139,69,252,209,248,137,69,248,131,125,252,3,127,22,72,141,61,122, 26,8,0,184,0,0,0,0,232,202,241,6,0,233,151,0,0,0,72,139,69,224,72,131,192,24,72,139,0,72,139,120,8,72,139,69,224,72,131,192,16,72,139,0,72,139,80,8,72,139,69,224,72,131,192,8,72,139,0,72,139,72,8,72,139,69,224,72,139,0,72,139,112,8,139,69,248,137,4,36, 73,137,249,73,137,208,72,137,242,190,5,0,0,0,72,141,61,194,252,255,255,184,0,0,0,0,232,114,47,1,0,72,139,69,224,72,131,192,24,72,139,0,72,139,72,8,72,139,69,224,72,131,192,24,72,139,0,72,139,80,8,139,69,248,65,137,192,190,3,0,0,0,72,141,61,102,123,0, 0,184,0,0,0,0,232,56,47,1,0,201,195,85,72,137,229,72,141,61,223,25,8,0,232,178,249,5,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,215,251,255,255,184,0,0,0,0,232,232,231,5,0,72,137,5,35,151,10,0,72,139,61,28,151,10,0, 190,48,0,0,0,232,228,246,5,0,72,141,61,43,34,8,0,232,100,249,5,0,72,141,53,194,254,255,255,72,139,61,248,150,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,225,238,5,0,201,195,85,72,137,229,232,25,245,255,255,232,69,248,255,255,232,217,250,255,255,232,104, 255,255,255,201,195,85,72,137,229,72,129,236,136,0,0,0,72,137,189,8,255,255,255,137,181,4,255,255,255,199,69,228,0,0,0,0,199,69,248,1,0,0,0,199,69,244,0,0,0,0,235,127,139,133,4,255,255,255,209,248,137,69,252,235,3,209,125,252,139,69,252,49,69,244,139, 69,252,35,69,244,133,192,116,237,139,69,248,59,69,244,126,84,139,69,248,72,152,72,193,224,2,72,3,133,8,255,255,255,139,0,137,69,224,139,69,248,72,152,72,193,224,2,72,137,194,72,3,149,8,255,255,255,139,69,244,72,152,72,193,224,2,72,3,133,8,255,255,255, 139,0,137,2,139,69,244,72,152,72,193,224,2,72,137,194,72,3,149,8,255,255,255,139,69,224,137,2,255,69,248,139,69,248,59,133,4,255,255,255,15,140,114,255,255,255,199,69,252,0,0,0,0,235,3,255,69,252,139,77,252,184,1,0,0,0,211,224,59,133,4,255,255,255,124, 235,131,101,252,1,131,125,252,0,15,133,78,1,0,0,72,139,133,8,255,255,255,72,137,133,32,255,255,255,139,133,4,255,255,255,72,152,72,193,224,2,72,3,133,8,255,255,255,72,137,133,24,255,255,255,233,8,1,0,0,72,139,133,32,255,255,255,243,15,16,8,72,139,133, 32,255,255,255,72,131,192,4,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,216,72,139,133,32,255,255,255,243,15,16,8,72,139,133,32,255,255,255,72,131,192,4,243,15,16,0,243,15,88,193,243,15,17,69,220,72,139,133,32,255,255,255,72,131,192,8, 243,15,16,8,72,139,133,32,255,255,255,72,131,192,12,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,208,72,139,133,32,255,255,255,72,131,192,8,243,15,16,8,72,139,133,32,255,255,255,72,131,192,12,243,15,16,0,243,15,88,193,243,15,17,69,212,72, 139,133,32,255,255,255,72,131,192,8,243,15,16,69,220,243,15,92,69,212,243,15,17,0,243,15,16,69,220,243,15,88,69,212,72,139,133,32,255,255,255,243,15,17,0,72,139,133,32,255,255,255,72,131,192,12,243,15,16,69,216,243,15,92,69,208,243,15,17,0,72,139,133, 32,255,255,255,72,131,192,4,243,15,16,69,216,243,15,88,69,208,243,15,17,0,72,131,133,32,255,255,255,16,72,139,133,32,255,255,255,72,59,133,24,255,255,255,15,130,228,254,255,255,233,241,2,0,0,72,139,133,8,255,255,255,72,137,133,32,255,255,255,139,133, 4,255,255,255,72,152,72,193,224,2,72,3,133,8,255,255,255,72,137,133,24,255,255,255,72,139,133,32,255,255,255,72,131,192,4,72,137,133,16,255,255,255,233,158,2,0,0,72,139,133,32,255,255,255,243,15,16,8,72,139,133,16,255,255,255,243,15,16,0,15,40,209,243, 15,92,208,15,40,194,243,15,17,69,200,72,139,133,32,255,255,255,243,15,16,8,72,139,133,16,255,255,255,243,15,16,0,243,15,88,193,243,15,17,69,204,72,139,133,32,255,255,255,72,131,192,8,243,15,16,8,72,139,133,16,255,255,255,72,131,192,8,243,15,16,0,15,40, 209,243,15,92,208,15,40,194,243,15,17,69,192,72,139,133,32,255,255,255,72,131,192,8,243,15,16,8,72,139,133,16,255,255,255,72,131,192,8,243,15,16,0,243,15,88,193,243,15,17,69,196,72,139,133,32,255,255,255,72,131,192,16,243,15,16,8,72,139,133,16,255,255, 255,72,131,192,16,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,184,72,139,133,32,255,255,255,72,131,192,16,243,15,16,8,72,139,133,16,255,255,255,72,131,192,16,243,15,16,0,243,15,88,193,243,15,17,69,188,72,139,133,32,255,255,255,72,131,192, 24,243,15,16,8,72,139,133,16,255,255,255,72,131,192,24,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,176,72,139,133,32,255,255,255,72,131,192,24,243,15,16,8,72,139,133,16,255,255,255,72,131,192,24,243,15,16,0,243,15,88,193,243,15,17,69,180, 243,15,16,69,204,243,15,92,69,196,243,15,17,69,164,243,15,16,69,204,243,15,88,69,196,243,15,17,69,168,243,15,16,69,200,243,15,92,69,192,243,15,17,69,160,243,15,16,69,200,243,15,88,69,192,243,15,17,69,172,243,15,16,69,188,243,15,92,69,180,243,15,17,69, 148,243,15,16,69,188,243,15,88,69,180,243,15,17,69,156,243,15,90,77,176,242,15,16,5,189,157,8,0,242,15,89,193,242,15,90,192,243,15,17,69,144,243,15,90,77,184,242,15,16,5,163,157,8,0,242,15,89,193,242,15,90,192,243,15,17,69,152,72,139,133,32,255,255,255, 72,131,192,16,243,15,16,69,168,243,15,92,69,156,243,15,17,0,243,15,16,69,168,243,15,88,69,156,72,139,133,32,255,255,255,243,15,17,0,72,139,133,32,255,255,255,72,131,192,24,243,15,16,69,164,243,15,92,69,148,243,15,17,0,72,139,133,32,255,255,255,72,131, 192,8,243,15,16,69,164,243,15,88,69,148,243,15,17,0,72,139,133,16,255,255,255,72,131,192,16,243,15,16,69,172,243,15,92,69,152,243,15,17,0,243,15,16,69,172,243,15,88,69,152,72,139,133,16,255,255,255,243,15,17,0,72,139,133,16,255,255,255,72,131,192,24, 243,15,16,69,160,243,15,92,69,144,243,15,17,0,72,139,133,16,255,255,255,72,131,192,8,243,15,16,69,160,243,15,88,69,144,243,15,17,0,72,131,133,32,255,255,255,32,72,131,133,16,255,255,255,32,72,139,133,32,255,255,255,72,59,133,24,255,255,255,15,130,78, 253,255,255,131,189,4,255,255,255,15,15,142,140,10,0,0,131,69,252,2,139,77,252,184,1,0,0,0,211,224,137,69,248,139,69,248,1,192,137,69,244,139,69,244,1,192,137,69,236,139,69,248,3,69,244,137,69,240,139,69,248,209,248,137,69,232,72,139,133,8,255,255,255, 72,137,133,32,255,255,255,139,69,232,72,152,72,193,224,2,72,3,133,32,255,255,255,72,137,133,16,255,255,255,139,133,4,255,255,255,72,152,72,193,224,2,72,3,133,8,255,255,255,72,137,133,24,255,255,255,72,139,133,32,255,255,255,243,15,16,8,139,69,248,72, 152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,133,120,255,255,255,72,139,133,32,255,255,255,243,15,16,8,139,69,248,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,0,243,15,88,193,243,15,17,133, 124,255,255,255,139,69,244,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,8,139,69,240,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,133,104,255,255,255,139,69,244,72,152,72,193,224,2,72,3, 133,32,255,255,255,243,15,16,8,139,69,240,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,0,243,15,88,193,243,15,17,133,112,255,255,255,139,69,244,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,133,124,255,255,255,243,15,92,133,112,255,255, 255,243,15,17,0,243,15,16,133,124,255,255,255,243,15,88,133,112,255,255,255,72,139,133,32,255,255,255,243,15,17,0,139,69,240,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,133,120,255,255,255,243,15,92,133,104,255,255,255,243,15,17,0,139,69,248, 72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,133,120,255,255,255,243,15,88,133,104,255,255,255,243,15,17,0,72,139,133,16,255,255,255,243,15,16,8,139,69,248,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,0,15,40,209,243,15,92,208,15,40, 194,243,15,17,133,116,255,255,255,72,139,133,16,255,255,255,243,15,16,8,139,69,248,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,0,243,15,88,193,243,15,17,69,128,139,69,240,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,0,243,15,90,200, 242,15,16,5,106,154,8,0,242,15,89,193,242,15,90,192,243,15,17,133,100,255,255,255,139,69,244,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,0,243,15,90,200,242,15,16,5,58,154,8,0,242,15,89,193,242,15,90,192,243,15,17,133,108,255,255,255,139,69, 244,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,69,128,243,15,92,133,108,255,255,255,243,15,17,0,243,15,16,69,128,243,15,88,133,108,255,255,255,72,139,133,16,255,255,255,243,15,17,0,139,69,240,72,152,72,193,224,2,72,3,133,16,255,255,255,243, 15,16,133,116,255,255,255,243,15,92,133,100,255,255,255,243,15,17,0,139,69,248,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,133,116,255,255,255,243,15,88,133,100,255,255,255,243,15,17,0,139,69,236,72,152,72,193,224,2,72,1,133,16,255,255,255, 139,69,236,72,152,72,193,224,2,72,1,133,32,255,255,255,72,139,133,32,255,255,255,72,59,133,24,255,255,255,15,130,65,253,255,255,199,133,96,255,255,255,2,0,0,0,235,124,139,181,96,255,255,255,139,133,96,255,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5, 132,129,10,0,72,141,4,2,139,8,72,99,198,72,141,20,133,0,0,0,0,72,141,5,44,130,10,0,72,141,4,2,137,8,139,181,96,255,255,255,139,133,96,255,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5,169,129,10,0,72,141,4,2,139,8,72,99,198,72,141,20,133,0,0,0,0,72,141, 5,81,130,10,0,72,141,4,2,137,8,255,133,96,255,255,255,139,133,96,255,255,255,59,69,252,15,142,117,255,255,255,199,69,228,0,0,0,0,184,0,0,128,63,137,69,136,184,0,0,0,0,137,69,140,199,69,132,1,0,0,0,233,135,6,0,0,255,69,228,199,133,84,255,255,255,0,0,0, 0,235,6,255,133,84,255,255,255,139,141,84,255,255,255,139,69,228,211,248,131,224,1,133,192,116,232,139,149,84,255,255,255,139,69,252,41,208,137,133,84,255,255,255,139,133,84,255,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5,196,129,10,0,72,141,4,2,139, 0,137,69,140,139,133,84,255,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5,68,129,10,0,72,141,4,2,139,0,137,69,136,131,189,84,255,255,255,1,15,142,77,1,0,0,139,149,84,255,255,255,139,69,252,41,208,131,192,2,137,133,80,255,255,255,235,6,255,133,80,255, 255,255,139,141,80,255,255,255,139,69,228,211,248,131,224,1,132,192,117,232,139,149,80,255,255,255,139,69,252,41,208,137,133,80,255,255,255,139,141,84,255,255,255,139,133,84,255,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5,178,127,10,0,72,141,4,2,243, 15,16,16,139,133,84,255,255,255,255,200,72,152,72,141,20,133,0,0,0,0,72,141,5,17,129,10,0,72,141,4,2,243,15,16,8,139,133,80,255,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5,242,128,10,0,72,141,4,2,243,15,16,0,243,15,88,193,243,15,89,194,72,99,193,72, 141,20,133,0,0,0,0,72,141,5,208,128,10,0,72,141,4,2,243,15,17,0,139,141,84,255,255,255,139,133,84,255,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5,43,127,10,0,72,141,4,2,243,15,16,16,139,133,84,255,255,255,255,200,72,152,72,141,20,133,0,0,0,0,72,141, 5,42,128,10,0,72,141,4,2,243,15,16,8,139,133,80,255,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5,11,128,10,0,72,141,4,2,243,15,16,0,243,15,88,193,243,15,89,194,72,99,193,72,141,20,133,0,0,0,0,72,141,5,233,127,10,0,72,141,4,2,243,15,17,0,243,15,16,69, 136,15,40,200,243,15,89,77,136,243,15,16,69,140,243,15,89,69,140,15,40,209,243,15,92,208,15,40,194,243,15,17,133,92,255,255,255,243,15,16,69,136,243,15,89,69,140,243,15,88,192,243,15,17,133,88,255,255,255,139,133,4,255,255,255,72,152,72,193,224,2,72, 3,133,8,255,255,255,72,137,133,24,255,255,255,139,69,132,72,152,72,193,224,2,72,3,133,8,255,255,255,72,137,133,32,255,255,255,139,69,248,72,152,72,193,224,2,72,137,194,72,3,149,8,255,255,255,139,69,132,72,152,72,193,224,2,72,137,209,72,41,193,72,137, 200,72,137,133,16,255,255,255,139,69,248,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,0,15,40,200,243,15,89,141,88,255,255,255,139,69,248,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,0,243,15,89,133,92,255,255,255,15,40,209,243,15,92, 208,15,40,194,243,15,17,133,72,255,255,255,139,69,248,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,0,15,40,200,243,15,89,141,92,255,255,255,139,69,248,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,0,243,15,89,133,88,255,255,255,243,15, 88,193,243,15,17,133,76,255,255,255,72,139,133,32,255,255,255,243,15,16,0,243,15,92,133,76,255,255,255,243,15,17,133,60,255,255,255,72,139,133,32,255,255,255,243,15,16,0,243,15,88,133,76,255,255,255,243,15,17,133,64,255,255,255,72,139,133,16,255,255, 255,243,15,16,0,243,15,92,133,72,255,255,255,243,15,17,133,56,255,255,255,72,139,133,16,255,255,255,243,15,16,0,243,15,88,133,72,255,255,255,243,15,17,133,68,255,255,255,139,69,240,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,0,15,40,200,243, 15,89,141,88,255,255,255,139,69,240,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,0,243,15,89,133,92,255,255,255,15,40,209,243,15,92,208,15,40,194,243,15,17,133,72,255,255,255,139,69,240,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,0, 15,40,200,243,15,89,141,92,255,255,255,139,69,240,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,0,243,15,89,133,88,255,255,255,243,15,88,193,243,15,17,133,76,255,255,255,139,69,244,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,0,243,15, 92,133,76,255,255,255,243,15,17,133,44,255,255,255,139,69,244,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,0,243,15,88,133,76,255,255,255,243,15,17,133,52,255,255,255,139,69,244,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,0,243,15, 92,133,72,255,255,255,243,15,17,133,40,255,255,255,139,69,244,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,0,243,15,88,133,72,255,255,255,243,15,17,133,48,255,255,255,243,15,16,69,140,15,40,200,243,15,89,141,52,255,255,255,243,15,16,69,136,243, 15,89,133,40,255,255,255,15,40,209,243,15,92,208,15,40,194,243,15,17,133,72,255,255,255,243,15,16,69,136,15,40,200,243,15,89,141,52,255,255,255,243,15,16,69,140,243,15,89,133,40,255,255,255,243,15,88,193,243,15,17,133,76,255,255,255,139,69,244,72,152, 72,193,224,2,72,3,133,32,255,255,255,243,15,16,133,64,255,255,255,243,15,92,133,76,255,255,255,243,15,17,0,243,15,16,133,64,255,255,255,243,15,88,133,76,255,255,255,72,139,133,32,255,255,255,243,15,17,0,139,69,240,72,152,72,193,224,2,72,3,133,16,255, 255,255,243,15,16,133,56,255,255,255,243,15,92,133,72,255,255,255,243,15,17,0,139,69,248,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,133,56,255,255,255,243,15,88,133,72,255,255,255,243,15,17,0,243,15,16,69,136,15,40,200,243,15,89,141,48,255, 255,255,243,15,16,69,140,243,15,89,133,44,255,255,255,15,40,209,243,15,92,208,15,40,194,243,15,17,133,72,255,255,255,243,15,16,69,140,15,40,200,243,15,89,141,48,255,255,255,243,15,16,69,136,243,15,89,133,44,255,255,255,243,15,88,193,243,15,17,133,76, 255,255,255,139,69,244,72,152,72,193,224,2,72,3,133,16,255,255,255,243,15,16,133,68,255,255,255,243,15,92,133,76,255,255,255,243,15,17,0,243,15,16,133,68,255,255,255,243,15,88,133,76,255,255,255,72,139,133,16,255,255,255,243,15,17,0,139,69,240,72,152, 72,193,224,2,72,3,133,32,255,255,255,243,15,16,133,60,255,255,255,243,15,92,133,72,255,255,255,243,15,17,0,139,69,248,72,152,72,193,224,2,72,3,133,32,255,255,255,243,15,16,133,60,255,255,255,243,15,88,133,72,255,255,255,243,15,17,0,139,69,236,72,152, 72,193,224,2,72,1,133,16,255,255,255,139,69,236,72,152,72,193,224,2,72,1,133,32,255,255,255,72,139,133,32,255,255,255,72,59,133,24,255,255,255,15,130,234,251,255,255,255,69,132,139,69,132,59,69,232,15,140,109,249,255,255,139,69,236,59,133,4,255,255,255, 15,140,116,245,255,255,201,195,85,72,137,229,72,131,236,80,137,125,204,72,137,117,192,72,137,85,184,199,69,220,1,0,0,0,139,69,204,255,200,137,69,216,139,85,204,137,208,193,232,31,1,208,209,248,137,69,212,233,50,1,0,0,139,69,220,72,152,72,193,224,2,72, 3,69,192,139,0,137,69,252,139,69,216,72,152,72,193,224,2,72,3,69,192,139,0,137,69,248,243,15,16,69,252,243,15,88,69,248,243,15,17,69,236,243,15,16,69,252,243,15,92,69,248,243,15,17,69,232,139,69,220,72,152,72,193,224,2,72,3,69,184,139,0,137,69,244,139, 69,216,72,152,72,193,224,2,72,3,69,184,139,0,137,69,240,243,15,16,69,244,243,15,88,69,240,243,15,17,69,228,243,15,16,69,244,243,15,92,69,240,243,15,17,69,224,139,69,220,72,152,72,193,224,2,72,3,69,192,243,15,16,69,236,15,40,200,243,15,88,77,224,243,15, 16,5,67,145,8,0,243,15,89,193,243,15,17,0,139,69,216,72,152,72,193,224,2,72,3,69,192,243,15,16,69,236,15,40,200,243,15,92,77,224,243,15,16,5,25,145,8,0,243,15,89,193,243,15,17,0,139,69,220,72,152,72,193,224,2,72,3,69,184,243,15,16,69,228,15,40,200,243, 15,92,77,232,243,15,16,5,239,144,8,0,243,15,89,193,243,15,17,0,139,69,216,72,152,72,193,224,2,72,3,69,184,243,15,16,69,228,15,40,200,243,15,88,77,232,243,15,16,5,197,144,8,0,243,15,89,193,243,15,17,0,255,69,220,255,77,216,139,69,220,59,69,212,15,140, 194,254,255,255,139,117,204,72,139,125,192,232,189,238,255,255,139,117,204,72,139,125,184,232,177,238,255,255,201,195,85,72,137,229,72,131,236,80,137,125,204,72,137,117,192,72,137,85,184,139,117,204,72,139,125,192,232,144,238,255,255,139,117,204,72,139, 125,184,232,132,238,255,255,199,69,220,1,0,0,0,139,69,204,255,200,137,69,216,139,85,204,137,208,193,232,31,1,208,209,248,137,69,212,233,50,1,0,0,139,69,220,72,152,72,193,224,2,72,3,69,192,139,0,137,69,252,139,69,216,72,152,72,193,224,2,72,3,69,192,139, 0,137,69,248,243,15,16,69,252,243,15,88,69,248,243,15,17,69,236,243,15,16,69,252,243,15,92,69,248,243,15,17,69,232,139,69,220,72,152,72,193,224,2,72,3,69,184,139,0,137,69,244,139,69,216,72,152,72,193,224,2,72,3,69,184,139,0,137,69,240,243,15,16,69,244, 243,15,88,69,240,243,15,17,69,228,243,15,16,69,244,243,15,92,69,240,243,15,17,69,224,139,69,220,72,152,72,193,224,2,72,3,69,184,243,15,16,69,228,15,40,200,243,15,88,77,232,243,15,16,5,157,143,8,0,243,15,89,193,243,15,17,0,139,69,216,72,152,72,193,224, 2,72,3,69,184,243,15,16,69,228,15,40,200,243,15,92,77,232,243,15,16,5,115,143,8,0,243,15,89,193,243,15,17,0,139,69,220,72,152,72,193,224,2,72,3,69,192,243,15,16,69,236,15,40,200,243,15,92,77,224,243,15,16,5,73,143,8,0,243,15,89,193,243,15,17,0,139,69, 216,72,152,72,193,224,2,72,3,69,192,243,15,16,69,236,15,40,200,243,15,88,77,224,243,15,16,5,31,143,8,0,243,15,89,193,243,15,17,0,255,69,220,255,77,216,139,69,220,59,69,212,15,140,194,254,255,255,201,195,85,72,137,229,72,131,236,48,137,125,220,72,137, 117,208,139,117,220,72,139,125,208,232,6,237,255,255,199,69,236,1,0,0,0,139,69,220,255,200,137,69,232,139,85,220,137,208,193,232,31,1,208,209,248,137,69,228,235,126,139,69,236,72,152,72,193,224,2,72,3,69,208,139,0,137,69,252,139,69,232,72,152,72,193, 224,2,72,3,69,208,139,0,137,69,248,139,69,232,72,152,72,193,224,2,72,3,69,208,243,15,16,69,252,15,40,200,243,15,92,77,248,243,15,16,5,130,142,8,0,243,15,89,193,243,15,17,0,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,69,252,15,40,200,243,15,88, 77,248,243,15,16,5,88,142,8,0,243,15,89,193,243,15,17,0,255,69,236,255,77,232,139,69,236,59,69,228,15,140,118,255,255,255,201,195,85,72,137,229,72,131,236,48,137,125,220,72,137,117,208,199,69,236,1,0,0,0,139,69,220,255,200,137,69,232,139,85,220,137,208, 193,232,31,1,208,209,248,137,69,228,235,96,139,69,236,72,152,72,193,224,2,72,3,69,208,139,0,137,69,252,139,69,232,72,152,72,193,224,2,72,3,69,208,139,0,137,69,248,139,69,232,72,152,72,193,224,2,72,3,69,208,243,15,16,69,252,243,15,92,69,248,243,15,17, 0,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,69,252,243,15,88,69,248,243,15,17,0,255,69,236,255,77,232,139,69,236,59,69,228,124,152,139,117,220,72,139,125,208,232,183,235,255,255,201,195,85,72,137,229,72,131,236,48,137,125,236,137,117,232,137, 85,228,72,137,77,216,68,137,69,212,68,137,77,208,72,199,69,248,0,0,0,0,72,199,69,240,0,0,0,0,72,139,5,83,130,10,0,72,137,69,248,235,112,72,139,69,248,139,0,59,69,232,117,12,72,139,69,248,139,64,16,59,69,228,116,25,72,139,69,248,72,137,69,240,72,139,69, 248,72,139,128,128,0,0,0,72,137,69,248,235,64,139,69,236,139,77,208,139,85,212,72,139,117,216,72,139,125,248,65,137,192,232,123,9,0,0,72,139,125,248,232,90,26,0,0,139,69,40,139,77,32,139,85,24,72,139,125,248,65,137,192,72,139,117,16,232,188,17,0,0,233, 177,0,0,0,72,131,125,248,0,117,137,72,131,125,240,0,116,46,191,136,0,0,0,232,43,254,7,0,72,137,69,248,72,139,69,248,72,199,128,128,0,0,0,0,0,0,0,72,139,85,240,72,139,69,248,72,137,130,128,0,0,0,235,43,191,136,0,0,0,232,253,253,7,0,72,137,5,144,129,10, 0,72,139,5,137,129,10,0,72,137,69,248,72,139,69,248,72,199,128,128,0,0,0,0,0,0,0,139,85,228,139,117,232,72,139,125,248,232,142,0,0,0,139,69,236,139,77,208,139,85,212,72,139,117,216,72,139,125,248,65,137,192,232,197,8,0,0,72,139,125,248,232,164,25,0,0, 139,69,40,139,77,32,139,85,24,72,139,125,248,65,137,192,72,139,117,16,232,6,17,0,0,201,195,85,72,137,229,72,131,236,16,72,139,5,27,129,10,0,72,133,192,116,59,72,139,5,15,129,10,0,72,137,69,248,72,139,69,248,72,139,128,128,0,0,0,72,137,69,240,72,139,125, 248,232,28,30,0,0,72,139,125,248,232,246,252,7,0,72,139,69,240,72,137,69,248,72,131,125,248,0,117,208,201,195,85,72,137,229,83,72,129,236,216,0,0,0,72,137,189,40,255,255,255,137,181,36,255,255,255,137,149,32,255,255,255,242,15,42,141,36,255,255,255,242, 15,16,5,194,139,8,0,242,15,94,193,242,15,90,192,243,15,17,69,212,72,139,149,40,255,255,255,139,133,36,255,255,255,137,2,139,149,36,255,255,255,137,208,193,232,31,1,208,209,248,137,69,216,72,139,149,40,255,255,255,139,69,216,137,66,8,199,69,232,0,0,0, 0,139,133,36,255,255,255,137,69,228,235,6,209,125,228,255,69,232,131,125,228,1,127,244,139,69,232,137,69,220,72,139,149,40,255,255,255,139,69,220,137,66,4,72,139,133,40,255,255,255,199,64,12,1,0,0,0,72,139,149,40,255,255,255,139,133,32,255,255,255,137, 66,16,72,139,133,40,255,255,255,72,199,128,128,0,0,0,0,0,0,0,72,139,189,40,255,255,255,232,103,27,0,0,131,189,32,255,255,255,1,117,78,72,139,133,40,255,255,255,72,139,120,32,139,181,36,255,255,255,243,15,16,5,96,138,8,0,232,242,29,0,0,242,15,42,141,36, 255,255,255,242,15,16,5,83,138,8,0,242,15,94,193,242,15,90,192,72,139,133,40,255,255,255,72,139,120,40,139,181,36,255,255,255,232,196,29,0,0,235,76,72,139,133,40,255,255,255,72,139,120,32,139,181,36,255,255,255,243,15,16,5,18,138,8,0,232,40,30,0,0,242, 15,42,141,36,255,255,255,242,15,16,5,5,138,8,0,242,15,94,193,242,15,90,192,72,139,133,40,255,255,255,72,139,120,40,139,181,36,255,255,255,232,250,29,0,0,72,139,133,40,255,255,255,72,139,64,96,72,137,69,152,72,139,133,40,255,255,255,72,139,64,112,72,137, 69,144,72,139,133,40,255,255,255,72,139,64,104,72,137,69,136,72,139,133,40,255,255,255,72,139,64,120,72,137,69,128,199,69,232,0,0,0,0,235,69,72,139,85,136,184,0,0,128,63,137,2,72,139,69,136,139,16,72,139,69,152,137,16,72,139,85,128,184,0,0,0,0,137,2, 72,139,69,128,139,16,72,139,69,144,137,16,72,131,69,152,4,72,131,69,136,4,72,131,69,144,4,72,131,69,128,4,255,69,232,139,69,232,59,69,216,124,179,199,69,224,2,0,0,0,233,34,1,0,0,139,85,224,139,69,220,41,208,141,72,1,184,1,0,0,0,211,224,139,149,36,255, 255,255,137,193,137,208,193,250,31,247,249,137,69,208,139,85,224,139,69,220,137,193,41,209,184,1,0,0,0,211,224,137,69,204,199,69,236,0,0,0,0,139,85,216,137,208,193,250,31,247,125,208,137,69,232,233,195,0,0,0,199,69,200,0,0,0,0,139,69,208,137,69,228,233, 164,0,0,0,243,15,42,69,200,243,15,89,69,212,243,15,90,192,232,234,249,7,0,242,15,90,192,72,139,69,152,243,15,17,0,243,15,42,69,200,243,15,89,69,212,243,15,90,192,232,203,249,7,0,242,15,90,192,72,139,69,136,243,15,17,0,243,15,42,69,200,243,15,89,69,212, 243,15,90,192,232,50,251,7,0,242,15,90,200,243,15,16,5,224,136,8,0,15,87,193,72,139,69,144,243,15,17,0,243,15,42,69,200,243,15,89,69,212,243,15,90,192,232,8,251,7,0,242,15,90,192,72,139,69,128,243,15,17,0,139,69,204,1,69,200,72,131,69,152,4,72,131,69, 136,4,72,131,69,144,4,72,131,69,128,4,255,77,228,131,125,228,0,15,143,82,255,255,255,255,77,232,131,125,232,0,15,143,51,255,255,255,255,69,224,139,69,224,59,69,220,15,142,210,254,255,255,72,139,133,40,255,255,255,72,139,64,64,72,137,133,120,255,255,255, 72,139,133,40,255,255,255,72,139,64,72,72,137,133,112,255,255,255,72,139,133,40,255,255,255,72,139,64,80,72,137,133,104,255,255,255,72,139,133,40,255,255,255,72,139,64,88,72,137,133,96,255,255,255,72,139,133,40,255,255,255,72,139,64,48,72,137,133,88, 255,255,255,72,139,133,40,255,255,255,72,139,64,56,72,137,133,80,255,255,255,139,69,220,72,152,72,141,60,197,0,0,0,0,232,123,249,7,0,72,137,69,184,139,69,220,72,152,72,141,60,197,0,0,0,0,232,101,249,7,0,72,137,69,176,199,69,224,0,0,0,0,235,77,139,69, 224,72,152,72,193,224,3,72,137,195,72,3,93,184,139,69,216,72,152,72,141,60,133,0,0,0,0,232,54,249,7,0,72,137,3,139,69,224,72,152,72,193,224,3,72,137,195,72,3,93,176,139,69,216,72,152,72,141,60,133,0,0,0,0,232,17,249,7,0,72,137,3,255,69,224,139,69,224, 59,69,220,124,171,199,69,224,0,0,0,0,233,202,0,0,0,139,69,224,72,152,72,193,224,3,72,3,69,184,72,139,0,72,137,69,168,139,69,224,72,152,72,193,224,3,72,3,69,176,72,139,0,72,137,69,160,139,77,224,184,1,0,0,0,211,224,137,69,192,139,85,224,139,69,220,41, 208,141,72,255,184,1,0,0,0,211,224,137,69,236,199,69,196,0,0,0,0,139,69,196,137,69,228,139,69,228,137,69,232,139,69,232,72,152,72,193,224,2,72,137,194,72,3,85,160,139,69,192,3,69,196,137,2,139,69,232,72,152,72,193,224,2,72,137,194,72,3,85,168,139,69, 196,137,2,255,69,232,255,69,196,255,69,228,139,69,228,59,69,192,124,194,72,139,85,160,72,131,234,4,139,69,232,72,152,72,193,224,2,72,141,4,2,139,0,255,192,137,69,196,199,69,228,0,0,0,0,255,77,236,131,125,236,0,117,150,255,69,224,139,69,224,59,69,220, 15,140,42,255,255,255,199,69,224,0,0,0,0,233,34,1,0,0,199,69,232,0,0,0,0,233,7,1,0,0,139,69,224,72,152,72,193,224,3,72,3,69,184,72,139,16,139,69,232,72,152,72,193,224,2,72,141,4,2,139,0,72,152,72,193,224,2,72,137,194,72,3,149,88,255,255,255,72,139,133, 120,255,255,255,72,137,16,72,131,133,120,255,255,255,8,139,69,224,72,152,72,193,224,3,72,3,69,184,72,139,16,139,69,232,72,152,72,193,224,2,72,141,4,2,139,0,72,152,72,193,224,2,72,137,194,72,3,149,80,255,255,255,72,139,133,112,255,255,255,72,137,16,72, 131,133,112,255,255,255,8,139,69,224,72,152,72,193,224,3,72,3,69,176,72,139,16,139,69,232,72,152,72,193,224,2,72,141,4,2,139,0,72,152,72,193,224,2,72,137,194,72,3,149,88,255,255,255,72,139,133,104,255,255,255,72,137,16,72,131,133,104,255,255,255,8,139, 69,224,72,152,72,193,224,3,72,3,69,176,72,139,16,139,69,232,72,152,72,193,224,2,72,141,4,2,139,0,72,152,72,193,224,2,72,137,194,72,3,149,80,255,255,255,72,139,133,96,255,255,255,72,137,16,72,131,133,96,255,255,255,8,255,69,232,139,69,232,59,69,216,15, 140,237,254,255,255,255,69,224,139,69,224,59,69,220,15,140,210,254,255,255,139,133,36,255,255,255,72,152,72,141,60,133,0,0,0,0,232,210,246,7,0,72,137,133,56,255,255,255,72,139,133,56,255,255,255,72,137,133,48,255,255,255,199,69,232,0,0,0,0,139,133,36, 255,255,255,137,69,228,72,139,133,40,255,255,255,72,139,64,24,72,137,133,64,255,255,255,72,139,133,64,255,255,255,72,137,133,72,255,255,255,235,23,72,139,149,64,255,255,255,139,69,232,137,2,72,131,133,64,255,255,255,4,255,69,232,255,77,228,131,125,228, 255,117,224,139,69,220,255,200,137,69,224,233,255,0,0,0,139,69,224,72,152,72,193,224,3,72,3,69,184,72,139,0,72,137,69,168,139,69,224,72,152,72,193,224,3,72,3,69,176,72,139,0,72,137,69,160,199,69,232,0,0,0,0,235,113,139,69,232,72,152,72,193,224,2,72,3, 69,168,139,0,72,152,72,193,224,2,72,137,194,72,3,149,48,255,255,255,139,69,232,72,152,72,193,224,3,72,3,133,72,255,255,255,139,0,137,2,139,69,232,72,152,72,193,224,2,72,3,69,160,139,0,72,152,72,193,224,2,72,137,193,72,3,141,48,255,255,255,72,139,149, 72,255,255,255,72,131,194,4,139,69,232,72,152,72,193,224,3,72,141,4,2,139,0,137,1,255,69,232,139,69,232,59,69,216,124,135,139,133,36,255,255,255,137,69,228,72,139,133,72,255,255,255,72,137,133,64,255,255,255,72,139,133,48,255,255,255,72,137,133,56,255, 255,255,235,34,72,139,133,56,255,255,255,139,16,72,139,133,64,255,255,255,137,16,72,131,133,64,255,255,255,4,72,131,133,56,255,255,255,4,255,77,228,131,125,228,255,117,213,255,77,224,131,125,224,0,15,143,247,254,255,255,72,139,189,48,255,255,255,232, 239,244,7,0,199,69,224,0,0,0,0,235,45,139,69,224,72,152,72,193,224,3,72,3,69,184,72,139,56,232,209,244,7,0,139,69,224,72,152,72,193,224,3,72,3,69,176,72,139,56,232,188,244,7,0,255,69,224,139,69,224,59,69,220,124,203,72,139,125,184,232,168,244,7,0,72, 139,125,176,232,159,244,7,0,72,129,196,216,0,0,0,91,201,195,85,72,137,229,83,72,129,236,136,0,0,0,72,137,125,200,72,137,117,192,137,85,188,137,77,184,68,137,69,180,72,139,69,200,72,139,64,24,72,137,69,216,199,69,232,0,0,0,0,72,139,69,200,139,0,137,69, 228,131,125,180,1,117,14,72,139,69,200,72,139,64,32,72,137,69,208,235,62,131,125,180,2,117,14,72,139,69,200,72,139,64,40,72,137,69,208,235,42,72,139,5,112,95,10,0,72,139,8,186,43,0,0,0,190,1,0,0,0,72,141,61,148,250,7,0,232,37,244,7,0,191,0,0,0,0,232, 193,243,7,0,72,139,85,200,139,69,180,137,66,12,139,69,184,137,69,140,131,125,140,0,116,15,131,125,140,1,15,132,38,3,0,0,233,126,7,0,0,139,69,188,137,69,136,131,125,136,2,15,132,26,1,0,0,131,125,136,2,127,15,131,125,136,0,15,132,140,0,0,0,233,210,2,0, 0,131,125,136,8,15,132,165,1,0,0,131,125,136,64,15,132,170,2,0,0,233,185,2,0,0,139,69,232,72,152,72,193,224,2,72,3,69,216,139,0,137,69,236,72,139,69,200,72,139,80,48,139,69,232,72,152,72,193,224,2,72,1,194,139,69,236,72,152,72,193,224,2,72,3,69,192,243, 15,16,8,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,0,243,15,89,193,243,15,17,2,72,139,69,200,72,139,80,56,139,69,232,72,152,72,193,224,2,72,1,194,184,0,0,0,0,137,2,255,69,232,72,139,69,200,139,0,59,69,232,127,135,233,236,6,0,0,139,69,232,72, 152,72,193,224,2,72,3,69,216,139,0,137,69,236,72,139,69,200,72,139,80,48,139,69,232,72,152,72,193,224,2,72,1,194,184,0,0,0,0,137,2,72,139,69,200,72,139,80,56,139,69,232,72,152,72,193,224,2,72,1,194,139,69,236,72,152,72,193,224,2,72,3,69,192,243,15,16, 8,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,0,243,15,89,193,243,15,17,2,255,69,232,72,139,69,200,139,0,59,69,232,127,135,233,110,6,0,0,139,69,232,72,152,72,193,224,2,72,3,69,216,139,0,137,69,236,72,139,69,200,72,139,80,48,139,69,232,72,152, 72,193,224,2,72,1,194,139,69,236,72,152,72,193,224,3,72,3,69,192,243,15,16,8,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,0,243,15,89,193,243,15,17,2,72,139,69,200,72,139,80,56,139,69,232,72,152,72,193,224,2,72,141,12,2,72,139,85,192,72,131,194, 4,139,69,236,72,152,72,193,224,3,72,141,4,2,243,15,16,8,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,0,243,15,89,193,243,15,17,1,255,69,232,72,139,69,200,139,0,59,69,232,15,143,87,255,255,255,233,192,5,0,0,139,69,232,72,152,72,193,224,2,72,3, 69,216,139,0,137,69,236,72,139,69,200,72,139,80,48,139,69,232,72,152,72,193,224,2,72,141,28,2,139,69,236,72,152,72,193,224,3,72,3,69,192,243,15,16,0,243,15,90,192,242,15,17,69,144,72,139,85,192,72,131,194,4,139,69,236,72,152,72,193,224,3,72,141,4,2,243, 15,16,0,243,15,90,192,232,45,241,7,0,242,15,89,69,144,242,15,90,200,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,0,243,15,89,193,243,15,17,3,72,139,69,200,72,139,80,56,139,69,232,72,152,72,193,224,2,72,141,28,2,139,69,236,72,152,72,193,224,3, 72,3,69,192,243,15,16,0,243,15,90,192,242,15,17,69,152,72,139,85,192,72,131,194,4,139,69,236,72,152,72,193,224,3,72,141,4,2,243,15,16,0,243,15,90,192,232,64,242,7,0,242,15,89,69,152,242,15,90,200,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,0, 243,15,89,193,243,15,17,3,255,69,232,72,139,69,200,139,0,59,69,232,15,143,246,254,255,255,233,177,4,0,0,72,139,5,42,92,10,0,72,139,8,186,34,0,0,0,190,1,0,0,0,72,141,61,126,247,7,0,232,223,240,7,0,191,0,0,0,0,232,123,240,7,0,139,69,188,137,69,132,131, 125,132,2,15,132,140,1,0,0,131,125,132,2,127,15,131,125,132,0,15,132,195,0,0,0,233,14,4,0,0,131,125,132,8,15,132,136,2,0,0,131,125,132,64,15,132,233,3,0,0,233,245,3,0,0,139,69,232,72,152,72,193,224,2,72,3,69,216,139,0,137,69,236,72,139,69,200,72,139, 80,48,139,69,232,72,152,72,193,224,2,72,141,28,2,139,69,236,72,152,72,193,224,2,72,3,69,192,243,15,16,0,243,15,90,200,242,15,16,5,85,127,8,0,242,15,89,193,72,184,0,0,0,0,0,0,36,64,102,15,40,200,72,137,133,120,255,255,255,242,15,16,133,120,255,255,255, 232,159,240,7,0,242,15,90,200,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,0,243,15,89,193,243,15,17,3,72,139,69,200,72,139,80,56,139,69,232,72,152,72,193,224,2,72,1,194,184,0,0,0,0,137,2,255,69,232,72,139,69,200,139,0,59,69,232,15,143,76,255, 255,255,233,144,3,0,0,139,69,232,72,152,72,193,224,2,72,3,69,216,139,0,137,69,236,72,139,69,200,72,139,80,48,139,69,232,72,152,72,193,224,2,72,1,194,184,0,0,0,0,137,2,72,139,69,200,72,139,80,56,139,69,232,72,152,72,193,224,2,72,141,28,2,139,69,236,72, 152,72,193,224,2,72,3,69,192,243,15,16,0,243,15,90,200,242,15,16,5,129,126,8,0,242,15,89,193,72,184,0,0,0,0,0,0,36,64,102,15,40,200,72,137,133,120,255,255,255,242,15,16,133,120,255,255,255,232,203,239,7,0,242,15,90,200,139,69,236,72,152,72,193,224,2, 72,3,69,208,243,15,16,0,243,15,89,193,243,15,17,3,255,69,232,72,139,69,200,139,0,59,69,232,15,143,76,255,255,255,233,215,2,0,0,139,69,232,72,152,72,193,224,2,72,3,69,216,139,0,137,69,236,72,139,69,200,72,139,80,48,139,69,232,72,152,72,193,224,2,72,141, 28,2,139,69,236,72,152,72,193,224,3,72,3,69,192,243,15,16,0,243,15,90,200,242,15,16,5,227,125,8,0,242,15,89,193,72,184,0,0,0,0,0,0,36,64,102,15,40,200,72,137,133,120,255,255,255,242,15,16,133,120,255,255,255,232,45,239,7,0,242,15,90,200,139,69,236,72, 152,72,193,224,2,72,3,69,208,243,15,16,0,243,15,89,193,243,15,17,3,72,139,69,200,72,139,80,56,139,69,232,72,152,72,193,224,2,72,141,28,2,72,139,85,192,72,131,194,4,139,69,236,72,152,72,193,224,3,72,141,4,2,243,15,16,0,243,15,90,200,242,15,16,5,102,125, 8,0,242,15,89,193,72,184,0,0,0,0,0,0,36,64,102,15,40,200,72,137,133,120,255,255,255,242,15,16,133,120,255,255,255,232,176,238,7,0,242,15,90,200,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,0,243,15,89,193,243,15,17,3,255,69,232,72,139,69,200, 139,0,59,69,232,15,143,234,254,255,255,233,188,1,0,0,139,69,232,72,152,72,193,224,2,72,3,69,216,139,0,137,69,236,72,139,69,200,72,139,80,48,139,69,232,72,152,72,193,224,2,72,141,28,2,139,69,236,72,152,72,193,224,3,72,3,69,192,243,15,16,0,243,15,90,200, 242,15,16,5,200,124,8,0,242,15,89,193,72,184,0,0,0,0,0,0,36,64,102,15,40,200,72,137,133,120,255,255,255,242,15,16,133,120,255,255,255,232,18,238,7,0,242,15,17,69,160,72,139,85,192,72,131,194,4,139,69,236,72,152,72,193,224,3,72,141,4,2,243,15,16,0,243, 15,90,192,232,251,236,7,0,242,15,89,69,160,242,15,90,200,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,0,243,15,89,193,243,15,17,3,72,139,69,200,72,139,80,56,139,69,232,72,152,72,193,224,2,72,141,28,2,139,69,236,72,152,72,193,224,3,72,3,69,192, 243,15,16,0,243,15,90,200,242,15,16,5,39,124,8,0,242,15,89,193,72,184,0,0,0,0,0,0,36,64,102,15,40,200,72,137,133,120,255,255,255,242,15,16,133,120,255,255,255,232,113,237,7,0,242,15,17,69,168,72,139,85,192,72,131,194,4,139,69,236,72,152,72,193,224,3, 72,141,4,2,243,15,16,0,243,15,90,192,232,224,237,7,0,242,15,89,69,168,242,15,90,200,139,69,236,72,152,72,193,224,2,72,3,69,208,243,15,16,0,243,15,89,193,243,15,17,3,255,69,232,72,139,69,200,139,0,59,69,232,15,143,154,254,255,255,235,84,72,139,5,205,87, 10,0,72,139,8,186,34,0,0,0,190,1,0,0,0,72,141,61,33,243,7,0,232,130,236,7,0,191,0,0,0,0,232,30,236,7,0,72,139,5,163,87,10,0,72,139,8,186,35,0,0,0,190,1,0,0,0,72,141,61,31,243,7,0,232,88,236,7,0,191,0,0,0,0,232,244,235,7,0,72,129,196,136,0,0,0,91,201, 195,85,72,137,229,72,131,236,80,72,137,125,216,72,137,117,208,137,85,204,137,77,200,68,137,69,196,199,69,252,0,0,0,0,72,139,69,216,139,0,137,69,232,139,69,200,137,69,192,131,125,192,0,116,15,131,125,192,1,15,132,244,3,0,0,233,20,8,0,0,139,69,204,137, 69,188,131,125,188,8,15,132,158,0,0,0,131,125,188,8,127,17,131,125,188,0,116,46,131,125,188,2,116,90,233,158,3,0,0,131,125,188,32,15,132,73,1,0,0,131,125,188,64,15,132,137,2,0,0,131,125,188,16,15,132,189,0,0,0,233,123,3,0,0,72,139,69,216,72,139,80,48, 139,69,252,72,152,72,193,224,2,72,141,4,2,139,16,72,139,69,208,137,16,72,131,69,208,4,255,69,252,139,69,252,59,69,232,124,211,233,194,7,0,0,72,139,69,216,72,139,80,56,139,69,252,72,152,72,193,224,2,72,141,4,2,139,16,72,139,69,208,137,16,72,131,69,208, 4,255,69,252,139,69,252,59,69,232,124,211,233,144,7,0,0,72,139,69,216,72,139,80,48,139,69,252,72,152,72,193,224,2,72,141,4,2,139,16,72,139,69,208,137,16,72,131,69,208,4,72,139,69,216,72,139,80,56,139,69,252,72,152,72,193,224,2,72,141,4,2,139,16,72,139, 69,208,137,16,72,131,69,208,4,255,69,252,139,69,252,59,69,232,124,177,233,60,7,0,0,72,139,69,216,72,139,80,48,139,69,252,72,152,72,193,224,2,72,141,4,2,139,0,137,69,248,72,139,69,216,72,139,80,56,139,69,252,72,152,72,193,224,2,72,141,4,2,139,0,137,69, 244,243,15,16,69,248,15,40,200,243,15,89,77,248,243,15,16,69,244,243,15,89,69,244,243,15,88,193,243,15,90,192,242,15,81,192,242,15,90,192,72,139,69,208,243,15,17,0,72,131,69,208,4,255,69,252,139,69,252,59,69,232,124,141,233,196,6,0,0,72,139,69,216,72, 139,80,48,139,69,252,72,152,72,193,224,2,72,141,4,2,139,0,137,69,248,72,139,69,216,72,139,80,56,139,69,252,72,152,72,193,224,2,72,141,4,2,139,0,137,69,244,243,15,90,69,248,102,15,46,5,78,121,8,0,119,2,235,45,243,15,90,69,248,243,15,90,85,244,102,15,40, 200,102,15,40,194,232,105,233,7,0,242,15,90,192,72,139,69,208,243,15,17,0,72,131,69,208,4,233,196,0,0,0,15,87,201,243,15,16,69,244,15,46,193,119,2,235,60,72,139,85,208,184,219,15,201,63,137,2,72,131,69,208,4,131,125,196,0,15,132,155,0,0,0,72,139,5,21, 85,10,0,72,139,8,186,20,0,0,0,190,1,0,0,0,72,141,61,181,240,7,0,232,202,233,7,0,235,121,15,87,192,15,46,69,244,119,2,235,56,72,139,85,208,184,219,15,201,191,137,2,72,131,69,208,4,131,125,196,0,116,88,72,139,5,210,84,10,0,72,139,8,186,20,0,0,0,190,1,0, 0,0,72,141,61,135,240,7,0,232,135,233,7,0,235,54,72,139,85,208,184,0,0,0,0,137,2,72,131,69,208,4,131,125,196,0,116,32,72,139,5,154,84,10,0,72,139,8,186,18,0,0,0,190,1,0,0,0,72,141,61,100,240,7,0,232,79,233,7,0,255,69,252,139,69,252,59,69,232,15,140,187, 254,255,255,233,122,5,0,0,72,139,69,216,72,139,80,48,139,69,252,72,152,72,193,224,2,72,141,4,2,139,0,137,69,248,72,139,69,216,72,139,80,56,139,69,252,72,152,72,193,224,2,72,141,4,2,139,0,137,69,244,243,15,16,69,248,15,40,200,243,15,89,77,248,243,15,16, 69,244,243,15,89,69,244,243,15,88,193,243,15,90,192,242,15,81,192,242,15,90,192,72,139,69,208,243,15,17,0,72,131,69,208,4,15,87,192,15,46,69,248,117,4,122,2,235,42,243,15,90,69,248,243,15,90,85,244,102,15,40,200,102,15,40,194,232,239,231,7,0,242,15,90, 192,72,139,69,208,243,15,17,0,72,131,69,208,4,235,78,15,87,201,243,15,16,69,244,15,46,193,119,2,235,18,72,139,85,208,184,219,15,201,63,137,2,72,131,69,208,4,235,45,15,87,192,15,46,69,244,119,2,235,18,72,139,85,208,184,219,15,201,191,137,2,72,131,69,208, 4,235,16,72,139,85,208,184,0,0,0,0,137,2,72,131,69,208,4,255,69,252,139,69,252,59,69,232,15,140,4,255,255,255,233,121,4,0,0,72,139,5,101,83,10,0,72,139,8,186,36,0,0,0,190,1,0,0,0,72,141,61,73,239,7,0,232,26,232,7,0,191,0,0,0,0,232,182,231,7,0,139,69, 204,137,69,184,131,125,184,8,15,132,224,0,0,0,131,125,184,8,127,17,131,125,184,0,116,46,131,125,184,2,116,123,233,212,3,0,0,131,125,184,32,15,132,234,1,0,0,131,125,184,64,15,132,173,2,0,0,131,125,184,16,15,132,69,1,0,0,233,177,3,0,0,72,139,69,216,72, 139,80,48,139,69,252,72,152,72,193,224,2,72,141,4,2,243,15,16,0,243,15,90,192,232,218,231,7,0,102,15,40,200,242,15,16,5,170,118,8,0,242,15,89,193,242,15,90,192,72,139,69,208,243,15,17,0,72,131,69,208,4,255,69,252,139,69,252,59,69,232,124,178,233,178, 3,0,0,72,139,69,216,72,139,80,56,139,69,252,72,152,72,193,224,2,72,141,4,2,243,15,16,0,243,15,90,192,232,135,231,7,0,102,15,40,200,242,15,16,5,87,118,8,0,242,15,89,193,242,15,90,192,72,139,69,208,243,15,17,0,72,131,69,208,4,255,69,252,139,69,252,59,69, 232,124,178,233,95,3,0,0,72,139,69,216,72,139,80,48,139,69,252,72,152,72,193,224,2,72,141,4,2,243,15,16,0,243,15,90,192,232,52,231,7,0,102,15,40,200,242,15,16,5,4,118,8,0,242,15,89,193,242,15,90,192,72,139,69,208,243,15,17,0,72,131,69,208,4,72,139,69, 216,72,139,80,56,139,69,252,72,152,72,193,224,2,72,141,4,2,243,15,16,0,243,15,90,192,232,241,230,7,0,102,15,40,200,242,15,16,5,193,117,8,0,242,15,89,193,242,15,90,192,72,139,69,208,243,15,17,0,72,131,69,208,4,255,69,252,139,69,252,59,69,232,15,140,107, 255,255,255,233,197,2,0,0,72,139,69,216,72,139,80,48,139,69,252,72,152,72,193,224,2,72,141,4,2,139,0,137,69,248,72,139,69,216,72,139,80,56,139,69,252,72,152,72,193,224,2,72,141,4,2,139,0,137,69,244,243,15,16,69,248,15,40,200,243,15,89,77,248,243,15,16, 69,244,243,15,89,69,244,243,15,88,193,243,15,90,192,242,15,81,192,232,96,230,7,0,102,15,40,200,242,15,16,5,48,117,8,0,242,15,89,193,242,15,90,192,72,139,69,208,243,15,17,0,72,131,69,208,4,255,69,252,139,69,252,59,69,232,15,140,116,255,255,255,233,52, 2,0,0,72,139,69,216,72,139,80,48,139,69,252,72,152,72,193,224,2,72,141,4,2,139,0,137,69,248,72,139,69,216,72,139,80,56,139,69,252,72,152,72,193,224,2,72,141,4,2,139,0,137,69,244,15,87,192,15,46,69,248,117,4,122,2,235,42,243,15,90,69,248,243,15,90,85, 244,102,15,40,200,102,15,40,194,232,221,228,7,0,242,15,90,192,72,139,69,208,243,15,17,0,72,131,69,208,4,235,78,15,87,201,243,15,16,69,244,15,46,193,119,2,235,18,72,139,85,208,184,219,15,201,63,137,2,72,131,69,208,4,235,45,15,87,192,15,46,69,244,119,2, 235,18,72,139,85,208,184,219,15,201,191,137,2,72,131,69,208,4,235,16,72,139,85,208,184,0,0,0,0,137,2,72,131,69,208,4,255,69,252,139,69,252,59,69,232,15,140,56,255,255,255,233,103,1,0,0,72,139,69,216,72,139,80,48,139,69,252,72,152,72,193,224,2,72,141, 4,2,139,0,137,69,248,72,139,69,216,72,139,80,56,139,69,252,72,152,72,193,224,2,72,141,4,2,139,0,137,69,244,243,15,16,69,248,15,40,200,243,15,89,77,248,243,15,16,69,244,243,15,89,69,244,243,15,88,193,243,15,90,192,242,15,81,192,232,2,229,7,0,102,15,40, 200,242,15,16,5,210,115,8,0,242,15,89,193,242,15,90,192,72,139,69,208,243,15,17,0,72,131,69,208,4,15,87,192,15,46,69,248,117,4,122,2,235,42,243,15,90,69,248,243,15,90,85,244,102,15,40,200,102,15,40,194,232,199,227,7,0,242,15,90,192,72,139,69,208,243, 15,17,0,72,131,69,208,4,235,78,15,87,201,243,15,16,69,244,15,46,193,119,2,235,18,72,139,85,208,184,219,15,201,63,137,2,72,131,69,208,4,235,45,15,87,192,15,46,69,244,119,2,235,18,72,139,85,208,184,219,15,201,191,137,2,72,131,69,208,4,235,16,72,139,85, 208,184,0,0,0,0,137,2,72,131,69,208,4,255,69,252,139,69,252,59,69,232,15,140,239,254,255,255,235,84,72,139,5,64,79,10,0,72,139,8,186,36,0,0,0,190,1,0,0,0,72,141,61,36,235,7,0,232,245,227,7,0,191,0,0,0,0,232,145,227,7,0,72,139,5,22,79,10,0,72,139,8,186, 37,0,0,0,190,1,0,0,0,72,141,61,34,235,7,0,232,203,227,7,0,191,0,0,0,0,232,103,227,7,0,201,195,85,72,137,229,72,137,125,168,72,139,69,168,139,64,8,137,69,232,72,139,69,168,139,64,4,255,200,15,175,69,232,137,69,228,72,139,69,168,72,139,64,64,72,137,69, 216,72,139,69,168,72,139,64,72,72,137,69,208,72,139,69,168,72,139,64,80,72,137,69,200,72,139,69,168,72,139,64,88,72,137,69,192,72,139,69,168,139,64,12,131,248,1,117,26,72,139,69,168,72,139,64,96,72,137,69,184,72,139,69,168,72,139,64,112,72,137,69,176, 235,24,72,139,69,168,72,139,64,104,72,137,69,184,72,139,69,168,72,139,64,120,72,137,69,176,199,69,252,0,0,0,0,233,217,0,0,0,72,139,69,216,72,139,0,243,15,16,8,72,139,69,200,72,139,0,243,15,16,0,243,15,88,193,243,15,17,69,248,72,139,69,208,72,139,0,243, 15,16,8,72,139,69,192,72,139,0,243,15,16,0,243,15,88,193,243,15,17,69,244,72,139,69,216,72,139,0,243,15,16,8,72,139,69,200,72,139,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,240,72,139,69,208,72,139,0,243,15,16,8,72,139,69,192,72,139, 0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,236,72,139,69,216,72,139,16,139,69,248,137,2,72,139,69,208,72,139,16,139,69,244,137,2,72,139,69,200,72,139,16,139,69,240,137,2,72,139,69,192,72,139,16,139,69,236,137,2,72,131,69,216,8,72,131, 69,208,8,72,131,69,200,8,72,131,69,192,8,72,131,69,184,4,72,131,69,176,4,255,69,252,139,69,252,59,69,232,15,140,27,255,255,255,199,69,252,0,0,0,0,233,107,1,0,0,72,139,69,200,72,139,0,243,15,16,8,72,139,69,184,243,15,16,0,15,40,209,243,15,89,208,72,139, 69,192,72,139,0,243,15,16,8,72,139,69,176,243,15,16,0,243,15,89,193,15,40,202,243,15,92,200,15,40,193,243,15,17,69,240,72,139,69,200,72,139,0,243,15,16,8,72,139,69,176,243,15,16,0,15,40,209,243,15,89,208,72,139,69,192,72,139,0,243,15,16,8,72,139,69,184, 243,15,16,0,243,15,89,193,243,15,88,194,243,15,17,69,236,72,139,69,200,72,139,16,139,69,240,137,2,72,139,69,192,72,139,16,139,69,236,137,2,72,139,69,216,72,139,0,243,15,16,8,72,139,69,200,72,139,0,243,15,16,0,243,15,88,193,243,15,17,69,248,72,139,69, 208,72,139,0,243,15,16,8,72,139,69,192,72,139,0,243,15,16,0,243,15,88,193,243,15,17,69,244,72,139,69,216,72,139,0,243,15,16,8,72,139,69,200,72,139,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,240,72,139,69,208,72,139,0,243,15,16,8,72, 139,69,192,72,139,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,236,72,139,69,216,72,139,16,139,69,248,137,2,72,139,69,208,72,139,16,139,69,244,137,2,72,139,69,200,72,139,16,139,69,240,137,2,72,139,69,192,72,139,16,139,69,236,137,2,72, 131,69,216,8,72,131,69,208,8,72,131,69,200,8,72,131,69,192,8,72,131,69,184,4,72,131,69,176,4,255,69,252,139,69,252,59,69,228,15,140,137,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,139,0,137,69,244,72,139,69,232,139,64, 4,137,69,252,72,139,69,232,139,64,8,137,69,248,139,69,244,72,152,72,141,60,133,0,0,0,0,232,198,224,7,0,72,137,194,72,139,69,232,72,137,80,24,139,69,244,72,152,72,141,60,133,0,0,0,0,232,169,224,7,0,72,137,194,72,139,69,232,72,137,80,48,139,69,244,72,152, 72,141,60,133,0,0,0,0,232,140,224,7,0,72,137,194,72,139,69,232,72,137,80,56,139,69,252,15,175,69,248,72,152,72,141,60,133,0,0,0,0,232,107,224,7,0,72,137,194,72,139,69,232,72,137,80,96,139,69,252,15,175,69,248,72,152,72,141,60,133,0,0,0,0,232,74,224,7, 0,72,137,194,72,139,69,232,72,137,80,112,139,69,252,15,175,69,248,72,152,72,141,60,133,0,0,0,0,232,41,224,7,0,72,137,194,72,139,69,232,72,137,80,104,139,69,252,15,175,69,248,72,152,72,141,60,133,0,0,0,0,232,8,224,7,0,72,137,194,72,139,69,232,72,137,80, 120,139,69,252,15,175,69,248,72,152,72,141,60,197,0,0,0,0,232,231,223,7,0,72,137,194,72,139,69,232,72,137,80,64,139,69,252,15,175,69,248,72,152,72,141,60,197,0,0,0,0,232,198,223,7,0,72,137,194,72,139,69,232,72,137,80,72,139,69,252,15,175,69,248,72,152, 72,141,60,197,0,0,0,0,232,165,223,7,0,72,137,194,72,139,69,232,72,137,80,80,139,69,252,15,175,69,248,72,152,72,141,60,197,0,0,0,0,232,132,223,7,0,72,137,194,72,139,69,232,72,137,80,88,139,69,244,72,152,72,141,60,133,0,0,0,0,232,103,223,7,0,72,137,194, 72,139,69,232,72,137,80,32,139,69,244,72,152,72,141,60,133,0,0,0,0,232,74,223,7,0,72,137,194,72,139,69,232,72,137,80,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,24,232,202,222,7,0,72,139,69,248,72,139,120,48,232,189, 222,7,0,72,139,69,248,72,139,120,56,232,176,222,7,0,72,139,69,248,72,139,120,96,232,163,222,7,0,72,139,69,248,72,139,120,112,232,150,222,7,0,72,139,69,248,72,139,120,104,232,137,222,7,0,72,139,69,248,72,139,120,120,232,124,222,7,0,72,139,69,248,72,139, 120,64,232,111,222,7,0,72,139,69,248,72,139,120,72,232,98,222,7,0,72,139,69,248,72,139,120,80,232,85,222,7,0,72,139,69,248,72,139,120,88,232,72,222,7,0,72,139,69,248,72,139,120,32,232,59,222,7,0,72,139,69,248,72,139,120,40,232,46,222,7,0,201,195,85,72, 137,229,137,125,236,139,69,236,137,69,252,235,22,139,69,252,131,224,1,132,192,116,9,199,69,232,0,0,0,0,235,16,209,125,252,131,125,252,1,127,228,199,69,232,1,0,0,0,139,69,232,201,195,85,72,137,229,72,131,236,32,72,137,125,232,137,117,228,243,15,17,69, 224,242,15,42,69,228,242,15,16,13,0,109,8,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,90,192,243,15,17,69,248,199,69,244,1,0,0,0,235,59,243,15,42,69,244,243,15,89,69,248,243,15,90,192,232,189,222,7,0,242,15,90,192,243,15,17,69,252,243,15,16,69, 224,243,15,89,69,252,243,15,89,69,252,72,139,69,232,243,15,17,0,72,131,69,232,4,255,69,244,139,69,244,59,69,228,126,189,201,195,85,72,137,229,72,137,125,248,137,117,244,243,15,17,69,240,235,14,72,139,85,248,139,69,240,137,2,72,131,69,248,4,255,77,244, 131,125,244,255,117,233,201,195,85,72,137,229,72,137,125,248,72,137,117,240,137,85,236,235,30,72,139,69,248,15,183,0,152,243,15,42,192,72,139,69,240,243,15,17,0,72,131,69,240,4,72,131,69,248,2,255,77,236,131,125,236,255,117,217,201,195,85,72,137,229, 72,131,236,96,72,137,125,216,137,117,212,137,85,208,131,125,208,0,116,12,242,15,42,69,212,242,15,17,69,192,235,13,242,15,16,5,92,107,8,0,242,15,17,69,192,242,15,16,69,192,242,15,17,69,240,131,125,208,0,116,9,199,69,204,2,0,0,0,235,7,199,69,204,1,0,0, 0,72,139,77,216,139,117,212,199,68,36,24,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,8,8,0,0,0,72,139,69,216,72,137,4,36,65,185,0,0,0,0,65,184,8,0,0,0,186,0,0,0,0,139,125,204,232,232,221,255,255,139,69,212,1,192,137,69,252,72,139,69,216,72,137,69,232,235, 34,72,139,69,232,243,15,16,0,243,15,90,192,242,15,89,69,240,242,15,90,192,72,139,69,232,243,15,17,0,72,131,69,232,4,255,77,252,131,125,252,255,117,213,201,195,85,72,137,229,83,72,131,236,40,243,15,17,69,220,72,141,5,43,165,10,0,72,139,56,232,119,249, 5,0,72,137,69,232,72,141,61,144,229,7,0,232,89,194,5,0,72,137,195,72,141,61,55,63,8,0,232,74,194,5,0,72,139,117,232,72,139,125,232,72,137,217,72,137,194,232,116,222,5,0,72,139,125,232,72,141,53,102,79,10,0,232,99,234,5,0,72,139,85,232,184,0,68,44,71, 137,66,48,72,139,85,232,72,131,194,56,72,139,69,232,72,137,80,64,72,139,85,232,184,0,0,0,0,137,66,56,243,15,16,69,220,72,139,125,232,232,23,0,0,0,72,139,85,232,184,0,0,0,0,137,66,72,72,139,69,232,72,131,196,40,91,201,195,85,72,137,229,72,137,125,248, 243,15,17,69,244,15,87,192,15,46,69,244,119,2,235,8,184,0,0,0,0,137,69,244,72,139,85,248,139,69,244,137,66,52,72,139,69,248,72,139,80,64,243,15,90,77,244,242,15,16,5,133,106,8,0,242,15,89,200,72,139,69,248,243,15,16,64,48,243,15,90,192,242,15,94,200, 242,15,16,5,176,105,8,0,242,15,88,193,242,15,90,192,243,15,17,66,4,72,139,69,248,72,139,64,64,243,15,16,72,4,15,87,192,15,46,193,119,2,235,18,72,139,69,248,72,139,80,64,184,0,0,0,0,137,66,4,235,44,72,139,69,248,72,139,64,64,243,15,16,72,4,243,15,16,5, 93,105,8,0,15,46,200,119,2,235,16,72,139,69,248,72,139,80,64,184,0,0,128,63,137,66,4,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,224,72,139,69,200,72,131,192,16,72,139,0,72,137,69,216,72,139,69,200,72,131,192,24, 72,139,0,72,137,69,208,72,139,69,200,72,131,192,32,72,139,0,137,69,252,72,139,69,208,139,0,137,69,244,72,139,69,208,139,64,4,137,69,240,243,15,16,5,230,104,8,0,15,46,69,240,119,5,233,137,0,0,0,199,69,248,0,0,0,0,235,68,72,139,69,224,243,15,16,8,243,15, 16,69,244,243,15,89,69,240,243,15,88,193,243,15,17,69,236,72,131,69,224,4,243,15,16,77,244,243,15,16,69,236,243,15,92,193,72,139,69,216,243,15,17,0,72,131,69,216,4,139,69,236,137,69,244,255,69,248,139,69,248,59,69,252,124,180,72,141,69,244,139,0,37,0, 0,0,96,133,192,116,18,72,141,69,244,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,244,139,85,244,72,139,69,208,137,16,235,53,199,69,248,0,0,0,0,235,25,72,139,69,224,139,16,72,139,69,216,137,16,72,131,69,216,4,72,131,69,224,4,255,69,248,139,69, 248,59,69,252,124,223,72,139,85,208,184,0,0,0,0,137,2,72,139,69,200,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,80,16,72,139,69,248,137,80,48,72,139,69,248,243,15,16,64,52,72,139,125,248, 232,220,253,255,255,72,139,69,240,72,139,0,139,8,72,139,69,248,72,139,112,64,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,92,254,255,255,184,0,0,0,0,232,224, 244,0,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,85,248,184,0,0,0,0,137,66,56,201,195,85,72,137,229,83,72,131,236,24,72,141,29,185,252,255,255,72,141,61,120,224,7,0,232,51,191,5,0,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184, 0,0,0,0,185,80,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,102,173,5,0,72,137,194,72,141,5,182,161,10,0,72,137,16,72,141,5,172,161,10,0,72,139,56,190,72,0,0,0,232,89,188,5,0,72,141,61,160,231,7,0,232,217,190,5,0,72,137,194,72,141,53,230,254,255,255, 72,141,5,130,161,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,83,180,5,0,72,141,61,225,225,7,0,232,170,190,5,0,72,137,194,72,141,53,198,252,255,255,72,141,5,83,161,10,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,30,180,5,0,72,141,61,188,101,8, 0,232,117,190,5,0,72,137,194,72,141,53,1,255,255,255,72,141,5,30,161,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,239,179,5,0,72,131,196,24,91,201,195,85,72,137,229,83,72,131,236,40,243,15,17,69,220,72,141,5,248,160,10,0,72,139,56,232,60,245,5,0,72,137, 69,232,72,141,61,85,225,7,0,232,30,190,5,0,72,137,195,72,141,61,252,58,8,0,232,15,190,5,0,72,139,117,232,72,139,125,232,72,137,217,72,137,194,232,57,218,5,0,72,139,125,232,72,141,53,43,75,10,0,232,40,230,5,0,72,139,85,232,184,0,68,44,71,137,66,48,72, 139,85,232,72,131,194,56,72,139,69,232,72,137,80,64,72,139,85,232,184,0,0,0,0,137,66,56,243,15,16,69,220,72,139,125,232,232,23,0,0,0,72,139,85,232,184,0,0,0,0,137,66,72,72,139,69,232,72,131,196,40,91,201,195,85,72,137,229,72,137,125,248,243,15,17,69, 244,15,87,192,15,46,69,244,119,2,235,8,184,0,0,0,0,137,69,244,72,139,85,248,139,69,244,137,66,52,72,139,69,248,72,139,80,64,243,15,90,77,244,242,15,16,5,186,101,8,0,242,15,89,200,72,139,69,248,243,15,16,64,48,243,15,90,192,102,15,40,209,242,15,94,208, 102,15,40,194,242,15,90,192,243,15,17,66,4,72,139,69,248,72,139,64,64,243,15,16,72,4,243,15,16,5,79,101,8,0,15,46,200,119,2,235,18,72,139,69,248,72,139,80,64,184,0,0,128,63,137,66,4,235,39,72,139,69,248,72,139,64,64,243,15,16,72,4,15,87,192,15,46,193, 119,2,235,16,72,139,69,248,72,139,80,64,184,0,0,0,0,137,66,4,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,85,248,184,0,0,0,0,137,66,56,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,224,72,139,69,200, 72,131,192,16,72,139,0,72,137,69,216,72,139,69,200,72,131,192,24,72,139,0,72,137,69,208,72,139,69,200,72,131,192,32,72,139,0,137,69,252,72,139,69,208,139,0,137,69,244,72,139,69,208,139,64,4,137,69,240,243,15,16,5,148,100,8,0,243,15,92,69,240,243,15,17, 69,236,199,69,248,0,0,0,0,235,60,72,139,69,224,243,15,16,0,15,40,200,243,15,89,77,240,243,15,16,69,244,243,15,89,69,236,243,15,88,193,72,139,69,216,243,15,17,0,72,139,69,216,139,0,137,69,244,72,131,69,216,4,72,131,69,224,4,255,69,248,139,69,248,59,69, 252,124,188,72,141,69,244,139,0,37,0,0,0,96,133,192,116,18,72,141,69,244,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,244,139,85,244,72,139,69,208,137,16,72,139,69,200,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137, 117,240,72,139,69,240,72,139,0,139,80,16,72,139,69,248,137,80,48,72,139,69,248,243,15,16,64,52,72,139,125,248,232,5,254,255,255,72,139,69,240,72,139,0,139,8,72,139,69,248,72,139,112,64,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72, 139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,156,254,255,255,184,0,0,0,0,232,206,240,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,253,252,255,255,72,141,61,134,220,7,0,232,60,187,5,0,72,137,199,199,4,36,0,0,0,0,65, 185,6,0,0,0,65,184,0,0,0,0,185,80,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,111,169,5,0,72,137,194,72,141,5,199,157,10,0,72,137,16,72,141,5,189,157,10,0,72,139,56,190,72,0,0,0,232,98,184,5,0,72,141,61,169,227,7,0,232,226,186,5,0,72,137,194,72,141, 53,1,255,255,255,72,141,5,147,157,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,92,176,5,0,72,141,61,234,221,7,0,232,179,186,5,0,72,137,194,72,141,53,10,253,255,255,72,141,5,100,157,10,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,39,176,5,0,72, 141,61,197,97,8,0,232,126,186,5,0,72,137,194,72,141,53,145,253,255,255,72,141,5,47,157,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,248,175,5,0,72,131,196,24,91,201,195,85,72,137,229,83,72,131,236,56,243,15,17,69,220,243,15,17,77,216,72,141,5,212,156,10, 0,72,139,56,232,64,241,5,0,72,137,69,232,72,141,61,89,221,7,0,232,34,186,5,0,72,137,195,72,141,61,0,55,8,0,232,19,186,5,0,72,139,117,232,72,139,125,232,72,137,217,72,137,194,232,61,214,5,0,72,141,61,67,219,7,0,232,244,185,5,0,72,137,195,72,141,61,210, 54,8,0,232,229,185,5,0,72,139,117,232,72,139,125,232,72,137,217,72,137,194,232,15,214,5,0,72,139,125,232,72,141,53,1,71,10,0,232,254,225,5,0,72,139,85,232,184,0,68,44,71,137,66,48,72,139,85,232,72,131,194,60,72,139,69,232,72,137,80,80,72,139,85,232,184, 0,0,0,0,137,66,60,72,139,85,232,184,0,0,0,0,137,66,64,243,15,16,69,216,139,69,220,72,139,125,232,15,40,200,137,69,204,243,15,16,69,204,232,216,0,0,0,72,139,85,232,184,0,0,0,0,137,66,88,72,139,69,232,72,131,196,56,91,201,195,85,72,137,229,243,15,17,69, 236,243,15,16,69,236,15,46,5,64,98,8,0,15,130,151,0,0,0,243,15,16,77,236,243,15,16,5,49,98,8,0,15,46,193,15,130,129,0,0,0,243,15,16,69,236,243,15,89,69,236,243,15,17,69,252,243,15,16,69,252,243,15,89,69,252,15,40,200,243,15,89,77,252,243,15,16,5,3,98, 8,0,15,40,209,243,15,89,208,243,15,16,69,252,15,40,200,243,15,89,77,252,243,15,16,5,235,97,8,0,243,15,89,193,243,15,88,194,243,15,90,208,243,15,90,77,252,242,15,16,5,190,97,8,0,242,15,89,193,102,15,40,202,242,15,88,200,242,15,16,5,234,96,8,0,242,15,88, 193,242,15,90,192,243,15,17,69,232,235,8,15,87,192,243,15,17,69,232,243,15,16,69,232,201,195,85,72,137,229,83,72,131,236,40,72,137,125,216,243,15,17,69,212,243,15,17,77,208,243,15,90,77,212,242,15,16,5,240,96,8,0,102,15,46,193,119,2,235,8,184,0,0,32, 65,137,69,212,15,87,192,15,46,69,208,119,2,235,8,184,0,0,0,0,137,69,208,72,139,85,216,139,69,212,137,66,52,72,139,85,216,139,69,208,137,66,56,243,15,16,77,212,243,15,16,5,60,97,8,0,243,15,89,200,72,139,69,216,243,15,16,64,48,15,40,209,243,15,94,208,15, 40,194,243,15,17,69,228,243,15,90,77,208,242,15,16,5,131,96,8,0,102,15,46,193,119,2,235,10,184,0,0,128,63,137,69,232,235,15,243,15,16,69,228,243,15,94,69,208,243,15,17,69,232,243,15,16,13,10,96,8,0,243,15,16,69,232,15,46,193,119,2,235,8,184,0,0,128,63, 137,69,232,243,15,16,5,238,95,8,0,243,15,92,69,232,243,15,17,69,236,72,139,69,216,72,139,88,80,243,15,16,69,228,232,77,254,255,255,243,15,88,192,243,15,89,69,236,243,15,17,67,8,72,139,69,216,72,139,64,80,243,15,16,5,20,96,8,0,243,15,16,77,236,15,87,193, 243,15,89,69,236,243,15,17,64,12,72,139,69,216,72,139,64,80,243,15,16,69,232,15,40,200,243,15,88,200,243,15,16,69,236,243,15,89,69,228,243,15,88,69,232,243,15,89,193,243,15,17,64,16,72,131,196,40,91,201,195,85,72,137,229,72,131,236,32,72,137,125,248, 243,15,17,69,244,72,139,69,248,243,15,16,64,56,139,69,244,72,139,125,248,15,40,200,137,69,236,243,15,16,69,236,232,122,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,72,139,69,248,139,64,52,243,15,16,69,244,72,139,125, 248,15,40,200,137,69,236,243,15,16,69,236,232,71,254,255,255,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,72,80,72,139,69,248,72,139,80,80,184,0,0,0,0,137,66,4,139,66,4,137,1,201,195,85,72,137,229,72,137,125,184,72,139,69, 184,72,131,192,8,72,139,0,72,137,69,216,72,139,69,184,72,131,192,16,72,139,0,72,137,69,208,72,139,69,184,72,131,192,24,72,139,0,72,137,69,200,72,139,69,184,72,131,192,32,72,139,0,137,69,252,72,139,69,200,139,0,137,69,244,72,139,69,200,139,64,4,137,69, 240,72,139,69,200,139,64,8,137,69,236,72,139,69,200,139,64,12,137,69,232,72,139,69,200,139,64,16,137,69,228,199,69,248,0,0,0,0,235,84,72,139,69,216,243,15,16,8,243,15,16,69,244,243,15,89,69,236,243,15,88,200,243,15,16,69,240,243,15,89,69,232,243,15,88, 193,243,15,17,69,224,72,131,69,216,4,243,15,16,69,228,243,15,89,69,224,72,139,69,208,243,15,17,0,72,131,69,208,4,139,69,244,137,69,240,139,69,224,137,69,244,255,69,248,139,69,248,59,69,252,124,164,72,141,69,244,139,0,37,0,0,0,96,133,192,116,18,72,141, 69,244,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,244,72,141,69,240,139,0,37,0,0,0,96,133,192,116,18,72,141,69,240,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,240,139,85,244,72,139,69,200,137,16,139,85,240,72,139,69,200,137,80, 4,72,139,69,184,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,80,16,72,139,69,248,137,80,48,72,139,69,248,243,15,16,72,56,72,139,69,248,243,15,16,64,52,72,139,125,248,232,149,252,255,255,72, 139,69,240,72,139,0,139,8,72,139,69,248,72,139,112,80,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,60,254,255,255,184,0,0,0,0,232,89,234,0,0,201,195,85,72,137, 229,83,72,131,236,24,72,141,29,127,250,255,255,72,141,61,26,214,7,0,232,199,180,5,0,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,96,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,242,162,5,0,72,137,194,72,141,5,34,151, 10,0,72,137,16,72,141,5,24,151,10,0,72,139,56,190,88,0,0,0,232,229,177,5,0,72,141,61,44,221,7,0,232,101,180,5,0,72,137,194,72,141,53,240,254,255,255,72,141,5,238,150,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,223,169,5,0,72,141,61,109,215,7,0,232,54, 180,5,0,72,137,194,72,141,53,231,252,255,255,72,141,5,191,150,10,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,170,169,5,0,72,141,61,80,213,7,0,232,1,180,5,0,72,137,194,72,141,53,229,252,255,255,72,141,5,138,150,10,0,72,139,56,65,184,0,0,0,0, 185,1,0,0,0,184,0,0,0,0,232,117,169,5,0,72,141,61,19,91,8,0,232,204,179,5,0,72,137,194,72,141,53,227,252,255,255,72,141,5,85,150,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,70,169,5,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232, 137,117,228,72,137,85,216,72,141,5,26,150,10,0,72,139,56,232,142,234,5,0,72,137,69,248,72,139,125,248,72,141,53,171,64,10,0,232,168,219,5,0,72,139,85,248,72,131,194,52,72,139,69,248,72,137,80,80,72,139,85,248,184,0,0,0,0,137,66,56,72,139,69,248,139,80, 56,72,139,69,248,137,80,52,72,139,77,216,139,85,228,72,139,117,232,72,139,125,248,232,107,1,0,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,208,72,139,69,184,72, 131,192,16,72,139,0,72,137,69,200,72,139,69,184,72,131,192,24,72,139,0,72,137,69,192,72,139,69,184,72,131,192,32,72,139,0,137,69,252,72,139,69,192,139,0,137,69,244,72,139,69,192,139,64,4,137,69,240,72,139,69,192,139,64,8,137,69,236,72,139,69,192,139, 64,12,137,69,232,72,139,69,192,139,64,16,137,69,228,72,139,69,192,139,64,20,137,69,224,72,139,69,192,139,64,24,137,69,220,199,69,248,0,0,0,0,233,156,0,0,0,72,139,69,208,243,15,16,8,243,15,16,69,236,243,15,89,69,244,243,15,88,200,243,15,16,69,232,243, 15,89,69,240,243,15,88,193,243,15,17,69,216,72,131,69,208,4,72,141,69,216,139,0,37,0,0,0,96,133,192,116,18,72,141,69,216,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,216,243,15,16,69,216,15,40,200,243,15,89,77,228,243,15,16,69,224,243,15,89, 69,244,243,15,88,200,243,15,16,69,220,243,15,89,69,240,243,15,88,193,72,139,69,200,243,15,17,0,72,131,69,200,4,139,69,244,137,69,240,139,69,216,137,69,244,255,69,248,139,69,248,59,69,252,15,140,88,255,255,255,72,139,85,192,139,69,244,137,2,72,139,85, 192,139,69,240,137,66,4,72,139,69,184,72,131,192,40,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,137,85,204,72,137,77,192,72,139,85,192,139,117,204,191,0,0,0,0,232,169,51,5,0,243,15,17,69,252,72,139,85,192,139,117,204,191,1,0,0,0, 232,147,51,5,0,243,15,17,69,248,72,139,85,192,139,117,204,191,2,0,0,0,232,125,51,5,0,243,15,17,69,244,72,139,85,192,139,117,204,191,3,0,0,0,232,103,51,5,0,243,15,17,69,240,72,139,85,192,139,117,204,191,4,0,0,0,232,81,51,5,0,243,15,17,69,236,243,15,16, 69,252,15,40,208,243,15,89,85,252,243,15,16,77,248,243,15,16,5,50,90,8,0,243,15,89,193,243,15,88,194,243,15,17,69,232,72,139,69,216,72,139,64,80,72,137,69,224,15,87,192,15,46,69,232,119,2,235,20,243,15,16,69,248,15,46,5,6,90,8,0,15,131,134,0,0,0,235, 100,243,15,16,77,252,243,15,16,5,125,89,8,0,15,46,193,115,2,235,80,243,15,16,69,252,15,46,5,110,89,8,0,115,2,235,64,243,15,16,5,234,88,8,0,243,15,92,69,252,15,40,200,243,15,92,77,248,15,87,192,15,46,200,115,2,235,33,243,15,16,77,252,243,15,16,5,198,88, 8,0,243,15,88,193,15,40,200,243,15,92,77,248,15,87,192,15,46,200,115,32,184,0,0,0,0,137,69,236,139,69,236,137,69,240,139,69,240,137,69,244,139,69,244,137,69,248,139,69,248,137,69,252,72,139,85,224,139,69,252,137,66,8,72,139,85,224,139,69,248,137,66,12, 72,139,85,224,139,69,244,137,66,16,72,139,85,224,139,69,240,137,66,20,72,139,85,224,139,69,236,137,66,24,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,69,232,72,139,64,80,72,137,69,248,72,139,85,208, 139,117,220,191,0,0,0,0,232,14,50,5,0,72,139,69,248,243,15,17,0,72,139,85,208,139,117,220,191,1,0,0,0,232,245,49,5,0,72,139,69,248,243,15,17,64,4,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,8,72,139,69, 248,72,139,112,80,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,112,252,255,255,184,0,0,0,0,232,246,228,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29, 206,251,255,255,72,141,61,187,208,7,0,232,100,175,5,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,88,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,151,157,5,0,72,137,194,72,141,5,191,145,10,0,72,137,16,72,141,5,181,145,10,0,72,139,56, 190,48,0,0,0,232,138,172,5,0,72,141,61,209,215,7,0,232,10,175,5,0,72,137,194,72,141,53,36,255,255,255,72,141,5,139,145,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,132,164,5,0,72,141,53,29,253,255,255,72,141,5,107,145,10,0,72,139,56,232,243,170,5,0,72, 141,61,172,217,7,0,232,197,174,5,0,72,137,194,72,141,53,135,254,255,255,72,141,5,70,145,10,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,57,164,5,0,72,141,61,215,85,8,0,232,144,174,5,0,72,137,194,72,141,53,82,254,255,255,72,141,5,17,145,10, 0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,4,164,5,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,16,72,141,5,51,145,10,0,72,139,56,232,87,229,5,0,72,137,69,248,72,139,117,248,72,139,125,248,72,141,13,112,59,10,0,72,141,21,105,59,10, 0,232,103,202,5,0,72,139,125,248,72,141,53,89,59,10,0,232,86,214,5,0,72,139,85,248,184,0,0,0,0,137,66,52,72,139,85,248,184,0,0,0,0,137,66,56,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,137,125,184,72,139,69,184,72,131,192, 8,72,139,0,72,137,69,224,72,139,69,184,72,131,192,16,72,139,0,72,137,69,216,72,139,69,184,72,131,192,24,72,139,0,72,137,69,208,72,139,69,184,72,131,192,32,72,139,0,72,137,69,200,72,139,69,184,72,131,192,40,72,139,0,137,69,252,72,139,69,200,139,64,52, 137,69,244,72,139,69,200,139,64,56,137,69,240,199,69,248,0,0,0,0,235,68,72,139,69,216,139,0,137,69,236,72,131,69,216,4,243,15,16,77,236,243,15,16,69,244,15,46,193,119,2,235,9,72,139,69,224,139,0,137,69,240,72,139,69,208,139,85,240,137,16,72,131,69,208, 4,139,69,236,137,69,244,255,69,248,72,131,69,224,4,139,69,248,59,69,252,124,180,72,139,85,200,139,69,244,137,66,52,72,139,85,200,139,69,240,137,66,56,72,139,69,184,72,131,192,48,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,139, 69,240,72,139,0,139,56,72,139,69,240,72,131,192,16,72,139,0,72,139,80,8,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,112,8,72,139,69,248,137,60,36,73,137,193,73,137,208,72,137,242,190,5,0,0,0,72,141,61,201,254,255,255, 184,0,0,0,0,232,35,226,0,0,201,195,85,72,137,229,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,131,125,236,0,126,27,72,139,69,224,139,0,131,248,1,117,16,72,139,69,224,243,15,16,64,8,243,15,17,69,220,235,13,243,15,16,5,135,85,8,0,243,15,17,69, 220,72,139,69,248,243,15,16,69,220,243,15,17,64,52,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,56,201,195,85,72,137,229,72,141,61,146,205,7,0,232,51,172,5,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,64,0,0, 0,186,0,0,0,0,72,141,53,179,253,255,255,184,0,0,0,0,232,105,154,5,0,72,137,194,72,141,5,225,142,10,0,72,137,16,72,141,5,215,142,10,0,72,139,56,190,48,0,0,0,232,92,169,5,0,72,141,61,195,214,7,0,232,220,171,5,0,72,137,194,72,141,53,118,255,255,255,72,141, 5,173,142,10,0,72,139,56,65,184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,80,161,5,0,72,141,61,16,205,7,0,232,167,171,5,0,72,137,194,72,141,53,240,254,255,255,72,141,5,120,142,10,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,27,161,5,0,72,141,61, 57,212,7,0,232,114,171,5,0,72,137,194,72,141,53,81,254,255,255,72,141,5,67,142,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,236,160,5,0,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,141,5,3,142,10,0,72,139,56,232,63,226,5,0,72,137,69,248,72,139, 117,248,72,139,125,248,72,141,13,88,56,10,0,72,141,21,81,56,10,0,232,79,199,5,0,72,137,199,243,15,16,69,236,232,230,234,5,0,72,139,125,248,72,141,53,52,56,10,0,232,49,211,5,0,72,139,85,248,184,0,0,0,0,137,66,52,72,139,69,248,201,195,85,72,137,229,72, 137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,224,72,139,69,184,72,131,192,16,72,139,0,72,137,69,216,72,139,69,184,72,131,192,24,72,139,0,72,137,69,208,72,139,69,184,72,131,192,32,72,139,0,72,137,69,200,72,139,69,184,72,131,192,40,72,139, 0,137,69,252,72,139,69,200,139,64,52,137,69,244,199,69,248,0,0,0,0,235,65,72,139,69,224,139,0,137,69,240,72,131,69,224,4,72,139,69,216,139,0,137,69,236,72,131,69,216,4,243,15,16,69,244,243,15,89,69,236,243,15,88,69,240,243,15,17,69,244,139,85,244,72, 139,69,208,137,16,72,131,69,208,4,255,69,248,139,69,248,59,69,252,124,183,72,141,69,244,139,0,37,0,0,0,96,133,192,116,18,72,141,69,244,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,244,139,85,244,72,139,69,200,137,80,52,72,139,69,184,72,131, 192,48,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,56,72,139,69,240,72,131,192,16,72,139,0,72,139,80,8,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,112,8,72,139,69,248, 137,60,36,73,137,193,73,137,208,72,137,242,190,5,0,0,0,72,141,61,183,254,255,255,184,0,0,0,0,232,4,223,0,0,201,195,85,72,137,229,72,137,125,248,72,139,85,248,184,0,0,0,0,137,66,52,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,85,248,139, 69,244,137,66,52,201,195,85,72,137,229,83,72,131,236,24,72,141,29,2,254,255,255,72,141,61,178,202,7,0,232,67,169,5,0,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,118,151,5,0,72,137,194, 72,141,5,214,139,10,0,72,137,16,72,141,5,204,139,10,0,72,139,56,190,48,0,0,0,232,105,166,5,0,72,141,61,208,211,7,0,232,233,168,5,0,72,137,194,72,141,53,103,255,255,255,72,141,5,162,139,10,0,72,139,56,65,184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,93,158, 5,0,72,141,61,251,79,8,0,232,180,168,5,0,72,137,194,72,141,53,28,255,255,255,72,141,5,109,139,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,46,158,5,0,72,141,61,76,209,7,0,232,133,168,5,0,72,137,194,72,141,53,131,254,255,255,72,141,5,62,139,10,0,72,139, 56,185,0,0,0,0,184,0,0,0,0,232,255,157,5,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,141,5,25,139,10,0,72,139,56,232,77,223,5,0,72,137,69,248,72,139,117,248,72,139,125,248,72,141,13,102,53,10,0,72,141,21,95,53,10,0,232, 93,196,5,0,72,137,199,243,15,16,69,236,232,244,231,5,0,72,139,125,248,72,141,53,66,53,10,0,232,63,208,5,0,72,139,85,248,184,0,0,0,0,137,66,52,72,139,69,248,201,195,85,72,137,229,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,224,72,139, 69,184,72,131,192,16,72,139,0,72,137,69,216,72,139,69,184,72,131,192,24,72,139,0,72,137,69,208,72,139,69,184,72,131,192,32,72,139,0,72,137,69,200,72,139,69,184,72,131,192,40,72,139,0,137,69,252,72,139,69,200,139,64,52,137,69,244,199,69,248,0,0,0,0,235, 72,72,139,69,224,139,0,137,69,240,72,131,69,224,4,72,139,69,216,139,0,137,69,236,72,131,69,216,4,243,15,16,69,236,15,40,200,243,15,89,77,244,243,15,16,69,240,243,15,92,193,72,139,69,208,243,15,17,0,72,131,69,208,4,139,69,240,137,69,244,255,69,248,139, 69,248,59,69,252,124,176,72,139,85,200,139,69,244,137,66,52,72,139,69,184,72,131,192,48,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,56,72,139,69,240,72,131,192,16,72,139,0,72,139,80,8,72,139,69,240,72, 131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,112,8,72,139,69,248,137,60,36,73,137,193,73,137,208,72,137,242,190,5,0,0,0,72,141,61,217,254,255,255,184,0,0,0,0,232,52,220,0,0,201,195,85,72,137,229,72,137,125,248,72,139,85,248,184,0,0,0, 0,137,66,52,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,52,201,195,85,72,137,229,83,72,131,236,24,72,141,29,36,254,255,255,72,141,61,233,199,7,0,232,115,166,5,0,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184, 0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,166,148,5,0,72,137,194,72,141,5,14,137,10,0,72,137,16,72,141,5,4,137,10,0,72,139,56,190,48,0,0,0,232,153,163,5,0,72,141,61,0,209,7,0,232,25,166,5,0,72,137,194,72,141,53,103,255,255,255,72,141, 5,218,136,10,0,72,139,56,65,184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,141,155,5,0,72,141,61,43,77,8,0,232,228,165,5,0,72,137,194,72,141,53,28,255,255,255,72,141,5,165,136,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,94,155,5,0,72,141,61,124,206,7,0,232,181, 165,5,0,72,137,194,72,141,53,131,254,255,255,72,141,5,118,136,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,47,155,5,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,141,5,81,136,10,0,72,139,56,232,125,220,5,0,72,137,69,248,72, 139,117,248,72,139,125,248,72,141,13,150,50,10,0,72,141,21,143,50,10,0,232,141,193,5,0,72,137,199,243,15,16,69,236,232,36,229,5,0,72,139,125,248,72,141,53,114,50,10,0,232,111,205,5,0,72,139,85,248,184,0,0,0,0,137,66,52,72,139,69,248,201,195,85,72,137, 229,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,224,72,139,69,184,72,131,192,16,72,139,0,72,137,69,216,72,139,69,184,72,131,192,24,72,139,0,72,137,69,208,72,139,69,184,72,131,192,32,72,139,0,72,137,69,200,72,139,69,184,72,131,192,40, 72,139,0,137,69,252,72,139,69,200,139,64,52,137,69,244,199,69,248,0,0,0,0,235,72,72,139,69,224,139,0,137,69,240,72,131,69,224,4,72,139,69,216,139,0,137,69,236,72,131,69,216,4,243,15,16,69,236,15,40,200,243,15,89,77,240,243,15,16,69,244,243,15,92,193, 72,139,69,208,243,15,17,0,72,131,69,208,4,139,69,240,137,69,244,255,69,248,139,69,248,59,69,252,124,176,72,139,85,200,139,69,244,137,66,52,72,139,69,184,72,131,192,48,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,139,69,240,72, 139,0,139,56,72,139,69,240,72,131,192,16,72,139,0,72,139,80,8,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,112,8,72,139,69,248,137,60,36,73,137,193,73,137,208,72,137,242,190,5,0,0,0,72,141,61,217,254,255,255,184,0,0,0, 0,232,100,217,0,0,201,195,85,72,137,229,72,137,125,248,72,139,85,248,184,0,0,0,0,137,66,52,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,52,201,195,85,72,137,229,83,72,131,236,24,72,141,29,36,254,255,255,72,141, 61,32,197,7,0,232,163,163,5,0,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,214,145,5,0,72,137,194,72,141,5,70,134,10,0,72,137,16,72,141,5,60,134,10,0,72,139,56,190,48,0,0,0,232,201,160, 5,0,72,141,61,48,206,7,0,232,73,163,5,0,72,137,194,72,141,53,103,255,255,255,72,141,5,18,134,10,0,72,139,56,65,184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,189,152,5,0,72,141,61,91,74,8,0,232,20,163,5,0,72,137,194,72,141,53,28,255,255,255,72,141,5,221,133, 10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,142,152,5,0,72,141,61,172,203,7,0,232,229,162,5,0,72,137,194,72,141,53,131,254,255,255,72,141,5,174,133,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,95,152,5,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236, 32,243,15,17,69,236,243,15,17,77,232,72,141,5,68,133,10,0,72,139,56,232,168,217,5,0,72,137,69,248,72,139,117,248,72,139,125,248,72,141,13,193,47,10,0,72,141,21,186,47,10,0,232,184,190,5,0,72,139,117,248,72,139,125,248,72,141,13,166,47,10,0,72,141,21, 159,47,10,0,232,157,190,5,0,72,137,199,243,15,16,69,236,232,52,226,5,0,72,139,117,248,72,139,125,248,72,141,13,126,47,10,0,72,141,21,119,47,10,0,232,117,190,5,0,72,137,199,243,15,16,69,232,232,12,226,5,0,72,139,125,248,72,141,53,90,47,10,0,232,87,202, 5,0,72,139,125,248,72,141,53,74,47,10,0,232,71,202,5,0,72,139,85,248,184,0,0,0,0,137,66,56,72,139,69,248,139,80,56,72,139,69,248,137,80,52,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,137,125,152,72,139,69,152,72,131,192, 8,72,139,0,72,137,69,208,72,139,69,152,72,131,192,16,72,139,0,72,137,69,200,72,139,69,152,72,131,192,24,72,139,0,72,137,69,192,72,139,69,152,72,131,192,32,72,139,0,72,137,69,184,72,139,69,152,72,131,192,40,72,139,0,72,137,69,176,72,139,69,152,72,131, 192,48,72,139,0,72,137,69,168,72,139,69,152,72,131,192,56,72,139,0,72,137,69,160,72,139,69,152,72,131,192,64,72,139,0,137,69,252,72,139,69,160,139,64,52,137,69,244,72,139,69,160,139,64,56,137,69,240,199,69,248,0,0,0,0,233,179,0,0,0,72,139,69,208,139, 0,137,69,236,72,131,69,208,4,72,139,69,200,139,0,137,69,232,72,131,69,200,4,72,139,69,192,139,0,137,69,228,72,131,69,192,4,72,139,69,184,139,0,137,69,224,72,131,69,184,4,243,15,16,69,244,243,15,89,69,228,15,40,200,243,15,88,77,236,243,15,16,69,240,243, 15,89,69,224,15,40,209,243,15,92,208,15,40,194,72,139,69,176,243,15,17,0,72,139,69,176,139,0,137,69,220,72,131,69,176,4,243,15,16,69,244,243,15,89,69,224,15,40,200,243,15,88,77,232,243,15,16,69,240,243,15,89,69,228,243,15,88,193,72,139,69,168,243,15, 17,0,72,139,69,168,139,0,137,69,240,72,131,69,168,4,139,69,220,137,69,244,255,69,248,139,69,248,59,69,252,15,140,65,255,255,255,72,141,69,244,139,0,37,0,0,0,96,133,192,116,18,72,141,69,244,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,244,72, 141,69,240,139,0,37,0,0,0,96,133,192,116,18,72,141,69,240,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,240,139,85,244,72,139,69,160,137,80,52,139,85,240,72,139,69,160,137,80,56,72,139,69,152,72,131,192,72,201,195,85,72,137,229,72,131,236,48, 72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,40,72,139,0,72,139,112,8,72,139,69,240,72,131,192,32,72,139,0,72,139,120,8,72,139,69,240,72,131,192,24,72,139,0,76,139,64,8,72,139,69,240,72,131,192,16,72,139,0,76,139, 80,8,72,139,69,240,72,131,192,8,72,139,0,76,139,88,8,72,139,69,240,72,139,0,72,139,80,8,137,76,36,24,72,139,69,248,72,137,68,36,16,72,137,116,36,8,72,137,60,36,77,137,193,77,137,208,76,137,217,190,8,0,0,0,72,141,61,152,253,255,255,184,0,0,0,0,232,225, 212,0,0,201,195,85,72,137,229,72,137,125,248,72,139,85,248,184,0,0,0,0,137,66,56,72,139,69,248,139,80,56,72,139,69,248,137,80,52,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,243,15,17,77,240,72,139,85,248,139,69,244,137,66,52,72,139,85,248,139, 69,240,137,66,56,201,195,85,72,137,229,83,72,131,236,24,72,141,29,84,252,255,255,72,141,61,139,192,7,0,232,3,159,5,0,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,46, 141,5,0,72,137,194,72,141,5,102,129,10,0,72,137,16,72,141,5,92,129,10,0,72,139,56,190,48,0,0,0,232,33,156,5,0,72,141,61,136,201,7,0,232,161,158,5,0,72,137,194,72,141,53,80,255,255,255,72,141,5,50,129,10,0,72,139,56,65,185,0,0,0,0,65,184,6,0,0,0,185,6, 0,0,0,184,0,0,0,0,232,15,148,5,0,72,141,61,173,69,8,0,232,102,158,5,0,72,137,194,72,141,53,241,254,255,255,72,141,5,247,128,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,224,147,5,0,72,141,61,254,198,7,0,232,55,158,5,0,72,137,194,72,141,53,28,254,255,255, 72,141,5,200,128,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,177,147,5,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,243,15,17,77,232,72,141,5,158,128,10,0,72,139,56,232,250,212,5,0,72,137,69,248,72,139,117,248,72,139,125,248, 72,141,13,19,43,10,0,72,141,21,12,43,10,0,232,10,186,5,0,72,139,117,248,72,139,125,248,72,141,13,248,42,10,0,72,141,21,241,42,10,0,232,239,185,5,0,72,137,199,243,15,16,69,236,232,134,221,5,0,72,139,117,248,72,139,125,248,72,141,13,208,42,10,0,72,141, 21,201,42,10,0,232,199,185,5,0,72,137,199,243,15,16,69,232,232,94,221,5,0,72,139,125,248,72,141,53,172,42,10,0,232,169,197,5,0,72,139,125,248,72,141,53,156,42,10,0,232,153,197,5,0,72,139,85,248,184,0,0,0,0,137,66,56,72,139,69,248,139,80,56,72,139,69, 248,137,80,52,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,137,125,152,72,139,69,152,72,131,192,8,72,139,0,72,137,69,216,72,139,69,152,72,131,192,16,72,139,0,72,137,69,208,72,139,69,152,72,131,192,24,72,139,0,72,137,69,200, 72,139,69,152,72,131,192,32,72,139,0,72,137,69,192,72,139,69,152,72,131,192,40,72,139,0,72,137,69,184,72,139,69,152,72,131,192,48,72,139,0,72,137,69,176,72,139,69,152,72,131,192,56,72,139,0,72,137,69,168,72,139,69,152,72,131,192,64,72,139,0,137,69,252, 72,139,69,168,139,64,52,137,69,244,72,139,69,168,139,64,56,137,69,240,199,69,248,0,0,0,0,233,187,0,0,0,72,139,69,216,139,0,137,69,236,72,131,69,216,4,72,139,69,208,139,0,137,69,232,72,131,69,208,4,72,139,69,200,139,0,137,69,228,72,131,69,200,4,72,139, 69,192,139,0,137,69,224,72,131,69,192,4,243,15,16,69,244,15,40,200,243,15,89,77,228,243,15,16,69,236,15,40,208,243,15,92,209,15,40,202,243,15,16,69,240,243,15,89,69,224,243,15,88,193,72,139,69,184,243,15,17,0,72,131,69,184,4,243,15,16,69,244,15,40,200, 243,15,89,77,224,243,15,16,69,232,15,40,208,243,15,92,209,15,40,202,243,15,16,69,240,243,15,89,69,228,15,40,209,243,15,92,208,15,40,194,72,139,69,176,243,15,17,0,72,131,69,176,4,139,69,236,137,69,244,139,69,232,137,69,240,255,69,248,139,69,248,59,69, 252,15,140,57,255,255,255,72,139,85,168,139,69,244,137,66,52,72,139,85,168,139,69,240,137,66,56,72,139,69,152,72,131,192,72,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,40,72, 139,0,72,139,112,8,72,139,69,240,72,131,192,32,72,139,0,72,139,120,8,72,139,69,240,72,131,192,24,72,139,0,76,139,64,8,72,139,69,240,72,131,192,16,72,139,0,76,139,80,8,72,139,69,240,72,131,192,8,72,139,0,76,139,88,8,72,139,69,240,72,139,0,72,139,80,8, 137,76,36,24,72,139,69,248,72,137,68,36,16,72,137,116,36,8,72,137,60,36,77,137,193,77,137,208,76,137,217,190,8,0,0,0,72,141,61,226,253,255,255,184,0,0,0,0,232,125,208,0,0,201,195,85,72,137,229,72,137,125,248,72,139,85,248,184,0,0,0,0,137,66,56,72,139, 69,248,139,80,56,72,139,69,248,137,80,52,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,243,15,17,77,240,72,139,85,248,139,69,244,137,66,52,72,139,85,248,139,69,240,137,66,56,201,195,85,72,137,229,83,72,131,236,24,72,141,29,158,252,255,255,72, 141,61,46,188,7,0,232,159,154,5,0,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,202,136,5,0,72,137,194,72,141,5,10,125,10,0,72,137,16,72,141,5,0,125,10,0,72,139,56,190, 48,0,0,0,232,189,151,5,0,72,141,61,36,197,7,0,232,61,154,5,0,72,137,194,72,141,53,80,255,255,255,72,141,5,214,124,10,0,72,139,56,65,185,0,0,0,0,65,184,6,0,0,0,185,6,0,0,0,184,0,0,0,0,232,171,143,5,0,72,141,61,73,65,8,0,232,2,154,5,0,72,137,194,72,141, 53,241,254,255,255,72,141,5,155,124,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,124,143,5,0,72,141,61,154,194,7,0,232,211,153,5,0,72,137,194,72,141,53,28,254,255,255,72,141,5,108,124,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,77,143,5,0,72,131,196,24, 91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,243,15,17,77,232,72,141,5,66,124,10,0,72,139,56,232,150,208,5,0,72,137,69,248,72,139,117,248,72,139,125,248,72,141,13,175,38,10,0,72,141,21,168,38,10,0,232,166,181,5,0,72,139,117,248,72,139,125, 248,72,141,13,148,38,10,0,72,141,21,141,38,10,0,232,139,181,5,0,72,137,199,243,15,16,69,236,232,34,217,5,0,72,139,117,248,72,139,125,248,72,141,13,108,38,10,0,72,141,21,101,38,10,0,232,99,181,5,0,72,137,199,243,15,16,69,232,232,250,216,5,0,72,139,125, 248,72,141,53,72,38,10,0,232,69,193,5,0,72,139,125,248,72,141,53,56,38,10,0,232,53,193,5,0,72,139,85,248,184,0,0,0,0,137,66,56,72,139,69,248,139,80,56,72,139,69,248,137,80,52,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72, 137,125,152,72,139,69,152,72,131,192,8,72,139,0,72,137,69,216,72,139,69,152,72,131,192,16,72,139,0,72,137,69,208,72,139,69,152,72,131,192,24,72,139,0,72,137,69,200,72,139,69,152,72,131,192,32,72,139,0,72,137,69,192,72,139,69,152,72,131,192,40,72,139, 0,72,137,69,184,72,139,69,152,72,131,192,48,72,139,0,72,137,69,176,72,139,69,152,72,131,192,56,72,139,0,72,137,69,168,72,139,69,152,72,131,192,64,72,139,0,137,69,252,72,139,69,168,139,64,52,137,69,244,72,139,69,168,139,64,56,137,69,240,199,69,248,0,0, 0,0,233,187,0,0,0,72,139,69,216,139,0,137,69,236,72,131,69,216,4,72,139,69,208,139,0,137,69,232,72,131,69,208,4,72,139,69,200,139,0,137,69,228,72,131,69,200,4,72,139,69,192,139,0,137,69,224,72,131,69,192,4,243,15,16,69,236,15,40,200,243,15,89,77,228, 243,15,16,69,244,15,40,208,243,15,92,209,15,40,202,243,15,16,69,232,243,15,89,69,224,15,40,209,243,15,92,208,15,40,194,72,139,69,184,243,15,17,0,72,131,69,184,4,243,15,16,69,236,15,40,200,243,15,89,77,224,243,15,16,69,240,15,40,208,243,15,92,209,15,40, 202,243,15,16,69,232,243,15,89,69,228,243,15,88,193,72,139,69,176,243,15,17,0,72,131,69,176,4,139,69,236,137,69,244,139,69,232,137,69,240,255,69,248,139,69,248,59,69,252,15,140,57,255,255,255,72,139,85,168,139,69,244,137,66,52,72,139,85,168,139,69,240, 137,66,56,72,139,69,152,72,131,192,72,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,40,72,139,0,72,139,112,8,72,139,69,240,72,131,192,32,72,139,0,72,139,120,8,72,139,69,240,72, 131,192,24,72,139,0,76,139,64,8,72,139,69,240,72,131,192,16,72,139,0,76,139,80,8,72,139,69,240,72,131,192,8,72,139,0,76,139,88,8,72,139,69,240,72,139,0,72,139,80,8,137,76,36,24,72,139,69,248,72,137,68,36,16,72,137,116,36,8,72,137,60,36,77,137,193,77, 137,208,76,137,217,190,8,0,0,0,72,141,61,226,253,255,255,184,0,0,0,0,232,25,204,0,0,201,195,85,72,137,229,72,137,125,248,72,139,85,248,184,0,0,0,0,137,66,56,72,139,69,248,139,80,56,72,139,69,248,137,80,52,201,195,85,72,137,229,72,137,125,248,243,15,17, 69,244,243,15,17,77,240,72,139,85,248,139,69,244,137,66,52,72,139,85,248,139,69,240,137,66,56,201,195,85,72,137,229,83,72,131,236,24,72,141,29,158,252,255,255,72,141,61,209,183,7,0,232,59,150,5,0,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185, 6,0,0,0,65,184,0,0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,102,132,5,0,72,137,194,72,141,5,174,120,10,0,72,137,16,72,141,5,164,120,10,0,72,139,56,190,48,0,0,0,232,89,147,5,0,72,141,61,192,192,7,0,232,217,149,5,0,72,137,194,72,141,53,80, 255,255,255,72,141,5,122,120,10,0,72,139,56,65,185,0,0,0,0,65,184,6,0,0,0,185,6,0,0,0,184,0,0,0,0,232,71,139,5,0,72,141,61,229,60,8,0,232,158,149,5,0,72,137,194,72,141,53,241,254,255,255,72,141,5,63,120,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,24,139, 5,0,72,141,61,54,190,7,0,232,111,149,5,0,72,137,194,72,141,53,28,254,255,255,72,141,5,16,120,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,233,138,5,0,72,131,196,24,91,201,195,85,72,137,229,232,237,213,255,255,232,223,217,255,255,232,79,224,255,255,232, 173,229,255,255,232,229,232,255,255,232,196,235,255,255,232,143,238,255,255,232,90,241,255,255,232,245,245,255,255,232,84,250,255,255,232,179,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,167,50,10,0,232,254,203,5,0,72,137, 69,248,72,139,125,248,72,139,117,232,232,172,207,5,0,72,139,85,248,72,139,69,232,72,137,66,48,72,139,69,248,199,64,56,64,0,0,0,191,0,1,0,0,232,221,174,5,0,72,137,194,72,139,69,248,72,137,80,64,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,193, 255,255,255,255,72,139,69,248,72,139,120,64,186,0,1,0,0,190,0,0,0,0,232,78,173,7,0,235,23,72,139,69,248,72,139,120,64,186,0,1,0,0,190,0,0,0,0,232,18,0,0,0,72,139,85,248,184,0,0,0,0,137,66,72,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125, 248,137,117,244,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,139,117,244,72,139,125,248,232,249,172,7,0,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232, 72,139,69,216,72,131,192,24,72,139,0,137,69,252,235,79,72,139,69,240,139,0,37,0,0,0,96,133,192,116,33,72,139,69,240,139,0,37,0,0,0,96,61,0,0,0,96,116,15,72,139,69,240,243,15,16,0,243,15,17,69,212,235,8,15,87,192,243,15,17,69,212,72,139,69,232,243,15, 16,69,212,243,15,17,0,72,131,69,232,4,72,131,69,240,4,255,77,252,131,125,252,255,117,168,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,139,80,56,72,139,69,240,72,139,0,139,0,57,194,117,55, 72,139,69,240,72,139,0,139,48,72,139,69,248,72,139,72,64,72,139,69,240,72,139,0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,25,255,255,255,184,0,0,0,0,232,180,200,0,0,235,28,72,139,69,248,72,139,64,48,72,139,48,72,141,61,206,180,7,0,184,0,0,0,0,232, 140,138,6,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,112,48,72,139,125,248,232,212,206,5,0,72,139,69,248,139,64,56,72,152,72,141,52,133,0,0,0,0,72,139,69,248,72,139,120,64,232,248,174,5,0,201,195,85,72,137,229,65,84,83, 72,131,236,16,72,141,29,177,255,255,255,76,141,37,194,253,255,255,72,141,61,136,180,7,0,232,190,146,5,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,80,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,243,128,5,0,72,137,5,62,48,10,0,72,141, 61,80,180,7,0,232,128,146,5,0,72,137,198,72,141,61,110,253,255,255,185,0,0,0,0,186,7,0,0,0,184,0,0,0,0,232,241,133,5,0,72,139,61,13,48,10,0,190,72,0,0,0,232,197,143,5,0,72,141,61,12,187,7,0,232,69,146,5,0,72,141,53,165,254,255,255,72,139,61,233,47,10, 0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,194,135,5,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,195,47,10,0,232,18,201,5,0,72,137,69,248,72,139,69,248,199,64,64,64,0,0,0,72,139,85,248,72,139,69,232,72,137,66,48, 72,139,69,248,72,199,64,56,0,0,0,0,72,139,125,248,72,141,53,12,31,10,0,232,9,186,5,0,72,139,69,248,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216, 72,131,192,24,72,139,0,137,69,252,72,139,69,240,72,139,64,56,72,137,69,224,72,131,125,224,0,116,51,235,22,72,139,69,224,139,16,72,139,69,232,137,16,72,131,69,232,4,72,131,69,224,4,255,77,252,131,125,252,255,117,225,235,25,72,139,85,232,184,0,0,0,0,137, 2,72,131,69,232,4,255,77,252,131,125,252,255,117,231,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72, 139,0,137,69,252,72,139,69,240,72,139,64,56,72,137,69,224,72,131,125,224,0,15,132,60,1,0,0,233,166,0,0,0,72,139,69,224,139,16,72,139,69,232,137,16,72,139,85,232,72,131,194,4,72,139,69,224,72,131,192,4,139,0,137,2,72,139,85,232,72,131,194,8,72,139,69, 224,72,131,192,8,139,0,137,2,72,139,85,232,72,131,194,12,72,139,69,224,72,131,192,12,139,0,137,2,72,139,85,232,72,131,194,16,72,139,69,224,72,131,192,16,139,0,137,2,72,139,85,232,72,131,194,20,72,139,69,224,72,131,192,20,139,0,137,2,72,139,85,232,72, 131,194,24,72,139,69,224,72,131,192,24,139,0,137,2,72,139,85,232,72,131,194,28,72,139,69,224,72,131,192,28,139,0,137,2,131,109,252,8,72,131,69,224,32,72,131,69,232,32,131,125,252,0,15,133,80,255,255,255,233,140,0,0,0,72,139,85,232,184,0,0,0,0,137,2,72, 139,85,232,72,131,194,4,184,0,0,0,0,137,2,72,139,85,232,72,131,194,8,184,0,0,0,0,137,2,72,139,85,232,72,131,194,12,184,0,0,0,0,137,2,72,139,85,232,72,131,194,16,184,0,0,0,0,137,2,72,139,85,232,72,131,194,20,184,0,0,0,0,137,2,72,139,85,232,72,131,194, 24,184,0,0,0,0,137,2,72,139,85,232,72,131,194,28,184,0,0,0,0,137,2,131,109,252,8,72,131,69,224,32,72,131,69,232,32,131,125,252,0,15,133,116,255,255,255,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139, 53,58,45,10,0,72,139,85,232,72,139,69,224,72,137,66,48,72,139,69,232,72,139,120,48,232,155,204,5,0,72,137,69,248,72,131,125,248,0,116,82,72,139,69,248,139,80,56,72,139,69,232,139,64,64,57,194,117,18,72,139,69,248,72,139,80,64,72,139,69,232,72,137,80, 56,235,90,72,139,69,232,72,139,64,48,72,139,16,72,139,125,232,72,141,53,252,176,7,0,184,0,0,0,0,232,242,136,6,0,72,139,69,232,72,199,64,56,0,0,0,0,235,44,72,139,69,232,72,139,64,48,72,139,16,72,139,125,232,72,141,53,240,176,7,0,184,0,0,0,0,232,196,136, 6,0,72,139,69,232,72,199,64,56,0,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,16,72,139,69,248,139,64,64,57,194,116,37,72,139,69,248,72,139,64,48,72,139,16,72,139,125,248,72,141,53,124,176,7,0,184, 0,0,0,0,232,114,136,6,0,233,133,0,0,0,72,139,69,248,72,139,112,48,72,139,125,248,232,235,254,255,255,72,139,69,240,72,139,0,139,0,131,224,7,133,192,116,51,72,139,69,240,72,139,0,139,48,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,240,190,3, 0,0,0,72,141,61,140,252,255,255,184,0,0,0,0,232,189,195,0,0,235,49,72,139,69,240,72,139,0,139,48,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,240,190,3,0,0,0,72,141,61,230,252,255,255,184,0,0,0,0,232,138,195,0,0,201,195,85,72,137,229,83,72, 131,236,24,72,141,29,232,251,255,255,72,141,61,15,176,7,0,232,248,141,5,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,72,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,43,124,5,0,72,137,5,126,43,10,0,72,141,61,216,175,7,0,232,184,141, 5,0,72,137,198,72,141,61,146,251,255,255,185,0,0,0,0,186,7,0,0,0,184,0,0,0,0,232,41,129,5,0,72,141,61,117,184,7,0,232,142,141,5,0,72,141,53,232,253,255,255,72,139,61,58,43,10,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,5,131,5,0,72,141,61, 35,182,7,0,232,92,141,5,0,72,141,53,113,254,255,255,72,139,61,8,43,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,217,130,5,0,72,141,61,250,174,7,0,232,48,141,5,0,72,137,198,72,139,61,224,42,10,0,232,212,137,5,0,72,131,196,24,91,201,195,85,72,137,229,72, 131,236,32,72,137,125,232,72,139,61,201,42,10,0,232,16,196,5,0,72,137,69,248,72,139,125,248,72,139,117,232,232,190,199,5,0,72,139,85,248,72,139,69,232,72,137,66,48,72,139,69,248,199,64,56,64,0,0,0,191,0,1,0,0,232,239,166,5,0,72,137,194,72,139,69,248, 72,137,80,64,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,193,255,255,255,255,72,139,69,248,72,139,120,64,186,0,1,0,0,190,0,0,0,0,232,96,165,7,0,235,23,72,139,69,248,72,139,120,64,186,0,1,0,0,190,0,0,0,0,232,36,248,255,255,72,139,125,248,72, 141,53,176,25,10,0,232,173,180,5,0,72,139,69,248,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,235,33,72,139,69, 240,139,16,72,139,69,232,137,16,72,131,69,232,4,72,139,85,240,184,0,0,0,0,137,2,72,131,69,240,4,255,77,252,131,125,252,255,117,214,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139, 69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,233,26,1,0,0,72,139,69,240,139,16,72,139,69,232,137,16,72,139,85,232,72,131,194,4,72,139,69,240,72,131,192,4,139,0,137,2,72,139,85,232,72,131,194,8,72,139,69, 240,72,131,192,8,139,0,137,2,72,139,85,232,72,131,194,12,72,139,69,240,72,131,192,12,139,0,137,2,72,139,85,232,72,131,194,16,72,139,69,240,72,131,192,16,139,0,137,2,72,139,85,232,72,131,194,20,72,139,69,240,72,131,192,20,139,0,137,2,72,139,85,232,72, 131,194,24,72,139,69,240,72,131,192,24,139,0,137,2,72,139,85,232,72,131,194,28,72,139,69,240,72,131,192,28,139,0,137,2,72,139,85,240,184,0,0,0,0,137,2,72,139,85,240,72,131,194,4,184,0,0,0,0,137,2,72,139,85,240,72,131,194,8,184,0,0,0,0,137,2,72,139,85, 240,72,131,194,12,184,0,0,0,0,137,2,72,139,85,240,72,131,194,16,184,0,0,0,0,137,2,72,139,85,240,72,131,194,20,184,0,0,0,0,137,2,72,139,85,240,72,131,194,24,184,0,0,0,0,137,2,72,139,85,240,72,131,194,28,184,0,0,0,0,137,2,131,109,252,8,72,131,69,240,32, 72,131,69,232,32,131,125,252,0,15,133,220,254,255,255,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,139,80,56,72,139,69,240,72,139,0,139,0,57,194,117,126,72,139,69,240,72,139,0,139,0,131,224, 7,133,192,116,55,72,139,69,240,72,139,0,139,48,72,139,69,240,72,139,0,72,139,72,8,72,139,69,248,72,139,80,64,65,137,240,190,3,0,0,0,72,141,61,208,253,255,255,184,0,0,0,0,232,165,191,0,0,235,83,72,139,69,240,72,139,0,139,48,72,139,69,240,72,139,0,72,139, 72,8,72,139,69,248,72,139,80,64,65,137,240,190,3,0,0,0,72,141,61,3,254,255,255,184,0,0,0,0,232,110,191,0,0,235,28,72,139,69,248,72,139,64,48,72,139,48,72,141,61,8,172,7,0,184,0,0,0,0,232,70,129,6,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72, 139,69,248,72,139,112,48,72,139,125,248,232,142,197,5,0,72,139,69,248,139,64,56,72,152,72,141,52,133,0,0,0,0,72,139,69,248,72,139,120,64,232,178,165,5,0,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,177,255,255,255,76,141,37,106,252,255,255, 72,141,61,195,171,7,0,232,120,137,5,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,8,0,0,0,185,72,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,173,119,5,0,72,137,5,8,39,10,0,72,141,61,1,178,7,0,232,58,137,5,0,72,141,53,153,254,255,255,72,139,61,238, 38,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,183,126,5,0,72,141,61,96,171,7,0,232,14,137,5,0,72,137,198,72,139,61,198,38,10,0,232,178,133,5,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,173,38,10,0,232,236,191, 5,0,72,137,69,248,72,139,85,248,72,139,69,232,72,137,66,48,72,139,69,248,72,199,64,56,0,0,0,0,72,139,69,248,199,64,64,64,0,0,0,72,139,85,248,184,0,0,0,0,137,66,68,72,139,69,248,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0, 72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,72,139,69,240,72,139,64,56,72,137,69,224,72,131,125,224,0,116,108,235,97,72,139,69,224,243,15,16,0,243,15,17,69,208,72,139,69,232,139,0,37, 0,0,0,96,133,192,116,33,72,139,69,232,139,0,37,0,0,0,96,61,0,0,0,96,116,15,72,139,69,232,243,15,16,0,243,15,17,69,212,235,8,15,87,192,243,15,17,69,212,243,15,16,69,208,243,15,88,69,212,72,139,69,224,243,15,17,0,72,131,69,224,4,72,131,69,232,4,255,77, 252,131,125,252,255,117,150,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,53,147,37,10,0,72,139,85,232,72,139,69,224,72,137,66,48,72,139,69,232,72,139,120,48,232,228,196,5,0,72,137,69,248,72,131, 125,248,0,116,82,72,139,69,248,139,80,56,72,139,69,232,139,64,64,57,194,117,18,72,139,69,248,72,139,80,64,72,139,69,232,72,137,80,56,235,90,72,139,69,232,72,139,64,48,72,139,16,72,139,125,232,72,141,53,205,169,7,0,184,0,0,0,0,232,59,129,6,0,72,139,69, 232,72,199,64,56,0,0,0,0,235,44,72,139,69,232,72,139,64,48,72,139,16,72,139,125,232,72,141,53,191,169,7,0,184,0,0,0,0,232,13,129,6,0,72,139,69,232,72,199,64,56,0,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72, 139,0,139,16,72,139,69,248,139,64,64,57,194,116,34,72,139,69,248,72,139,64,48,72,139,16,72,139,125,248,72,141,53,77,169,7,0,184,0,0,0,0,232,187,128,6,0,235,66,72,139,69,248,72,139,112,48,72,139,125,248,232,238,254,255,255,72,139,69,240,72,139,0,139,48, 72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,240,190,3,0,0,0,72,141,61,10,254,255,255,184,0,0,0,0,232,25,188,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,157,253,255,255,72,141,61,217,168,7,0,232,135,134,5,0,72,137,199,199,4,36,0,0, 0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,72,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,186,116,5,0,72,137,5,29,36,10,0,72,141,61,46,177,7,0,232,71,134,5,0,72,141,53,88,254,255,255,72,139,61,3,36,10,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232, 190,123,5,0,72,139,61,228,35,10,0,190,68,0,0,0,232,132,131,5,0,72,141,61,203,174,7,0,232,4,134,5,0,72,141,53,208,254,255,255,72,139,61,192,35,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,129,123,5,0,72,131,196,24,91,201,195,85,72,137,229,232,241,242,255, 255,232,187,247,255,255,232,45,252,255,255,232,34,255,255,255,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,243,15,17,77,232,72,139,61,148,35,10,0,232,179,188,5,0,72,137,69,248,72,139,85,248,139,69,236,137,66,52,72,139,85,248,139,69,232,137,66, 56,72,141,61,128,173,7,0,232,129,133,5,0,72,137,198,72,139,125,248,232,177,173,5,0,72,139,117,248,72,131,198,52,72,139,125,248,232,45,169,5,0,72,139,117,248,72,131,198,56,72,139,125,248,232,28,169,5,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248, 201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,72,139,69,216,72,131,192,32,72,139,0,137,69,252,235,86,72,139, 69,232,139,0,137,69,248,72,131,69,232,4,72,139,69,240,243,15,16,64,52,15,46,69,248,119,2,235,10,72,139,69,240,139,64,52,137,69,248,72,139,69,240,243,15,16,72,56,243,15,16,69,248,15,46,193,119,2,235,10,72,139,69,240,139,64,56,137,69,248,72,139,85,224, 139,69,248,137,2,72,131,69,224,4,255,77,252,131,125,252,255,117,161,72,139,69,216,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69, 240,72,139,0,72,139,72,8,72,139,85,248,65,137,241,73,137,248,190,4,0,0,0,72,141,61,9,255,255,255,184,0,0,0,0,232,180,185,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,107,254,255,255,72,141,61,190,166,7,0,232,34,132,5,0,72,137,199,199,68,36,8, 0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,77,114,5,0,72,137,5,208,33,10,0,72,139,61,201,33,10,0,190,48,0,0,0,232,73,129,5,0,72,141,61,144,172,7,0,232,201,131,5,0,72,141,53,47,255,255,255, 72,139,61,165,33,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,70,121,5,0,72,131,196,24,91,201,195,85,72,137,229,199,69,252,0,0,0,0,233,129,0,0,0,131,125,252,0,116,37,129,125,252,255,0,0,0,116,13,139,69,252,137,194,193,226,23,137,85,236,235,7,199,69,236, 0,0,0,127,139,69,236,137,69,232,235,7,199,69,232,0,0,128,0,139,85,232,137,85,244,72,141,85,248,139,69,244,137,2,139,69,252,243,15,16,69,248,243,15,90,192,242,15,81,192,102,15,40,200,242,15,16,5,103,43,8,0,242,15,94,193,242,15,90,192,72,152,72,141,20, 133,0,0,0,0,72,141,5,38,33,10,0,72,141,4,2,243,15,17,0,255,69,252,129,125,252,255,0,0,0,15,142,114,255,255,255,199,69,252,0,0,0,0,235,98,242,15,42,77,252,242,15,16,5,8,44,8,0,242,15,89,200,242,15,16,5,20,43,8,0,242,15,88,193,242,15,90,192,243,15,17,69, 240,139,69,252,243,15,90,69,240,242,15,81,192,102,15,40,200,242,15,16,5,239,42,8,0,242,15,94,193,242,15,90,192,72,152,72,141,20,133,0,0,0,0,72,141,5,174,36,10,0,72,141,4,2,243,15,17,0,255,69,252,129,125,252,255,3,0,0,126,149,201,195,85,72,137,229,243, 15,17,69,236,139,69,236,137,69,252,72,141,69,252,72,139,0,72,137,69,240,243,15,16,77,252,15,87,192,15,46,193,119,2,235,10,15,87,192,243,15,17,69,232,235,84,72,139,69,240,72,193,248,23,37,255,0,0,0,72,141,20,133,0,0,0,0,72,141,5,73,32,10,0,72,141,4,2, 243,15,16,8,72,139,69,240,72,193,248,13,37,255,3,0,0,72,141,20,133,0,0,0,0,72,141,5,37,36,10,0,72,141,4,2,243,15,16,0,15,40,209,243,15,89,208,243,15,17,85,232,243,15,16,69,232,201,195,85,72,137,229,243,15,17,69,236,139,69,236,137,69,252,72,141,69,252, 72,139,0,72,137,69,240,243,15,16,77,252,15,87,192,15,46,193,119,2,235,10,15,87,192,243,15,17,69,232,235,93,72,139,69,240,72,193,248,23,37,255,0,0,0,72,141,20,133,0,0,0,0,72,141,5,187,31,10,0,72,141,4,2,243,15,16,8,243,15,16,69,252,243,15,89,200,72,139, 69,240,72,193,248,13,37,255,3,0,0,72,141,20,133,0,0,0,0,72,141,5,142,35,10,0,72,141,4,2,243,15,16,0,15,40,209,243,15,89,208,243,15,17,85,232,243,15,16,69,232,201,195,85,72,137,229,72,131,236,32,243,15,17,69,252,243,15,16,69,252,232,82,255,255,255,243, 15,17,69,236,139,69,236,137,69,236,243,15,16,69,236,201,195,85,72,137,229,72,131,236,32,243,15,17,69,252,243,15,16,69,252,232,155,254,255,255,243,15,17,69,236,139,69,236,137,69,236,243,15,16,69,236,201,195,85,72,137,229,72,131,236,16,72,139,61,18,51, 10,0,232,17,184,5,0,72,137,69,248,72,141,61,242,168,7,0,232,243,128,5,0,72,137,198,72,139,125,248,232,35,169,5,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,240, 72,139,69,200,72,131,192,16,72,139,0,72,137,69,232,72,139,69,200,72,131,192,24,72,139,0,72,137,69,224,233,224,0,0,0,72,139,69,240,139,0,137,69,252,72,139,69,240,72,139,0,72,137,69,216,72,131,69,240,4,15,87,192,15,46,69,252,119,2,235,21,72,139,85,232, 184,0,0,0,0,137,2,72,131,69,232,4,233,167,0,0,0,72,139,69,216,72,193,248,23,37,255,0,0,0,72,141,20,133,0,0,0,0,72,141,5,80,30,10,0,72,141,4,2,243,15,16,8,72,139,69,216,72,193,248,13,37,255,3,0,0,72,141,20,133,0,0,0,0,72,141,5,44,34,10,0,72,141,4,2,243, 15,16,0,243,15,89,193,243,15,17,69,248,243,15,90,77,248,242,15,16,5,38,41,8,0,102,15,40,209,242,15,89,208,243,15,90,77,248,242,15,16,5,225,40,8,0,242,15,89,200,243,15,90,69,248,242,15,89,200,243,15,90,69,248,242,15,89,200,243,15,90,69,252,242,15,89,193, 242,15,88,194,242,15,90,192,72,139,69,232,243,15,17,0,72,131,69,232,4,72,255,77,224,72,131,125,224,255,15,133,17,255,255,255,72,139,69,200,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72, 139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,139,254,255,255,184,0,0,0,0,232,202,180,0,0,201,195,85,72,137,229,232,169,251,255,255,72,141,61,225,161,7,0,232,63,127,5,0,72,137,199,65, 185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,8,254,255,255,184,0,0,0,0,232,117,109,5,0,72,137,5,24,49,10,0,72,141,61,171,161,7,0,232,2,127,5,0,72,137,198,186,0,0,0,0,72,141,61,220,253,255,255,184,0,0,0,0,232,120,114,5,0,72,139,61,236, 48,10,0,190,48,0,0,0,232,76,124,5,0,72,141,61,147,167,7,0,232,204,126,5,0,72,141,53,35,255,255,255,72,139,61,200,48,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,73,116,5,0,201,195,85,72,137,229,72,131,236,16,72,139,61,173,48,10,0,232,164,181,5,0,72,137, 69,248,72,141,61,133,166,7,0,232,134,126,5,0,72,137,198,72,139,125,248,232,182,166,5,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,240,72,139,69,200,72,131,192,16, 72,139,0,72,137,69,232,72,139,69,200,72,131,192,24,72,139,0,72,137,69,224,233,233,0,0,0,72,139,69,240,139,0,137,69,252,72,139,69,240,72,139,0,72,137,69,216,72,131,69,240,4,15,87,192,15,46,69,252,119,2,235,21,72,139,85,232,184,0,0,0,0,137,2,72,131,69, 232,4,233,176,0,0,0,72,139,69,216,72,193,248,23,37,255,0,0,0,72,141,20,133,0,0,0,0,72,141,5,227,27,10,0,72,141,4,2,243,15,16,8,72,139,69,216,72,193,248,13,37,255,3,0,0,72,141,20,133,0,0,0,0,72,141,5,191,31,10,0,72,141,4,2,243,15,16,0,243,15,89,193,243, 15,17,69,248,243,15,90,93,252,243,15,90,77,248,242,15,16,5,180,38,8,0,102,15,40,209,242,15,89,208,243,15,90,77,248,242,15,16,5,111,38,8,0,242,15,89,200,243,15,90,69,248,242,15,89,200,243,15,90,69,248,242,15,89,200,243,15,90,69,252,242,15,89,193,242,15, 88,194,242,15,89,195,242,15,90,192,72,139,69,232,243,15,17,0,72,131,69,232,4,72,255,77,224,72,131,125,224,255,15,133,8,255,255,255,72,139,69,200,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139, 48,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,130,254,255,255,184,0,0,0,0,232,84,178,0,0,201,195,85,72,137,229,72,141,61,129,159,7,0,232,206,124,5,0,72,137,199,65,185,0,0,0,0,65, 184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,4,254,255,255,184,0,0,0,0,232,4,107,5,0,72,137,5,175,46,10,0,72,141,61,74,159,7,0,232,145,124,5,0,72,137,198,186,0,0,0,0,72,141,61,216,253,255,255,184,0,0,0,0,232,7,112,5,0,72,139,61,131,46,10,0,190,48,0, 0,0,232,219,121,5,0,72,141,61,34,165,7,0,232,91,124,5,0,72,141,53,40,255,255,255,72,139,61,95,46,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,216,113,5,0,201,195,85,72,137,229,72,131,236,16,72,141,5,68,95,10,0,72,139,56,232,48,179,5,0,72,137,69,248,72, 141,61,17,164,7,0,232,18,124,5,0,72,137,198,72,139,125,248,232,66,164,5,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72, 137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,235,101,72,139,69,240,139,0,137,69,252,72,131,69,240,4,243,15,16,69,252,243,15,44,192,137,69,248,15,87,201,243,15,16,69,252,15,46,193,119,2,235,29,243,15,42,77,248,243,15,16,69,252,243,15, 92,193,72,139,69,232,243,15,17,0,72,131,69,232,4,235,31,139,69,248,255,200,243,15,42,200,243,15,16,69,252,243,15,92,193,72,139,69,232,243,15,17,0,72,131,69,232,4,72,255,77,224,72,131,125,224,255,117,144,72,139,69,216,72,131,192,32,201,195,85,72,137,229, 72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,13,255,255,255,184,0,0,0,0,232,107,176,0,0,201,195,85,72,137, 229,72,141,61,167,157,7,0,232,229,122,5,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,140,254,255,255,184,0,0,0,0,232,27,105,5,0,72,137,194,72,141,5,203,93,10,0,72,137,16,72,141,5,193,93,10,0,72,139,56,190,48,0,0,0,232, 14,120,5,0,72,141,61,85,163,7,0,232,142,122,5,0,72,137,194,72,141,53,65,255,255,255,72,141,5,151,93,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,8,112,5,0,201,195,85,72,137,229,72,131,236,16,72,141,5,92,93,10,0,72,139,56,232,96,177,5,0,72,137,69,248,72, 141,61,65,162,7,0,232,66,122,5,0,72,137,198,72,139,125,248,232,114,162,5,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192, 16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,235,126,72,139,69,240,139,0,137,69,252,243,15,16,77,252,243,15,16,5,69,35,8,0,15,46,193,115,2,235,13,72,139,85,232,184,0,0,0,0,137,2,235,74,243,15,16,69,252,15,46,5,41,35,8, 0,119,2,235,8,184,0,96,187,68,137,69,252,243,15,90,77,252,242,15,16,5,196,34,8,0,242,15,89,193,232,5,147,7,0,102,15,40,200,242,15,16,5,183,34,8,0,242,15,89,193,242,15,90,192,72,139,69,232,243,15,17,0,72,131,69,240,4,72,131,69,232,4,72,255,77,224,72,131, 125,224,255,15,133,115,255,255,255,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,80,8,65,137,240, 190,3,0,0,0,72,141,61,236,254,255,255,184,0,0,0,0,232,122,174,0,0,201,195,85,72,137,229,72,141,61,188,155,7,0,232,244,120,5,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,107,254,255,255,184,0,0,0,0,232,42,103,5,0,72,137, 194,72,141,5,194,91,10,0,72,137,16,72,141,5,184,91,10,0,72,139,56,190,48,0,0,0,232,29,118,5,0,72,141,61,100,161,7,0,232,157,120,5,0,72,137,194,72,141,53,65,255,255,255,72,141,5,142,91,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,23,110,5,0,201,195,85,72, 137,229,72,131,236,16,72,141,5,99,91,10,0,72,139,56,232,111,175,5,0,72,137,69,248,72,141,61,80,160,7,0,232,81,120,5,0,72,137,198,72,139,125,248,232,129,160,5,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137, 125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,235,109,72,139,69,240,139,0,137,69,252,15,87,201,243,15,16,69,252,15,46,193,119,2,235,49,243, 15,90,77,252,242,15,16,5,13,33,8,0,242,15,89,193,232,194,145,7,0,102,15,40,200,242,15,16,5,0,33,8,0,242,15,89,193,242,15,90,192,243,15,17,69,212,235,13,243,15,16,5,25,33,8,0,243,15,17,69,212,72,139,69,232,243,15,16,69,212,243,15,17,0,72,131,69,240,4, 72,131,69,232,4,72,255,77,224,72,131,125,224,255,117,136,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139, 0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,1,255,255,255,184,0,0,0,0,232,158,172,0,0,201,195,85,72,137,229,72,141,61,230,153,7,0,232,24,119,5,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,128,254,255,255,184,0,0,0, 0,232,78,101,5,0,72,137,194,72,141,5,222,89,10,0,72,137,16,72,141,5,212,89,10,0,72,139,56,190,48,0,0,0,232,65,116,5,0,72,141,61,136,159,7,0,232,193,118,5,0,72,137,194,72,141,53,65,255,255,255,72,141,5,170,89,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232, 59,108,5,0,201,195,85,72,137,229,72,131,236,16,72,141,5,127,89,10,0,72,139,56,232,147,173,5,0,72,137,69,248,72,141,61,116,158,7,0,232,117,118,5,0,72,137,198,72,139,125,248,232,165,158,5,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72, 137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,235,113,72,139,69,240,139,0,137,69,252,15,87,192,15,46,69,252, 115,2,235,13,72,139,85,232,184,0,0,0,0,137,2,235,70,243,15,16,69,252,15,46,5,105,31,8,0,119,2,235,8,184,0,128,242,67,137,69,252,243,15,90,77,252,242,15,16,5,32,31,8,0,242,15,92,200,242,15,16,5,28,31,8,0,242,15,89,193,232,53,143,7,0,242,15,90,192,72,139, 69,232,243,15,17,0,72,131,69,240,4,72,131,69,232,4,72,255,77,224,72,131,125,224,255,117,132,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72,139, 0,72,139,72,8,72,139,69,240,72,139,0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,253,254,255,255,184,0,0,0,0,232,190,170,0,0,201,195,85,72,137,229,72,141,61,12,152,7,0,232,56,117,5,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0, 72,141,53,124,254,255,255,184,0,0,0,0,232,110,99,5,0,72,137,194,72,141,5,246,87,10,0,72,137,16,72,141,5,236,87,10,0,72,139,56,190,48,0,0,0,232,97,114,5,0,72,141,61,168,157,7,0,232,225,116,5,0,72,137,194,72,141,53,65,255,255,255,72,141,5,194,87,10,0,72, 139,56,185,0,0,0,0,184,0,0,0,0,232,91,106,5,0,201,195,85,72,137,229,72,131,236,16,72,141,5,191,87,10,0,72,139,56,232,179,171,5,0,72,137,69,248,72,141,61,148,156,7,0,232,149,116,5,0,72,137,198,72,139,125,248,232,197,156,5,0,72,139,85,248,184,0,0,0,0,137, 66,48,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,233,134,0,0,0,72,139,69,240, 139,0,137,69,252,15,87,192,15,46,69,252,115,2,235,13,72,139,85,232,184,0,0,0,0,137,2,235,91,243,15,90,69,252,232,6,142,7,0,102,15,40,200,242,15,16,5,92,29,8,0,242,15,89,200,242,15,16,5,64,29,8,0,242,15,88,193,242,15,90,192,243,15,17,69,248,15,87,192, 15,46,69,248,118,2,235,12,243,15,16,69,248,243,15,17,69,212,235,8,15,87,192,243,15,17,69,212,72,139,69,232,243,15,16,69,212,243,15,17,0,72,131,69,240,4,72,131,69,232,4,72,255,77,224,72,131,125,224,255,15,133,107,255,255,255,72,139,69,216,72,131,192,32, 201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,225,254,255,255,184,0,0,0,0,232,194,168, 0,0,201,195,85,72,137,229,72,141,61,25,150,7,0,232,60,115,5,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,96,254,255,255,184,0,0,0,0,232,114,97,5,0,72,137,194,72,141,5,26,86,10,0,72,137,16,72,141,5,16,86,10,0,72,139,56, 190,48,0,0,0,232,101,112,5,0,72,141,61,172,155,7,0,232,229,114,5,0,72,137,194,72,141,53,65,255,255,255,72,141,5,230,85,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,95,104,5,0,201,195,85,72,137,229,72,131,236,16,72,141,5,155,85,10,0,72,139,56,232,183,169, 5,0,72,137,69,248,72,141,61,152,154,7,0,232,153,114,5,0,72,137,198,72,139,125,248,232,201,154,5,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72, 139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,235,113,72,139,69,240,139,0,137,69,252,15,87,192,15,46,69,252,115,2,235,13,72,139,85,232,184,0,0,0,0,137,2,235,70,243,15,16,69,252,15,46,5,145,27,8,0,119, 2,235,8,184,0,128,89,68,137,69,252,243,15,90,77,252,242,15,16,5,68,27,8,0,242,15,92,200,242,15,16,5,80,27,8,0,242,15,89,193,232,89,139,7,0,242,15,90,192,72,139,69,232,243,15,17,0,72,131,69,240,4,72,131,69,232,4,72,255,77,224,72,131,125,224,255,117,132, 72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,253,254,255, 255,184,0,0,0,0,232,226,166,0,0,201,195,85,72,137,229,72,141,61,66,148,7,0,232,92,113,5,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,124,254,255,255,184,0,0,0,0,232,146,95,5,0,72,137,194,72,141,5,18,84,10,0,72,137,16, 72,141,5,8,84,10,0,72,139,56,190,48,0,0,0,232,133,110,5,0,72,141,61,204,153,7,0,232,5,113,5,0,72,137,194,72,141,53,65,255,255,255,72,141,5,222,83,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,127,102,5,0,201,195,85,72,137,229,72,131,236,16,72,141,5,219, 83,10,0,72,139,56,232,215,167,5,0,72,137,69,248,72,141,61,184,152,7,0,232,185,112,5,0,72,137,198,72,139,125,248,232,233,152,5,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,131, 192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,233,134,0,0,0,72,139,69,240,139,0,137,69,252,15,87,192,15,46,69,252,115,2,235,13,72,139,85,232,184,0,0,0,0,137,2,235,91, 243,15,90,69,252,232,42,138,7,0,102,15,40,200,242,15,16,5,144,25,8,0,242,15,89,200,242,15,16,5,100,25,8,0,242,15,88,193,242,15,90,192,243,15,17,69,248,15,87,192,15,46,69,248,118,2,235,12,243,15,16,69,248,243,15,17,69,212,235,8,15,87,192,243,15,17,69, 212,72,139,69,232,243,15,16,69,212,243,15,17,0,72,131,69,240,4,72,131,69,232,4,72,255,77,224,72,131,125,224,255,15,133,107,255,255,255,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139, 0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,225,254,255,255,184,0,0,0,0,232,230,164,0,0,201,195,85,72,137,229,72,141,61,79,146,7,0,232,96,111,5,0,72,137,199,65,185,0,0,0, 0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,96,254,255,255,184,0,0,0,0,232,150,93,5,0,72,137,194,72,141,5,54,82,10,0,72,137,16,72,141,5,44,82,10,0,72,139,56,190,48,0,0,0,232,137,108,5,0,72,141,61,208,151,7,0,232,9,111,5,0,72,137,194,72,141,53, 65,255,255,255,72,141,5,2,82,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,131,100,5,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,72,139,61,228,32,10,0,232,211,165,5,0,72,137,69,248,72,139,117,248,72,139,125,248,72,141, 13,236,251,9,0,72,141,21,229,251,9,0,232,227,138,5,0,72,139,125,248,72,141,53,213,251,9,0,232,210,150,5,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137, 69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,72,137,69,224,72,139,69,216,72,131,192,32,72,139,0,137,69,252,235,94,72,139,69,240,139,0,137,69,248,72,131,69,240,4,15,87,201,243,15,16,69,248,15,46,193,119, 2,235,44,72,139,69,232,243,15,16,0,243,15,90,192,243,15,90,85,248,102,15,40,200,102,15,40,194,232,58,136,7,0,242,15,90,192,72,139,69,224,243,15,17,0,235,11,72,139,85,224,184,0,0,0,0,137,2,72,131,69,224,4,72,131,69,232,4,255,77,252,131,125,252,255,117, 153,72,139,69,216,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,16,72,139,0,72,139,112,8,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72, 139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,239,254,255,255,184,0,0,0,0,232,221,162,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,115,254,255,255,72,141,61,67,144,7,0,232,75,109,5,0,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0, 0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,126,91,5,0,72,137,5,49,31,10,0,72,139,61,42,31,10,0,190,48,0,0,0,232,122,106,5,0,72,141,61,193,149,7,0,232,250,108,5,0,72,141,53,41,255,255,255,72,139,61,6,31,10,0,185,0,0,0,0,72,137, 194,184,0,0,0,0,232,119,98,5,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,72,139,61,219,30,10,0,232,194,163,5,0,72,137,69,248,72,139,125,248,72,141,53,223,249,9,0,232,220,148,5,0,72,139,69,248,201,195, 85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,235,39,72,139,69,240,243,15,16,0,243,15,90,192,72,131,69,240, 4,232,190,133,7,0,242,15,90,192,72,139,69,232,243,15,17,0,72,131,69,232,4,255,77,252,131,125,252,255,117,208,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72, 131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,74,255,255,255,184,0,0,0,0,232,78,161,0,0,201,195,85,72,137,229,83,72,131,236,8,72,141,29,245,254,255,255,72,141,61,185,142,7,0,232,188,107,5,0,72,137, 199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,246,89,5,0,72,137,5,177,29,10,0,72,139,61,170,29,10,0,190,48,0,0,0,232,242,104,5,0,72,141,61,57,148,7,0,232,114,107,5,0,72,141,53,69,255,255,255,72,139,61,134,29,10, 0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,239,96,5,0,72,131,196,8,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,72,139,61,91,29,10,0,232,58,162,5,0,72,137,69,248,72,139,117,248,72,139,125,248,72,141,13,83,248,9,0,72,141, 21,76,248,9,0,232,74,135,5,0,72,139,125,248,72,141,53,60,248,9,0,232,57,147,5,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,232,72,139,69,200,72,131, 192,16,72,139,0,72,137,69,224,72,139,69,200,72,131,192,24,72,139,0,72,137,69,216,72,139,69,200,72,131,192,32,72,139,0,137,69,252,233,142,0,0,0,72,139,69,232,139,0,137,69,248,72,131,69,232,4,72,139,69,224,139,0,137,69,244,72,131,69,224,4,15,87,192,15, 46,69,248,115,2,235,13,72,139,85,216,184,0,0,122,196,137,2,235,85,15,87,192,15,46,69,244,115,2,235,24,243,15,90,69,248,232,78,132,7,0,242,15,90,192,72,139,69,216,243,15,17,0,235,50,243,15,90,69,248,232,54,132,7,0,242,15,17,69,192,243,15,90,69,244,232, 39,132,7,0,242,15,16,77,192,242,15,94,200,102,15,40,193,242,15,90,192,72,139,69,216,243,15,17,0,72,131,69,216,4,255,77,252,131,125,252,255,15,133,101,255,255,255,72,139,69,200,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117, 240,72,139,69,240,72,139,0,139,8,72,139,69,240,72,131,192,16,72,139,0,72,139,112,8,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,80,8,65,137,201,73,137,240,72,137,249,190,4,0,0,0,72,141,61,184,254,255,255,184,0,0,0,0, 232,13,159,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,60,254,255,255,72,141,61,125,140,7,0,232,123,105,5,0,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,174,87,5,0,72,137,5,113, 27,10,0,72,139,61,106,27,10,0,190,48,0,0,0,232,170,102,5,0,72,141,61,241,145,7,0,232,42,105,5,0,72,141,53,41,255,255,255,72,139,61,70,27,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,167,94,5,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,48,72,137, 125,232,137,117,228,72,137,85,216,72,139,61,27,27,10,0,232,242,159,5,0,72,137,69,248,72,139,125,248,72,141,53,15,246,9,0,232,12,145,5,0,72,139,69,248,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216, 72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,235,83,72,139,69,240,139,0,137,69,248,72,131,69,240,4,15,87,201,243,15,16,69,248,15,46,193,114,2,235,26,243,15,16,5,249,16,8,0,243,15,16,77,248,15,40,209,15,87,208,243, 15,17,85,212,235,10,243,15,16,69,248,243,15,17,69,212,72,139,69,232,243,15,16,85,212,243,15,17,16,72,131,69,232,4,255,77,252,131,125,252,255,117,164,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139, 69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,34,255,255,255,184,0,0,0,0,232,86,157,0,0,201,195,85,72,137,229,83,72,131,236,8,72,141,29,205,254,255,255,72,141, 61,203,138,7,0,232,196,103,5,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,254,85,5,0,72,137,5,201,25,10,0,72,139,61,194,25,10,0,190,48,0,0,0,232,250,100,5,0,72,141,61,65,144,7,0,232,122,103,5,0,72,141, 53,69,255,255,255,72,139,61,158,25,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,247,92,5,0,72,131,196,8,91,201,195,85,72,137,229,72,131,236,16,72,141,61,75,138,7,0,232,63,103,5,0,72,137,69,248,232,248,226,255,255,232,221,231,255,255,232,78,234,255,255, 232,50,236,255,255,232,30,238,255,255,232,245,239,255,255,232,208,241,255,255,232,199,243,255,255,232,162,245,255,255,232,153,247,255,255,232,157,249,255,255,232,39,251,255,255,232,99,253,255,255,232,21,255,255,255,72,141,5,240,73,10,0,72,139,56,72,139, 117,248,232,149,99,5,0,72,141,5,213,73,10,0,72,139,56,72,139,117,248,232,130,99,5,0,72,141,5,186,73,10,0,72,139,56,72,139,117,248,232,111,99,5,0,72,141,5,199,73,10,0,72,139,56,72,139,117,248,232,92,99,5,0,72,141,5,140,73,10,0,72,139,56,72,139,117,248, 232,73,99,5,0,72,141,5,153,73,10,0,72,139,56,72,139,117,248,232,54,99,5,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192, 24,72,139,0,137,69,252,72,139,69,240,139,64,64,133,192,15,132,130,0,0,0,199,69,248,0,0,0,0,72,139,69,240,72,139,64,56,72,139,48,72,141,61,54,137,7,0,184,0,0,0,0,232,251,90,6,0,199,69,248,0,0,0,0,235,56,139,69,248,131,224,7,133,192,117,5,232,11,93,6,0, 139,69,248,72,152,72,193,224,2,72,3,69,232,243,15,16,0,243,15,90,192,72,141,61,252,136,7,0,184,1,0,0,0,232,189,90,6,0,255,69,248,139,69,248,59,69,252,124,192,232,213,92,6,0,72,139,69,240,139,64,64,141,80,255,72,139,69,240,137,80,64,72,139,69,216,72,131, 192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,240,190,3,0,0,0,72,141,61,246,254,255,255,184,0,0,0,0,232,225,154,0,0,201,195,85,72,137,229, 72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,119,2,235,8,184,0,0,0,0,137,69,244,243,15,16,69,244,243,15,44,208,72,139,69,248,137,80,64,201,195,85,72,137,229,72,137,125,248,72,139,69,248,199,64,64,1,0,0,0,201,195,85,72,137,229,72,131,236,32, 72,137,125,232,72,139,61,75,23,10,0,232,26,156,5,0,72,137,69,248,72,139,69,232,72,139,0,15,182,0,132,192,117,18,72,141,61,19,136,7,0,232,238,100,5,0,72,137,69,224,235,8,72,139,69,232,72,137,69,224,72,139,69,248,72,139,85,224,72,137,80,56,72,139,69,248, 199,64,64,0,0,0,0,72,139,85,248,184,0,0,0,0,137,66,48,72,139,69,248,201,195,85,72,137,229,83,72,131,236,24,72,141,29,131,255,255,255,72,141,61,192,135,7,0,232,155,100,5,0,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,72,0,0,0,186,0,0, 0,0,72,137,222,184,0,0,0,0,232,206,82,5,0,72,137,5,161,22,10,0,72,139,61,154,22,10,0,190,48,0,0,0,232,202,97,5,0,72,141,61,17,141,7,0,232,74,100,5,0,72,141,53,149,254,255,255,72,139,61,118,22,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,199,89,5,0,72, 141,53,234,254,255,255,72,139,61,86,22,10,0,232,209,95,5,0,72,141,53,165,254,255,255,72,139,61,67,22,10,0,232,242,95,5,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,131,192,8,72,139,0,72,137,69,248,72,139,69,248, 72,139,120,48,102,15,87,192,232,124,166,5,0,72,139,69,232,72,131,192,16,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,85,248,190,1,0,0,0,72,141,61,170,255,255,255,184,0,0,0,0,232,17,153,0,0,201,195,85,72,137,229,72,131,236, 16,72,137,125,248,72,139,69,248,72,139,120,24,232,129,140,5,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,48,232,222,166,5,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,148,21,10,0,232,91,154,5,0,72,137, 69,248,72,141,53,167,255,255,255,72,139,125,248,232,248,163,5,0,72,137,194,72,139,69,248,72,137,80,48,72,139,125,248,72,141,53,253,239,9,0,232,90,139,5,0,72,139,69,248,201,195,85,72,137,229,65,84,83,72,141,29,138,255,255,255,76,141,37,158,255,255,255, 72,141,61,35,134,7,0,232,247,98,5,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,51,81,5,0,72,137,5,14,21,10,0,72,141,61,135,139,7,0,232,192,98,5,0,72,141,53,242,254,255,255,72,139,61,244,20,10,0,185,0,0, 0,0,72,137,194,184,0,0,0,0,232,61,88,5,0,91,65,92,201,195,85,72,137,229,232,219,253,255,255,232,117,255,255,255,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,193,20,10,0,232,128,153,5,0,72,137,69,248,72,139,85,248,139,69,236,137,66,60, 72,141,61,143,133,7,0,232,88,98,5,0,72,137,193,72,139,117,248,72,139,125,248,72,141,21,224,238,9,0,232,126,126,5,0,72,139,85,248,184,0,0,0,0,72,137,66,48,72,139,85,248,184,0,0,0,0,137,66,56,72,141,61,27,138,7,0,232,28,98,5,0,72,137,198,72,139,125,248, 232,76,138,5,0,72,139,69,248,201,195,85,72,137,229,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,232,72,139,69,184,72,131,192,16,72,139,0,72,137,69,224,72,139,69,184,72,131,192,24,72,139,0,72,137,69,216,72,139,69,184,72,131,192,32,72,139, 0,137,69,252,72,139,69,232,242,15,16,72,48,242,15,16,5,248,9,8,0,242,15,88,193,242,15,17,69,208,72,139,69,232,139,64,56,137,69,244,72,184,0,0,0,0,0,0,56,65,72,137,69,192,139,69,196,137,69,248,72,139,69,208,72,137,69,192,235,92,139,69,248,137,69,196,72, 139,69,224,243,15,16,0,243,15,89,69,244,243,15,90,200,242,15,16,69,208,242,15,88,193,242,15,17,69,208,72,131,69,224,4,242,15,16,77,192,242,15,16,5,144,9,8,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,90,192,72,139,69,216,243,15,17,0,72,131,69,216, 4,72,139,69,208,72,137,69,192,255,77,252,131,125,252,255,117,155,139,69,248,137,69,196,242,15,16,77,192,242,15,16,5,79,9,8,0,102,15,40,209,242,15,92,208,102,15,40,194,72,139,69,232,242,15,17,64,48,72,139,69,184,72,131,192,40,201,195,85,72,137,229,72, 131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,243,15,16,72,16,243,15,16,5,244,8,8,0,243,15,94,193,72,139,69,248,243,15,17,64,56,72,139,69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72, 139,72,8,72,139,85,248,65,137,241,73,137,248,190,4,0,0,0,72,141,61,122,254,255,255,184,0,0,0,0,232,238,149,0,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,243,15,90,69,244,72,139,69,248,242,15,17,64,48,201,195,85,72,137,229,83,72,131,236,24, 72,141,29,192,253,255,255,72,141,61,129,131,7,0,232,63,96,5,0,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,114,78,5,0,72,137,5,85,18,10,0,72,139,61,78,18,10,0,190,60,0,0,0,232,110,93,5, 0,72,141,61,181,136,7,0,232,238,95,5,0,72,141,53,249,254,255,255,72,139,61,42,18,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,107,85,5,0,72,141,61,249,130,7,0,232,194,95,5,0,72,141,53,67,255,255,255,72,139,61,254,17,10,0,65,184,0,0,0,0,185,1,0,0,0,72, 137,194,184,0,0,0,0,232,57,85,5,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,16,72,139,61,224,17,10,0,232,143,150,5,0,72,137,69,248,72,141,61,112,135,7,0,232,113,95,5,0,72,137,198,72,139,125,248,232,161,135,5,0,72,139,85,248,184,0,0,0,0,137,66, 48,72,139,69,248,201,195,85,72,137,229,72,137,125,168,72,139,69,168,72,131,192,8,72,139,0,72,137,69,224,72,139,69,168,72,131,192,16,72,139,0,72,137,69,216,72,139,69,168,72,131,192,24,72,139,0,137,69,252,72,141,5,58,66,10,0,72,139,0,72,137,69,208,72,184, 0,0,0,0,0,0,56,65,72,137,69,176,139,69,180,137,69,236,72,139,69,224,243,15,16,8,243,15,16,5,127,8,8,0,243,15,89,193,243,15,90,200,242,15,16,5,31,7,8,0,242,15,88,193,242,15,17,69,192,72,131,69,224,4,72,139,69,192,72,137,69,176,139,69,180,72,152,37,255, 1,0,0,72,193,224,2,72,3,69,208,72,137,69,200,139,69,236,137,69,180,233,171,0,0,0,72,139,69,224,243,15,16,8,243,15,16,5,40,8,8,0,243,15,89,193,243,15,90,200,242,15,16,5,200,6,8,0,242,15,88,193,242,15,17,69,192,72,131,69,224,4,242,15,16,77,176,242,15,16, 5,173,6,8,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,90,192,243,15,17,69,240,72,139,69,192,72,137,69,176,72,139,69,200,139,0,137,69,248,72,139,69,200,72,131,192,4,139,0,137,69,244,139,69,180,72,152,37,255,1,0,0,72,193,224,2,72,3,69,208,72,137, 69,200,243,15,16,69,244,243,15,92,69,248,243,15,89,69,240,243,15,88,69,248,72,139,69,216,243,15,17,0,72,131,69,216,4,139,69,236,137,69,180,255,77,252,131,125,252,0,15,133,72,255,255,255,242,15,16,77,176,242,15,16,5,35,6,8,0,102,15,40,209,242,15,92,208, 102,15,40,194,242,15,90,192,243,15,17,69,240,72,139,69,200,139,0,137,69,248,72,139,69,200,72,131,192,4,139,0,137,69,244,243,15,16,69,244,243,15,92,69,248,243,15,89,69,240,243,15,88,69,248,72,139,69,216,243,15,17,0,72,131,69,216,4,72,139,69,168,72,131, 192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,80,8,65,137,240,190,3,0,0,0,72,141,61,246,253,255,255,184,0,0,0,0,232, 179,146,0,0,201,195,85,72,137,229,72,131,236,32,184,208,15,73,60,137,69,244,72,141,5,72,64,10,0,72,139,0,72,133,192,15,133,146,0,0,0,191,4,8,0,0,232,47,119,5,0,72,137,194,72,141,5,40,64,10,0,72,137,16,199,69,252,1,2,0,0,72,141,5,23,64,10,0,72,139,0,72, 137,69,232,184,0,0,0,0,137,69,248,235,42,243,15,90,69,248,232,36,118,7,0,242,15,90,192,72,139,69,232,243,15,17,0,72,131,69,232,4,243,15,16,69,248,243,15,88,69,244,243,15,17,69,248,255,77,252,131,125,252,255,117,205,72,184,0,0,0,128,0,0,56,65,72,137,69, 224,139,69,224,61,0,0,0,128,116,17,72,141,61,220,127,7,0,184,0,0,0,0,232,29,88,6,0,201,195,85,72,137,229,72,131,236,16,72,141,61,228,127,7,0,232,114,92,5,0,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,182, 252,255,255,184,0,0,0,0,232,161,74,5,0,72,137,5,148,14,10,0,72,139,61,141,14,10,0,190,48,0,0,0,232,157,89,5,0,72,141,61,228,132,7,0,232,29,92,5,0,72,141,53,139,254,255,255,72,139,61,105,14,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,154,81,5,0,232,187, 254,255,255,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,68,14,10,0,232,235,146,5,0,72,137,69,248,72,139,85,248,139,69,236,137,66,60,72,141,61,194,131,7,0,232,195,91,5,0,72,137,198,72,139,125,248,232,243,131,5,0,72,141,61,226,126,7, 0,232,171,91,5,0,72,137,193,72,139,117,248,72,139,125,248,72,141,21,51,232,9,0,232,209,119,5,0,72,139,85,248,184,0,0,0,0,72,137,66,48,72,139,85,248,184,0,0,0,0,137,66,56,72,139,69,248,201,195,85,72,137,229,72,137,125,168,72,139,69,168,72,131,192,8,72, 139,0,72,137,69,224,72,139,69,168,72,131,192,16,72,139,0,72,137,69,216,72,139,69,168,72,131,192,24,72,139,0,72,137,69,208,72,139,69,168,72,131,192,32,72,139,0,137,69,252,72,141,5,77,62,10,0,72,139,0,72,137,69,200,72,139,69,224,242,15,16,72,48,242,15, 16,5,85,3,8,0,242,15,88,193,242,15,17,69,184,72,139,69,224,139,64,56,137,69,232,72,184,0,0,0,0,0,0,56,65,72,137,69,176,139,69,180,137,69,236,72,139,69,184,72,137,69,176,72,139,69,216,243,15,16,0,243,15,89,69,232,243,15,90,200,242,15,16,69,184,242,15, 88,193,242,15,17,69,184,72,131,69,216,4,139,69,180,72,152,37,255,1,0,0,72,193,224,2,72,3,69,200,72,137,69,192,139,69,236,137,69,180,242,15,16,77,176,242,15,16,5,217,2,8,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,90,192,243,15,17,69,240,233,161, 0,0,0,72,139,69,184,72,137,69,176,72,139,69,192,139,0,137,69,248,72,139,69,216,243,15,16,0,243,15,89,69,232,243,15,90,200,242,15,16,69,184,242,15,88,193,242,15,17,69,184,72,131,69,216,4,72,139,69,192,72,131,192,4,139,0,137,69,244,139,69,180,72,152,37, 255,1,0,0,72,193,224,2,72,3,69,200,72,137,69,192,139,69,236,137,69,180,243,15,16,69,244,243,15,92,69,248,243,15,89,69,240,243,15,88,69,248,72,139,69,208,243,15,17,0,72,131,69,208,4,242,15,16,77,176,242,15,16,5,51,2,8,0,102,15,40,209,242,15,92,208,102, 15,40,194,242,15,90,192,243,15,17,69,240,255,77,252,131,125,252,0,15,133,82,255,255,255,72,139,69,192,139,0,137,69,248,72,139,69,192,72,131,192,4,139,0,137,69,244,243,15,16,69,244,243,15,92,69,248,243,15,89,69,240,243,15,88,69,248,72,139,69,208,243,15, 17,0,72,131,69,208,4,72,184,0,0,0,0,0,0,200,65,72,137,69,176,139,69,180,137,69,236,242,15,16,77,184,242,15,16,5,1,3,8,0,242,15,88,193,242,15,17,69,176,139,69,236,137,69,180,242,15,16,77,176,242,15,16,5,221,2,8,0,102,15,40,209,242,15,92,208,102,15,40, 194,72,139,69,224,242,15,17,64,48,72,139,69,168,72,131,192,40,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,0,243,15,16,72,16,243,15,16,5,170,2,8,0,243,15,94,193,72,139,69,248,243,15,17,64,56,72,139,69,240,72, 139,0,139,48,72,139,69,240,72,131,192,8,72,139,0,72,139,120,8,72,139,69,240,72,139,0,72,139,72,8,72,139,85,248,65,137,241,73,137,248,190,4,0,0,0,72,141,61,93,253,255,255,184,0,0,0,0,232,60,142,0,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244, 243,15,16,77,244,243,15,16,5,62,2,8,0,243,15,89,193,243,15,90,192,72,139,69,248,242,15,17,64,48,201,195,85,72,137,229,83,72,131,236,24,72,141,29,147,252,255,255,72,141,61,244,123,7,0,232,125,88,5,0,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0, 0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,176,70,5,0,72,137,5,171,10,10,0,72,139,61,164,10,10,0,190,60,0,0,0,232,172,85,5,0,72,141,61,243,128,7,0,232,44,88,5,0,72,141,53,233,254,255,255,72,139,61,128,10,10,0,185,0,0,0,0,72,137,194,184, 0,0,0,0,232,169,77,5,0,72,141,61,55,123,7,0,232,0,88,5,0,72,141,53,51,255,255,255,72,139,61,84,10,10,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,119,77,5,0,232,152,250,255,255,72,131,196,24,91,201,195,85,72,137,229,83,72,131,236,40,243,15, 17,69,220,72,141,5,227,58,10,0,72,139,56,232,191,142,5,0,72,137,69,232,72,139,117,232,72,139,125,232,72,141,13,216,228,9,0,72,141,21,209,228,9,0,232,207,115,5,0,72,141,61,189,122,7,0,232,134,87,5,0,72,137,195,72,141,61,100,212,7,0,232,119,87,5,0,72,139, 117,232,72,139,125,232,72,137,217,72,137,194,232,161,115,5,0,72,141,61,87,127,7,0,232,88,87,5,0,72,137,198,72,139,125,232,232,136,127,5,0,72,141,61,63,127,7,0,232,64,87,5,0,72,137,198,72,139,125,232,232,112,127,5,0,72,139,85,232,72,131,194,48,72,139, 69,232,72,137,80,64,72,139,85,232,184,0,0,0,0,137,66,48,72,139,85,232,184,0,0,0,0,137,66,52,72,139,85,232,139,69,220,137,66,56,72,139,85,232,184,0,0,0,0,137,66,60,72,139,85,232,184,0,0,0,0,137,66,72,72,139,69,232,72,131,196,40,91,201,195,85,72,137,229, 72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,64,64,72,137,69,232,15,87,201,243,15,16,69,244,15,46,193,119,2,235,12,243,15,16,69,244,243,15,17,69,240,235,8,15,87,192,243,15,17,69,240,243,15,16,69,240,72,139,69,232,243,15,17,64,8,201,195,85,72, 137,229,72,131,236,56,72,137,189,88,255,255,255,72,139,133,88,255,255,255,72,131,192,8,72,139,0,72,137,69,168,72,139,133,88,255,255,255,72,131,192,16,72,139,0,72,137,69,160,72,139,133,88,255,255,255,72,131,192,24,72,139,0,72,137,69,152,72,139,133,88, 255,255,255,72,131,192,32,72,139,0,72,137,69,144,72,139,133,88,255,255,255,72,131,192,40,72,139,0,72,137,69,136,72,139,133,88,255,255,255,72,131,192,48,72,139,0,137,69,252,72,139,69,136,139,0,137,69,244,72,139,69,136,139,64,4,137,69,236,72,139,69,136, 139,64,8,137,69,232,15,87,201,243,15,16,69,232,15,46,193,119,2,235,26,243,15,16,5,15,254,7,0,15,40,200,243,15,94,77,232,243,15,17,141,80,255,255,255,235,11,15,87,210,243,15,17,149,80,255,255,255,243,15,16,133,80,255,255,255,243,15,17,69,228,243,15,16, 77,232,243,15,16,5,76,254,7,0,243,15,88,200,243,15,16,5,68,254,7,0,15,40,208,243,15,94,209,15,40,202,243,15,16,5,46,254,7,0,243,15,88,193,243,15,17,69,224,72,139,69,136,139,64,12,137,69,220,72,141,5,152,56,10,0,72,139,0,72,137,69,128,72,184,0,0,0,0,0, 0,56,65,72,137,133,96,255,255,255,139,133,100,255,255,255,137,69,196,199,69,248,0,0,0,0,233,69,2,0,0,72,139,69,160,243,15,16,0,243,15,89,69,220,243,15,17,69,188,72,131,69,160,4,15,87,192,15,46,69,188,119,2,235,8,184,0,0,0,0,137,69,188,243,15,16,77,188, 243,15,16,5,168,254,7,0,243,15,89,193,243,15,17,69,184,15,87,201,243,15,16,69,228,15,46,193,119,2,235,38,243,15,16,69,188,15,40,200,243,15,89,77,228,243,15,16,5,15,253,7,0,15,40,208,243,15,92,209,243,15,17,149,84,255,255,255,235,11,15,87,192,243,15,17, 133,84,255,255,255,243,15,16,141,84,255,255,255,243,15,17,77,180,15,87,192,15,46,69,180,119,2,235,8,184,0,0,0,0,137,69,180,243,15,16,5,203,252,7,0,243,15,92,69,180,243,15,17,69,176,243,15,90,77,184,242,15,16,5,204,252,7,0,242,15,88,193,242,15,17,133, 112,255,255,255,72,139,133,112,255,255,255,72,137,133,96,255,255,255,139,133,100,255,255,255,37,255,1,0,0,137,69,192,139,69,192,72,152,72,193,224,2,72,3,69,128,72,137,133,120,255,255,255,139,69,196,137,133,100,255,255,255,242,15,16,141,96,255,255,255, 242,15,16,5,119,252,7,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,90,192,243,15,17,69,200,72,139,133,120,255,255,255,139,0,137,69,208,72,139,133,120,255,255,255,72,131,192,4,139,0,137,69,204,243,15,16,69,204,243,15,92,69,208,243,15,89,69,200,243, 15,88,69,208,243,15,89,69,180,243,15,17,69,216,139,69,192,131,192,128,72,152,37,255,1,0,0,72,193,224,2,72,3,69,128,72,137,133,120,255,255,255,72,139,133,120,255,255,255,139,0,137,69,208,72,139,133,120,255,255,255,72,131,192,4,139,0,137,69,204,243,15, 16,69,204,243,15,92,69,208,243,15,89,69,200,243,15,88,69,208,243,15,89,69,180,243,15,17,69,212,72,139,69,168,139,0,137,69,208,72,131,69,168,4,139,69,244,137,69,240,243,15,16,69,224,243,15,89,69,176,15,40,200,243,15,89,77,208,243,15,16,69,216,243,15,89, 69,240,243,15,88,200,243,15,16,69,236,243,15,89,69,212,15,40,209,243,15,92,208,15,40,194,243,15,17,69,244,139,85,244,72,139,69,152,137,16,72,131,69,152,4,243,15,16,69,212,15,40,200,243,15,89,77,240,243,15,16,69,236,243,15,89,69,216,243,15,88,193,243, 15,17,69,236,139,85,236,72,139,69,144,137,16,72,131,69,144,4,255,69,248,139,69,248,59,69,252,15,140,175,253,255,255,72,141,69,244,139,0,37,0,0,0,96,133,192,116,18,72,141,69,244,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,244,72,141,69,236, 139,0,37,0,0,0,96,133,192,116,18,72,141,69,236,139,0,37,0,0,0,96,61,0,0,0,96,117,8,184,0,0,0,0,137,69,236,139,85,244,72,139,69,136,137,16,139,85,236,72,139,69,136,137,80,4,72,139,133,88,255,255,255,72,131,192,56,201,195,85,72,137,229,72,131,236,32,72, 137,125,248,72,137,117,240,72,139,69,248,72,139,80,64,72,139,69,240,72,139,0,243,15,16,72,16,243,15,16,5,100,251,7,0,243,15,94,193,243,15,17,66,12,72,139,69,240,72,139,0,139,48,72,139,69,248,72,139,120,64,72,139,69,240,72,131,192,24,72,139,0,76,139,64, 8,72,139,69,240,72,131,192,16,72,139,0,72,139,80,8,72,139,69,240,72,131,192,8,72,139,0,72,139,72,8,72,139,69,240,72,139,0,72,139,64,8,137,116,36,8,72,137,60,36,77,137,193,73,137,208,72,137,194,190,6,0,0,0,72,141,61,88,251,255,255,184,0,0,0,0,232,85,135, 0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,1,250,255,255,72,141,61,69,117,7,0,232,195,81,5,0,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,80,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,246,63,5,0,72,137,194,72,141,5,182,52, 10,0,72,137,16,72,141,5,172,52,10,0,72,139,56,190,72,0,0,0,232,233,78,5,0,72,141,61,48,122,7,0,232,105,81,5,0,72,137,194,72,141,53,217,254,255,255,72,141,5,130,52,10,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,227,70,5,0,72,141,61,113,116,7,0,232,58,81,5, 0,72,137,194,72,141,53,81,250,255,255,72,141,5,83,52,10,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,174,70,5,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,16,72,139,61,109,3,10,0,232,4,136,5,0,72,137,69,248,139,5,70,227,9,0,105,192,39, 5,0,0,137,5,58,227,9,0,139,21,52,227,9,0,72,139,69,248,137,80,48,72,141,61,198,120,7,0,232,199,80,5,0,72,137,198,72,139,125,248,232,247,120,5,0,72,139,69,248,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139, 69,216,72,131,192,16,72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,72,139,69,232,139,0,137,69,248,235,59,139,69,248,37,255,255,255,127,45,0,0,0,64,243,15,42,200,243,15,16,5,247,249,7,0,243,15,89,193,72,139,69,240,243,15,17,0, 72,131,69,240,4,139,69,248,105,192,135,71,251,25,5,107,184,209,22,137,69,248,255,77,252,131,125,252,255,117,188,72,139,85,232,139,69,248,137,2,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240, 72,139,0,139,8,72,139,117,248,72,131,198,48,72,139,69,240,72,139,0,72,139,80,8,65,137,200,72,137,241,190,3,0,0,0,72,141,61,44,255,255,255,184,0,0,0,0,232,75,133,0,0,201,195,85,72,137,229,72,141,61,76,115,7,0,232,197,79,5,0,72,137,199,65,185,0,0,0,0,65, 184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,155,254,255,255,184,0,0,0,0,232,251,61,5,0,72,137,5,6,2,10,0,72,141,61,79,120,7,0,232,136,79,5,0,72,141,53,98,255,255,255,72,139,61,236,1,10,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,5,69,5,0,201,195,85,72, 137,229,232,2,239,255,255,232,210,242,255,255,232,186,246,255,255,232,111,253,255,255,232,116,255,255,255,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,232,72,139,69,216,72,131,192,16,72,139,0,72,137,69,224,72,139, 69,216,72,131,192,24,72,139,0,137,69,252,72,139,69,216,72,131,192,32,72,139,0,137,69,248,139,85,248,137,208,193,250,31,247,125,252,137,69,244,235,30,72,139,69,232,139,16,72,139,69,224,137,16,72,131,69,224,4,139,69,252,72,152,72,193,224,2,72,1,69,232, 255,77,244,131,125,244,255,117,217,72,139,69,216,72,131,192,40,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,232,72,139,69,200,72,131,192,16,72,139,0,72,137,69,224,72,139,69,200,72,131,192,24,72,139,0,137,69,252,72, 139,69,200,72,131,192,32,72,139,0,137,69,248,139,69,248,15,175,69,252,137,69,244,72,139,69,224,72,137,69,216,235,16,72,139,85,224,184,0,0,0,0,137,2,72,131,69,224,4,255,77,244,131,125,244,255,117,231,139,69,248,137,69,244,72,139,69,216,72,137,69,224,235, 30,72,139,69,232,139,16,72,139,69,224,137,16,72,131,69,232,4,139,69,252,72,152,72,193,224,2,72,1,69,224,255,77,244,131,125,244,255,117,217,72,139,69,200,72,131,192,40,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69, 232,72,139,69,200,72,131,192,16,72,139,0,72,137,69,224,72,139,69,200,72,131,192,24,72,139,0,137,69,252,72,139,69,200,72,131,192,32,72,139,0,137,69,248,139,69,252,137,69,244,139,69,248,137,69,240,72,139,69,224,72,137,69,216,72,139,69,232,72,137,69,208, 235,72,139,69,248,137,69,240,139,69,244,72,152,72,193,224,2,72,3,69,216,72,137,69,224,72,139,69,208,72,137,69,232,235,30,72,139,69,232,139,16,72,139,69,224,137,16,72,131,69,232,4,139,69,252,72,152,72,193,224,2,72,1,69,224,255,77,240,131,125,240,255,117, 217,255,77,244,131,125,244,255,117,175,72,139,69,200,72,131,192,40,201,195,85,72,137,229,72,137,125,168,72,139,69,168,72,131,192,8,72,139,0,72,137,69,208,72,139,69,168,72,131,192,16,72,139,0,72,137,69,200,72,139,69,168,72,131,192,24,72,139,0,72,137,69, 192,72,139,69,168,72,131,192,32,72,139,0,137,69,252,72,139,69,168,72,131,192,40,72,139,0,137,69,248,139,69,248,15,175,69,252,137,69,244,72,139,69,208,72,139,64,56,139,0,137,69,236,72,139,69,200,139,0,137,69,232,199,69,240,0,0,0,0,233,224,0,0,0,139,69, 240,255,192,243,15,42,200,243,15,42,69,252,15,40,209,243,15,94,208,15,40,194,243,15,17,69,228,243,15,16,69,228,243,15,44,192,137,69,224,243,15,42,77,224,243,15,16,69,228,243,15,92,193,243,15,17,69,220,15,87,192,15,46,69,220,122,2,116,2,235,8,184,0,0, 128,63,137,69,220,243,15,16,69,220,243,15,89,69,232,243,15,90,208,243,15,90,77,220,242,15,16,5,162,244,7,0,102,15,40,216,242,15,92,217,102,15,40,203,243,15,90,69,236,242,15,89,193,242,15,88,194,242,15,90,192,72,139,69,192,243,15,17,0,72,131,69,192,4, 139,69,224,72,152,72,193,224,2,72,3,69,200,72,137,69,184,72,139,69,184,139,0,137,69,232,131,125,224,0,116,19,72,139,69,184,72,131,232,4,243,15,16,0,243,15,17,69,164,235,10,243,15,16,85,236,243,15,17,85,164,243,15,16,93,164,243,15,17,93,236,255,69,240, 139,69,240,59,69,244,15,140,20,255,255,255,72,139,69,208,72,139,80,56,139,69,236,137,2,72,139,69,168,72,131,192,48,201,195,85,72,137,229,72,137,125,248,72,139,69,248,199,0,0,0,0,0,72,139,69,248,72,199,64,16,1,0,0,0,72,139,69,248,72,139,80,16,72,139,69, 248,72,137,80,8,72,139,69,248,199,64,64,0,0,0,0,72,139,69,248,139,80,64,72,139,69,248,137,80,48,72,139,69,248,139,80,48,72,139,69,248,137,80,32,72,139,69,248,72,199,64,56,0,0,0,0,72,139,69,248,72,139,80,56,72,139,69,248,72,137,80,40,72,139,69,248,72, 139,80,40,72,139,69,248,72,137,80,24,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,64,32,133,192,116,30,72,139,69,248,139,64,32,72,152,72,141,52,133,0,0,0,0,72,139,69,248,72,139,120,24,232,52,103,5,0,72,139,69,248,139,64,48,133, 192,116,30,72,139,69,248,139,64,48,72,152,72,141,52,133,0,0,0,0,72,139,69,248,72,139,120,40,232,11,103,5,0,72,139,69,248,139,64,64,133,192,116,30,72,139,69,248,139,64,64,72,152,72,141,52,133,0,0,0,0,72,139,69,248,72,139,120,56,232,226,102,5,0,72,139, 69,248,199,64,64,0,0,0,0,72,139,69,248,139,80,64,72,139,69,248,137,80,48,72,139,69,248,139,80,48,72,139,69,248,137,80,32,72,139,69,248,72,199,64,56,0,0,0,0,72,139,69,248,72,139,80,56,72,139,69,248,72,137,80,40,72,139,69,248,72,139,80,40,72,139,69,248, 72,137,80,24,201,195,85,72,137,229,72,131,236,64,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,68,137,69,220,68,137,77,216,139,69,236,59,69,220,117,22,72,141,61,213,109,7,0,184,0,0,0,0,232,215,69,6,0,233,181,1,0,0,139,69,236,59,69,220,126,99, 139,85,236,137,208,193,250,31,247,125,220,137,208,133,192,116,22,72,141,61,185,109,7,0,184,0,0,0,0,232,125,65,6,0,233,134,1,0,0,139,85,236,137,208,193,250,31,247,125,220,137,194,139,69,236,72,139,77,224,72,139,117,240,65,137,193,65,137,208,72,137,242, 190,4,0,0,0,72,141,61,154,250,255,255,184,0,0,0,0,232,75,127,0,0,233,74,1,0,0,139,85,220,137,208,193,250,31,247,125,236,137,208,133,192,116,22,72,141,61,110,109,7,0,184,0,0,0,0,232,26,65,6,0,233,35,1,0,0,139,69,216,137,69,212,131,125,212,1,116,11,131, 125,212,2,116,65,233,213,0,0,0,139,85,220,137,208,193,250,31,247,125,236,137,194,139,69,236,72,139,77,224,72,139,117,240,65,137,193,65,137,208,72,137,242,190,4,0,0,0,72,141,61,83,251,255,255,184,0,0,0,0,232,209,126,0,0,233,208,0,0,0,72,139,69,248,139, 64,64,131,248,1,116,74,72,139,69,248,139,64,64,72,152,72,141,52,133,0,0,0,0,72,139,69,248,72,139,120,56,232,65,101,5,0,72,139,69,248,199,64,64,1,0,0,0,72,139,69,248,139,64,64,72,152,72,141,60,133,0,0,0,0,232,44,99,5,0,72,137,194,72,139,69,248,72,137, 80,56,139,85,220,137,208,193,250,31,247,125,236,137,194,72,139,77,224,72,139,117,240,72,139,125,248,139,69,236,137,4,36,65,137,209,73,137,200,72,137,241,72,137,250,190,5,0,0,0,72,141,61,114,251,255,255,184,0,0,0,0,232,53,126,0,0,235,55,139,85,220,137, 208,193,250,31,247,125,236,137,194,139,69,236,72,139,77,224,72,139,117,240,65,137,193,65,137,208,72,137,242,190,4,0,0,0,72,141,61,206,249,255,255,184,0,0,0,0,232,252,125,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220, 137,77,216,68,137,69,212,139,69,220,59,69,216,117,58,72,139,69,232,139,64,32,72,152,72,141,52,133,0,0,0,0,72,139,69,232,72,139,120,24,232,89,100,5,0,72,139,69,232,199,64,32,0,0,0,0,72,139,85,232,72,139,69,224,72,137,66,24,233,142,0,0,0,72,139,69,232, 139,64,32,59,69,216,116,82,72,139,69,232,72,139,64,24,72,137,69,248,72,139,69,232,139,64,32,72,152,72,141,52,133,0,0,0,0,72,139,125,248,232,11,100,5,0,139,69,216,72,152,72,141,60,133,0,0,0,0,232,5,98,5,0,72,137,69,248,72,139,85,232,72,139,69,248,72,137, 66,24,72,139,85,232,139,69,216,137,66,32,72,139,69,232,139,80,32,72,139,69,232,72,139,72,24,139,69,212,139,117,220,72,139,125,224,76,139,85,232,65,137,193,65,137,208,137,242,72,137,254,76,137,215,232,34,253,255,255,201,195,85,72,137,229,72,131,236,48, 72,137,125,232,72,137,117,224,137,85,220,137,77,216,68,137,69,212,139,69,220,59,69,216,117,69,72,139,69,232,139,64,32,133,192,116,30,72,139,69,232,139,64,32,72,152,72,141,52,133,0,0,0,0,72,139,69,232,72,139,120,24,232,98,99,5,0,72,139,69,232,199,64,32, 0,0,0,0,72,139,85,232,72,139,69,224,72,137,66,24,233,142,0,0,0,72,139,69,232,139,64,32,59,69,220,116,82,72,139,69,232,72,139,64,24,72,137,69,248,72,139,69,232,139,64,32,72,152,72,141,52,133,0,0,0,0,72,139,125,248,232,20,99,5,0,139,69,220,72,152,72,141, 60,133,0,0,0,0,232,14,97,5,0,72,137,69,248,72,139,85,232,72,139,69,248,72,137,66,24,72,139,85,232,139,69,220,137,66,32,72,139,69,232,139,112,32,72,139,69,232,72,139,120,24,139,69,212,139,85,216,72,139,77,224,76,139,85,232,65,137,193,65,137,208,137,242, 72,137,254,76,137,215,232,43,252,255,255,201,195,85,72,137,229,137,125,252,137,117,248,131,125,248,0,116,55,15,182,69,252,137,194,193,226,24,139,69,252,37,0,255,0,0,193,224,8,9,194,139,69,252,37,0,0,255,0,193,232,8,9,194,139,69,252,37,0,0,0,255,193,232, 24,137,209,9,193,137,77,244,235,6,139,69,252,137,69,244,139,69,244,201,195,85,72,137,229,137,125,252,137,117,248,131,125,248,0,116,33,139,69,252,102,37,255,0,137,194,193,226,8,139,69,252,37,0,255,0,0,193,232,8,9,208,15,183,192,137,69,244,235,9,139,69, 252,15,183,192,137,69,244,139,69,244,201,195,85,72,137,229,72,137,125,232,137,117,228,131,125,228,0,116,102,72,139,69,232,15,182,0,136,69,255,72,139,69,232,72,255,192,15,182,0,136,69,254,72,139,69,232,72,131,192,2,15,182,0,136,69,253,72,139,69,232,72, 131,192,3,15,182,0,136,69,252,72,139,85,232,15,182,69,252,136,2,72,139,85,232,72,255,194,15,182,69,253,136,2,72,139,85,232,72,131,194,2,15,182,69,254,136,2,72,139,85,232,72,131,194,3,15,182,69,255,136,2,201,195,85,72,137,229,72,129,236,144,4,0,0,137, 189,156,251,255,255,137,181,152,251,255,255,72,137,149,144,251,255,255,72,137,141,136,251,255,255,76,137,133,128,251,255,255,76,137,141,120,251,255,255,72,139,5,81,202,9,0,72,139,16,72,137,85,248,49,210,72,199,133,224,251,255,255,255,255,255,127,232, 244,93,7,0,199,0,0,0,0,0,131,189,152,251,255,255,0,120,67,72,139,133,136,251,255,255,139,0,137,133,4,252,255,255,72,139,133,128,251,255,255,139,0,137,133,8,252,255,255,72,139,133,144,251,255,255,139,0,137,133,0,252,255,255,72,139,133,120,251,255,255, 72,139,0,72,137,133,224,251,255,255,233,171,6,0,0,72,141,181,16,252,255,255,139,189,156,251,255,255,186,46,0,0,0,232,113,95,7,0,137,133,244,251,255,255,131,189,244,251,255,255,3,15,142,124,7,0,0,72,141,189,16,252,255,255,186,4,0,0,0,72,141,53,129,104, 7,0,232,196,95,7,0,133,192,117,25,199,133,240,251,255,255,2,0,0,0,199,133,4,252,255,255,1,0,0,0,233,253,0,0,0,72,141,189,16,252,255,255,186,4,0,0,0,72,141,53,81,104,7,0,232,143,95,7,0,133,192,117,25,199,133,240,251,255,255,2,0,0,0,199,133,4,252,255,255, 0,0,0,0,233,200,0,0,0,72,141,189,16,252,255,255,186,4,0,0,0,72,141,53,33,104,7,0,232,90,95,7,0,133,192,117,71,131,189,244,251,255,255,11,15,142,233,6,0,0,72,141,133,16,252,255,255,72,141,120,8,186,4,0,0,0,72,141,53,249,103,7,0,232,45,95,7,0,133,192,15, 133,197,6,0,0,199,133,240,251,255,255,0,0,0,0,199,133,4,252,255,255,0,0,0,0,235,101,72,141,189,16,252,255,255,186,4,0,0,0,72,141,53,200,103,7,0,232,247,94,7,0,133,192,15,133,143,6,0,0,131,189,244,251,255,255,11,15,142,130,6,0,0,72,141,133,16,252,255, 255,72,141,120,8,186,4,0,0,0,72,141,53,156,103,7,0,232,198,94,7,0,133,192,15,133,94,6,0,0,199,133,240,251,255,255,1,0,0,0,199,133,4,252,255,255,1,0,0,0,232,89,253,0,0,59,133,4,252,255,255,15,149,192,15,182,192,137,133,252,251,255,255,131,189,240,251, 255,255,2,15,133,175,0,0,0,131,189,244,251,255,255,27,15,142,25,6,0,0,72,141,133,16,252,255,255,139,120,20,139,181,252,251,255,255,232,175,252,255,255,137,133,8,252,255,255,72,141,133,16,252,255,255,139,120,12,139,181,252,251,255,255,232,148,252,255, 255,137,133,240,251,255,255,72,141,133,16,252,255,255,139,120,4,139,181,252,251,255,255,232,121,252,255,255,137,133,152,251,255,255,131,189,240,251,255,255,3,117,12,199,133,0,252,255,255,2,0,0,0,235,44,131,189,240,251,255,255,4,117,12,199,133,0,252,255, 255,3,0,0,0,235,23,131,189,240,251,255,255,6,15,133,145,5,0,0,199,133,0,252,255,255,4,0,0,0,72,199,133,224,251,255,255,255,255,255,127,233,124,4,0,0,131,189,240,251,255,255,0,15,133,69,2,0,0,199,133,152,251,255,255,12,0,0,0,131,189,244,251,255,255,19, 15,142,83,5,0,0,199,133,8,252,255,255,1,0,0,0,199,133,0,252,255,255,2,0,0,0,139,133,152,251,255,255,72,152,72,141,181,16,252,255,255,72,1,198,72,141,189,16,252,255,255,186,8,0,0,0,232,128,92,7,0,233,165,1,0,0,72,141,133,16,252,255,255,139,120,4,139,181, 252,251,255,255,232,173,251,255,255,137,192,72,137,133,216,251,255,255,139,133,152,251,255,255,72,152,72,3,133,216,251,255,255,72,131,192,8,72,137,133,208,251,255,255,72,141,133,16,252,255,255,72,137,199,186,4,0,0,0,72,141,53,255,101,7,0,232,36,93,7, 0,133,192,15,133,234,0,0,0,139,133,152,251,255,255,131,192,8,72,152,72,137,133,192,251,255,255,72,139,181,192,251,255,255,139,189,156,251,255,255,186,0,0,0,0,232,235,91,7,0,72,137,133,200,251,255,255,72,139,133,200,251,255,255,72,59,133,192,251,255,255, 15,133,120,4,0,0,72,141,181,16,252,255,255,139,189,156,251,255,255,186,16,0,0,0,232,67,92,7,0,72,131,248,15,15,142,87,4,0,0,72,141,133,16,252,255,255,15,183,64,2,15,183,248,139,181,252,251,255,255,232,59,251,255,255,15,183,192,137,133,8,252,255,255,72, 141,133,16,252,255,255,15,183,64,14,15,183,248,139,181,252,251,255,255,232,25,251,255,255,15,183,192,137,133,240,251,255,255,131,189,240,251,255,255,16,117,12,199,133,0,252,255,255,2,0,0,0,235,44,131,189,240,251,255,255,24,117,12,199,133,0,252,255,255, 3,0,0,0,235,23,131,189,240,251,255,255,32,15,133,220,3,0,0,199,133,0,252,255,255,4,0,0,0,72,139,181,208,251,255,255,139,189,156,251,255,255,186,0,0,0,0,232,19,91,7,0,72,137,133,200,251,255,255,72,139,133,200,251,255,255,72,59,133,208,251,255,255,15,133, 160,3,0,0,72,141,181,16,252,255,255,139,189,156,251,255,255,186,8,0,0,0,232,107,91,7,0,72,131,248,7,15,142,127,3,0,0,72,139,133,208,251,255,255,137,133,152,251,255,255,72,141,133,16,252,255,255,72,137,199,186,4,0,0,0,72,141,53,170,150,7,0,232,183,91, 7,0,133,192,15,133,56,254,255,255,72,141,133,16,252,255,255,139,120,4,139,181,252,251,255,255,232,229,249,255,255,137,192,72,137,133,224,251,255,255,131,133,152,251,255,255,8,233,42,2,0,0,199,133,152,251,255,255,12,0,0,0,131,189,244,251,255,255,19,15, 142,14,3,0,0,199,133,8,252,255,255,1,0,0,0,199,133,0,252,255,255,2,0,0,0,139,133,152,251,255,255,72,152,72,141,181,16,252,255,255,72,1,198,72,141,189,16,252,255,255,186,16,0,0,0,232,59,90,7,0,233,143,1,0,0,72,141,133,16,252,255,255,139,120,4,139,181, 252,251,255,255,232,104,249,255,255,137,192,72,137,133,184,251,255,255,139,133,152,251,255,255,72,152,72,3,133,184,251,255,255,72,131,192,8,72,137,133,176,251,255,255,72,141,133,16,252,255,255,72,137,199,186,4,0,0,0,72,141,53,196,99,7,0,232,223,90,7, 0,133,192,15,133,212,0,0,0,139,133,152,251,255,255,131,192,8,72,152,72,137,133,160,251,255,255,72,139,181,160,251,255,255,139,189,156,251,255,255,186,0,0,0,0,232,166,89,7,0,72,137,133,168,251,255,255,72,139,133,168,251,255,255,72,59,133,160,251,255,255, 15,133,51,2,0,0,72,141,181,16,252,255,255,139,189,156,251,255,255,186,18,0,0,0,232,254,89,7,0,72,131,248,17,15,142,18,2,0,0,72,141,133,16,252,255,255,15,183,0,15,183,248,139,181,252,251,255,255,232,247,248,255,255,15,183,192,137,133,8,252,255,255,72, 141,133,16,252,255,255,15,183,64,6,15,183,248,139,181,252,251,255,255,232,213,248,255,255,15,183,192,137,133,240,251,255,255,131,189,240,251,255,255,16,117,12,199,133,0,252,255,255,2,0,0,0,235,23,131,189,240,251,255,255,24,15,133,173,1,0,0,199,133,0, 252,255,255,3,0,0,0,72,139,181,176,251,255,255,139,189,156,251,255,255,186,0,0,0,0,232,228,88,7,0,72,137,133,168,251,255,255,72,139,133,168,251,255,255,72,59,133,176,251,255,255,15,133,113,1,0,0,72,141,181,16,252,255,255,139,189,156,251,255,255,186,16, 0,0,0,232,60,89,7,0,72,131,248,15,15,142,80,1,0,0,72,139,133,176,251,255,255,137,133,152,251,255,255,72,141,133,16,252,255,255,72,137,199,186,4,0,0,0,72,141,53,114,98,7,0,232,136,89,7,0,133,192,15,133,78,254,255,255,72,141,133,16,252,255,255,139,120, 4,139,181,252,251,255,255,232,182,247,255,255,137,192,72,137,133,224,251,255,255,131,133,152,251,255,255,8,139,133,8,252,255,255,72,99,208,139,133,0,252,255,255,72,152,72,15,175,194,72,137,194,72,15,175,85,16,139,133,152,251,255,255,72,152,72,141,52, 2,139,189,156,251,255,255,186,0,0,0,0,232,26,88,7,0,137,133,248,251,255,255,139,133,248,251,255,255,72,99,200,139,133,8,252,255,255,15,175,133,0,252,255,255,72,152,72,137,194,72,15,175,85,16,139,133,152,251,255,255,72,152,72,141,4,2,72,57,193,116,15, 199,133,116,251,255,255,255,255,255,255,233,145,0,0,0,139,133,8,252,255,255,15,175,133,0,252,255,255,72,152,72,15,175,69,16,72,41,133,224,251,255,255,72,131,189,224,251,255,255,0,121,11,72,199,133,224,251,255,255,0,0,0,0,72,139,149,136,251,255,255,139, 133,4,252,255,255,137,2,72,139,149,128,251,255,255,139,133,8,252,255,255,137,2,72,139,149,144,251,255,255,139,133,0,252,255,255,137,2,72,139,149,120,251,255,255,72,139,133,224,251,255,255,72,137,2,139,141,156,251,255,255,137,141,116,251,255,255,235,21, 232,247,85,7,0,199,0,5,0,0,0,199,133,116,251,255,255,255,255,255,255,139,133,116,251,255,255,72,139,21,30,194,9,0,72,139,77,248,72,51,10,116,5,232,246,85,7,0,201,195,85,72,137,229,72,129,236,80,4,0,0,72,137,189,248,251,255,255,72,137,181,240,251,255, 255,137,149,236,251,255,255,72,137,141,224,251,255,255,76,137,133,216,251,255,255,76,137,141,208,251,255,255,72,139,69,16,72,137,133,200,251,255,255,72,139,5,200,193,9,0,72,139,16,72,137,85,248,49,210,72,141,133,0,252,255,255,72,141,141,16,252,255,255, 72,139,181,240,251,255,255,72,139,189,248,251,255,255,199,4,36,1,0,0,0,65,185,232,3,0,0,73,137,192,72,141,21,92,106,7,0,232,244,28,6,0,137,133,12,252,255,255,131,189,12,252,255,255,0,121,12,199,133,196,251,255,255,255,255,255,255,235,79,72,139,149,200, 251,255,255,72,139,141,208,251,255,255,72,139,181,216,251,255,255,72,139,189,224,251,255,255,68,139,149,236,251,255,255,68,139,157,12,252,255,255,72,139,69,24,72,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,68,137,214,68,137,223,232,152,246,255, 255,137,133,196,251,255,255,139,133,196,251,255,255,72,139,21,16,193,9,0,72,139,77,248,72,51,10,116,5,232,232,84,7,0,201,195,85,72,137,229,72,129,236,80,4,0,0,72,137,189,248,251,255,255,72,137,181,240,251,255,255,137,149,236,251,255,255,72,137,141,224, 251,255,255,76,137,133,216,251,255,255,76,137,141,208,251,255,255,72,139,69,16,72,137,133,200,251,255,255,72,139,5,186,192,9,0,72,139,16,72,137,85,248,49,210,72,141,133,0,252,255,255,72,141,141,16,252,255,255,72,139,181,240,251,255,255,72,139,189,248, 251,255,255,199,4,36,1,0,0,0,65,185,232,3,0,0,73,137,192,72,141,21,78,105,7,0,232,235,86,1,0,137,133,12,252,255,255,131,189,12,252,255,255,0,121,12,199,133,196,251,255,255,255,255,255,255,235,79,72,139,149,200,251,255,255,72,139,141,208,251,255,255,72, 139,181,216,251,255,255,72,139,189,224,251,255,255,68,139,149,236,251,255,255,68,139,157,12,252,255,255,72,139,69,24,72,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,68,137,214,68,137,223,232,138,245,255,255,137,133,196,251,255,255,139,133,196, 251,255,255,72,139,21,2,192,9,0,72,139,77,248,72,51,10,116,5,232,218,83,7,0,201,195,85,72,137,229,137,125,204,137,117,200,72,137,85,192,72,137,77,184,76,137,69,176,68,137,77,172,139,69,204,57,69,200,15,78,69,200,137,69,244,139,69,16,15,175,69,204,137, 69,240,199,69,252,0,0,0,0,72,139,69,176,72,137,69,232,233,37,4,0,0,131,125,16,2,15,133,62,1,0,0,131,125,24,0,15,132,154,0,0,0,199,69,248,0,0,0,0,72,139,69,232,72,137,69,224,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,16,139,69,32,72,152,72,15,175, 69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,86,72,139,69,224,15,182,0,15,182,192,137,194,193,226,24,72,139,69,224,72,255,192,15,182,0,15,182,192,193,224,16,9,208,242,15,42,200,242,15,16,5,229,227,7,0,242,15,89,193,242,15,90,192,72,139,69,216,243, 15,17,0,255,69,248,139,69,240,72,152,72,1,69,224,139,69,32,72,152,72,193,224,2,72,1,69,216,139,69,248,59,69,172,124,162,233,107,3,0,0,199,69,248,0,0,0,0,72,139,69,232,72,137,69,224,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,16,139,69,32,72,152, 72,15,175,69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,86,72,139,69,224,72,255,192,15,182,0,15,182,192,137,194,193,226,24,72,139,69,224,15,182,0,15,182,192,193,224,16,9,208,242,15,42,200,242,15,16,5,75,227,7,0,242,15,89,193,242,15,90,192,72,139,69, 216,243,15,17,0,255,69,248,139,69,240,72,152,72,1,69,224,139,69,32,72,152,72,193,224,2,72,1,69,216,139,69,248,59,69,172,124,162,233,209,2,0,0,131,125,16,3,15,133,100,1,0,0,131,125,24,0,15,132,173,0,0,0,199,69,248,0,0,0,0,72,139,69,232,72,137,69,224,139, 69,252,72,152,72,193,224,3,72,3,69,192,72,139,16,139,69,32,72,152,72,15,175,69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,105,72,139,69,224,15,182,0,15,182,192,137,194,193,226,24,72,139,69,224,72,255,192,15,182,0,15,182,192,193,224,16,9,194,72,139, 69,224,72,131,192,2,15,182,0,15,182,192,193,224,8,9,208,242,15,42,200,242,15,16,5,138,226,7,0,242,15,89,193,242,15,90,192,72,139,69,216,243,15,17,0,255,69,248,139,69,240,72,152,72,1,69,224,139,69,32,72,152,72,193,224,2,72,1,69,216,139,69,248,59,69,172, 124,143,233,16,2,0,0,199,69,248,0,0,0,0,72,139,69,232,72,137,69,224,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,16,139,69,32,72,152,72,15,175,69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,105,72,139,69,224,72,131,192,2,15,182,0,15,182,192,137, 194,193,226,24,72,139,69,224,72,255,192,15,182,0,15,182,192,193,224,16,9,194,72,139,69,224,15,182,0,15,182,192,193,224,8,9,208,242,15,42,200,242,15,16,5,221,225,7,0,242,15,89,193,242,15,90,192,72,139,69,216,243,15,17,0,255,69,248,139,69,240,72,152,72, 1,69,224,139,69,32,72,152,72,193,224,2,72,1,69,216,139,69,248,59,69,172,124,143,233,99,1,0,0,131,125,16,4,15,133,89,1,0,0,131,125,24,0,15,132,170,0,0,0,199,69,248,0,0,0,0,72,139,69,232,72,137,69,224,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,16, 139,69,32,72,152,72,15,175,69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,102,72,139,77,216,72,139,69,224,15,182,0,15,182,192,137,194,193,226,24,72,139,69,224,72,255,192,15,182,0,15,182,192,193,224,16,9,194,72,139,69,224,72,131,192,2,15,182,0,15,182, 192,193,224,8,9,194,72,139,69,224,72,131,192,3,15,182,0,15,182,192,9,208,72,152,72,137,1,255,69,248,139,69,240,72,152,72,1,69,224,139,69,32,72,152,72,193,224,2,72,1,69,216,139,69,248,59,69,172,124,146,233,165,0,0,0,199,69,248,0,0,0,0,72,139,69,232,72, 137,69,224,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,16,139,69,32,72,152,72,15,175,69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,102,72,139,77,216,72,139,69,224,72,131,192,3,15,182,0,15,182,192,137,194,193,226,24,72,139,69,224,72,131,192,2, 15,182,0,15,182,192,193,224,16,9,194,72,139,69,224,72,255,192,15,182,0,15,182,192,193,224,8,9,194,72,139,69,224,15,182,0,15,182,192,9,208,72,152,72,137,1,255,69,248,139,69,240,72,152,72,1,69,224,139,69,32,72,152,72,193,224,2,72,1,69,216,139,69,248,59, 69,172,124,146,255,69,252,139,69,16,72,152,72,1,69,232,139,69,252,59,69,244,15,140,207,251,255,255,139,69,204,137,69,252,235,56,139,69,172,137,69,248,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,0,72,137,69,216,235,16,72,139,85,216,184,0,0,0,0,137, 2,72,131,69,216,4,255,77,248,131,125,248,255,117,231,255,69,252,139,69,252,59,69,200,124,192,201,195,85,72,137,229,137,125,204,137,117,200,72,137,85,192,72,137,77,184,76,137,69,176,68,137,77,172,139,69,204,57,69,200,15,78,69,200,137,69,244,139,69,16, 15,175,69,204,137,69,240,199,69,252,0,0,0,0,72,139,69,176,72,137,69,232,233,37,4,0,0,131,125,16,2,15,133,62,1,0,0,131,125,24,0,15,132,154,0,0,0,199,69,248,0,0,0,0,72,139,69,232,72,137,69,224,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,16,139,69, 32,72,152,72,15,175,69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,86,72,139,69,224,15,182,0,15,182,192,137,194,193,226,24,72,139,69,224,72,255,192,15,182,0,15,182,192,193,224,16,9,208,242,15,42,200,242,15,16,5,37,223,7,0,242,15,89,193,242,15,90,192, 72,139,69,216,243,15,17,0,255,69,248,139,69,240,72,152,72,1,69,224,139,69,32,72,152,72,193,224,2,72,1,69,216,139,69,248,59,69,172,124,162,233,107,3,0,0,199,69,248,0,0,0,0,72,139,69,232,72,137,69,224,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,16, 139,69,32,72,152,72,15,175,69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,86,72,139,69,224,72,255,192,15,182,0,15,182,192,137,194,193,226,24,72,139,69,224,15,182,0,15,182,192,193,224,16,9,208,242,15,42,200,242,15,16,5,139,222,7,0,242,15,89,193,242, 15,90,192,72,139,69,216,243,15,17,0,255,69,248,139,69,240,72,152,72,1,69,224,139,69,32,72,152,72,193,224,2,72,1,69,216,139,69,248,59,69,172,124,162,233,209,2,0,0,131,125,16,3,15,133,100,1,0,0,131,125,24,0,15,132,173,0,0,0,199,69,248,0,0,0,0,72,139,69, 232,72,137,69,224,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,16,139,69,32,72,152,72,15,175,69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,105,72,139,69,224,15,182,0,15,182,192,137,194,193,226,24,72,139,69,224,72,255,192,15,182,0,15,182,192,193, 224,16,9,194,72,139,69,224,72,131,192,2,15,182,0,15,182,192,193,224,8,9,208,242,15,42,200,242,15,16,5,202,221,7,0,242,15,89,193,242,15,90,192,72,139,69,216,243,15,17,0,255,69,248,139,69,240,72,152,72,1,69,224,139,69,32,72,152,72,193,224,2,72,1,69,216, 139,69,248,59,69,172,124,143,233,16,2,0,0,199,69,248,0,0,0,0,72,139,69,232,72,137,69,224,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,16,139,69,32,72,152,72,15,175,69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,105,72,139,69,224,72,131,192,2,15, 182,0,15,182,192,137,194,193,226,24,72,139,69,224,72,255,192,15,182,0,15,182,192,193,224,16,9,194,72,139,69,224,15,182,0,15,182,192,193,224,8,9,208,242,15,42,200,242,15,16,5,29,221,7,0,242,15,89,193,242,15,90,192,72,139,69,216,243,15,17,0,255,69,248, 139,69,240,72,152,72,1,69,224,139,69,32,72,152,72,193,224,2,72,1,69,216,139,69,248,59,69,172,124,143,233,99,1,0,0,131,125,16,4,15,133,89,1,0,0,131,125,24,0,15,132,170,0,0,0,199,69,248,0,0,0,0,72,139,69,232,72,137,69,224,139,69,252,72,152,72,193,224,3, 72,3,69,192,72,139,16,139,69,32,72,152,72,15,175,69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,102,72,139,77,216,72,139,69,224,15,182,0,15,182,192,137,194,193,226,24,72,139,69,224,72,255,192,15,182,0,15,182,192,193,224,16,9,194,72,139,69,224,72,131, 192,2,15,182,0,15,182,192,193,224,8,9,194,72,139,69,224,72,131,192,3,15,182,0,15,182,192,9,208,72,152,72,137,1,255,69,248,139,69,240,72,152,72,1,69,224,139,69,32,72,152,72,193,224,2,72,1,69,216,139,69,248,59,69,172,124,146,233,165,0,0,0,199,69,248,0, 0,0,0,72,139,69,232,72,137,69,224,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,16,139,69,32,72,152,72,15,175,69,184,72,193,224,2,72,141,4,2,72,137,69,216,235,102,72,139,77,216,72,139,69,224,72,131,192,3,15,182,0,15,182,192,137,194,193,226,24,72, 139,69,224,72,131,192,2,15,182,0,15,182,192,193,224,16,9,194,72,139,69,224,72,255,192,15,182,0,15,182,192,193,224,8,9,194,72,139,69,224,15,182,0,15,182,192,9,208,72,152,72,137,1,255,69,248,139,69,240,72,152,72,1,69,224,139,69,32,72,152,72,193,224,2,72, 1,69,216,139,69,248,59,69,172,124,146,255,69,252,139,69,16,72,152,72,1,69,232,139,69,252,59,69,244,15,140,207,251,255,255,139,69,204,137,69,252,235,56,139,69,172,137,69,248,139,69,252,72,152,72,193,224,3,72,3,69,192,72,139,0,72,137,69,216,235,16,72,139, 85,216,184,0,0,0,0,137,2,72,131,69,216,4,255,77,248,131,125,248,255,117,231,255,69,252,139,69,252,59,69,200,124,192,201,195,85,72,137,229,83,72,129,236,152,0,0,0,72,137,125,152,72,137,117,144,72,137,85,136,72,137,77,128,76,137,133,120,255,255,255,76, 137,141,112,255,255,255,72,139,69,144,139,0,137,69,236,72,139,69,136,72,139,0,72,137,69,200,199,69,232,2,0,0,0,199,69,228,0,0,0,0,199,69,224,255,255,255,255,199,69,216,255,255,255,255,199,69,212,0,0,0,0,72,199,69,192,0,0,0,0,72,199,69,184,255,255,255, 127,184,0,0,128,191,137,69,208,233,147,2,0,0,72,139,69,200,72,139,64,8,72,139,0,72,255,192,72,137,69,168,72,139,125,168,72,141,53,226,84,7,0,232,224,75,7,0,133,192,117,76,131,125,236,1,15,142,168,5,0,0,72,139,69,200,72,131,192,16,139,0,131,248,1,15,133, 149,5,0,0,72,139,69,200,72,131,192,16,243,15,16,64,8,243,72,15,44,192,72,137,69,192,72,131,125,192,0,15,136,116,5,0,0,131,109,236,2,72,131,69,200,32,233,33,2,0,0,72,139,125,168,72,141,53,135,84,7,0,232,128,75,7,0,133,192,117,76,131,125,236,1,15,142,72, 5,0,0,72,139,69,200,72,131,192,16,139,0,131,248,1,15,133,53,5,0,0,72,139,69,200,72,131,192,16,243,15,16,64,8,243,72,15,44,192,72,137,69,184,72,131,125,184,0,15,136,20,5,0,0,131,109,236,2,72,131,69,200,32,233,193,1,0,0,72,139,125,168,72,141,53,47,84,7, 0,232,32,75,7,0,133,192,117,83,131,125,236,1,15,142,232,4,0,0,72,139,69,200,72,131,192,16,139,0,131,248,1,15,133,213,4,0,0,72,139,69,200,72,131,192,16,243,15,16,64,8,243,15,44,192,137,69,232,131,125,232,1,15,142,183,4,0,0,131,125,232,4,15,143,173,4,0, 0,131,109,236,2,72,131,69,200,32,233,90,1,0,0,72,139,125,168,72,141,53,206,83,7,0,232,185,74,7,0,133,192,117,20,199,69,212,1,0,0,0,255,77,236,72,131,69,200,16,233,50,1,0,0,72,139,125,168,72,141,53,176,83,7,0,232,145,74,7,0,133,192,117,20,199,69,216,0, 0,0,0,255,77,236,72,131,69,200,16,233,10,1,0,0,72,139,125,168,72,141,53,141,83,7,0,232,105,74,7,0,133,192,117,20,199,69,216,2,0,0,0,255,77,236,72,131,69,200,16,233,226,0,0,0,72,139,125,168,72,141,53,110,83,7,0,232,65,74,7,0,133,192,117,20,199,69,216, 1,0,0,0,255,77,236,72,131,69,200,16,233,186,0,0,0,72,139,125,168,72,141,53,75,83,7,0,232,25,74,7,0,133,192,117,20,199,69,224,1,0,0,0,255,77,236,72,131,69,200,16,233,146,0,0,0,72,139,125,168,72,141,53,39,83,7,0,232,241,73,7,0,133,192,117,17,199,69,224, 0,0,0,0,255,77,236,72,131,69,200,16,235,109,72,139,125,168,72,141,53,191,97,7,0,232,204,73,7,0,133,192,116,24,72,139,125,168,72,141,53,247,82,7,0,232,184,73,7,0,133,192,15,133,134,3,0,0,131,125,236,1,15,142,124,3,0,0,72,139,69,200,72,131,192,16,139,0, 131,248,1,15,133,105,3,0,0,72,139,69,200,72,131,192,16,139,64,8,137,69,208,15,87,192,15,46,69,208,15,131,78,3,0,0,131,109,236,2,72,131,69,200,32,131,125,236,0,126,33,72,139,69,200,139,0,131,248,2,117,22,72,139,69,200,72,139,64,8,72,139,0,15,182,0,60, 45,15,132,70,253,255,255,131,125,236,0,15,132,20,3,0,0,72,139,69,200,139,0,131,248,2,15,133,5,3,0,0,72,139,69,200,72,139,64,8,72,137,69,176,131,125,216,0,15,137,201,1,0,0,72,139,69,176,72,139,56,232,25,73,7,0,72,131,248,4,118,93,72,139,69,176,72,139, 24,72,139,69,176,72,139,56,232,0,73,7,0,72,141,4,3,72,141,120,252,72,141,53,36,82,7,0,232,224,72,7,0,133,192,116,43,72,139,69,176,72,139,24,72,139,69,176,72,139,56,232,213,72,7,0,72,141,4,3,72,141,120,252,72,141,53,254,81,7,0,232,181,72,7,0,133,192,117, 7,199,69,216,1,0,0,0,72,139,69,176,72,139,56,232,170,72,7,0,72,131,248,5,118,93,72,139,69,176,72,139,24,72,139,69,176,72,139,56,232,145,72,7,0,72,141,4,3,72,141,120,251,72,141,53,191,81,7,0,232,113,72,7,0,133,192,116,43,72,139,69,176,72,139,24,72,139, 69,176,72,139,56,232,102,72,7,0,72,141,4,3,72,141,120,251,72,141,53,154,81,7,0,232,70,72,7,0,133,192,117,7,199,69,216,1,0,0,0,72,139,69,176,72,139,56,232,59,72,7,0,72,131,248,4,118,93,72,139,69,176,72,139,24,72,139,69,176,72,139,56,232,34,72,7,0,72,141, 4,3,72,141,120,252,72,141,53,209,80,7,0,232,2,72,7,0,133,192,116,43,72,139,69,176,72,139,24,72,139,69,176,72,139,56,232,247,71,7,0,72,141,4,3,72,141,120,252,72,141,53,49,81,7,0,232,215,71,7,0,133,192,117,7,199,69,216,2,0,0,0,72,139,69,176,72,139,56,232, 204,71,7,0,72,131,248,3,118,93,72,139,69,176,72,139,24,72,139,69,176,72,139,56,232,179,71,7,0,72,141,4,3,72,141,120,253,72,141,53,242,80,7,0,232,147,71,7,0,133,192,116,43,72,139,69,176,72,139,24,72,139,69,176,72,139,56,232,136,71,7,0,72,141,4,3,72,141, 120,253,72,141,53,203,80,7,0,232,104,71,7,0,133,192,117,7,199,69,216,2,0,0,0,131,125,216,0,121,7,199,69,216,0,0,0,0,131,125,232,4,117,32,131,125,216,1,117,26,72,139,125,152,72,141,53,155,80,7,0,184,0,0,0,0,232,1,38,6,0,233,0,1,0,0,131,125,216,0,117,36, 199,69,228,0,0,0,0,131,125,224,1,117,87,72,139,125,152,72,141,53,158,80,7,0,184,0,0,0,0,232,212,37,6,0,235,64,131,125,216,1,117,36,199,69,228,1,0,0,0,131,125,224,0,117,45,72,139,125,152,72,141,53,156,80,7,0,184,0,0,0,0,232,170,37,6,0,235,22,131,125,224, 255,117,10,232,145,229,0,0,137,69,228,235,6,139,69,224,137,69,228,232,129,229,0,0,59,69,228,15,149,192,15,182,192,137,69,220,255,77,236,72,131,69,200,16,72,139,85,144,139,69,236,137,2,72,139,85,136,72,139,69,200,72,137,2,72,139,85,128,72,139,69,176,72, 137,2,72,139,149,120,255,255,255,139,69,216,137,2,72,139,149,112,255,255,255,139,69,232,137,2,72,139,85,16,139,69,220,137,2,72,139,85,32,139,69,212,137,2,72,139,85,40,72,139,69,192,72,137,2,72,139,85,48,72,139,69,184,72,137,2,72,139,85,24,139,69,228, 137,2,72,139,85,56,139,69,208,137,2,199,133,108,255,255,255,0,0,0,0,235,10,199,133,108,255,255,255,255,255,255,255,139,133,108,255,255,255,72,129,196,152,0,0,0,91,201,195,85,72,137,229,72,129,236,160,8,0,0,72,137,189,152,247,255,255,72,137,181,144,247, 255,255,137,149,140,247,255,255,137,141,136,247,255,255,68,137,133,132,247,255,255,68,137,141,128,247,255,255,243,15,17,133,124,247,255,255,72,139,5,192,175,9,0,72,139,16,72,137,85,248,49,210,72,141,69,192,72,137,133,208,247,255,255,72,141,69,192,72, 137,133,200,247,255,255,72,141,69,192,72,137,133,192,247,255,255,199,133,216,247,255,255,0,0,0,0,72,139,181,144,247,255,255,72,141,189,208,251,255,255,186,222,3,0,0,232,154,69,7,0,198,69,174,0,131,189,140,247,255,255,2,15,133,253,1,0,0,72,141,189,208, 251,255,255,232,113,69,7,0,72,137,194,72,141,133,208,251,255,255,72,1,208,72,141,120,252,72,141,53,23,78,7,0,232,72,69,7,0,133,192,116,24,72,141,189,208,251,255,255,186,232,3,0,0,72,141,53,251,77,7,0,232,10,67,7,0,131,189,128,247,255,255,0,116,72,72, 199,192,255,255,255,255,72,131,248,255,116,33,72,199,193,255,255,255,255,72,139,189,200,247,255,255,186,4,0,0,0,72,141,53,198,77,7,0,232,231,66,7,0,235,96,72,139,189,200,247,255,255,186,4,0,0,0,72,141,53,172,77,7,0,232,0,9,0,0,235,70,72,199,192,255,255, 255,255,72,131,248,255,116,33,72,199,193,255,255,255,255,72,139,189,200,247,255,255,186,4,0,0,0,72,141,53,131,77,7,0,232,159,66,7,0,235,24,72,139,189,200,247,255,255,186,4,0,0,0,72,141,53,105,77,7,0,232,184,8,0,0,139,117,24,191,28,0,0,0,232,229,226,255, 255,137,194,72,139,133,200,247,255,255,137,80,4,72,139,133,200,247,255,255,199,64,8,0,0,0,0,131,189,132,247,255,255,3,116,45,131,189,132,247,255,255,4,117,12,199,133,112,247,255,255,6,0,0,0,235,10,199,133,112,247,255,255,3,0,0,0,139,141,112,247,255,255, 137,141,108,247,255,255,235,10,199,133,108,247,255,255,4,0,0,0,139,117,24,139,189,108,247,255,255,232,125,226,255,255,137,194,72,139,133,200,247,255,255,137,80,12,243,15,16,133,124,247,255,255,243,72,15,44,192,137,199,139,117,24,232,90,226,255,255,137, 194,72,139,133,200,247,255,255,137,80,16,139,125,16,139,117,24,232,67,226,255,255,137,194,72,139,133,200,247,255,255,137,80,20,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,200,247,255,255,72,131,199,24,72,141, 53,141,77,7,0,232,147,65,7,0,235,23,72,139,189,200,247,255,255,72,131,199,24,72,141,53,116,77,7,0,232,57,7,0,0,72,139,189,200,247,255,255,72,131,199,24,139,117,24,232,113,226,255,255,199,133,216,247,255,255,28,0,0,0,233,71,6,0,0,131,189,140,247,255,255, 1,15,133,97,3,0,0,139,133,136,247,255,255,15,175,69,16,15,175,133,132,247,255,255,72,152,72,137,133,184,247,255,255,72,141,189,208,251,255,255,232,77,67,7,0,72,137,194,72,141,133,208,251,255,255,72,1,208,72,141,120,252,72,141,53,104,76,7,0,232,36,67, 7,0,133,192,116,69,72,141,189,208,251,255,255,232,32,67,7,0,72,137,194,72,141,133,208,251,255,255,72,1,208,72,141,120,251,72,141,53,69,76,7,0,232,247,66,7,0,133,192,116,24,72,141,189,208,251,255,255,186,232,3,0,0,72,141,53,31,76,7,0,232,185,64,7,0,72, 199,192,255,255,255,255,72,131,248,255,116,33,72,199,193,255,255,255,255,72,139,189,192,247,255,255,186,4,0,0,0,72,141,53,146,75,7,0,232,159,64,7,0,235,24,72,139,189,192,247,255,255,186,4,0,0,0,72,141,53,120,75,7,0,232,184,6,0,0,72,139,133,184,247,255, 255,141,120,44,139,117,24,232,224,224,255,255,137,194,72,139,133,192,247,255,255,137,80,4,72,199,192,255,255,255,255,72,131,248,255,116,37,72,199,193,255,255,255,255,72,139,189,192,247,255,255,72,131,199,8,186,4,0,0,0,72,141,53,47,75,7,0,232,55,64,7, 0,235,28,72,139,189,192,247,255,255,72,131,199,8,186,4,0,0,0,72,141,53,17,75,7,0,232,76,6,0,0,72,199,192,255,255,255,255,72,131,248,255,116,37,72,199,193,255,255,255,255,72,139,189,192,247,255,255,72,131,199,12,186,4,0,0,0,72,141,53,240,74,7,0,232,233, 63,7,0,235,28,72,139,189,192,247,255,255,72,131,199,12,186,4,0,0,0,72,141,53,210,74,7,0,232,254,5,0,0,139,117,24,191,18,0,0,0,232,43,224,255,255,137,194,72,139,133,192,247,255,255,137,80,16,139,125,16,139,117,24,232,102,224,255,255,137,194,72,139,133, 192,247,255,255,102,137,80,20,139,189,136,247,255,255,139,117,24,232,249,223,255,255,137,192,72,137,133,176,247,255,255,72,199,192,255,255,255,255,72,131,248,255,116,37,72,199,193,255,255,255,255,72,139,189,192,247,255,255,72,131,199,22,72,141,181,176, 247,255,255,186,4,0,0,0,232,29,63,7,0,235,28,72,139,189,192,247,255,255,72,131,199,22,72,141,181,176,247,255,255,186,4,0,0,0,232,14,5,0,0,139,133,132,247,255,255,193,224,3,137,199,139,117,24,232,225,223,255,255,137,194,72,139,133,192,247,255,255,102, 137,80,26,72,199,192,255,255,255,255,72,131,248,255,116,37,72,199,193,255,255,255,255,72,139,189,192,247,255,255,72,131,199,28,186,14,0,0,0,72,141,53,88,184,9,0,232,175,62,7,0,235,28,72,139,189,192,247,255,255,72,131,199,28,186,14,0,0,0,72,141,53,58, 184,9,0,232,160,4,0,0,72,139,133,184,247,255,255,137,199,139,117,24,232,35,223,255,255,137,192,72,137,133,176,247,255,255,72,199,192,255,255,255,255,72,131,248,255,116,41,72,199,193,255,255,255,255,72,139,133,192,247,255,255,72,131,192,28,72,141,120, 14,72,141,181,176,247,255,255,186,4,0,0,0,232,67,62,7,0,235,32,72,139,133,192,247,255,255,72,131,192,28,72,141,120,14,72,141,181,176,247,255,255,186,4,0,0,0,232,48,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,39,72,199,193,255,255,255,255,72,139, 133,192,247,255,255,72,131,192,28,72,141,120,18,186,8,0,0,0,190,0,0,0,0,232,251,61,7,0,235,30,72,139,133,192,247,255,255,72,131,192,28,72,141,120,18,186,8,0,0,0,190,0,0,0,0,232,12,4,0,0,199,133,216,247,255,255,54,0,0,0,233,217,2,0,0,139,133,136,247,255, 255,15,175,69,16,15,175,133,132,247,255,255,72,152,72,137,133,168,247,255,255,72,141,189,208,251,255,255,232,236,63,7,0,72,137,194,72,141,133,208,251,255,255,72,1,208,72,141,120,252,72,141,53,165,73,7,0,232,195,63,7,0,133,192,116,24,72,141,189,208,251, 255,255,186,232,3,0,0,72,141,53,137,73,7,0,232,133,61,7,0,72,199,192,255,255,255,255,72,131,248,255,116,33,72,199,193,255,255,255,255,72,139,189,208,247,255,255,186,4,0,0,0,72,141,53,84,72,7,0,232,107,61,7,0,235,24,72,139,189,208,247,255,255,186,4,0, 0,0,72,141,53,58,72,7,0,232,132,3,0,0,72,139,133,168,247,255,255,141,120,36,139,117,24,232,172,221,255,255,137,194,72,139,133,208,247,255,255,137,80,4,72,199,192,255,255,255,255,72,131,248,255,116,37,72,199,193,255,255,255,255,72,139,189,208,247,255, 255,72,131,199,8,186,4,0,0,0,72,141,53,241,71,7,0,232,3,61,7,0,235,28,72,139,189,208,247,255,255,72,131,199,8,186,4,0,0,0,72,141,53,211,71,7,0,232,24,3,0,0,72,199,192,255,255,255,255,72,131,248,255,116,37,72,199,193,255,255,255,255,72,139,189,208,247, 255,255,72,131,199,12,186,4,0,0,0,72,141,53,178,71,7,0,232,181,60,7,0,235,28,72,139,189,208,247,255,255,72,131,199,12,186,4,0,0,0,72,141,53,148,71,7,0,232,202,2,0,0,139,117,24,191,16,0,0,0,232,247,220,255,255,137,194,72,139,133,208,247,255,255,137,80, 16,131,189,132,247,255,255,4,117,12,199,133,116,247,255,255,3,0,0,0,235,10,199,133,116,247,255,255,1,0,0,0,139,117,24,139,189,116,247,255,255,232,16,221,255,255,137,194,72,139,133,208,247,255,255,102,137,80,20,139,125,16,139,117,24,232,248,220,255,255, 137,194,72,139,133,208,247,255,255,102,137,80,22,243,15,16,133,124,247,255,255,243,72,15,44,192,137,199,139,117,24,232,130,220,255,255,137,194,72,139,133,208,247,255,255,137,80,24,243,15,42,69,16,15,40,200,243,15,89,141,124,247,255,255,243,15,42,133, 132,247,255,255,243,15,89,193,243,15,44,192,137,199,139,117,24,232,76,220,255,255,137,194,72,139,133,208,247,255,255,137,80,28,139,69,16,15,175,133,132,247,255,255,137,199,139,117,24,232,126,220,255,255,137,194,72,139,133,208,247,255,255,102,137,80,32, 139,133,132,247,255,255,193,224,3,137,199,139,117,24,232,94,220,255,255,137,194,72,139,133,208,247,255,255,102,137,80,34,72,199,192,255,255,255,255,72,131,248,255,116,37,72,199,193,255,255,255,255,72,139,189,208,247,255,255,72,131,199,36,186,4,0,0,0, 72,141,53,119,120,7,0,232,98,59,7,0,235,28,72,139,189,208,247,255,255,72,131,199,36,186,4,0,0,0,72,141,53,89,120,7,0,232,119,1,0,0,72,139,133,168,247,255,255,137,199,139,117,24,232,160,219,255,255,137,194,72,139,133,208,247,255,255,137,80,40,199,133, 216,247,255,255,44,0,0,0,72,141,149,224,247,255,255,72,141,181,208,251,255,255,72,139,189,152,247,255,255,185,232,3,0,0,232,193,7,1,0,72,141,181,224,247,255,255,72,141,189,224,247,255,255,232,187,244,5,0,72,141,189,224,247,255,255,186,182,1,0,0,190,1, 6,0,0,184,0,0,0,0,232,2,60,7,0,137,133,220,247,255,255,131,189,220,247,255,255,0,121,12,199,133,120,247,255,255,255,255,255,255,235,75,139,133,216,247,255,255,72,99,208,72,141,117,192,139,189,220,247,255,255,232,239,60,7,0,72,137,194,139,133,216,247, 255,255,72,152,72,57,194,125,23,139,189,220,247,255,255,232,208,58,7,0,199,133,120,247,255,255,255,255,255,255,235,12,139,133,220,247,255,255,137,133,120,247,255,255,139,133,120,247,255,255,72,139,21,95,166,9,0,72,139,77,248,72,51,10,116,5,232,55,58, 7,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,29,58,7,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72, 139,85,232,72,139,117,240,72,139,125,248,232,197,57,7,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,139,117,244,72,139,125,248,232,165,57,7,0,201,195,85,72,137,229,72,131,236,32, 72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,72,139,117,240,72,139,125,248,232,161,57,7,0,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,137,77,216,76,137,69,208,76,137,77,200,72,139, 69,200,72,59,69,208,15,141,34,2,0,0,72,129,125,208,254,255,255,127,127,29,72,139,77,208,72,139,85,200,72,139,125,232,72,141,53,72,69,7,0,184,0,0,0,0,232,46,26,6,0,131,125,216,0,15,133,163,0,0,0,139,69,16,72,152,72,15,175,69,200,72,137,69,248,139,125, 220,186,0,0,0,0,190,4,0,0,0,232,60,58,7,0,72,133,192,15,132,164,1,0,0,72,139,69,248,141,120,36,139,117,24,232,119,217,255,255,137,192,72,137,69,240,72,141,117,240,139,125,220,186,4,0,0,0,232,69,59,7,0,72,131,248,3,15,142,116,1,0,0,139,125,220,186,0,0, 0,0,190,40,0,0,0,232,241,57,7,0,72,133,192,15,132,89,1,0,0,72,139,69,248,137,199,139,117,24,232,45,217,255,255,137,192,72,137,69,240,72,141,117,240,139,125,220,186,4,0,0,0,232,251,58,7,0,72,131,248,3,15,142,42,1,0,0,131,125,216,1,15,133,227,0,0,0,139, 125,220,186,0,0,0,0,190,22,0,0,0,232,157,57,7,0,72,133,192,15,132,5,1,0,0,72,139,69,200,137,199,139,117,24,232,217,216,255,255,137,192,72,137,69,240,72,141,117,240,139,125,220,186,4,0,0,0,232,167,58,7,0,72,131,248,3,15,142,214,0,0,0,139,125,220,186,0, 0,0,0,190,4,0,0,0,232,83,57,7,0,72,133,192,15,132,187,0,0,0,139,69,16,72,152,72,15,175,69,200,141,120,38,139,117,24,232,136,216,255,255,137,192,72,137,69,240,72,141,117,240,139,125,220,186,4,0,0,0,232,86,58,7,0,72,131,248,3,15,142,133,0,0,0,139,125,220, 186,0,0,0,0,190,42,0,0,0,232,2,57,7,0,72,133,192,116,110,139,69,16,72,152,72,15,175,69,200,137,199,139,117,24,232,60,216,255,255,137,192,72,137,69,240,72,141,117,240,139,125,220,186,4,0,0,0,232,10,58,7,0,72,131,248,3,126,61,131,125,216,2,117,91,199,69, 240,255,255,255,255,139,125,220,186,0,0,0,0,190,8,0,0,0,232,173,56,7,0,72,133,192,116,25,72,141,117,240,139,125,220,186,4,0,0,0,232,207,57,7,0,72,131,248,3,126,2,235,36,232,46,55,7,0,139,56,232,127,57,7,0,72,139,117,224,72,137,194,72,141,61,124,67,7, 0,184,0,0,0,0,232,9,18,6,0,201,195,85,72,137,229,72,131,236,8,137,125,172,72,137,117,160,72,137,85,152,137,77,148,76,137,69,136,68,137,77,132,243,15,17,69,128,139,69,132,15,175,69,172,137,69,244,199,69,252,0,0,0,0,72,139,69,152,72,137,69,208,233,255, 4,0,0,131,125,132,2,15,133,160,1,0,0,243,15,16,69,128,243,15,16,13,201,199,7,0,243,15,89,193,243,15,17,69,240,131,125,16,0,15,132,192,0,0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,16,72,139,69, 136,72,193,224,2,72,141,4,2,72,137,69,192,235,126,72,139,69,192,243,15,16,0,243,15,89,69,240,243,15,90,200,242,15,16,5,84,199,7,0,242,15,88,193,242,15,44,192,137,69,236,129,109,236,0,128,0,0,129,125,236,1,128,255,255,125,7,199,69,236,1,128,255,255,129, 125,236,255,127,0,0,126,7,199,69,236,255,127,0,0,139,69,236,193,248,8,137,194,72,139,69,200,136,16,72,139,85,200,72,255,194,139,69,236,136,2,255,69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59,69,148,15,140, 118,255,255,255,233,9,4,0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,16,72,139,69,136,72,193,224,2,72,141,4,2,72,137,69,192,235,126,72,139,69,192,243,15,16,0,243,15,89,69,240,243,15,90,200,242,15, 16,5,148,198,7,0,242,15,88,193,242,15,44,192,137,69,232,129,109,232,0,128,0,0,129,125,232,1,128,255,255,125,7,199,69,232,1,128,255,255,129,125,232,255,127,0,0,126,7,199,69,232,255,127,0,0,72,139,85,200,72,255,194,139,69,232,193,248,8,136,2,139,69,232, 137,194,72,139,69,200,136,16,255,69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59,69,148,15,140,118,255,255,255,233,73,3,0,0,131,125,132,3,15,133,198,1,0,0,243,15,16,69,128,243,15,16,13,35,198,7,0,243,15,89, 193,243,15,17,69,228,131,125,16,0,15,132,211,0,0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,16,72,139,69,136,72,193,224,2,72,141,4,2,72,137,69,192,233,142,0,0,0,72,139,69,192,243,15,16,0,243,15, 89,69,228,243,15,90,200,242,15,16,5,175,197,7,0,242,15,88,193,242,15,44,192,137,69,224,129,109,224,0,0,128,0,129,125,224,1,0,128,255,125,7,199,69,224,1,0,128,255,129,125,224,255,255,127,0,126,7,199,69,224,255,255,127,0,139,69,224,193,248,16,137,194,72, 139,69,200,136,16,72,139,85,200,72,255,194,139,69,224,193,248,8,136,2,72,139,85,200,72,131,194,2,139,69,224,136,2,255,69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59,69,148,15,140,102,255,255,255,233,76,2, 0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,16,72,139,69,136,72,193,224,2,72,141,4,2,72,137,69,192,233,142,0,0,0,72,139,69,192,243,15,16,0,243,15,89,69,228,243,15,90,200,242,15,16,5,220,196,7,0, 242,15,88,193,242,15,44,192,137,69,220,129,109,220,0,0,128,0,129,125,220,1,0,128,255,125,7,199,69,220,1,0,128,255,129,125,220,255,255,127,0,126,7,199,69,220,255,255,127,0,72,139,85,200,72,131,194,2,139,69,220,193,248,16,136,2,72,139,85,200,72,255,194, 139,69,220,193,248,8,136,2,139,69,220,137,194,72,139,69,200,136,16,255,69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59,69,148,15,140,102,255,255,255,233,121,1,0,0,131,125,132,4,15,133,111,1,0,0,131,125,16, 0,15,132,181,0,0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,16,72,139,69,136,72,193,224,2,72,141,4,2,72,137,69,192,235,119,72,139,69,192,243,15,16,0,243,15,89,69,128,243,15,17,69,216,72,141,69,216, 72,139,0,72,137,69,184,72,139,69,184,72,193,248,24,137,194,72,139,69,200,136,16,72,139,85,200,72,255,194,72,139,69,184,72,193,248,16,136,2,72,139,85,200,72,131,194,2,72,139,69,184,72,193,248,8,136,2,72,139,85,200,72,131,194,3,72,139,69,184,136,2,255, 69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59,69,148,124,129,233,176,0,0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,16,72,139,69,136,72,193,224,2,72, 141,4,2,72,137,69,192,235,119,72,139,69,192,243,15,16,0,243,15,89,69,128,243,15,17,69,216,72,141,69,216,72,139,0,72,137,69,184,72,139,85,200,72,131,194,3,72,139,69,184,72,193,248,24,136,2,72,139,85,200,72,131,194,2,72,139,69,184,72,193,248,16,136,2,72, 139,85,200,72,255,194,72,139,69,184,72,193,248,8,136,2,72,139,69,184,137,194,72,139,69,200,136,16,255,69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59,69,148,124,129,255,69,252,139,69,132,72,152,72,1,69,208, 139,69,252,59,69,172,15,140,245,250,255,255,201,195,85,72,137,229,72,131,236,8,137,125,172,72,137,117,160,72,137,85,152,137,77,148,76,137,69,136,68,137,77,132,243,15,17,69,128,139,69,132,15,175,69,172,137,69,244,199,69,252,0,0,0,0,72,139,69,152,72,137, 69,208,233,255,4,0,0,131,125,132,2,15,133,160,1,0,0,243,15,16,69,128,243,15,16,13,123,194,7,0,243,15,89,193,243,15,17,69,240,131,125,16,0,15,132,192,0,0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139, 16,72,139,69,136,72,193,224,2,72,141,4,2,72,137,69,192,235,126,72,139,69,192,243,15,16,0,243,15,89,69,240,243,15,90,200,242,15,16,5,6,194,7,0,242,15,88,193,242,15,44,192,137,69,236,129,109,236,0,128,0,0,129,125,236,1,128,255,255,125,7,199,69,236,1,128, 255,255,129,125,236,255,127,0,0,126,7,199,69,236,255,127,0,0,139,69,236,193,248,8,137,194,72,139,69,200,136,16,72,139,85,200,72,255,194,139,69,236,136,2,255,69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59, 69,148,15,140,118,255,255,255,233,9,4,0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,16,72,139,69,136,72,193,224,2,72,141,4,2,72,137,69,192,235,126,72,139,69,192,243,15,16,0,243,15,89,69,240,243,15, 90,200,242,15,16,5,70,193,7,0,242,15,88,193,242,15,44,192,137,69,232,129,109,232,0,128,0,0,129,125,232,1,128,255,255,125,7,199,69,232,1,128,255,255,129,125,232,255,127,0,0,126,7,199,69,232,255,127,0,0,72,139,85,200,72,255,194,139,69,232,193,248,8,136, 2,139,69,232,137,194,72,139,69,200,136,16,255,69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59,69,148,15,140,118,255,255,255,233,73,3,0,0,131,125,132,3,15,133,198,1,0,0,243,15,16,69,128,243,15,16,13,213,192, 7,0,243,15,89,193,243,15,17,69,228,131,125,16,0,15,132,211,0,0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,16,72,139,69,136,72,193,224,2,72,141,4,2,72,137,69,192,233,142,0,0,0,72,139,69,192,243,15, 16,0,243,15,89,69,228,243,15,90,200,242,15,16,5,97,192,7,0,242,15,88,193,242,15,44,192,137,69,224,129,109,224,0,0,128,0,129,125,224,1,0,128,255,125,7,199,69,224,1,0,128,255,129,125,224,255,255,127,0,126,7,199,69,224,255,255,127,0,139,69,224,193,248,16, 137,194,72,139,69,200,136,16,72,139,85,200,72,255,194,139,69,224,193,248,8,136,2,72,139,85,200,72,131,194,2,139,69,224,136,2,255,69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59,69,148,15,140,102,255,255,255, 233,76,2,0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,16,72,139,69,136,72,193,224,2,72,141,4,2,72,137,69,192,233,142,0,0,0,72,139,69,192,243,15,16,0,243,15,89,69,228,243,15,90,200,242,15,16,5,142, 191,7,0,242,15,88,193,242,15,44,192,137,69,220,129,109,220,0,0,128,0,129,125,220,1,0,128,255,125,7,199,69,220,1,0,128,255,129,125,220,255,255,127,0,126,7,199,69,220,255,255,127,0,72,139,85,200,72,131,194,2,139,69,220,193,248,16,136,2,72,139,85,200,72, 255,194,139,69,220,193,248,8,136,2,139,69,220,137,194,72,139,69,200,136,16,255,69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59,69,148,15,140,102,255,255,255,233,121,1,0,0,131,125,132,4,15,133,111,1,0,0,131, 125,16,0,15,132,181,0,0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,16,72,139,69,136,72,193,224,2,72,141,4,2,72,137,69,192,235,119,72,139,69,192,243,15,16,0,243,15,89,69,128,243,15,17,69,216,72,141, 69,216,72,139,0,72,137,69,184,72,139,69,184,72,193,248,24,137,194,72,139,69,200,136,16,72,139,85,200,72,255,194,72,139,69,184,72,193,248,16,136,2,72,139,85,200,72,131,194,2,72,139,69,184,72,193,248,8,136,2,72,139,85,200,72,131,194,3,72,139,69,184,136, 2,255,69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59,69,148,124,129,233,176,0,0,0,199,69,248,0,0,0,0,72,139,69,208,72,137,69,200,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,16,72,139,69,136,72,193,224, 2,72,141,4,2,72,137,69,192,235,119,72,139,69,192,243,15,16,0,243,15,89,69,128,243,15,17,69,216,72,141,69,216,72,139,0,72,137,69,184,72,139,85,200,72,131,194,3,72,139,69,184,72,193,248,24,136,2,72,139,85,200,72,131,194,2,72,139,69,184,72,193,248,16,136, 2,72,139,85,200,72,255,194,72,139,69,184,72,193,248,8,136,2,72,139,69,184,137,194,72,139,69,200,136,16,255,69,248,139,69,244,72,152,72,1,69,200,139,69,24,72,152,72,193,224,2,72,1,69,192,139,69,248,59,69,148,124,129,255,69,252,139,69,132,72,152,72,1,69, 208,139,69,252,59,69,172,15,140,245,250,255,255,201,195,85,72,137,229,72,131,236,16,72,139,61,46,198,9,0,232,189,74,5,0,72,137,69,248,232,81,247,0,0,72,137,194,72,139,69,248,72,137,80,48,72,139,125,248,72,141,53,42,160,9,0,232,199,59,5,0,72,139,69,248, 201,195,85,72,137,229,83,72,129,236,8,9,0,0,72,137,189,56,247,255,255,72,137,181,48,247,255,255,137,149,44,247,255,255,72,137,141,32,247,255,255,72,139,5,73,152,9,0,72,139,16,72,137,85,232,49,210,199,133,216,251,255,255,255,255,255,255,199,133,212,251, 255,255,0,0,0,0,199,133,208,251,255,255,0,0,0,0,199,133,204,251,255,255,0,0,0,0,199,133,200,251,255,255,0,0,0,0,72,199,133,160,251,255,255,0,0,0,0,72,199,133,152,251,255,255,0,0,0,0,72,199,133,136,251,255,255,0,9,61,0,72,199,133,128,251,255,255,0,0,0, 0,72,199,133,120,251,255,255,255,255,255,127,199,133,188,251,255,255,255,255,255,255,233,222,2,0,0,72,139,133,32,247,255,255,72,139,64,8,72,139,0,72,255,192,72,137,133,96,251,255,255,72,139,189,96,251,255,255,72,141,53,173,54,7,0,232,171,45,7,0,133,192, 117,97,131,189,44,247,255,255,1,15,142,176,10,0,0,72,139,133,32,247,255,255,72,131,192,16,139,0,131,248,1,15,133,154,10,0,0,72,139,133,32,247,255,255,72,131,192,16,243,15,16,64,8,243,72,15,44,192,72,137,133,160,251,255,255,72,131,189,160,251,255,255, 0,15,136,112,10,0,0,131,173,44,247,255,255,2,72,131,133,32,247,255,255,32,233,78,2,0,0,72,139,189,96,251,255,255,72,141,53,80,55,7,0,232,51,45,7,0,133,192,15,133,126,1,0,0,131,189,44,247,255,255,4,15,142,52,10,0,0,72,139,133,32,247,255,255,72,131,192, 16,139,0,131,248,1,15,133,30,10,0,0,72,139,133,32,247,255,255,72,131,192,16,243,15,16,64,8,243,15,44,192,137,133,216,251,255,255,131,189,216,251,255,255,0,15,136,247,9,0,0,72,139,133,32,247,255,255,72,131,192,32,139,0,131,248,1,15,133,225,9,0,0,72,139, 133,32,247,255,255,72,131,192,32,243,15,16,64,8,243,15,44,192,137,133,212,251,255,255,139,133,212,251,255,255,133,192,15,142,185,9,0,0,139,133,212,251,255,255,131,248,64,15,143,170,9,0,0,72,139,133,32,247,255,255,72,131,192,48,139,0,131,248,1,15,133, 148,9,0,0,72,139,133,32,247,255,255,72,131,192,48,243,15,16,64,8,243,15,44,192,137,133,208,251,255,255,139,133,208,251,255,255,131,248,1,15,142,107,9,0,0,139,133,208,251,255,255,131,248,4,15,143,92,9,0,0,72,139,133,32,247,255,255,72,131,192,64,139,0, 131,248,2,15,133,70,9,0,0,72,139,133,32,247,255,255,72,131,192,64,72,139,64,8,72,139,0,15,182,0,136,133,223,251,255,255,128,189,223,251,255,255,98,116,22,128,189,223,251,255,255,108,116,13,128,189,223,251,255,255,110,15,133,12,9,0,0,128,189,223,251,255, 255,98,117,12,199,133,204,251,255,255,1,0,0,0,235,32,128,189,223,251,255,255,108,117,12,199,133,204,251,255,255,0,0,0,0,235,11,232,141,202,0,0,137,133,204,251,255,255,131,173,44,247,255,255,5,72,131,133,32,247,255,255,80,233,181,0,0,0,72,139,189,96,251, 255,255,72,141,53,65,68,7,0,232,154,43,7,0,133,192,117,29,199,133,200,251,255,255,1,0,0,0,255,141,44,247,255,255,72,131,133,32,247,255,255,16,233,129,0,0,0,72,139,189,96,251,255,255,72,141,53,142,53,7,0,232,102,43,7,0,133,192,15,133,116,8,0,0,131,189, 44,247,255,255,1,15,142,103,8,0,0,72,139,133,32,247,255,255,72,131,192,16,139,0,131,248,1,15,133,81,8,0,0,72,139,133,32,247,255,255,72,131,192,16,243,15,16,64,8,243,72,15,44,192,72,137,133,136,251,255,255,72,131,189,136,251,255,255,0,15,136,39,8,0,0, 199,133,200,251,255,255,1,0,0,0,131,173,44,247,255,255,2,72,131,133,32,247,255,255,32,131,189,44,247,255,255,0,126,39,72,139,133,32,247,255,255,139,0,131,248,2,117,25,72,139,133,32,247,255,255,72,139,64,8,72,139,0,15,182,0,60,45,15,132,242,252,255,255, 131,189,44,247,255,255,1,15,142,209,7,0,0,131,189,44,247,255,255,65,15,143,196,7,0,0,72,139,133,32,247,255,255,139,0,131,248,2,15,133,178,7,0,0,72,139,133,32,247,255,255,72,139,64,8,72,139,0,72,137,133,112,251,255,255,255,141,44,247,255,255,72,131,133, 32,247,255,255,16,199,133,196,251,255,255,0,0,0,0,233,84,1,0,0,139,133,196,251,255,255,72,152,72,193,224,4,72,3,133,32,247,255,255,139,0,131,248,2,15,133,98,7,0,0,139,157,196,251,255,255,72,141,5,113,242,9,0,72,139,48,139,133,196,251,255,255,72,152,72, 193,224,4,72,3,133,32,247,255,255,72,139,120,8,232,76,76,5,0,72,137,194,72,99,195,72,137,148,197,64,249,255,255,72,99,195,72,139,132,197,64,249,255,255,72,133,192,117,55,139,133,196,251,255,255,72,152,72,193,224,4,72,3,133,32,247,255,255,72,139,64,8, 72,139,16,72,139,189,56,247,255,255,72,141,53,5,52,7,0,184,0,0,0,0,232,162,8,6,0,233,27,7,0,0,139,133,196,251,255,255,72,152,72,193,224,3,72,141,149,64,247,255,255,72,1,194,139,133,196,251,255,255,72,152,72,139,188,197,64,249,255,255,72,141,181,168,251, 255,255,232,47,185,0,0,133,192,117,43,139,133,196,251,255,255,72,152,72,193,224,4,72,3,133,32,247,255,255,72,139,64,8,72,139,48,72,141,61,41,45,7,0,184,0,0,0,0,232,212,5,6,0,72,131,189,152,251,255,255,0,116,53,139,133,168,251,255,255,72,152,72,59,133, 152,251,255,255,116,36,131,189,200,251,255,255,0,117,27,72,141,61,129,51,7,0,184,0,0,0,0,232,221,1,6,0,199,133,200,251,255,255,1,0,0,0,139,133,168,251,255,255,72,152,72,137,133,152,251,255,255,255,133,196,251,255,255,139,133,196,251,255,255,59,133,44, 247,255,255,15,140,154,254,255,255,72,139,133,56,247,255,255,76,139,88,48,72,141,149,212,251,255,255,72,141,141,204,251,255,255,72,141,181,208,251,255,255,139,189,216,251,255,255,76,139,149,112,251,255,255,72,139,133,160,251,255,255,72,137,68,36,8,72, 141,133,120,251,255,255,72,137,4,36,73,137,209,73,137,200,72,137,241,137,250,76,137,214,76,137,223,232,156,209,255,255,137,133,188,251,255,255,131,189,188,251,255,255,0,121,90,232,68,38,7,0,139,0,131,248,5,116,21,232,56,38,7,0,139,56,232,137,40,7,0,72, 137,133,24,247,255,255,235,14,72,141,13,241,50,7,0,72,137,141,24,247,255,255,72,139,149,112,251,255,255,72,139,189,56,247,255,255,72,139,141,24,247,255,255,72,141,53,235,50,7,0,184,0,0,0,0,232,24,7,6,0,233,145,5,0,0,131,189,200,251,255,255,0,15,132,36, 2,0,0,139,189,188,251,255,255,186,1,0,0,0,190,0,0,0,0,232,41,39,7,0,72,137,133,88,251,255,255,139,189,188,251,255,255,186,2,0,0,0,190,0,0,0,0,232,13,39,7,0,72,137,133,80,251,255,255,72,131,189,88,251,255,255,0,120,10,72,131,189,80,251,255,255,0,121,29, 72,139,189,56,247,255,255,72,141,53,141,50,7,0,184,0,0,0,0,232,162,6,6,0,233,27,5,0,0,72,139,181,88,251,255,255,139,189,188,251,255,255,186,0,0,0,0,232,190,38,7,0,72,139,149,88,251,255,255,72,139,133,80,251,255,255,72,137,193,72,41,209,139,149,212,251, 255,255,139,133,208,251,255,255,15,175,194,72,152,72,137,202,72,137,195,72,137,208,72,193,250,63,72,247,251,72,137,133,72,251,255,255,72,139,133,72,251,255,255,72,59,133,136,251,255,255,126,45,72,139,149,136,251,255,255,72,139,189,56,247,255,255,72,141, 53,21,50,7,0,184,0,0,0,0,232,27,6,6,0,72,139,133,136,251,255,255,72,137,133,72,251,255,255,72,139,141,120,251,255,255,139,149,212,251,255,255,139,133,208,251,255,255,15,175,194,72,152,72,137,202,72,137,195,72,137,208,72,193,250,63,72,247,251,72,59,133, 72,251,255,255,125,47,72,139,141,120,251,255,255,139,149,212,251,255,255,139,133,208,251,255,255,15,175,194,72,152,72,137,202,72,137,195,72,137,208,72,193,250,63,72,247,251,72,137,133,72,251,255,255,72,139,133,72,251,255,255,72,137,133,152,251,255,255, 199,133,196,251,255,255,0,0,0,0,233,156,0,0,0,139,133,196,251,255,255,72,152,72,139,188,197,64,249,255,255,72,139,181,152,251,255,255,232,136,197,0,0,139,133,196,251,255,255,72,152,72,139,188,197,64,249,255,255,190,0,0,0,0,232,28,183,0,0,139,133,196, 251,255,255,72,152,72,193,224,3,72,141,149,64,247,255,255,72,1,194,139,133,196,251,255,255,72,152,72,139,188,197,64,249,255,255,72,141,181,168,251,255,255,232,236,181,0,0,139,133,168,251,255,255,72,152,72,59,133,72,251,255,255,116,29,72,139,189,56,247, 255,255,72,141,53,36,49,7,0,184,0,0,0,0,232,255,4,6,0,233,120,3,0,0,255,133,196,251,255,255,139,133,196,251,255,255,59,133,44,247,255,255,15,140,82,255,255,255,72,131,189,152,251,255,255,0,117,11,72,199,133,152,251,255,255,255,255,255,127,72,139,141, 120,251,255,255,139,149,212,251,255,255,139,133,208,251,255,255,15,175,194,72,152,72,137,202,72,137,195,72,137,208,72,193,250,63,72,247,251,72,59,133,152,251,255,255,125,47,72,139,141,120,251,255,255,139,149,212,251,255,255,139,133,208,251,255,255,15, 175,194,72,152,72,137,202,72,137,195,72,137,208,72,193,250,63,72,247,251,72,137,133,152,251,255,255,139,189,188,251,255,255,72,141,53,137,48,7,0,232,15,36,7,0,72,137,133,104,251,255,255,139,149,212,251,255,255,139,133,208,251,255,255,15,175,194,186,0, 4,0,0,137,193,137,208,193,250,31,247,249,137,133,184,251,255,255,72,199,133,128,251,255,255,0,0,0,0,233,221,0,0,0,72,139,133,152,251,255,255,137,194,72,139,133,128,251,255,255,137,211,41,195,137,216,137,133,176,251,255,255,139,133,184,251,255,255,57, 133,176,251,255,255,15,78,133,176,251,255,255,137,133,176,251,255,255,139,133,176,251,255,255,76,99,192,139,149,212,251,255,255,139,133,208,251,255,255,15,175,194,72,99,240,72,139,141,104,251,255,255,72,141,189,224,251,255,255,76,137,194,232,153,35,7, 0,137,133,180,251,255,255,131,189,180,251,255,255,0,126,124,139,133,204,251,255,255,139,149,208,251,255,255,72,141,141,224,251,255,255,76,141,157,64,247,255,255,139,157,212,251,255,255,139,181,180,251,255,255,72,139,189,128,251,255,255,68,139,149,44, 247,255,255,199,68,36,16,2,0,0,0,137,68,36,8,137,20,36,65,137,241,73,137,200,72,137,249,76,137,218,68,137,214,137,223,232,65,211,255,255,139,133,180,251,255,255,72,152,72,1,133,128,251,255,255,72,139,133,128,251,255,255,72,59,133,152,251,255,255,15,140, 15,255,255,255,199,133,196,251,255,255,0,0,0,0,233,129,0,0,0,139,133,196,251,255,255,72,152,72,193,224,3,72,141,149,64,247,255,255,72,1,194,139,133,196,251,255,255,72,152,72,139,188,197,64,249,255,255,72,141,181,168,251,255,255,232,179,179,0,0,72,139, 133,128,251,255,255,137,133,192,251,255,255,235,44,139,133,196,251,255,255,72,152,72,139,148,197,64,247,255,255,139,133,192,251,255,255,72,152,72,193,224,3,72,1,194,184,0,0,0,0,137,2,255,133,192,251,255,255,139,133,168,251,255,255,57,133,192,251,255, 255,124,198,255,133,196,251,255,255,139,133,196,251,255,255,59,133,44,247,255,255,15,140,109,255,255,255,139,133,212,251,255,255,137,133,196,251,255,255,235,105,139,133,196,251,255,255,72,152,72,139,188,197,64,249,255,255,72,141,149,64,251,255,255,72, 141,181,168,251,255,255,232,33,179,0,0,199,133,192,251,255,255,0,0,0,0,235,38,139,133,192,251,255,255,72,152,72,193,224,3,72,137,194,72,139,133,64,251,255,255,72,1,194,184,0,0,0,0,137,2,255,133,192,251,255,255,139,133,168,251,255,255,57,133,192,251,255, 255,124,204,255,133,196,251,255,255,139,133,196,251,255,255,59,133,44,247,255,255,124,137,199,133,196,251,255,255,0,0,0,0,235,27,139,133,196,251,255,255,72,152,72,139,188,197,64,249,255,255,232,166,177,0,0,255,133,196,251,255,255,139,133,196,251,255, 255,59,133,44,247,255,255,124,215,72,139,189,104,251,255,255,232,118,33,7,0,199,133,188,251,255,255,255,255,255,255,235,58,72,139,189,56,247,255,255,72,141,53,222,45,7,0,184,0,0,0,0,232,164,1,6,0,72,141,61,253,45,7,0,184,0,0,0,0,232,105,251,5,0,72,141, 61,36,46,7,0,184,0,0,0,0,232,88,251,5,0,131,189,188,251,255,255,0,120,11,139,189,188,251,255,255,232,218,32,7,0,243,72,15,42,133,128,251,255,255,72,139,133,56,247,255,255,72,139,120,24,232,131,49,5,0,72,139,5,110,140,9,0,72,139,85,232,72,51,16,116,5, 232,70,32,7,0,72,129,196,8,9,0,0,91,201,195,85,72,137,229,83,72,129,236,248,8,0,0,72,137,189,88,247,255,255,72,137,181,80,247,255,255,137,149,76,247,255,255,72,137,141,64,247,255,255,72,139,5,40,140,9,0,72,139,16,72,137,85,232,49,210,72,199,133,112,251, 255,255,0,9,61,0,72,199,133,104,251,255,255,0,0,0,0,199,133,172,251,255,255,255,255,255,255,184,0,0,0,0,137,133,164,251,255,255,72,141,149,216,251,255,255,72,141,141,200,251,255,255,72,141,181,96,251,255,255,72,141,189,64,247,255,255,76,141,149,76,247, 255,255,76,139,157,88,247,255,255,72,141,133,160,251,255,255,72,137,68,36,40,72,141,133,128,251,255,255,72,137,68,36,32,72,141,133,136,251,255,255,72,137,68,36,24,72,141,133,196,251,255,255,72,137,68,36,16,72,141,133,212,251,255,255,72,137,68,36,8,72, 141,133,204,251,255,255,72,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,76,137,214,76,137,223,232,250,212,255,255,133,192,15,133,157,6,0,0,139,133,76,247,255,255,137,133,184,251,255,255,131,189,184,251,255,255,0,15,142,132,6,0,0,131,189,184,251, 255,255,64,15,143,119,6,0,0,243,15,16,141,160,251,255,255,15,87,192,15,46,193,119,2,235,13,232,79,104,5,0,243,15,17,133,160,251,255,255,199,133,192,251,255,255,0,0,0,0,233,82,2,0,0,139,133,192,251,255,255,72,152,72,193,224,4,72,137,194,72,139,133,64, 247,255,255,72,141,4,2,139,0,131,248,2,15,133,36,6,0,0,139,157,192,251,255,255,72,141,5,30,233,9,0,72,139,48,139,133,192,251,255,255,72,152,72,193,224,4,72,137,194,72,139,133,64,247,255,255,72,141,4,2,72,139,120,8,232,242,66,5,0,72,137,194,72,99,195, 72,137,148,197,96,249,255,255,72,99,195,72,139,132,197,96,249,255,255,72,133,192,117,62,139,133,192,251,255,255,72,152,72,193,224,4,72,137,194,72,139,133,64,247,255,255,72,141,4,2,72,139,64,8,72,139,16,72,139,189,88,247,255,255,72,141,53,164,42,7,0,184, 0,0,0,0,232,65,255,5,0,233,224,5,0,0,139,133,192,251,255,255,72,152,72,193,224,3,72,141,149,96,247,255,255,72,1,194,139,133,192,251,255,255,72,152,72,139,188,197,96,249,255,255,72,141,181,156,251,255,255,232,206,175,0,0,133,192,117,50,139,133,192,251, 255,255,72,152,72,193,224,4,72,137,194,72,139,133,64,247,255,255,72,141,4,2,72,139,64,8,72,139,48,72,141,61,193,35,7,0,184,0,0,0,0,232,108,252,5,0,139,133,156,251,255,255,72,99,208,72,139,133,136,251,255,255,72,41,194,72,139,133,128,251,255,255,72,57, 194,125,32,139,133,156,251,255,255,72,99,208,72,139,133,136,251,255,255,72,137,209,72,41,193,72,137,200,72,137,133,128,251,255,255,199,133,188,251,255,255,0,0,0,0,233,208,0,0,0,139,133,192,251,255,255,72,152,72,139,148,197,96,247,255,255,139,133,188, 251,255,255,72,152,72,193,224,3,72,141,4,2,243,15,16,0,15,46,133,164,251,255,255,119,2,235,42,139,133,192,251,255,255,72,152,72,139,148,197,96,247,255,255,139,133,188,251,255,255,72,152,72,193,224,3,72,141,4,2,139,0,137,133,164,251,255,255,235,113,139, 133,192,251,255,255,72,152,72,139,148,197,96,247,255,255,139,133,188,251,255,255,72,152,72,193,224,3,72,141,4,2,243,15,16,8,243,15,16,5,185,172,7,0,15,87,193,15,46,133,164,251,255,255,119,2,235,55,139,133,192,251,255,255,72,152,72,139,148,197,96,247, 255,255,139,133,188,251,255,255,72,152,72,193,224,3,72,141,4,2,243,15,16,8,243,15,16,5,127,172,7,0,15,87,193,243,15,17,133,164,251,255,255,255,133,188,251,255,255,139,133,156,251,255,255,57,133,188,251,255,255,15,140,30,255,255,255,255,133,192,251,255, 255,139,133,192,251,255,255,59,133,184,251,255,255,15,140,156,253,255,255,72,139,133,128,251,255,255,72,133,192,127,36,72,139,149,136,251,255,255,72,139,189,88,247,255,255,72,141,53,75,42,7,0,184,0,0,0,0,232,97,253,5,0,233,0,4,0,0,243,15,16,133,160,251, 255,255,139,149,204,251,255,255,139,141,212,251,255,255,68,139,133,216,251,255,255,72,139,133,128,251,255,255,65,137,194,68,139,157,200,251,255,255,72,139,133,96,251,255,255,72,139,48,72,139,189,80,247,255,255,137,84,36,8,139,133,184,251,255,255,137, 4,36,65,137,201,68,137,209,68,137,218,232,34,216,255,255,137,133,172,251,255,255,131,189,172,251,255,255,0,121,47,232,204,27,7,0,139,56,232,29,30,7,0,72,137,194,72,139,133,96,251,255,255,72,139,48,72,141,61,223,41,7,0,184,0,0,0,0,232,161,246,5,0,233, 106,3,0,0,139,133,196,251,255,255,133,192,117,114,139,133,216,251,255,255,131,248,4,116,68,243,15,16,13,1,171,7,0,243,15,16,133,164,251,255,255,15,46,193,118,47,243,15,90,133,164,251,255,255,72,139,133,96,251,255,255,72,139,48,72,141,61,155,41,7,0,184, 1,0,0,0,232,79,246,5,0,199,133,196,251,255,255,1,0,0,0,235,35,243,15,90,133,164,251,255,255,72,139,133,96,251,255,255,72,139,48,72,141,61,146,41,7,0,184,1,0,0,0,232,32,246,5,0,139,133,196,251,255,255,133,192,116,98,15,87,201,243,15,16,133,164,251,255, 255,15,46,193,119,2,235,46,243,15,90,141,164,251,255,255,242,15,16,5,246,171,7,0,242,15,89,200,242,15,16,5,250,171,7,0,242,15,94,193,242,15,90,192,243,15,17,133,52,247,255,255,235,16,243,15,16,5,80,170,7,0,243,15,17,133,52,247,255,255,243,15,16,133,52, 247,255,255,243,15,17,133,168,251,255,255,235,11,184,0,0,128,63,137,133,168,251,255,255,139,133,216,251,255,255,15,175,133,184,251,255,255,186,0,4,0,0,137,193,137,208,193,250,31,247,249,137,133,180,251,255,255,72,199,133,104,251,255,255,0,0,0,0,233,94, 1,0,0,72,139,133,128,251,255,255,137,194,72,139,133,104,251,255,255,137,209,41,193,137,200,137,133,152,251,255,255,139,133,180,251,255,255,57,133,152,251,255,255,15,78,133,152,251,255,255,137,133,152,251,255,255,139,133,212,251,255,255,139,149,216,251, 255,255,72,139,141,136,251,255,255,72,141,189,224,251,255,255,76,141,149,96,247,255,255,68,139,157,76,247,255,255,243,15,16,133,168,251,255,255,139,181,152,251,255,255,199,68,36,8,2,0,0,0,137,4,36,65,137,209,73,137,200,137,241,72,137,250,76,137,214,68, 137,223,232,51,232,255,255,139,133,216,251,255,255,15,175,133,184,251,255,255,15,175,133,152,251,255,255,72,99,208,72,141,181,224,251,255,255,139,189,172,251,255,255,232,93,28,7,0,137,133,144,251,255,255,139,133,216,251,255,255,15,175,133,184,251,255, 255,15,175,133,152,251,255,255,59,133,144,251,255,255,126,90,232,162,25,7,0,139,56,232,243,27,7,0,72,137,194,72,139,133,96,251,255,255,72,139,48,72,141,61,234,37,7,0,184,0,0,0,0,232,119,244,5,0,131,189,144,251,255,255,0,126,104,139,133,216,251,255,255, 15,175,133,184,251,255,255,139,149,144,251,255,255,137,193,137,208,193,250,31,247,249,72,152,72,1,133,104,251,255,255,235,65,139,133,152,251,255,255,72,152,72,1,133,104,251,255,255,139,133,152,251,255,255,72,152,72,141,20,0,72,139,133,136,251,255,255, 72,141,4,2,72,137,133,136,251,255,255,72,139,133,128,251,255,255,72,57,133,104,251,255,255,15,140,142,254,255,255,131,189,172,251,255,255,0,120,105,139,149,204,251,255,255,139,133,216,251,255,255,137,193,15,175,141,184,251,255,255,72,139,181,128,251, 255,255,139,189,200,251,255,255,72,139,133,96,251,255,255,76,139,16,72,139,133,104,251,255,255,68,139,157,172,251,255,255,72,139,157,88,247,255,255,137,84,36,8,137,12,36,73,137,193,73,137,240,137,249,68,137,218,76,137,214,72,137,223,232,72,223,255,255, 139,189,172,251,255,255,232,42,25,7,0,243,72,15,42,133,104,251,255,255,243,72,15,44,192,72,137,133,56,247,255,255,235,106,72,139,189,88,247,255,255,72,141,53,249,38,7,0,184,0,0,0,0,232,143,249,5,0,72,141,61,24,39,7,0,184,0,0,0,0,232,84,243,5,0,72,141, 61,74,39,7,0,184,0,0,0,0,232,67,243,5,0,72,141,61,86,39,7,0,184,0,0,0,0,232,50,243,5,0,131,189,172,251,255,255,0,120,11,139,189,172,251,255,255,232,180,24,7,0,72,199,133,56,247,255,255,0,0,0,0,72,139,133,56,247,255,255,72,139,21,79,132,9,0,72,139,77, 232,72,51,10,116,5,232,39,24,7,0,72,129,196,248,8,0,0,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,69,232,72,139,112,48,72,139,77,208,139,85,220,72,139,125,232,232,178,247,255,255,72,137,69,248, 243,72,15,42,69,248,72,139,69,232,72,139,120,24,232,255,40,5,0,201,195,85,72,137,229,83,72,131,236,8,72,141,29,42,235,255,255,72,141,61,202,38,7,0,232,225,254,4,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0, 0,232,27,237,4,0,72,137,5,46,177,9,0,72,141,61,245,165,7,0,232,168,254,4,0,72,141,53,28,235,255,255,72,139,61,20,177,9,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,31,244,4,0,72,141,61,111,38,7,0,232,118,254,4,0,72,141,53,42,255,255,255,72, 139,61,226,176,9,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,237,243,4,0,72,131,196,8,91,201,195,85,72,137,229,83,72,129,236,232,0,0,0,72,137,189,40,255,255,255,72,139,5,33,131,9,0,72,139,16,72,137,85,232,49,210,72,139,133,40,255,255,255, 72,137,133,96,255,255,255,72,139,189,96,255,255,255,72,129,199,208,2,0,0,232,123,24,7,0,72,139,133,96,255,255,255,139,128,104,2,0,0,133,192,117,54,72,139,189,96,255,255,255,72,129,199,64,3,0,0,232,51,24,7,0,72,139,181,96,255,255,255,72,129,198,208,2, 0,0,72,139,189,96,255,255,255,72,129,199,16,3,0,0,232,24,24,7,0,235,185,72,139,133,96,255,255,255,139,128,104,2,0,0,131,248,1,15,133,240,6,0,0,72,139,133,96,255,255,255,72,139,128,144,2,0,0,72,137,133,80,255,255,255,72,199,133,72,255,255,255,255,255, 255,127,72,139,133,96,255,255,255,139,128,124,2,0,0,137,133,124,255,255,255,72,139,133,96,255,255,255,139,128,128,2,0,0,137,133,120,255,255,255,72,139,133,96,255,255,255,139,128,136,2,0,0,137,133,116,255,255,255,72,139,133,96,255,255,255,139,128,132, 2,0,0,137,133,112,255,255,255,72,139,133,96,255,255,255,72,139,128,112,2,0,0,72,137,133,64,255,255,255,72,139,133,96,255,255,255,72,139,120,48,232,168,226,0,0,72,139,0,72,137,133,56,255,255,255,72,139,133,96,255,255,255,199,128,104,2,0,0,4,0,0,0,72,139, 133,96,255,255,255,199,128,120,2,0,0,0,0,0,0,72,139,133,96,255,255,255,139,128,160,2,0,0,133,192,120,101,72,139,133,96,255,255,255,139,128,160,2,0,0,137,69,140,72,139,189,96,255,255,255,72,129,199,208,2,0,0,232,57,23,7,0,139,125,140,232,237,21,7,0,72, 139,189,96,255,255,255,72,129,199,208,2,0,0,232,18,23,7,0,72,139,133,96,255,255,255,199,128,160,2,0,0,255,255,255,255,72,139,133,96,255,255,255,139,128,104,2,0,0,131,248,4,15,133,34,5,0,0,72,139,189,96,255,255,255,72,129,199,208,2,0,0,232,228,22,7,0, 72,141,149,116,255,255,255,72,141,141,112,255,255,255,72,141,181,120,255,255,255,139,189,124,255,255,255,76,139,149,64,255,255,255,76,139,157,56,255,255,255,72,139,133,80,255,255,255,72,137,68,36,8,72,141,133,72,255,255,255,72,137,4,36,73,137,209,73, 137,200,72,137,241,137,250,76,137,214,76,137,223,232,240,190,255,255,137,69,140,72,139,189,96,255,255,255,72,129,199,208,2,0,0,232,108,22,7,0,139,149,120,255,255,255,72,139,133,96,255,255,255,137,144,128,2,0,0,139,149,116,255,255,255,72,139,133,96,255, 255,255,137,144,136,2,0,0,139,149,112,255,255,255,72,139,133,96,255,255,255,137,144,132,2,0,0,72,139,149,96,255,255,255,139,69,140,137,130,160,2,0,0,72,139,149,72,255,255,255,72,139,133,96,255,255,255,72,137,144,152,2,0,0,131,125,140,0,121,42,232,59, 20,7,0,139,16,72,139,133,96,255,255,255,137,144,120,2,0,0,72,139,133,96,255,255,255,199,128,176,2,0,0,1,0,0,0,233,21,4,0,0,72,139,133,96,255,255,255,139,128,104,2,0,0,131,248,4,15,133,255,3,0,0,72,139,133,96,255,255,255,199,128,168,2,0,0,0,0,0,0,72,139, 133,96,255,255,255,139,112,72,72,139,133,96,255,255,255,139,72,72,72,139,133,96,255,255,255,139,144,128,2,0,0,72,139,133,96,255,255,255,139,128,136,2,0,0,15,175,194,193,224,7,137,202,137,195,137,208,193,250,31,247,251,137,208,137,242,41,194,72,139,133, 96,255,255,255,137,144,164,2,0,0,72,139,133,96,255,255,255,139,136,164,2,0,0,72,139,133,96,255,255,255,139,128,128,2,0,0,137,194,193,226,4,72,139,133,96,255,255,255,139,128,136,2,0,0,15,175,208,72,139,133,96,255,255,255,139,128,80,2,0,0,15,175,194,137, 202,137,195,137,208,193,250,31,247,251,137,194,72,139,133,96,255,255,255,137,144,184,2,0,0,72,139,133,96,255,255,255,139,144,184,2,0,0,72,139,133,96,255,255,255,137,144,180,2,0,0,233,14,3,0,0,72,139,133,96,255,255,255,139,128,164,2,0,0,137,133,108,255, 255,255,72,139,133,96,255,255,255,139,128,176,2,0,0,133,192,15,133,252,2,0,0,72,139,133,96,255,255,255,139,144,168,2,0,0,72,139,133,96,255,255,255,139,128,172,2,0,0,57,194,15,140,193,0,0,0,72,139,133,96,255,255,255,139,128,172,2,0,0,133,192,117,28,72, 139,133,96,255,255,255,139,144,168,2,0,0,139,133,108,255,255,255,41,208,61,0,0,1,0,126,91,72,139,133,96,255,255,255,139,144,168,2,0,0,139,133,108,255,255,255,41,208,137,69,128,129,125,128,0,0,1,0,126,7,199,69,128,0,0,1,0,139,69,128,72,99,208,72,139,133, 96,255,255,255,72,139,128,152,2,0,0,72,57,194,15,142,231,0,0,0,72,139,133,96,255,255,255,72,139,128,152,2,0,0,137,69,128,233,209,0,0,0,72,139,189,96,255,255,255,72,129,199,64,3,0,0,232,228,19,7,0,72,139,181,96,255,255,255,72,129,198,208,2,0,0,72,139, 189,96,255,255,255,72,129,199,16,3,0,0,232,201,19,7,0,233,3,2,0,0,72,139,133,96,255,255,255,139,144,172,2,0,0,72,139,133,96,255,255,255,139,128,168,2,0,0,137,209,41,193,137,200,255,200,137,69,128,129,125,128,255,255,0,0,127,57,72,139,189,96,255,255,255, 72,129,199,64,3,0,0,232,125,19,7,0,72,139,181,96,255,255,255,72,129,198,208,2,0,0,72,139,189,96,255,255,255,72,129,199,16,3,0,0,232,98,19,7,0,233,156,1,0,0,199,69,128,0,0,1,0,139,69,128,72,99,208,72,139,133,96,255,255,255,72,139,128,152,2,0,0,72,57,194, 126,17,72,139,133,96,255,255,255,72,139,128,152,2,0,0,137,69,128,72,139,133,96,255,255,255,139,128,160,2,0,0,137,69,140,72,139,133,96,255,255,255,72,139,64,64,72,137,133,88,255,255,255,72,139,133,96,255,255,255,139,128,168,2,0,0,137,69,136,72,139,189, 96,255,255,255,72,129,199,208,2,0,0,232,17,19,7,0,139,69,128,72,99,208,139,69,136,72,152,72,137,198,72,3,181,88,255,255,255,139,125,140,232,6,19,7,0,137,69,132,72,139,189,96,255,255,255,72,129,199,208,2,0,0,232,210,18,7,0,72,139,133,96,255,255,255,139, 128,104,2,0,0,131,248,4,15,133,243,0,0,0,131,125,132,0,121,25,232,233,16,7,0,139,16,72,139,133,96,255,255,255,137,144,120,2,0,0,233,212,0,0,0,131,125,132,0,117,22,72,139,133,96,255,255,255,199,128,176,2,0,0,1,0,0,0,233,184,0,0,0,72,139,133,96,255,255, 255,139,128,168,2,0,0,137,194,3,85,132,72,139,133,96,255,255,255,137,144,168,2,0,0,72,139,133,96,255,255,255,72,139,144,152,2,0,0,139,69,132,72,152,72,41,194,72,139,133,96,255,255,255,72,137,144,152,2,0,0,72,139,133,96,255,255,255,72,139,128,152,2,0, 0,72,133,192,127,19,72,139,133,96,255,255,255,199,128,176,2,0,0,1,0,0,0,235,79,72,139,133,96,255,255,255,139,128,168,2,0,0,59,133,108,255,255,255,117,17,72,139,133,96,255,255,255,199,128,168,2,0,0,0,0,0,0,72,139,189,96,255,255,255,72,129,199,64,3,0,0, 232,187,17,7,0,72,139,133,96,255,255,255,139,128,104,2,0,0,131,248,4,15,132,220,252,255,255,72,139,133,96,255,255,255,139,128,104,2,0,0,131,248,4,117,17,72,139,133,96,255,255,255,199,128,104,2,0,0,0,0,0,0,72,139,133,96,255,255,255,139,128,160,2,0,0,133, 192,120,79,72,139,133,96,255,255,255,139,128,160,2,0,0,137,69,140,72,139,189,96,255,255,255,72,129,199,208,2,0,0,232,126,17,7,0,139,125,140,232,50,16,7,0,72,139,189,96,255,255,255,72,129,199,208,2,0,0,232,87,17,7,0,72,139,133,96,255,255,255,199,128,160, 2,0,0,255,255,255,255,72,139,189,96,255,255,255,72,129,199,64,3,0,0,232,15,17,7,0,233,179,248,255,255,72,139,133,96,255,255,255,139,128,104,2,0,0,131,248,2,15,133,155,0,0,0,72,139,133,96,255,255,255,139,128,160,2,0,0,133,192,120,79,72,139,133,96,255, 255,255,139,128,160,2,0,0,137,69,140,72,139,189,96,255,255,255,72,129,199,208,2,0,0,232,240,16,7,0,139,125,140,232,164,15,7,0,72,139,189,96,255,255,255,72,129,199,208,2,0,0,232,201,16,7,0,72,139,133,96,255,255,255,199,128,160,2,0,0,255,255,255,255,72, 139,133,96,255,255,255,139,128,104,2,0,0,131,248,2,117,17,72,139,133,96,255,255,255,199,128,104,2,0,0,0,0,0,0,72,139,189,96,255,255,255,72,129,199,64,3,0,0,232,94,16,7,0,233,2,248,255,255,72,139,133,96,255,255,255,139,128,104,2,0,0,131,248,3,15,133,236, 247,255,255,72,139,133,96,255,255,255,139,128,160,2,0,0,133,192,120,79,72,139,133,96,255,255,255,139,128,160,2,0,0,137,69,140,72,139,189,96,255,255,255,72,129,199,208,2,0,0,232,63,16,7,0,139,125,140,232,243,14,7,0,72,139,189,96,255,255,255,72,129,199, 208,2,0,0,232,24,16,7,0,72,139,133,96,255,255,255,199,128,160,2,0,0,255,255,255,255,72,139,133,96,255,255,255,199,128,104,2,0,0,0,0,0,0,72,139,189,96,255,255,255,72,129,199,64,3,0,0,232,191,15,7,0,72,139,189,96,255,255,255,72,129,199,208,2,0,0,232,220, 15,7,0,184,0,0,0,0,72,139,21,64,122,9,0,72,139,93,232,72,51,26,116,5,232,24,14,7,0,72,129,196,232,0,0,0,91,201,195,85,72,137,229,72,131,236,48,243,15,17,69,220,243,15,17,77,216,243,15,16,69,220,243,15,44,192,137,69,252,243,15,16,69,216,243,15,44,192, 137,69,248,131,125,252,0,127,9,199,69,252,1,0,0,0,235,13,131,125,252,64,126,7,199,69,252,64,0,0,0,131,125,248,0,127,11,139,69,252,193,224,18,137,69,248,235,34,129,125,248,255,255,3,0,127,9,199,69,248,0,0,4,0,235,16,129,125,248,0,0,0,1,126,7,199,69,248, 0,0,0,1,139,69,248,72,99,248,232,209,14,5,0,72,137,69,224,72,131,125,224,0,117,13,72,199,69,208,0,0,0,0,233,156,1,0,0,72,139,61,21,167,9,0,232,156,43,5,0,72,137,69,232,199,69,244,0,0,0,0,235,27,72,141,61,116,28,7,0,232,117,244,4,0,72,137,198,72,139,125, 232,232,165,28,5,0,255,69,244,139,69,244,59,69,252,124,221,72,139,85,232,139,69,252,137,66,76,72,139,125,232,72,141,53,35,129,9,0,232,128,28,5,0,72,137,194,72,139,69,232,72,137,144,88,2,0,0,72,139,125,232,72,129,199,208,2,0,0,190,0,0,0,0,232,145,14,7, 0,72,139,125,232,72,129,199,16,3,0,0,190,0,0,0,0,232,88,14,7,0,72,139,125,232,72,129,199,64,3,0,0,190,0,0,0,0,232,67,14,7,0,72,139,69,232,199,128,80,2,0,0,128,0,0,0,72,139,69,232,199,128,96,2,0,0,0,0,0,0,72,141,53,220,0,0,0,72,139,125,232,232,138,52, 5,0,72,137,194,72,139,69,232,72,137,80,56,232,102,215,0,0,72,137,194,72,139,69,232,72,137,80,48,72,139,69,232,199,128,128,2,0,0,2,0,0,0,72,139,69,232,199,128,136,2,0,0,1,0,0,0,72,139,69,232,199,128,160,2,0,0,255,255,255,255,72,139,85,232,72,139,69,224, 72,137,66,64,72,139,85,232,139,69,248,137,66,72,72,139,69,232,199,128,104,2,0,0,0,0,0,0,72,139,69,232,139,144,104,2,0,0,72,139,69,232,137,144,172,2,0,0,72,139,69,232,139,144,172,2,0,0,72,139,69,232,137,144,168,2,0,0,72,139,69,232,139,144,168,2,0,0,72, 139,69,232,137,144,164,2,0,0,72,139,125,232,72,129,199,112,3,0,0,72,139,77,232,72,141,21,199,244,255,255,190,0,0,0,0,232,100,13,7,0,72,139,69,232,72,137,69,208,72,139,69,208,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,184, 88,2,0,0,232,219,27,5,0,201,195,85,72,137,229,72,131,196,128,72,137,125,184,72,139,69,184,72,131,192,8,72,139,0,72,137,69,208,72,139,69,208,139,128,80,2,0,0,137,69,252,72,139,69,208,139,64,76,137,69,248,72,139,69,208,139,128,128,2,0,0,137,69,236,72,139, 69,208,139,128,132,2,0,0,137,69,232,72,139,69,208,139,128,96,2,0,0,131,248,2,15,133,191,3,0,0,72,139,69,208,139,128,136,2,0,0,137,69,220,72,139,125,208,72,129,199,208,2,0,0,232,212,12,7,0,139,69,220,15,175,69,252,15,175,69,236,137,69,228,235,109,72,139, 125,208,72,129,199,16,3,0,0,232,144,12,7,0,72,139,117,208,72,129,198,208,2,0,0,72,139,125,208,72,129,199,64,3,0,0,232,123,12,7,0,72,139,69,208,139,128,80,2,0,0,137,69,252,72,139,69,208,139,128,128,2,0,0,137,69,236,72,139,69,208,139,128,136,2,0,0,137, 69,220,139,69,220,15,175,69,252,15,175,69,236,137,69,228,72,139,69,208,139,128,132,2,0,0,137,69,232,72,139,69,208,139,128,176,2,0,0,133,192,117,57,72,139,69,208,139,144,168,2,0,0,72,139,69,208,139,128,172,2,0,0,57,194,124,33,72,139,69,208,139,144,168, 2,0,0,72,139,69,208,139,128,172,2,0,0,3,69,228,255,200,57,194,15,140,76,255,255,255,72,139,69,208,139,128,176,2,0,0,133,192,15,132,216,1,0,0,72,139,69,208,139,144,168,2,0,0,72,139,69,208,139,128,172,2,0,0,57,194,15,140,188,1,0,0,72,139,69,208,139,144, 168,2,0,0,72,139,69,208,139,128,172,2,0,0,3,69,228,255,200,57,194,15,141,155,1,0,0,72,139,69,208,139,128,120,2,0,0,133,192,116,83,72,139,69,208,139,128,120,2,0,0,131,248,5,116,21,72,139,69,208,139,184,120,2,0,0,232,37,12,7,0,72,137,69,168,235,11,72,141, 5,144,22,7,0,72,137,69,168,72,139,69,208,72,139,144,112,2,0,0,72,139,125,208,72,139,77,168,72,141,53,245,24,7,0,184,0,0,0,0,232,188,234,5,0,72,139,69,208,72,139,120,56,102,15,87,192,232,132,51,5,0,72,139,69,208,199,128,96,2,0,0,0,0,0,0,72,139,69,208, 139,144,168,2,0,0,72,139,69,208,139,128,172,2,0,0,137,209,41,193,137,200,141,80,1,139,69,220,15,175,69,236,137,193,137,208,193,250,31,247,249,137,69,216,131,125,216,0,116,96,72,139,69,208,72,139,80,64,72,139,69,208,139,128,172,2,0,0,72,152,72,141,4,2, 72,137,193,72,139,117,208,72,131,198,80,139,85,216,139,125,248,68,139,85,220,199,68,36,16,1,0,0,0,139,69,232,137,68,36,8,139,69,236,137,4,36,65,137,209,73,137,200,185,0,0,0,0,72,137,242,137,254,68,137,215,232,59,181,255,255,139,69,216,41,69,252,199,69, 244,0,0,0,0,235,67,139,69,252,137,69,240,139,69,244,72,139,85,208,72,152,72,139,84,194,80,139,69,216,72,152,72,193,224,2,72,141,4,2,72,137,69,200,235,16,72,139,85,200,184,0,0,0,0,137,2,72,131,69,200,4,255,77,240,131,125,240,255,117,231,255,69,244,139, 69,244,59,69,248,124,181,72,139,125,208,72,129,199,16,3,0,0,232,35,10,7,0,72,139,125,208,72,129,199,208,2,0,0,232,67,10,7,0,72,139,69,184,72,131,192,16,72,137,69,176,233,71,1,0,0,72,139,69,208,72,139,80,64,72,139,69,208,139,128,172,2,0,0,72,152,72,141, 4,2,72,137,193,72,139,117,208,72,131,198,80,139,85,252,139,125,248,68,139,85,220,199,68,36,16,1,0,0,0,139,69,232,137,68,36,8,139,69,236,137,4,36,65,137,209,73,137,200,185,0,0,0,0,72,137,242,137,254,68,137,215,232,86,180,255,255,72,139,69,208,139,128, 172,2,0,0,137,194,3,85,228,72,139,69,208,137,144,172,2,0,0,72,139,69,208,139,144,172,2,0,0,72,139,69,208,139,128,164,2,0,0,57,194,124,14,72,139,69,208,199,128,172,2,0,0,0,0,0,0,72,139,69,208,139,128,180,2,0,0,141,80,255,72,139,69,208,137,144,180,2,0, 0,72,139,69,208,139,128,180,2,0,0,133,192,127,36,72,139,125,208,72,129,199,16,3,0,0,232,52,9,7,0,72,139,69,208,139,144,184,2,0,0,72,139,69,208,137,144,180,2,0,0,72,139,125,208,72,129,199,208,2,0,0,232,64,9,7,0,235,71,199,69,244,0,0,0,0,235,54,139,69, 252,137,69,240,139,69,244,72,139,85,208,72,152,72,139,68,194,80,72,137,69,200,235,16,72,139,85,200,184,0,0,0,0,137,2,72,131,69,200,4,255,77,240,131,125,240,255,117,231,255,69,244,139,69,244,59,69,248,124,194,72,139,77,184,72,131,193,16,72,137,77,176, 72,139,69,176,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,128,96,2,0,0,131,248,1,117,16,72,139,69,248,199,128,96,2,0,0,2,0,0,0,235,21,72,139,125,248,72,141,53,63,22,7,0,184,0,0,0,0,232,245,231,5,0,201,195,85,72,137,229,72,131, 236,16,72,137,125,248,72,139,125,248,72,129,199,208,2,0,0,232,123,8,7,0,72,139,69,248,199,128,96,2,0,0,0,0,0,0,72,139,69,248,199,128,104,2,0,0,2,0,0,0,72,139,125,248,72,129,199,16,3,0,0,232,43,8,7,0,72,139,125,248,72,129,199,208,2,0,0,232,75,8,7,0,201, 195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,117,4,122,2,235,11,72,139,125,248,232,61,255,255,255,235,9,72,139,125,248,232,116,255,255,255,201,195,85,72,137,229,72,131,236,96,72,137,125,216,72,137,117,208,137, 85,204,72,137,77,192,72,139,85,192,139,117,204,191,0,0,0,0,232,248,111,4,0,72,137,69,232,72,139,85,192,139,117,204,191,1,0,0,0,232,100,111,4,0,243,15,17,69,252,72,139,85,192,139,117,204,191,2,0,0,0,232,78,111,4,0,243,15,17,69,248,72,139,85,192,139,117, 204,191,3,0,0,0,232,56,111,4,0,243,15,17,69,244,72,139,85,192,139,117,204,191,4,0,0,0,232,34,111,4,0,243,15,17,69,240,72,139,85,192,139,117,204,191,5,0,0,0,232,139,111,4,0,72,137,69,224,72,139,69,232,72,139,0,15,182,0,132,192,15,132,243,1,0,0,72,139, 125,216,72,129,199,208,2,0,0,232,78,7,7,0,72,139,69,216,199,128,104,2,0,0,1,0,0,0,72,139,69,232,72,139,16,72,139,69,216,72,137,144,112,2,0,0,72,139,69,216,199,128,172,2,0,0,0,0,0,0,72,139,69,216,199,128,168,2,0,0,0,0,0,0,72,139,69,224,72,139,0,15,182, 0,60,98,117,16,72,139,69,216,199,128,132,2,0,0,1,0,0,0,235,84,72,139,69,224,72,139,0,15,182,0,60,108,117,16,72,139,69,216,199,128,132,2,0,0,0,0,0,0,235,54,72,139,69,224,72,139,0,15,182,0,132,192,116,23,72,139,125,216,72,141,53,137,20,7,0,184,0,0,0,0, 232,15,230,5,0,235,17,232,252,165,0,0,137,194,72,139,69,216,137,144,132,2,0,0,15,87,201,243,15,16,69,252,15,46,193,119,2,235,16,243,15,16,69,252,243,72,15,44,192,72,137,69,168,235,8,72,199,69,168,0,0,0,0,72,139,69,216,72,139,85,168,72,137,144,144,2,0, 0,15,87,201,243,15,16,69,248,15,46,193,118,2,235,37,15,87,192,15,46,69,248,122,2,116,2,235,9,199,69,180,255,255,255,255,235,7,199,69,180,0,0,0,0,139,69,180,137,69,176,235,12,243,15,16,69,248,243,15,44,208,137,85,176,72,139,69,216,139,85,176,137,144,124, 2,0,0,243,15,16,13,201,147,7,0,243,15,16,69,244,15,46,193,115,2,235,14,243,15,16,69,244,243,15,44,192,137,69,184,235,7,199,69,184,1,0,0,0,72,139,69,216,139,85,184,137,144,136,2,0,0,243,15,16,69,240,15,46,5,3,148,7,0,119,2,235,14,243,15,16,69,240,243, 15,44,192,137,69,188,235,7,199,69,188,2,0,0,0,72,139,69,216,139,85,188,137,144,128,2,0,0,72,139,69,216,199,128,176,2,0,0,0,0,0,0,72,139,69,216,199,128,120,2,0,0,0,0,0,0,72,139,69,216,199,128,96,2,0,0,1,0,0,0,72,139,125,216,72,129,199,16,3,0,0,232,87, 5,7,0,72,139,125,216,72,129,199,208,2,0,0,232,119,5,7,0,201,195,85,72,137,229,83,72,131,236,40,72,137,125,216,72,137,117,208,72,139,69,216,139,64,76,137,69,232,72,139,125,216,72,129,199,208,2,0,0,232,62,5,7,0,72,139,69,208,72,139,0,139,16,72,139,69,216, 137,144,80,2,0,0,72,139,69,216,139,136,164,2,0,0,72,139,69,216,139,144,128,2,0,0,72,139,69,216,139,128,136,2,0,0,15,175,208,72,139,69,216,139,128,80,2,0,0,15,175,194,137,202,137,195,137,208,193,250,31,247,251,137,194,72,139,69,216,137,144,184,2,0,0,199, 69,236,0,0,0,0,235,38,139,117,236,139,69,236,72,152,72,193,224,3,72,3,69,208,72,139,0,72,139,72,8,72,139,85,216,72,99,198,72,137,76,194,80,255,69,236,139,69,236,59,69,232,124,210,72,139,125,216,72,129,199,208,2,0,0,232,171,4,7,0,72,139,85,216,190,1,0, 0,0,72,141,61,63,247,255,255,184,0,0,0,0,232,131,31,0,0,72,131,196,40,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,176,96,2,0,0,72,141,61,76,18,7,0,184,0,0,0,0,232,137,221,5,0,72,139,69,248,139,176,168,2,0,0,72,141,61,58,18, 7,0,184,0,0,0,0,232,110,221,5,0,72,139,69,248,139,176,172,2,0,0,72,141,61,44,18,7,0,184,0,0,0,0,232,83,221,5,0,72,139,69,248,139,176,164,2,0,0,72,141,61,30,18,7,0,184,0,0,0,0,232,56,221,5,0,72,139,69,248,139,176,160,2,0,0,72,141,61,16,18,7,0,184,0,0, 0,0,232,29,221,5,0,72,139,69,248,139,176,176,2,0,0,72,141,61,251,17,7,0,184,0,0,0,0,232,2,221,5,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,72,129,199,208,2,0,0,232,178,3,7,0,72,139,69,232,199,128,104,2,0,0,3,0,0,0,72,139,125, 232,72,129,199,16,3,0,0,232,112,3,7,0,235,43,72,139,125,232,72,129,199,16,3,0,0,232,94,3,7,0,72,139,117,232,72,129,198,208,2,0,0,72,139,125,232,72,129,199,64,3,0,0,232,73,3,7,0,72,139,69,232,139,128,104,2,0,0,133,192,117,199,72,139,125,232,72,129,199, 208,2,0,0,232,85,3,7,0,72,139,69,232,72,139,184,112,3,0,0,72,141,117,248,232,35,3,7,0,133,192,116,17,72,141,61,82,17,7,0,184,0,0,0,0,232,20,224,5,0,72,139,125,232,72,129,199,16,3,0,0,232,224,2,7,0,72,139,125,232,72,129,199,64,3,0,0,232,208,2,7,0,72,139, 125,232,72,129,199,208,2,0,0,232,228,2,7,0,72,139,69,232,139,64,72,72,99,240,72,139,69,232,72,139,120,64,232,118,4,5,0,72,139,69,232,72,139,120,56,232,205,43,5,0,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,234,254,255,255,76,141,37,5,243,255, 255,72,141,61,235,16,7,0,232,47,232,4,0,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,120,3,0,0,72,137,218,76,137,230,184,0,0,0,0,232,92,214,4,0,72,137,5,119,154,9,0,72,141,53,39,250,255,255,72,139,61,105,154,9,0,232, 208,227,4,0,72,141,61,91,4,7,0,232,214,231,4,0,72,141,53,108,249,255,255,72,139,61,74,154,9,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,83,221,4,0,72,141,61,42,4,7,0,232,170,231,4,0,72,141,53,130,249,255,255,72,139,61,30,154,9,0,185,0,0,0,0,72,137,194,184, 0,0,0,0,232,39,221,4,0,72,141,61,69,16,7,0,232,126,231,4,0,72,141,53,132,252,255,255,72,139,61,242,153,9,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,251,220,4,0,72,141,61,29,16,7,0,232,82,231,4,0,72,141,53,184,249,255,255,72,139,61,198,153,9,0,65,184,0, 0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,201,220,4,0,72,141,61,237,42,7,0,232,32,231,4,0,72,141,53,17,253,255,255,72,139,61,148,153,9,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,157,220,4,0,72,131,196,16,91,65,92,201,195,85,72,137,229,83,72,129,236, 40,1,0,0,72,137,189,232,254,255,255,72,139,5,207,107,9,0,72,139,16,72,137,85,232,49,210,72,139,133,232,254,255,255,72,137,133,40,255,255,255,72,139,189,40,255,255,255,72,129,199,208,2,0,0,232,41,1,7,0,72,139,133,40,255,255,255,139,128,104,2,0,0,133,192, 117,54,72,139,189,40,255,255,255,72,129,199,64,3,0,0,232,225,0,7,0,72,139,181,40,255,255,255,72,129,198,208,2,0,0,72,139,189,40,255,255,255,72,129,199,16,3,0,0,232,198,0,7,0,235,185,72,139,133,40,255,255,255,139,128,104,2,0,0,131,248,1,15,133,84,6,0, 0,72,139,133,40,255,255,255,72,139,128,144,2,0,0,72,137,133,32,255,255,255,72,199,133,24,255,255,255,255,255,255,127,72,139,133,40,255,255,255,139,128,124,2,0,0,137,69,128,72,139,133,40,255,255,255,139,128,128,2,0,0,137,133,124,255,255,255,72,139,133, 40,255,255,255,139,128,136,2,0,0,137,133,120,255,255,255,72,139,133,40,255,255,255,139,128,132,2,0,0,137,133,116,255,255,255,72,139,133,40,255,255,255,139,128,188,2,0,0,137,133,112,255,255,255,72,139,133,40,255,255,255,72,139,128,112,2,0,0,72,137,133, 16,255,255,255,72,139,133,40,255,255,255,72,139,64,48,72,137,133,8,255,255,255,72,139,133,40,255,255,255,139,128,140,2,0,0,137,133,108,255,255,255,72,139,133,40,255,255,255,199,128,104,2,0,0,4,0,0,0,72,139,133,40,255,255,255,199,128,120,2,0,0,0,0,0,0, 72,139,133,40,255,255,255,139,128,160,2,0,0,133,192,15,136,59,1,0,0,72,139,133,40,255,255,255,139,144,128,2,0,0,72,139,133,40,255,255,255,139,128,136,2,0,0,15,175,194,137,133,104,255,255,255,72,139,133,40,255,255,255,139,128,132,2,0,0,137,133,100,255, 255,255,72,139,133,40,255,255,255,72,139,128,112,2,0,0,72,137,133,0,255,255,255,72,139,133,40,255,255,255,139,128,160,2,0,0,137,133,96,255,255,255,72,139,133,40,255,255,255,139,128,188,2,0,0,137,133,92,255,255,255,72,139,133,40,255,255,255,139,128,192, 2,0,0,137,133,88,255,255,255,72,139,133,40,255,255,255,139,128,196,2,0,0,137,133,84,255,255,255,72,139,189,40,255,255,255,72,129,199,208,2,0,0,232,65,255,6,0,139,133,88,255,255,255,72,99,208,139,141,92,255,255,255,139,181,96,255,255,255,72,139,189,0, 255,255,255,76,139,149,40,255,255,255,139,133,84,255,255,255,137,68,36,8,139,133,104,255,255,255,137,4,36,73,137,209,65,184,255,255,255,127,137,242,72,137,254,76,137,215,232,196,195,255,255,139,189,96,255,255,255,232,166,253,6,0,72,139,189,40,255,255, 255,72,129,199,208,2,0,0,232,203,254,6,0,72,139,133,40,255,255,255,199,128,160,2,0,0,255,255,255,255,72,139,133,40,255,255,255,139,128,104,2,0,0,131,248,4,15,133,123,253,255,255,72,139,189,40,255,255,255,72,129,199,208,2,0,0,232,157,254,6,0,232,220,157, 0,0,59,133,116,255,255,255,15,149,192,15,182,192,243,15,16,133,108,255,255,255,139,149,116,255,255,255,139,141,124,255,255,255,139,181,112,255,255,255,72,139,189,16,255,255,255,76,139,149,8,255,255,255,137,68,36,8,139,133,120,255,255,255,137,4,36,65, 137,209,65,137,200,185,0,0,0,0,137,242,72,137,254,76,137,215,232,173,184,255,255,137,69,140,72,139,189,40,255,255,255,72,129,199,208,2,0,0,232,29,254,6,0,131,125,140,0,121,76,72,139,133,40,255,255,255,199,128,160,2,0,0,255,255,255,255,72,139,133,40,255, 255,255,199,128,176,2,0,0,1,0,0,0,232,40,252,6,0,139,16,72,139,133,40,255,255,255,137,144,120,2,0,0,72,139,133,40,255,255,255,199,128,104,2,0,0,0,0,0,0,233,162,252,255,255,72,139,133,40,255,255,255,139,128,104,2,0,0,131,248,4,15,133,140,252,255,255,72, 139,149,40,255,255,255,139,69,140,137,130,160,2,0,0,72,139,133,40,255,255,255,199,128,172,2,0,0,0,0,0,0,72,139,133,40,255,255,255,199,128,192,2,0,0,0,0,0,0,232,206,156,0,0,59,133,116,255,255,255,15,149,192,15,182,208,72,139,133,40,255,255,255,137,144, 196,2,0,0,233,149,2,0,0,72,139,133,40,255,255,255,139,128,164,2,0,0,137,133,80,255,255,255,72,139,133,40,255,255,255,72,139,64,64,72,137,133,248,254,255,255,72,139,133,40,255,255,255,139,144,168,2,0,0,72,139,133,40,255,255,255,139,128,172,2,0,0,57,194, 124,91,72,139,133,40,255,255,255,139,144,168,2,0,0,72,139,133,40,255,255,255,139,128,172,2,0,0,5,0,0,1,0,57,194,125,56,72,139,133,40,255,255,255,139,128,104,2,0,0,131,248,2,15,133,11,1,0,0,72,139,133,40,255,255,255,139,144,168,2,0,0,72,139,133,40,255, 255,255,139,128,172,2,0,0,57,194,15,132,233,0,0,0,72,139,133,40,255,255,255,139,144,168,2,0,0,72,139,133,40,255,255,255,139,128,172,2,0,0,57,194,124,21,72,139,133,40,255,255,255,139,128,168,2,0,0,137,133,228,254,255,255,235,12,139,141,80,255,255,255, 137,141,228,254,255,255,72,139,133,40,255,255,255,139,128,172,2,0,0,139,157,228,254,255,255,41,195,137,216,137,69,132,129,125,132,0,0,1,0,126,7,199,69,132,0,0,1,0,72,139,133,40,255,255,255,139,128,172,2,0,0,137,133,76,255,255,255,72,139,133,40,255,255, 255,139,128,160,2,0,0,137,69,140,72,139,189,40,255,255,255,72,129,199,208,2,0,0,232,47,252,6,0,139,69,132,72,99,208,139,133,76,255,255,255,72,152,72,137,198,72,3,181,248,254,255,255,139,125,140,232,207,252,6,0,137,69,136,72,139,189,40,255,255,255,72, 129,199,208,2,0,0,232,237,251,6,0,72,139,133,40,255,255,255,139,128,104,2,0,0,131,248,4,117,59,235,79,72,139,189,40,255,255,255,72,129,199,64,3,0,0,232,162,251,6,0,72,139,181,40,255,255,255,72,129,198,208,2,0,0,72,139,189,40,255,255,255,72,129,199,16, 3,0,0,232,135,251,6,0,233,213,0,0,0,72,139,133,40,255,255,255,139,128,104,2,0,0,131,248,2,15,133,97,250,255,255,139,69,136,59,69,132,125,25,232,181,249,6,0,139,16,72,139,133,40,255,255,255,137,144,120,2,0,0,233,64,250,255,255,72,139,133,40,255,255,255, 139,128,172,2,0,0,137,194,3,85,136,72,139,133,40,255,255,255,137,144,172,2,0,0,72,139,133,40,255,255,255,139,128,172,2,0,0,59,133,80,255,255,255,117,17,72,139,133,40,255,255,255,199,128,172,2,0,0,0,0,0,0,72,139,133,40,255,255,255,139,136,192,2,0,0,72, 139,133,40,255,255,255,139,144,128,2,0,0,72,139,133,40,255,255,255,139,128,136,2,0,0,15,175,194,139,85,136,137,195,137,208,193,250,31,247,251,141,20,1,72,139,133,40,255,255,255,137,144,192,2,0,0,72,139,189,40,255,255,255,72,129,199,64,3,0,0,232,167,250, 6,0,72,139,133,40,255,255,255,139,128,104,2,0,0,131,248,4,15,132,85,253,255,255,72,139,133,40,255,255,255,139,128,104,2,0,0,131,248,2,15,133,118,249,255,255,72,139,133,40,255,255,255,139,144,168,2,0,0,72,139,133,40,255,255,255,139,128,172,2,0,0,57,194, 15,133,29,253,255,255,233,79,249,255,255,72,139,133,40,255,255,255,139,128,104,2,0,0,131,248,2,116,22,72,139,133,40,255,255,255,139,128,104,2,0,0,131,248,3,15,133,39,249,255,255,72,139,133,40,255,255,255,139,128,104,2,0,0,131,248,3,15,148,192,15,182, 192,137,133,72,255,255,255,72,139,133,40,255,255,255,139,128,160,2,0,0,133,192,15,136,37,1,0,0,72,139,133,40,255,255,255,139,144,128,2,0,0,72,139,133,40,255,255,255,139,128,136,2,0,0,15,175,194,137,133,68,255,255,255,72,139,133,40,255,255,255,139,128, 132,2,0,0,137,133,64,255,255,255,72,139,133,40,255,255,255,72,139,128,112,2,0,0,72,137,133,240,254,255,255,72,139,133,40,255,255,255,139,128,160,2,0,0,137,133,60,255,255,255,72,139,133,40,255,255,255,139,128,188,2,0,0,137,133,56,255,255,255,72,139,133, 40,255,255,255,139,128,192,2,0,0,137,133,52,255,255,255,72,139,133,40,255,255,255,139,128,196,2,0,0,137,133,48,255,255,255,72,139,189,40,255,255,255,72,129,199,208,2,0,0,232,129,249,6,0,139,133,52,255,255,255,72,99,208,139,141,56,255,255,255,139,181, 60,255,255,255,72,139,189,240,254,255,255,76,139,149,40,255,255,255,139,133,48,255,255,255,137,68,36,8,139,133,68,255,255,255,137,4,36,73,137,209,65,184,255,255,255,127,137,242,72,137,254,76,137,215,232,4,190,255,255,139,189,60,255,255,255,232,230,247, 6,0,72,139,189,40,255,255,255,72,129,199,208,2,0,0,232,11,249,6,0,72,139,133,40,255,255,255,199,128,160,2,0,0,255,255,255,255,72,139,133,40,255,255,255,199,128,104,2,0,0,0,0,0,0,72,139,189,40,255,255,255,72,129,199,64,3,0,0,232,178,248,6,0,131,189,72, 255,255,255,0,117,5,233,159,247,255,255,72,139,189,40,255,255,255,72,129,199,208,2,0,0,232,193,248,6,0,184,0,0,0,0,72,139,21,37,99,9,0,72,139,77,232,72,51,10,116,5,232,253,246,6,0,72,129,196,40,1,0,0,91,201,195,85,72,137,229,72,131,236,48,243,15,17,69, 220,243,15,17,77,216,243,15,16,69,220,243,15,44,192,137,69,252,243,15,16,69,216,243,15,44,192,137,69,248,131,125,252,0,127,9,199,69,252,1,0,0,0,235,13,131,125,252,64,126,7,199,69,252,64,0,0,0,131,125,248,0,127,11,139,69,252,193,224,18,137,69,248,235, 34,129,125,248,255,255,3,0,127,9,199,69,248,0,0,4,0,235,16,129,125,248,0,0,0,1,126,7,199,69,248,0,0,0,1,139,69,248,72,99,248,232,182,247,4,0,72,137,69,224,72,131,125,224,0,117,13,72,199,69,208,0,0,0,0,233,153,1,0,0,72,139,61,2,144,9,0,232,129,20,5,0, 72,137,69,232,199,69,244,1,0,0,0,235,30,72,139,117,232,72,139,125,232,72,141,13,145,106,9,0,72,141,21,138,106,9,0,232,136,249,4,0,255,69,244,139,69,244,59,69,252,124,218,72,139,85,232,184,0,0,0,0,137,130,200,2,0,0,72,139,85,232,139,69,252,137,130,136, 2,0,0,72,139,125,232,72,129,199,208,2,0,0,190,0,0,0,0,232,127,247,6,0,72,139,125,232,72,129,199,16,3,0,0,190,0,0,0,0,232,70,247,6,0,72,139,125,232,72,129,199,64,3,0,0,190,0,0,0,0,232,49,247,6,0,72,139,69,232,199,128,80,2,0,0,128,0,0,0,72,139,85,232,184, 0,0,0,0,137,130,140,2,0,0,72,139,69,232,139,144,140,2,0,0,72,139,69,232,137,144,100,2,0,0,72,139,69,232,199,128,96,2,0,0,0,0,0,0,72,139,69,232,72,199,64,56,0,0,0,0,232,64,192,0,0,72,137,194,72,139,69,232,72,137,80,48,72,139,69,232,199,128,128,2,0,0,2, 0,0,0,72,139,69,232,199,128,160,2,0,0,255,255,255,255,72,139,85,232,72,139,69,224,72,137,66,64,72,139,85,232,139,69,248,137,66,72,72,139,69,232,199,128,104,2,0,0,0,0,0,0,72,139,69,232,139,144,104,2,0,0,72,139,69,232,137,144,172,2,0,0,72,139,69,232,139, 144,172,2,0,0,72,139,69,232,137,144,168,2,0,0,72,139,69,232,139,144,168,2,0,0,72,139,69,232,137,144,164,2,0,0,72,139,125,232,72,129,199,112,3,0,0,72,139,77,232,72,141,21,1,245,255,255,190,0,0,0,0,232,76,246,6,0,72,139,69,232,72,137,69,208,72,139,69,208, 201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,216,72,139,69,216,139,128,80,2,0,0,137,69,252,72,139,69,216,139,128,136,2,0,0,137,69,248,72,139,69,216,139,128,128,2,0,0,137,69,236,72,139,69,216,139,128, 132,2,0,0,137,69,232,72,139,69,216,139,128,96,2,0,0,131,248,2,15,133,110,1,0,0,72,139,125,216,72,129,199,208,2,0,0,232,228,245,6,0,139,69,248,15,175,69,252,15,175,69,236,137,69,228,235,43,72,139,125,216,72,129,199,16,3,0,0,232,160,245,6,0,72,139,117, 216,72,129,198,208,2,0,0,72,139,125,216,72,129,199,64,3,0,0,232,139,245,6,0,72,139,69,216,139,144,172,2,0,0,72,139,69,216,139,128,168,2,0,0,57,194,126,29,72,139,69,216,139,144,172,2,0,0,72,139,69,216,139,128,168,2,0,0,3,69,228,255,192,57,194,124,160, 72,139,69,216,72,139,80,64,72,139,69,216,139,128,168,2,0,0,72,152,72,141,4,2,72,137,198,76,139,85,216,73,131,194,80,139,85,236,139,77,252,139,125,248,199,68,36,8,1,0,0,0,139,69,232,137,4,36,243,15,16,5,230,130,7,0,65,137,209,65,184,0,0,0,0,72,137,242, 76,137,214,232,73,188,255,255,72,139,69,216,139,128,168,2,0,0,137,194,3,85,228,72,139,69,216,137,144,168,2,0,0,72,139,69,216,139,144,168,2,0,0,72,139,69,216,139,128,164,2,0,0,57,194,124,14,72,139,69,216,199,128,168,2,0,0,0,0,0,0,72,139,69,216,139,128, 180,2,0,0,141,80,255,72,139,69,216,137,144,180,2,0,0,72,139,69,216,139,128,180,2,0,0,133,192,127,36,72,139,125,216,72,129,199,16,3,0,0,232,134,244,6,0,72,139,69,216,139,144,184,2,0,0,72,139,69,216,137,144,180,2,0,0,72,139,125,216,72,129,199,208,2,0,0, 232,146,244,6,0,72,139,69,200,72,131,192,16,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,128,96,2,0,0,131,248,1,117,16,72,139,69,248,199,128,96,2,0,0,2,0,0,0,235,21,72,139,125,248,72,141,53,162,2,7,0,184,0,0,0,0,232,152,211,5, 0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,72,129,199,208,2,0,0,232,30,244,6,0,72,139,69,248,199,128,96,2,0,0,0,0,0,0,72,139,69,248,199,128,104,2,0,0,2,0,0,0,72,139,125,248,72,129,199,16,3,0,0,232,206,243,6,0,72,139,125,248,72, 129,199,208,2,0,0,232,238,243,6,0,201,195,85,72,137,229,83,72,129,236,136,0,0,0,72,137,125,184,72,137,117,176,137,85,172,72,137,77,160,72,139,69,184,139,128,96,2,0,0,133,192,116,9,72,139,125,184,232,116,255,255,255,72,141,85,232,72,141,77,236,72,141, 117,208,72,141,125,160,76,141,85,172,76,139,93,184,72,141,69,216,72,137,68,36,40,72,141,69,192,72,137,68,36,32,72,141,69,200,72,137,68,36,24,72,141,69,220,72,137,68,36,16,72,141,69,224,72,137,68,36,8,72,141,69,228,72,137,4,36,73,137,209,73,137,200,72, 137,241,72,137,250,76,137,214,76,137,223,232,84,167,255,255,133,192,116,43,72,139,125,184,72,141,53,199,1,7,0,184,0,0,0,0,232,141,210,5,0,72,141,61,254,1,7,0,184,0,0,0,0,232,82,204,5,0,233,116,2,0,0,139,69,220,133,192,117,21,72,139,69,200,72,133,192, 117,12,72,139,69,192,72,61,255,255,255,127,116,21,72,139,125,184,72,141,53,248,1,7,0,184,0,0,0,0,232,70,210,5,0,139,69,172,133,192,116,21,72,139,125,184,72,141,53,20,2,7,0,184,0,0,0,0,232,42,210,5,0,72,139,125,184,72,129,199,208,2,0,0,232,190,242,6,0, 235,43,72,139,125,184,72,129,199,16,3,0,0,232,136,242,6,0,72,139,117,184,72,129,198,208,2,0,0,72,139,125,184,72,129,199,64,3,0,0,232,115,242,6,0,72,139,69,184,139,128,104,2,0,0,133,192,117,199,139,85,232,72,139,69,184,137,144,128,2,0,0,139,85,228,72, 139,69,184,137,144,196,2,0,0,139,85,224,72,139,69,184,137,144,132,2,0,0,72,139,69,208,72,139,16,72,139,69,184,72,137,144,112,2,0,0,139,85,236,72,139,69,184,137,144,188,2,0,0,72,139,69,184,199,128,192,2,0,0,0,0,0,0,72,139,69,184,199,128,104,2,0,0,1,0, 0,0,72,139,69,184,199,128,172,2,0,0,0,0,0,0,72,139,69,184,199,128,168,2,0,0,0,0,0,0,72,139,69,184,199,128,176,2,0,0,0,0,0,0,72,139,69,184,199,128,120,2,0,0,0,0,0,0,72,139,69,184,199,128,96,2,0,0,1,0,0,0,139,69,232,186,2,0,0,0,131,248,2,15,77,208,72,139, 69,184,137,144,128,2,0,0,243,15,16,77,216,15,87,192,15,46,200,119,2,235,15,139,85,216,72,139,69,184,137,144,140,2,0,0,235,61,72,139,69,184,243,15,16,136,100,2,0,0,15,87,192,15,46,200,119,2,235,22,72,139,69,184,139,144,100,2,0,0,72,139,69,184,137,144, 140,2,0,0,235,17,232,24,57,5,0,72,139,69,184,243,15,17,128,140,2,0,0,72,139,69,184,139,112,72,72,139,69,184,139,72,72,72,139,69,184,139,144,128,2,0,0,72,139,69,184,139,128,136,2,0,0,15,175,194,193,224,7,137,202,137,195,137,208,193,250,31,247,251,137, 208,137,242,41,194,72,139,69,184,137,144,164,2,0,0,72,139,69,184,139,136,164,2,0,0,72,139,69,184,139,128,128,2,0,0,137,194,193,226,4,72,139,69,184,139,128,136,2,0,0,15,175,208,72,139,69,184,139,128,80,2,0,0,15,175,194,137,202,137,195,137,208,193,250, 31,247,251,137,194,72,139,69,184,137,144,184,2,0,0,72,139,69,184,139,144,184,2,0,0,72,139,69,184,137,144,180,2,0,0,72,139,125,184,72,129,199,16,3,0,0,232,147,240,6,0,72,139,125,184,72,129,199,208,2,0,0,232,179,240,6,0,72,129,196,136,0,0,0,91,201,195, 85,72,137,229,83,72,131,236,40,72,137,125,216,72,137,117,208,72,139,69,216,139,128,136,2,0,0,137,69,232,72,139,125,216,72,129,199,208,2,0,0,232,111,240,6,0,72,139,69,208,72,139,0,139,16,72,139,69,216,137,144,80,2,0,0,72,139,69,216,139,136,164,2,0,0,72, 139,69,216,139,128,128,2,0,0,137,194,15,175,85,232,72,139,69,216,139,128,80,2,0,0,15,175,194,137,202,137,195,137,208,193,250,31,247,251,137,194,72,139,69,216,137,144,184,2,0,0,199,69,236,0,0,0,0,235,38,139,117,236,139,69,236,72,152,72,193,224,3,72,3, 69,208,72,139,0,72,139,72,8,72,139,85,216,72,99,198,72,137,76,194,80,255,69,236,139,69,236,59,69,232,124,210,72,139,69,208,72,139,0,139,80,16,72,139,69,216,137,144,100,2,0,0,72,139,125,216,72,129,199,208,2,0,0,232,207,239,6,0,72,139,85,216,190,1,0,0, 0,72,141,61,93,249,255,255,184,0,0,0,0,232,167,10,0,0,72,131,196,40,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,176,96,2,0,0,72,141,61,112,253,6,0,184,0,0,0,0,232,173,200,5,0,72,139,69,248,139,176,168,2,0,0,72,141,61,94,253, 6,0,184,0,0,0,0,232,146,200,5,0,72,139,69,248,139,176,172,2,0,0,72,141,61,80,253,6,0,184,0,0,0,0,232,119,200,5,0,72,139,69,248,139,176,164,2,0,0,72,141,61,66,253,6,0,184,0,0,0,0,232,92,200,5,0,72,139,69,248,139,176,160,2,0,0,72,141,61,52,253,6,0,184, 0,0,0,0,232,65,200,5,0,72,139,69,248,139,176,176,2,0,0,72,141,61,31,253,6,0,184,0,0,0,0,232,38,200,5,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,72,129,199,208,2,0,0,232,214,238,6,0,72,139,69,232,199,128,104,2,0,0,3,0,0,0,72,139, 125,232,72,129,199,16,3,0,0,232,148,238,6,0,235,43,72,139,125,232,72,129,199,16,3,0,0,232,130,238,6,0,72,139,117,232,72,129,198,208,2,0,0,72,139,125,232,72,129,199,64,3,0,0,232,109,238,6,0,72,139,69,232,139,128,104,2,0,0,133,192,117,199,72,139,125,232, 72,129,199,208,2,0,0,232,121,238,6,0,72,139,69,232,72,139,184,112,3,0,0,72,141,117,248,232,71,238,6,0,133,192,116,17,72,141,61,177,253,6,0,184,0,0,0,0,232,56,203,5,0,72,139,125,232,72,129,199,16,3,0,0,232,4,238,6,0,72,139,125,232,72,129,199,64,3,0,0, 232,244,237,6,0,72,139,125,232,72,129,199,208,2,0,0,232,8,238,6,0,72,139,69,232,139,64,72,72,99,240,72,139,69,232,72,139,120,64,232,154,239,4,0,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,247,254,255,255,76,141,37,81,245,255,255,72,141,61, 88,253,6,0,232,96,211,4,0,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,120,3,0,0,72,137,218,76,137,230,184,0,0,0,0,232,141,193,4,0,72,137,5,176,133,9,0,72,141,61,159,239,6,0,232,26,211,4,0,72,141,53,13,249,255,255, 72,139,61,150,133,9,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,151,200,4,0,72,141,61,110,239,6,0,232,238,210,4,0,72,141,53,35,249,255,255,72,139,61,106,133,9,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,107,200,4,0,72,141,61,137,251,6,0,232,194,210,4,0,72, 141,53,148,252,255,255,72,139,61,62,133,9,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,63,200,4,0,72,141,61,97,251,6,0,232,150,210,4,0,72,141,53,37,249,255,255,72,139,61,18,133,9,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,13,200,4,0,72,141, 61,49,22,7,0,232,100,210,4,0,72,141,53,49,253,255,255,72,139,61,224,132,9,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,225,199,4,0,72,139,61,199,132,9,0,190,200,2,0,0,232,167,207,4,0,72,131,196,16,91,65,92,201,195,85,72,137,229,232,36,211,255,255,232,200, 233,255,255,232,146,254,255,255,201,195,85,72,137,229,72,137,125,232,72,139,69,232,72,131,192,8,72,139,0,72,137,69,240,72,139,69,232,72,131,192,16,72,139,0,137,69,252,235,16,72,139,85,240,184,0,0,0,0,137,2,72,131,69,240,4,255,77,252,131,125,252,255,117, 231,72,139,69,232,72,131,192,24,201,195,85,72,137,229,72,137,125,232,72,139,69,232,72,131,192,8,72,139,0,72,137,69,240,72,139,69,232,72,131,192,16,72,139,0,137,69,252,235,125,72,139,85,240,184,0,0,0,0,137,2,72,139,85,240,72,131,194,4,184,0,0,0,0,137, 2,72,139,85,240,72,131,194,8,184,0,0,0,0,137,2,72,139,85,240,72,131,194,12,184,0,0,0,0,137,2,72,139,85,240,72,131,194,16,184,0,0,0,0,137,2,72,139,85,240,72,131,194,20,184,0,0,0,0,137,2,72,139,85,240,72,131,194,24,184,0,0,0,0,137,2,72,139,85,240,72,131, 194,28,184,0,0,0,0,137,2,131,109,252,8,72,131,69,240,32,131,125,252,0,15,133,121,255,255,255,72,139,69,232,72,131,192,24,201,195,85,72,137,229,72,131,236,16,72,137,125,248,137,117,244,139,69,244,131,224,7,133,192,116,31,139,77,244,72,139,85,248,190,2, 0,0,0,72,141,61,210,254,255,255,184,0,0,0,0,232,81,6,0,0,235,29,139,77,244,72,139,85,248,190,2,0,0,0,72,141,61,253,254,255,255,184,0,0,0,0,232,50,6,0,0,201,195,85,72,137,229,72,131,236,48,243,15,17,69,236,243,15,17,77,232,243,15,17,85,228,72,139,61,96, 131,9,0,232,167,7,5,0,72,137,69,248,72,139,69,248,199,64,60,0,0,0,0,72,139,69,248,199,64,64,1,0,0,0,72,139,69,248,199,64,68,1,0,0,0,72,139,69,248,198,64,88,0,72,139,69,248,198,64,89,1,243,15,16,69,228,243,15,16,77,232,139,69,236,72,139,125,248,15,40, 208,137,69,220,243,15,16,69,220,232,6,0,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,64,72,137,125,216,243,15,17,69,212,243,15,17,77,208,243,15,17,85,204,243,15,16,69,212,243,15,44,192,137,69,244,243,15,16,69,208,243,15,44,192,137,69,240,232,45, 227,0,0,137,69,236,131,125,240,0,127,7,199,69,240,1,0,0,0,131,125,244,0,121,7,199,69,244,0,0,0,0,15,87,192,15,46,69,204,115,2,235,15,199,69,248,1,0,0,0,139,69,248,137,69,252,235,72,243,15,16,13,240,119,7,0,243,15,16,69,204,15,46,193,115,2,235,21,243, 15,16,69,204,243,15,44,192,137,69,252,199,69,248,1,0,0,0,235,31,243,15,90,77,204,242,15,16,5,202,119,7,0,242,15,94,193,242,15,44,192,137,69,248,199,69,252,1,0,0,0,131,125,244,0,116,33,139,125,244,232,45,8,0,0,137,193,184,1,0,0,0,211,224,137,69,232,139, 69,232,59,69,244,116,12,209,101,232,235,7,199,69,232,0,0,0,0,131,125,232,0,116,50,139,125,232,232,255,7,0,0,137,193,184,1,0,0,0,211,224,59,69,232,116,28,72,139,125,216,72,141,53,51,249,6,0,184,0,0,0,0,232,249,200,5,0,199,69,232,64,0,0,0,139,125,240,232, 205,7,0,0,137,193,184,1,0,0,0,211,224,59,69,240,116,28,72,139,125,216,72,141,53,41,249,6,0,184,0,0,0,0,232,199,200,5,0,199,69,240,1,0,0,0,139,125,248,232,155,7,0,0,137,193,184,1,0,0,0,211,224,59,69,248,116,28,72,139,125,216,72,141,53,31,249,6,0,184,0, 0,0,0,232,149,200,5,0,199,69,248,1,0,0,0,139,125,252,232,105,7,0,0,137,193,184,1,0,0,0,211,224,59,69,252,116,28,72,139,125,216,72,141,53,21,249,6,0,184,0,0,0,0,232,99,200,5,0,199,69,252,1,0,0,0,72,139,85,216,139,69,244,137,66,52,72,139,85,216,139,69, 232,137,66,48,72,139,85,216,139,69,240,137,66,56,72,139,85,216,139,69,252,137,66,92,72,139,85,216,139,69,248,137,66,96,139,125,236,232,156,225,0,0,201,195,85,72,137,229,72,131,236,48,243,15,17,69,236,243,15,17,77,232,243,15,17,85,228,243,15,16,69,228, 243,15,16,77,232,139,69,236,15,40,208,137,69,220,243,15,16,69,220,232,94,253,255,255,72,137,69,248,72,139,69,248,198,64,88,1,72,139,69,248,198,64,89,0,72,139,69,248,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,69,248,15,182,64,88,132, 192,116,22,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,72,139,85,248,136,66,89,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,15,182,64,88,132,192,116,105,72,139,69,232,15,182,64,89,132,192,117,93,72,139,5,86,128,9,0,72,133,192, 116,81,72,139,69,232,199,64,100,1,0,0,0,72,139,69,232,139,64,76,72,152,72,193,224,3,72,137,194,72,139,5,47,128,9,0,72,141,4,2,72,137,69,248,235,17,72,139,69,248,72,139,0,72,139,125,248,255,208,72,137,69,248,72,131,125,248,0,117,232,72,139,69,232,199, 64,100,0,0,0,0,235,21,72,139,125,232,72,141,53,229,247,6,0,184,0,0,0,0,232,11,199,5,0,201,195,85,72,137,229,72,137,125,232,72,139,69,232,72,131,192,8,72,139,0,72,137,69,240,72,139,69,240,139,64,60,137,69,252,72,139,69,240,15,182,64,89,132,192,117,26, 72,139,69,240,139,64,80,72,152,72,193,224,3,72,139,85,232,72,1,194,72,137,85,224,235,113,131,125,252,0,116,58,255,69,252,72,139,69,240,139,64,64,59,69,252,117,7,199,69,252,0,0,0,0,72,139,85,240,139,69,252,137,66,60,72,139,69,240,139,64,80,72,152,72,193, 224,3,72,139,85,232,72,1,194,72,137,85,224,235,49,72,139,69,240,139,80,68,72,139,69,240,137,80,72,72,139,69,240,139,64,64,131,248,1,15,159,192,15,182,208,72,139,69,240,137,80,60,72,139,69,232,72,131,192,16,72,137,69,224,72,139,69,224,201,195,85,72,137, 229,72,137,125,232,72,139,69,232,72,131,192,8,72,139,0,72,137,69,240,72,139,69,240,139,64,72,255,200,137,69,252,72,139,69,240,139,64,100,133,192,116,10,72,199,69,224,0,0,0,0,235,100,72,139,69,240,15,182,64,90,132,192,117,27,72,139,69,240,139,64,84,72, 152,72,193,224,3,72,3,69,232,72,131,192,16,72,137,69,224,235,61,131,125,252,0,116,43,72,139,85,240,139,69,252,137,66,72,72,139,85,232,72,131,194,32,72,139,69,240,139,64,80,72,152,72,193,224,3,72,137,209,72,41,193,72,137,77,224,235,12,72,139,69,232,72, 131,192,16,72,137,69,224,72,139,69,224,201,195,85,72,137,229,72,137,125,248,72,137,117,240,201,195,85,72,137,229,83,72,131,236,40,72,141,29,253,250,255,255,72,141,61,133,246,6,0,232,173,203,4,0,72,137,199,199,68,36,16,0,0,0,0,199,68,36,8,6,0,0,0,199, 4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,104,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,208,185,4,0,72,137,5,43,126,9,0,72,141,61,60,246,6,0,232,93,203,4,0,72,137,198,72,141,61,5,253,255,255,65,185,0,0,0,0,65,184,6,0,0,0,185,6,0,0,0,186,6,0,0, 0,184,0,0,0,0,232,194,190,4,0,72,141,61,14,246,6,0,232,39,203,4,0,72,141,53,227,250,255,255,72,139,61,219,125,9,0,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,6,0,0,0,185,6,0,0,0,72,137,194,184,0,0,0,0,232,145,192,4,0,72,141,61,175,243,6,0,232,232,202,4,0, 72,141,53,10,255,255,255,72,139,61,156,125,9,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,101,192,4,0,72,141,53,193,252,255,255,72,139,61,124,125,9,0,232,163,198,4,0,72,141,53,223,252,255,255,72,139,61,105,125,9,0,232,92,198,4,0,72,131,196,40,91,201,195, 85,72,137,229,72,137,125,248,184,0,0,0,0,201,195,85,72,137,229,72,129,236,0,1,0,0,72,137,189,40,255,255,255,72,137,149,96,255,255,255,72,137,141,104,255,255,255,76,137,133,112,255,255,255,76,137,141,120,255,255,255,15,182,192,72,137,133,8,255,255,255, 72,139,149,8,255,255,255,72,141,4,149,0,0,0,0,72,141,21,59,0,0,0,72,137,149,8,255,255,255,72,41,133,8,255,255,255,72,141,69,255,72,139,149,8,255,255,255,255,226,15,41,120,241,15,41,112,225,15,41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72, 145,15,41,64,129,137,181,36,255,255,255,139,5,177,124,9,0,3,133,36,255,255,255,255,192,137,133,76,255,255,255,139,133,76,255,255,255,72,152,72,141,20,197,0,0,0,0,139,5,141,124,9,0,72,152,72,141,52,197,0,0,0,0,72,139,61,116,124,9,0,232,206,228,4,0,72, 137,5,104,124,9,0,72,139,5,97,124,9,0,72,141,80,248,139,5,95,124,9,0,72,152,72,193,224,3,72,1,194,72,139,133,40,255,255,255,72,137,2,72,141,133,48,255,255,255,199,0,16,0,0,0,72,141,133,48,255,255,255,199,64,4,48,0,0,0,72,141,133,48,255,255,255,72,141, 85,16,72,137,80,8,72,141,133,48,255,255,255,72,141,149,80,255,255,255,72,137,80,16,199,133,72,255,255,255,0,0,0,0,233,142,0,0,0,139,5,251,123,9,0,3,133,72,255,255,255,72,152,72,193,224,3,72,137,194,72,139,5,221,123,9,0,72,1,194,72,137,149,16,255,255, 255,139,133,48,255,255,255,131,248,48,115,42,72,139,149,64,255,255,255,139,133,48,255,255,255,137,192,72,1,194,72,137,149,24,255,255,255,139,133,48,255,255,255,131,192,8,137,133,48,255,255,255,235,25,72,139,133,56,255,255,255,72,137,133,24,255,255,255, 72,131,192,8,72,137,133,56,255,255,255,72,139,133,24,255,255,255,72,139,0,72,139,149,16,255,255,255,72,137,2,255,133,72,255,255,255,139,133,72,255,255,255,59,133,36,255,255,255,15,140,96,255,255,255,72,139,5,82,123,9,0,72,141,80,248,139,133,76,255,255, 255,72,152,72,193,224,3,72,1,194,72,141,5,235,253,255,255,72,137,2,139,133,76,255,255,255,137,5,49,123,9,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,139,5,22,123,9,0,3,69,228,255,192,137,69,252,139,69,252,72,152,72, 141,20,197,0,0,0,0,139,5,251,122,9,0,72,152,72,141,52,197,0,0,0,0,72,139,61,226,122,9,0,232,60,227,4,0,72,137,5,214,122,9,0,72,139,5,207,122,9,0,72,141,80,248,139,5,205,122,9,0,72,152,72,193,224,3,72,1,194,72,139,69,232,72,137,2,199,69,248,0,0,0,0,235, 50,139,5,174,122,9,0,3,69,248,72,152,72,193,224,3,72,137,194,72,139,5,147,122,9,0,72,1,194,139,69,248,72,152,72,193,224,3,72,3,69,216,72,139,0,72,137,2,255,69,248,139,69,248,59,69,228,124,198,72,139,5,107,122,9,0,72,141,80,248,139,69,252,72,152,72,193, 224,3,72,1,194,72,141,5,7,253,255,255,72,137,2,139,69,252,137,5,80,122,9,0,201,195,85,72,137,229,72,131,236,16,72,139,5,55,122,9,0,72,133,192,116,51,72,139,5,43,122,9,0,72,137,69,248,235,17,72,139,69,248,72,139,0,72,139,125,248,255,208,72,137,69,248, 72,131,125,248,0,117,232,139,5,19,122,9,0,255,192,137,5,11,122,9,0,201,195,85,72,137,229,137,125,236,199,69,252,255,255,255,255,131,125,236,0,127,15,199,69,232,0,0,0,0,235,18,255,69,252,209,125,236,131,125,236,0,117,244,139,69,252,137,69,232,139,69,232, 201,195,85,72,137,229,72,131,236,32,235,70,72,139,69,232,72,139,64,48,72,137,5,216,122,9,0,72,139,69,232,139,64,24,133,192,117,30,72,139,69,232,139,64,56,72,152,72,141,52,133,0,0,0,0,72,139,69,232,72,139,120,8,232,232,226,4,0,72,139,125,232,190,64,0, 0,0,232,218,226,4,0,72,139,5,154,122,9,0,72,137,69,232,72,131,125,232,0,117,168,199,69,252,0,0,0,0,235,34,139,69,252,72,152,72,141,20,197,0,0,0,0,72,141,5,98,121,9,0,72,141,4,2,72,199,0,0,0,0,0,255,69,252,131,125,252,32,126,216,72,199,5,75,122,9,0,0, 0,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,139,120,56,232,20,255,255,255,137,69,252,72,139,5,39,122,9,0,72,137,69,240,235,44,72,139,69,240,72,59,69,216,117,22,72,141,61,40,241,6,0,184,0,0,0,0,232,201,193,5,0,233,122,1,0,0, 72,139,69,240,72,139,64,40,72,137,69,240,72,131,125,240,0,117,205,139,69,252,72,152,72,141,20,197,0,0,0,0,72,141,5,210,120,9,0,72,141,4,2,72,139,0,72,137,69,240,235,44,72,139,69,240,72,59,69,216,117,22,72,141,61,226,240,6,0,184,0,0,0,0,232,117,193,5, 0,233,38,1,0,0,72,139,69,240,72,139,64,40,72,137,69,240,72,131,125,240,0,117,205,139,5,112,120,9,0,133,192,116,28,72,139,69,216,139,80,24,72,139,117,216,72,141,61,178,240,6,0,184,0,0,0,0,232,74,185,5,0,72,139,69,216,139,64,24,133,192,116,111,72,139,69, 216,72,139,64,32,72,137,69,232,72,139,69,232,72,59,69,216,116,7,72,131,125,232,0,117,17,72,141,61,134,240,6,0,184,0,0,0,0,232,254,192,5,0,72,139,69,232,139,64,20,141,80,255,72,139,69,232,137,80,20,72,139,69,232,139,64,20,133,192,117,9,72,139,125,232, 232,205,254,255,255,72,139,5,15,121,9,0,72,139,85,216,72,137,66,40,72,139,69,216,72,137,5,252,120,9,0,235,115,139,69,252,72,152,72,141,20,197,0,0,0,0,72,141,5,222,119,9,0,72,141,4,2,72,139,0,72,59,69,216,117,17,72,141,61,31,240,6,0,184,0,0,0,0,232,139, 192,5,0,139,69,252,72,152,72,141,20,197,0,0,0,0,72,141,5,172,119,9,0,72,141,4,2,72,139,16,72,139,69,216,72,137,80,40,139,69,252,72,152,72,141,20,197,0,0,0,0,72,141,5,137,119,9,0,72,1,194,72,139,69,216,72,137,2,201,195,85,72,137,229,72,131,236,64,137, 125,204,243,15,17,69,200,199,69,244,0,0,0,0,139,125,204,232,73,253,255,255,137,69,252,131,125,204,0,116,76,139,77,252,184,1,0,0,0,211,224,137,69,244,139,69,244,59,69,204,116,3,209,101,244,131,125,252,32,126,17,72,141,61,147,239,6,0,184,0,0,0,0,232,241, 191,5,0,139,69,252,72,152,72,193,224,3,72,137,194,72,141,5,19,119,9,0,72,141,4,2,72,137,69,224,235,11,72,141,5,10,120,9,0,72,137,69,224,72,139,69,224,72,139,0,72,137,69,232,72,131,125,232,0,116,17,72,139,69,232,72,139,80,40,72,139,69,224,72,137,16,235, 111,191,64,0,0,0,232,38,222,4,0,72,137,69,232,131,125,204,0,116,42,139,69,244,72,152,72,141,60,133,0,0,0,0,232,10,222,4,0,72,137,194,72,139,69,232,72,137,80,8,72,139,69,232,199,64,24,0,0,0,0,235,23,72,139,69,232,72,199,64,8,0,0,0,0,72,139,69,232,199, 64,24,1,0,0,0,72,139,5,143,119,9,0,72,139,85,232,72,137,66,48,72,139,69,232,72,137,5,124,119,9,0,72,139,85,232,139,69,204,137,2,72,139,85,232,139,69,244,137,66,56,72,139,85,232,139,69,200,137,66,16,72,139,69,232,199,64,20,0,0,0,0,72,139,69,232,72,199, 64,32,0,0,0,0,139,5,22,118,9,0,133,192,116,28,72,139,69,232,139,80,24,72,139,117,232,72,141,61,151,238,6,0,184,0,0,0,0,232,240,182,5,0,72,139,69,232,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,64,16,72,139,69,248,139,56, 232,111,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,139,64,24,133,192,116,13,72,139,69,248,72,139,64,32,72,133,192,116,17,72,141,61,66,238,6,0,184,0,0,0,0,232,124,190,5,0,72,139,69,248,72,59,69,240,117, 17,72,141,61,58,238,6,0,184,0,0,0,0,232,97,190,5,0,72,139,85,248,72,139,69,240,72,137,66,32,72,139,69,240,72,139,80,8,72,139,69,248,72,137,80,8,72,139,69,240,139,16,72,139,69,248,137,16,72,139,69,240,139,80,56,72,139,69,248,137,80,56,201,195,85,72,137, 229,72,137,125,248,72,137,117,240,72,139,69,248,139,16,72,139,69,240,139,0,57,194,117,34,72,139,69,248,243,15,16,72,16,72,139,69,240,243,15,16,64,16,15,46,200,117,11,122,9,199,69,236,1,0,0,0,235,7,199,69,236,0,0,0,0,139,69,236,201,195,85,72,137,229,72, 131,236,16,72,139,5,237,116,9,0,72,133,192,116,39,139,5,234,116,9,0,72,152,72,141,52,197,0,0,0,0,72,139,61,209,116,9,0,232,45,222,4,0,72,199,5,193,116,9,0,0,0,0,0,232,243,250,255,255,201,195,85,72,137,229,232,181,255,255,255,139,5,163,116,9,0,255,192, 137,5,155,116,9,0,191,8,0,0,0,232,6,220,4,0,72,137,5,146,116,9,0,72,139,21,139,116,9,0,72,141,5,55,247,255,255,72,137,2,199,5,127,116,9,0,1,0,0,0,72,139,5,160,117,9,0,72,133,192,116,17,72,141,61,43,237,6,0,184,0,0,0,0,232,61,189,5,0,201,195,85,72,137, 229,139,5,70,116,9,0,201,195,85,72,137,229,72,131,236,64,137,125,220,72,137,117,208,137,85,204,137,77,200,191,48,0,0,0,232,154,219,4,0,72,137,69,232,139,5,31,116,9,0,133,192,116,17,72,141,61,234,236,6,0,184,0,0,0,0,232,4,181,5,0,72,139,69,232,72,199, 0,0,0,0,0,139,69,220,137,194,72,139,69,232,136,80,44,72,139,85,232,72,139,69,208,72,137,66,24,72,139,85,232,139,69,204,137,66,16,72,139,85,232,139,69,200,137,66,20,72,139,21,0,117,9,0,72,139,69,232,72,137,80,8,72,139,69,232,72,137,5,237,116,9,0,72,139, 69,232,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,191,56,0,0,0,232,10,219,4,0,72,137,69,240,72,139,69,216,72,139,16,72,139,69,240,72,137,80,32,72,139,85,216,72,139,69,240,72,137,2,72,139,85,240,72,139,69,208,72,137,66,40,72,139, 125,208,232,10,243,4,0,137,194,72,139,69,240,137,80,8,72,139,69,240,139,64,8,72,152,72,137,199,72,193,231,4,232,185,218,4,0,72,137,194,72,139,69,240,72,137,16,72,139,69,240,72,139,0,72,137,69,224,72,139,69,240,139,64,8,137,69,252,235,15,72,139,69,224, 199,0,0,0,0,0,72,131,69,224,16,255,77,252,131,125,252,255,117,232,72,139,125,208,232,124,244,4,0,137,194,72,139,69,240,137,80,24,72,139,69,240,139,64,24,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,199,232,79,218,4,0,72,137,194,72,139,69, 240,72,137,80,16,72,139,69,240,72,139,64,16,72,137,69,232,72,139,69,240,139,64,24,137,69,252,235,27,72,139,69,232,72,199,64,16,0,0,0,0,72,139,69,232,199,0,0,0,0,0,72,131,69,232,24,255,77,252,131,125,252,255,117,220,201,195,85,72,137,229,65,85,65,84,83, 72,131,236,120,72,137,125,168,72,137,117,160,137,85,156,72,137,77,144,68,137,69,140,139,117,156,72,139,125,160,232,43,244,4,0,137,69,220,139,117,140,72,139,125,144,232,112,242,4,0,137,69,216,139,5,81,114,9,0,133,192,116,59,72,139,69,144,72,139,56,232, 29,188,4,0,72,137,195,72,139,69,160,72,139,56,232,14,188,4,0,72,137,198,139,69,140,139,77,156,65,137,192,72,137,218,72,141,61,6,235,6,0,184,0,0,0,0,232,12,179,5,0,72,139,69,168,72,139,0,72,137,69,208,235,12,72,139,69,208,72,139,64,32,72,137,69,208,72, 131,125,208,0,116,14,72,139,69,208,72,139,64,40,72,59,69,160,117,223,72,139,69,168,72,139,0,72,137,69,200,235,12,72,139,69,200,72,139,64,32,72,137,69,200,72,131,125,200,0,116,14,72,139,69,200,72,139,64,40,72,59,69,144,117,223,72,131,125,208,0,116,13, 72,131,125,200,0,116,6,131,125,216,0,121,30,72,139,69,208,72,139,120,40,72,141,53,143,234,6,0,184,0,0,0,0,232,173,184,5,0,233,6,1,0,0,131,125,220,0,120,24,72,139,69,208,139,64,24,59,69,220,126,12,72,139,69,200,139,64,8,59,69,216,127,80,72,139,69,200, 139,88,8,72,139,69,208,68,139,96,24,72,139,69,144,72,139,56,232,39,187,4,0,73,137,197,72,139,69,160,72,139,56,232,24,187,4,0,72,137,198,139,69,216,139,77,220,137,28,36,69,137,225,65,137,192,76,137,234,72,141,61,84,234,6,0,184,0,0,0,0,232,253,185,5,0, 72,139,69,208,72,139,72,16,139,69,220,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,137,69,192,72,139,69,200,72,139,16,139,69,216,72,152,72,193,224,4,72,141,4,2,72,137,69,184,191,24,0,0,0,232,66,216,4,0,72,137,69,176,72,139,69,192, 72,139,80,16,72,139,69,176,72,137,80,16,72,139,85,192,72,139,69,176,72,137,66,16,72,139,85,176,72,139,69,200,72,137,2,72,139,85,176,139,69,216,137,66,8,72,139,69,192,139,0,141,80,1,72,139,69,192,137,16,72,139,69,184,139,0,141,80,1,72,139,69,184,137,16, 72,131,196,120,91,65,92,65,93,201,195,85,72,137,229,72,137,125,232,72,137,117,224,72,139,69,232,72,139,0,72,137,69,240,199,69,252,0,0,0,0,235,33,72,139,69,240,72,59,69,224,117,8,139,69,252,137,69,220,235,29,72,139,69,240,72,139,64,32,72,137,69,240,255, 69,252,72,131,125,240,0,117,216,199,69,220,255,255,255,255,139,69,220,201,195,85,72,137,229,65,86,65,85,65,84,83,72,129,236,160,0,0,0,72,137,189,88,255,255,255,72,137,181,80,255,255,255,72,139,133,80,255,255,255,72,139,64,40,72,139,0,72,137,69,160,72, 141,5,186,160,9,0,72,139,0,72,57,69,160,116,31,72,141,5,74,161,9,0,72,139,0,72,57,69,160,117,27,72,139,133,88,255,255,255,15,182,64,45,132,192,117,12,199,133,72,255,255,255,1,0,0,0,235,10,199,133,72,255,255,255,0,0,0,0,139,133,72,255,255,255,137,69,212, 72,141,5,108,160,9,0,72,139,0,72,57,69,160,116,46,72,141,5,4,161,9,0,72,139,0,72,57,69,160,117,42,72,139,133,88,255,255,255,15,182,64,45,132,192,117,27,72,139,133,88,255,255,255,15,182,64,46,132,192,117,12,199,133,76,255,255,255,1,0,0,0,235,10,199,133, 76,255,255,255,0,0,0,0,139,133,76,255,255,255,137,69,208,139,5,60,111,9,0,133,192,116,35,72,139,125,160,232,11,185,4,0,72,137,198,139,77,212,139,85,208,72,141,61,116,232,6,0,184,0,0,0,0,232,15,176,5,0,199,69,220,0,0,0,0,72,139,133,80,255,255,255,72,139, 0,72,137,69,184,233,180,0,0,0,72,139,69,184,139,0,133,192,15,133,158,0,0,0,72,139,133,88,255,255,255,243,15,16,64,32,72,139,133,88,255,255,255,139,120,36,232,113,247,255,255,72,137,133,112,255,255,255,72,139,133,80,255,255,255,72,139,120,40,139,117,220, 232,77,241,4,0,72,137,133,96,255,255,255,72,131,189,96,255,255,255,0,116,34,72,139,133,112,255,255,255,139,16,72,139,133,112,255,255,255,72,139,112,8,72,139,189,96,255,255,255,232,237,125,254,255,235,25,72,139,133,112,255,255,255,139,48,72,139,133,112, 255,255,255,72,139,120,8,232,171,234,255,255,72,139,69,184,72,139,149,112,255,255,255,72,137,80,8,72,139,133,112,255,255,255,199,64,20,1,0,0,0,255,69,220,72,131,69,184,16,72,139,133,80,255,255,255,139,64,8,59,69,220,15,143,57,255,255,255,72,139,133,80, 255,255,255,139,80,8,72,139,133,80,255,255,255,139,64,24,141,4,2,72,152,72,141,60,197,0,0,0,0,232,127,213,4,0,72,137,69,152,72,139,133,80,255,255,255,139,64,8,72,152,72,193,224,3,72,3,69,152,72,137,69,144,72,139,69,152,72,137,69,136,72,139,133,80,255, 255,255,72,139,0,72,137,69,184,72,139,133,80,255,255,255,139,64,8,137,69,220,235,87,72,139,69,184,72,139,80,8,72,139,69,136,72,137,16,72,139,69,136,72,139,0,139,80,20,255,202,137,80,20,139,64,20,137,69,204,131,125,208,0,116,17,72,139,69,136,72,139,16, 139,66,20,255,192,137,66,20,235,18,131,125,204,0,117,12,72,139,69,136,72,139,56,232,91,244,255,255,72,131,69,136,8,72,131,69,184,16,255,77,220,131,125,220,255,117,160,72,139,69,144,72,137,69,136,72,139,133,80,255,255,255,72,139,64,16,72,137,69,192,72, 139,133,80,255,255,255,139,64,24,137,69,220,233,135,0,0,0,131,125,212,0,116,50,72,139,133,88,255,255,255,243,15,16,64,32,191,0,0,0,0,232,199,245,255,255,72,137,194,72,139,69,192,72,137,80,8,72,139,69,192,72,139,80,8,72,139,69,136,72,137,16,235,53,72, 139,133,88,255,255,255,243,15,16,64,32,72,139,133,88,255,255,255,139,120,36,232,144,245,255,255,72,137,194,72,139,69,192,72,137,80,8,72,139,69,192,72,139,80,8,72,139,69,136,72,137,16,72,139,69,136,72,139,16,72,139,69,192,139,0,137,66,20,72,131,69,136, 8,72,131,69,192,24,255,77,220,131,125,220,255,15,133,108,255,255,255,72,141,61,189,226,6,0,232,246,185,4,0,72,137,198,72,139,133,80,255,255,255,72,139,64,40,72,137,199,232,139,202,4,0,72,137,194,72,139,133,80,255,255,255,72,139,64,40,72,137,199,72,139, 117,152,184,0,0,0,0,255,210,72,139,69,144,72,137,69,136,72,139,133,80,255,255,255,72,139,64,16,72,137,69,192,72,139,133,80,255,255,255,139,64,24,137,69,220,235,36,72,139,69,136,72,139,0,139,64,20,133,192,117,12,72,139,69,136,72,139,56,232,13,243,255, 255,72,131,69,136,8,72,131,69,192,24,255,77,220,131,125,220,255,117,211,139,5,25,108,9,0,133,192,15,132,159,1,0,0,72,139,133,80,255,255,255,139,80,8,72,139,133,80,255,255,255,139,64,24,141,4,2,133,192,117,67,72,139,181,80,255,255,255,72,139,189,88,255, 255,255,232,112,251,255,255,137,195,72,139,133,80,255,255,255,72,139,64,40,72,139,56,232,170,181,4,0,72,137,198,137,218,72,141,61,37,229,6,0,184,0,0,0,0,232,178,172,5,0,233,65,1,0,0,72,139,133,80,255,255,255,139,80,8,72,139,133,80,255,255,255,139,64, 24,141,4,2,131,248,1,117,77,72,139,69,136,76,139,32,72,139,181,80,255,255,255,72,139,189,88,255,255,255,232,10,251,255,255,137,195,72,139,133,80,255,255,255,72,139,64,40,72,139,56,232,68,181,4,0,72,137,198,76,137,225,137,218,72,141,61,198,228,6,0,184, 0,0,0,0,232,73,172,5,0,233,216,0,0,0,72,139,133,80,255,255,255,139,80,8,72,139,133,80,255,255,255,139,64,24,141,4,2,131,248,2,117,88,72,139,69,136,72,131,192,8,76,139,32,72,139,69,136,76,139,40,72,139,181,80,255,255,255,72,139,189,88,255,255,255,232, 150,250,255,255,137,195,72,139,133,80,255,255,255,72,139,64,40,72,139,56,232,208,180,4,0,72,137,198,77,137,224,76,137,233,137,218,72,141,61,95,228,6,0,184,0,0,0,0,232,210,171,5,0,235,100,72,139,69,136,72,131,192,16,76,139,32,72,139,69,136,72,131,192, 8,76,139,40,72,139,69,136,76,139,48,72,139,181,80,255,255,255,72,139,189,88,255,255,255,232,51,250,255,255,137,195,72,139,133,80,255,255,255,72,139,64,40,72,139,56,232,109,180,4,0,72,137,198,77,137,225,77,137,232,76,137,241,137,218,72,141,61,13,228,6, 0,184,0,0,0,0,232,108,171,5,0,72,139,133,80,255,255,255,72,139,64,16,72,137,69,192,72,139,133,80,255,255,255,139,64,24,137,69,220,233,8,2,0,0,72,139,69,192,72,139,64,8,72,137,69,128,72,139,69,192,72,139,64,16,72,137,69,176,233,219,1,0,0,72,139,69,176, 72,139,0,72,137,133,104,255,255,255,72,139,133,104,255,255,255,72,139,16,72,139,69,176,139,64,8,72,152,72,193,224,4,72,141,4,2,72,137,69,184,72,139,69,184,72,139,64,8,72,137,133,120,255,255,255,72,131,189,120,255,255,255,0,15,132,249,0,0,0,72,139,69, 128,139,64,20,141,80,255,72,139,69,128,137,80,20,72,139,133,120,255,255,255,139,64,20,141,80,255,72,139,133,120,255,255,255,137,80,20,72,139,181,120,255,255,255,72,139,125,128,232,112,244,255,255,133,192,117,55,72,139,133,80,255,255,255,72,139,64,40, 72,139,56,232,119,179,4,0,72,137,194,72,139,133,80,255,255,255,72,139,120,40,72,141,53,58,227,6,0,184,0,0,0,0,232,160,176,5,0,233,115,1,0,0,72,139,125,128,232,126,243,255,255,72,137,133,112,255,255,255,72,139,69,128,139,8,72,139,133,112,255,255,255,72, 139,80,8,72,139,133,120,255,255,255,72,139,112,8,72,139,69,128,72,139,120,8,232,97,30,254,255,72,139,85,184,72,139,133,112,255,255,255,72,137,66,8,72,139,133,112,255,255,255,199,64,20,1,0,0,0,72,139,69,128,139,64,20,133,192,117,9,72,139,125,128,232,232, 239,255,255,72,139,133,120,255,255,255,139,64,20,133,192,117,26,72,139,189,120,255,255,255,232,206,239,255,255,235,12,72,139,85,184,72,139,69,128,72,137,66,8,72,139,69,184,139,64,4,141,80,1,72,139,69,184,137,80,4,72,139,69,184,139,80,4,72,139,69,184, 139,0,57,194,124,94,72,139,133,104,255,255,255,139,64,8,131,248,1,126,60,72,139,133,104,255,255,255,72,139,0,72,137,69,184,72,139,133,104,255,255,255,139,64,8,137,69,216,235,22,72,139,69,184,139,80,4,72,139,69,184,139,0,57,194,124,33,72,131,69,184,16, 255,77,216,131,125,216,255,117,225,72,139,181,104,255,255,255,72,139,189,88,255,255,255,232,70,248,255,255,72,139,69,176,72,139,64,16,72,137,69,176,72,131,125,176,0,15,133,26,254,255,255,72,131,69,192,24,255,77,220,131,125,220,255,15,133,235,253,255, 255,72,139,133,80,255,255,255,139,80,8,72,139,133,80,255,255,255,139,64,24,141,4,2,72,152,72,141,52,197,0,0,0,0,72,139,125,152,232,119,209,4,0,72,139,133,80,255,255,255,199,64,48,1,0,0,0,72,129,196,160,0,0,0,91,65,92,65,93,65,94,201,195,85,72,137,229, 65,84,83,72,129,236,32,1,0,0,72,137,189,8,255,255,255,72,139,133,8,255,255,255,72,139,64,8,72,137,133,104,255,255,255,199,69,184,0,0,0,0,199,69,176,1,0,0,0,199,69,172,1,0,0,0,139,5,178,103,9,0,133,192,15,132,249,0,0,0,72,141,61,118,225,6,0,184,0,0,0, 0,232,147,168,5,0,72,139,133,8,255,255,255,72,139,0,72,137,69,160,233,202,0,0,0,72,139,69,160,72,139,64,40,72,139,56,232,82,177,4,0,72,137,198,72,141,61,82,225,6,0,184,0,0,0,0,232,92,168,5,0,72,139,69,160,72,139,64,16,72,137,69,144,199,69,236,0,0,0,0, 235,117,72,139,69,144,72,139,64,16,72,137,69,128,235,88,72,139,69,128,68,139,96,8,72,139,69,128,72,139,48,72,139,189,8,255,255,255,232,177,246,255,255,137,195,72,139,69,128,72,139,0,72,139,64,40,72,139,56,232,235,176,4,0,139,117,236,69,137,224,137,217, 72,137,194,72,141,61,241,224,6,0,184,0,0,0,0,232,237,167,5,0,72,139,69,128,72,139,64,16,72,137,69,128,72,131,125,128,0,117,161,72,131,69,144,24,255,69,236,72,139,69,160,139,64,24,59,69,236,15,143,123,255,255,255,72,139,69,160,72,139,64,32,72,137,69,160, 72,131,125,160,0,15,133,43,255,255,255,72,139,133,8,255,255,255,72,139,0,72,137,69,160,72,199,133,112,255,255,255,0,0,0,0,235,99,72,139,69,160,72,139,64,40,72,137,133,96,255,255,255,72,139,133,96,255,255,255,72,139,16,72,139,5,138,102,9,0,72,57,194,117, 50,72,131,189,112,255,255,255,0,116,26,72,139,189,112,255,255,255,72,141,53,117,224,6,0,184,0,0,0,0,232,115,173,5,0,235,14,72,139,133,96,255,255,255,72,137,133,112,255,255,255,72,139,69,160,72,139,64,32,72,137,69,160,72,131,125,160,0,117,150,72,131,189, 104,255,255,255,0,116,28,72,139,133,104,255,255,255,139,64,32,137,69,228,72,139,133,104,255,255,255,139,64,36,137,69,224,235,18,232,109,21,5,0,243,15,17,69,228,232,115,127,5,0,137,69,224,72,131,189,112,255,255,255,0,15,132,117,1,0,0,72,139,133,112,255, 255,255,139,64,48,137,69,208,131,125,208,0,117,6,139,69,224,137,69,208,72,139,133,112,255,255,255,139,64,52,137,69,204,131,125,204,0,117,6,139,69,208,137,69,204,72,139,133,112,255,255,255,139,64,56,137,69,168,139,69,168,59,69,208,126,6,139,69,208,137, 69,168,72,139,133,112,255,255,255,139,64,96,137,69,176,72,139,133,112,255,255,255,139,64,92,137,69,172,139,69,176,59,69,224,126,6,139,69,224,137,69,176,139,69,208,137,194,15,175,85,176,139,69,224,15,175,69,168,15,175,69,172,137,193,137,208,193,250,31, 247,249,137,69,220,139,69,224,15,175,69,168,137,194,15,175,85,172,139,69,208,15,175,69,176,137,193,137,208,193,250,31,247,249,137,69,216,72,139,133,112,255,255,255,139,64,60,137,69,212,243,15,42,69,168,15,40,200,243,15,89,77,228,243,15,42,69,172,243, 15,89,200,243,15,42,69,176,15,40,209,243,15,94,208,15,40,194,243,15,17,69,200,131,125,220,0,127,7,199,69,220,1,0,0,0,131,125,216,0,127,7,199,69,216,1,0,0,0,72,139,149,112,255,255,255,139,69,216,137,66,68,72,139,149,112,255,255,255,139,69,220,137,66,64, 139,85,220,255,202,139,5,203,100,9,0,33,194,72,139,133,112,255,255,255,137,80,60,72,131,189,104,255,255,255,0,116,26,131,125,168,1,117,20,139,69,208,59,69,224,117,12,131,125,176,1,117,6,131,125,172,1,116,7,199,69,184,1,0,0,0,72,139,133,112,255,255,255, 15,182,64,88,15,190,192,137,69,180,235,115,139,69,228,137,69,200,139,69,224,137,69,208,72,131,189,104,255,255,255,0,116,18,72,139,133,104,255,255,255,139,64,40,137,133,4,255,255,255,235,9,139,69,208,137,133,4,255,255,255,139,141,4,255,255,255,137,77, 204,199,69,172,1,0,0,0,139,69,172,137,69,176,199,69,216,1,0,0,0,139,69,216,137,69,220,199,69,212,0,0,0,0,72,131,189,104,255,255,255,0,117,7,199,69,184,1,0,0,0,199,69,180,0,0,0,0,139,69,184,137,194,72,139,133,8,255,255,255,136,80,45,139,69,180,137,194, 72,139,133,8,255,255,255,136,80,46,72,139,149,8,255,255,255,139,69,200,137,66,32,72,139,149,8,255,255,255,139,69,208,137,66,36,72,139,149,8,255,255,255,139,69,204,137,66,40,72,139,133,8,255,255,255,72,139,64,24,72,133,192,15,132,232,0,0,0,131,125,180, 0,117,10,131,125,184,0,15,132,216,0,0,0,199,69,236,0,0,0,0,72,139,133,8,255,255,255,72,139,80,24,72,139,133,8,255,255,255,139,64,16,72,152,72,193,224,3,72,141,4,2,72,137,133,88,255,255,255,233,147,0,0,0,72,139,133,88,255,255,255,72,139,0,139,64,24,133, 192,116,119,72,139,133,88,255,255,255,72,139,0,72,139,64,32,72,133,192,117,100,243,15,16,69,228,139,125,224,232,209,235,255,255,72,137,198,72,139,133,88,255,255,255,72,139,56,232,82,237,255,255,72,139,133,88,255,255,255,72,139,16,139,66,20,255,192,137, 66,20,139,5,8,99,9,0,133,192,116,41,72,139,133,88,255,255,255,72,139,0,72,139,80,32,72,139,133,88,255,255,255,72,139,48,72,141,61,41,221,6,0,184,0,0,0,0,232,213,163,5,0,255,69,236,72,131,133,88,255,255,255,8,72,139,133,8,255,255,255,139,64,20,59,69,236, 15,143,90,255,255,255,139,5,183,98,9,0,133,192,116,23,139,85,180,139,117,184,72,141,61,247,220,6,0,184,0,0,0,0,232,150,163,5,0,72,139,133,8,255,255,255,72,139,0,72,137,69,160,233,61,1,0,0,72,139,69,160,72,139,64,40,72,137,133,80,255,255,255,72,139,133, 8,255,255,255,72,139,64,24,72,137,133,72,255,255,255,72,139,133,8,255,255,255,72,139,64,24,72,137,133,64,255,255,255,72,131,189,64,255,255,255,0,116,23,72,139,133,8,255,255,255,139,64,16,72,152,72,193,224,3,72,1,133,64,255,255,255,72,139,133,80,255,255, 255,72,139,16,72,141,5,152,147,9,0,72,139,0,72,57,194,117,88,139,21,38,98,9,0,72,139,133,8,255,255,255,72,139,112,24,72,139,189,80,255,255,255,139,77,220,68,139,85,204,68,139,93,208,139,69,180,137,68,36,32,139,69,184,137,68,36,24,139,69,172,137,68,36, 16,139,69,176,137,68,36,8,139,69,216,137,4,36,65,137,201,65,137,208,68,137,209,68,137,218,232,205,249,1,0,235,108,72,139,133,80,255,255,255,72,139,16,72,141,5,47,147,9,0,72,139,0,72,57,194,117,83,139,21,181,97,9,0,72,139,189,80,255,255,255,139,77,220, 139,117,204,68,139,85,208,76,139,157,64,255,255,255,139,69,180,137,68,36,32,139,69,184,137,68,36,24,139,69,172,137,68,36,16,139,69,176,137,68,36,8,139,69,216,137,4,36,65,137,201,65,137,208,137,241,68,137,210,76,137,222,232,52,3,2,0,72,139,69,160,72,139, 64,32,72,137,69,160,72,131,125,160,0,15,133,184,254,255,255,139,5,71,97,9,0,137,69,196,72,131,189,112,255,255,255,0,116,60,131,125,184,0,117,6,131,125,180,0,116,48,72,139,149,112,255,255,255,190,1,0,0,0,72,141,61,42,225,255,255,184,0,0,0,0,232,203,227, 255,255,139,5,11,97,9,0,141,80,255,72,139,133,112,255,255,255,137,80,76,72,139,133,8,255,255,255,72,139,0,72,137,69,160,233,132,0,0,0,72,139,69,160,199,64,48,0,0,0,0,72,139,69,160,72,139,64,16,72,137,69,144,72,139,69,160,139,64,24,137,69,236,235,16,72, 139,69,144,199,64,4,0,0,0,0,72,131,69,144,24,255,77,236,131,125,236,255,117,231,72,139,69,160,72,139,0,72,137,69,136,72,139,69,160,139,64,8,137,69,236,235,28,72,139,69,136,199,64,4,0,0,0,0,72,139,69,136,72,199,64,8,0,0,0,0,72,131,69,136,16,255,77,236, 131,125,236,255,117,219,72,139,69,160,72,139,64,32,72,137,69,160,72,131,125,160,0,15,133,113,255,255,255,72,139,133,8,255,255,255,72,139,0,72,137,69,160,235,86,72,139,69,160,139,64,48,133,192,117,63,72,139,69,160,72,139,0,72,137,69,136,72,139,69,160, 139,64,8,137,69,236,235,15,72,139,69,136,139,0,133,192,117,30,72,131,69,136,16,255,77,236,131,125,236,255,117,232,72,139,117,160,72,139,189,8,255,255,255,232,215,239,255,255,72,139,69,160,72,139,64,32,72,137,69,160,72,131,125,160,0,117,163,72,139,133, 8,255,255,255,72,139,0,72,137,69,160,233,58,1,0,0,72,139,69,160,139,64,48,133,192,15,133,31,1,0,0,72,139,69,160,72,139,120,40,72,141,53,30,218,6,0,184,0,0,0,0,232,204,166,5,0,199,69,236,0,0,0,0,72,139,133,8,255,255,255,72,139,80,24,72,139,133,8,255,255, 255,139,64,16,72,152,72,193,224,3,72,141,4,2,72,137,133,56,255,255,255,233,191,0,0,0,72,139,133,56,255,255,255,72,139,0,139,64,24,133,192,15,132,159,0,0,0,72,139,133,56,255,255,255,72,139,0,72,139,64,32,72,133,192,15,133,136,0,0,0,243,15,16,69,228,139, 125,224,232,220,231,255,255,72,137,133,48,255,255,255,72,139,133,56,255,255,255,72,139,56,72,139,181,48,255,255,255,232,82,233,255,255,72,139,133,56,255,255,255,72,139,16,139,66,20,255,192,137,66,20,72,139,133,48,255,255,255,139,48,72,139,133,48,255, 255,255,72,139,120,8,232,52,219,255,255,139,5,239,94,9,0,133,192,116,41,72,139,133,56,255,255,255,72,139,0,72,139,80,32,72,139,133,56,255,255,255,72,139,48,72,141,61,109,217,6,0,184,0,0,0,0,232,188,159,5,0,255,69,236,72,131,133,56,255,255,255,8,72,139, 133,8,255,255,255,139,64,20,59,69,236,15,143,46,255,255,255,235,23,72,139,69,160,72,139,64,32,72,137,69,160,72,131,125,160,0,15,133,187,254,255,255,72,131,189,112,255,255,255,0,116,41,131,125,184,0,117,6,131,125,180,0,116,29,72,139,149,112,255,255,255, 190,1,0,0,0,72,141,61,59,223,255,255,184,0,0,0,0,232,30,225,255,255,139,5,94,94,9,0,137,69,192,72,139,133,8,255,255,255,72,139,0,72,137,69,160,233,190,0,0,0,72,139,69,160,72,139,64,40,72,137,133,40,255,255,255,72,139,133,40,255,255,255,72,139,16,72,141, 5,152,143,9,0,72,139,0,72,57,194,15,133,134,0,0,0,72,139,133,8,255,255,255,72,139,64,24,72,137,133,32,255,255,255,72,131,189,32,255,255,255,0,116,23,72,139,133,8,255,255,255,139,64,16,72,152,72,193,224,3,72,1,133,32,255,255,255,139,21,231,93,9,0,72,139, 189,40,255,255,255,139,77,220,139,117,204,68,139,85,208,76,139,157,32,255,255,255,139,69,180,137,68,36,32,139,69,184,137,68,36,24,139,69,172,137,68,36,16,139,69,176,137,68,36,8,139,69,216,137,4,36,65,137,201,65,137,208,137,241,68,137,210,76,137,222,232, 215,0,2,0,72,139,69,160,72,139,64,32,72,137,69,160,72,131,125,160,0,15,133,55,255,255,255,139,5,121,93,9,0,137,69,188,72,131,189,112,255,255,255,0,116,59,139,85,196,139,69,192,137,193,41,209,137,202,72,139,133,112,255,255,255,137,80,80,139,85,192,139, 69,188,137,193,41,209,137,202,72,139,133,112,255,255,255,137,80,84,139,69,184,137,194,72,139,133,112,255,255,255,136,80,90,139,5,31,93,9,0,133,192,15,132,99,1,0,0,72,139,133,8,255,255,255,72,139,64,8,72,133,192,117,69,139,5,13,93,9,0,137,69,236,72,139, 5,251,92,9,0,72,137,133,24,255,255,255,235,35,72,139,133,24,255,255,255,72,139,48,72,141,61,155,215,6,0,184,0,0,0,0,232,205,157,5,0,72,131,133,24,255,255,255,8,255,77,236,131,125,236,255,117,212,72,141,61,131,215,6,0,184,0,0,0,0,232,171,157,5,0,233,248, 0,0,0,72,139,133,8,255,255,255,72,139,0,72,139,64,16,72,137,69,144,72,139,133,8,255,255,255,72,139,0,139,64,24,137,69,232,235,66,72,139,69,144,72,139,64,16,72,137,69,128,235,40,72,139,69,128,72,139,64,16,72,137,133,120,255,255,255,72,139,125,128,190, 24,0,0,0,232,194,197,4,0,72,139,133,120,255,255,255,72,137,69,128,72,131,125,128,0,117,209,72,131,69,144,24,255,77,232,131,125,232,255,117,181,72,139,133,8,255,255,255,72,139,0,139,64,24,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,198, 72,139,133,8,255,255,255,72,139,0,72,139,120,16,232,111,197,4,0,72,139,133,8,255,255,255,72,139,0,139,64,8,72,152,72,137,198,72,193,230,4,72,139,133,8,255,255,255,72,139,0,72,139,56,232,71,197,4,0,72,139,133,8,255,255,255,72,139,0,72,137,69,160,72,139, 69,160,72,139,80,32,72,139,133,8,255,255,255,72,137,16,72,139,125,160,190,56,0,0,0,232,25,197,4,0,72,139,133,8,255,255,255,72,139,0,72,133,192,15,133,245,254,255,255,72,139,5,206,92,9,0,72,59,133,8,255,255,255,117,20,72,139,133,8,255,255,255,72,139,64, 8,72,137,5,179,92,9,0,235,17,72,141,61,88,214,6,0,184,0,0,0,0,232,83,164,5,0,72,139,189,8,255,255,255,190,48,0,0,0,232,192,196,4,0,72,129,196,32,1,0,0,91,65,92,201,195,85,72,137,229,72,131,236,16,137,125,252,137,117,248,72,139,5,110,92,9,0,72,133,192, 117,17,72,141,61,36,214,6,0,184,0,0,0,0,232,11,164,5,0,72,139,5,81,92,9,0,15,182,64,44,132,192,116,10,72,199,69,240,0,0,0,0,235,50,131,125,248,0,116,13,72,139,5,50,92,9,0,139,64,16,1,69,252,72,139,5,37,92,9,0,72,139,80,24,139,69,252,72,152,72,193,224, 3,72,141,4,2,72,139,0,72,137,69,240,72,139,69,240,201,195,85,72,137,229,72,131,236,48,72,137,125,216,232,46,10,5,0,243,15,17,69,252,72,139,69,216,72,139,64,56,72,137,69,240,235,67,72,139,61,188,90,9,0,72,141,117,240,232,2,188,0,0,72,137,69,232,72,131, 125,232,0,116,40,72,139,69,232,139,64,92,243,15,42,200,72,139,69,232,139,64,96,243,15,42,192,243,15,94,200,243,15,16,69,252,243,15,89,193,243,15,17,69,252,72,139,69,240,72,133,192,117,180,72,139,69,216,72,139,120,24,243,15,16,69,252,232,163,209,4,0,201, 195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,120,91,9,0,232,151,222,4,0,72,137,69,248,72,139,125,248,72,141,53,20,52,9,0,232,177,207,4,0,232,27,139,0,0,72,137,194,72,139,69,248,72,137,80,56,72,139,69,248,201,195,85,72,137,229,83,72,131,236, 8,72,141,29,174,255,255,255,72,141,61,250,212,6,0,232,67,167,4,0,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,125,149,4,0,72,137,5,0,91,9,0,72,141,53,234,254,255,255,72,139,61,242,90,9,0,232,189,162,4,0, 72,131,196,8,91,201,195,85,72,137,229,232,42,219,255,255,232,143,255,255,255,201,195,85,72,137,229,137,125,252,131,125,252,7,127,7,199,69,252,8,0,0,0,139,69,252,201,195,85,72,137,229,137,125,252,131,125,252,3,127,7,199,69,252,4,0,0,0,139,69,252,201,195, 85,72,137,229,137,125,252,235,4,131,109,252,30,131,125,252,29,127,246,235,4,131,69,252,30,131,125,252,0,120,246,139,69,252,201,195,85,72,137,229,72,129,236,32,4,0,0,72,137,189,232,251,255,255,72,139,5,111,43,9,0,72,139,16,72,137,85,248,49,210,72,139, 133,232,251,255,255,72,139,56,232,113,193,6,0,72,61,231,3,0,0,118,16,72,139,141,232,251,255,255,72,137,141,224,251,255,255,235,125,72,139,133,232,251,255,255,72,139,0,72,137,133,248,251,255,255,72,141,133,0,252,255,255,72,137,133,240,251,255,255,72,139, 133,248,251,255,255,15,182,0,60,36,117,12,72,139,133,240,251,255,255,198,0,35,235,33,72,139,133,248,251,255,255,15,182,16,72,139,133,240,251,255,255,136,16,72,139,133,240,251,255,255,15,182,0,132,192,116,16,72,255,133,248,251,255,255,72,255,133,240,251, 255,255,235,181,72,141,189,0,252,255,255,232,215,165,4,0,72,137,133,224,251,255,255,72,139,133,224,251,255,255,72,139,21,180,42,9,0,72,139,77,248,72,51,10,116,5,232,140,190,6,0,201,195,85,72,137,229,72,129,236,32,4,0,0,72,137,189,232,251,255,255,72,139, 5,139,42,9,0,72,139,16,72,137,85,248,49,210,72,139,133,232,251,255,255,72,139,56,232,141,192,6,0,72,61,231,3,0,0,118,16,72,139,141,232,251,255,255,72,137,141,224,251,255,255,235,125,72,139,133,232,251,255,255,72,139,0,72,137,133,248,251,255,255,72,141, 133,0,252,255,255,72,137,133,240,251,255,255,72,139,133,248,251,255,255,15,182,0,60,35,117,12,72,139,133,240,251,255,255,198,0,36,235,33,72,139,133,248,251,255,255,15,182,16,72,139,133,240,251,255,255,136,16,72,139,133,240,251,255,255,15,182,0,132,192, 116,16,72,255,133,248,251,255,255,72,255,133,240,251,255,255,235,181,72,141,189,0,252,255,255,232,243,164,4,0,72,137,133,224,251,255,255,72,139,133,224,251,255,255,72,139,21,208,41,9,0,72,139,77,248,72,51,10,116,5,232,168,189,6,0,201,195,85,72,137,229, 72,131,236,16,72,137,125,248,72,139,85,248,15,182,130,59,4,0,0,131,200,4,136,130,59,4,0,0,72,139,69,248,15,182,128,56,4,0,0,131,224,128,132,192,116,75,72,139,69,248,15,182,128,56,4,0,0,131,224,64,132,192,116,57,72,139,69,248,72,139,128,88,4,0,0,72,139, 48,72,139,69,248,72,139,128,80,4,0,0,72,139,56,232,105,191,6,0,133,192,117,20,72,139,69,248,15,182,144,59,4,0,0,131,226,251,136,144,59,4,0,0,201,195,85,72,137,229,72,131,196,128,72,137,125,152,137,117,148,72,137,85,136,72,139,5,39,41,9,0,72,139,16,72, 137,85,248,49,210,139,69,148,72,152,72,193,224,4,72,3,69,136,139,0,131,248,2,117,23,72,139,85,136,139,125,148,190,160,134,1,0,232,148,38,4,0,72,137,69,128,235,102,139,69,148,72,152,72,193,224,4,72,3,69,136,139,0,131,248,1,117,66,72,139,85,136,139,125, 148,190,160,134,1,0,232,65,38,4,0,72,141,125,160,65,137,192,72,141,13,188,209,6,0,186,80,0,0,0,190,0,0,0,0,184,0,0,0,0,232,140,188,6,0,72,141,125,160,232,177,163,4,0,72,137,69,128,235,16,72,141,61,194,241,6,0,232,159,163,4,0,72,137,69,128,72,139,69,128, 72,139,21,130,40,9,0,72,139,77,248,72,51,10,116,5,232,90,188,6,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,72,131,125,232,0,116,97,72,139,85,232,139,117,244,72,139,125,248,232,7,255,255,255,72,137,194,72,139,69,248, 72,137,144,80,4,0,0,139,117,244,255,198,72,139,85,232,72,139,125,248,232,231,254,255,255,72,137,194,72,139,69,248,72,137,144,88,4,0,0,139,117,244,131,198,2,72,139,85,232,72,139,125,248,232,198,254,255,255,72,137,194,72,139,69,248,72,137,144,96,4,0,0, 235,70,72,141,61,28,241,6,0,232,249,162,4,0,72,137,194,72,139,69,248,72,137,144,96,4,0,0,72,139,69,248,72,139,144,96,4,0,0,72,139,69,248,72,137,144,88,4,0,0,72,139,69,248,72,139,144,88,4,0,0,72,139,69,248,72,137,144,80,4,0,0,72,139,69,248,72,199,128, 120,4,0,0,0,0,0,0,72,139,69,248,72,139,144,120,4,0,0,72,139,69,248,72,137,144,112,4,0,0,72,139,69,248,72,139,144,112,4,0,0,72,139,69,248,72,137,144,104,4,0,0,72,139,85,248,139,69,244,137,130,128,4,0,0,139,85,244,131,194,3,72,139,69,248,137,144,132,4, 0,0,201,195,85,72,137,229,83,72,131,236,24,72,137,125,232,72,137,117,224,72,139,69,224,72,139,16,72,139,69,232,72,137,144,104,4,0,0,72,139,69,224,72,131,192,8,72,139,16,72,139,69,232,72,137,144,112,4,0,0,72,139,69,224,72,131,192,16,72,139,16,72,139,69, 232,72,137,144,120,4,0,0,72,139,69,224,72,139,48,72,139,69,232,72,139,120,48,232,243,134,0,0,72,137,194,72,139,69,224,72,137,16,72,139,93,224,72,131,195,8,72,139,69,224,72,131,192,8,72,139,48,72,139,69,232,72,139,120,48,232,201,134,0,0,72,137,3,72,139, 93,224,72,131,195,16,72,139,69,224,72,131,192,16,72,139,48,72,139,69,232,72,139,120,48,232,166,134,0,0,72,137,3,72,131,196,24,91,201,195,85,72,137,229,72,129,236,144,0,0,0,72,137,125,136,72,137,117,128,137,149,124,255,255,255,72,137,141,112,255,255,255, 72,139,5,118,38,9,0,72,139,16,72,137,85,248,49,210,72,139,69,128,72,139,0,72,133,192,15,133,140,0,0,0,72,139,69,136,72,139,64,16,72,137,69,152,72,139,125,152,232,156,64,4,0,59,133,124,255,255,255,126,63,72,139,125,152,232,155,64,4,0,72,137,194,139,133, 124,255,255,255,72,152,72,193,224,4,72,141,60,2,72,141,117,160,186,80,0,0,0,232,11,36,4,0,72,141,125,160,232,27,161,4,0,72,137,194,72,139,69,128,72,137,16,235,48,72,131,189,112,255,255,255,0,116,16,72,139,85,128,72,139,133,112,255,255,255,72,137,2,235, 22,72,141,61,12,239,6,0,232,233,160,4,0,72,137,194,72,139,69,128,72,137,16,72,139,5,202,37,9,0,72,139,85,248,72,51,16,116,5,232,162,185,6,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,136,80,4,0,0,72,139,69, 248,139,128,128,4,0,0,141,80,1,72,139,117,248,72,129,198,104,4,0,0,72,139,125,248,232,225,254,255,255,72,139,69,248,72,139,136,88,4,0,0,72,139,69,248,139,128,128,4,0,0,141,80,2,72,139,117,248,72,129,198,112,4,0,0,72,139,125,248,232,181,254,255,255,72, 139,69,248,72,139,136,96,4,0,0,72,139,69,248,139,144,132,4,0,0,72,139,117,248,72,129,198,120,4,0,0,72,139,125,248,232,140,254,255,255,72,139,69,248,72,139,144,104,4,0,0,72,139,69,240,72,137,16,72,139,85,240,72,131,194,8,72,139,69,248,72,139,128,112,4, 0,0,72,137,2,72,139,85,240,72,131,194,16,72,139,69,248,72,139,128,120,4,0,0,72,137,2,201,195,85,72,137,229,72,137,125,248,72,137,117,240,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,69,248,139,128,72,4,0,0,37,0,0,252,0,137,194,193,250,6, 72,139,69,248,139,128,72,4,0,0,37,0,252,0,0,193,248,4,9,194,72,139,69,248,139,128,72,4,0,0,37,252,0,0,0,193,248,2,9,208,137,194,247,210,72,139,69,240,137,16,72,139,77,240,72,131,193,4,72,139,69,248,139,128,68,4,0,0,37,0,0,252,0,137,194,193,250,6,72,139, 69,248,139,128,68,4,0,0,37,0,252,0,0,193,248,4,9,194,72,139,69,248,139,128,68,4,0,0,37,252,0,0,0,193,248,2,9,208,247,208,137,1,72,139,77,240,72,131,193,8,72,139,69,248,139,128,76,4,0,0,37,0,0,252,0,137,194,193,250,6,72,139,69,248,139,128,76,4,0,0,37, 0,252,0,0,193,248,4,9,194,72,139,69,248,139,128,76,4,0,0,37,252,0,0,0,193,248,2,9,208,247,208,137,1,201,195,85,72,137,229,83,72,131,236,24,72,137,125,232,72,137,117,224,72,139,69,224,139,0,133,192,121,74,72,139,69,224,139,0,137,194,247,210,72,139,69, 224,137,16,72,139,69,224,139,0,37,0,240,3,0,137,194,193,226,6,72,139,69,224,139,0,37,192,15,0,0,193,224,4,9,194,72,139,69,224,139,0,131,224,63,193,224,2,9,194,72,139,69,232,137,144,72,4,0,0,235,58,72,139,69,224,139,56,232,219,247,255,255,137,194,72,139, 69,224,137,16,72,139,69,224,139,0,72,152,72,141,20,133,0,0,0,0,72,141,5,0,49,9,0,72,141,4,2,139,16,72,139,69,232,137,144,72,4,0,0,72,139,69,224,72,131,192,4,139,0,133,192,121,92,72,139,85,224,72,131,194,4,72,139,69,224,72,131,192,4,139,0,247,208,137, 2,72,139,69,224,72,131,192,4,139,0,37,0,240,3,0,137,194,193,226,6,72,139,69,224,72,131,192,4,139,0,37,192,15,0,0,193,224,4,9,194,72,139,69,224,72,131,192,4,139,0,131,224,63,193,224,2,9,194,72,139,69,232,137,144,68,4,0,0,235,68,72,139,93,224,72,131,195, 4,72,139,69,224,72,131,192,4,139,56,232,43,247,255,255,137,3,72,139,69,224,72,131,192,4,139,0,72,152,72,141,20,133,0,0,0,0,72,141,5,82,48,9,0,72,141,4,2,139,16,72,139,69,232,137,144,68,4,0,0,72,139,69,224,72,131,192,8,139,0,133,192,121,92,72,139,85,224, 72,131,194,8,72,139,69,224,72,131,192,8,139,0,247,208,137,2,72,139,69,224,72,131,192,8,139,0,37,0,240,3,0,137,194,193,226,6,72,139,69,224,72,131,192,8,139,0,37,192,15,0,0,193,224,4,9,194,72,139,69,224,72,131,192,8,139,0,131,224,63,193,224,2,9,194,72, 139,69,232,137,144,76,4,0,0,235,68,72,139,93,224,72,131,195,8,72,139,69,224,72,131,192,8,139,56,232,125,246,255,255,137,3,72,139,69,224,72,131,192,8,139,0,72,152,72,141,20,133,0,0,0,0,72,141,5,164,47,9,0,72,141,4,2,139,16,72,139,69,232,137,144,76,4,0, 0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,137,125,236,131,125,236,0,120,42,139,125,236,232,48,246,255,255,137,69,252,139,69,252,72,152,72,141,20,133,0,0,0,0,72,141,5,93,47,9,0,72,141,4,2,139,0,137,69,232,235,16,139,69,236,247,208,137,194, 129,226,255,255,255,0,137,85,232,139,69,232,201,195,85,72,137,229,83,72,131,236,24,72,137,125,232,72,139,69,232,72,139,56,232,4,246,255,255,72,137,194,72,139,69,232,72,137,16,72,139,93,232,72,131,195,8,72,139,69,232,72,131,192,8,72,139,56,232,226,245, 255,255,72,137,3,72,139,93,232,72,131,195,16,72,139,69,232,72,131,192,16,72,139,56,232,199,245,255,255,72,137,3,72,131,196,24,91,201,195,85,72,137,229,83,72,131,236,24,72,137,125,232,72,139,69,232,72,139,56,232,136,246,255,255,72,137,194,72,139,69,232, 72,137,16,72,139,93,232,72,131,195,8,72,139,69,232,72,131,192,8,72,139,56,232,102,246,255,255,72,137,3,72,139,93,232,72,131,195,16,72,139,69,232,72,131,192,16,72,139,56,232,75,246,255,255,72,137,3,72,131,196,24,91,201,195,85,72,137,229,72,131,236,80, 72,137,125,200,72,137,117,192,72,137,85,184,199,69,240,1,0,0,0,199,69,236,0,0,0,0,72,139,69,192,15,182,128,56,4,0,0,131,224,64,132,192,116,4,131,69,236,2,72,139,69,192,15,182,128,56,4,0,0,131,224,128,132,192,116,3,255,69,236,72,139,69,184,72,139,56,72, 141,53,182,233,6,0,232,147,182,6,0,133,192,117,7,199,69,240,0,0,0,0,72,139,125,184,232,205,245,255,255,72,137,69,224,72,139,85,192,72,139,69,224,72,137,130,104,4,0,0,72,139,69,192,72,139,120,48,72,139,117,224,232,76,128,0,0,72,137,69,224,72,139,85,192, 72,139,69,224,72,137,130,80,4,0,0,139,69,240,131,224,1,72,139,85,192,137,193,193,225,7,15,182,130,56,4,0,0,131,224,127,9,200,136,130,56,4,0,0,72,139,125,192,232,80,246,255,255,72,139,69,192,72,139,72,56,139,85,236,131,194,6,72,139,69,192,72,139,112,48, 72,139,125,200,255,209,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,72,137,85,184,199,69,240,1,0,0,0,199,69,236,0,0,0,0,72,139,69,192,15,182,128,56,4,0,0,131,224,64,132,192,116,4,131,69,236,2,72,139,69,192,15,182,128,56,4,0,0,131, 224,128,132,192,116,3,255,69,236,72,139,69,184,72,139,56,72,141,53,195,232,6,0,232,160,181,6,0,133,192,117,7,199,69,240,0,0,0,0,72,139,125,184,232,218,244,255,255,72,137,69,224,72,139,85,192,72,139,69,224,72,137,130,112,4,0,0,72,139,69,192,72,139,120, 48,72,139,117,224,232,89,127,0,0,72,137,69,224,131,125,240,0,116,109,72,139,69,192,72,139,128,88,4,0,0,72,139,48,72,139,69,224,72,139,56,232,68,181,6,0,133,192,15,132,134,0,0,0,72,139,69,192,15,182,128,56,4,0,0,131,224,64,132,192,116,20,72,139,69,192, 72,139,176,88,4,0,0,72,139,125,192,232,231,213,4,0,72,139,85,192,72,139,69,224,72,137,130,88,4,0,0,72,139,69,192,72,139,176,88,4,0,0,72,139,125,192,232,192,212,4,0,235,59,131,125,240,0,117,53,72,139,69,192,15,182,128,56,4,0,0,131,224,64,132,192,116,35, 72,139,69,192,72,139,176,88,4,0,0,72,139,125,192,232,150,213,4,0,72,139,85,192,72,139,69,224,72,137,130,88,4,0,0,139,69,240,131,224,1,72,139,77,192,131,224,1,137,194,193,226,6,15,182,129,56,4,0,0,131,224,191,9,208,136,129,56,4,0,0,72,139,125,192,232, 187,244,255,255,72,139,69,192,72,139,72,56,139,85,236,131,194,6,72,139,69,192,72,139,112,48,72,139,125,200,255,209,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,72,141,61,18,199,6,0,232,75,153,4,0,72,59,69,200,117,16, 72,141,61,92,231,6,0,232,57,153,4,0,72,137,69,200,72,139,125,200,232,122,243,255,255,72,137,69,232,72,139,85,208,72,139,69,232,72,137,130,120,4,0,0,72,139,69,208,72,139,120,48,72,139,117,232,232,249,125,0,0,72,137,69,232,72,139,85,208,72,139,69,232,72, 137,130,96,4,0,0,72,139,69,208,72,139,120,48,232,232,153,0,0,133,192,116,95,72,139,69,200,72,139,56,72,141,53,244,230,6,0,232,209,179,6,0,133,192,116,20,72,139,69,208,72,139,128,96,4,0,0,72,139,0,72,137,69,192,235,11,72,141,5,116,198,6,0,72,137,69,192, 72,139,69,208,72,139,120,48,232,154,73,1,0,72,137,198,72,139,85,216,72,139,77,192,72,141,61,129,198,6,0,184,0,0,0,0,232,15,45,5,0,201,195,85,72,137,229,65,84,83,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,137,77,212,76,137,69,200,72,139, 85,200,139,117,212,191,0,0,0,0,232,185,26,4,0,137,194,72,139,69,224,137,80,72,72,139,85,200,139,117,212,191,1,0,0,0,232,159,26,4,0,137,194,72,139,69,224,137,80,76,72,139,69,224,72,139,120,48,232,36,153,0,0,133,192,116,101,72,139,69,224,72,139,112,48, 72,139,125,232,232,204,94,1,0,137,194,72,139,69,224,139,64,76,68,141,36,2,72,139,69,224,72,139,112,48,72,139,125,232,232,168,93,1,0,137,194,72,139,69,224,139,64,72,141,28,2,72,139,69,224,72,139,120,48,232,209,72,1,0,72,137,198,72,139,85,232,69,137,224, 137,217,72,141,61,231,197,6,0,184,0,0,0,0,232,69,44,5,0,72,131,196,48,91,65,92,201,195,85,72,137,229,65,84,83,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,137,77,196,76,137,69,184,72,139,85,184,139,117,196,191,0,0,0,0,232,232,25,4,0,137, 69,236,131,125,236,1,117,70,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,125,208,72,131,199,80,72,141,53,177,208,6,0,232,54,176,6,0,233,164,0,0,0,72,139,125,208,72,131,199,80,72,141,53,152,208,6,0,232,64,1,0,0,233, 139,0,0,0,131,125,236,2,117,64,72,199,192,255,255,255,255,72,131,248,255,116,29,72,199,194,255,255,255,255,72,139,125,208,72,131,199,80,72,141,53,245,16,7,0,232,234,175,6,0,235,91,72,139,125,208,72,131,199,80,72,141,53,223,16,7,0,232,247,0,0,0,235,69, 199,69,236,0,0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,29,72,199,194,255,255,255,255,72,139,125,208,72,131,199,80,72,141,53,142,49,9,0,232,163,175,6,0,235,20,72,139,125,208,72,131,199,80,72,141,53,120,49,9,0,232,176,0,0,0,139,69,236,131,224, 63,72,139,85,208,137,193,131,225,63,15,182,130,56,4,0,0,131,224,192,9,200,136,130,56,4,0,0,72,139,85,184,139,117,196,191,1,0,0,0,232,220,24,4,0,137,69,236,131,125,236,3,127,7,199,69,236,4,0,0,0,72,139,85,208,139,69,236,137,130,60,4,0,0,72,139,69,208, 72,139,120,48,232,77,151,0,0,133,192,116,71,72,139,69,208,139,152,60,4,0,0,76,139,101,208,73,131,196,80,72,139,69,208,72,139,120,48,232,35,71,1,0,72,137,198,72,139,85,216,72,141,5,74,49,9,0,73,137,193,65,137,216,76,137,225,72,141,61,78,196,6,0,184,0, 0,0,0,232,140,42,5,0,72,131,196,64,91,65,92,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,185,174,6,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72, 139,69,240,72,139,120,48,232,182,150,0,0,133,192,116,44,72,139,69,240,72,139,72,56,72,139,69,240,72,139,112,48,72,139,125,248,186,1,0,0,0,255,209,72,139,117,248,72,139,69,240,72,139,120,48,232,142,153,0,0,201,195,85,72,137,229,83,72,131,236,56,72,137, 125,232,72,137,117,224,72,137,85,216,137,77,212,76,137,69,200,72,139,69,224,15,183,64,40,137,195,72,139,85,200,139,117,212,191,0,0,0,0,232,178,23,4,0,141,4,3,137,194,72,139,69,224,102,137,80,40,72,139,69,224,15,183,64,42,137,195,72,139,85,200,139,117, 212,191,1,0,0,0,232,138,23,4,0,141,4,3,137,194,72,139,69,224,102,137,80,42,72,139,69,224,72,139,120,48,232,11,150,0,0,133,192,116,44,72,139,69,224,72,139,72,56,72,139,69,224,72,139,112,48,72,139,125,232,186,1,0,0,0,255,209,72,139,117,232,72,139,69,224, 72,139,120,48,232,227,152,0,0,72,131,196,56,91,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,72,137,85,232,137,77,228,76,137,69,216,72,139,85,216,139,117,228,191,0,0,0,0,232,13,23,4,0,137,194,72,139,69,240,102,137,80,40,72,139,85, 216,139,117,228,191,1,0,0,0,232,242,22,4,0,137,194,72,139,69,240,102,137,80,42,72,139,69,240,72,139,120,48,232,118,149,0,0,133,192,116,44,72,139,69,240,72,139,72,56,72,139,69,240,72,139,112,48,72,139,125,248,186,1,0,0,0,255,209,72,139,117,248,72,139, 69,240,72,139,120,48,232,78,152,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,72,137,85,232,137,77,228,76,137,69,216,72,139,85,216,139,117,228,191,0,0,0,0,232,125,22,4,0,137,199,232,14,247,255,255,137,194,72,139,69,240,137,144, 72,4,0,0,131,125,228,2,126,74,72,139,85,216,139,117,228,191,1,0,0,0,232,83,22,4,0,137,199,232,228,246,255,255,137,194,72,139,69,240,137,144,68,4,0,0,72,139,85,216,139,117,228,191,2,0,0,0,232,47,22,4,0,137,199,232,192,246,255,255,137,194,72,139,69,240, 137,144,76,4,0,0,235,36,72,139,85,216,139,117,228,191,1,0,0,0,232,9,22,4,0,137,199,232,154,246,255,255,137,194,72,139,69,240,137,144,76,4,0,0,72,139,69,240,72,139,120,48,232,132,148,0,0,133,192,116,27,72,139,69,240,72,139,72,56,72,139,69,240,72,139,112, 48,72,139,125,248,186,5,0,0,0,255,209,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,137,77,216,72,139,69,232,72,137,69,248,72,139,69,248,15,183,64,40,137,194,139,69,220,141,4,2,137,194,72,139,69,248,102,137,80,40,72,139, 69,248,15,183,64,42,137,194,139,69,216,141,4,2,137,194,72,139,69,248,102,137,80,42,72,139,69,248,72,139,64,56,72,139,117,224,72,139,125,232,186,1,0,0,0,255,208,72,139,117,232,72,139,125,224,232,245,150,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125, 232,72,137,117,224,137,85,220,72,139,69,232,72,137,69,248,139,69,220,131,224,1,72,139,85,248,137,193,131,225,1,15,182,130,59,4,0,0,131,224,254,9,200,136,130,59,4,0,0,72,139,69,248,72,139,64,56,72,139,117,224,72,139,125,232,186,3,0,0,0,255,208,201,195, 85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,125,240,232,60,151,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,139,69,232,72,137,69,248,131,125,220,0,116,25,72,139,69,248,72,139, 64,56,72,139,117,224,72,139,125,232,186,2,0,0,0,255,208,235,32,72,139,69,248,72,139,64,56,72,139,117,224,72,139,125,232,186,4,0,0,0,255,208,72,139,125,232,232,139,46,5,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232, 72,139,69,248,72,139,144,80,4,0,0,72,139,69,240,72,137,16,72,139,85,240,72,131,194,8,72,139,69,248,72,139,128,88,4,0,0,72,137,2,72,139,85,240,72,131,194,16,72,139,69,248,72,139,128,96,4,0,0,72,137,2,72,139,117,240,72,139,125,248,232,244,240,255,255,72, 139,117,232,72,139,125,248,232,198,241,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,144,80,4,0,0,72,139,69,240,72,137,16,72,139,85,240,72,131,194,8,72,139,69,248,72,139,128,88,4,0,0,72,137,2,72,139,85, 240,72,131,194,16,72,139,69,248,72,139,128,96,4,0,0,72,137,2,72,139,117,240,72,139,125,248,232,138,240,255,255,72,139,125,240,232,150,244,255,255,201,195,85,72,137,229,83,72,129,236,248,0,0,0,72,137,189,24,255,255,255,72,137,181,16,255,255,255,137,149, 12,255,255,255,72,137,141,0,255,255,255,72,139,5,11,22,9,0,72,139,16,72,137,85,232,49,210,72,139,149,0,255,255,255,139,181,12,255,255,255,191,5,0,0,0,232,94,19,4,0,137,133,76,255,255,255,72,139,149,0,255,255,255,139,181,12,255,255,255,191,10,0,0,0,232, 65,19,4,0,137,133,72,255,255,255,72,139,149,0,255,255,255,139,181,12,255,255,255,191,11,0,0,0,232,36,19,4,0,137,133,68,255,255,255,72,139,149,0,255,255,255,139,181,12,255,255,255,191,12,0,0,0,232,7,19,4,0,137,133,64,255,255,255,72,139,149,0,255,255,255, 139,181,12,255,255,255,191,13,0,0,0,232,234,18,4,0,137,133,60,255,255,255,72,139,149,0,255,255,255,139,181,12,255,255,255,191,14,0,0,0,232,205,18,4,0,137,133,56,255,255,255,72,139,149,0,255,255,255,139,181,12,255,255,255,191,15,0,0,0,232,176,18,4,0,137, 133,52,255,255,255,72,139,149,0,255,255,255,139,181,12,255,255,255,191,16,0,0,0,232,147,18,4,0,137,133,48,255,255,255,199,133,44,255,255,255,1,0,0,0,199,133,40,255,255,255,1,0,0,0,199,133,36,255,255,255,0,0,0,0,72,139,133,24,255,255,255,15,182,128,56, 4,0,0,131,224,64,132,192,116,7,131,133,36,255,255,255,2,72,139,133,24,255,255,255,15,182,128,56,4,0,0,131,224,128,132,192,116,6,255,133,36,255,255,255,72,139,133,0,255,255,255,72,131,192,112,139,0,131,248,2,117,38,72,139,149,0,255,255,255,139,181,12, 255,255,255,191,7,0,0,0,232,55,18,4,0,72,137,194,72,139,133,16,255,255,255,72,137,16,235,103,72,139,133,0,255,255,255,72,131,192,112,139,0,131,248,1,117,85,72,139,149,0,255,255,255,139,181,12,255,255,255,191,7,0,0,0,232,215,17,4,0,72,141,189,80,255,255, 255,65,137,192,72,141,13,79,189,6,0,186,144,0,0,0,190,0,0,0,0,184,0,0,0,0,232,31,168,6,0,72,141,189,80,255,255,255,232,65,143,4,0,72,137,194,72,139,133,16,255,255,255,72,137,16,72,139,133,0,255,255,255,72,131,232,128,139,0,131,248,2,117,39,72,139,157, 16,255,255,255,72,131,195,8,72,139,149,0,255,255,255,139,181,12,255,255,255,191,8,0,0,0,232,141,17,4,0,72,137,3,235,104,72,139,133,0,255,255,255,72,131,232,128,139,0,131,248,1,117,86,72,139,149,0,255,255,255,139,181,12,255,255,255,191,8,0,0,0,232,55, 17,4,0,72,141,189,80,255,255,255,65,137,192,72,141,13,175,188,6,0,186,144,0,0,0,190,0,0,0,0,184,0,0,0,0,232,127,167,6,0,72,139,157,16,255,255,255,72,131,195,8,72,141,189,80,255,255,255,232,150,142,4,0,72,137,3,72,139,133,0,255,255,255,72,5,144,0,0,0, 139,0,131,248,2,117,39,72,139,157,16,255,255,255,72,131,195,16,72,139,149,0,255,255,255,139,181,12,255,255,255,191,9,0,0,0,232,234,16,4,0,72,137,3,235,106,72,139,133,0,255,255,255,72,5,144,0,0,0,139,0,131,248,1,117,86,72,139,149,0,255,255,255,139,181, 12,255,255,255,191,9,0,0,0,232,146,16,4,0,72,141,189,80,255,255,255,65,137,192,72,141,13,10,188,6,0,186,144,0,0,0,190,0,0,0,0,184,0,0,0,0,232,218,166,6,0,72,139,157,16,255,255,255,72,131,195,16,72,141,189,80,255,255,255,232,241,141,4,0,72,137,3,131,189, 76,255,255,255,0,116,10,199,133,76,255,255,255,1,0,0,0,139,133,76,255,255,255,131,224,1,72,139,149,24,255,255,255,137,193,131,225,1,15,182,130,64,4,0,0,131,224,254,9,200,136,130,64,4,0,0,72,139,133,16,255,255,255,72,139,0,72,139,56,72,141,53,190,219, 6,0,232,155,168,6,0,133,192,117,10,199,133,44,255,255,255,0,0,0,0,72,139,133,16,255,255,255,72,131,192,8,72,139,0,72,139,56,72,141,53,147,219,6,0,232,112,168,6,0,133,192,117,10,199,133,40,255,255,255,0,0,0,0,72,139,189,16,255,255,255,232,3,241,255,255, 72,139,181,16,255,255,255,72,139,189,24,255,255,255,232,222,234,255,255,131,189,40,255,255,255,0,15,132,150,0,0,0,72,139,133,24,255,255,255,72,139,128,88,4,0,0,72,139,48,72,139,133,16,255,255,255,72,131,192,8,72,139,0,72,139,56,232,15,168,6,0,133,192, 15,132,187,0,0,0,72,139,133,24,255,255,255,15,182,128,56,4,0,0,131,224,64,132,192,116,26,72,139,133,24,255,255,255,72,139,176,88,4,0,0,72,139,189,24,255,255,255,232,169,200,4,0,72,139,133,16,255,255,255,72,131,192,8,72,139,16,72,139,133,24,255,255,255, 72,137,144,88,4,0,0,72,139,133,24,255,255,255,72,139,176,88,4,0,0,72,139,189,24,255,255,255,232,111,199,4,0,235,84,131,189,40,255,255,255,0,117,75,72,139,133,24,255,255,255,15,182,128,56,4,0,0,131,224,64,132,192,116,54,72,139,133,24,255,255,255,72,139, 176,88,4,0,0,72,139,189,24,255,255,255,232,57,200,4,0,72,139,133,16,255,255,255,72,131,192,8,72,139,16,72,139,133,24,255,255,255,72,137,144,88,4,0,0,72,139,133,16,255,255,255,72,139,16,72,139,133,24,255,255,255,72,137,144,80,4,0,0,139,133,44,255,255, 255,131,224,1,72,139,149,24,255,255,255,137,193,193,225,7,15,182,130,56,4,0,0,131,224,127,9,200,136,130,56,4,0,0,139,133,40,255,255,255,131,224,1,72,139,141,24,255,255,255,131,224,1,137,194,193,226,6,15,182,129,56,4,0,0,131,224,191,9,208,136,129,56,4, 0,0,139,149,48,255,255,255,129,226,255,255,255,0,72,139,133,24,255,255,255,137,144,76,4,0,0,139,149,52,255,255,255,129,226,255,255,255,0,72,139,133,24,255,255,255,137,144,68,4,0,0,139,149,56,255,255,255,129,226,255,255,255,0,72,139,133,24,255,255,255, 137,144,72,4,0,0,72,139,133,16,255,255,255,72,131,192,16,72,139,16,72,139,133,24,255,255,255,72,137,144,96,4,0,0,72,139,149,24,255,255,255,139,133,72,255,255,255,137,66,72,72,139,149,24,255,255,255,139,133,68,255,255,255,137,66,76,131,189,64,255,255, 255,1,117,76,72,199,192,255,255,255,255,72,131,248,255,116,35,72,199,194,255,255,255,255,72,139,189,24,255,255,255,72,131,199,80,72,141,53,135,196,6,0,232,12,164,6,0,233,185,0,0,0,72,139,189,24,255,255,255,72,131,199,80,72,141,53,107,196,6,0,232,19,245, 255,255,233,157,0,0,0,131,189,64,255,255,255,2,117,70,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,24,255,255,255,72,131,199,80,72,141,53,194,4,7,0,232,183,163,6,0,235,103,72,139,189,24,255,255,255,72,131,199, 80,72,141,53,169,4,7,0,232,193,244,255,255,235,78,199,133,64,255,255,255,0,0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,24,255,255,255,72,131,199,80,72,141,53,82,37,9,0,232,103,163,6,0,235,23,72,139,189, 24,255,255,255,72,131,199,80,72,141,53,57,37,9,0,232,113,244,255,255,139,133,64,255,255,255,131,224,63,72,139,149,24,255,255,255,137,193,131,225,63,15,182,130,56,4,0,0,131,224,192,9,200,136,130,56,4,0,0,131,189,60,255,255,255,3,127,10,199,133,60,255, 255,255,4,0,0,0,72,139,149,24,255,255,255,139,133,60,255,255,255,137,130,60,4,0,0,72,139,189,24,255,255,255,232,67,229,255,255,72,139,133,24,255,255,255,72,139,120,48,243,15,16,5,40,50,7,0,232,226,134,0,0,139,133,36,255,255,255,72,139,21,222,14,9,0,72, 139,77,232,72,51,10,116,5,232,182,162,6,0,72,129,196,248,0,0,0,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,137,117,244,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,193,255,255,255,255,72,139,125,248,186,4,0,0,0,190,0,0,0,0,232,100, 162,6,0,235,19,72,139,125,248,186,4,0,0,0,190,0,0,0,0,232,114,0,0,0,139,69,244,131,224,1,72,139,85,248,137,193,131,225,1,15,182,2,131,224,254,9,200,136,2,139,69,244,193,248,20,131,224,1,72,139,77,248,131,224,1,141,20,0,15,182,65,3,131,224,253,9,208,136, 65,3,72,139,85,248,15,182,66,3,131,224,251,136,66,3,72,139,85,248,15,182,66,3,131,224,247,136,66,3,72,139,85,248,15,182,66,3,131,224,239,136,66,3,72,139,85,248,15,182,66,3,131,224,31,136,66,3,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117, 244,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,139,117,244,72,139,125,248,232,179,161,6,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,15,182,0,131,224,1,15,182,192,137,194,131,226,1,72,139,69,248,15,182,64,3,208,232,131,224,1,15,182, 192,131,224,1,193,224,20,9,208,201,195,85,72,137,229,72,131,236,16,72,137,125,248,137,117,244,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,193,255,255,255,255,72,139,125,248,186,4,0,0,0,190,0,0,0,0,232,71,161,6,0,235,19,72,139,125,248,186, 4,0,0,0,190,0,0,0,0,232,85,255,255,255,139,69,244,131,224,63,72,139,85,248,137,193,131,225,63,15,182,2,131,224,192,9,200,136,2,72,139,85,248,15,182,66,2,131,224,127,136,66,2,72,139,85,248,15,182,66,3,131,224,254,136,66,3,72,139,85,248,15,182,66,3,131, 224,253,136,66,3,72,139,85,248,15,182,66,3,131,224,251,136,66,3,72,139,85,248,15,182,66,3,131,224,247,136,66,3,72,139,85,248,15,182,66,3,131,224,239,136,66,3,72,139,85,248,15,182,66,3,131,224,223,136,66,3,72,139,85,248,15,182,66,3,131,224,191,136,66, 3,72,139,85,248,15,182,66,3,131,224,127,136,66,3,201,195,85,72,137,229,72,137,125,248,72,139,69,248,15,182,0,131,224,63,15,182,192,131,224,63,201,195,85,72,137,229,72,129,236,0,4,0,0,72,137,189,8,252,255,255,72,139,5,146,12,9,0,72,139,16,72,137,85,248, 49,210,72,139,133,8,252,255,255,72,139,0,15,182,0,60,35,117,59,72,139,133,8,252,255,255,72,139,48,72,141,189,16,252,255,255,186,232,3,0,0,232,131,162,6,0,198,69,247,0,198,133,16,252,255,255,36,72,141,189,16,252,255,255,232,84,135,4,0,72,137,133,0,252, 255,255,235,14,72,139,141,8,252,255,255,72,137,141,0,252,255,255,72,139,133,0,252,255,255,72,139,21,33,12,9,0,72,139,77,248,72,51,10,116,5,232,249,159,6,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,191,64,0,0,0,232,36,161,4,0,72, 137,69,248,72,139,125,216,232,196,151,2,0,72,137,69,240,72,139,85,248,72,139,69,216,72,137,66,16,72,139,69,248,199,0,1,0,0,0,72,139,69,240,139,64,24,72,152,72,193,224,3,137,194,72,139,69,248,137,80,4,72,139,69,248,139,64,4,72,99,248,232,216,160,4,0,72, 137,194,72,139,69,248,72,137,80,8,72,139,77,248,72,139,85,208,72,139,2,72,137,65,32,72,139,66,8,72,137,65,40,72,139,66,16,72,137,65,48,72,139,117,248,191,0,0,0,0,232,149,84,3,0,72,137,194,72,139,69,248,72,137,80,56,72,139,69,248,72,139,64,8,72,137,199, 72,139,85,208,72,139,117,240,232,182,114,2,0,72,139,69,248,201,195,85,72,137,229,72,131,236,64,72,137,125,200,137,117,196,72,139,69,200,72,139,120,16,232,8,151,2,0,72,137,69,224,131,125,196,0,127,7,199,69,196,1,0,0,0,72,139,69,200,139,0,137,69,248,72, 139,69,224,139,64,24,72,152,72,193,224,3,137,69,252,139,69,196,15,175,69,252,72,99,208,139,69,248,15,175,69,252,72,99,240,72,139,69,200,72,139,120,8,232,2,161,4,0,72,137,194,72,139,69,200,72,137,80,8,72,139,85,200,139,69,196,137,2,139,69,196,59,69,248, 126,85,72,139,69,200,72,139,80,8,139,69,252,15,175,69,248,72,152,72,141,4,2,72,137,69,216,139,85,248,139,69,196,41,208,137,69,244,235,38,72,139,69,216,72,137,69,208,72,139,85,200,72,131,194,32,72,139,117,224,72,139,125,208,232,234,113,2,0,139,69,252, 72,152,72,1,69,216,255,77,244,131,125,244,255,117,209,72,141,5,227,29,9,0,139,0,141,80,1,72,141,5,215,29,9,0,137,16,72,141,5,206,29,9,0,139,16,72,139,69,200,137,80,24,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,139, 69,232,72,137,69,240,72,139,125,224,232,53,134,0,0,137,69,252,235,15,72,139,69,240,72,139,64,48,72,139,0,72,137,69,240,72,139,69,240,72,139,64,48,139,64,8,131,248,2,116,225,131,125,252,0,116,25,72,139,69,240,72,139,64,32,72,137,199,72,139,117,224,186, 0,0,0,0,232,69,176,0,0,139,117,220,72,139,125,232,232,142,254,255,255,131,125,252,0,116,25,72,139,69,240,72,139,64,32,72,137,199,72,139,117,224,186,1,0,0,0,232,26,176,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,139,120,16, 232,120,149,2,0,72,137,69,240,72,139,69,216,72,139,120,56,232,116,83,3,0,199,69,252,0,0,0,0,235,45,72,139,69,216,72,139,80,8,72,139,69,216,139,64,4,15,175,69,252,72,152,72,141,4,2,72,137,69,232,72,139,117,240,72,139,125,232,232,115,114,2,0,255,69,252, 72,139,69,216,139,0,59,69,252,127,200,72,139,69,216,139,80,4,72,139,69,216,139,0,15,175,194,72,99,240,72,139,69,216,72,139,120,8,232,77,160,4,0,72,139,125,216,190,64,0,0,0,232,63,160,4,0,201,195,85,72,137,229,83,72,131,236,24,72,139,5,20,56,9,0,72,133, 192,15,133,96,1,0,0,232,130,12,4,0,72,137,69,232,72,141,61,123,178,6,0,232,252,131,4,0,72,137,195,72,141,61,110,178,6,0,232,237,131,4,0,72,137,198,72,137,218,191,0,0,0,0,232,96,103,0,0,72,141,61,232,27,9,0,232,221,158,6,0,72,137,194,72,139,125,232,72, 141,53,213,27,9,0,232,194,13,4,0,72,139,125,232,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,232,214,38,4,0,72,141,61,81,0,7,0,232,154,131,4,0,72,137,198,72,141,5,10,17,9,0,72,139,120,8,185,0,0,0,0,72,141,21,94,36,7,0,184,0,0,0,0,232,196,143,4,0,72,141,61,233, 177,6,0,232,106,131,4,0,72,137,195,72,141,61,233,177,6,0,232,91,131,4,0,72,137,198,72,137,218,191,0,0,0,0,232,206,102,0,0,72,141,61,174,26,9,0,232,75,158,6,0,72,139,125,232,72,137,194,72,141,53,155,26,9,0,232,48,13,4,0,72,139,125,232,185,0,0,0,0,186, 0,0,0,0,190,0,0,0,0,232,68,38,4,0,72,141,5,135,16,9,0,72,139,64,8,72,137,5,252,54,9,0,72,141,61,173,255,6,0,232,246,130,4,0,72,137,198,72,141,5,102,16,9,0,72,139,120,8,185,0,0,0,0,72,141,21,186,35,7,0,184,0,0,0,0,232,32,143,4,0,72,141,21,165,16,9,0,72, 141,53,158,16,9,0,191,0,0,0,0,232,61,102,0,0,72,139,125,232,232,98,11,4,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,112,72,137,125,184,72,137,117,176,72,137,85,168,137,77,164,72,139,125,168,232,86,147,2,0,72,133,192,117,13,72,199,69,152,0,0,0, 0,233,157,0,0,0,72,141,5,163,101,9,0,72,139,56,232,119,185,4,0,72,137,69,240,72,139,117,168,72,139,125,184,232,224,112,2,0,72,137,194,72,139,69,240,72,137,80,16,72,139,85,240,72,139,69,176,72,137,66,32,72,139,117,176,72,139,125,184,232,37,103,0,0,72, 137,194,72,139,69,240,72,137,80,40,72,139,69,240,72,139,112,40,72,139,125,240,232,229,188,4,0,72,139,69,240,198,64,48,0,139,69,164,137,194,72,139,69,240,136,80,49,72,139,69,240,198,64,50,0,72,139,117,240,72,139,125,184,232,37,44,1,0,72,139,85,240,72, 139,69,184,72,137,66,24,72,139,69,240,72,137,69,152,72,139,69,152,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,69,200,72,139,64,16,72,137,69,224,72,139,69,224,72,139,64,16,72,137,69,216,72,139,125,216,232,116,146,2,0,72,137,69,208,72,131, 125,208,0,117,37,72,139,69,216,72,139,48,72,141,61,41,176,6,0,184,0,0,0,0,232,239,120,5,0,72,199,69,192,0,0,0,0,233,137,0,0,0,72,141,61,44,176,6,0,232,108,129,4,0,72,137,198,72,141,69,232,72,141,77,244,72,141,85,248,72,139,125,208,73,137,192,232,154, 131,2,0,133,192,117,34,72,139,69,216,72,139,48,72,141,61,1,176,6,0,184,0,0,0,0,232,159,120,5,0,72,199,69,192,0,0,0,0,235,60,139,69,244,131,248,3,116,34,72,139,69,216,72,139,48,72,141,61,255,175,6,0,184,0,0,0,0,232,117,120,5,0,72,199,69,192,0,0,0,0,235, 18,139,69,248,72,139,85,224,72,152,72,139,68,194,24,72,137,69,192,72,139,69,192,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,72,139,125,216,232,247,254,255,255,72,137,69,240,72,139,69,240,72,139,120,16,232,135,145,2, 0,72,137,69,224,72,141,61,114,224,6,0,232,171,128,4,0,72,137,198,72,141,69,232,72,141,77,248,72,141,85,252,72,139,125,224,73,137,192,232,217,130,2,0,133,192,116,7,139,69,248,133,192,116,10,72,199,69,192,0,0,0,0,235,30,139,85,252,72,139,69,208,137,16, 72,139,69,240,139,80,4,72,139,69,200,137,16,72,139,69,240,72,137,69,192,72,139,69,192,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,69,248,72,139,80,32,72,139,69,240,72,137,16,72,139,69,248,15,182,64,51,15,190,192,201,195,85,72,137,229,72, 131,236,64,72,137,125,232,137,117,228,137,85,224,72,139,125,232,232,63,254,255,255,72,137,69,248,72,139,69,232,72,139,64,24,72,137,69,240,72,139,69,240,72,139,80,48,72,139,69,232,72,57,194,15,133,155,0,0,0,72,139,69,232,72,139,64,8,72,133,192,15,133, 138,0,0,0,72,139,69,240,243,15,16,64,100,243,15,90,192,242,15,17,69,200,131,125,224,0,116,22,131,125,228,1,116,16,139,69,228,255,200,242,15,42,192,242,15,17,69,208,235,10,242,15,42,69,228,242,15,17,69,208,72,139,69,240,243,15,16,64,92,243,15,90,192,242, 15,17,69,216,72,141,61,167,174,6,0,232,136,127,4,0,72,137,198,72,139,125,240,242,15,16,93,200,242,15,16,85,208,242,15,16,77,216,102,15,87,192,72,141,21,136,174,6,0,184,4,0,0,0,232,171,139,4,0,72,139,125,240,232,174,239,5,0,72,139,69,232,72,139,112,24, 139,85,228,72,139,125,248,232,231,249,255,255,201,195,85,72,137,229,83,72,129,236,200,0,0,0,72,137,189,104,255,255,255,72,137,181,96,255,255,255,72,137,149,88,255,255,255,243,15,17,133,84,255,255,255,243,15,17,141,80,255,255,255,243,15,16,133,84,255, 255,255,243,15,44,192,137,69,236,243,15,16,133,80,255,255,255,243,15,44,192,137,69,208,139,69,208,131,224,6,209,248,137,69,204,131,125,204,0,116,41,131,125,204,1,116,11,139,69,204,137,133,60,255,255,255,235,10,199,133,60,255,255,255,0,0,0,0,139,133,60, 255,255,255,137,133,56,255,255,255,235,10,199,133,56,255,255,255,1,0,0,0,139,133,56,255,255,255,137,69,200,72,141,5,53,11,9,0,72,57,133,88,255,255,255,116,43,72,139,133,88,255,255,255,72,139,48,72,141,61,171,173,6,0,184,0,0,0,0,232,225,117,5,0,72,199, 133,64,255,255,255,0,0,0,0,233,120,2,0,0,72,141,61,177,173,6,0,232,91,126,4,0,72,137,69,152,72,139,125,152,232,26,143,2,0,72,137,69,168,72,131,125,168,0,117,40,72,139,69,152,72,139,48,72,141,61,207,172,6,0,184,0,0,0,0,232,149,117,5,0,72,199,133,64,255, 255,255,0,0,0,0,233,44,2,0,0,72,141,61,207,172,6,0,232,15,126,4,0,72,137,198,72,141,69,192,72,141,77,216,72,141,85,220,72,139,125,168,73,137,192,232,61,128,2,0,133,192,117,40,72,139,69,152,72,139,48,72,141,61,164,172,6,0,184,0,0,0,0,232,66,117,5,0,72, 199,133,64,255,255,255,0,0,0,0,233,217,1,0,0,139,69,216,131,248,3,116,40,72,139,69,152,72,139,48,72,141,61,156,172,6,0,184,0,0,0,0,232,18,117,5,0,72,199,133,64,255,255,255,0,0,0,0,233,169,1,0,0,72,139,125,192,232,91,142,2,0,72,137,69,160,72,131,125,160, 0,117,40,72,139,69,192,72,139,48,72,141,61,215,172,6,0,184,0,0,0,0,232,214,116,5,0,72,199,133,64,255,255,255,0,0,0,0,233,109,1,0,0,139,69,208,131,224,1,137,69,212,139,77,212,72,139,85,152,72,139,181,96,255,255,255,72,139,189,104,255,255,255,232,143,250, 255,255,72,137,69,184,139,69,208,131,224,8,193,248,3,137,194,72,139,69,184,136,80,51,131,125,236,0,127,7,199,69,236,100,0,0,0,72,139,69,184,72,139,80,16,139,69,220,72,152,72,139,124,194,24,139,117,236,232,164,246,255,255,243,15,42,69,200,243,15,17,133, 72,255,255,255,72,139,69,184,72,139,64,16,72,141,88,24,72,141,61,91,172,6,0,232,215,124,4,0,72,137,198,72,139,125,168,185,1,0,0,0,243,15,16,133,72,255,255,255,72,137,218,232,199,128,2,0,131,125,200,0,117,18,243,15,16,5,75,37,7,0,243,15,17,133,76,255, 255,255,235,16,243,15,16,5,197,36,7,0,243,15,17,133,76,255,255,255,72,139,69,184,72,139,64,16,72,141,88,24,72,141,61,5,172,6,0,232,123,124,4,0,72,137,198,72,139,125,168,185,1,0,0,0,243,15,16,133,76,255,255,255,72,137,218,232,107,128,2,0,72,141,5,138, 95,9,0,72,139,24,72,141,61,221,171,6,0,232,73,124,4,0,72,137,199,72,137,222,232,106,185,4,0,72,137,69,176,72,131,125,176,0,116,24,72,141,61,187,171,6,0,232,39,124,4,0,72,137,198,72,139,125,176,232,236,183,4,0,72,141,61,163,171,6,0,232,15,124,4,0,72,137, 198,72,139,125,184,232,208,182,4,0,72,139,125,184,232,138,37,0,0,72,139,69,184,72,137,133,64,255,255,255,72,139,133,64,255,255,255,72,129,196,200,0,0,0,91,201,195,85,72,137,229,72,129,236,240,0,0,0,72,137,189,24,255,255,255,72,139,5,183,0,9,0,72,139, 16,72,137,85,248,49,210,72,139,133,24,255,255,255,72,137,133,40,255,255,255,139,5,154,47,9,0,255,192,72,141,189,48,255,255,255,65,137,192,72,141,13,39,171,6,0,186,200,0,0,0,190,0,0,0,0,184,0,0,0,0,232,83,148,6,0,72,139,189,40,255,255,255,72,141,149,48, 255,255,255,72,139,181,40,255,255,255,232,253,232,5,0,72,139,5,82,0,9,0,72,139,85,248,72,51,16,116,5,232,42,148,6,0,201,195,85,72,137,229,65,85,65,84,83,72,129,236,24,1,0,0,72,137,189,248,254,255,255,72,139,5,36,0,9,0,72,139,16,72,137,85,216,49,210,72, 139,189,248,254,255,255,232,72,249,255,255,72,137,133,8,255,255,255,72,139,133,248,254,255,255,72,139,64,16,72,137,133,0,255,255,255,72,131,189,8,255,255,255,0,15,132,22,1,0,0,72,139,189,248,254,255,255,232,68,235,5,0,72,139,133,248,254,255,255,15,182, 64,49,68,15,190,232,72,139,133,248,254,255,255,72,139,64,16,72,141,88,24,72,141,61,68,170,6,0,232,192,122,4,0,73,137,196,72,139,133,0,255,255,255,72,139,120,16,232,121,139,2,0,72,137,199,185,1,0,0,0,72,137,218,76,137,230,232,232,125,2,0,243,15,44,192, 1,192,65,1,197,68,137,173,224,254,255,255,72,139,133,8,255,255,255,139,0,137,133,228,254,255,255,72,139,133,248,254,255,255,72,139,64,32,72,139,0,72,137,133,232,254,255,255,72,139,133,248,254,255,255,72,139,64,32,72,139,0,15,182,0,60,36,117,16,72,141, 5,4,170,6,0,72,137,133,240,254,255,255,235,14,72,141,21,28,170,6,0,72,137,149,240,254,255,255,72,141,189,16,255,255,255,139,133,224,254,255,255,137,4,36,68,139,141,228,254,255,255,76,139,133,232,254,255,255,72,139,141,240,254,255,255,186,200,0,0,0,190, 0,0,0,0,184,0,0,0,0,232,204,146,6,0,72,139,189,248,254,255,255,72,141,149,16,255,255,255,72,139,181,248,254,255,255,232,118,231,5,0,72,139,5,203,254,8,0,72,139,85,216,72,51,16,116,5,232,163,146,6,0,72,129,196,24,1,0,0,91,65,92,65,93,201,195,85,72,137, 229,72,131,236,80,72,137,125,216,72,137,117,208,243,15,17,69,204,243,15,17,77,200,243,15,17,85,196,243,15,16,69,200,243,15,44,192,137,69,252,243,15,16,5,180,33,7,0,15,46,69,204,119,2,235,8,184,0,0,128,63,137,69,204,15,87,192,15,46,69,196,122,2,116,20, 72,139,125,216,232,124,91,1,0,72,137,69,240,72,131,125,240,0,117,113,243,15,16,13,125,33,7,0,243,15,16,69,204,15,46,193,119,2,235,27,243,15,16,77,204,243,15,16,5,100,33,7,0,15,40,209,243,15,92,208,243,15,17,85,188,235,10,243,15,16,69,204,243,15,17,69, 188,72,139,125,216,15,87,255,15,87,246,15,87,237,15,87,228,243,15,16,29,28,34,7,0,243,15,16,85,188,243,15,16,13,39,33,7,0,15,87,192,72,141,53,205,6,9,0,232,254,108,0,0,72,137,69,240,243,15,42,85,252,243,15,17,85,192,72,139,125,208,232,30,241,255,255, 72,137,198,243,15,16,69,204,72,139,125,240,243,15,16,77,192,72,141,21,89,5,9,0,232,124,249,255,255,72,137,69,232,72,139,125,216,243,15,16,5,212,32,7,0,232,142,117,0,0,201,195,85,72,137,229,65,84,83,72,131,236,96,72,137,125,168,72,137,117,160,243,15,17, 69,156,243,15,17,77,152,243,15,17,85,148,243,15,16,69,152,243,15,44,192,137,69,236,139,69,236,131,224,1,137,69,232,139,69,236,131,224,6,209,248,137,69,228,72,139,69,168,72,139,64,16,76,141,96,24,72,141,61,205,167,6,0,232,73,120,4,0,72,137,195,72,139, 69,168,72,139,64,16,72,139,120,16,232,1,137,2,0,72,137,199,185,1,0,0,0,76,137,226,72,137,222,232,112,123,2,0,243,15,17,69,224,15,87,192,15,46,69,148,117,4,122,2,235,22,72,139,117,168,72,139,69,168,72,139,120,24,232,218,35,1,0,233,48,2,0,0,72,139,125, 160,232,56,240,255,255,72,137,69,192,72,139,125,168,232,15,246,255,255,72,137,69,184,72,131,125,184,0,117,26,72,139,125,168,72,141,53,210,167,6,0,184,0,0,0,0,232,150,113,5,0,233,245,1,0,0,72,139,69,168,72,139,64,16,72,139,120,16,232,122,136,2,0,72,137, 69,176,72,131,125,176,0,117,37,72,139,69,168,72,139,64,16,72,139,64,16,72,139,48,72,141,61,238,166,6,0,184,0,0,0,0,232,237,110,5,0,233,180,1,0,0,72,139,69,168,72,139,64,32,72,59,69,192,15,132,219,0,0,0,72,139,69,168,15,182,64,50,132,192,116,9,72,139, 125,168,232,26,6,0,0,72,139,85,168,72,139,69,192,72,137,66,32,72,139,69,168,72,139,112,40,72,139,125,168,232,11,179,4,0,72,139,69,168,72,139,120,24,72,139,117,192,232,26,92,0,0,72,137,194,72,139,69,168,72,137,80,40,72,139,69,168,72,139,112,40,72,139, 125,168,232,218,177,4,0,72,139,69,168,72,139,64,24,15,182,128,232,0,0,0,131,224,1,132,192,116,15,72,139,69,168,72,139,120,24,232,254,118,0,0,235,87,72,139,69,168,72,139,64,24,72,139,120,72,232,215,119,0,0,133,192,116,66,72,139,69,168,72,139,64,24,72, 139,112,72,72,139,69,168,72,139,64,24,72,137,199,186,0,0,0,0,232,5,162,0,0,72,139,69,168,72,139,64,24,72,139,112,72,72,139,69,168,72,139,64,24,72,137,199,186,1,0,0,0,232,228,161,0,0,243,15,16,69,156,243,72,15,44,192,72,137,69,208,72,131,125,208,0,127, 8,72,199,69,208,1,0,0,0,72,139,69,184,139,0,72,152,72,59,69,208,116,15,72,139,117,208,72,139,125,168,232,63,48,0,0,235,33,243,15,42,69,228,15,46,69,224,117,4,122,2,235,18,72,139,69,208,137,198,139,85,228,72,139,125,168,232,7,246,255,255,243,15,42,69, 228,243,15,17,69,144,72,139,69,168,72,139,64,16,72,141,88,24,72,141,61,152,165,6,0,232,20,118,4,0,72,137,198,72,139,125,176,185,0,0,0,0,243,15,16,69,144,72,137,218,232,7,122,2,0,131,125,232,0,15,149,192,15,182,240,72,139,125,168,232,124,33,0,0,72,139, 125,168,232,111,31,0,0,72,139,69,168,72,139,120,24,243,15,16,5,249,29,7,0,232,179,114,0,0,72,131,196,96,91,65,92,201,195,85,72,137,229,72,129,236,16,1,0,0,72,137,189,248,254,255,255,72,139,5,154,250,8,0,72,139,16,72,137,85,248,49,210,199,133,40,255,255, 255,0,0,0,0,199,133,36,255,255,255,0,0,0,0,199,133,32,255,255,255,0,0,0,0,199,133,28,255,255,255,0,0,0,0,72,141,149,28,255,255,255,72,141,181,36,255,255,255,72,139,189,248,254,255,255,232,116,244,255,255,72,137,133,8,255,255,255,72,131,189,8,255,255, 255,0,117,17,72,141,61,95,165,6,0,184,0,0,0,0,232,165,108,5,0,72,139,133,248,254,255,255,198,64,50,1,72,139,133,248,254,255,255,72,139,64,40,72,139,0,72,141,189,48,255,255,255,65,185,0,0,0,0,73,137,192,72,141,13,77,165,6,0,186,200,0,0,0,190,0,0,0,0,184, 0,0,0,0,232,201,141,6,0,72,139,189,248,254,255,255,72,141,149,48,255,255,255,72,139,181,248,254,255,255,232,115,226,5,0,199,133,44,255,255,255,0,0,0,0,235,106,72,139,133,8,255,255,255,72,139,80,8,139,133,28,255,255,255,15,175,133,44,255,255,255,72,152, 72,1,194,139,133,36,255,255,255,72,152,72,141,4,2,139,0,137,133,24,255,255,255,243,15,90,133,24,255,255,255,72,139,133,248,254,255,255,72,139,64,40,72,139,48,139,141,44,255,255,255,139,149,44,255,255,255,72,141,61,225,164,6,0,184,1,0,0,0,232,247,8,5, 0,255,133,44,255,255,255,129,189,44,255,255,255,231,3,0,0,127,21,72,139,133,8,255,255,255,139,0,59,133,44,255,255,255,15,143,117,255,255,255,72,139,5,49,249,8,0,72,139,85,248,72,51,16,116,5,232,9,141,6,0,201,195,85,72,137,229,83,72,129,236,56,1,0,0,72, 137,189,232,254,255,255,243,15,17,133,228,254,255,255,243,15,17,141,224,254,255,255,72,139,5,247,248,8,0,72,139,16,72,137,85,232,49,210,199,133,24,255,255,255,0,0,0,0,199,133,20,255,255,255,0,0,0,0,199,133,16,255,255,255,0,0,0,0,199,133,12,255,255,255, 0,0,0,0,72,141,149,12,255,255,255,72,141,181,20,255,255,255,72,139,189,232,254,255,255,232,209,242,255,255,72,137,133,240,254,255,255,243,15,16,133,224,254,255,255,243,15,44,192,137,133,8,255,255,255,72,131,189,240,254,255,255,0,117,17,72,141,61,170, 163,6,0,184,0,0,0,0,232,240,106,5,0,15,87,192,15,46,133,228,254,255,255,119,2,235,59,184,0,0,0,0,137,133,228,254,255,255,243,15,16,133,228,254,255,255,243,15,44,208,72,139,133,232,254,255,255,72,139,64,40,72,139,48,72,141,61,222,163,6,0,184,0,0,0,0,232, 204,7,5,0,233,139,0,0,0,243,15,16,141,228,254,255,255,243,15,16,5,143,27,7,0,243,15,89,200,72,139,133,240,254,255,255,139,0,243,15,42,192,15,46,200,115,2,235,99,72,139,133,240,254,255,255,139,0,141,72,255,199,133,204,254,255,255,211,77,98,16,139,133, 204,254,255,255,247,233,193,250,6,137,200,193,248,31,137,209,41,193,137,200,243,15,42,192,243,15,17,133,228,254,255,255,243,15,16,133,228,254,255,255,243,15,44,208,72,139,133,232,254,255,255,72,139,64,40,72,139,48,72,141,61,78,163,6,0,184,0,0,0,0,232, 60,7,5,0,72,139,133,232,254,255,255,72,139,64,40,72,139,48,186,231,3,0,0,72,141,61,82,163,6,0,184,0,0,0,0,232,24,7,5,0,243,15,16,141,228,254,255,255,243,15,16,5,224,26,7,0,243,15,89,193,243,15,44,192,137,133,28,255,255,255,233,168,0,0,0,72,139,133,240, 254,255,255,72,139,80,8,139,133,12,255,255,255,15,175,133,28,255,255,255,72,152,72,1,194,139,133,20,255,255,255,72,152,72,141,4,2,139,0,137,133,4,255,255,255,243,15,90,133,4,255,255,255,139,141,28,255,255,255,199,133,204,254,255,255,211,77,98,16,139, 133,204,254,255,255,247,233,193,250,6,137,200,193,248,31,137,211,41,195,137,157,220,254,255,255,105,133,220,254,255,255,232,3,0,0,137,202,41,194,137,149,220,254,255,255,72,139,133,232,254,255,255,72,139,64,40,72,139,48,139,141,28,255,255,255,139,149, 220,254,255,255,72,141,61,61,162,6,0,184,1,0,0,0,232,83,6,5,0,255,133,28,255,255,255,243,15,42,149,28,255,255,255,243,15,16,141,228,254,255,255,243,15,16,5,213,25,7,0,243,15,88,200,243,15,16,5,1,26,7,0,243,15,89,193,15,46,194,118,21,72,139,133,240,254, 255,255,139,0,59,133,28,255,255,255,15,143,22,255,255,255,72,139,133,232,254,255,255,72,139,64,40,72,139,48,139,149,8,255,255,255,72,141,61,63,162,6,0,184,0,0,0,0,232,230,5,5,0,72,139,5,71,246,8,0,72,139,77,232,72,51,8,116,5,232,31,138,6,0,72,129,196, 56,1,0,0,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,198,64,50,0,72,139,69,248,72,139,64,40,72,139,48,72,141,61,17,162,6,0,184,0,0,0,0,232,151,5,5,0,201,195,85,72,137,229,83,72,131,236,40,72,137,125,216,72,139,125,216,232,99,13, 5,0,72,139,69,216,15,182,64,50,132,192,116,9,72,139,125,216,232,163,255,255,255,72,139,125,216,232,49,225,5,0,72,139,69,216,72,139,112,40,72,139,125,216,232,151,172,4,0,235,24,72,141,61,76,160,6,0,232,184,112,4,0,72,137,198,72,139,125,232,232,125,172, 4,0,72,141,5,215,83,9,0,72,139,24,72,141,61,42,160,6,0,232,150,112,4,0,72,137,199,72,137,222,232,183,173,4,0,72,137,69,232,72,131,125,232,0,117,188,72,139,69,216,72,139,64,16,72,137,199,232,235,167,4,0,72,131,196,40,91,201,195,85,72,137,229,72,131,236, 16,72,137,125,248,72,137,117,240,235,15,72,139,69,248,72,139,64,48,72,139,0,72,137,69,248,72,139,69,248,72,139,64,48,139,64,8,131,248,2,116,225,72,139,69,248,72,139,120,32,72,139,117,240,232,211,105,2,0,201,195,85,72,137,229,72,131,236,80,72,137,125, 216,72,137,117,208,137,85,204,137,77,200,68,137,69,196,68,137,77,192,243,15,17,69,188,243,15,17,77,184,243,15,17,85,180,131,125,204,0,120,16,139,69,204,72,152,72,3,69,208,139,0,137,69,252,235,15,243,15,42,69,192,243,15,89,69,180,243,15,17,69,252,131, 125,200,0,120,16,139,69,200,72,152,72,3,69,208,139,0,137,69,248,235,8,184,0,0,0,0,137,69,248,243,15,16,69,248,72,139,125,24,232,8,143,2,0,243,15,88,69,184,72,139,125,216,232,44,51,1,0,243,15,17,69,244,131,125,196,0,120,107,139,69,196,72,152,72,3,69,208, 139,0,137,69,236,243,15,16,69,248,72,139,125,24,232,211,142,2,0,15,40,200,243,15,88,77,184,243,15,17,77,176,243,15,16,69,236,72,139,125,32,232,184,142,2,0,243,15,88,69,176,72,139,125,216,232,220,50,1,0,243,15,92,69,244,243,15,17,69,240,15,87,192,15,46, 69,240,119,2,235,25,243,15,16,5,182,23,7,0,129,117,240,0,0,0,128,235,8,184,0,0,128,63,137,69,240,243,15,16,69,252,72,139,125,16,232,110,142,2,0,243,15,88,69,188,72,139,125,216,232,250,48,1,0,72,139,69,40,243,15,17,0,72,139,85,48,139,69,244,137,2,72,139, 85,56,139,69,240,137,2,201,195,85,72,137,229,72,131,236,96,72,137,125,184,243,15,17,69,180,243,15,17,77,176,243,15,16,5,23,35,9,0,15,40,200,243,15,89,77,180,243,15,16,5,183,34,9,0,243,15,88,193,243,15,17,5,171,34,9,0,243,15,16,5,247,34,9,0,15,40,200, 243,15,89,77,176,243,15,16,5,151,34,9,0,243,15,88,193,243,15,17,5,139,34,9,0,72,139,5,136,34,9,0,72,133,192,15,132,100,1,0,0,199,69,252,0,0,0,0,233,68,1,0,0,139,5,169,34,9,0,15,175,69,252,72,152,72,137,194,72,139,5,133,34,9,0,72,141,4,2,72,137,69,200, 72,139,53,126,34,9,0,72,139,61,71,34,9,0,72,139,85,200,185,1,0,0,0,232,241,142,2,0,243,15,17,69,248,72,139,5,53,34,9,0,72,133,192,116,35,72,139,53,81,34,9,0,72,139,61,34,34,9,0,72,139,85,200,185,1,0,0,0,232,196,142,2,0,243,15,17,69,168,235,8,15,87,192, 243,15,17,69,168,243,15,16,69,168,243,15,17,69,244,243,15,16,69,248,243,15,88,69,180,72,139,53,18,34,9,0,72,139,61,219,33,9,0,72,139,85,200,185,1,0,0,0,232,71,145,2,0,72,139,5,206,33,9,0,72,133,192,15,132,139,0,0,0,139,5,11,34,9,0,133,192,116,83,131, 125,252,0,117,123,243,15,16,5,241,33,9,0,243,15,89,69,176,243,15,88,69,244,243,15,17,69,240,15,87,192,15,46,69,240,119,2,235,8,184,0,0,0,0,137,69,240,72,139,53,172,33,9,0,72,139,61,125,33,9,0,243,15,16,69,240,72,139,85,200,185,1,0,0,0,232,220,144,2,0, 235,46,243,15,16,5,164,33,9,0,243,15,89,69,176,243,15,88,69,244,72,139,53,119,33,9,0,72,139,61,72,33,9,0,72,139,85,200,185,1,0,0,0,232,172,144,2,0,255,69,252,139,5,97,33,9,0,57,69,252,15,140,173,254,255,255,233,135,1,0,0,72,139,5,28,33,9,0,72,133,192, 15,132,119,1,0,0,243,15,16,13,71,33,9,0,243,15,16,5,243,32,9,0,243,15,88,193,243,15,90,200,242,15,16,5,83,21,7,0,242,15,88,193,242,15,44,192,137,69,236,139,5,214,32,9,0,137,69,216,139,21,13,33,9,0,139,5,27,33,9,0,15,175,194,72,152,72,137,194,72,139,5, 228,32,9,0,72,141,4,2,72,137,194,72,139,53,222,32,9,0,72,139,61,175,32,9,0,185,1,0,0,0,232,85,141,2,0,243,15,17,69,212,243,15,16,69,216,243,15,92,69,212,243,15,17,69,208,131,125,236,0,121,9,199,69,236,0,0,0,0,235,22,139,5,172,32,9,0,57,69,236,124,11, 139,5,161,32,9,0,255,200,137,69,236,139,5,174,32,9,0,57,69,236,126,9,199,69,172,255,255,255,255,235,7,199,69,172,1,0,0,0,139,69,172,137,69,228,139,5,141,32,9,0,43,69,236,15,175,69,228,255,192,137,69,220,199,69,224,0,0,0,0,139,69,236,137,69,232,235,121, 139,5,88,32,9,0,15,175,69,232,72,152,72,137,194,72,139,5,52,32,9,0,72,141,4,2,72,137,194,72,139,53,46,32,9,0,72,139,61,255,31,9,0,243,15,16,69,216,185,1,0,0,0,232,98,143,2,0,131,125,220,1,126,48,243,15,90,93,216,243,15,90,85,208,139,69,220,255,200,242, 15,42,200,242,15,16,5,167,21,7,0,242,15,94,193,242,15,89,194,242,15,88,195,242,15,90,192,243,15,17,69,216,255,69,224,139,69,228,1,69,232,139,69,224,59,69,220,15,140,123,255,255,255,139,69,236,137,5,228,31,9,0,72,139,5,165,31,9,0,72,133,192,116,19,72, 139,53,145,31,9,0,72,139,61,146,31,9,0,232,23,101,2,0,72,139,5,142,31,9,0,72,133,192,116,19,72,139,53,114,31,9,0,72,139,61,123,31,9,0,232,227,250,255,255,201,195,85,72,137,229,72,129,236,208,0,0,0,72,137,125,184,72,137,117,176,72,137,85,168,72,137,77, 160,76,137,69,152,243,15,17,69,148,243,15,17,77,144,243,15,17,85,140,243,15,17,93,136,76,137,77,128,72,141,5,166,247,8,0,72,57,69,152,117,15,199,133,120,255,255,255,0,0,0,0,233,10,2,0,0,72,139,85,128,72,141,77,252,72,141,117,200,72,141,125,208,76,139, 85,152,72,141,69,244,72,137,68,36,24,72,141,69,248,72,137,68,36,16,72,141,69,240,72,137,68,36,8,72,139,69,24,72,137,4,36,76,139,77,16,73,137,208,72,137,242,72,137,254,76,137,215,232,52,167,2,0,133,192,116,15,199,133,120,255,255,255,0,0,0,0,233,171,1, 0,0,72,139,69,184,139,0,61,207,7,0,0,127,9,199,69,232,1,0,0,0,235,41,72,139,69,184,139,8,199,133,104,255,255,255,181,129,78,27,139,133,104,255,255,255,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,69,232,199,69,236,0,0,0,0,184,0,0,0, 0,137,69,224,233,63,1,0,0,139,69,240,133,192,120,54,72,139,69,184,72,139,80,8,139,69,252,15,175,69,236,72,152,72,1,194,139,69,240,72,152,72,141,4,2,243,15,16,0,72,139,125,128,232,117,137,2,0,243,15,88,69,144,243,15,17,69,220,235,30,243,15,16,69,144,243, 15,88,69,224,243,15,17,69,220,243,15,16,69,224,243,15,88,69,140,243,15,17,69,224,139,69,248,133,192,120,52,72,139,69,184,72,139,80,8,139,69,252,15,175,69,236,72,152,72,1,194,139,69,248,72,152,72,141,4,2,243,15,16,0,72,139,125,16,232,26,137,2,0,243,15, 17,133,124,255,255,255,235,11,15,87,192,243,15,17,133,124,255,255,255,243,15,16,133,124,255,255,255,243,15,88,69,136,243,15,17,69,216,72,139,117,200,72,139,69,184,72,139,80,8,139,69,252,15,175,69,236,72,152,72,141,4,2,72,137,199,139,85,32,243,15,16,69, 216,139,77,220,76,139,69,176,76,139,85,184,139,69,72,137,68,36,32,139,69,64,137,68,36,24,139,69,56,137,68,36,16,139,69,48,137,68,36,8,139,69,40,137,4,36,65,137,209,15,40,200,137,141,108,255,255,255,243,15,16,133,108,255,255,255,76,137,209,186,0,0,0,0, 232,255,98,2,0,137,69,228,131,125,228,0,116,11,139,69,228,137,133,120,255,255,255,235,31,139,69,232,1,69,236,72,139,69,184,139,0,59,69,236,15,143,178,254,255,255,199,133,120,255,255,255,0,0,0,0,139,133,120,255,255,255,201,195,85,72,137,229,83,72,129, 236,40,1,0,0,72,137,125,136,72,137,117,128,72,137,149,120,255,255,255,72,137,141,112,255,255,255,76,137,133,104,255,255,255,243,15,17,133,100,255,255,255,243,15,17,141,96,255,255,255,243,15,17,149,92,255,255,255,243,15,17,157,88,255,255,255,243,15,17, 165,84,255,255,255,76,137,141,72,255,255,255,72,139,149,72,255,255,255,72,141,77,236,72,141,117,160,72,141,125,168,76,139,149,104,255,255,255,72,141,69,228,72,137,68,36,24,72,141,69,232,72,137,68,36,16,72,141,69,224,72,137,68,36,8,72,139,69,24,72,137, 4,36,76,139,77,16,73,137,208,72,137,242,72,137,254,76,137,215,232,196,164,2,0,133,192,15,133,233,10,0,0,184,0,0,200,66,137,69,216,72,139,69,136,139,0,61,208,7,0,0,126,44,72,139,69,136,139,8,199,133,24,255,255,255,211,77,98,16,139,133,24,255,255,255,247, 233,193,250,6,137,200,193,248,31,137,209,41,193,137,141,40,255,255,255,235,10,199,133,40,255,255,255,1,0,0,0,139,133,40,255,255,255,137,69,212,199,69,220,0,0,0,0,233,47,2,0,0,139,77,228,139,117,232,139,125,224,72,139,69,136,72,139,80,8,139,69,236,15, 175,69,220,72,152,76,141,20,2,243,15,16,133,92,255,255,255,243,15,16,141,88,255,255,255,139,149,96,255,255,255,68,139,69,220,76,139,93,128,72,141,69,200,72,137,68,36,40,72,141,69,196,72,137,68,36,32,72,141,69,192,72,137,68,36,24,72,139,69,24,72,137,68, 36,16,72,139,69,16,72,137,68,36,8,72,139,133,72,255,255,255,72,137,4,36,15,40,208,137,149,28,255,255,255,243,15,16,133,28,255,255,255,69,137,193,65,137,200,137,241,137,250,76,137,214,76,137,223,232,20,247,255,255,243,15,16,77,200,243,15,16,5,58,16,7, 0,15,46,193,119,2,235,8,184,0,0,128,64,137,69,200,243,15,16,77,192,243,15,42,69,32,15,40,209,243,15,92,208,15,40,194,243,15,17,69,208,15,87,192,15,46,69,208,119,2,235,15,243,15,16,5,123,15,7,0,129,117,208,0,0,0,128,243,15,16,69,208,15,46,5,168,16,7,0, 15,135,46,1,0,0,243,15,16,77,196,243,15,42,69,40,15,40,209,243,15,92,208,15,40,194,243,15,17,69,204,15,87,192,15,46,69,204,119,2,235,15,243,15,16,5,54,15,7,0,129,117,204,0,0,0,128,243,15,16,69,208,15,40,200,243,15,88,77,204,243,15,16,69,216,15,46,193, 119,2,235,15,243,15,16,69,208,243,15,88,69,204,243,15,17,69,216,139,69,228,133,192,15,136,200,0,0,0,243,15,16,77,196,243,15,16,69,200,243,15,88,200,243,15,42,69,40,15,40,209,243,15,92,208,15,40,194,243,15,17,69,204,15,87,192,15,46,69,204,119,2,235,15, 243,15,16,5,199,14,7,0,129,117,204,0,0,0,128,243,15,16,69,208,15,40,200,243,15,88,77,204,243,15,16,69,216,15,46,193,119,2,235,15,243,15,16,69,208,243,15,88,69,204,243,15,17,69,216,243,15,16,77,196,243,15,16,69,200,243,15,92,200,243,15,42,69,40,15,40, 209,243,15,92,208,15,40,194,243,15,17,69,204,15,87,192,15,46,69,204,119,2,235,15,243,15,16,5,99,14,7,0,129,117,204,0,0,0,128,243,15,16,69,208,15,40,200,243,15,88,77,204,243,15,16,69,216,15,46,193,119,2,235,15,243,15,16,69,208,243,15,88,69,204,243,15, 17,69,216,139,69,212,1,69,220,72,139,69,136,139,0,59,69,220,15,143,194,253,255,255,243,15,16,69,216,15,46,5,83,15,7,0,119,5,233,216,0,0,0,15,87,192,15,46,133,84,255,255,255,117,7,122,5,233,182,0,0,0,72,139,149,72,255,255,255,243,15,16,133,88,255,255, 255,243,15,16,141,92,255,255,255,243,15,16,165,96,255,255,255,139,141,100,255,255,255,72,139,181,104,255,255,255,72,139,189,112,255,255,255,76,139,149,120,255,255,255,76,139,93,128,72,139,93,136,139,69,72,137,68,36,56,139,69,64,137,68,36,48,139,69,56, 137,68,36,40,139,69,48,137,68,36,32,139,69,40,137,68,36,24,139,69,32,137,68,36,16,72,139,69,24,72,137,68,36,8,72,139,69,16,72,137,4,36,73,137,209,15,40,216,15,40,209,15,40,204,137,141,28,255,255,255,243,15,16,133,28,255,255,255,73,137,240,72,137,249, 76,137,210,76,137,222,72,137,223,232,122,249,255,255,137,133,44,255,255,255,233,121,7,0,0,199,133,44,255,255,255,0,0,0,0,233,106,7,0,0,243,15,90,69,216,242,15,16,13,23,13,7,0,242,15,88,193,242,15,90,192,243,15,17,69,216,199,69,220,0,0,0,0,233,43,7,0, 0,139,77,228,139,117,232,139,125,224,72,139,69,136,72,139,80,8,139,69,236,15,175,69,220,72,152,76,141,20,2,243,15,16,133,92,255,255,255,243,15,16,141,88,255,255,255,139,149,96,255,255,255,68,139,69,220,76,139,93,128,72,141,69,192,72,137,68,36,40,72,141, 69,196,72,137,68,36,32,72,141,69,200,72,137,68,36,24,72,139,69,24,72,137,68,36,16,72,139,69,16,72,137,68,36,8,72,139,133,72,255,255,255,72,137,4,36,15,40,208,137,149,28,255,255,255,243,15,16,133,28,255,255,255,69,137,193,65,137,200,137,241,137,250,76, 137,214,76,137,223,232,197,243,255,255,243,15,16,77,192,243,15,16,5,235,12,7,0,15,46,193,119,2,235,8,184,0,0,128,64,137,69,192,243,15,16,77,200,243,15,42,69,32,15,40,209,243,15,92,208,15,40,194,243,15,17,69,188,15,87,192,15,46,69,188,119,2,235,15,243, 15,16,5,44,12,7,0,129,117,188,0,0,0,128,243,15,16,77,196,243,15,42,69,40,15,40,209,243,15,92,208,15,40,194,243,15,17,69,184,15,87,192,15,46,69,184,119,2,235,15,243,15,16,5,249,11,7,0,129,117,184,0,0,0,128,139,69,228,133,192,15,136,137,0,0,0,243,15,16, 77,196,243,15,16,69,192,243,15,88,200,243,15,42,69,40,15,40,209,243,15,92,208,15,40,194,243,15,17,69,180,15,87,192,15,46,69,180,119,2,235,15,243,15,16,5,178,11,7,0,129,117,180,0,0,0,128,243,15,16,77,196,243,15,16,69,192,243,15,92,200,243,15,42,69,40, 15,40,209,243,15,92,208,15,40,194,243,15,17,69,176,15,87,192,15,46,69,176,119,2,235,15,243,15,16,5,118,11,7,0,129,117,176,0,0,0,128,139,69,232,133,192,121,24,184,0,0,200,66,137,69,184,235,14,184,0,0,200,66,137,69,176,139,69,176,137,69,180,243,15,16,69, 188,15,40,200,243,15,88,77,184,243,15,16,69,216,15,46,193,115,51,243,15,16,69,188,15,40,200,243,15,88,77,180,243,15,16,69,216,15,46,193,115,28,243,15,16,69,188,15,40,200,243,15,88,77,176,243,15,16,69,216,15,46,193,115,5,233,29,5,0,0,243,15,16,77,184, 243,15,16,69,180,15,46,193,118,27,243,15,16,77,184,243,15,16,69,176,15,46,193,118,12,199,5,178,22,9,0,0,0,0,0,235,39,243,15,16,77,180,243,15,16,69,176,15,46,193,119,2,235,12,199,5,149,22,9,0,255,255,255,255,235,10,199,5,137,22,9,0,1,0,0,0,131,125,72, 0,15,132,101,4,0,0,72,139,69,136,72,139,64,8,72,137,69,152,139,69,236,137,5,82,22,9,0,72,139,69,128,72,137,5,27,22,9,0,72,139,133,120,255,255,255,72,137,5,21,22,9,0,72,139,133,112,255,255,255,72,137,5,15,22,9,0,72,139,69,160,72,137,5,20,22,9,0,72,139, 125,128,243,15,16,5,248,9,7,0,232,244,38,1,0,243,15,17,5,19,22,9,0,72,139,125,128,243,15,16,5,223,9,7,0,232,33,39,1,0,243,15,17,5,254,21,9,0,131,125,56,0,15,132,3,1,0,0,243,15,42,77,32,243,15,16,69,200,15,46,193,15,134,240,0,0,0,72,139,69,136,139,0,131, 248,1,127,15,199,133,44,255,255,255,0,0,0,0,233,49,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,88,73,199,192,255,255,255,255,72,139,69,136,139,0,255,200,137,194,43,85,220,139,69,236,15,175,194,76,99,200,72,139,69,136,72,139,72,8,139,85,220,255, 194,139,69,236,15,175,194,72,152,72,141,52,1,72,139,69,136,72,139,80,8,139,69,236,15,175,69,220,72,152,72,141,60,2,76,137,193,76,137,202,232,206,121,6,0,235,76,72,139,69,136,139,0,255,200,137,194,43,85,220,139,69,236,15,175,194,76,99,192,72,139,69,136, 72,139,72,8,139,85,220,255,194,139,69,236,15,175,194,72,152,72,141,52,1,72,139,69,136,72,139,80,8,139,69,236,15,175,69,220,72,152,72,141,60,2,76,137,194,232,144,3,0,0,72,139,69,136,139,0,141,80,255,72,139,117,128,72,139,125,136,232,81,219,255,255,199, 133,44,255,255,255,0,0,0,0,233,91,3,0,0,131,125,56,0,15,132,189,0,0,0,72,139,69,136,139,0,141,80,1,72,139,117,128,72,139,125,136,232,34,219,255,255,72,139,69,136,72,139,64,8,72,137,69,152,72,199,192,255,255,255,255,72,131,248,255,116,74,72,199,193,255, 255,255,255,72,139,69,136,139,0,43,69,220,141,80,255,139,69,236,15,175,194,76,99,192,139,69,236,15,175,69,220,72,152,72,137,198,72,3,117,152,139,85,220,255,194,139,69,236,15,175,194,72,152,72,137,199,72,3,125,152,76,137,194,232,218,120,6,0,235,65,72, 139,69,136,139,0,43,69,220,141,80,255,139,69,236,15,175,194,72,99,200,139,69,236,15,175,69,220,72,152,72,137,198,72,3,117,152,139,85,220,255,194,139,69,236,15,175,194,72,152,72,137,199,72,3,125,152,72,137,202,232,167,2,0,0,255,69,220,139,69,224,133,192, 120,123,72,139,133,72,255,255,255,72,137,5,201,19,9,0,139,69,236,15,175,69,220,72,152,72,3,69,152,72,137,194,72,139,53,226,19,9,0,72,139,189,72,255,255,255,185,1,0,0,0,232,89,128,2,0,243,15,17,5,145,19,9,0,139,69,236,15,175,69,220,72,152,72,3,69,152, 72,137,5,173,19,9,0,131,125,48,0,116,20,72,139,69,136,139,0,43,69,220,137,5,168,19,9,0,233,196,0,0,0,199,5,153,19,9,0,1,0,0,0,233,181,0,0,0,72,199,5,81,19,9,0,0,0,0,0,184,0,0,0,0,137,5,62,19,9,0,72,139,69,152,72,137,5,99,19,9,0,72,139,69,136,139,0,137, 5,103,19,9,0,243,15,42,69,220,243,15,17,5,102,19,9,0,139,69,220,137,5,105,19,9,0,243,15,16,5,89,19,9,0,243,15,90,192,242,15,17,133,48,255,255,255,15,87,192,15,46,133,92,255,255,255,117,4,122,2,235,34,243,15,90,141,92,255,255,255,242,15,16,5,13,7,7,0, 102,15,40,208,242,15,94,209,242,15,17,149,56,255,255,255,235,16,242,15,16,5,243,6,7,0,242,15,17,133,56,255,255,255,242,15,16,133,48,255,255,255,242,15,89,133,56,255,255,255,242,15,90,192,243,15,17,5,239,18,9,0,139,5,245,18,9,0,133,192,116,90,72,139,69, 24,72,137,5,154,18,9,0,139,69,236,15,175,69,220,72,152,72,3,69,152,72,137,194,72,139,53,171,18,9,0,72,139,125,24,185,1,0,0,0,232,37,127,2,0,243,15,17,5,97,18,9,0,139,5,179,18,9,0,247,216,243,15,42,200,243,15,16,5,157,18,9,0,243,15,89,193,243,15,17,5, 145,18,9,0,235,87,139,69,232,133,192,120,58,72,139,69,16,72,137,5,57,18,9,0,139,69,236,15,175,69,220,72,152,72,3,69,152,72,137,194,72,139,53,74,18,9,0,185,1,0,0,0,72,139,125,16,232,196,126,2,0,243,15,17,5,0,18,9,0,235,22,72,199,5,255,17,9,0,0,0,0,0,184, 0,0,0,0,137,5,232,17,9,0,139,69,40,139,85,32,72,139,125,128,65,137,193,65,137,208,185,0,0,0,0,72,141,21,227,238,255,255,190,0,0,0,0,232,233,13,1,0,131,125,56,0,116,41,243,15,42,77,32,243,15,16,69,200,15,46,193,119,2,235,12,199,133,44,255,255,255,6,0, 0,0,235,89,199,133,44,255,255,255,3,0,0,0,235,77,139,5,229,17,9,0,133,192,116,12,199,133,68,255,255,255,2,0,0,0,235,10,199,133,68,255,255,255,1,0,0,0,139,133,68,255,255,255,137,133,44,255,255,255,235,31,139,69,212,1,69,220,72,139,69,136,139,0,59,69,220, 15,143,198,248,255,255,199,133,44,255,255,255,0,0,0,0,139,133,44,255,255,255,72,129,196,40,1,0,0,91,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,72,139,117,240,72,139,125,248, 232,196,117,6,0,201,195,85,72,137,229,72,129,236,192,0,0,0,72,137,125,168,72,137,117,160,72,137,85,152,72,137,77,144,76,137,69,136,76,137,77,128,184,0,0,0,79,137,69,252,184,0,0,0,79,137,69,248,184,0,0,0,207,137,69,244,184,0,0,0,207,137,69,240,72,139, 69,168,72,139,120,16,72,141,77,236,72,141,85,176,72,141,117,184,72,141,69,228,72,137,68,36,24,72,141,69,232,72,137,68,36,16,72,141,69,224,72,137,68,36,8,72,199,4,36,0,0,0,0,65,185,0,0,0,0,65,184,0,0,0,0,232,0,153,2,0,133,192,15,133,121,1,0,0,72,139,69, 168,139,0,61,207,7,0,0,127,9,199,69,216,1,0,0,0,235,41,72,139,69,168,139,8,199,133,124,255,255,255,181,129,78,27,139,133,124,255,255,255,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,69,216,199,69,220,0,0,0,0,233,31,1,0,0,139,77,228, 139,117,232,139,125,224,72,139,69,168,72,139,80,8,139,69,236,15,175,69,220,72,152,76,141,20,2,139,85,220,76,139,93,160,72,141,69,204,72,137,68,36,40,72,141,69,208,72,137,68,36,32,72,141,69,212,72,137,68,36,24,72,199,68,36,16,0,0,0,0,72,199,68,36,8,0, 0,0,0,72,199,4,36,0,0,0,0,243,15,16,21,236,3,7,0,15,87,201,15,87,192,65,137,209,65,137,200,137,241,137,250,76,137,214,76,137,223,232,130,235,255,255,243,15,16,77,204,243,15,16,5,56,4,7,0,15,46,193,119,2,235,8,184,0,0,0,64,137,69,204,243,15,16,77,212, 243,15,16,69,252,15,46,193,119,2,235,6,139,69,212,137,69,252,243,15,16,69,212,15,46,69,244,119,2,235,6,139,69,212,137,69,244,243,15,16,77,208,243,15,16,69,204,243,15,92,200,243,15,16,69,248,15,46,193,119,2,235,19,243,15,16,69,208,243,15,16,77,204,243, 15,92,193,243,15,17,69,248,243,15,16,69,208,243,15,16,77,204,243,15,88,193,15,46,69,240,119,2,235,19,243,15,16,69,208,243,15,16,77,204,243,15,88,193,243,15,17,69,240,139,69,216,1,69,220,72,139,69,168,139,0,59,69,220,15,143,210,254,255,255,243,15,16,69, 252,243,15,44,208,72,139,69,152,137,16,243,15,16,69,248,243,15,44,208,72,139,69,144,137,16,243,15,16,69,244,243,15,44,208,72,139,69,136,137,16,243,15,16,69,240,243,15,44,208,72,139,69,128,137,16,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137, 117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,72,139,69,232,72,137,69,248,72,139,69,248,72,139,64,16,73,137,194,72,139,69,192,72,139,85,200,72,139,77,208,72,139,117,216,72,139,125,224,73,137,193,73,137,208,72,137,242,72,137,254,76,137, 215,232,174,129,0,0,201,195,85,72,137,229,72,137,125,248,72,137,117,240,137,85,236,137,77,232,201,195,85,72,137,229,72,137,125,232,72,137,117,224,137,85,220,72,139,69,232,72,137,69,248,201,195,85,72,137,229,72,137,125,248,72,137,117,240,137,85,236,201, 195,85,72,137,229,72,137,125,248,72,137,117,240,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,139,69,232,72,137,69,248,72,139,69,248,72,139,64,16,72,137,199,139,85,220,72,139,117,224,232,48,133,0,0,201,195,85,72,137, 229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,137,77,216,68,137,69,212,68,137,77,208,72,139,69,232,72,137,69,248,72,139,69,248,72,139,64,16,73,137,195,139,85,208,139,77,212,139,117,216,139,125,220,76,139,85,224,139,69,24,137,68,36,8,139, 69,16,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,76,137,223,232,49,133,0,0,201,195,85,72,137,229,65,86,65,85,65,84,83,72,131,236,96,72,137,125,168,72,137,117,160,72,139,69,168,72,137,69,192,72,139,125,192,232,121,215,255,255,72,137,69, 184,72,139,69,192,72,139,64,16,72,139,88,16,72,141,61,136,136,6,0,232,50,89,4,0,72,57,195,116,41,72,139,69,192,72,139,64,16,72,139,64,16,72,139,16,72,139,125,192,72,141,53,53,138,6,0,184,0,0,0,0,232,219,82,5,0,233,30,2,0,0,72,139,69,192,72,139,64,16, 72,139,120,16,232,191,105,2,0,72,137,69,176,72,131,125,176,0,117,37,72,139,69,192,72,139,64,16,72,139,64,16,72,139,48,72,141,61,51,136,6,0,184,0,0,0,0,232,50,80,5,0,233,221,1,0,0,72,139,69,192,72,139,64,16,72,141,88,24,72,141,61,47,136,6,0,232,171,88, 4,0,72,137,198,72,139,125,176,185,0,0,0,0,72,137,218,232,229,91,2,0,243,15,44,192,137,69,220,131,125,220,0,116,29,131,125,220,1,116,8,139,69,220,137,69,156,235,7,199,69,156,0,0,0,0,139,77,156,137,77,152,235,7,199,69,152,1,0,0,0,139,69,152,137,69,216, 72,139,69,192,15,182,64,49,15,190,208,72,139,69,192,15,182,64,51,15,190,192,193,224,2,3,69,216,1,192,141,28,2,72,139,69,184,68,139,32,72,139,69,192,76,139,104,32,72,141,61,19,180,6,0,232,36,88,4,0,73,137,198,72,141,61,252,145,6,0,232,21,88,4,0,72,137, 194,72,139,125,160,137,92,36,8,72,141,5,157,228,8,0,72,137,4,36,69,137,225,77,137,232,76,137,241,72,141,53,51,137,6,0,184,0,0,0,0,232,188,237,3,0,72,139,69,192,15,182,64,49,132,192,15,132,239,0,0,0,72,139,69,184,139,0,137,69,212,199,69,208,0,0,0,0,129, 125,212,64,13,3,0,15,142,198,0,0,0,139,117,212,72,141,61,0,137,6,0,184,0,0,0,0,232,76,75,5,0,233,173,0,0,0,139,69,208,139,85,212,137,209,41,193,137,200,137,69,204,129,125,204,232,3,0,0,126,7,199,69,204,232,3,0,0,72,141,61,8,135,6,0,232,116,87,4,0,139, 77,208,72,139,125,160,72,137,194,72,141,53,227,136,6,0,184,0,0,0,0,232,48,237,3,0,199,69,200,0,0,0,0,235,59,72,139,69,184,72,139,64,8,72,137,194,139,69,200,3,69,208,72,152,72,193,224,3,72,141,4,2,243,15,16,0,243,15,90,192,72,139,125,160,72,141,53,40, 211,6,0,184,1,0,0,0,232,239,236,3,0,255,69,200,139,69,200,59,69,204,124,189,72,139,125,160,72,141,53,228,162,6,0,184,0,0,0,0,232,207,236,3,0,139,69,204,1,69,208,139,69,208,59,69,212,15,140,71,255,255,255,72,131,196,96,91,65,92,65,93,65,94,201,195,85, 72,137,229,72,137,125,248,72,139,69,248,198,64,48,1,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,137,69,248,72,139,69,248,72,139,120,24,232,162,87,0,0,133,192,116,44,72,139,69,248,72,139,112,24,72,139,125,248,186, 0,0,0,0,232,121,252,255,255,72,139,69,248,72,139,112,24,72,139,125,248,186,1,0,0,0,232,99,252,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,24,232,87,87,0,0,133,192,116,26,72,139,69,248,72,139,112,24,72,139,125,248, 72,141,21,121,255,255,255,232,214,241,4,0,235,40,72,139,69,248,15,182,64,50,132,192,116,28,72,139,69,248,72,139,64,40,72,139,48,72,141,61,165,135,6,0,184,0,0,0,0,232,155,234,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,37, 212,255,255,72,137,69,248,72,131,125,248,0,116,19,72,139,69,248,72,139,120,16,232,174,102,2,0,72,137,69,224,235,8,72,199,69,224,0,0,0,0,72,139,69,224,72,137,69,240,72,131,125,240,0,117,17,72,141,61,105,135,6,0,184,0,0,0,0,232,73,81,5,0,72,139,69,240, 201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,196,211,255,255,72,137,69,248,72,139,69,248,139,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,163,211,255,255,72,137,69,248,72,139,69,248,72,139,64,8,201, 195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,72,141,85,244,72,141,117,252,72,139,125,216,232,92,212,255,255,72,137,69,232,72,131,125,232,0,117,37,72,139,69,216,72,139,64,40,72,139,48,72,141,61,234,134,6,0,184,0,0,0,0,232, 136,76,5,0,199,69,196,0,0,0,0,235,88,139,69,244,131,248,8,116,37,72,139,69,216,72,139,64,40,72,139,48,72,141,61,224,134,6,0,184,0,0,0,0,232,91,76,5,0,199,69,196,0,0,0,0,235,43,72,139,125,216,232,49,255,255,255,137,194,72,139,69,208,137,16,72,139,125, 216,232,65,255,255,255,72,137,194,72,139,69,200,72,137,16,199,69,196,1,0,0,0,139,69,196,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,139,5,148,8,9,0,133,192,117,17,72,141,61,149,134,6,0,184,0,0,0,0,232,49,72,5,0,199, 5,117,8,9,0,1,0,0,0,72,139,85,232,72,139,117,240,72,139,125,248,232,4,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,137,117,244,72,139,69,248,15,182,64,49,132,192,116,34,131,125,244,0,117,28,72,139,69,248,72,139,64,32,72,139,48,72,141, 61,139,134,6,0,184,0,0,0,0,232,215,71,5,0,139,69,244,137,194,72,139,69,248,136,80,49,201,195,85,72,137,229,72,131,236,48,72,137,125,216,243,15,17,69,212,72,141,85,244,72,141,117,252,72,139,125,216,232,22,211,255,255,72,137,69,232,72,131,125,232,0,117, 30,72,139,69,216,72,139,64,40,72,139,48,72,141,61,164,133,6,0,184,0,0,0,0,232,66,75,5,0,235,64,199,69,248,0,0,0,0,235,44,72,139,69,232,72,139,80,8,139,69,244,15,175,69,248,72,152,72,141,4,2,72,137,194,139,69,252,72,152,72,193,224,2,72,1,194,139,69,212, 137,2,255,69,248,72,139,69,232,139,0,59,69,248,127,201,72,139,125,216,232,29,253,255,255,201,195,85,72,137,229,72,131,196,128,72,137,125,184,72,137,117,176,243,15,17,69,172,137,85,168,72,137,77,160,68,137,69,156,72,141,85,240,72,141,117,252,72,139,125, 184,232,113,210,255,255,72,137,69,208,72,131,125,208,0,117,33,72,139,69,184,72,139,64,40,72,139,48,72,141,61,255,132,6,0,184,0,0,0,0,232,157,74,5,0,233,234,1,0,0,72,131,125,176,0,117,8,72,199,69,176,0,2,0,0,72,139,69,176,137,199,232,201,139,255,255,137, 193,184,1,0,0,0,211,224,72,152,72,59,69,176,116,58,72,139,69,176,137,199,232,173,139,255,255,137,193,184,1,0,0,0,211,224,72,152,72,137,69,176,72,139,69,208,72,139,64,16,72,139,48,72,139,85,176,72,141,61,84,133,6,0,184,0,0,0,0,232,113,70,5,0,72,139,117, 176,72,131,198,3,72,139,125,184,232,158,12,0,0,242,72,15,42,77,176,242,15,16,5,4,251,6,0,242,15,94,193,242,15,17,69,224,199,69,248,0,0,0,0,242,15,16,5,108,252,6,0,242,15,16,77,224,102,15,87,193,242,15,17,69,232,233,35,1,0,0,243,15,16,69,172,243,15,90, 192,242,15,17,69,200,131,125,156,0,116,104,199,69,244,0,0,0,0,72,139,69,232,72,137,69,216,235,77,139,69,244,72,152,72,193,224,2,72,3,69,160,243,15,16,0,243,15,90,192,242,15,17,69,136,242,15,16,69,216,232,6,109,6,0,242,15,16,77,136,242,15,89,200,242,15, 16,69,200,242,15,88,193,242,15,17,69,200,255,69,244,242,15,16,69,216,242,15,88,69,232,242,15,17,69,216,139,69,244,59,69,168,124,171,235,103,199,69,244,0,0,0,0,184,0,0,0,0,72,137,69,216,235,77,139,69,244,72,152,72,193,224,2,72,3,69,160,243,15,16,0,243, 15,90,192,242,15,17,69,144,242,15,16,69,216,232,23,107,6,0,242,15,16,77,144,242,15,89,200,242,15,16,69,200,242,15,88,193,242,15,17,69,200,255,69,244,242,15,16,69,216,242,15,88,69,232,242,15,17,69,216,139,69,244,59,69,168,124,171,72,139,69,208,72,139, 80,8,139,69,240,15,175,69,248,72,152,72,141,4,2,72,137,194,139,69,252,72,152,72,193,224,2,72,141,4,2,242,15,90,69,200,243,15,17,0,255,69,248,242,15,16,69,232,242,15,88,69,224,242,15,17,69,232,72,139,69,208,139,0,59,69,248,15,143,206,254,255,255,72,139, 125,184,232,212,250,255,255,201,195,85,72,137,229,83,72,131,236,72,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,131,125,188,1,127,33,72,139,69,200,72,139,64,40,72,139,48,72,141,61,180,131,6,0,184,0,0,0,0,232,114,72,5,0,233,169,0,0,0,72,139, 85,176,139,117,188,191,0,0,0,0,232,0,211,3,0,243,72,15,44,192,72,137,69,216,72,131,69,176,16,255,77,188,139,69,188,72,152,72,141,60,133,0,0,0,0,232,238,106,4,0,72,137,69,224,72,131,125,224,0,116,106,199,69,236,0,0,0,0,235,38,139,69,236,72,152,72,193, 224,2,72,137,195,72,3,93,224,72,139,85,176,139,117,188,139,125,236,232,170,210,3,0,243,15,17,3,255,69,236,139,69,236,59,69,188,124,210,72,139,77,224,139,85,188,72,139,117,216,72,139,125,200,65,184,1,0,0,0,15,87,192,232,229,252,255,255,139,69,188,72,152, 72,141,52,133,0,0,0,0,72,139,125,224,232,109,108,4,0,72,131,196,72,91,201,195,85,72,137,229,83,72,131,236,72,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,131,125,188,1,127,33,72,139,69,200,72,139,64,40,72,139,48,72,141,61,197,130,6,0,184,0, 0,0,0,232,131,71,5,0,233,169,0,0,0,72,139,85,176,139,117,188,191,0,0,0,0,232,17,210,3,0,243,72,15,44,192,72,137,69,216,72,131,69,176,16,255,77,188,139,69,188,72,152,72,141,60,133,0,0,0,0,232,255,105,4,0,72,137,69,224,72,131,125,224,0,116,106,199,69,236, 0,0,0,0,235,38,139,69,236,72,152,72,193,224,2,72,137,195,72,3,93,224,72,139,85,176,139,117,188,139,125,236,232,187,209,3,0,243,15,17,3,255,69,236,139,69,236,59,69,188,124,210,72,139,77,224,139,85,188,72,139,117,216,72,139,125,200,65,184,0,0,0,0,15,87, 192,232,246,251,255,255,139,69,188,72,152,72,141,52,133,0,0,0,0,72,139,125,224,232,126,107,4,0,72,131,196,72,91,201,195,85,72,137,229,72,131,236,64,72,137,125,200,243,15,17,69,196,72,141,85,240,72,141,117,244,72,139,125,200,232,89,206,255,255,72,137, 69,216,72,131,125,216,0,117,33,72,139,69,200,72,139,64,40,72,139,48,72,141,61,231,128,6,0,184,0,0,0,0,232,133,70,5,0,233,81,1,0,0,15,87,192,15,46,69,196,115,2,235,8,184,0,0,128,63,137,69,196,199,69,248,0,0,0,0,184,0,0,0,0,72,137,69,232,235,123,72,139, 69,216,72,139,80,8,139,69,240,15,175,69,248,72,152,72,141,4,2,72,137,194,139,69,244,72,152,72,193,224,2,72,141,4,2,243,15,16,0,243,15,90,192,242,15,17,69,208,242,15,16,69,208,102,15,46,69,232,119,2,235,8,72,139,69,208,72,137,69,232,242,15,16,5,123,248, 6,0,242,15,16,77,208,102,15,87,193,102,15,46,69,232,119,2,235,22,242,15,16,5,97,248,6,0,242,15,16,77,208,102,15,87,193,242,15,17,69,232,255,69,248,72,139,69,216,139,0,59,69,248,15,143,118,255,255,255,102,15,87,201,242,15,16,69,232,102,15,46,193,119,5, 233,133,0,0,0,243,15,90,69,196,242,15,94,69,232,242,15,17,69,224,199,69,248,0,0,0,0,235,98,72,139,69,216,72,139,80,8,139,69,240,15,175,69,248,72,152,72,141,4,2,72,137,194,139,69,244,72,152,72,193,224,2,72,141,12,2,72,139,69,216,72,139,80,8,139,69,240, 15,175,69,248,72,152,72,141,4,2,72,137,194,139,69,244,72,152,72,193,224,2,72,141,4,2,243,15,16,0,243,15,90,192,242,15,89,69,224,242,15,90,192,243,15,17,1,255,69,248,72,139,69,216,139,0,59,69,248,127,147,72,139,125,200,232,85,247,255,255,201,195,85,72, 137,229,83,72,131,236,72,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,141,85,228,72,141,117,232,72,139,125,200,232,177,204,255,255,72,137,69,216,72,131,125,216,0,117,33,72,139,69,200,72,139,64,40,72,139,48,72,141,61,63,127,6,0,184,0,0,0, 0,232,221,68,5,0,233,210,0,0,0,131,125,188,1,15,142,200,0,0,0,72,139,125,176,232,21,206,3,0,243,15,44,192,137,69,224,255,77,188,72,131,69,176,16,131,125,224,0,121,36,139,69,224,1,69,188,139,69,224,72,152,72,193,224,4,72,41,69,176,199,69,224,0,0,0,0,131, 125,188,0,15,142,134,0,0,0,139,69,224,139,85,188,1,194,72,139,69,216,139,0,57,194,126,18,72,139,69,216,139,0,43,69,224,137,69,188,131,125,188,0,126,98,199,69,236,0,0,0,0,235,72,72,139,69,216,72,139,72,8,139,69,224,139,85,236,1,194,139,69,228,15,175,194, 72,152,72,141,4,1,72,137,194,139,69,232,72,152,72,193,224,2,72,141,28,2,139,69,236,72,152,72,193,224,4,72,137,199,72,3,125,176,232,110,205,3,0,243,15,17,3,255,69,236,139,69,236,59,69,188,124,176,72,139,125,200,232,44,246,255,255,72,131,196,72,91,201, 195,85,72,137,229,72,131,236,64,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,243,15,17,93,232,243,15,90,69,232,242,15,17,69,200,243,15,90,69,236,242,15,17,69,208,243,15,90,69,240,242,15,17,69,216,243,15,90,69,244,242,15,17,69,224, 72,141,61,96,123,6,0,232,65,76,4,0,72,137,198,72,139,69,248,72,139,64,24,72,137,199,242,15,16,93,200,242,15,16,85,208,242,15,16,77,216,242,15,16,69,224,72,141,21,57,123,6,0,184,4,0,0,0,232,92,88,4,0,201,195,85,72,137,229,72,131,236,48,72,137,125,248, 243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,243,15,90,69,236,242,15,17,69,208,243,15,90,69,240,242,15,17,69,216,243,15,90,69,244,242,15,17,69,224,72,141,61,166,146,6,0,232,199,75,4,0,72,137,198,72,139,69,248,72,139,64,24,72,137,199,242,15,16,85, 208,242,15,16,77,216,242,15,16,69,224,72,141,21,133,126,6,0,184,3,0,0,0,232,231,87,4,0,201,195,85,72,137,229,72,131,236,48,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,243,15,90,69,236,242,15,17,69,208,243,15,90,69,240,242,15,17, 69,216,243,15,90,69,244,242,15,17,69,224,72,141,61,61,126,6,0,232,82,75,4,0,72,137,198,72,139,69,248,72,139,64,24,72,137,199,242,15,16,85,208,242,15,16,77,216,242,15,16,69,224,72,141,21,16,126,6,0,184,3,0,0,0,232,114,87,4,0,201,195,85,72,137,229,72,131, 236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,64,24,72,137,199,72,139,77,224,139,85,236,72,139,117,240,232,155,79,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139, 69,248,72,139,64,24,72,137,199,72,139,77,224,139,85,236,72,139,117,240,232,103,79,4,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,15,182,64,50,132,192,116,9,72,139,125,248,232,88,217,255,255,72,139,69,248,72,139,112, 40,72,139,125,248,232,85,134,4,0,72,139,85,248,72,139,69,240,72,137,66,32,72,139,69,248,72,139,80,32,72,139,69,248,72,137,80,40,72,139,69,248,72,139,112,40,72,139,125,248,232,36,133,4,0,72,139,125,248,232,222,243,255,255,201,195,85,72,137,229,83,72,129, 236,88,4,0,0,72,137,189,184,251,255,255,72,137,181,176,251,255,255,72,139,5,29,207,8,0,72,139,16,72,137,85,232,49,210,72,141,149,236,251,255,255,72,141,181,240,251,255,255,72,139,189,184,251,255,255,232,31,201,255,255,72,137,133,208,251,255,255,72,131, 189,208,251,255,255,0,117,36,72,139,133,184,251,255,255,72,139,64,40,72,139,48,72,141,61,164,123,6,0,184,0,0,0,0,232,66,65,5,0,233,199,1,0,0,72,139,133,208,251,255,255,139,0,137,133,252,251,255,255,72,139,133,176,251,255,255,72,139,24,72,139,133,184, 251,255,255,72,139,120,24,232,163,250,0,0,72,137,199,72,141,133,216,251,255,255,72,141,141,0,252,255,255,199,4,36,0,0,0,0,65,185,232,3,0,0,73,137,192,72,141,21,68,119,6,0,72,137,222,232,222,100,0,0,137,133,248,251,255,255,131,189,248,251,255,255,0,120, 35,139,189,248,251,255,255,72,141,53,76,124,6,0,232,223,98,6,0,72,137,133,224,251,255,255,72,131,189,224,251,255,255,0,117,32,72,139,133,176,251,255,255,72,139,48,72,141,61,39,124,6,0,184,0,0,0,0,232,151,64,5,0,233,28,1,0,0,199,133,244,251,255,255,0, 0,0,0,233,150,0,0,0,72,141,149,200,251,255,255,72,139,189,224,251,255,255,72,141,53,3,124,6,0,184,0,0,0,0,232,182,98,6,0,133,192,117,44,72,139,133,176,251,255,255,72,139,48,139,141,252,251,255,255,139,149,244,251,255,255,72,141,61,227,123,6,0,184,0,0, 0,0,232,119,60,5,0,233,152,0,0,0,72,139,133,208,251,255,255,72,139,80,8,139,133,236,251,255,255,15,175,133,244,251,255,255,72,152,72,141,4,2,72,137,194,139,133,240,251,255,255,72,152,72,193,224,2,72,141,4,2,242,15,16,133,200,251,255,255,242,15,90,192, 243,15,17,0,255,133,244,251,255,255,139,133,244,251,255,255,59,133,252,251,255,255,15,140,88,255,255,255,235,61,72,139,133,208,251,255,255,72,139,80,8,139,133,236,251,255,255,15,175,133,244,251,255,255,72,152,72,141,4,2,72,137,194,139,133,240,251,255, 255,72,152,72,193,224,2,72,1,194,184,0,0,0,0,137,2,255,133,244,251,255,255,139,133,244,251,255,255,59,133,252,251,255,255,124,181,72,139,189,224,251,255,255,232,152,97,6,0,72,139,189,184,251,255,255,232,156,241,255,255,72,139,5,247,204,8,0,72,139,85, 232,72,51,16,116,5,232,207,96,6,0,72,129,196,88,4,0,0,91,201,195,85,72,137,229,83,72,129,236,40,4,0,0,72,137,189,216,251,255,255,72,137,181,208,251,255,255,72,139,5,190,204,8,0,72,139,16,72,137,85,232,49,210,72,141,149,248,251,255,255,72,141,181,252, 251,255,255,72,139,189,216,251,255,255,232,192,198,255,255,72,137,133,224,251,255,255,72,131,189,224,251,255,255,0,117,36,72,139,133,216,251,255,255,72,139,64,40,72,139,48,72,141,61,69,121,6,0,184,0,0,0,0,232,227,62,5,0,233,27,1,0,0,72,139,133,208,251, 255,255,72,139,24,72,139,133,216,251,255,255,72,139,120,24,232,83,248,0,0,72,137,199,72,141,149,0,252,255,255,185,232,3,0,0,72,137,222,232,246,44,0,0,72,141,181,0,252,255,255,72,141,189,0,252,255,255,232,240,25,5,0,72,141,189,0,252,255,255,72,141,53, 230,166,6,0,232,175,96,6,0,72,137,133,232,251,255,255,72,131,189,232,251,255,255,0,117,29,72,141,181,0,252,255,255,72,141,61,53,122,6,0,184,0,0,0,0,232,94,62,5,0,233,150,0,0,0,199,133,244,251,255,255,0,0,0,0,235,109,72,139,133,224,251,255,255,72,139, 80,8,139,133,244,251,255,255,72,152,72,193,224,3,72,1,194,139,133,252,251,255,255,72,152,72,141,4,2,243,15,16,0,243,15,90,192,72,139,189,232,251,255,255,72,141,53,239,121,6,0,184,1,0,0,0,232,59,96,6,0,133,192,127,29,72,139,133,208,251,255,255,72,139, 48,72,141,61,212,121,6,0,184,0,0,0,0,232,38,58,5,0,235,23,255,133,244,251,255,255,72,139,133,224,251,255,255,139,0,59,133,244,251,255,255,127,130,72,139,189,232,251,255,255,232,217,95,6,0,72,139,5,68,203,8,0,72,139,85,232,72,51,16,116,5,232,28,95,6,0, 72,129,196,40,4,0,0,91,201,195,85,72,137,229,102,199,69,252,1,0,72,141,69,252,15,182,0,136,69,255,128,125,255,0,15,148,192,15,182,192,201,195,85,72,137,229,65,84,83,72,131,236,32,72,137,125,216,72,137,117,208,72,139,125,216,232,41,196,255,255,72,137, 69,232,72,139,69,216,72,139,64,24,72,137,69,224,72,131,125,208,0,127,8,72,199,69,208,1,0,0,0,72,139,69,216,72,139,64,16,76,141,96,24,72,141,61,75,117,6,0,232,199,69,4,0,72,137,195,72,139,69,216,72,139,64,16,72,139,120,16,232,127,86,2,0,72,137,199,185, 1,0,0,0,76,137,226,72,137,222,232,238,72,2,0,243,15,44,208,72,139,69,208,137,198,72,139,125,216,232,94,197,255,255,72,139,69,208,137,194,72,139,69,216,72,139,112,24,72,139,125,232,232,29,192,255,255,72,139,69,216,15,182,64,48,132,192,116,5,232,201,88, 0,0,72,131,196,32,91,65,92,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,243,72,15,44,240,72,139,125,248,232,30,255,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,76,195,255,255,72, 137,69,248,72,139,69,248,139,8,72,139,69,248,72,139,64,16,72,139,16,72,139,69,232,72,139,64,40,72,139,48,72,141,61,92,120,6,0,184,0,0,0,0,232,152,56,5,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,211,211,255,255,72,141,61,193,160,6,0,232,210,68, 4,0,72,137,199,65,185,0,0,0,0,65,184,2,0,0,0,185,56,0,0,0,72,137,218,190,0,0,0,0,184,0,0,0,0,232,12,51,4,0,72,137,194,72,141,5,212,39,9,0,72,137,16,72,141,5,202,39,9,0,72,139,56,72,141,53,152,206,8,0,232,223,64,4,0,72,141,61,6,120,6,0,232,125,68,4,0, 72,137,194,72,141,53,82,240,255,255,72,141,5,158,39,9,0,72,139,56,65,184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,241,57,4,0,72,141,53,138,246,255,255,72,141,5,120,39,9,0,72,139,56,232,96,64,4,0,72,141,61,81,115,6,0,232,50,68,4,0,72,137,194,72,141,53,147, 247,255,255,72,141,5,83,39,9,0,72,139,56,199,68,36,8,0,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,145,57,4,0,72,141,61,199,138,6,0,232,232,67,4,0,72,137,194,72,141,53,210,247,255,255,72,141,5,9,39,9,0,72,139,56,199, 4,36,0,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,79,57,4,0,72,141,61,53,119,6,0,232,166,67,4,0,72,137,194,72,141,53,122,248,255,255,72,141,5,199,38,9,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,26,57,4,0,72,141,61,92, 118,6,0,232,113,67,4,0,72,137,194,72,141,53,208,247,255,255,72,141,5,146,38,9,0,72,139,56,199,4,36,0,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,216,56,4,0,72,141,61,197,118,6,0,232,47,67,4,0,72,137,194,72,141,53,55,248,255,255,72, 141,5,80,38,9,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,163,56,4,0,72,141,61,151,118,6,0,232,250,66,4,0,72,137,194,72,141,53,54,248,255,255,72,141,5,27,38,9,0,72,139,56,65,184,0,0,0,0,185,2,0,0,0,184,0,0,0,0,232,110,56,4,0,72,141,61,18, 234,6,0,232,197,66,4,0,72,137,194,72,141,53,111,248,255,255,72,141,5,230,37,9,0,72,139,56,65,184,0,0,0,0,185,2,0,0,0,184,0,0,0,0,232,57,56,4,0,72,141,61,137,106,6,0,232,144,66,4,0,72,137,194,72,141,53,153,250,255,255,72,141,5,177,37,9,0,72,139,56,65, 184,0,0,0,0,185,2,0,0,0,184,0,0,0,0,232,4,56,4,0,72,141,61,2,118,6,0,232,91,66,4,0,72,137,194,72,141,53,245,252,255,255,72,141,5,124,37,9,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,207,55,4,0,72,141,61,243,133,6,0,232,38,66,4,0,72,137,194, 72,141,53,230,252,255,255,72,141,5,71,37,9,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,160,55,4,0,72,141,61,171,117,6,0,232,247,65,4,0,72,137,194,72,141,53,171,240,255,255,72,141,5,24,37,9,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,107,55,4, 0,72,141,61,126,117,6,0,232,194,65,4,0,72,137,194,72,141,53,101,241,255,255,72,141,5,227,36,9,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,54,55,4,0,72,141,61,162,101,6,0,232,141,65,4,0,72,137,194,72,141,53,31,242,255,255,72,141,5,174,36,9, 0,72,139,56,65,184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,1,55,4,0,72,141,61,111,133,6,0,232,88,65,4,0,72,137,194,72,141,53,171,200,255,255,72,141,5,121,36,9,0,72,139,56,199,68,36,8,0,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,2,0,0,0,184, 0,0,0,0,232,183,54,4,0,72,141,61,218,116,6,0,232,14,65,4,0,72,137,194,72,141,53,67,203,255,255,72,141,5,47,36,9,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,136,54,4,0,72,141,61,188,116,6,0,232,223,64,4,0,72,137,194,72,141,53,166,204,255,255,72,141,5,0,36, 9,0,72,139,56,65,185,0,0,0,0,65,184,6,0,0,0,185,1,0,0,0,184,0,0,0,0,232,77,54,4,0,72,141,61,151,116,6,0,232,164,64,4,0,72,137,194,72,141,53,93,207,255,255,72,141,5,197,35,9,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,30,54,4,0,72,141,5,172,35,9,0,72,139, 56,72,141,53,250,230,255,255,232,151,62,4,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,139,125,240,232,75,65,0,0,133,192,116,78,72,139,69,248,139,128,136,4,0,0,133,192,116,15,72,139,69,248,139,128,68,4,0,0,137, 69,236,235,13,72,139,69,248,139,128,72,4,0,0,137,69,236,72,139,125,240,232,13,241,0,0,72,137,198,72,139,85,248,139,77,236,72,141,61,5,116,6,0,184,0,0,0,0,232,131,212,4,0,201,195,85,72,137,229,72,131,236,96,72,137,125,232,72,137,117,224,72,139,125,232, 72,139,117,224,232,145,5,1,0,137,69,252,72,139,125,232,72,139,117,224,232,135,6,1,0,137,69,248,72,139,125,224,232,183,240,0,0,72,137,69,240,72,139,69,232,68,139,128,72,4,0,0,72,139,69,232,139,64,64,137,194,3,85,248,72,139,69,232,139,64,68,137,193,3,77, 252,139,117,248,139,125,252,76,139,85,240,72,139,69,232,72,137,68,36,8,68,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,158,115,6,0,184,0,0,0,0,232,236,211,4,0,72,139,69,232,139,128,136,4,0,0,133,192,116,15,72,139,69,232,139,128, 68,4,0,0,137,69,196,235,13,72,139,69,232,139,128,72,4,0,0,137,69,196,72,139,69,232,139,64,64,3,69,248,68,141,64,255,72,139,69,232,139,64,68,3,69,252,141,80,255,139,77,248,255,193,139,117,252,255,198,72,139,125,240,72,139,69,232,72,137,68,36,8,139,69, 196,137,4,36,69,137,193,65,137,208,137,242,72,137,254,72,141,61,104,115,6,0,184,0,0,0,0,232,110,211,4,0,72,139,69,232,139,128,76,4,0,0,137,69,200,72,139,69,232,139,128,60,4,0,0,137,69,204,72,139,69,232,72,131,192,80,72,137,69,208,72,139,69,232,72,139, 128,96,4,0,0,72,139,56,72,141,53,199,140,6,0,232,164,89,6,0,133,192,116,20,72,139,69,232,72,139,128,96,4,0,0,72,139,0,72,137,69,216,235,11,72,141,5,71,108,6,0,72,137,69,216,72,139,69,232,139,64,76,137,193,3,77,248,72,139,69,232,139,64,72,137,194,3,85, 252,72,139,117,240,72,139,69,232,72,137,68,36,24,139,69,200,137,68,36,16,72,141,5,124,217,8,0,72,137,68,36,8,139,69,204,137,4,36,76,139,77,208,76,139,69,216,72,141,61,238,114,6,0,184,0,0,0,0,232,180,210,4,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128, 132,192,117,76,72,139,69,232,139,64,64,137,199,3,125,248,68,139,69,252,65,131,192,7,72,139,69,232,139,64,64,3,69,248,141,72,255,139,85,252,72,139,117,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,249,72,141,61,16,115,6,0,184,0,0,0,0,232,86, 210,4,0,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,67,139,85,248,255,194,139,77,252,131,193,7,139,117,248,139,125,252,76,139,85,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61, 3,115,6,0,184,0,0,0,0,232,1,210,4,0,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,139,125,232,72,139,117,224,232,15,3,1,0,137,69,252,72,139,125,232,72,139,117,224,232,5,4,1,0,137,69,248,72,139,125,224,232,53,238,0,0,72,137,69,240, 72,139,69,232,139,64,64,137,194,3,85,248,72,139,69,232,139,64,68,3,69,252,139,77,248,139,117,252,72,139,125,232,76,139,85,240,137,20,36,65,137,193,65,137,200,137,241,72,137,250,76,137,214,72,141,61,198,114,6,0,184,0,0,0,0,232,124,209,4,0,72,139,69,232, 139,64,64,3,69,248,141,80,255,72,139,69,232,139,64,68,3,69,252,255,200,139,77,248,255,193,139,117,252,255,198,72,139,125,232,76,139,85,240,137,20,36,65,137,193,65,137,200,137,241,72,137,250,76,137,214,72,141,61,161,114,6,0,184,0,0,0,0,232,47,209,4,0, 72,139,69,232,139,128,136,4,0,0,133,192,116,15,72,139,69,232,139,128,68,4,0,0,137,69,220,235,13,72,139,69,232,139,128,72,4,0,0,137,69,220,72,139,85,232,72,139,117,240,139,77,220,72,141,61,107,112,6,0,184,0,0,0,0,232,233,208,4,0,72,139,69,232,139,64,76, 137,199,3,125,248,72,139,69,232,139,64,72,137,193,3,77,252,72,139,85,232,72,139,117,240,65,137,248,72,141,61,87,106,6,0,184,0,0,0,0,232,181,208,4,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,82,72,139,69,232,139,64,64,137,194,3,85,248, 139,77,252,131,193,7,72,139,69,232,139,64,64,3,69,248,255,200,139,117,252,72,139,125,232,76,139,85,240,137,84,36,8,137,12,36,65,137,193,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,235,113,6,0,184,0,0,0,0,232,81,208,4,0,72,139,69,232,15,182, 128,56,4,0,0,131,224,64,132,192,117,66,139,69,248,255,192,139,85,252,131,194,7,139,77,248,139,117,252,72,139,125,232,76,139,85,240,137,68,36,8,137,20,36,65,137,201,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,191,113,6,0,184,0,0,0,0,232,253, 207,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224,232,81,236,0,0,72,137,69,248,72,139,85,232,72,139,117,248,72,141,61,171,113,6,0,184,0,0,0,0,232,197,207,4,0,72,139,85,232,72,139,117,248,72,141,61,170,113,6,0,184, 0,0,0,0,232,172,207,4,0,72,139,85,232,72,139,117,248,72,141,61,21,165,6,0,184,0,0,0,0,232,147,207,4,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,30,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,85,131,6,0,184,0,0,0,0,232,99,207,4, 0,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,30,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,43,134,6,0,184,0,0,0,0,232,51,207,4,0,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,139,125,224,232,135,235,0,0,72, 137,69,248,72,139,69,232,72,139,128,96,4,0,0,72,139,56,72,141,53,147,136,6,0,232,112,85,6,0,133,192,116,20,72,139,69,232,72,139,128,96,4,0,0,72,139,0,72,137,69,208,235,11,72,141,5,19,104,6,0,72,137,69,208,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132, 192,117,15,72,139,69,232,139,128,76,4,0,0,137,69,216,235,7,199,69,216,255,0,0,0,72,139,69,232,139,144,60,4,0,0,72,139,77,232,72,131,193,80,72,139,117,232,72,139,125,248,72,139,69,208,72,137,68,36,8,139,69,216,137,4,36,72,141,5,35,213,8,0,73,137,193,65, 137,208,72,137,242,72,137,254,72,141,61,124,112,6,0,184,0,0,0,0,232,98,206,4,0,72,139,69,232,139,136,72,4,0,0,72,139,85,232,72,139,117,248,72,141,61,169,112,6,0,184,0,0,0,0,232,63,206,4,0,72,139,69,232,139,128,136,4,0,0,133,192,116,15,72,139,69,232,139, 128,68,4,0,0,137,69,220,235,13,72,139,69,232,139,128,72,4,0,0,137,69,220,72,139,85,232,72,139,117,248,139,77,220,72,141,61,123,109,6,0,184,0,0,0,0,232,249,205,4,0,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72,139,125, 232,72,139,117,224,232,4,255,0,0,137,69,252,72,139,125,232,72,139,117,224,232,250,255,0,0,137,69,248,72,139,125,224,232,42,234,0,0,72,137,69,240,139,69,220,131,224,1,132,192,116,94,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,76,72,139,69, 232,139,64,64,137,199,3,125,248,68,139,69,252,65,131,192,7,72,139,69,232,139,64,64,3,69,248,141,72,255,139,85,252,72,139,117,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,249,72,141,61,233,111,6,0,184,0,0,0,0,232,79,205,4,0,139,69,220,131, 224,1,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,7,129,6,0,184,0,0,0,0,232,21,205,4,0,139,69,220,131,224,2,133,192,116,85,72,139,69,232,15,182,128,56,4,0,0,131,224,64, 132,192,117,67,139,85,248,255,194,139,77,252,131,193,7,139,117,248,139,125,252,76,139,85,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,136,111,6,0,184,0,0,0,0,232,182,204,4,0,139,69,220,131, 224,2,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,116,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,116,131,6,0,184,0,0,0,0,232,124,204,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224, 232,208,232,0,0,72,137,69,248,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,116,92,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,55,111,6,0,184,0,0,0,0,232,45,204,4,0,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,73,111,6,0,184,0, 0,0,0,232,15,204,4,0,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,91,111,6,0,184,0,0,0,0,232,241,203,4,0,235,95,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,219,110,6,0,184,0,0,0,0,232,209,203,4,0,72,139,85,232,72,139,117,248,185,0,0,0, 0,72,141,61,237,110,6,0,184,0,0,0,0,232,179,203,4,0,72,139,69,232,139,136,76,4,0,0,72,139,85,232,72,139,117,248,72,141,61,250,110,6,0,184,0,0,0,0,232,144,203,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,131,125,236, 0,117,18,72,139,117,240,72,139,125,248,232,122,246,255,255,233,130,0,0,0,131,125,236,1,117,15,72,139,117,240,72,139,125,248,232,81,249,255,255,235,109,131,125,236,2,117,15,72,139,117,240,72,139,125,248,232,186,246,255,255,235,88,131,125,236,3,117,15, 72,139,117,240,72,139,125,248,232,172,254,255,255,235,67,131,125,236,4,117,15,72,139,117,240,72,139,125,248,232,22,251,255,255,235,46,131,125,236,5,117,15,72,139,117,240,72,139,125,248,232,203,251,255,255,235,25,131,125,236,5,126,19,139,85,236,131,234, 6,72,139,117,240,72,139,125,248,232,234,252,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,72,139,69,232,72,137,69,248,72,139,125,248,72,139,117,224,232,215,251,0,0,137, 194,72,139,69,216,137,16,72,139,125,248,72,139,117,224,232,200,252,0,0,137,194,72,139,69,208,137,16,72,139,69,216,139,16,72,139,69,248,139,64,68,1,194,72,139,69,200,137,16,72,139,69,208,139,16,72,139,69,248,139,64,64,1,194,72,139,69,192,137,16,201,195, 85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,40,1,0,0,72,137,125,136,72,137,117,128,72,139,69,136,72,137,69,200,72,139,125,200,72,141,85,176,72,141,117,144,232,135,163,255,255,139,93,184,68,139,101,180,68,139,109,176,72,139,69,200,68,139,176,60, 4,0,0,72,139,125,200,72,129,199,56,4,0,0,232,169,173,255,255,65,137,199,72,139,69,200,139,64,76,137,133,56,255,255,255,72,139,69,200,139,64,72,137,133,60,255,255,255,72,139,69,160,72,137,133,64,255,255,255,72,139,85,152,72,137,149,72,255,255,255,72,139, 69,144,72,137,133,80,255,255,255,72,139,125,200,72,129,199,64,4,0,0,232,67,172,255,255,137,133,88,255,255,255,72,139,69,200,139,128,140,4,0,0,137,133,92,255,255,255,72,139,69,200,139,128,144,4,0,0,137,133,96,255,255,255,72,139,69,200,139,64,68,137,133, 100,255,255,255,72,141,61,112,113,6,0,232,239,52,4,0,72,137,133,104,255,255,255,72,139,69,200,15,183,64,42,152,137,133,112,255,255,255,72,139,69,200,15,183,64,40,152,137,133,116,255,255,255,72,141,61,197,125,6,0,232,190,52,4,0,72,137,133,120,255,255, 255,72,141,61,146,110,6,0,232,171,52,4,0,72,139,125,128,137,92,36,112,68,137,100,36,104,68,137,108,36,96,68,137,116,36,88,68,137,124,36,80,139,149,56,255,255,255,137,84,36,72,139,149,60,255,255,255,137,84,36,64,72,139,149,64,255,255,255,72,137,84,36, 56,72,139,149,72,255,255,255,72,137,84,36,48,72,139,149,80,255,255,255,72,137,84,36,40,139,149,88,255,255,255,137,84,36,32,139,149,92,255,255,255,137,84,36,24,139,149,96,255,255,255,137,84,36,16,139,149,100,255,255,255,137,84,36,8,72,139,149,104,255, 255,255,72,137,20,36,68,139,141,112,255,255,255,68,139,133,116,255,255,255,72,139,141,120,255,255,255,72,137,194,72,141,53,31,108,6,0,184,0,0,0,0,232,210,201,3,0,72,139,125,128,72,141,53,210,127,6,0,184,0,0,0,0,232,189,201,3,0,72,129,196,40,1,0,0,91, 65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,137,125,232,137,117,228,137,85,224,139,69,228,59,69,224,126,18,139,69,228,137,69,252,139,69,224,137,69,228,139,69,252,137,69,224,131,125,228,9,127,7,199,69,228,10,0,0,0,131,125,224,49,127,7,199,69,224, 50,0,0,0,72,139,85,232,139,69,228,137,130,140,4,0,0,72,139,85,232,139,69,224,137,130,144,4,0,0,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,24,4,0,0,72,137,189,120,252,255,255,72,137,181,112,252,255,255,72,139,5,63,184,8,0,72,139,16,72, 137,85,200,49,210,72,139,133,120,252,255,255,72,137,133,152,252,255,255,72,139,189,152,252,255,255,72,141,181,128,252,255,255,232,118,161,255,255,72,139,133,152,252,255,255,139,128,76,4,0,0,137,194,129,226,255,255,255,0,72,139,133,152,252,255,255,139, 128,68,4,0,0,137,193,129,225,255,255,255,0,72,139,133,152,252,255,255,139,128,72,4,0,0,137,198,129,230,255,255,255,0,72,139,133,152,252,255,255,139,184,60,4,0,0,72,139,133,152,252,255,255,15,182,128,56,4,0,0,131,224,63,68,15,182,192,72,139,133,152,252, 255,255,68,139,72,76,72,139,133,152,252,255,255,68,139,80,72,72,139,133,144,252,255,255,76,139,24,72,139,133,136,252,255,255,72,139,24,72,139,133,128,252,255,255,76,139,32,72,139,133,152,252,255,255,15,182,128,64,4,0,0,131,224,1,68,15,182,232,72,139, 133,152,252,255,255,68,139,176,144,4,0,0,72,139,133,152,252,255,255,68,139,184,140,4,0,0,72,139,133,152,252,255,255,139,64,68,137,133,92,252,255,255,72,141,133,160,252,255,255,72,137,133,104,252,255,255,137,148,36,128,0,0,0,137,76,36,120,137,116,36,112, 137,124,36,104,68,137,68,36,96,68,137,76,36,88,68,137,84,36,80,76,137,92,36,72,72,137,92,36,64,76,137,100,36,56,199,68,36,48,255,255,255,255,199,68,36,40,255,255,255,255,68,137,108,36,32,199,68,36,24,255,255,255,255,199,68,36,16,2,0,0,0,68,137,116,36, 8,68,137,60,36,65,185,8,0,0,0,68,139,133,92,252,255,255,72,141,13,254,105,6,0,186,32,3,0,0,190,0,0,0,0,72,139,189,104,252,255,255,184,0,0,0,0,232,131,74,6,0,72,139,189,152,252,255,255,72,141,149,160,252,255,255,72,139,181,152,252,255,255,232,45,159,5, 0,72,139,5,130,182,8,0,72,139,85,200,72,51,16,116,5,232,90,74,6,0,72,129,196,24,4,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,128,136,4,0,0,133,192,116,87,72,139,69,248,199,128,136,4,0,0,0,0,0,0, 72,139,69,248,72,139,72,56,72,139,69,248,72,139,112,48,72,139,125,248,186,0,0,0,0,255,209,72,139,69,248,139,128,140,4,0,0,242,15,42,192,72,139,69,248,72,139,184,160,4,0,0,232,186,115,4,0,72,139,69,248,199,128,136,4,0,0,1,0,0,0,235,41,72,139,69,248,199, 128,136,4,0,0,1,0,0,0,72,139,69,248,72,139,72,56,72,139,69,248,72,139,112,48,72,139,125,248,186,0,0,0,0,255,209,72,139,69,248,139,128,144,4,0,0,242,15,42,192,72,139,69,248,72,139,184,152,4,0,0,232,99,115,4,0,201,195,85,72,137,229,72,131,236,16,72,137, 125,248,72,139,69,248,15,182,128,59,4,0,0,131,224,4,132,192,117,44,72,139,85,248,15,182,130,67,4,0,0,131,200,8,136,130,67,4,0,0,72,139,69,248,72,139,184,168,4,0,0,242,15,16,5,99,218,6,0,232,23,115,4,0,72,139,69,248,72,139,120,24,232,94,89,4,0,72,139, 69,248,15,182,128,56,4,0,0,131,224,128,132,192,116,58,72,139,69,248,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,38,72,139,69,248,15,182,128,59,4,0,0,131,224,4,132,192,116,20,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,232,213,111,4,0,201,195,85, 72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15,182,128,59,4,0,0,131,224,4,132,192,117,44,72,139,85,248,15,182,130,67,4,0,0,131,200,8,136,130,67,4,0,0,72,139,69,248,72,139,184,168,4,0,0,242,15,16,5,190,217,6,0,232,114,114,4,0,72,139,69,248,72, 139,120,24,232,185,88,4,0,72,139,69,248,15,182,128,56,4,0,0,131,224,128,132,192,116,40,72,139,69,248,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,20,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,232,66,111,4,0,201,195,85,72,137,229,72,131,236,16,72, 137,125,248,72,139,69,248,15,182,128,67,4,0,0,131,224,8,132,192,117,18,72,139,125,248,232,231,253,255,255,72,139,125,248,232,152,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15,182,128,67,4,0,0,131,224,8,132,192,117,18, 72,139,125,248,232,181,253,255,255,72,139,125,248,232,11,255,255,255,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,139,85,176,139,117,188,191,0,0,0,0,232,87,177,3,0,137,69,252,72,139,85,176,139,117,188, 191,2,0,0,0,232,67,177,3,0,137,69,248,72,139,85,176,139,117,188,191,3,0,0,0,232,47,177,3,0,137,69,244,72,139,125,200,72,139,77,176,139,85,188,72,141,117,208,232,108,157,255,255,137,69,240,139,125,252,232,188,135,255,255,137,194,72,139,69,200,137,80,68, 72,139,69,200,139,80,68,72,139,69,200,137,80,64,139,85,248,139,117,244,72,139,125,200,232,174,250,255,255,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,5,0,0,0,255,209,72,139,69,200,72,139,72,56,139,85,240,131,194,6,72,139, 69,200,72,139,112,48,72,139,125,200,255,209,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,1,0,0,0,255,209,72,139,117,200,72,139,69,200,72,139,120,48,232,39,50,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17, 69,244,243,15,17,77,240,243,15,17,85,236,243,15,17,93,232,243,15,17,101,228,72,139,125,248,232,127,252,255,255,72,139,125,248,232,213,253,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,137,77,232,68,137,69,228,68, 137,77,224,131,125,24,0,116,44,243,15,42,69,224,243,15,42,77,228,243,15,42,109,232,243,15,42,117,236,72,139,125,248,15,40,224,15,87,219,15,40,209,15,40,205,15,40,198,232,119,255,255,255,184,1,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243, 15,17,69,244,72,139,125,248,232,39,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,125,248,232,12,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,125,248,232,241,253,255,255,201, 195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,125,248,232,207,253,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,125,248,232,173,253,255,255,201, 195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,5,86,27,9,0,139,0,133,192,117,36,72,139,69,248,15,182,128,64,4,0,0,131,224,1,132,192,116,18,72,139,125,248,232,83,251,255,255,72,139,125,248,232,169,252,255,255,201,195,85,72,137,229,72,131,236,32, 72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,85,224,139,117,236,191,0,0,0,0,232,245,174,3,0,137,199,232,157,133,255,255,137,194,72,139,69,248,137,80,68,72,139,69,248,139,80,68,72,139,69,248,137,80,64,72,139,117,248,72,139,125,248,232, 146,150,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,173,150,255,255,201,195,85,72,137,229,72,131,236,32,72,137, 125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,41,151,255,255,201,195,85,72,137,229,83,72,131,236,40,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85, 208,139,117,220,191,1,0,0,0,232,55,174,3,0,137,195,72,139,85,208,139,117,220,191,0,0,0,0,232,36,174,3,0,137,198,72,139,125,232,137,218,232,222,247,255,255,72,131,196,40,91,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72, 137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,53,151,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,99,143,255,255,201,195,85, 72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,51,144,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,165,145,255,255,201, 195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,89,146,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240, 137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,246,146,255,255,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,72,139,85,248,137,193, 131,225,1,15,182,130,64,4,0,0,131,224,254,9,200,136,130,64,4,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,199,128,136,4,0,0,0,0,0,0,72,139,69,248,72,139,72,56,72,139,69,248,72,139,112,48,72,139,125,248,186,0,0,0,0,255,209,201, 195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,72,56,72,139,69,248,72,139,112,48,72,139,125,248,186,0,0,0,0,255,209,201,195,85,72,137,229,72,137,125,248,72,139,69,248,15,182,144,67,4,0,0,131,226,247,136,144,67,4,0,0,201,195,85,72, 137,229,72,129,236,240,0,0,0,72,137,189,40,255,255,255,137,181,36,255,255,255,72,137,149,24,255,255,255,72,139,5,187,174,8,0,72,139,16,72,137,85,248,49,210,72,139,61,27,222,8,0,232,194,96,4,0,72,137,133,64,255,255,255,199,133,48,255,255,255,0,0,252,255, 199,133,52,255,255,255,255,255,255,255,199,133,56,255,255,255,255,255,255,255,199,133,92,255,255,255,15,0,0,0,199,133,88,255,255,255,17,0,0,0,199,133,84,255,255,255,7,0,0,0,199,133,80,255,255,255,10,0,0,0,199,133,76,255,255,255,50,0,0,0,199,133,72,255, 255,255,250,0,0,0,72,139,189,64,255,255,255,72,129,199,64,4,0,0,190,0,0,0,0,232,103,159,255,255,72,139,189,64,255,255,255,72,129,199,56,4,0,0,190,0,0,0,0,232,108,160,255,255,131,189,36,255,255,255,14,15,133,231,2,0,0,72,139,133,24,255,255,255,139,0,131, 248,1,15,133,213,2,0,0,72,139,133,24,255,255,255,72,131,192,16,139,0,131,248,1,15,133,191,2,0,0,72,139,133,24,255,255,255,72,131,192,32,139,0,131,248,1,15,133,169,2,0,0,72,139,133,24,255,255,255,72,131,192,48,139,0,131,248,1,15,133,147,2,0,0,72,139,133, 24,255,255,255,72,131,192,64,139,0,131,248,2,116,22,72,139,133,24,255,255,255,72,131,192,64,139,0,131,248,1,15,133,107,2,0,0,72,139,133,24,255,255,255,72,131,192,80,139,0,131,248,2,116,22,72,139,133,24,255,255,255,72,131,192,80,139,0,131,248,1,15,133, 67,2,0,0,72,139,133,24,255,255,255,72,131,192,96,139,0,131,248,2,116,22,72,139,133,24,255,255,255,72,131,192,96,139,0,131,248,1,15,133,27,2,0,0,72,139,133,24,255,255,255,72,131,192,112,139,0,131,248,1,15,133,5,2,0,0,72,139,133,24,255,255,255,72,131,232, 128,139,0,131,248,1,15,133,239,1,0,0,72,139,133,24,255,255,255,72,5,144,0,0,0,139,0,131,248,1,15,133,215,1,0,0,72,139,133,24,255,255,255,72,5,160,0,0,0,139,0,131,248,1,15,133,191,1,0,0,72,139,133,24,255,255,255,72,5,176,0,0,0,139,0,131,248,1,15,133,167, 1,0,0,72,139,133,24,255,255,255,72,5,192,0,0,0,139,0,131,248,1,15,133,143,1,0,0,72,139,133,24,255,255,255,72,5,208,0,0,0,139,0,131,248,1,15,133,119,1,0,0,72,139,149,24,255,255,255,139,181,36,255,255,255,191,0,0,0,0,232,244,169,3,0,137,133,92,255,255, 255,72,139,149,24,255,255,255,139,181,36,255,255,255,191,1,0,0,0,232,215,169,3,0,137,133,72,255,255,255,72,139,149,24,255,255,255,139,181,36,255,255,255,191,2,0,0,0,232,186,169,3,0,137,133,76,255,255,255,72,139,149,24,255,255,255,139,181,36,255,255,255, 191,3,0,0,0,232,157,169,3,0,137,198,72,139,189,64,255,255,255,72,129,199,64,4,0,0,232,79,157,255,255,72,139,189,64,255,255,255,72,139,149,24,255,255,255,190,4,0,0,0,232,139,131,255,255,72,139,149,24,255,255,255,139,181,36,255,255,255,191,7,0,0,0,232, 89,169,3,0,137,133,88,255,255,255,72,139,149,24,255,255,255,139,181,36,255,255,255,191,8,0,0,0,232,60,169,3,0,137,133,84,255,255,255,72,139,149,24,255,255,255,139,181,36,255,255,255,191,9,0,0,0,232,31,169,3,0,137,198,72,139,189,64,255,255,255,72,129, 199,56,4,0,0,232,238,157,255,255,72,139,149,24,255,255,255,139,181,36,255,255,255,191,10,0,0,0,232,243,168,3,0,137,133,80,255,255,255,72,139,149,24,255,255,255,139,181,36,255,255,255,191,11,0,0,0,232,214,168,3,0,137,133,48,255,255,255,72,139,149,24,255, 255,255,139,181,36,255,255,255,191,12,0,0,0,232,185,168,3,0,137,133,52,255,255,255,72,139,149,24,255,255,255,139,181,36,255,255,255,191,13,0,0,0,232,156,168,3,0,137,133,56,255,255,255,235,22,72,139,189,64,255,255,255,186,0,0,0,0,190,4,0,0,0,232,153,130, 255,255,72,141,21,14,239,255,255,72,139,133,64,255,255,255,72,137,80,56,72,139,149,64,255,255,255,15,182,130,56,4,0,0,131,200,128,136,130,56,4,0,0,72,139,149,64,255,255,255,15,182,130,56,4,0,0,131,200,64,136,130,56,4,0,0,72,139,133,64,255,255,255,199, 128,136,4,0,0,0,0,0,0,232,110,9,0,0,72,137,194,72,139,133,64,255,255,255,72,137,80,48,72,139,133,64,255,255,255,72,139,128,80,4,0,0,72,139,56,72,141,53,187,115,6,0,232,152,64,6,0,133,192,117,23,72,139,133,64,255,255,255,15,182,144,56,4,0,0,131,226,127, 136,144,56,4,0,0,72,139,133,64,255,255,255,72,139,128,88,4,0,0,72,139,56,72,141,53,131,115,6,0,232,96,64,6,0,133,192,117,23,72,139,133,64,255,255,255,15,182,144,56,4,0,0,131,226,191,136,144,56,4,0,0,72,139,133,64,255,255,255,15,182,128,56,4,0,0,131,224, 63,60,1,117,76,72,199,192,255,255,255,255,72,131,248,255,116,35,72,199,194,255,255,255,255,72,139,189,64,255,255,255,72,131,199,80,72,141,53,100,94,6,0,232,233,61,6,0,233,210,0,0,0,72,139,189,64,255,255,255,72,131,199,80,72,141,53,72,94,6,0,232,70,2, 0,0,233,182,0,0,0,72,139,133,64,255,255,255,15,182,128,56,4,0,0,131,224,63,60,2,117,70,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,64,255,255,255,72,131,199,80,72,141,53,147,158,6,0,232,136,61,6,0,235,116,72, 139,189,64,255,255,255,72,131,199,80,72,141,53,122,158,6,0,232,232,1,0,0,235,91,72,139,149,64,255,255,255,15,182,130,56,4,0,0,131,224,192,136,130,56,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,64,255,255, 255,72,131,199,80,72,141,53,22,191,8,0,232,43,61,6,0,235,23,72,139,189,64,255,255,255,72,131,199,80,72,141,53,253,190,8,0,232,139,1,0,0,72,139,133,64,255,255,255,15,182,128,56,4,0,0,131,224,64,132,192,116,26,72,139,133,64,255,255,255,72,139,176,88,4, 0,0,72,139,189,64,255,255,255,232,204,94,4,0,72,139,149,64,255,255,255,139,133,88,255,255,255,137,66,72,72,139,149,64,255,255,255,139,133,84,255,255,255,137,66,76,131,189,80,255,255,255,3,127,10,199,133,80,255,255,255,4,0,0,0,72,139,149,64,255,255,255, 139,133,80,255,255,255,137,130,60,4,0,0,139,189,92,255,255,255,232,194,124,255,255,137,194,72,139,133,64,255,255,255,137,80,68,72,139,133,64,255,255,255,139,80,68,72,139,133,64,255,255,255,137,80,64,139,149,72,255,255,255,139,181,76,255,255,255,72,139, 189,64,255,255,255,232,162,239,255,255,72,139,189,64,255,255,255,72,141,181,48,255,255,255,232,94,132,255,255,72,139,149,64,255,255,255,15,182,130,67,4,0,0,131,224,247,136,130,67,4,0,0,72,139,189,64,255,255,255,232,114,126,255,255,72,141,53,204,248,255, 255,72,139,189,64,255,255,255,232,236,99,4,0,72,137,194,72,139,133,64,255,255,255,72,137,144,152,4,0,0,72,141,53,223,248,255,255,72,139,189,64,255,255,255,232,200,99,4,0,72,137,194,72,139,133,64,255,255,255,72,137,144,160,4,0,0,72,141,53,228,248,255, 255,72,139,189,64,255,255,255,232,164,99,4,0,72,137,194,72,139,133,64,255,255,255,72,137,144,168,4,0,0,72,139,189,64,255,255,255,72,141,53,160,175,8,0,232,253,74,4,0,72,139,133,64,255,255,255,72,139,21,165,167,8,0,72,139,77,248,72,51,10,116,5,232,125, 59,6,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,99,59,6,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15,182,128,56,4,0,0,131,224,64,132,192,116, 20,72,139,69,248,72,139,176,88,4,0,0,72,139,125,248,232,28,94,4,0,72,139,69,248,72,139,184,168,4,0,0,232,178,101,4,0,72,139,69,248,72,139,184,160,4,0,0,232,162,101,4,0,72,139,69,248,72,139,184,152,4,0,0,232,146,101,4,0,72,139,125,248,232,108,146,5,0, 201,195,85,72,137,229,65,84,83,72,131,236,32,72,141,29,129,255,255,255,76,141,37,8,248,255,255,72,141,61,108,94,6,0,232,235,33,4,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,176,4,0,0,72,137,218,76,137,230,184,0,0,0,0,232,32,16,4, 0,72,137,5,27,214,8,0,72,141,53,52,242,255,255,72,139,61,13,214,8,0,232,96,29,4,0,72,141,53,18,244,255,255,72,139,61,250,213,8,0,232,129,29,4,0,72,141,53,27,244,255,255,72,139,61,231,213,8,0,232,136,29,4,0,72,141,53,35,244,255,255,72,139,61,212,213,8, 0,232,65,29,4,0,72,141,53,43,244,255,255,72,139,61,193,213,8,0,232,124,29,4,0,72,141,53,58,244,255,255,72,139,61,174,213,8,0,232,131,29,4,0,72,141,61,170,90,6,0,232,59,33,4,0,72,141,53,23,243,255,255,72,139,61,143,213,8,0,199,68,36,16,0,0,0,0,199,68, 36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,149,22,4,0,72,141,61,51,118,6,0,232,236,32,4,0,72,141,53,203,241,255,255,72,139,61,64,213,8,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,99, 22,4,0,72,141,61,105,92,6,0,232,186,32,4,0,72,141,53,188,243,255,255,72,139,61,14,213,8,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,55,22,4,0,72,141,61,225,117,6,0,232,142,32,4,0,72,141,53,207,243,255,255,72,139,61,226,212,8,0,65,184,0,0,0,0,185,10,0,0, 0,72,137,194,184,0,0,0,0,232,5,22,4,0,72,141,61,155,106,6,0,232,92,32,4,0,72,141,53,242,243,255,255,72,139,61,176,212,8,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,211,21,4,0,72,141,61,111,106,6,0,232,42,32,4,0,72,141,53,244,243,255,255, 72,139,61,126,212,8,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,161,21,4,0,72,141,61,116,89,6,0,232,248,31,4,0,72,141,53,246,243,255,255,72,139,61,76,212,8,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,111,21,4,0,72,141,61,15, 106,6,0,232,198,31,4,0,72,141,53,20,244,255,255,72,139,61,26,212,8,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,61,21,4,0,72,141,61,227,105,6,0,232,148,31,4,0,72,141,53,22,244,255,255,72,139,61,232,211,8,0,65,184,0,0,0,0,185,7,0,0,0,72,137, 194,184,0,0,0,0,232,11,21,4,0,72,141,61,189,116,6,0,232,98,31,4,0,72,141,53,7,244,255,255,72,139,61,182,211,8,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,217,20,4,0,72,141,61,147,116,6,0,232,48,31,4,0,72,141,53,248,243,255,255,72,139,61,132, 211,8,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,167,20,4,0,72,141,61,133,88,6,0,232,254,30,4,0,72,141,53,233,243,255,255,72,139,61,82,211,8,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,117,20,4,0,72,141,61,55,116,6,0,232,204, 30,4,0,72,141,53,235,243,255,255,72,139,61,32,211,8,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,67,20,4,0,72,141,61,241,104,6,0,232,154,30,4,0,72,141,53,237,243,255,255,72,139,61,238,210,8,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0, 0,0,232,17,20,4,0,72,141,21,183,1,9,0,72,141,5,17,232,255,255,72,137,2,72,141,21,166,1,9,0,72,141,5,242,138,255,255,72,137,66,8,72,141,21,148,1,9,0,72,141,5,88,139,255,255,72,137,66,16,72,141,5,130,1,9,0,72,199,64,24,0,0,0,0,72,141,21,115,1,9,0,72,141, 5,140,139,255,255,72,137,66,32,72,141,21,97,1,9,0,72,141,5,153,139,255,255,72,137,66,40,72,141,21,79,1,9,0,72,141,5,26,240,255,255,72,137,66,48,72,139,61,85,210,8,0,72,141,53,54,1,9,0,232,61,26,4,0,72,141,61,92,90,6,0,232,219,29,4,0,72,137,198,72,139, 61,51,210,8,0,232,127,26,4,0,72,139,61,39,210,8,0,72,141,53,231,231,255,255,232,229,27,4,0,72,139,61,20,210,8,0,72,141,53,53,234,255,255,232,254,27,4,0,72,131,196,32,91,65,92,201,195,85,72,137,229,72,141,5,28,182,8,0,139,0,133,192,117,12,72,141,61,23, 87,6,0,232,145,181,4,0,201,195,85,72,137,229,72,137,125,248,72,141,5,9,1,9,0,72,139,16,72,139,69,248,72,137,144,216,0,0,0,72,141,21,244,0,9,0,72,139,69,248,72,137,2,201,195,85,72,137,229,72,137,125,232,72,141,5,220,0,9,0,72,139,0,72,57,69,232,117,23, 72,139,69,232,72,139,144,216,0,0,0,72,141,5,193,0,9,0,72,137,16,235,70,72,141,5,181,0,9,0,72,139,0,72,137,69,248,235,15,72,139,69,248,72,139,128,216,0,0,0,72,137,69,248,72,139,69,248,72,139,128,216,0,0,0,72,59,69,232,117,224,72,139,69,232,72,139,144, 216,0,0,0,72,139,69,248,72,137,144,216,0,0,0,201,195,85,72,137,229,72,131,236,16,137,125,252,72,137,117,240,72,139,5,62,209,8,0,72,133,192,116,27,139,5,43,209,8,0,72,152,72,137,198,72,193,230,4,72,139,61,35,209,8,0,232,183,56,4,0,139,69,252,137,5,13, 209,8,0,139,69,252,72,152,72,137,198,72,193,230,4,72,139,125,240,232,7,55,4,0,72,137,5,249,208,8,0,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,137,85,232,72,139,69,240,72,137,5,164,166,8,0,72,139,69,232,72,137,5,161,166,8,0,201,195,85,72,137, 229,72,141,5,204,255,8,0,72,139,48,72,141,61,186,169,8,0,232,103,89,4,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,174,90,4,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,8,91,4,0,201,195,85,72,137, 229,72,131,236,16,72,137,125,248,72,131,125,248,0,117,55,72,141,61,163,85,6,0,184,0,0,0,0,232,124,23,5,0,235,36,72,139,69,248,72,139,64,72,72,137,69,248,72,131,125,248,0,117,17,72,141,61,139,85,6,0,184,0,0,0,0,232,86,23,5,0,72,139,69,248,72,139,128,224, 0,0,0,72,133,192,116,204,72,139,69,248,72,139,128,224,0,0,0,201,195,85,72,137,229,72,131,236,32,232,66,255,255,255,72,137,69,248,72,131,125,248,0,116,15,72,139,125,248,232,120,255,255,255,72,137,69,224,235,8,72,199,69,224,0,0,0,0,72,139,69,224,72,137, 69,240,72,131,125,240,0,116,12,72,139,69,240,139,64,24,137,69,236,235,7,199,69,236,0,0,0,0,139,69,236,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,232,228,254,255,255,72,137,199,232,38,255,255,255,72,137,69,248,72,139,69,248,139, 80,8,72,139,69,232,137,16,72,139,69,248,72,139,80,16,72,139,69,224,72,137,16,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,72,139,69,208,72,139,0,72,137,69,240,72,139,125,240,190,36,0,0,0,232,224,53,6,0,72,133,192,116,66,72,139,125, 216,232,205,254,255,255,72,137,69,232,72,139,125,216,232,146,254,255,255,72,139,69,232,72,139,80,16,72,139,69,232,139,112,8,72,139,125,208,185,1,0,0,0,232,77,187,3,0,72,137,69,248,72,139,125,216,232,127,254,255,255,235,8,72,139,69,208,72,137,69,248,72, 139,69,248,201,195,85,72,137,229,72,131,236,16,232,47,254,255,255,72,137,199,232,113,254,255,255,72,137,69,248,72,139,69,248,72,139,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,79,254,255,255,72,137,69,248,72,139,69,248,72, 139,0,201,195,85,72,137,229,83,72,131,236,56,72,137,125,216,72,137,117,208,72,137,85,200,137,77,196,72,139,125,216,232,33,254,255,255,72,139,0,72,139,0,72,137,69,224,72,139,69,208,15,182,0,60,47,116,36,72,139,69,208,15,182,0,132,192,116,14,72,139,69, 208,72,255,192,15,182,0,60,58,116,11,72,139,69,224,15,182,0,132,192,117,84,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,193,255,255,255,255,139,69,196,72,99,208,72,139,117,208,72,139,125,200,232,188,50,6,0,235,19,139,69,196,72,99,208,72,139, 117,208,72,139,125,200,232,20,1,0,0,72,139,85,200,72,255,202,139,69,196,72,152,72,141,4,2,198,0,0,233,245,0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,193,255,255,255,255,139,69,196,72,99,208,72,139,117,224,72,139,125,200,232,104,50, 6,0,235,19,139,69,196,72,99,208,72,139,117,224,72,139,125,200,232,192,0,0,0,72,139,85,200,72,255,202,139,69,196,72,152,72,141,4,2,198,0,0,139,93,196,72,139,125,200,232,80,52,6,0,137,218,41,194,137,208,255,200,137,69,236,131,125,236,0,15,142,133,0,0,0, 72,199,192,255,255,255,255,72,131,248,255,116,25,72,199,194,255,255,255,255,72,139,125,200,72,141,53,110,148,6,0,232,233,49,6,0,235,16,72,139,125,200,72,141,53,92,148,6,0,232,132,0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,193,255,255, 255,255,139,69,236,72,99,208,72,139,117,208,72,139,125,200,232,188,49,6,0,235,19,139,69,236,72,99,208,72,139,117,208,72,139,125,200,232,110,0,0,0,72,139,85,200,72,255,202,139,69,196,72,152,72,141,4,2,198,0,0,72,131,196,56,91,201,195,85,72,137,229,72, 131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,72,139,117,240,72,139,125,248,232,103,49,6,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72, 139,125,248,232,47,49,6,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,72,139,117,240,72,139,125,248,232,13,49,6,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117, 224,72,137,85,216,72,139,69,232,72,139,128,200,0,0,0,72,139,56,72,141,53,206,81,6,0,232,243,50,6,0,133,192,116,28,72,139,69,232,72,139,184,200,0,0,0,232,180,18,0,0,72,137,198,72,139,125,232,232,164,83,4,0,72,139,85,232,72,139,69,224,72,137,130,200,0, 0,0,72,139,69,232,72,139,128,200,0,0,0,72,139,56,72,141,53,133,81,6,0,232,170,50,6,0,133,192,116,28,72,139,69,232,72,139,184,200,0,0,0,232,107,18,0,0,72,137,198,72,139,125,232,232,87,82,4,0,72,139,125,232,232,129,24,0,0,133,192,116,9,72,139,125,232,232, 193,18,0,0,72,131,125,216,0,116,37,72,141,5,64,165,8,0,72,57,69,216,116,24,72,139,125,232,232,76,251,255,255,72,137,69,248,72,139,85,248,72,139,69,216,72,137,2,201,195,85,72,137,229,72,137,125,232,72,137,117,224,199,69,252,0,0,0,0,72,139,69,232,72,139, 64,48,72,137,69,240,235,15,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,116,10,72,139,69,240,72,59,69,224,117,224,139,69,252,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,69,248,72,199,64,8,0,0,0,0,72,139,85,248,72, 139,69,240,72,137,2,72,139,69,248,72,199,64,104,0,0,0,0,72,139,69,248,199,64,16,0,0,0,0,72,139,69,248,139,80,16,72,139,69,248,137,80,112,201,195,85,72,137,229,83,72,131,236,88,72,137,125,184,72,139,69,184,72,139,64,104,72,137,69,216,233,114,1,0,0,72, 139,69,184,139,64,112,137,69,236,233,33,1,0,0,72,199,69,200,0,0,0,0,72,139,69,184,72,139,64,8,72,133,192,117,17,72,139,69,184,72,139,0,72,139,64,48,72,137,69,208,235,50,72,139,69,184,72,139,64,8,72,139,64,8,72,137,69,208,235,32,72,139,125,208,232,118, 71,4,0,72,137,69,200,72,131,125,200,0,117,19,72,139,69,208,72,139,64,8,72,137,69,208,72,131,125,208,0,117,217,72,131,125,200,0,117,13,72,199,69,168,0,0,0,0,233,11,3,0,0,72,139,85,184,72,139,69,200,72,137,66,8,72,139,125,200,232,55,69,4,0,137,194,72,139, 69,184,137,80,16,199,69,236,0,0,0,0,72,139,69,184,72,139,56,232,229,22,0,0,133,192,116,68,72,139,85,184,72,131,194,68,72,139,77,184,72,131,193,64,72,139,117,184,72,131,198,60,72,139,125,184,72,131,199,56,72,139,69,184,72,139,0,76,139,85,208,73,137,209, 73,137,200,72,137,241,72,137,250,72,137,198,76,137,215,232,240,60,0,0,235,53,72,139,69,184,199,64,68,0,0,0,0,72,139,69,184,139,80,68,72,139,69,184,137,80,64,72,139,69,184,139,80,64,72,139,69,184,137,80,60,72,139,69,184,139,80,60,72,139,69,184,137,80, 56,72,139,69,184,139,64,16,59,69,236,15,132,207,254,255,255,139,85,236,255,194,72,139,69,184,137,80,112,72,139,117,184,72,131,198,32,72,139,69,184,72,139,120,8,139,85,236,232,239,68,4,0,72,137,69,216,72,139,85,184,139,69,236,137,66,20,72,131,125,216, 0,15,132,131,254,255,255,72,139,77,184,72,131,193,52,72,139,85,184,72,131,194,40,72,139,117,184,72,131,198,24,72,139,125,216,232,28,69,4,0,72,137,194,72,139,69,184,72,137,80,104,72,139,69,184,72,139,120,24,232,80,68,4,0,137,194,72,139,69,184,137,80,48, 72,139,69,184,139,64,48,133,192,117,17,72,141,61,160,78,6,0,184,0,0,0,0,232,82,16,5,0,72,139,69,184,72,139,56,232,177,21,0,0,133,192,15,132,44,1,0,0,72,139,69,184,139,64,48,131,248,1,116,14,72,139,69,184,139,64,48,255,200,137,69,176,235,7,199,69,176, 1,0,0,0,139,69,176,137,69,232,72,139,69,184,139,64,16,131,248,1,116,14,72,139,69,184,139,64,16,255,200,137,69,180,235,7,199,69,180,1,0,0,0,139,93,180,137,93,228,72,139,85,184,72,131,194,84,72,139,77,184,72,131,193,80,72,139,117,184,72,131,198,76,72,139, 125,184,72,131,199,72,72,139,69,184,76,139,16,72,139,69,184,72,139,64,24,73,137,209,73,137,200,72,137,241,72,137,250,76,137,214,72,137,199,232,102,59,0,0,72,139,69,184,139,72,56,72,139,69,184,139,80,64,72,139,69,184,139,64,56,137,211,41,195,137,216,141, 80,249,72,139,69,184,139,64,20,15,175,208,137,208,193,250,31,247,125,228,141,4,1,141,80,3,72,139,69,184,137,80,88,72,139,69,184,139,80,68,72,139,69,184,137,80,92,72,139,69,184,139,72,72,72,139,69,184,139,80,80,72,139,69,184,139,64,72,137,211,41,195,137, 216,141,80,249,72,139,69,184,139,64,52,15,175,208,137,208,193,250,31,247,125,232,141,4,1,141,80,3,72,139,69,184,137,80,96,72,139,69,184,139,80,76,72,139,69,184,137,80,100,235,106,72,139,69,184,199,64,84,0,0,0,0,72,139,69,184,139,80,84,72,139,69,184,137, 80,80,72,139,69,184,139,80,80,72,139,69,184,137,80,76,72,139,69,184,139,80,76,72,139,69,184,137,80,72,72,139,69,184,199,64,100,0,0,0,0,72,139,69,184,139,80,100,72,139,69,184,137,80,96,72,139,69,184,139,80,96,72,139,69,184,137,80,92,72,139,69,184,139, 80,92,72,139,69,184,137,80,88,72,139,69,216,72,137,69,168,72,139,69,168,72,131,196,88,91,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,199,64,104,0,0,0,0,72,139,69,248,139,80,16,72,139,69,248,137,80,112,201,195,85,72,137,229,72,131,236,16,72, 137,125,248,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,193,255,255,255,255,72,139,69,248,72,141,120,8,186,232,0,0,0,190,0,0,0,0,232,107,43,6,0,235,23,72,139,69,248,72,141,120,8,186,232,0,0,0,190,0,0,0,0,232,102,0,0,0,72,139,125,248,190,0, 0,0,0,232,146,224,2,0,72,137,194,72,139,69,248,72,137,80,56,139,5,215,170,8,0,255,192,137,5,207,170,8,0,139,21,201,170,8,0,72,139,69,248,137,80,64,191,0,0,0,0,232,109,44,4,0,72,137,194,72,139,69,248,72,137,144,144,0,0,0,191,0,0,0,0,232,85,44,4,0,72,137, 194,72,139,69,248,72,137,144,176,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,139,117,244,72,139,125,248,232,194,42,6,0,201,195,85,72,137,229,72,131,196,128,72,137,125,184, 72,137,117,176,137,85,172,72,137,77,160,72,141,5,94,245,8,0,72,139,56,232,226,72,4,0,72,137,69,224,232,118,245,255,255,72,137,69,216,72,141,5,154,159,8,0,72,137,69,208,199,69,252,0,0,0,0,199,69,248,194,1,0,0,199,69,244,44,1,0,0,199,69,240,0,0,0,0,199, 69,236,22,0,0,0,72,131,125,216,0,116,15,72,139,69,216,139,128,208,0,0,0,137,69,140,235,12,72,141,5,222,247,8,0,139,0,137,69,140,139,69,140,137,69,232,72,139,125,224,232,140,254,255,255,72,139,85,224,15,182,66,46,131,224,252,131,200,1,136,66,46,72,131, 125,216,0,117,9,72,139,125,224,232,201,243,255,255,131,125,172,5,117,102,72,139,85,160,139,117,172,191,0,0,0,0,232,149,147,3,0,137,69,240,72,139,85,160,139,117,172,191,1,0,0,0,232,129,147,3,0,137,69,236,72,139,85,160,139,117,172,191,2,0,0,0,232,109,147, 3,0,137,69,248,72,139,85,160,139,117,172,191,3,0,0,0,232,89,147,3,0,137,69,244,72,139,85,160,139,117,172,191,4,0,0,0,232,69,147,3,0,137,69,232,235,127,131,125,172,6,117,121,72,139,85,160,139,117,172,191,0,0,0,0,232,41,147,3,0,137,69,240,72,139,85,160, 139,117,172,191,1,0,0,0,232,21,147,3,0,137,69,236,72,139,85,160,139,117,172,191,2,0,0,0,232,1,147,3,0,137,69,248,72,139,85,160,139,117,172,191,3,0,0,0,232,237,146,3,0,137,69,244,72,139,85,160,139,117,172,191,4,0,0,0,232,1,147,3,0,72,137,69,208,72,139, 85,160,139,117,172,191,5,0,0,0,232,196,146,3,0,137,69,252,72,139,5,159,154,8,0,72,139,0,15,182,0,132,192,15,132,181,0,0,0,191,40,0,0,0,232,92,42,4,0,72,137,194,72,139,69,224,72,137,144,224,0,0,0,72,139,69,224,72,139,128,224,0,0,0,72,137,69,200,72,139, 5,147,196,8,0,72,133,192,117,17,191,0,0,0,0,232,41,42,4,0,72,137,5,125,196,8,0,72,139,21,70,154,8,0,72,139,69,200,72,137,16,139,21,97,196,8,0,72,139,69,200,137,80,8,72,139,21,91,196,8,0,72,139,69,200,72,137,80,16,139,21,65,168,8,0,72,139,69,200,137,80, 24,141,66,1,137,5,49,168,8,0,72,139,69,200,72,199,64,32,0,0,0,0,72,141,5,138,157,8,0,72,137,5,243,153,8,0,199,5,17,196,8,0,0,0,0,0,72,199,5,14,196,8,0,0,0,0,0,235,15,72,139,69,224,72,199,128,224,0,0,0,0,0,0,0,131,125,236,21,127,7,199,69,236,22,0,0,0, 131,125,240,0,121,7,199,69,240,0,0,0,0,72,139,85,224,184,0,0,0,0,137,66,88,72,139,85,224,184,0,0,0,0,137,66,92,72,139,85,224,184,0,0,128,63,137,66,96,72,139,85,224,184,0,0,128,63,137,66,100,139,69,244,68,139,69,236,65,1,192,139,69,248,139,77,240,1,193, 139,85,236,139,117,240,72,139,125,224,232,121,8,0,0,72,139,85,224,72,139,69,216,72,137,66,72,72,139,69,208,72,139,0,15,182,0,132,192,117,51,72,139,5,57,153,8,0,72,133,192,117,18,72,141,61,193,72,6,0,232,230,14,4,0,72,137,69,152,235,11,72,139,21,27,153, 8,0,72,137,85,152,72,139,69,152,72,137,69,144,235,8,72,139,85,208,72,137,85,144,72,139,69,224,72,139,85,144,72,137,144,200,0,0,0,72,139,69,224,72,139,128,200,0,0,0,72,139,56,72,141,53,117,72,6,0,232,154,41,6,0,133,192,116,28,72,139,69,224,72,139,184, 200,0,0,0,232,91,9,0,0,72,137,198,72,139,125,224,232,71,73,4,0,72,139,85,224,15,182,130,232,0,0,0,131,200,8,136,130,232,0,0,0,72,139,85,224,15,182,130,232,0,0,0,131,224,127,136,130,232,0,0,0,131,125,252,0,15,132,156,0,0,0,72,141,61,35,72,6,0,232,60,14, 4,0,72,139,64,8,72,133,192,15,132,131,0,0,0,72,141,61,10,72,6,0,232,35,14,4,0,72,139,64,8,72,139,16,72,141,5,151,241,8,0,72,139,0,72,57,194,117,97,72,141,61,232,71,6,0,232,1,14,4,0,72,139,64,8,72,137,69,192,235,12,72,139,69,192,72,139,64,72,72,137,69, 192,72,131,125,192,0,116,16,72,139,69,192,72,139,128,224,0,0,0,72,133,192,116,221,72,131,125,192,0,116,33,72,139,125,192,232,252,28,0,0,133,192,116,20,72,139,69,192,72,139,64,72,72,133,192,116,7,199,69,252,0,0,0,0,139,69,252,131,224,1,72,139,77,224,131, 224,1,137,194,193,226,4,15,182,129,232,0,0,0,131,224,239,9,208,136,129,232,0,0,0,72,139,69,224,72,139,128,200,0,0,0,72,139,56,186,8,0,0,0,72,141,53,20,102,6,0,232,123,40,6,0,133,192,15,148,192,72,139,77,224,131,224,1,137,194,193,226,5,15,182,129,232, 0,0,0,131,224,223,9,208,136,129,232,0,0,0,139,125,232,232,197,191,4,0,137,194,72,139,69,224,137,144,208,0,0,0,72,139,125,224,232,179,75,4,0,72,139,69,224,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139, 85,224,139,117,236,191,0,0,0,0,232,9,143,3,0,72,139,69,248,243,15,17,64,88,72,139,85,224,139,117,236,191,1,0,0,0,232,239,142,3,0,72,139,69,248,243,15,17,64,92,72,139,85,224,139,117,236,191,2,0,0,0,232,213,142,3,0,72,139,69,248,243,15,17,64,96,72,139, 85,224,139,117,236,191,3,0,0,0,232,187,142,3,0,72,139,69,248,243,15,17,64,100,72,139,85,224,139,117,236,191,4,0,0,0,232,248,142,3,0,137,194,72,139,69,248,137,80,80,72,139,85,224,139,117,236,191,5,0,0,0,232,222,142,3,0,137,194,72,139,69,248,137,80,84, 131,125,236,7,127,35,72,139,85,224,139,117,236,191,6,0,0,0,232,190,142,3,0,137,198,72,139,125,248,186,1,0,0,0,232,119,91,0,0,235,85,72,139,85,224,139,117,236,191,7,0,0,0,232,155,142,3,0,137,194,72,139,69,248,137,80,120,72,139,85,224,139,117,236,191,8, 0,0,0,232,129,142,3,0,137,194,72,139,69,248,137,80,124,72,139,85,224,139,117,236,191,6,0,0,0,232,103,142,3,0,137,198,72,139,125,248,186,0,0,0,0,232,32,91,0,0,201,195,85,72,137,229,72,129,236,144,0,0,0,72,137,125,168,72,137,117,160,243,15,17,69,156,243, 15,17,77,152,243,15,17,85,148,243,15,17,93,144,243,15,17,101,140,243,15,17,109,136,243,15,17,117,132,243,15,17,125,128,72,139,5,160,144,8,0,72,139,16,72,137,85,248,49,210,199,69,200,0,0,0,0,72,141,5,25,239,8,0,72,139,56,232,157,66,4,0,72,137,69,176,72, 139,125,176,232,166,248,255,255,72,139,85,176,15,182,66,46,131,224,252,131,200,1,136,66,46,72,139,69,160,72,139,0,15,182,0,132,192,117,76,139,5,199,191,8,0,255,192,137,5,191,191,8,0,139,5,185,191,8,0,72,141,125,208,65,137,192,72,141,13,39,69,6,0,186, 40,0,0,0,190,0,0,0,0,184,0,0,0,0,232,255,35,6,0,72,141,125,208,232,36,11,4,0,72,137,69,160,199,69,200,1,0,0,0,235,72,72,139,69,160,72,139,0,72,137,69,184,72,139,125,184,186,5,0,0,0,72,141,53,234,68,6,0,232,9,38,6,0,133,192,117,36,72,139,125,184,72,131, 199,5,232,6,36,6,0,137,69,204,139,5,71,191,8,0,57,69,204,126,9,139,69,204,137,5,57,191,8,0,243,15,16,77,128,243,15,16,69,136,15,46,193,119,2,235,36,139,69,144,137,69,196,139,69,152,137,69,144,139,69,196,137,69,152,139,69,128,137,69,196,139,69,136,137, 69,128,139,69,196,137,69,136,243,15,16,69,156,15,46,69,148,122,2,116,15,243,15,16,69,152,15,46,69,144,122,2,116,2,235,32,184,0,0,0,0,137,69,156,184,0,0,200,66,137,69,148,184,0,0,128,63,137,69,152,184,0,0,128,191,137,69,144,243,15,16,69,140,15,46,69,132, 115,13,243,15,16,69,136,15,46,69,128,115,2,235,32,184,0,0,200,66,137,69,140,184,0,0,160,65,137,69,136,184,0,0,150,67,137,69,132,184,0,0,32,67,137,69,128,72,139,85,176,72,139,69,160,72,137,130,200,0,0,0,72,139,85,176,139,69,156,137,66,88,72,139,85,176, 139,69,148,137,66,96,72,139,85,176,139,69,152,137,66,92,72,139,85,176,139,69,144,137,66,100,243,15,16,69,140,243,15,44,192,137,194,72,139,69,176,102,137,80,40,243,15,16,69,136,243,15,44,192,137,194,72,139,69,176,102,137,80,42,243,15,16,69,132,243,15, 92,69,140,243,15,44,208,72,139,69,176,137,80,80,243,15,16,69,128,243,15,92,69,136,243,15,44,208,72,139,69,176,137,80,84,232,69,237,255,255,72,133,192,116,19,232,59,237,255,255,139,128,208,0,0,0,137,133,124,255,255,255,235,15,72,141,5,221,239,8,0,139, 0,137,133,124,255,255,255,72,139,69,176,139,141,124,255,255,255,137,136,208,0,0,0,72,139,69,176,199,64,108,0,0,0,0,72,139,69,176,139,80,108,72,139,69,176,137,80,104,72,139,69,176,199,64,112,194,1,0,0,72,139,69,176,199,64,116,44,1,0,0,72,139,69,176,72, 139,128,200,0,0,0,72,139,56,72,141,53,245,66,6,0,232,26,36,6,0,133,192,116,28,72,139,69,176,72,139,184,200,0,0,0,232,219,3,0,0,72,137,198,72,139,125,176,232,199,67,4,0,72,139,85,176,72,139,69,168,72,137,66,72,72,139,85,176,15,182,130,233,0,0,0,131,200, 1,136,130,233,0,0,0,72,139,85,176,15,182,130,232,0,0,0,131,224,127,136,130,232,0,0,0,232,55,145,3,0,72,137,194,72,139,69,176,72,137,80,16,72,141,61,157,66,6,0,232,170,8,4,0,72,137,194,72,139,69,176,72,139,120,16,72,141,53,146,133,6,0,184,0,0,0,0,232, 101,158,3,0,131,125,200,0,117,9,72,139,125,176,232,9,71,4,0,72,139,117,176,72,139,125,168,232,168,178,0,0,72,139,69,176,72,139,21,89,141,8,0,72,139,77,248,72,51,10,116,5,232,49,33,6,0,201,195,85,72,137,229,72,131,236,96,72,137,125,200,72,137,117,192, 137,85,188,72,137,77,176,72,139,85,176,139,117,188,191,0,0,0,0,232,188,138,3,0,72,137,69,216,72,139,85,176,139,117,188,191,1,0,0,0,232,40,138,3,0,243,15,17,69,252,72,139,85,176,139,117,188,191,2,0,0,0,232,18,138,3,0,243,15,17,69,248,72,139,85,176,139, 117,188,191,3,0,0,0,232,252,137,3,0,243,15,17,69,244,72,139,85,176,139,117,188,191,4,0,0,0,232,230,137,3,0,243,15,17,69,240,72,139,85,176,139,117,188,191,5,0,0,0,232,208,137,3,0,243,15,17,69,236,72,139,85,176,139,117,188,191,6,0,0,0,232,186,137,3,0,243, 15,17,69,232,72,139,85,176,139,117,188,191,7,0,0,0,232,164,137,3,0,243,15,17,69,228,72,139,85,176,139,117,188,191,8,0,0,0,232,142,137,3,0,243,15,17,69,224,243,15,16,69,224,243,15,16,77,228,243,15,16,85,232,243,15,16,93,236,243,68,15,16,69,240,243,68, 15,16,77,244,243,68,15,16,85,248,139,69,252,72,139,117,216,72,139,125,200,15,40,248,15,40,241,15,40,234,15,40,227,65,15,40,216,65,15,40,209,65,15,40,202,137,69,172,243,15,16,69,172,232,53,251,255,255,201,195,85,72,137,229,72,137,125,248,72,139,69,248, 15,182,128,233,0,0,0,131,224,1,15,182,208,72,139,69,248,15,182,128,233,0,0,0,208,232,131,224,1,15,182,192,1,192,9,208,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,243,15,17,93,232,243,15,16,69, 232,243,15,44,192,243,15,16,69,236,243,15,44,200,243,15,16,69,240,243,15,44,208,243,15,16,69,244,243,15,44,240,72,139,125,248,65,137,192,232,2,0,0,0,201,195,85,72,137,229,83,72,131,236,72,72,137,125,200,137,117,196,137,85,192,137,77,188,68,137,69,184, 139,85,192,139,69,184,41,208,137,69,236,139,85,192,139,69,184,137,193,41,209,72,139,69,200,139,80,116,72,139,69,200,139,64,108,137,211,41,195,137,216,137,202,41,194,137,208,137,69,232,72,139,69,200,139,64,104,59,69,196,117,40,72,139,69,200,139,64,108, 59,69,192,117,28,72,139,69,200,139,64,112,59,69,188,117,16,72,139,69,200,139,64,116,59,69,184,15,132,237,0,0,0,72,139,85,200,139,69,196,137,66,104,72,139,85,200,139,69,192,137,66,108,72,139,85,200,139,69,188,137,66,112,72,139,85,200,139,69,184,137,66, 116,72,139,125,200,232,203,254,255,255,133,192,15,133,180,0,0,0,72,139,69,200,243,15,16,72,100,72,139,69,200,243,15,16,64,92,15,46,193,119,5,233,152,0,0,0,72,139,69,200,243,15,16,72,92,72,139,69,200,243,15,16,64,100,15,40,209,243,15,92,208,15,40,194, 243,15,17,69,228,243,15,42,69,236,243,15,89,69,228,72,139,69,200,243,15,17,64,92,72,139,69,200,243,15,16,64,92,243,15,92,69,228,72,139,69,200,243,15,17,64,100,72,139,69,200,72,139,64,48,72,137,69,216,235,47,72,139,125,216,232,150,54,4,0,72,133,192,116, 21,139,77,232,72,139,117,200,72,139,125,216,186,0,0,0,0,232,28,45,0,0,72,139,69,216,72,139,64,8,72,137,69,216,72,131,125,216,0,117,202,72,139,125,200,232,70,5,0,0,72,131,196,72,91,201,195,85,72,137,229,72,129,236,0,4,0,0,72,137,189,8,252,255,255,72,139, 5,4,138,8,0,72,139,16,72,137,85,248,49,210,72,141,189,16,252,255,255,186,4,0,0,0,72,141,53,236,62,6,0,232,7,31,6,0,72,139,133,8,252,255,255,72,139,48,72,141,189,16,252,255,255,186,232,3,0,0,232,180,29,6,0,72,141,189,16,252,255,255,232,202,4,4,0,72,139, 21,181,137,8,0,72,139,77,248,72,51,10,116,5,232,141,29,6,0,201,195,85,72,137,229,65,84,83,72,129,236,16,4,0,0,72,137,189,232,251,255,255,72,139,5,137,137,8,0,72,139,16,72,137,85,232,49,210,72,139,189,232,251,255,255,232,119,232,255,255,72,137,133,240, 251,255,255,72,139,133,240,251,255,255,139,64,8,133,192,15,132,202,0,0,0,72,141,189,0,252,255,255,186,3,0,0,0,72,141,53,80,62,6,0,232,103,30,6,0,199,133,252,251,255,255,0,0,0,0,235,118,72,141,189,0,252,255,255,232,69,31,6,0,72,61,239,1,0,0,119,120,131, 189,252,251,255,255,0,116,24,72,141,189,0,252,255,255,186,232,3,0,0,72,141,53,18,62,6,0,232,238,28,6,0,72,141,189,0,252,255,255,232,16,31,6,0,72,141,181,0,252,255,255,72,1,198,72,139,133,240,251,255,255,72,139,80,16,139,133,252,251,255,255,72,152,72, 193,224,4,72,141,60,2,186,244,1,0,0,232,188,134,3,0,255,133,252,251,255,255,72,139,133,240,251,255,255,139,64,8,59,133,252,251,255,255,15,143,116,255,255,255,72,141,189,0,252,255,255,186,232,3,0,0,72,141,53,165,61,6,0,232,127,28,6,0,235,7,198,133,0,252, 255,255,0,72,139,133,232,251,255,255,15,182,128,232,0,0,0,192,232,2,131,224,1,68,15,182,224,72,139,133,232,251,255,255,72,139,128,200,0,0,0,72,139,24,72,139,189,232,251,255,255,232,244,232,255,255,72,139,16,72,141,133,0,252,255,255,72,139,181,232,251, 255,255,69,137,225,73,137,192,72,137,217,72,141,61,68,61,6,0,184,0,0,0,0,232,194,151,4,0,72,139,5,35,136,8,0,72,139,85,232,72,51,16,116,5,232,251,27,6,0,72,129,196,16,4,0,0,91,65,92,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228, 72,139,125,232,232,225,19,0,0,72,137,69,248,72,141,5,124,155,8,0,139,0,133,192,117,99,243,15,16,69,228,243,72,15,44,192,137,194,72,139,69,248,15,182,128,232,0,0,0,192,232,2,131,224,1,15,182,192,57,194,116,63,243,15,16,69,228,243,15,44,192,72,139,77,248, 131,224,1,141,20,133,0,0,0,0,15,182,129,232,0,0,0,131,224,251,9,208,136,129,232,0,0,0,72,139,125,248,232,150,3,0,0,133,192,116,9,72,139,125,248,232,214,253,255,255,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,131,236,88,72,137,125,200,137,117, 196,131,125,196,0,15,132,202,0,0,0,72,139,69,200,139,88,124,72,139,69,200,68,139,96,120,72,139,69,200,139,80,124,72,139,69,200,139,64,84,68,141,44,2,72,139,69,200,68,139,112,120,72,139,69,200,139,80,124,72,139,69,200,139,64,84,68,141,60,2,72,139,69,200, 139,80,120,72,139,69,200,139,64,80,1,194,137,85,176,72,139,69,200,139,64,124,137,69,180,72,139,69,200,139,80,120,72,139,69,200,139,64,80,1,194,137,85,184,72,139,69,200,139,64,124,137,69,188,72,139,69,200,139,64,120,137,69,192,72,139,125,200,232,214,178, 0,0,72,137,198,137,92,36,40,68,137,100,36,32,68,137,108,36,24,68,137,116,36,16,68,137,124,36,8,139,69,176,137,4,36,68,139,77,180,68,139,69,184,139,77,188,139,85,192,72,141,61,225,59,6,0,184,0,0,0,0,232,39,150,4,0,235,29,72,139,125,200,232,139,178,0,0, 72,137,198,72,141,61,24,60,6,0,184,0,0,0,0,232,8,150,4,0,72,131,196,88,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,48,72,137,125,216,243,15,17,69,212,15,87,192,15,46,69,212,15,149,192,15,154,194,9,208,15,182,192,137,69,252,131,125,252, 0,15,132,27,1,0,0,72,139,125,216,232,54,2,0,0,133,192,15,133,64,1,0,0,72,139,69,216,15,182,128,232,0,0,0,131,224,1,132,192,117,34,72,141,61,185,59,6,0,184,0,0,0,0,232,160,252,4,0,72,139,125,216,243,15,16,5,41,169,6,0,232,102,76,0,0,72,139,69,216,72,139, 64,48,72,137,69,240,235,30,72,139,117,216,72,139,125,240,186,1,0,0,0,232,45,44,0,0,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,219,72,139,69,216,72,139,128,192,0,0,0,72,139,64,32,72,137,69,232,235,33,72,139,69,232,72,139,56,72,139,117, 216,186,1,0,0,0,232,198,40,0,0,72,139,69,232,72,139,64,8,72,137,69,232,72,131,125,232,0,117,216,72,139,85,216,15,182,130,232,0,0,0,131,200,2,136,130,232,0,0,0,72,139,125,216,232,161,3,0,0,72,139,69,216,15,182,128,233,0,0,0,131,224,1,132,192,116,32,72, 139,69,216,15,182,128,232,0,0,0,131,224,128,132,192,116,14,72,139,125,216,190,1,0,0,0,232,180,253,255,255,72,139,117,216,72,141,61,226,58,6,0,184,0,0,0,0,232,176,148,4,0,235,54,72,139,125,216,232,27,1,0,0,133,192,116,41,72,139,117,216,72,141,61,221,58, 6,0,184,0,0,0,0,232,140,148,4,0,72,139,85,216,15,182,130,232,0,0,0,131,224,253,136,130,232,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,215,0,0,0,133,192,116,29,72,139,125,248,15,87,192,232,88,254,255,255,72,139,125,248, 243,15,16,5,229,167,6,0,232,71,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,159,0,0,0,133,192,15,132,132,0,0,0,72,139,125,232,232,216,0,0,0,133,192,117,119,72,139,69,232,72,139,64,72,72,137,69,248,72,131,125,248,0, 117,19,72,141,61,85,58,6,0,184,0,0,0,0,232,251,250,4,0,235,81,72,139,125,232,72,139,117,248,186,0,0,0,0,232,165,42,0,0,72,139,69,232,72,139,128,192,0,0,0,72,133,192,116,9,72,139,125,232,232,17,74,0,0,72,139,85,232,15,182,130,232,0,0,0,131,200,1,136,130, 232,0,0,0,72,139,125,232,72,139,117,248,186,1,0,0,0,232,102,42,0,0,72,139,125,232,243,15,16,5,49,167,6,0,232,110,74,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15,182,128,232,0,0,0,131,224,8,132,192,117,32,72,139,125,248,232, 210,175,0,0,15,182,128,232,0,0,0,131,224,2,132,192,116,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,72,137,229,72,137,125,248,72,139,69,248,15,182,128,232,0,0,0,131,224,1,132,192,117,18,72,139,69,248,15,182,128,233,0,0,0,131,224, 1,132,192,117,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,72,137,229,72,131,236,16,72,137,125,248,235,36,72,139,69,248,72,139,64,72,72,137,69,248,72,131,125,248,0,117,17,72,141,61,13,56,6,0,184,0,0,0,0,232,216,249,4,0,72,139,69, 248,72,139,128,224,0,0,0,72,133,192,116,204,72,139,69,248,139,128,208,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,232,62,17,0,0,137,69,252,72,139,125,232,232,187,50,0,0,72,141,5,149,225,8,0,72,139,0,72,59,69,232,117,14,72,141,5,133,225,8, 0,72,199,0,0,0,0,0,72,141,5,135,225,8,0,72,139,0,72,59,69,232,117,14,72,141,5,119,225,8,0,72,199,0,0,0,0,0,72,139,125,232,232,50,47,0,0,235,13,72,139,117,240,72,139,125,232,232,145,169,0,0,72,139,69,232,72,139,64,48,72,137,69,240,72,131,125,240,0,117, 224,72,139,125,232,232,147,174,0,0,72,59,69,232,117,12,72,139,125,232,15,87,192,232,244,72,0,0,72,139,69,232,72,139,128,200,0,0,0,72,139,56,72,141,53,73,55,6,0,232,110,24,6,0,133,192,116,28,72,139,69,232,72,139,184,200,0,0,0,232,47,248,255,255,72,137, 198,72,139,125,232,232,31,57,4,0,72,139,69,232,72,139,128,224,0,0,0,72,133,192,116,64,72,139,69,232,72,139,128,224,0,0,0,139,64,8,72,152,72,137,198,72,193,230,4,72,139,69,232,72,139,128,224,0,0,0,72,139,120,16,232,38,25,4,0,72,139,69,232,72,139,184,224, 0,0,0,190,40,0,0,0,232,17,25,4,0,139,125,252,232,66,16,0,0,72,139,125,232,232,41,177,0,0,72,139,125,232,232,62,109,5,0,72,139,69,232,72,139,64,72,72,133,192,117,9,72,139,125,232,232,125,223,255,255,201,195,85,72,137,229,65,86,65,85,65,84,83,72,129,236, 160,0,0,0,72,137,189,88,255,255,255,72,139,181,88,255,255,255,72,141,189,96,255,255,255,232,160,229,255,255,235,123,72,139,125,128,232,143,40,4,0,72,137,194,72,141,5,197,137,8,0,72,57,194,117,12,199,133,84,255,255,255,2,0,0,0,235,10,199,133,84,255,255, 255,1,0,0,0,139,93,196,68,139,101,192,68,139,109,188,68,139,117,184,72,139,189,88,255,255,255,232,78,173,0,0,72,137,198,72,139,69,216,72,137,68,36,8,139,133,84,255,255,255,137,4,36,65,137,217,69,137,224,68,137,233,68,137,242,72,141,61,39,55,6,0,184,0, 0,0,0,232,173,144,4,0,72,141,189,96,255,255,255,232,97,229,255,255,72,137,69,216,72,131,125,216,0,15,133,106,255,255,255,72,129,196,160,0,0,0,91,65,92,65,93,65,94,201,195,85,72,137,229,65,86,65,85,65,84,83,72,129,236,160,0,0,0,72,137,189,88,255,255,255, 72,137,181,80,255,255,255,72,139,181,88,255,255,255,72,141,189,96,255,255,255,232,197,228,255,255,235,95,72,139,133,104,255,255,255,72,59,133,80,255,255,255,116,16,72,139,133,120,255,255,255,72,59,133,80,255,255,255,117,63,139,93,196,68,139,101,192,68, 139,109,188,68,139,117,184,72,139,189,88,255,255,255,232,129,172,0,0,72,137,198,72,139,85,216,137,28,36,69,137,225,69,137,232,68,137,241,72,141,61,176,54,6,0,184,0,0,0,0,232,238,143,4,0,72,141,189,96,255,255,255,232,162,228,255,255,72,137,69,216,72,131, 125,216,0,117,138,72,129,196,160,0,0,0,91,65,92,65,93,65,94,201,195,85,72,137,229,72,129,236,144,0,0,0,72,137,189,120,255,255,255,72,137,181,112,255,255,255,72,139,181,120,255,255,255,72,141,125,128,232,20,228,255,255,235,100,72,139,69,136,72,59,133, 112,255,255,255,116,13,72,139,69,152,72,59,133,112,255,255,255,117,74,72,139,133,120,255,255,255,72,139,128,192,0,0,0,72,133,192,116,36,72,139,189,120,255,255,255,232,210,171,0,0,72,137,198,72,139,85,248,72,141,61,175,56,6,0,184,0,0,0,0,232,75,143,4, 0,139,77,180,72,139,85,152,139,117,148,72,139,125,136,232,146,40,4,0,72,141,125,128,232,239,227,255,255,72,137,69,248,72,131,125,248,0,117,136,201,195,85,72,137,229,72,129,236,160,0,0,0,72,137,189,120,255,255,255,72,137,181,112,255,255,255,72,137,149, 104,255,255,255,72,137,141,96,255,255,255,72,139,181,120,255,255,255,72,141,125,128,232,97,227,255,255,235,126,72,139,69,136,72,59,133,112,255,255,255,117,13,72,139,69,160,72,59,133,96,255,255,255,116,26,72,139,69,152,72,59,133,112,255,255,255,117,87, 72,139,69,168,72,59,133,104,255,255,255,117,74,72,139,133,120,255,255,255,72,139,128,192,0,0,0,72,133,192,116,36,72,139,189,120,255,255,255,232,5,171,0,0,72,137,198,72,139,85,248,72,141,61,226,55,6,0,184,0,0,0,0,232,126,142,4,0,139,77,180,72,139,85,152, 139,117,148,72,139,125,136,232,197,39,4,0,72,141,125,128,232,34,227,255,255,72,137,69,248,72,131,125,248,0,15,133,106,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,117,4,122,2,235,17,72,139,125, 248,243,15,16,5,199,161,6,0,232,4,69,0,0,72,139,125,248,232,138,56,4,0,72,139,125,248,232,220,175,0,0,72,139,125,248,232,54,179,0,0,72,139,85,248,15,182,130,232,0,0,0,131,224,247,136,130,232,0,0,0,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72, 137,117,208,137,85,204,72,137,77,192,131,125,204,3,126,90,72,139,69,192,72,131,192,48,72,137,69,240,72,139,69,240,139,0,131,248,2,117,67,232,217,220,255,255,72,137,199,232,27,221,255,255,72,137,69,232,72,139,69,232,72,139,80,16,72,139,69,232,139,112, 8,72,139,69,240,72,139,120,8,185,1,0,0,0,232,160,153,3,0,72,137,198,72,139,125,216,186,0,0,0,0,232,207,224,255,255,72,139,69,216,15,182,128,232,0,0,0,192,232,4,131,224,1,15,182,192,152,243,15,42,192,72,139,125,216,232,7,255,255,255,72,141,61,169,50,6, 0,232,194,248,3,0,72,139,64,8,72,137,69,248,72,131,125,248,0,117,19,72,141,61,22,52,6,0,184,0,0,0,0,232,12,240,4,0,235,81,72,139,69,248,72,139,16,72,141,5,20,220,8,0,72,139,0,72,57,194,116,19,72,141,61,13,52,6,0,184,0,0,0,0,232,227,239,4,0,235,40,72, 139,69,248,72,137,69,224,72,139,85,216,72,139,69,224,72,137,66,72,72,139,117,216,72,139,77,192,139,85,204,72,139,125,224,232,83,105,2,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,141,61,228,51,6,0,232,53,248,3,0,72,137,69,240,72,139,69,232, 72,139,64,48,72,137,69,248,235,67,72,139,69,248,72,139,16,72,141,5,151,219,8,0,72,139,0,72,57,194,117,33,72,139,125,248,232,60,7,0,0,133,192,116,11,72,139,125,248,232,237,0,0,0,235,9,72,139,125,248,232,159,255,255,255,72,139,69,248,72,139,64,8,72,137, 69,248,72,131,125,248,0,117,182,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,141,61,110,51,6,0,232,191,247,3,0,72,137,69,240,72,139,69,232,72,139,64,48,72,137,69,248,235,56,72,139,69,248,72,139,16,72,141,5,33,219,8,0,72,139,0,72,57,194,117,22, 72,139,125,248,232,198,6,0,0,133,192,117,9,72,139,125,248,232,170,255,255,255,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,193,72,139,69,232,72,139,64,48,72,137,69,248,235,77,72,139,69,248,72,139,16,72,141,5,212,218,8,0,72,139,0,72,57, 194,116,43,72,139,125,248,72,139,117,240,232,123,8,4,0,72,133,192,116,25,72,139,125,248,72,139,117,240,72,141,21,235,36,6,0,184,0,0,0,0,232,109,3,4,0,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,172,201,195,85,72,137,229,72,131,236,32, 72,137,125,232,72,139,125,232,232,168,254,255,255,72,139,125,232,232,21,255,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,72,139,69,208,72,139,56,72,141,69,248,72,141,85,252,72,141,77,240,72,141,117,244,73,137, 193,73,137,208,72,137,242,72,141,53,99,50,6,0,184,0,0,0,0,232,147,17,6,0,131,248,3,126,54,72,139,69,200,72,139,56,72,141,69,232,72,141,85,236,72,141,77,224,72,141,117,228,73,137,193,73,137,208,72,137,242,72,141,53,45,50,6,0,184,0,0,0,0,232,93,17,6,0, 131,248,3,127,17,72,141,61,35,50,6,0,184,0,0,0,0,232,238,241,4,0,139,69,244,131,248,5,126,42,139,69,240,131,248,5,126,34,139,85,232,139,69,240,68,141,4,2,139,85,236,139,69,244,141,12,2,139,85,232,139,117,236,72,139,125,216,232,136,239,255,255,201,195, 85,72,137,229,72,131,236,16,72,137,125,248,72,139,85,248,72,141,5,240,219,8,0,72,137,16,72,139,125,248,232,253,52,4,0,72,139,85,248,15,182,130,232,0,0,0,131,224,247,136,130,232,0,0,0,72,139,125,248,232,59,172,0,0,72,139,125,248,232,149,175,0,0,201,195, 85,72,137,229,72,137,125,248,201,195,85,72,137,229,72,131,196,128,72,137,125,136,232,106,217,255,255,72,137,69,240,72,139,69,136,72,139,0,15,182,0,132,192,117,16,72,141,61,118,49,6,0,232,161,245,3,0,72,137,69,136,199,69,144,1,0,0,0,184,0,0,0,0,137,69, 152,72,141,69,144,72,131,192,16,199,0,1,0,0,0,72,141,69,144,72,141,80,16,184,0,0,176,65,137,66,8,72,141,69,144,72,131,192,32,199,0,1,0,0,0,72,141,69,144,72,141,80,32,184,0,0,225,67,137,66,8,72,141,69,144,72,131,192,48,199,0,1,0,0,0,72,141,69,144,72,141, 80,48,184,0,0,150,67,137,66,8,72,141,69,144,72,131,192,64,199,0,2,0,0,0,72,141,69,144,72,141,80,64,72,139,69,136,72,137,66,8,72,141,69,144,72,131,192,80,199,0,1,0,0,0,72,141,69,144,72,141,80,80,184,0,0,128,63,137,66,8,72,141,77,144,186,6,0,0,0,190,0, 0,0,0,191,0,0,0,0,232,230,226,255,255,72,137,69,248,72,139,85,248,72,139,69,240,72,137,66,72,72,139,125,248,243,15,16,5,238,156,6,0,232,248,250,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,243,15,17,77,240, 243,15,17,85,236,243,15,17,93,232,243,15,17,101,228,72,139,125,248,243,15,16,5,178,156,6,0,232,239,63,0,0,201,195,85,72,137,229,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,72,139,69,208,139,0,141,80,50,72,139,69,208,137,16, 72,139,69,200,139,0,141,80,50,72,139,69,200,137,16,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,131,125,220,0,116,38,72,139,69,208,139,0,131,248,2,117,27,72,139,69,208,72,139,112,8,72,139,125,232,186,0,0, 0,0,232,234,219,255,255,233,129,0,0,0,131,125,220,0,116,94,72,139,69,208,139,0,131,248,9,117,83,72,139,125,232,232,225,215,255,255,72,137,69,248,72,139,125,232,232,166,215,255,255,72,139,69,248,72,139,80,16,72,139,69,248,139,112,8,72,139,69,208,72,139, 120,8,185,1,0,0,0,232,93,148,3,0,72,137,198,72,139,125,232,186,0,0,0,0,232,140,219,255,255,72,139,125,232,232,130,215,255,255,235,29,72,141,61,113,45,6,0,232,150,243,3,0,72,137,198,72,139,125,232,186,0,0,0,0,232,100,219,255,255,201,195,85,72,137,229, 72,129,236,208,1,0,0,72,137,189,56,254,255,255,243,15,17,133,52,254,255,255,72,139,5,84,120,8,0,72,139,16,72,137,85,248,49,210,232,255,214,255,255,72,137,133,216,254,255,255,72,141,5,32,129,8,0,72,57,133,56,254,255,255,117,104,72,141,61,62,111,6,0,232, 49,243,3,0,72,137,133,208,254,255,255,139,5,146,167,8,0,137,194,255,192,137,5,136,167,8,0,72,139,133,208,254,255,255,72,139,0,72,141,189,240,254,255,255,65,137,209,73,137,192,72,141,13,221,46,6,0,186,255,0,0,0,190,0,0,0,0,184,0,0,0,0,232,186,11,6,0,72, 141,189,240,254,255,255,232,220,242,3,0,72,137,133,56,254,255,255,243,15,16,5,247,154,6,0,15,46,133,52,254,255,255,115,2,235,11,184,0,0,200,66,137,133,52,254,255,255,199,133,64,254,255,255,1,0,0,0,184,0,0,0,0,137,133,72,254,255,255,72,141,133,64,254, 255,255,72,131,192,16,199,0,1,0,0,0,72,141,133,64,254,255,255,72,141,80,16,184,0,0,176,65,137,66,8,72,141,133,64,254,255,255,72,131,192,32,199,0,1,0,0,0,72,141,133,64,254,255,255,72,141,80,32,184,0,0,22,68,137,66,8,72,141,133,64,254,255,255,72,131,192, 48,199,0,1,0,0,0,72,141,133,64,254,255,255,72,141,80,48,184,0,0,200,67,137,66,8,72,141,133,64,254,255,255,72,131,192,64,199,0,2,0,0,0,72,141,133,64,254,255,255,72,141,80,64,72,139,133,56,254,255,255,72,137,66,8,72,141,133,64,254,255,255,72,131,192,80, 199,0,1,0,0,0,72,141,133,64,254,255,255,72,141,80,80,184,0,0,0,0,137,66,8,72,141,141,64,254,255,255,186,6,0,0,0,190,0,0,0,0,191,0,0,0,0,232,214,223,255,255,72,137,133,224,254,255,255,72,139,149,224,254,255,255,72,139,133,216,254,255,255,72,137,66,72, 243,15,16,13,217,153,6,0,243,15,16,133,52,254,255,255,15,46,193,119,2,235,33,243,15,16,141,52,254,255,255,243,15,16,5,186,153,6,0,15,40,209,243,15,92,208,243,15,17,149,48,254,255,255,235,16,243,15,16,5,161,153,6,0,243,15,17,133,48,254,255,255,72,139, 189,224,254,255,255,243,15,16,61,90,155,6,0,243,15,16,53,86,155,6,0,243,15,16,45,82,155,6,0,243,15,16,37,66,155,6,0,243,15,16,29,106,153,6,0,243,15,16,149,48,254,255,255,243,15,16,13,66,154,6,0,15,87,192,72,141,53,0,127,8,0,232,49,229,255,255,72,137, 133,232,254,255,255,243,15,16,133,52,254,255,255,72,139,181,56,254,255,255,72,139,189,232,254,255,255,15,87,201,72,141,21,148,125,8,0,232,183,113,255,255,72,139,189,224,254,255,255,15,87,192,232,31,247,255,255,72,139,133,224,254,255,255,72,139,21,202, 117,8,0,72,139,77,248,72,51,10,116,5,232,162,9,6,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,128,224,0,0,0,72,133,192,15,149,192,15,182,192,201,195,85,72,137,229,83,72,131,236,56,72,137,125,216,72,139,69,216,72,139,64,16,72,133,192,116, 19,72,139,69,216,72,139,120,16,232,217,143,3,0,72,137,69,200,235,8,72,199,69,200,0,0,0,0,72,139,69,200,72,137,69,224,72,139,69,216,72,139,64,16,72,133,192,116,18,72,139,69,216,72,139,120,16,232,153,143,3,0,137,69,208,235,7,199,69,208,0,0,0,0,139,69,208, 137,69,236,131,125,236,0,116,45,72,139,69,224,139,0,131,248,2,117,34,72,139,69,224,72,139,88,8,72,141,61,41,108,6,0,232,28,240,3,0,72,57,195,117,9,199,69,212,1,0,0,0,235,7,199,69,212,0,0,0,0,139,69,212,137,69,232,139,69,232,72,131,196,56,91,201,195,85, 72,137,229,83,72,131,236,56,72,137,125,216,72,139,69,216,72,139,64,16,72,133,192,116,19,72,139,69,216,72,139,120,16,232,38,143,3,0,72,137,69,192,235,8,72,199,69,192,0,0,0,0,72,139,69,192,72,137,69,224,72,139,69,216,72,139,64,16,72,133,192,116,18,72,139, 69,216,72,139,120,16,232,230,142,3,0,137,69,204,235,7,199,69,204,0,0,0,0,139,69,204,137,69,236,131,125,236,0,116,45,72,139,69,224,139,0,131,248,2,117,34,72,139,69,224,72,139,88,8,72,141,61,92,41,6,0,232,105,239,3,0,72,57,195,117,9,199,69,208,1,0,0,0, 235,7,199,69,208,0,0,0,0,139,69,208,137,69,232,72,139,69,216,15,182,128,233,0,0,0,131,224,2,132,192,116,9,199,69,212,0,0,0,0,235,13,131,125,232,0,15,148,192,15,182,192,137,69,212,139,69,212,72,131,196,56,91,201,195,85,72,137,229,72,131,236,16,72,137, 125,248,72,139,69,248,72,139,64,72,72,133,192,116,13,72,139,125,248,232,50,254,255,255,133,192,116,10,72,139,69,248,72,137,69,240,235,17,72,139,69,248,72,139,120,72,232,195,255,255,255,72,137,69,240,72,139,69,240,201,195,85,72,137,229,83,72,129,236,200, 0,0,0,72,137,189,72,255,255,255,137,181,68,255,255,255,72,137,149,56,255,255,255,72,141,61,112,23,6,0,232,169,238,3,0,72,137,69,208,72,139,189,72,255,255,255,232,189,34,4,0,137,195,72,139,189,72,255,255,255,232,221,32,4,0,72,139,181,56,255,255,255,139, 189,68,255,255,255,137,217,137,194,232,219,44,255,255,72,137,69,200,72,139,133,72,255,255,255,72,139,64,48,72,137,69,224,235,63,72,139,125,224,232,133,31,4,0,72,137,69,216,72,131,125,216,0,116,31,72,139,125,224,72,139,117,208,232,125,255,3,0,72,133,192, 116,13,72,139,117,216,72,139,125,200,232,40,45,255,255,72,139,69,224,72,139,64,8,72,137,69,224,72,131,125,224,0,117,186,72,139,181,72,255,255,255,72,141,189,80,255,255,255,232,7,215,255,255,235,57,139,181,100,255,255,255,72,139,189,88,255,255,255,232, 202,34,4,0,133,192,116,35,139,69,132,72,139,141,104,255,255,255,139,149,100,255,255,255,72,139,181,88,255,255,255,72,139,125,200,65,137,192,232,229,45,255,255,72,141,189,80,255,255,255,232,10,215,255,255,72,137,69,232,72,131,125,232,0,117,176,72,139, 125,200,232,102,56,255,255,72,129,196,200,0,0,0,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,85,240,72,139,125,248,190,0,0,0,0,232,171,254,255,255,201,195,85,72,137,229,72,131,236,16,72,141,5,249,208,8,0,139,0,133,192,116, 7,232,26,43,255,255,235,12,72,141,61,69,41,6,0,232,103,133,4,0,232,73,43,255,255,72,141,5,228,208,8,0,72,139,0,72,137,69,248,235,34,72,139,125,248,186,0,0,0,0,190,1,0,0,0,232,89,254,255,255,72,139,69,248,72,139,128,216,0,0,0,72,137,69,248,72,131,125, 248,0,117,215,72,141,5,155,208,8,0,199,0,1,0,0,0,201,195,85,72,137,229,72,141,5,136,208,8,0,139,0,133,192,116,30,232,169,42,255,255,72,141,61,230,40,6,0,232,248,132,4,0,72,141,5,106,208,8,0,199,0,0,0,0,0,201,195,85,72,137,229,72,131,236,16,72,141,5,83, 208,8,0,139,0,137,69,252,131,125,252,0,116,5,232,176,255,255,255,139,69,252,201,195,85,72,137,229,72,131,236,16,137,125,252,131,125,252,0,116,5,232,32,255,255,255,201,195,85,72,137,229,72,141,5,27,208,8,0,139,0,133,192,116,5,232,8,255,255,255,201,195, 85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,131,125,220,0,116,92,72,139,85,208,139,117,220,191,0,0,0,0,232,187,110,3,0,137,69,252,131,125,252,0,116,30,72,141,5,208,207,8,0,139,0,133,192,117,17,191,1,0,0,0,232,211, 92,4,0,232,179,254,255,255,235,62,131,125,252,0,117,56,72,141,5,172,207,8,0,139,0,133,192,116,43,232,14,255,255,255,191,0,0,0,0,232,170,92,4,0,235,26,72,141,5,142,207,8,0,139,48,72,141,61,6,40,6,0,184,0,0,0,0,232,153,223,4,0,201,195,85,72,137,229,72, 137,125,216,72,137,117,208,72,139,69,208,72,139,0,72,137,69,248,72,199,69,232,0,0,0,0,72,139,69,248,72,139,64,48,72,137,69,240,235,33,72,139,69,240,72,139,0,72,59,69,216,117,8,72,139,69,240,72,137,69,232,72,139,69,240,72,139,64,8,72,137,69,240,72,131, 125,240,0,117,216,72,139,69,248,72,139,80,72,72,139,69,208,72,137,16,72,139,69,232,201,195,85,72,137,229,72,131,236,48,72,137,125,216,137,117,212,72,139,125,216,232,109,236,255,255,137,69,252,72,139,69,216,72,139,64,48,72,137,69,240,233,167,0,0,0,131, 125,252,0,116,115,72,139,69,240,72,139,16,72,141,5,7,208,8,0,72,139,0,72,57,194,117,93,131,125,212,1,117,33,72,139,125,216,232,46,236,255,255,133,192,116,108,72,139,117,216,72,139,125,240,186,1,0,0,0,232,107,22,0,0,235,88,131,125,212,2,117,33,72,139, 125,216,232,7,236,255,255,133,192,116,69,72,139,117,216,72,139,125,240,186,0,0,0,0,232,68,22,0,0,235,49,72,139,125,240,72,139,117,216,232,142,228,1,0,235,34,72,139,69,240,72,139,16,72,141,5,84,206,8,0,72,139,0,72,57,194,117,12,72,139,125,240,139,117, 212,232,57,255,255,255,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,15,133,78,255,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,137,117,228,72,141,5,41,206,8,0,72,139,0,72,137,69,248,235,27,139,117,228,72,139,125,248,232,245, 254,255,255,72,139,69,248,72,139,128,216,0,0,0,72,137,69,248,72,131,125,248,0,117,222,201,195,85,72,137,229,72,131,236,64,72,137,125,200,137,117,196,72,141,61,98,71,6,0,232,71,234,3,0,72,137,69,232,72,139,69,200,72,139,64,48,72,137,69,248,233,155,0,0, 0,72,139,125,248,232,87,27,4,0,72,137,69,224,72,131,125,224,0,116,123,72,139,69,224,15,182,64,46,131,224,3,60,1,117,108,72,139,69,224,72,139,120,16,232,72,137,3,0,131,248,1,126,90,72,139,69,224,72,139,120,16,232,70,137,3,0,72,137,69,216,72,139,69,216, 139,0,131,248,2,117,62,72,139,69,216,72,131,192,16,139,0,131,248,2,117,47,72,139,69,216,72,139,64,8,72,59,69,232,117,33,72,139,69,216,72,131,192,16,72,139,120,8,232,127,250,1,0,72,137,69,240,139,117,196,72,139,125,240,232,254,254,255,255,72,139,69,248, 72,139,64,8,72,137,69,248,72,131,125,248,0,15,133,90,255,255,255,139,117,196,191,0,0,0,0,232,218,254,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,72,139,61,229,157,8,0,232,108,32,4,0,72,137,69,248,72,139,69,248, 199,64,56,1,0,0,0,232,245,204,255,255,72,137,194,72,139,69,248,72,137,80,48,72,139,69,248,201,195,85,72,137,229,72,137,125,248,72,139,69,248,199,64,56,0,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,139,64,48, 72,137,69,248,233,142,0,0,0,72,139,69,248,72,139,16,72,139,5,119,157,8,0,72,57,194,117,76,72,141,61,203,34,6,0,232,228,232,3,0,72,139,125,224,72,137,194,72,141,53,208,101,6,0,184,0,0,0,0,232,163,126,3,0,72,139,69,248,72,139,112,16,72,139,125,224,232, 224,129,3,0,72,139,125,224,72,141,53,146,52,6,0,184,0,0,0,0,232,125,126,3,0,235,35,72,139,69,248,72,139,16,72,141,5,24,204,8,0,72,139,0,72,57,194,117,13,72,139,125,248,72,139,117,224,232,93,255,255,255,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125, 248,0,15,133,103,255,255,255,201,195,85,72,137,229,65,84,83,72,131,236,32,72,137,125,232,72,137,117,224,137,85,220,72,139,125,232,232,133,187,4,0,133,192,116,12,72,139,69,224,198,0,0,233,158,0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,40,72,199, 193,255,255,255,255,139,69,220,131,232,4,72,99,208,72,141,5,119,214,8,0,72,139,0,72,139,48,72,139,125,224,232,246,0,6,0,235,31,139,69,220,131,232,4,72,99,208,72,141,5,86,214,8,0,72,139,0,72,139,48,72,139,125,224,232,66,207,255,255,72,139,85,224,72,131, 234,3,139,69,220,72,152,72,141,4,2,198,0,0,72,199,192,255,255,255,255,72,131,248,255,116,25,72,199,194,255,255,255,255,72,139,125,224,72,141,53,16,99,6,0,232,139,0,6,0,235,16,72,139,125,224,72,141,53,254,98,6,0,232,38,207,255,255,72,199,192,255,255,255, 255,72,131,248,255,116,46,73,199,196,255,255,255,255,139,69,220,72,99,216,72,139,125,224,232,132,2,6,0,72,137,218,72,41,194,72,139,117,232,72,139,125,224,76,137,225,232,76,0,6,0,235,34,139,69,220,72,99,216,72,139,125,224,232,93,2,6,0,72,137,218,72,41, 194,72,139,117,232,72,139,125,224,232,239,206,255,255,72,139,85,224,72,255,202,139,69,220,72,152,72,141,4,2,198,0,0,72,131,196,32,91,65,92,201,195,85,72,137,229,72,129,236,48,4,0,0,72,137,189,232,251,255,255,72,137,181,224,251,255,255,137,149,220,251, 255,255,72,137,141,208,251,255,255,72,139,5,231,107,8,0,72,139,16,72,137,85,248,49,210,72,139,189,232,251,255,255,232,213,202,255,255,72,137,133,0,252,255,255,199,133,12,252,255,255,0,0,0,0,233,5,2,0,0,72,139,149,208,251,255,255,139,181,220,251,255,255, 139,189,12,252,255,255,232,63,105,3,0,72,139,0,72,137,133,248,251,255,255,139,133,12,252,255,255,255,192,59,133,220,251,255,255,125,98,72,139,189,248,251,255,255,72,141,53,112,129,6,0,232,133,1,6,0,133,192,117,75,139,189,12,252,255,255,255,199,72,139, 149,208,251,255,255,139,181,220,251,255,255,232,244,104,3,0,72,139,48,72,139,133,0,252,255,255,72,139,120,32,186,0,0,0,0,232,68,188,4,0,72,137,194,72,139,133,0,252,255,255,72,137,80,32,255,133,12,252,255,255,233,107,1,0,0,139,133,12,252,255,255,255,192, 59,133,220,251,255,255,125,122,72,139,189,248,251,255,255,72,141,53,55,34,6,0,232,19,1,6,0,133,192,117,99,139,189,12,252,255,255,255,199,72,139,149,208,251,255,255,139,181,220,251,255,255,232,130,104,3,0,72,139,56,72,141,181,16,252,255,255,186,232,3, 0,0,232,121,253,255,255,72,139,133,0,252,255,255,72,139,120,32,72,141,181,16,252,255,255,186,0,0,0,0,232,186,187,4,0,72,137,194,72,139,133,0,252,255,255,72,137,80,32,255,133,12,252,255,255,233,225,0,0,0,139,133,12,252,255,255,255,192,59,133,220,251,255, 255,125,75,72,139,189,248,251,255,255,72,141,53,182,33,6,0,232,137,0,6,0,133,192,117,52,139,189,12,252,255,255,255,199,72,139,149,208,251,255,255,139,181,220,251,255,255,232,248,103,3,0,72,139,48,72,139,189,232,251,255,255,232,46,149,4,0,255,133,12,252, 255,255,233,134,0,0,0,139,133,12,252,255,255,255,192,59,133,220,251,255,255,125,94,72,139,189,248,251,255,255,72,141,53,96,33,6,0,232,46,0,6,0,133,192,117,71,139,189,12,252,255,255,255,199,72,139,149,208,251,255,255,139,181,220,251,255,255,232,157,103, 3,0,72,139,56,72,141,181,16,252,255,255,186,232,3,0,0,232,148,252,255,255,72,141,181,16,252,255,255,191,0,0,0,0,232,189,148,4,0,255,133,12,252,255,255,235,24,72,139,181,248,251,255,255,72,141,61,15,33,6,0,184,0,0,0,0,232,115,216,4,0,255,133,12,252,255, 255,139,133,12,252,255,255,59,133,220,251,255,255,15,140,233,253,255,255,72,139,5,158,105,8,0,72,139,85,248,72,51,16,116,5,232,118,253,5,0,201,195,85,72,137,229,72,129,236,128,8,0,0,72,137,189,216,247,255,255,72,137,181,208,247,255,255,72,137,149,200, 247,255,255,72,137,141,192,247,255,255,76,137,133,184,247,255,255,68,137,141,180,247,255,255,72,139,5,82,105,8,0,72,139,16,72,137,85,248,49,210,199,133,28,248,255,255,255,255,255,255,139,149,180,247,255,255,72,139,141,184,247,255,255,72,139,181,192,247, 255,255,72,139,189,200,247,255,255,76,139,149,208,247,255,255,72,141,133,28,248,255,255,72,137,4,36,68,139,77,16,65,137,208,72,137,242,72,137,254,76,137,215,232,48,193,4,0,133,192,116,17,139,141,28,248,255,255,137,141,156,247,255,255,233,117,2,0,0,72, 139,133,216,247,255,255,72,137,133,8,248,255,255,233,219,1,0,0,72,139,133,8,248,255,255,72,139,128,224,0,0,0,72,133,192,15,132,178,1,0,0,72,139,133,216,247,255,255,72,137,133,248,247,255,255,235,18,72,139,133,248,247,255,255,72,139,64,72,72,137,133,248, 247,255,255,72,131,189,248,247,255,255,0,116,16,72,139,133,248,247,255,255,72,139,64,72,72,133,192,117,212,72,131,189,248,247,255,255,0,116,24,72,139,189,248,247,255,255,232,11,201,255,255,72,139,0,72,137,133,160,247,255,255,235,14,72,141,5,225,17,6, 0,72,137,133,160,247,255,255,72,139,149,160,247,255,255,72,137,149,240,247,255,255,72,139,133,8,248,255,255,72,139,128,224,0,0,0,72,139,64,32,72,137,133,0,248,255,255,233,12,1,0,0,72,139,133,0,248,255,255,72,139,120,8,232,96,182,4,0,133,192,116,9,198, 133,32,248,255,255,0,235,55,72,139,181,240,247,255,255,72,141,189,32,248,255,255,186,232,3,0,0,232,23,254,5,0,198,133,5,252,255,255,0,72,141,189,32,248,255,255,186,232,3,0,0,72,141,53,67,94,6,0,232,190,251,5,0,72,141,189,32,248,255,255,232,224,253,5, 0,72,137,194,184,232,3,0,0,72,137,193,72,41,209,72,137,202,72,139,133,0,248,255,255,72,139,112,8,72,141,189,32,248,255,255,185,232,3,0,0,232,145,251,5,0,198,133,7,252,255,255,0,139,149,180,247,255,255,72,139,141,184,247,255,255,72,139,181,192,247,255, 255,72,139,189,200,247,255,255,76,139,149,208,247,255,255,76,141,157,32,248,255,255,139,69,16,137,4,36,65,137,209,73,137,200,72,137,241,72,137,250,76,137,214,76,137,223,232,209,187,4,0,137,133,28,248,255,255,139,133,28,248,255,255,133,192,120,17,139, 133,28,248,255,255,137,133,156,247,255,255,233,184,0,0,0,72,139,133,0,248,255,255,72,139,0,72,137,133,0,248,255,255,72,131,189,0,248,255,255,0,15,133,230,254,255,255,72,139,133,8,248,255,255,72,139,64,72,72,137,133,8,248,255,255,72,131,189,8,248,255, 255,0,15,133,23,254,255,255,72,131,189,216,247,255,255,0,116,24,72,139,189,216,247,255,255,232,117,199,255,255,72,139,0,72,137,133,168,247,255,255,235,14,72,141,21,75,16,6,0,72,137,149,168,247,255,255,139,149,180,247,255,255,72,139,141,184,247,255,255, 72,139,181,192,247,255,255,72,139,189,200,247,255,255,76,139,149,208,247,255,255,139,69,16,137,4,36,65,137,209,73,137,200,72,137,241,72,137,250,76,137,214,72,139,189,168,247,255,255,232,230,193,4,0,137,133,156,247,255,255,139,133,156,247,255,255,72,139, 21,102,102,8,0,72,139,77,248,72,51,10,116,5,232,62,250,5,0,201,195,85,72,137,229,65,84,83,72,131,236,32,72,141,29,43,227,255,255,72,141,61,81,57,6,0,232,70,225,3,0,72,137,199,65,185,0,0,0,0,65,184,8,0,0,0,185,240,0,0,0,72,137,218,190,0,0,0,0,184,0,0, 0,0,232,128,207,3,0,72,137,194,72,141,5,152,196,8,0,72,137,16,72,141,61,18,57,6,0,232,7,225,3,0,72,137,194,72,141,53,3,207,255,255,72,141,5,224,198,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,123,214,3,0,72,141,61,51,29,6,0,232,210,224, 3,0,72,137,194,72,141,53,97,231,255,255,72,141,5,67,196,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,70,214,3,0,72,141,61,208,56,6,0,232,157,224,3,0,72,137,194,72,141,53,112,211,255,255,72,141,5,14,196,8,0,72,139,56,65,184,0,0,0,0,185,10, 0,0,0,184,0,0,0,0,232,17,214,3,0,72,141,61,111,41,6,0,232,104,224,3,0,72,137,194,72,141,5,60,77,2,0,72,137,198,72,141,5,214,195,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,217,213,3,0,72,141,61,51,57,6,0,232,48,224,3,0,72,137,194,72,141, 5,97,87,2,0,72,137,198,72,141,5,158,195,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,161,213,3,0,72,141,61,219,68,6,0,232,248,223,3,0,72,137,194,72,141,5,156,110,2,0,72,137,198,72,141,5,102,195,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184, 0,0,0,0,232,105,213,3,0,72,141,61,42,28,6,0,232,192,223,3,0,72,137,194,72,141,5,153,110,2,0,72,137,198,72,141,5,46,195,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,49,213,3,0,72,141,61,253,27,6,0,232,136,223,3,0,72,137,194,72,141,5,38,71, 2,0,72,137,198,72,141,5,246,194,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,249,212,3,0,72,141,61,67,25,6,0,232,80,223,3,0,72,137,194,72,141,53,239,214,255,255,72,141,5,193,194,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,196, 212,3,0,72,141,61,224,58,6,0,232,27,223,3,0,72,137,194,72,141,5,85,206,1,0,72,137,198,72,141,5,137,194,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,140,212,3,0,72,141,61,100,27,6,0,232,227,222,3,0,72,137,194,72,141,5,194,77,2,0,72,137,198, 72,141,5,81,194,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,84,212,3,0,72,141,61,48,27,6,0,232,171,222,3,0,72,137,194,72,141,5,187,77,2,0,72,137,198,72,141,5,25,194,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,28,212,3,0,72, 141,61,255,26,6,0,232,115,222,3,0,72,137,194,72,141,5,180,77,2,0,72,137,198,72,141,5,225,193,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,228,211,3,0,72,141,61,207,26,6,0,232,59,222,3,0,72,137,194,72,141,5,173,77,2,0,72,137,198,72,141,5, 169,193,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,172,211,3,0,72,141,61,159,26,6,0,232,3,222,3,0,72,137,194,72,141,5,166,77,2,0,72,137,198,72,141,5,113,193,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,116,211,3,0,72,141,61, 109,26,6,0,232,203,221,3,0,72,137,194,72,141,5,159,77,2,0,72,137,198,72,141,5,57,193,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,60,211,3,0,72,141,61,59,26,6,0,232,147,221,3,0,72,137,194,72,141,5,152,77,2,0,72,137,198,72,141,5,1,193,8,0, 72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,4,211,3,0,72,141,61,10,26,6,0,232,91,221,3,0,72,137,194,72,141,5,145,77,2,0,72,137,198,72,141,5,201,192,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,204,210,3,0,72,141,61,217,25,6,0,232, 35,221,3,0,72,137,194,72,141,5,138,77,2,0,72,137,198,72,141,5,145,192,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,148,210,3,0,72,141,61,169,25,6,0,232,235,220,3,0,72,137,194,72,141,5,131,77,2,0,72,137,198,72,141,5,89,192,8,0,72,139,56,65, 184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,92,210,3,0,72,141,61,119,25,6,0,232,179,220,3,0,72,137,194,72,141,5,124,77,2,0,72,137,198,72,141,5,33,192,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,36,210,3,0,72,141,61,50,89,6,0,232,123,220,3, 0,72,137,194,72,141,53,170,226,255,255,72,141,5,236,191,8,0,72,139,56,65,184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,239,209,3,0,72,141,61,245,23,6,0,232,70,220,3,0,72,137,194,72,141,53,50,229,255,255,72,141,5,183,191,8,0,72,139,56,185,0,0,0,0,184,0,0,0, 0,232,192,209,3,0,72,141,61,230,24,6,0,232,23,220,3,0,72,137,194,72,141,53,28,213,255,255,72,141,5,136,191,8,0,72,139,56,199,68,36,8,0,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,118,209,3,0,72,141,61,166,24,6,0,232, 205,219,3,0,72,137,194,72,141,53,217,228,255,255,72,141,5,62,191,8,0,72,139,56,65,185,0,0,0,0,65,184,2,0,0,0,185,2,0,0,0,184,0,0,0,0,232,59,209,3,0,72,141,61,116,24,6,0,232,146,219,3,0,72,137,194,72,141,5,244,38,0,0,72,137,198,72,141,5,0,191,8,0,72,139, 56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,3,209,3,0,72,141,61,217,25,6,0,232,90,219,3,0,72,137,194,72,141,53,156,219,255,255,72,141,5,203,190,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,212,208,3,0,72,141,61,19,24,6,0,232,43,219,3,0,72,137,194,72,141, 53,178,217,255,255,72,141,5,156,190,8,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,159,208,3,0,72,141,61,226,23,6,0,232,246,218,3,0,72,137,194,72,141,53,213,215,255,255,72,141,5,103,190,8,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232, 106,208,3,0,72,141,5,99,44,0,0,72,137,198,72,141,5,62,190,8,0,72,139,56,232,12,217,3,0,72,141,61,239,129,6,0,232,168,218,3,0,72,137,194,72,141,5,214,137,0,0,72,137,198,72,141,5,22,190,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,31,208,3,0,72,141,61,101, 66,6,0,232,118,218,3,0,72,137,198,72,141,61,156,228,255,255,185,0,0,0,0,186,7,0,0,0,184,0,0,0,0,232,231,205,3,0,72,141,61,63,23,6,0,232,76,218,3,0,72,137,198,72,141,61,114,228,255,255,185,0,0,0,0,186,7,0,0,0,184,0,0,0,0,232,189,205,3,0,72,141,61,145, 19,6,0,232,34,218,3,0,72,137,194,72,141,53,95,229,255,255,72,141,5,147,189,8,0,72,139,56,199,68,36,16,0,0,0,0,199,68,36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,121,207,3,0,72,141,61,151,2,6,0,232,208,217,3, 0,72,137,194,72,141,53,36,236,255,255,72,141,5,65,189,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,74,207,3,0,72,141,61,62,13,6,0,232,161,217,3,0,72,137,194,72,141,53,78,229,255,255,72,141,5,18,189,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232, 21,207,3,0,72,141,61,121,85,6,0,232,108,217,3,0,72,137,198,72,141,61,223,229,255,255,65,184,0,0,0,0,185,6,0,0,0,186,7,0,0,0,184,0,0,0,0,232,215,204,3,0,72,141,29,8,240,255,255,76,141,37,189,239,255,255,72,141,61,43,22,6,0,232,46,217,3,0,72,137,199,199, 4,36,0,0,0,0,65,185,10,0,0,0,65,184,8,0,0,0,185,64,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,99,199,3,0,72,137,5,126,141,8,0,72,141,61,237,21,6,0,232,240,216,3,0,72,137,194,72,141,53,196,241,255,255,72,141,5,97,188,8,0,72,139,56,65,184,0,0,0,0,185, 10,0,0,0,184,0,0,0,0,232,100,206,3,0,232,63,187,0,0,232,3,125,0,0,232,87,166,1,0,72,131,196,32,91,65,92,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224,76,137,69,216,76,137,77,208,72,139,69,248,72,139,0,72, 139,64,104,72,133,192,116,75,72,139,69,248,72,139,0,72,139,64,104,72,139,0,72,133,192,116,56,72,139,69,248,72,139,0,72,139,64,104,76,139,24,72,139,69,208,72,139,85,216,72,139,77,224,72,139,117,232,72,139,125,240,76,139,85,248,73,137,193,73,137,208,72, 137,242,72,137,254,76,137,215,65,255,211,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,137,77,232,72,139,69,248,72,139,0,72,139,64,104,72,133,192,116,51,72,139,69,248,72,139,0,72,139,64,104,72,139,64,8,72,133,192,116,31, 72,139,69,248,72,139,0,72,139,64,104,72,139,64,8,139,77,232,139,85,236,72,139,117,240,72,139,125,248,255,208,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,139,69,248,72,139,0,72,139,64,104,72,133,192,116,48,72,139,69, 248,72,139,0,72,139,64,104,72,139,64,16,72,133,192,116,28,72,139,69,248,72,139,0,72,139,64,104,72,139,64,16,139,85,236,72,139,117,240,72,139,125,248,255,208,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,139,69,248,72, 139,0,72,139,64,104,72,133,192,116,48,72,139,69,248,72,139,0,72,139,64,104,72,139,64,24,72,133,192,116,28,72,139,69,248,72,139,0,72,139,64,104,72,139,64,24,139,85,236,72,139,117,240,72,139,125,248,255,208,201,195,85,72,137,229,72,131,236,16,72,137,125, 248,72,137,117,240,72,139,69,248,72,139,0,72,139,64,104,72,133,192,116,45,72,139,69,248,72,139,0,72,139,64,104,72,139,64,32,72,133,192,116,25,72,139,69,248,72,139,0,72,139,64,104,72,139,64,32,72,139,117,240,72,139,125,248,255,208,201,195,85,72,137,229, 72,131,236,80,72,137,125,200,72,137,117,192,72,139,69,192,15,182,128,232,0,0,0,131,224,1,132,192,15,133,71,1,0,0,72,139,69,192,15,182,128,233,0,0,0,131,224,1,132,192,15,132,49,1,0,0,72,139,69,192,15,182,128,232,0,0,0,131,224,128,132,192,15,132,27,1,0, 0,72,139,69,192,72,139,64,72,72,133,192,15,132,10,1,0,0,72,139,69,200,72,139,16,72,141,5,47,187,8,0,72,139,0,72,57,194,15,132,240,0,0,0,72,139,69,192,72,139,120,72,76,139,85,192,72,141,69,240,72,141,85,244,72,141,77,248,72,141,117,252,73,137,193,73,137, 208,72,137,242,72,137,254,76,137,215,232,130,253,255,255,139,85,252,139,69,244,57,194,126,18,139,69,252,137,69,220,139,69,244,137,69,252,139,69,220,137,69,244,139,85,248,139,69,240,57,194,126,18,139,69,248,137,69,220,139,69,240,137,69,248,139,69,220, 137,69,240,72,141,69,224,72,141,85,228,72,141,77,232,72,141,117,236,72,139,125,192,76,139,85,200,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,30,253,255,255,139,85,236,139,69,252,57,194,124,70,139,85,236,139,69,244,57,194,127,60,139,85, 228,139,69,252,57,194,124,50,139,85,228,139,69,244,57,194,127,40,139,85,232,139,69,248,57,194,124,30,139,85,232,139,69,240,57,194,127,20,139,85,224,139,69,248,57,194,124,10,139,85,224,139,69,240,57,194,126,12,199,69,184,0,0,0,0,233,191,0,0,0,72,139,125, 200,232,150,6,4,0,72,137,69,208,72,131,125,208,0,15,132,160,0,0,0,72,139,69,192,15,182,128,232,0,0,0,131,224,1,132,192,117,118,72,139,69,208,72,139,16,72,141,5,187,184,8,0,72,139,0,72,57,194,116,23,72,139,69,208,72,139,0,72,139,80,104,72,141,5,9,97,8, 0,72,57,194,117,73,72,139,69,208,72,139,16,72,141,5,142,184,8,0,72,139,0,72,57,194,117,18,72,139,69,208,15,182,128,233,0,0,0,131,224,1,132,192,117,33,72,139,69,192,15,182,128,232,0,0,0,131,224,128,132,192,116,24,72,139,69,208,15,182,64,46,131,224,3,132, 192,117,9,199,69,188,1,0,0,0,235,7,199,69,188,0,0,0,0,139,69,188,137,69,184,235,7,199,69,184,1,0,0,0,139,69,184,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,139,69,248,72,139,0,72,139,64,104,72,133,192,116,65,72,139, 69,248,72,139,0,72,139,64,104,72,139,64,40,72,133,192,116,45,72,139,117,240,72,139,125,248,232,139,253,255,255,133,192,116,28,72,139,69,248,72,139,0,72,139,64,104,72,139,64,40,139,85,236,72,139,117,240,72,139,125,248,255,208,201,195,85,72,137,229,83, 72,131,236,72,72,137,125,232,72,137,117,224,137,85,220,137,77,216,68,137,69,212,68,137,77,208,72,139,69,232,72,139,0,72,139,64,104,72,133,192,116,91,72,139,69,232,72,139,0,72,139,64,104,72,139,64,48,72,133,192,116,71,72,139,69,232,72,139,0,72,139,64, 104,72,139,88,48,139,85,208,139,77,212,139,117,216,139,125,220,76,139,85,224,76,139,93,232,139,69,24,137,68,36,8,139,69,16,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,76,137,223,255,211,137,69,204,235,7,199,69,204,0,0,0,0,139,69,204,72, 131,196,72,91,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,137,77,232,68,137,69,228,68,137,77,224,72,139,69,248,72,139,128,192,0,0,0,72,133,192,15,132,165,0,0,0,72,139,125,248,232,222,4,0,0,72,139,69,248,72,139,144,192, 0,0,0,15,182,130,136,0,0,0,131,200,32,136,130,136,0,0,0,72,139,69,248,72,139,144,192,0,0,0,139,69,236,137,66,112,72,139,69,248,72,139,144,192,0,0,0,139,69,232,137,66,116,72,139,69,248,72,139,144,192,0,0,0,139,69,228,137,66,120,72,139,69,248,72,139,144, 192,0,0,0,139,69,224,137,66,124,72,139,69,248,72,139,144,192,0,0,0,72,139,69,240,72,137,130,128,0,0,0,72,139,69,248,72,139,128,192,0,0,0,72,139,144,128,0,0,0,72,139,117,248,72,141,61,225,15,6,0,184,0,0,0,0,232,95,103,4,0,201,195,85,72,137,229,72,131, 236,16,72,137,125,248,72,139,69,248,72,139,128,192,0,0,0,72,133,192,116,66,72,139,69,248,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,224,223,136,130,136,0,0,0,72,139,69,248,72,139,128,192,0,0,0,72,139,144,128,0,0,0,72,139,117,248,72,141,61,169,15,6, 0,184,0,0,0,0,232,255,102,4,0,201,195,85,72,137,229,72,137,125,232,72,137,117,224,72,139,69,232,72,139,128,192,0,0,0,72,133,192,116,62,72,139,69,232,72,139,128,192,0,0,0,72,139,64,32,72,137,69,248,235,34,72,139,69,248,72,139,0,72,59,69,224,117,9,199, 69,220,1,0,0,0,235,26,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,215,199,69,220,0,0,0,0,139,69,220,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,139,128,192,0,0,0,72,133,192,15,132,153,0,0,0,191, 16,0,0,0,232,254,235,3,0,72,137,69,248,72,139,69,232,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,32,132,192,116,9,72,139,125,232,232,230,254,255,255,72,139,117,224,72,139,125,232,232,57,255,255,255,133,192,116,17,72,141,61,243,14,6,0,184,0,0,0, 0,232,44,205,4,0,72,139,69,232,72,139,128,192,0,0,0,72,139,80,32,72,139,69,248,72,137,80,8,72,139,85,248,72,139,69,224,72,137,2,72,139,69,232,72,139,144,192,0,0,0,72,139,69,248,72,137,66,32,72,139,117,232,72,139,125,224,186,1,0,0,0,232,121,249,255,255, 201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,224,72,139,16,72,141,5,178,180,8,0,72,139,0,72,57,194,117,63,72,139,69,224,72,137,69,248,72,139,69,248,72,139,64,48,72,137,69,240,235,25,72,139,117,240,72,139,125,248,232,183, 255,255,255,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,224,72,139,125,248,232,86,2,0,0,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,137,117,192,199,69,252,0,0,0,0,199,5,80,133,8,0,1,0,0,0,72,139,69,200,72,139,128,192,0,0,0, 72,133,192,15,132,19,2,0,0,72,199,69,224,0,0,0,0,72,139,117,192,72,139,125,200,232,42,254,255,255,133,192,117,17,72,141,61,241,13,6,0,184,0,0,0,0,232,29,204,4,0,72,139,69,200,72,139,128,192,0,0,0,72,139,64,40,72,133,192,15,132,156,0,0,0,72,139,117,192, 72,139,125,200,232,235,176,1,0,72,137,69,216,72,139,69,200,72,139,128,192,0,0,0,72,139,64,40,72,59,69,216,117,81,72,139,69,200,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,16,132,192,116,38,72,139,69,216,72,137,69,224,72,139,125,200,232,25,129,0, 0,72,137,199,232,4,88,0,0,72,139,117,192,72,139,125,200,232,189,254,255,255,72,139,117,200,72,139,125,192,186,0,0,0,0,232,119,248,255,255,72,141,61,180,248,5,0,232,237,207,3,0,72,137,198,72,139,125,192,232,31,225,3,0,72,133,192,116,8,232,255,226,255, 255,137,69,252,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,137,69,240,72,139,69,240,72,139,0,72,59,69,192,117,71,72,139,69,200,72,139,144,192,0,0,0,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,139,64,8,72,137,66,32,72,139,69,240,72,139,56, 72,139,117,200,186,0,0,0,0,232,166,247,255,255,72,139,125,240,190,16,0,0,0,232,130,235,3,0,235,114,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,137,69,240,235,74,72,139,69,232,72,139,0,72,59,69,192,117,53,72,139,69,232,72,139,80,8,72,139,69,240, 72,137,80,8,72,139,69,232,72,139,56,72,139,117,200,186,0,0,0,0,232,79,247,255,255,72,139,125,232,190,16,0,0,0,232,43,235,3,0,235,27,72,139,69,232,72,137,69,240,72,139,69,240,72,139,64,8,72,137,69,232,72,131,125,232,0,117,163,72,131,125,224,0,116,69,72, 141,85,248,72,141,117,208,72,139,125,224,232,50,160,1,0,139,77,248,72,139,85,208,72,139,125,192,72,139,117,200,232,6,115,2,0,72,139,117,192,72,139,125,200,232,202,210,255,255,72,139,69,200,72,139,128,192,0,0,0,72,199,64,40,0,0,0,0,131,125,252,0,116,10, 191,1,0,0,0,232,235,225,255,255,199,5,31,131,8,0,0,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,128,192,0,0,0,72,133,192,116,83,235,27,72,139,69,248,72,139,128,192,0,0,0,72,139,64,32,72,139,48,72,139,125,248,232,115,253, 255,255,72,139,69,248,72,139,128,192,0,0,0,72,139,64,32,72,133,192,117,209,72,139,69,248,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,32,132,192,116,9,72,139,125,248,232,81,251,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69, 216,72,139,128,192,0,0,0,72,133,192,15,132,196,0,0,0,72,139,125,216,232,102,255,255,255,72,139,69,216,72,139,64,48,72,133,192,15,132,170,0,0,0,191,16,0,0,0,232,253,231,3,0,72,137,69,248,72,139,69,216,72,139,64,48,72,137,69,240,72,139,69,216,72,139,144, 192,0,0,0,72,139,69,248,72,137,66,32,72,139,85,248,72,139,69,240,72,137,2,72,139,117,216,72,139,125,240,186,1,0,0,0,232,199,245,255,255,235,63,191,16,0,0,0,232,177,231,3,0,72,137,69,232,72,139,85,248,72,139,69,232,72,137,66,8,72,139,69,232,72,137,69, 248,72,139,85,248,72,139,69,240,72,137,2,72,139,117,216,72,139,125,240,186,1,0,0,0,232,134,245,255,255,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,174,72,139,69,248,72,199,64,8,0,0,0,0,201,195,85,72,137,229,72,137,125,232,72,137,117, 224,72,139,69,232,72,139,64,48,72,137,69,240,199,69,252,0,0,0,0,235,15,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,116,10,72,139,69,240,72,59,69,224,117,224,139,69,252,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137, 117,224,137,85,220,72,139,69,232,72,139,64,48,72,137,69,240,199,69,252,0,0,0,0,235,33,72,139,117,240,72,139,125,232,232,78,250,255,255,59,69,220,117,3,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,116,10,72,139,69,240,72,59,69,224, 117,206,139,69,252,201,195,85,72,137,229,72,137,125,232,137,117,228,72,139,69,232,72,139,64,48,72,137,69,240,199,69,252,0,0,0,0,235,33,139,69,252,59,69,228,117,10,72,139,69,240,72,137,69,216,235,30,72,139,69,240,72,139,64,8,72,137,69,240,255,69,252,72, 131,125,240,0,117,216,72,199,69,216,0,0,0,0,72,139,69,216,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,199,69,252,0,0,0,0,72,139,5,229,128,8,0,72,133,192,116,60,72,139,5,233,128,8,0,72,133,192,116,48,72, 139,5,221,128,8,0,72,57,69,216,116,35,72,139,5,192,128,8,0,72,139,53,201,128,8,0,72,139,61,202,128,8,0,186,0,0,0,0,255,208,199,69,252,1,0,0,0,72,139,69,232,72,137,5,177,128,8,0,72,139,69,224,72,137,5,142,128,8,0,72,139,69,216,72,137,5,147,128,8,0,199, 5,129,128,8,0,1,0,0,0,72,139,69,208,72,137,5,142,128,8,0,72,131,125,232,0,116,53,72,139,125,232,232,148,204,255,255,133,192,116,40,72,139,125,232,232,209,204,255,255,133,192,116,27,72,139,85,208,72,139,117,232,72,141,61,230,8,6,0,184,0,0,0,0,232,244, 95,4,0,235,23,131,125,252,0,116,17,72,141,61,232,8,6,0,184,0,0,0,0,232,219,95,4,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,131,125,248,0,116,13,72,139,5,23,128,8,0,72,57,69,248,117,27,72,141,13,209,8,6,0,186,0,0,0,0,190,0,0,0,0,191,0,0,0, 0,232,211,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,5,225,127,8,0,72,57,69,248,116,19,72,141,61,159,8,6,0,184,0,0,0,0,232,125,198,4,0,235,122,139,5,178,127,8,0,131,248,1,116,19,72,141,61,143,8,6,0,184,0,0,0,0,232,95,198,4, 0,235,92,72,139,5,139,127,8,0,72,139,53,148,127,8,0,72,139,61,149,127,8,0,186,1,0,0,0,255,208,72,139,125,248,232,163,203,255,255,133,192,116,41,72,139,125,248,232,224,203,255,255,133,192,116,28,72,139,21,117,127,8,0,72,139,117,248,72,141,61,73,8,6,0, 184,0,0,0,0,232,0,95,4,0,199,5,62,127,8,0,2,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,5,57,127,8,0,72,57,69,248,116,19,72,141,61,247,7,6,0,184,0,0,0,0,232,213,197,4,0,235,122,139,5,10,127,8,0,131,248,2,116,19,72,141,61,231,7,6,0, 184,0,0,0,0,232,183,197,4,0,235,92,72,139,5,227,126,8,0,72,139,53,236,126,8,0,72,139,61,237,126,8,0,186,2,0,0,0,255,208,72,139,125,248,232,251,202,255,255,133,192,116,41,72,139,125,248,232,56,203,255,255,133,192,116,28,72,139,21,205,126,8,0,72,139,117, 248,72,141,61,74,7,6,0,184,0,0,0,0,232,88,94,4,0,199,5,150,126,8,0,1,0,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,137,85,224,137,77,220,68,137,69,216,191,16,0,0,0,232,190,227,3,0,72,137,69,248,72,139,85,248,139,69,228,137,2,72, 139,85,248,139,69,224,137,66,4,72,139,85,248,139,69,220,137,66,8,72,139,85,248,139,69,216,137,66,12,72,139,69,248,201,195,85,72,137,229,72,129,236,176,0,0,0,72,137,189,104,255,255,255,243,15,17,133,100,255,255,255,243,15,17,141,96,255,255,255,243,15, 17,149,92,255,255,255,243,15,17,157,88,255,255,255,72,139,181,104,255,255,255,72,141,189,112,255,255,255,232,41,178,255,255,233,175,0,0,0,72,139,133,120,255,255,255,72,137,198,72,139,189,104,255,255,255,232,200,177,255,255,137,69,252,72,139,69,136,72, 137,198,72,139,189,104,255,255,255,232,178,177,255,255,137,69,248,243,15,42,69,252,15,46,133,100,255,255,255,122,2,116,2,235,110,139,69,132,243,15,42,192,15,46,133,96,255,255,255,122,2,116,2,235,90,243,15,42,69,248,15,46,133,92,255,255,255,122,2,116, 2,235,72,139,69,164,243,15,42,192,15,46,133,88,255,255,255,122,2,116,2,235,52,72,139,85,240,72,139,181,104,255,255,255,72,141,61,123,6,6,0,184,0,0,0,0,232,23,93,4,0,139,77,164,72,139,85,136,139,117,132,72,139,189,120,255,255,255,232,91,246,3,0,235,27, 72,141,189,112,255,255,255,232,179,177,255,255,72,137,69,240,72,131,125,240,0,15,133,54,255,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,139,69,224,72,137,69,248,131,125,220,1,117,63,72,139,69,248,139,64,12, 243,15,42,208,72,139,69,248,139,64,8,243,15,42,200,72,139,69,248,139,64,4,243,15,42,224,72,139,69,248,139,0,243,15,42,192,72,139,125,232,15,40,218,15,40,209,15,40,204,232,239,93,0,0,235,89,131,125,220,2,117,63,72,139,69,248,139,64,12,243,15,42,208,72, 139,69,248,139,64,8,243,15,42,200,72,139,69,248,139,64,4,243,15,42,224,72,139,69,248,139,0,243,15,42,192,72,139,125,232,15,40,218,15,40,209,15,40,204,232,71,254,255,255,235,20,131,125,220,0,117,14,72,139,125,248,190,16,0,0,0,232,178,227,3,0,201,195,85, 72,137,229,72,131,236,32,72,137,125,248,137,117,244,137,85,240,137,77,236,68,137,69,232,139,69,232,139,77,236,139,85,240,139,117,244,72,139,125,248,65,137,192,232,170,253,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85, 220,131,125,220,1,117,9,199,69,252,2,0,0,0,235,21,131,125,220,2,117,9,199,69,252,1,0,0,0,235,6,139,69,220,137,69,252,139,85,252,72,139,117,224,72,139,125,232,232,203,254,255,255,201,195,85,72,137,229,65,84,83,72,129,236,208,0,0,0,72,137,189,72,255,255, 255,137,181,68,255,255,255,72,139,189,72,255,255,255,186,0,0,0,0,190,0,0,0,0,232,250,249,255,255,137,69,236,191,32,0,0,0,232,2,225,3,0,72,137,69,216,72,139,85,216,139,133,68,255,255,255,137,66,24,72,139,69,216,72,199,64,16,0,0,0,0,232,55,79,3,0,72,137, 194,72,139,69,216,72,137,80,8,72,139,181,72,255,255,255,72,141,189,80,255,255,255,232,163,175,255,255,233,42,1,0,0,72,139,133,88,255,255,255,72,137,198,72,139,189,72,255,255,255,232,21,244,255,255,137,69,232,72,139,133,104,255,255,255,72,137,198,72,139, 189,72,255,255,255,232,252,243,255,255,137,69,228,139,69,232,59,69,228,15,132,236,0,0,0,139,69,132,137,133,48,255,255,255,131,125,228,0,116,11,139,85,236,137,149,52,255,255,255,235,10,199,133,52,255,255,255,0,0,0,0,72,139,133,104,255,255,255,72,137,198, 139,85,228,72,139,189,72,255,255,255,232,45,249,255,255,139,149,52,255,255,255,1,194,137,149,56,255,255,255,139,133,100,255,255,255,137,133,60,255,255,255,131,125,232,0,116,11,139,85,236,137,149,64,255,255,255,235,10,199,133,64,255,255,255,0,0,0,0,72, 139,133,88,255,255,255,72,137,198,139,85,232,72,139,189,72,255,255,255,232,223,248,255,255,68,139,165,64,255,255,255,65,1,196,72,141,61,189,3,6,0,232,191,197,3,0,72,137,195,72,141,61,151,255,5,0,232,176,197,3,0,72,137,194,72,139,69,216,72,139,120,8,139, 133,48,255,255,255,137,68,36,8,139,133,56,255,255,255,137,4,36,68,139,141,60,255,255,255,69,137,224,72,137,217,72,141,53,164,29,6,0,184,0,0,0,0,232,75,91,3,0,72,141,189,80,255,255,255,232,178,174,255,255,72,137,69,200,72,131,125,200,0,15,133,187,254, 255,255,131,189,68,255,255,255,3,117,24,72,139,189,72,255,255,255,232,20,80,0,0,72,137,194,72,139,69,216,72,137,16,235,53,131,189,68,255,255,255,1,117,13,72,139,69,216,72,199,0,0,0,0,0,235,31,131,189,68,255,255,255,2,117,22,72,139,189,72,255,255,255, 232,221,79,0,0,72,137,194,72,139,69,216,72,137,16,72,139,69,216,72,129,196,208,0,0,0,91,65,92,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,137,85,188,72,139,69,192,72,137,69,240,72,139,69,240,139,64,24,137,69,252,131,125,188,1,15, 133,39,1,0,0,131,125,252,1,117,21,72,139,53,105,121,8,0,72,139,125,200,232,6,86,0,0,233,187,0,0,0,131,125,252,2,117,21,72,139,69,240,72,139,48,72,139,125,200,232,235,85,0,0,233,160,0,0,0,131,125,252,3,15,133,150,0,0,0,72,139,125,200,232,232,245,255,255, 72,139,69,200,72,139,64,48,72,137,69,232,235,8,72,139,69,224,72,137,69,232,72,139,69,232,72,139,64,8,72,137,69,224,72,131,125,224,0,117,229,72,131,125,232,0,116,77,72,139,69,240,72,139,64,16,72,133,192,117,51,72,139,125,200,232,162,245,255,255,72,139, 117,232,72,139,125,200,232,27,242,255,255,72,139,125,200,232,239,78,0,0,72,137,194,72,139,69,240,72,137,80,16,72,139,125,200,232,120,245,255,255,72,139,117,232,72,139,125,200,232,217,111,0,0,72,139,69,240,72,139,48,72,139,125,200,232,70,85,0,0,72,141, 61,201,253,5,0,232,226,195,3,0,72,137,198,72,139,125,200,232,163,254,3,0,72,139,69,240,72,139,120,8,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,232,234,102,3,0,72,141,61,149,253,5,0,232,174,195,3,0,72,137,198,72,139,125,200,232,115,255,3,0,233,42,1,0,0,131,125, 188,2,15,133,192,0,0,0,131,125,252,1,116,6,131,125,252,2,117,14,72,139,125,200,232,98,81,0,0,233,6,1,0,0,131,125,252,3,15,133,252,0,0,0,72,139,69,200,72,139,64,48,72,137,69,216,235,8,72,139,69,208,72,137,69,216,72,139,69,216,72,139,64,8,72,137,69,208, 72,131,125,208,0,117,229,72,131,125,216,0,116,13,72,139,117,216,72,139,125,200,232,13,111,0,0,72,139,69,240,72,139,112,16,72,139,125,200,232,121,84,0,0,72,141,61,252,252,5,0,232,21,195,3,0,72,137,198,72,139,125,200,232,214,253,3,0,72,139,69,240,72,139, 120,8,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,232,29,102,3,0,72,141,61,200,252,5,0,232,225,194,3,0,72,137,198,72,139,125,200,232,166,254,3,0,235,96,131,125,188,0,117,90,72,139,69,240,72,139,0,72,133,192,116,12,72,139,69,240,72,139,56,232,102,75,3,0,72,139, 69,240,72,139,64,8,72,133,192,116,13,72,139,69,240,72,139,120,8,232,76,75,3,0,72,139,69,240,72,139,64,16,72,133,192,116,13,72,139,69,240,72,139,120,16,232,50,75,3,0,72,139,125,240,190,32,0,0,0,232,134,222,3,0,201,195,85,72,137,229,72,131,236,80,72,137, 125,200,137,117,196,191,16,0,0,0,232,119,220,3,0,72,137,69,216,131,125,196,0,116,24,72,139,125,200,186,1,0,0,0,190,0,0,0,0,232,69,245,255,255,137,69,180,235,17,72,139,125,200,190,0,0,0,0,232,236,244,255,255,137,69,180,72,139,69,216,139,85,180,137,80, 8,131,125,196,0,116,41,72,139,125,200,186,1,0,0,0,190,0,0,0,0,232,12,245,255,255,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,2,72,137,69,184,235,34,72,139,125,200,190,0,0,0,0,232,162,244,255,255,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224, 2,72,137,69,184,72,139,125,184,232,224,219,3,0,72,137,194,72,139,69,216,72,137,16,131,125,196,0,15,132,236,0,0,0,72,139,69,200,72,139,64,48,72,137,69,224,199,69,232,0,0,0,0,139,69,232,137,69,236,233,190,0,0,0,72,139,117,224,72,139,125,200,232,15,239, 255,255,133,192,15,132,154,0,0,0,72,141,69,240,72,141,85,244,72,141,77,248,72,141,117,252,72,139,125,200,76,139,85,224,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,159,232,255,255,72,139,69,216,72,139,8,139,69,236,72,99,208,72,137,208,72, 1,192,72,1,208,72,193,224,2,72,141,20,1,139,69,232,137,2,72,139,69,216,72,139,8,139,69,236,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,2,72,141,20,1,139,69,252,137,66,4,72,139,69,216,72,139,8,139,69,236,72,99,208,72,137,208,72,1,192,72,1,208,72, 193,224,2,72,141,20,1,139,69,248,137,66,8,255,69,236,72,139,69,224,72,139,64,8,72,137,69,224,255,69,232,72,131,125,224,0,15,133,55,255,255,255,233,201,0,0,0,72,139,69,200,72,139,64,48,72,137,69,224,199,69,232,0,0,0,0,233,166,0,0,0,72,141,69,240,72,141, 85,244,72,141,77,248,72,141,117,252,72,139,125,200,76,139,85,224,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,206,231,255,255,72,139,69,216,72,139,8,139,69,232,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,2,72,141,20,1,139,69,232,137, 2,72,139,69,216,72,139,8,139,69,232,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,2,72,141,20,1,139,69,252,137,66,4,72,139,69,216,72,139,8,139,69,232,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,2,72,141,20,1,139,69,248,137,66,8,72,139,69,224, 72,139,64,8,72,137,69,224,255,69,232,72,131,125,224,0,15,133,79,255,255,255,199,5,224,116,8,0,1,0,0,0,72,139,69,216,201,195,85,72,137,229,83,72,131,236,88,72,137,125,184,72,137,117,176,137,85,172,72,139,69,176,72,137,69,200,131,125,172,1,116,10,131,125, 172,2,15,133,56,1,0,0,199,69,236,0,0,0,0,233,26,1,0,0,72,139,69,200,72,139,8,139,69,236,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,2,72,141,4,1,139,64,4,137,69,216,72,139,69,200,72,139,8,139,69,236,72,99,208,72,137,208,72,1,192,72,1,208,72,193, 224,2,72,141,4,1,139,64,8,137,69,212,72,139,69,200,72,139,8,139,69,236,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,2,72,141,4,1,139,48,72,139,125,184,232,168,242,255,255,72,137,69,192,72,131,125,192,0,15,132,151,0,0,0,72,141,69,220,72,141,85,224, 72,141,77,228,72,141,117,232,72,139,125,184,76,139,85,192,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,85,230,255,255,139,85,228,139,69,212,137,193,41,209,139,85,232,139,69,216,137,195,41,211,137,218,72,139,117,184,72,139,125,192,232,175, 230,255,255,72,139,69,200,72,139,8,139,69,236,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,2,72,141,20,1,139,69,232,137,66,4,72,139,69,200,72,139,8,139,69,236,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,2,72,141,20,1,139,69,228,137,66,8,255, 69,236,72,139,69,200,139,64,8,59,69,236,15,143,214,254,255,255,235,58,131,125,172,0,117,52,72,139,69,200,139,64,8,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,2,72,137,198,72,139,69,200,72,139,56,232,107,218,3,0,72,139,125,200,190,16,0,0,0,232,93, 218,3,0,72,131,196,88,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,191,4,0,0,0,232,76,216,3,0,72,137,69,248,72,139,125,232,190,0,0,0,0,232,223,240,255,255,137,194,72,139,69,248,137,16,72,139,69,248,201,195,85,72,137,229,72,131,236,64,72,137, 125,216,72,137,117,208,137,85,204,72,139,69,208,72,137,69,248,131,125,204,1,117,76,72,139,125,216,232,80,239,255,255,72,139,69,248,139,48,72,139,125,216,232,61,241,255,255,72,137,69,240,235,25,72,139,117,240,72,139,125,216,232,180,235,255,255,72,139, 69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,224,72,139,125,216,232,137,75,0,0,233,136,0,0,0,131,125,204,2,117,110,72,139,53,69,114,8,0,72,139,125,216,232,226,78,0,0,72,139,5,109,114,8,0,72,133,192,116,102,72,139,5,97,114,8,0,15,182,0,60,100, 117,88,72,139,69,216,72,139,128,192,0,0,0,72,139,64,32,72,137,69,232,235,38,72,139,69,232,72,139,56,72,139,117,216,185,10,0,0,0,186,10,0,0,0,232,15,229,255,255,72,139,69,232,72,139,64,8,72,137,69,232,72,131,125,232,0,117,211,235,20,131,125,204,0,117, 14,72,139,125,248,190,4,0,0,0,232,43,217,3,0,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,72,137,77,192,72,139,125,216,190,0,0,0,0,232,180,239,255,255,137,69,248,72,139,69,216,72,139,128,192,0,0,0,72,133,192,15,149, 192,15,182,192,137,69,244,72,139,69,216,72,139,64,48,72,137,69,232,199,69,252,0,0,0,0,233,98,1,0,0,72,139,69,232,72,59,69,192,15,132,16,1,0,0,72,139,69,232,72,139,16,72,141,5,36,160,8,0,72,139,0,72,57,194,15,133,246,0,0,0,72,139,125,232,232,197,203,255, 255,133,192,15,132,229,0,0,0,72,139,69,232,72,139,128,200,0,0,0,72,59,69,208,15,133,208,0,0,0,72,139,125,232,232,248,161,255,255,72,59,69,200,15,133,189,0,0,0,72,139,117,232,72,139,125,216,232,20,239,255,255,137,69,240,72,139,69,216,72,139,128,192,0, 0,0,72,133,192,117,17,72,139,125,216,243,15,16,5,91,100,6,0,232,152,7,0,0,72,139,69,216,72,139,128,192,0,0,0,72,133,192,117,17,72,141,61,25,250,5,0,184,0,0,0,0,232,160,183,4,0,72,139,125,216,232,111,237,255,255,72,139,117,232,72,139,125,216,232,232,233, 255,255,72,139,125,216,190,2,0,0,0,232,198,244,255,255,72,139,125,216,72,141,13,30,99,6,0,72,137,194,72,141,53,223,246,255,255,232,140,239,255,255,72,139,125,216,232,168,73,0,0,72,139,125,216,232,169,240,255,255,72,139,125,216,232,31,237,255,255,139, 117,240,72,139,125,216,232,15,239,255,255,72,137,69,232,235,65,72,139,69,232,72,59,69,192,116,43,72,139,69,232,72,139,16,72,141,5,10,159,8,0,72,139,0,72,57,194,117,21,72,139,125,232,72,139,77,192,72,139,85,200,72,139,117,208,232,85,254,255,255,72,139, 69,232,72,139,64,8,72,137,69,232,255,69,252,72,131,125,232,0,116,12,139,69,252,59,69,248,15,140,139,254,255,255,131,125,244,0,117,36,72,139,69,216,72,139,128,192,0,0,0,72,133,192,116,20,72,139,125,216,232,35,108,0,0,72,137,199,15,87,192,232,139,6,0,0, 201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,232,44,206,255,255,137,69,252,199,5,129,83,8,0,1,0,0,0,72,141,5,138,158,8,0,72,139,0,72,137,69,240,235,36,72,139,77,216,72,139,85,224,72,139,117,232,72,139,125,240,232,188, 253,255,255,72,139,69,240,72,139,128,216,0,0,0,72,137,69,240,72,131,125,240,0,117,213,199,5,60,83,8,0,0,0,0,0,139,125,252,232,246,205,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,137,117,244,131,125,244,6,118,19,72,141,61,217,248,5,0,184, 0,0,0,0,232,23,182,4,0,235,92,72,139,5,11,111,8,0,72,59,69,248,117,11,139,5,251,110,8,0,59,69,244,116,68,139,69,244,137,192,72,141,20,197,0,0,0,0,72,141,5,190,68,8,0,72,141,4,2,72,139,16,72,139,117,248,72,141,61,160,248,5,0,184,0,0,0,0,232,194,78,4,0, 72,139,69,248,72,137,5,191,110,8,0,139,69,244,137,5,178,110,8,0,201,195,85,72,137,229,72,131,236,80,72,137,125,216,72,137,117,208,137,85,204,137,77,200,76,137,69,192,76,137,77,184,72,139,117,216,72,139,125,208,232,25,227,255,255,133,192,117,12,199,69, 180,0,0,0,0,233,128,0,0,0,72,141,69,240,72,141,85,244,72,141,77,248,72,141,117,252,72,139,125,216,76,139,85,208,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,12,225,255,255,139,69,252,57,69,204,124,69,139,69,244,57,69,204,127,61,139,69,248, 57,69,200,124,53,139,69,240,57,69,200,127,45,139,85,252,72,139,69,192,137,16,139,85,248,72,139,69,184,137,16,139,85,244,72,139,69,16,137,16,139,85,240,72,139,69,24,137,16,199,69,180,1,0,0,0,235,7,199,69,180,0,0,0,0,139,69,180,201,195,85,72,137,229,72, 131,236,112,72,137,125,200,137,117,196,137,85,192,72,137,77,184,76,137,69,176,76,137,77,168,72,199,69,224,0,0,0,0,72,139,69,184,199,0,1,0,0,128,72,139,69,200,72,139,64,48,72,137,69,232,233,133,0,0,0,72,141,85,248,72,141,77,252,139,117,192,139,125,196, 76,139,85,232,76,139,93,200,72,141,69,240,72,137,68,36,8,72,141,69,244,72,137,4,36,73,137,209,73,137,200,137,241,137,250,76,137,214,76,137,223,232,195,254,255,255,133,192,116,57,72,139,69,184,139,16,139,69,252,57,194,125,44,139,85,252,72,139,69,184,137, 16,139,85,248,72,139,69,176,137,16,139,85,244,72,139,69,168,137,16,139,85,240,72,139,69,16,137,16,72,139,69,232,72,137,69,224,72,139,69,232,72,139,64,8,72,137,69,232,72,131,125,232,0,15,133,112,255,255,255,72,139,69,200,72,139,128,192,0,0,0,72,133,192, 15,132,231,0,0,0,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,133,192,15,132,207,0,0,0,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,139,64,8,72,133,192,15,132,179,0,0,0,72,139,117,232,72,139,125,200,232,201,229,255,255,133,192,15,133,158, 0,0,0,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,137,69,216,235,126,72,139,69,216,76,139,24,72,141,85,248,72,141,77,252,139,117,192,139,125,196,76,139,85,200,72,141,69,240,72,137,68,36,8,72,141,69,244,72,137,4,36,73,137,209,73,137,200,137,241, 137,250,76,137,222,76,137,215,232,190,253,255,255,133,192,116,47,139,85,252,72,139,69,184,137,16,139,85,248,72,139,69,176,137,16,139,85,244,72,139,69,168,137,16,139,85,240,72,139,69,16,137,16,72,139,69,216,72,139,0,72,137,69,224,72,139,69,216,72,139, 64,8,72,137,69,216,72,131,125,216,0,15,133,119,255,255,255,72,139,69,224,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,137,85,224,72,137,77,216,72,131,125,216,0,116,24,72,131,125,216,0,116,26,72,139,69,216,72,139,56,232,213,181,3,0,72, 133,192,116,9,199,69,208,1,0,0,0,235,7,199,69,208,0,0,0,0,139,69,208,137,69,252,72,131,125,216,0,116,38,72,141,61,177,245,5,0,232,50,183,3,0,72,137,198,72,139,125,216,232,100,200,3,0,72,133,192,116,9,199,69,212,1,0,0,0,235,7,199,69,212,0,0,0,0,139,69, 212,137,69,248,139,69,248,139,85,252,139,77,224,139,117,228,72,139,125,232,65,137,193,65,137,208,137,242,72,137,254,72,141,61,115,245,5,0,184,0,0,0,0,232,105,75,4,0,201,195,85,72,137,229,72,131,236,80,72,137,125,184,72,139,5,188,59,8,0,72,139,16,72,137, 85,248,49,210,191,160,0,0,0,232,214,208,3,0,72,137,69,200,232,36,63,3,0,72,137,194,72,139,69,200,72,137,80,72,232,20,63,3,0,72,137,194,72,139,69,200,72,137,80,80,72,139,85,200,72,139,69,184,72,137,66,96,72,139,69,184,72,141,125,208,73,137,192,72,141, 13,36,245,5,0,186,40,0,0,0,190,0,0,0,0,184,0,0,0,0,232,51,207,5,0,72,141,125,208,232,88,182,3,0,72,137,198,72,139,125,184,232,207,154,0,0,72,137,194,72,139,69,200,72,137,80,88,72,139,69,200,72,199,128,144,0,0,0,0,0,0,0,72,139,69,200,72,139,21,25,59,8, 0,72,139,77,248,72,51,10,116,5,232,241,206,5,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,125,240,232,107,231,255,255,72,139,69,248,72,139,120,88,242,15,16,5,64,94,6,0,232,20,155,0,0,72,139,69,248,72,139,120,72,232,141,62, 3,0,72,139,69,248,72,139,120,80,232,128,62,3,0,72,139,69,248,72,139,128,144,0,0,0,72,133,192,116,16,72,139,69,248,72,139,184,144,0,0,0,232,38,249,3,0,72,139,125,248,190,160,0,0,0,232,180,209,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139, 69,232,72,139,128,192,0,0,0,72,133,192,117,89,72,139,125,232,232,157,254,255,255,72,137,194,72,139,69,232,72,137,144,192,0,0,0,72,139,69,232,72,139,64,48,72,137,69,248,235,45,72,139,125,248,232,131,230,3,0,72,137,69,240,72,131,125,240,0,116,13,72,139, 117,240,72,139,125,232,232,97,132,1,0,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,204,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,128,230,255,255,72,139,69,232,72,139,128,192,0,0,0,72,133,192,116,109,72,139, 69,232,72,139,64,48,72,137,69,248,235,53,72,139,125,248,232,26,230,3,0,72,137,69,240,72,131,125,240,0,116,21,72,139,117,240,72,139,125,232,232,92,149,1,0,72,137,199,232,13,133,1,0,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,196,72,139, 69,232,72,139,184,192,0,0,0,72,139,117,232,232,142,254,255,255,72,139,69,232,72,199,128,192,0,0,0,0,0,0,0,201,195,85,72,137,229,72,129,236,112,4,0,0,72,137,189,168,251,255,255,243,15,17,133,164,251,255,255,72,139,5,101,57,8,0,72,139,16,72,137,85,248, 49,210,15,87,192,15,46,133,164,251,255,255,15,149,192,15,154,194,9,208,15,182,192,137,133,220,251,255,255,131,189,220,251,255,255,0,15,132,211,1,0,0,72,139,133,168,251,255,255,72,139,128,192,0,0,0,72,133,192,116,50,72,139,133,168,251,255,255,15,182,128, 232,0,0,0,131,224,1,132,192,116,29,72,139,181,168,251,255,255,72,141,61,193,242,5,0,184,0,0,0,0,232,140,72,4,0,233,20,3,0,0,72,139,133,168,251,255,255,72,137,133,200,251,255,255,72,139,189,168,251,255,255,232,68,254,255,255,72,139,133,168,251,255,255, 15,182,128,232,0,0,0,192,232,5,131,224,1,15,182,248,72,139,133,168,251,255,255,68,139,64,108,72,139,133,168,251,255,255,68,139,80,104,72,139,133,168,251,255,255,139,80,116,72,139,133,168,251,255,255,139,64,108,137,209,41,193,72,139,133,168,251,255,255, 139,80,112,72,139,133,168,251,255,255,139,64,104,41,194,72,139,181,168,251,255,255,137,60,36,69,137,193,69,137,208,72,141,61,67,242,5,0,184,0,0,0,0,232,241,71,4,0,72,139,133,200,251,255,255,72,137,193,72,141,189,224,251,255,255,72,141,21,72,242,5,0,190, 230,3,0,0,184,0,0,0,0,232,34,206,5,0,235,110,72,139,133,200,251,255,255,72,139,64,72,72,137,133,200,251,255,255,72,141,189,224,251,255,255,232,44,206,5,0,137,133,216,251,255,255,72,139,133,200,251,255,255,72,137,194,72,199,193,255,255,255,255,184,230, 3,0,0,43,133,216,251,255,255,72,99,240,139,133,216,251,255,255,72,152,72,141,189,224,251,255,255,72,1,199,73,137,209,76,141,5,245,241,5,0,186,0,0,0,0,184,0,0,0,0,232,156,203,5,0,72,139,133,200,251,255,255,72,139,64,72,72,133,192,117,130,72,141,189,224, 251,255,255,186,232,3,0,0,72,141,53,121,59,6,0,232,134,203,5,0,72,141,189,224,251,255,255,232,173,74,4,0,72,139,189,168,251,255,255,232,221,173,255,255,72,139,149,168,251,255,255,15,182,130,232,0,0,0,131,200,1,136,130,232,0,0,0,232,215,148,255,255,233, 134,1,0,0,72,139,133,168,251,255,255,15,182,128,232,0,0,0,131,224,1,132,192,117,40,72,139,133,168,251,255,255,72,139,128,192,0,0,0,72,133,192,15,132,90,1,0,0,72,139,189,168,251,255,255,232,15,253,255,255,233,73,1,0,0,72,139,189,168,251,255,255,232,147, 227,255,255,72,139,189,168,251,255,255,232,26,179,255,255,133,192,116,15,72,139,189,168,251,255,255,15,87,192,232,152,176,255,255,72,139,189,168,251,255,255,232,211,252,255,255,72,139,181,168,251,255,255,72,141,61,12,241,5,0,184,0,0,0,0,232,109,70,4, 0,199,133,212,251,255,255,1,0,0,0,72,139,133,168,251,255,255,72,137,133,192,251,255,255,235,27,72,139,133,192,251,255,255,72,139,128,216,0,0,0,72,137,133,192,251,255,255,255,133,212,251,255,255,72,131,189,192,251,255,255,0,117,219,72,139,189,168,251, 255,255,232,117,170,255,255,133,192,15,132,139,0,0,0,72,139,133,168,251,255,255,72,139,64,72,72,133,192,116,123,72,139,133,168,251,255,255,72,139,64,72,72,137,133,184,251,255,255,72,139,189,184,251,255,255,232,98,178,255,255,133,192,116,24,72,139,189, 168,251,255,255,72,139,181,184,251,255,255,186,0,0,0,0,232,153,220,255,255,72,139,149,168,251,255,255,15,182,130,232,0,0,0,131,224,254,136,130,232,0,0,0,72,139,189,184,251,255,255,232,35,178,255,255,133,192,116,49,72,139,189,168,251,255,255,72,139,181, 184,251,255,255,186,1,0,0,0,232,90,220,255,255,235,23,72,139,133,168,251,255,255,15,182,144,232,0,0,0,131,226,254,136,144,232,0,0,0,232,76,147,255,255,72,139,5,212,53,8,0,72,139,85,248,72,51,16,116,5,232,172,201,5,0,201,195,85,72,137,229,72,131,236,32, 72,137,125,232,137,117,228,137,85,224,131,125,228,0,15,133,249,0,0,0,72,139,125,232,232,138,169,255,255,133,192,15,132,232,0,0,0,72,139,69,232,72,139,128,192,0,0,0,72,133,192,15,149,192,15,182,192,137,69,252,131,125,252,0,116,9,72,139,125,232,232,87, 251,255,255,72,139,69,232,72,139,64,72,72,133,192,116,57,72,139,69,232,15,182,128,232,0,0,0,131,224,8,132,192,117,39,72,139,69,232,72,139,120,72,232,83,177,255,255,133,192,116,22,72,139,69,232,72,139,112,72,72,139,125,232,186,0,0,0,0,232,140,219,255, 255,72,139,85,232,15,182,130,233,0,0,0,131,224,254,136,130,233,0,0,0,72,139,69,232,72,139,64,72,72,133,192,15,132,175,1,0,0,72,139,69,232,15,182,128,232,0,0,0,131,224,8,132,192,15,133,153,1,0,0,72,139,69,232,72,139,120,72,232,241,176,255,255,133,192, 15,132,132,1,0,0,72,139,69,232,72,139,112,72,72,139,125,232,186,1,0,0,0,232,38,219,255,255,72,139,117,232,72,139,69,232,72,139,120,72,232,202,179,255,255,233,88,1,0,0,131,125,228,0,15,132,78,1,0,0,72,139,69,232,139,64,80,133,192,127,11,72,139,69,232, 199,64,80,200,0,0,0,72,139,69,232,139,64,84,133,192,127,11,72,139,69,232,199,64,84,140,0,0,0,72,139,69,232,72,139,64,72,72,133,192,116,57,72,139,69,232,15,182,128,232,0,0,0,131,224,8,132,192,117,39,72,139,69,232,72,139,120,72,232,91,176,255,255,133,192, 116,22,72,139,69,232,72,139,112,72,72,139,125,232,186,0,0,0,0,232,148,218,255,255,72,139,85,232,15,182,130,233,0,0,0,131,200,1,136,130,233,0,0,0,139,69,228,131,224,2,133,192,15,149,192,72,139,77,232,131,224,1,141,20,0,15,182,129,233,0,0,0,131,224,253, 9,208,136,129,233,0,0,0,131,125,224,0,15,148,192,72,139,85,232,137,193,193,225,7,15,182,130,232,0,0,0,131,224,127,9,200,136,130,232,0,0,0,72,139,125,232,232,219,175,255,255,133,192,116,27,72,139,69,232,15,182,128,232,0,0,0,131,224,128,132,192,116,9,72, 139,125,232,232,127,118,0,0,72,139,69,232,72,139,64,72,72,133,192,116,74,72,139,69,232,15,182,128,232,0,0,0,131,224,8,132,192,117,56,72,139,69,232,72,139,120,72,232,144,175,255,255,133,192,116,39,72,139,69,232,72,139,112,72,72,139,125,232,186,1,0,0,0, 232,201,217,255,255,72,139,117,232,72,139,69,232,72,139,120,72,232,109,178,255,255,201,195,85,72,137,229,65,86,65,85,65,84,83,72,129,236,48,1,0,0,72,137,189,248,254,255,255,72,139,5,53,51,8,0,72,139,16,72,137,85,216,49,210,72,139,189,248,254,255,255, 232,11,167,255,255,133,192,15,132,249,0,0,0,72,139,133,248,254,255,255,139,88,124,72,139,133,248,254,255,255,68,139,96,120,72,139,133,248,254,255,255,68,139,104,84,72,139,133,248,254,255,255,68,139,112,80,72,139,133,248,254,255,255,243,15,16,64,100,243, 15,90,192,242,15,17,133,208,254,255,255,72,139,133,248,254,255,255,243,15,16,64,96,243,15,90,192,242,15,17,133,216,254,255,255,72,139,133,248,254,255,255,243,15,16,64,92,243,15,90,192,242,15,17,133,224,254,255,255,72,139,133,248,254,255,255,243,15,16, 64,88,243,15,90,192,242,15,17,133,232,254,255,255,72,139,189,248,254,255,255,232,108,166,255,255,72,141,189,16,255,255,255,137,92,36,16,68,137,100,36,8,68,137,44,36,69,137,241,242,15,16,173,208,254,255,255,242,15,16,165,216,254,255,255,242,15,16,157, 224,254,255,255,242,15,16,149,232,254,255,255,65,137,192,102,15,87,201,102,15,87,192,72,141,13,120,236,5,0,186,200,0,0,0,190,0,0,0,0,184,6,0,0,0,232,4,198,5,0,233,213,0,0,0,72,139,133,248,254,255,255,139,88,124,72,139,133,248,254,255,255,68,139,96,120, 72,139,133,248,254,255,255,68,139,104,84,72,139,133,248,254,255,255,68,139,112,80,72,139,189,248,254,255,255,243,15,16,5,29,85,6,0,232,95,114,0,0,15,40,200,243,15,16,5,109,85,6,0,15,87,193,243,15,90,192,242,15,17,133,240,254,255,255,72,139,189,248,254, 255,255,243,15,16,5,239,84,6,0,232,235,113,0,0,243,15,90,240,242,15,16,5,158,86,6,0,72,141,189,16,255,255,255,137,92,36,16,68,137,100,36,8,68,137,44,36,69,137,241,242,15,16,45,199,84,6,0,242,15,16,37,191,84,6,0,102,15,40,216,102,15,87,210,65,184,0,0, 0,0,242,15,16,141,240,254,255,255,102,15,40,198,72,141,13,158,235,5,0,186,200,0,0,0,190,0,0,0,0,184,6,0,0,0,232,42,197,5,0,72,139,189,248,254,255,255,72,141,149,16,255,255,255,72,139,181,248,254,255,255,232,212,25,5,0,72,139,133,248,254,255,255,72,139, 64,48,72,137,133,8,255,255,255,235,55,72,139,133,8,255,255,255,72,139,16,72,141,5,75,143,8,0,72,139,0,72,57,194,117,12,72,139,189,8,255,255,255,232,181,48,255,255,72,139,133,8,255,255,255,72,139,64,8,72,137,133,8,255,255,255,72,131,189,8,255,255,255, 0,117,191,72,139,5,212,48,8,0,72,139,85,216,72,51,16,116,5,232,172,196,5,0,72,129,196,48,1,0,0,91,65,92,65,93,65,94,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,199,69,208,0,0,0,0,72,139,85,176,139,117,188, 191,0,0,0,0,232,163,45,3,0,243,15,17,69,252,72,139,85,176,139,117,188,191,1,0,0,0,232,141,45,3,0,243,15,17,69,248,72,139,85,176,139,117,188,191,2,0,0,0,232,119,45,3,0,243,15,44,192,137,69,212,72,139,85,176,139,117,188,191,3,0,0,0,232,95,45,3,0,243,15, 17,69,244,72,139,85,176,139,117,188,191,4,0,0,0,232,73,45,3,0,243,15,17,69,240,72,139,85,176,139,117,188,191,5,0,0,0,232,51,45,3,0,243,15,17,69,236,72,139,85,176,139,117,188,191,6,0,0,0,232,29,45,3,0,243,15,17,69,232,72,139,85,176,139,117,188,191,7,0, 0,0,232,7,45,3,0,243,15,17,69,228,72,139,85,176,139,117,188,191,8,0,0,0,232,241,44,3,0,243,15,17,69,224,72,139,85,176,139,117,188,191,9,0,0,0,232,219,44,3,0,243,15,17,69,220,72,139,85,176,139,117,188,191,10,0,0,0,232,197,44,3,0,243,15,17,69,216,243,15, 16,69,228,243,15,44,208,72,139,69,200,137,80,80,243,15,16,69,224,243,15,44,208,72,139,69,200,137,80,84,243,15,16,69,220,243,15,44,208,72,139,69,200,137,80,120,243,15,16,69,216,243,15,44,208,72,139,69,200,137,80,124,243,15,16,5,244,82,6,0,129,117,248, 0,0,0,128,15,87,192,15,46,69,252,122,2,116,2,235,8,184,0,0,128,63,137,69,252,15,87,192,15,46,69,248,122,2,116,2,235,8,184,0,0,128,63,137,69,248,131,125,212,0,15,132,130,0,0,0,243,15,16,69,244,15,46,69,236,117,4,122,2,235,22,72,139,85,200,139,69,244,137, 66,88,72,139,85,200,139,69,236,137,66,96,235,24,72,139,85,200,184,0,0,0,0,137,66,88,72,139,85,200,184,0,0,128,63,137,66,96,243,15,16,69,240,15,46,69,232,117,4,122,2,235,25,72,139,85,200,139,69,240,137,66,92,72,139,85,200,139,69,232,137,66,100,233,62, 1,0,0,72,139,85,200,184,0,0,0,0,137,66,92,72,139,85,200,184,0,0,128,63,137,66,100,233,33,1,0,0,72,139,125,200,243,15,16,5,203,81,6,0,232,199,110,0,0,15,46,69,252,117,29,122,27,72,139,125,200,243,15,16,5,178,81,6,0,232,244,110,0,0,15,46,69,248,117,4,122, 2,235,7,199,69,208,1,0,0,0,15,87,201,243,15,16,69,252,15,46,193,119,2,235,24,72,139,85,200,184,0,0,0,0,137,66,88,72,139,85,200,139,69,252,137,66,96,235,76,243,15,16,5,205,81,6,0,243,15,16,77,252,15,87,200,72,139,69,200,139,80,112,72,139,69,200,139,64, 104,137,209,41,193,137,200,243,15,42,192,243,15,89,193,72,139,69,200,243,15,17,64,88,72,139,69,200,243,15,16,64,88,243,15,88,69,252,72,139,69,200,243,15,17,64,96,15,87,201,243,15,16,69,248,15,46,193,119,2,235,24,72,139,85,200,184,0,0,0,0,137,66,92,72, 139,85,200,139,69,248,137,66,100,235,76,243,15,16,5,90,81,6,0,243,15,16,77,248,15,87,200,72,139,69,200,139,80,116,72,139,69,200,139,64,108,137,209,41,193,137,200,243,15,42,192,243,15,89,193,72,139,69,200,243,15,17,64,92,72,139,69,200,243,15,16,64,92, 243,15,88,69,248,72,139,69,200,243,15,17,64,100,139,117,212,72,139,125,200,186,0,0,0,0,232,169,247,255,255,72,139,125,200,243,15,16,5,153,80,6,0,232,83,165,255,255,72,139,69,200,15,182,128,232,0,0,0,131,224,1,132,192,116,11,72,139,125,200,232,99,168, 255,255,235,61,72,139,69,200,72,139,120,72,232,64,169,255,255,133,192,116,44,72,139,69,200,72,139,112,72,72,139,125,200,186,0,0,0,0,232,121,211,255,255,72,139,69,200,72,139,112,72,72,139,125,200,186,1,0,0,0,232,99,211,255,255,201,195,85,72,137,229,72, 129,236,80,8,0,0,72,137,189,216,247,255,255,243,15,17,133,212,247,255,255,243,15,17,141,208,247,255,255,243,15,17,149,204,247,255,255,72,139,5,207,44,8,0,72,139,16,72,137,85,248,49,210,72,139,133,216,247,255,255,72,139,64,48,72,137,133,0,248,255,255, 233,115,2,0,0,243,15,16,133,204,247,255,255,243,68,15,44,208,243,15,16,133,208,247,255,255,243,68,15,44,216,72,141,149,24,248,255,255,72,141,141,28,248,255,255,72,139,181,0,248,255,255,72,139,189,216,247,255,255,72,141,133,16,248,255,255,72,137,68,36, 8,72,141,133,20,248,255,255,72,137,4,36,73,137,209,73,137,200,68,137,209,68,137,218,232,61,237,255,255,133,192,15,132,251,1,0,0,15,87,192,15,46,133,212,247,255,255,122,2,116,2,235,60,72,139,133,0,248,255,255,72,139,56,232,173,165,3,0,72,133,192,15,132, 211,1,0,0,72,139,133,0,248,255,255,72,139,56,232,149,165,3,0,72,139,181,216,247,255,255,72,139,189,0,248,255,255,255,208,233,29,2,0,0,243,15,16,5,45,79,6,0,15,46,133,212,247,255,255,122,2,116,2,235,80,72,141,61,105,229,5,0,232,234,166,3,0,72,137,198, 72,139,189,0,248,255,255,232,25,184,3,0,72,133,192,15,132,118,1,0,0,72,141,61,69,229,5,0,232,198,166,3,0,72,137,198,72,139,189,0,248,255,255,72,141,21,119,212,5,0,184,0,0,0,0,232,249,178,3,0,233,184,1,0,0,72,139,133,0,248,255,255,72,139,16,72,141,5,23, 138,8,0,72,139,0,72,57,194,15,133,136,0,0,0,72,139,189,0,248,255,255,232,181,181,255,255,133,192,116,120,72,139,133,0,248,255,255,72,137,133,240,247,255,255,72,139,133,240,247,255,255,72,139,120,16,232,161,69,3,0,137,133,12,248,255,255,72,139,133,240, 247,255,255,72,139,120,16,232,155,69,3,0,72,137,133,232,247,255,255,131,189,12,248,255,255,0,15,142,67,1,0,0,72,141,181,32,248,255,255,72,139,189,232,247,255,255,186,232,3,0,0,232,0,41,3,0,72,139,189,0,248,255,255,232,158,139,255,255,72,139,0,72,137, 133,248,247,255,255,235,57,72,139,133,0,248,255,255,72,139,56,232,144,162,3,0,72,137,198,72,141,189,32,248,255,255,186,232,3,0,0,232,194,190,5,0,72,139,133,0,248,255,255,72,139,56,232,195,163,3,0,72,137,133,248,247,255,255,72,141,189,32,248,255,255,232, 200,192,5,0,72,131,248,3,118,45,72,141,189,32,248,255,255,232,182,192,5,0,72,137,194,72,141,133,32,248,255,255,72,1,208,72,141,120,253,72,141,53,254,228,5,0,232,141,192,5,0,133,192,116,24,72,141,189,32,248,255,255,186,232,3,0,0,72,141,53,226,228,5,0, 232,79,190,5,0,72,139,181,248,247,255,255,72,141,189,32,248,255,255,232,55,134,4,0,235,110,72,139,133,0,248,255,255,72,139,64,8,72,137,133,0,248,255,255,72,131,189,0,248,255,255,0,15,133,127,253,255,255,15,87,192,15,46,133,212,247,255,255,122,2,116,2, 235,14,72,139,189,216,247,255,255,232,189,246,255,255,235,48,243,15,16,133,212,247,255,255,15,46,5,173,77,6,0,122,2,116,2,235,27,72,139,189,216,247,255,255,232,142,138,255,255,72,139,48,72,141,61,99,228,5,0,232,199,133,4,0,72,139,5,217,41,8,0,72,139, 85,248,72,51,16,116,5,232,177,189,5,0,201,195,85,72,137,229,65,85,65,84,83,72,129,236,88,1,0,0,72,137,189,200,254,255,255,137,181,196,254,255,255,137,149,192,254,255,255,137,141,188,254,255,255,68,137,133,184,254,255,255,68,137,141,180,254,255,255,199, 69,208,0,0,0,0,199,69,200,0,0,0,0,199,69,196,0,0,0,0,199,69,192,0,0,0,0,199,69,188,0,0,0,0,199,69,184,0,0,0,0,72,139,133,200,254,255,255,72,139,128,192,0,0,0,72,133,192,117,22,72,141,61,96,226,5,0,184,0,0,0,0,232,231,159,4,0,233,244,11,0,0,139,133,184, 254,255,255,131,224,1,137,69,220,139,133,184,254,255,255,131,224,2,133,192,117,21,72,139,133,200,254,255,255,15,182,128,232,0,0,0,131,224,32,132,192,117,12,199,133,160,254,255,255,1,0,0,0,235,10,199,133,160,254,255,255,0,0,0,0,139,133,160,254,255,255, 137,69,216,139,133,184,254,255,255,131,224,4,137,69,212,139,133,184,254,255,255,131,224,8,137,69,204,199,5,208,88,8,0,0,0,0,0,131,189,180,254,255,255,0,116,126,72,139,133,200,254,255,255,72,139,128,192,0,0,0,72,139,64,48,72,133,192,116,103,72,139,133, 200,254,255,255,72,139,128,192,0,0,0,72,139,64,64,72,133,192,116,80,72,139,133,200,254,255,255,72,139,128,192,0,0,0,72,139,80,64,72,139,133,200,254,255,255,72,139,128,192,0,0,0,72,139,120,48,15,87,192,255,210,72,139,189,200,254,255,255,65,185,0,0,0,0, 65,184,0,0,0,0,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,232,132,83,0,0,131,189,180,254,255,255,0,116,78,131,125,216,0,117,72,139,5,68,88,8,0,57,133,196,254,255,255,117,58,139,5,58,88,8,0,57,133,192,254,255,255,117,44,232,183,41,4,0,102,15,40,200,242,15,16, 5,21,88,8,0,242,15,92,200,242,15,16,5,33,77,6,0,102,15,46,193,119,2,235,7,199,69,208,1,0,0,0,72,139,133,200,254,255,255,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,224,247,136,130,136,0,0,0,131,189,180,254,255,255,0,116,52,72,139,133,200,254,255,255, 72,139,128,192,0,0,0,72,199,64,48,0,0,0,0,72,139,133,200,254,255,255,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,224,248,136,130,136,0,0,0,72,139,133,200,254,255,255,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,7,132,192,15,133,44,10,0,0,72,139, 133,200,254,255,255,72,139,144,192,0,0,0,139,133,196,254,255,255,137,66,104,72,139,133,200,254,255,255,72,139,144,192,0,0,0,139,133,192,254,255,255,137,66,108,131,125,216,0,15,132,94,1,0,0,131,125,204,0,15,133,84,1,0,0,72,139,133,200,254,255,255,72,139, 64,48,72,137,133,120,255,255,255,233,238,0,0,0,72,141,85,196,72,141,77,200,139,181,192,254,255,255,139,189,196,254,255,255,76,139,149,120,255,255,255,76,139,157,200,254,255,255,72,141,69,188,72,137,68,36,8,72,141,69,192,72,137,4,36,73,137,209,73,137, 200,137,241,137,250,76,137,214,76,137,223,232,194,231,255,255,133,192,15,132,140,0,0,0,139,133,184,254,255,255,131,224,2,133,192,116,21,72,139,133,200,254,255,255,15,182,128,232,0,0,0,131,224,32,132,192,116,6,131,125,212,0,116,12,199,133,164,254,255, 255,1,0,0,0,235,10,199,133,164,254,255,255,0,0,0,0,139,85,220,139,141,192,254,255,255,139,181,196,254,255,255,72,139,189,200,254,255,255,76,139,149,120,255,255,255,139,133,180,254,255,255,137,68,36,8,199,4,36,0,0,0,0,68,139,141,164,254,255,255,65,137, 208,137,242,72,137,254,76,137,215,232,18,205,255,255,137,69,184,131,125,184,0,117,32,72,139,133,120,255,255,255,72,139,64,8,72,137,133,120,255,255,255,72,131,189,120,255,255,255,0,15,133,4,255,255,255,131,189,180,254,255,255,0,15,133,202,8,0,0,72,131, 189,120,255,255,255,0,116,20,139,117,184,72,139,189,200,254,255,255,232,98,230,255,255,233,172,8,0,0,72,139,189,200,254,255,255,190,0,0,0,0,232,76,230,255,255,233,150,8,0,0,72,141,85,192,72,141,77,196,72,141,117,200,139,189,192,254,255,255,68,139,149, 196,254,255,255,76,139,157,200,254,255,255,72,141,69,188,72,137,4,36,73,137,209,73,137,200,72,137,241,137,250,68,137,214,76,137,223,232,79,231,255,255,72,137,133,120,255,255,255,72,131,189,120,255,255,255,0,15,132,198,4,0,0,72,139,189,120,255,255,255, 232,190,209,3,0,72,137,133,112,255,255,255,72,139,189,120,255,255,255,232,171,209,3,0,72,137,133,112,255,255,255,131,125,204,0,116,36,72,139,141,120,255,255,255,139,149,192,254,255,255,139,181,196,254,255,255,72,139,189,200,254,255,255,232,193,232,255, 255,233,243,7,0,0,131,125,220,0,15,132,35,1,0,0,131,189,180,254,255,255,0,15,132,220,7,0,0,72,131,189,112,255,255,255,0,15,132,193,0,0,0,72,139,133,200,254,255,255,72,139,128,192,0,0,0,72,139,64,40,72,137,133,104,255,255,255,72,131,189,104,255,255,255, 0,15,132,154,0,0,0,72,139,181,112,255,255,255,72,139,189,200,254,255,255,232,117,128,1,0,72,59,133,104,255,255,255,117,126,139,85,196,139,133,192,254,255,255,65,137,192,65,41,208,139,85,200,139,133,196,254,255,255,137,198,41,214,72,139,189,104,255,255, 255,185,4,0,0,0,68,137,194,232,255,136,1,0,72,139,133,200,254,255,255,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,224,248,131,200,5,136,130,136,0,0,0,72,139,133,200,254,255,255,72,139,144,192,0,0,0,139,69,200,137,66,104,72,139,133,200,254,255,255,72, 139,144,192,0,0,0,139,69,196,137,66,108,233,13,7,0,0,72,139,181,120,255,255,255,72,139,189,200,254,255,255,232,224,204,255,255,133,192,116,24,72,139,181,120,255,255,255,72,139,189,200,254,255,255,232,85,206,255,255,233,222,6,0,0,72,139,181,120,255,255, 255,72,139,189,200,254,255,255,232,23,205,255,255,233,198,6,0,0,72,131,189,112,255,255,255,0,15,132,204,1,0,0,72,139,189,112,255,255,255,232,59,206,3,0,137,69,180,131,125,180,0,15,132,179,1,0,0,139,69,188,131,232,4,59,133,192,254,255,255,15,143,161,1, 0,0,139,69,192,139,85,200,41,208,137,69,176,131,125,180,1,126,13,139,93,180,255,203,137,157,168,254,255,255,235,10,199,133,168,254,255,255,1,0,0,0,139,133,168,254,255,255,137,69,172,139,85,200,139,133,196,254,255,255,41,208,137,193,15,175,77,172,139, 85,176,137,208,193,232,31,1,208,209,248,141,20,1,137,208,193,250,31,247,125,176,137,69,168,139,69,176,131,232,7,137,194,15,175,85,168,137,208,193,250,31,247,125,172,137,194,139,69,200,141,4,2,137,69,164,139,69,168,59,69,180,15,141,12,1,0,0,139,69,164, 255,200,59,133,196,254,255,255,15,143,251,0,0,0,139,69,164,131,192,8,59,133,196,254,255,255,15,140,233,0,0,0,131,189,180,254,255,255,0,15,132,198,0,0,0,139,117,168,72,139,189,112,255,255,255,232,247,210,3,0,137,69,160,72,139,133,200,254,255,255,72,139, 144,192,0,0,0,15,182,130,136,0,0,0,131,224,248,131,200,2,136,130,136,0,0,0,72,139,133,200,254,255,255,72,139,144,192,0,0,0,139,133,196,254,255,255,137,66,104,72,139,133,200,254,255,255,72,139,144,192,0,0,0,139,133,192,254,255,255,137,66,108,131,125,160, 0,116,12,199,133,172,254,255,255,2,0,0,0,235,10,199,133,172,254,255,255,1,0,0,0,139,133,192,254,255,255,139,149,196,254,255,255,139,141,192,254,255,255,139,181,196,254,255,255,72,139,189,200,254,255,255,139,157,172,254,255,255,137,28,36,65,137,193,65, 137,208,137,242,72,137,254,72,141,61,242,220,5,0,184,0,0,0,0,232,248,49,4,0,233,16,5,0,0,72,139,189,200,254,255,255,190,5,0,0,0,232,176,226,255,255,233,250,4,0,0,131,189,180,254,255,255,0,117,18,233,236,4,0,0,131,189,180,254,255,255,0,15,132,76,1,0,0, 72,131,189,112,255,255,255,0,15,132,226,0,0,0,72,139,133,200,254,255,255,72,139,128,192,0,0,0,72,139,64,40,72,137,133,96,255,255,255,72,131,189,96,255,255,255,0,15,132,187,0,0,0,72,139,181,112,255,255,255,72,139,189,200,254,255,255,232,120,125,1,0,72, 59,133,96,255,255,255,15,133,155,0,0,0,131,125,208,0,116,12,199,133,176,254,255,255,3,0,0,0,235,10,199,133,176,254,255,255,1,0,0,0,139,85,196,139,133,192,254,255,255,65,137,192,65,41,208,139,85,200,139,133,196,254,255,255,137,198,41,214,72,139,189,96, 255,255,255,139,141,176,254,255,255,68,137,194,232,225,133,1,0,72,139,133,200,254,255,255,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,224,248,131,200,5,136,130,136,0,0,0,72,139,133,200,254,255,255,72,139,144,192,0,0,0,139,69,200,137,66,104,72,139,133, 200,254,255,255,72,139,144,192,0,0,0,139,69,196,137,66,108,233,239,3,0,0,72,139,181,120,255,255,255,72,139,189,200,254,255,255,232,194,201,255,255,133,192,117,31,72,139,189,200,254,255,255,232,146,205,255,255,72,139,181,120,255,255,255,72,139,189,200, 254,255,255,232,5,202,255,255,72,139,133,200,254,255,255,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,224,248,131,200,1,136,130,136,0,0,0,233,147,3,0,0,72,139,189,200,254,255,255,190,4,0,0,0,232,51,225,255,255,233,125,3,0,0,131,125,204,0,116,29,139, 149,192,254,255,255,139,181,196,254,255,255,72,139,189,200,254,255,255,185,0,0,0,0,232,35,228,255,255,131,125,216,0,117,6,131,125,204,0,116,22,72,139,189,200,254,255,255,190,0,0,0,0,232,238,224,255,255,233,56,3,0,0,131,125,216,0,15,133,116,2,0,0,131, 125,212,0,15,133,106,2,0,0,131,125,220,0,15,133,96,2,0,0,243,15,42,133,196,254,255,255,243,15,17,69,156,243,15,42,133,192,254,255,255,243,15,17,69,152,72,139,189,200,254,255,255,232,70,76,0,0,72,137,133,80,255,255,255,72,139,181,80,255,255,255,72,141, 189,208,254,255,255,232,51,132,255,255,233,250,1,0,0,139,133,40,255,255,255,243,15,42,192,243,15,17,69,148,139,133,44,255,255,255,243,15,42,192,243,15,17,69,144,139,133,48,255,255,255,243,15,42,192,243,15,17,69,140,139,133,52,255,255,255,243,15,42,192, 243,15,17,69,136,243,15,16,69,140,15,40,200,243,15,92,77,148,243,15,16,69,152,243,15,92,69,144,15,40,209,243,15,89,208,243,15,16,69,136,15,40,200,243,15,92,77,144,243,15,16,69,156,243,15,92,69,148,243,15,89,193,15,40,202,243,15,92,200,15,40,193,243,15, 17,69,132,243,15,16,69,140,15,40,200,243,15,92,77,148,243,15,16,69,140,243,15,92,69,148,15,40,209,243,15,89,208,243,15,16,69,136,15,40,200,243,15,92,77,144,243,15,16,69,136,243,15,92,69,144,243,15,89,193,243,15,88,194,243,15,17,69,128,243,15,16,69,132, 15,40,208,243,15,89,85,132,243,15,16,77,128,243,15,16,5,72,68,6,0,243,15,89,193,15,46,208,15,131,13,1,0,0,243,15,16,69,140,15,40,200,243,15,92,77,148,243,15,16,69,156,243,15,92,69,148,15,40,209,243,15,89,208,243,15,16,69,136,15,40,200,243,15,92,77,144, 243,15,16,69,152,243,15,92,69,144,243,15,89,193,15,40,202,243,15,88,200,15,87,192,15,46,193,15,135,193,0,0,0,243,15,16,69,140,15,40,200,243,15,92,77,148,243,15,16,69,140,243,15,92,69,156,15,40,209,243,15,89,208,243,15,16,69,136,15,40,200,243,15,92,77, 144,243,15,16,69,136,243,15,92,69,152,243,15,89,193,15,40,202,243,15,88,200,15,87,192,15,46,193,119,121,131,189,180,254,255,255,0,116,90,139,157,4,255,255,255,72,139,133,232,254,255,255,72,137,198,72,139,189,80,255,255,255,232,66,130,255,255,65,137,196, 68,139,173,228,254,255,255,72,139,133,216,254,255,255,72,137,198,72,139,189,80,255,255,255,232,34,130,255,255,72,139,181,88,255,255,255,72,139,189,80,255,255,255,65,137,217,69,137,224,68,137,233,137,194,232,158,197,255,255,72,139,189,200,254,255,255, 190,6,0,0,0,232,145,222,255,255,233,219,0,0,0,72,141,189,208,254,255,255,232,114,130,255,255,72,137,133,88,255,255,255,72,131,189,88,255,255,255,0,15,133,229,253,255,255,72,139,189,200,254,255,255,190,4,0,0,0,232,90,222,255,255,131,189,180,254,255,255, 0,15,132,156,0,0,0,131,125,220,0,117,12,72,139,189,200,254,255,255,232,80,202,255,255,139,133,192,254,255,255,139,149,196,254,255,255,139,141,192,254,255,255,139,181,196,254,255,255,72,139,189,200,254,255,255,65,137,193,65,137,208,137,242,72,137,254, 72,141,61,100,216,5,0,184,0,0,0,0,232,50,45,4,0,72,139,133,200,254,255,255,72,139,144,192,0,0,0,139,133,196,254,255,255,137,66,104,72,139,133,200,254,255,255,72,139,144,192,0,0,0,139,133,192,254,255,255,137,66,108,72,139,133,200,254,255,255,72,139,144, 192,0,0,0,15,182,130,136,0,0,0,131,224,248,131,200,3,136,130,136,0,0,0,72,129,196,88,1,0,0,91,65,92,65,93,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,243,15,17,93,232,243,15,16,69,232,243,15,44, 192,243,15,16,69,236,243,15,44,200,243,15,16,69,240,243,15,44,208,243,15,16,69,244,243,15,44,240,72,139,125,248,65,185,1,0,0,0,65,137,192,232,30,243,255,255,201,195,85,72,137,229,72,129,236,176,0,0,0,72,137,189,120,255,255,255,72,137,181,112,255,255, 255,137,149,108,255,255,255,72,137,141,96,255,255,255,68,137,133,92,255,255,255,72,139,181,120,255,255,255,72,141,125,128,232,182,128,255,255,235,60,72,139,69,136,72,59,133,112,255,255,255,117,47,139,69,148,59,133,108,255,255,255,117,36,72,139,69,152, 72,59,133,96,255,255,255,117,23,139,69,180,59,133,92,255,255,255,117,12,199,133,88,255,255,255,1,0,0,0,235,30,72,141,125,128,232,185,128,255,255,72,137,69,248,72,131,125,248,0,117,176,199,133,88,255,255,255,0,0,0,0,139,133,88,255,255,255,201,195,85,72, 137,229,83,72,129,236,200,0,0,0,72,137,189,104,255,255,255,137,181,100,255,255,255,137,149,96,255,255,255,137,141,92,255,255,255,68,137,133,88,255,255,255,199,69,236,0,0,0,0,199,69,232,0,0,0,0,199,69,228,0,0,0,0,199,69,224,0,0,0,0,199,69,220,0,0,0,0, 199,69,216,0,0,0,0,199,69,212,0,0,0,0,199,69,208,0,0,0,0,72,139,133,104,255,255,255,72,139,128,192,0,0,0,139,64,104,137,69,204,72,139,133,104,255,255,255,72,139,128,192,0,0,0,139,64,108,137,69,200,131,189,88,255,255,255,0,116,26,72,139,181,104,255,255, 255,72,141,61,143,214,5,0,184,0,0,0,0,232,47,43,4,0,235,78,72,139,133,104,255,255,255,72,139,128,192,0,0,0,139,72,108,72,139,133,104,255,255,255,72,139,128,192,0,0,0,139,120,104,139,133,96,255,255,255,139,149,100,255,255,255,72,139,181,104,255,255,255, 65,137,193,65,137,208,137,250,72,141,61,81,214,5,0,184,0,0,0,0,232,223,42,4,0,72,141,85,228,72,141,77,232,72,141,117,236,139,125,200,68,139,85,204,76,139,157,104,255,255,255,72,141,69,224,72,137,4,36,73,137,209,73,137,200,72,137,241,137,250,68,137,214, 76,137,223,232,187,220,255,255,72,137,69,144,72,131,125,144,0,15,132,39,4,0,0,72,141,85,212,72,141,77,216,72,141,117,220,139,189,96,255,255,255,68,139,149,100,255,255,255,76,139,157,104,255,255,255,72,141,69,208,72,137,4,36,73,137,209,73,137,200,72,137, 241,137,250,68,137,214,76,137,223,232,110,220,255,255,72,137,69,136,72,131,125,136,0,15,132,218,3,0,0,72,139,125,144,232,230,198,3,0,72,137,69,128,72,139,125,136,232,217,198,3,0,72,137,133,120,255,255,255,72,131,125,128,0,15,132,178,3,0,0,72,131,189, 120,255,255,255,0,15,132,164,3,0,0,72,139,69,128,72,59,133,120,255,255,255,15,132,147,3,0,0,72,139,125,128,232,167,196,3,0,137,69,196,131,125,196,0,15,132,125,3,0,0,72,139,189,120,255,255,255,232,198,196,3,0,137,69,192,131,125,192,0,15,132,100,3,0,0, 139,85,228,139,69,236,137,209,41,193,137,200,137,69,188,139,85,212,139,69,220,137,209,41,193,137,200,137,69,176,131,125,196,1,126,87,139,85,236,139,69,204,137,193,41,209,137,202,139,69,196,255,200,137,209,15,175,200,139,85,188,137,208,193,232,31,1,208, 209,248,141,20,1,137,208,193,250,31,247,125,188,137,69,184,139,69,188,131,232,7,137,194,15,175,85,184,139,69,196,255,200,137,193,137,208,193,250,31,247,249,137,194,139,69,236,141,4,2,137,69,180,235,13,199,69,184,0,0,0,0,139,69,236,137,69,180,131,125, 192,1,126,90,139,85,220,139,133,100,255,255,255,137,193,41,209,137,202,139,69,192,255,200,137,209,15,175,200,139,85,176,137,208,193,232,31,1,208,209,248,141,20,1,137,208,193,250,31,247,125,176,137,69,172,139,69,176,131,232,7,137,194,15,175,85,172,139, 69,192,255,200,137,193,137,208,193,250,31,247,249,137,194,139,69,220,141,4,2,137,69,168,235,13,199,69,172,0,0,0,0,139,69,220,137,69,168,139,69,184,59,69,196,124,8,139,69,196,255,200,137,69,184,139,69,172,59,69,192,124,8,139,69,192,255,200,137,69,172, 139,69,172,72,139,141,120,255,255,255,139,85,184,72,139,117,128,72,139,189,104,255,255,255,65,137,192,232,35,252,255,255,133,192,116,22,72,139,189,104,255,255,255,190,4,0,0,0,232,89,217,255,255,233,38,2,0,0,139,117,184,72,139,125,128,232,199,200,3,0, 133,192,116,67,139,117,172,72,139,189,120,255,255,255,232,64,199,3,0,133,192,117,48,131,189,88,255,255,255,0,116,17,72,141,61,219,211,5,0,184,0,0,0,0,232,41,139,4,0,72,139,189,104,255,255,255,190,4,0,0,0,232,6,217,255,255,233,211,1,0,0,131,189,88,255, 255,255,0,15,132,162,1,0,0,139,77,172,72,139,149,120,255,255,255,139,117,184,72,139,125,128,232,26,192,3,0,72,137,133,112,255,255,255,131,125,196,1,126,43,139,85,228,139,69,236,137,209,41,193,137,200,131,232,7,137,194,15,175,85,184,139,69,196,255,200, 137,193,137,208,193,250,31,247,249,137,133,76,255,255,255,235,10,199,133,76,255,255,255,0,0,0,0,139,69,236,3,133,76,255,255,255,131,192,3,137,69,164,139,69,224,137,69,156,131,125,192,1,126,43,139,85,212,139,69,220,137,209,41,193,137,200,131,232,7,137, 194,15,175,85,172,139,69,192,255,200,137,193,137,208,193,250,31,247,249,137,133,80,255,255,255,235,10,199,133,80,255,255,255,0,0,0,0,139,69,220,3,133,80,255,255,255,131,192,3,137,69,160,139,69,216,137,69,152,139,117,184,72,139,125,128,232,170,199,3,0, 133,192,116,12,199,133,84,255,255,255,2,0,0,0,235,10,199,133,84,255,255,255,1,0,0,0,72,139,189,104,255,255,255,232,166,67,0,0,73,137,194,139,85,152,139,77,160,139,117,156,139,125,164,72,139,133,112,255,255,255,72,137,68,36,8,139,133,84,255,255,255,137, 4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,111,205,5,0,184,0,0,0,0,232,245,38,4,0,72,139,189,104,255,255,255,243,15,16,5,134,58,6,0,232,64,143,255,255,72,139,181,120,255,255,255,72,139,189,104,255,255,255,232,254,122,255,255,137, 195,72,139,117,128,72,139,189,104,255,255,255,232,236,122,255,255,137,198,139,69,172,139,85,184,72,139,189,104,255,255,255,65,137,192,137,217,232,124,202,255,255,72,139,189,104,255,255,255,72,141,13,4,208,5,0,72,137,194,72,141,53,151,202,255,255,232, 187,197,255,255,235,36,72,139,189,104,255,255,255,190,5,0,0,0,232,65,215,255,255,235,17,72,139,189,104,255,255,255,190,4,0,0,0,232,46,215,255,255,72,129,196,200,0,0,0,91,201,195,85,72,137,229,72,131,236,64,72,137,125,216,137,117,212,137,85,208,137,77, 204,68,137,69,200,72,139,69,216,72,139,64,48,72,137,69,232,235,118,72,141,69,240,72,141,85,244,72,141,77,248,72,141,117,252,72,139,125,216,76,139,85,232,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,202,184,255,255,139,69,252,57,69,204,124, 54,139,69,244,57,69,212,127,46,139,69,248,57,69,200,124,38,139,69,240,57,69,208,127,30,72,139,117,232,72,139,125,216,232,217,190,255,255,133,192,117,13,72,139,117,232,72,139,125,216,232,46,191,255,255,72,139,69,232,72,139,64,8,72,137,69,232,72,131,125, 232,0,117,131,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,137,85,224,137,77,220,131,125,220,0,15,132,208,0,0,0,72,139,69,232,72,139,128,192,0,0,0,139,64,104,59,69,228,125,25,72,139,69,232,72,139,128,192,0,0,0,139,64,104,137,69,252, 139,69,228,137,69,244,235,23,72,139,69,232,72,139,128,192,0,0,0,139,64,104,137,69,244,139,69,228,137,69,252,72,139,69,232,72,139,128,192,0,0,0,139,64,108,59,69,224,125,25,72,139,69,232,72,139,128,192,0,0,0,139,64,108,137,69,248,139,69,224,137,69,240, 235,23,72,139,69,232,72,139,128,192,0,0,0,139,64,108,137,69,240,139,69,224,137,69,248,139,69,240,139,77,244,139,85,248,139,117,252,72,139,125,232,65,137,192,232,157,254,255,255,72,139,117,232,72,141,61,62,208,5,0,184,0,0,0,0,232,222,36,4,0,72,139,69, 232,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,224,248,136,130,136,0,0,0,235,63,72,139,69,232,72,139,128,192,0,0,0,139,72,108,72,139,69,232,72,139,128,192,0,0,0,139,120,104,139,69,224,139,85,228,72,139,117,232,65,137,193,65,137,208,137,250,72,141, 61,244,207,5,0,184,0,0,0,0,232,130,36,4,0,201,195,85,72,137,229,83,72,131,236,72,72,137,125,200,243,15,17,69,196,243,15,17,77,192,243,15,17,85,188,243,15,16,69,196,243,15,44,192,137,69,236,243,15,16,69,192,243,15,44,192,137,69,232,243,15,16,69,188,243, 15,44,192,137,69,228,72,139,69,200,72,139,128,192,0,0,0,72,133,192,117,22,72,141,61,163,205,5,0,184,0,0,0,0,232,42,139,4,0,233,224,1,0,0,232,27,22,4,0,242,15,17,5,125,68,8,0,139,69,236,137,5,124,68,8,0,139,69,232,137,5,119,68,8,0,72,139,69,200,72,139, 128,192,0,0,0,15,182,128,136,0,0,0,131,224,7,60,2,117,29,139,77,228,139,85,232,139,117,236,72,139,125,200,65,184,1,0,0,0,232,238,247,255,255,233,112,1,0,0,72,139,69,200,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,7,60,3,117,25,139,85,232,139,117, 236,72,139,125,200,185,1,0,0,0,232,232,253,255,255,233,62,1,0,0,72,139,69,200,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,7,60,1,15,133,33,1,0,0,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,133,192,15,132,9,1,0,0,72,139,69,200,72,139,128, 192,0,0,0,72,139,64,32,72,139,64,8,72,133,192,15,133,237,0,0,0,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,139,0,72,137,69,216,72,139,69,216,72,139,16,72,141,5,22,114,8,0,72,139,0,72,57,194,15,133,157,0,0,0,72,139,125,216,232,183,157,255,255,133, 192,15,132,140,0,0,0,72,139,125,216,232,151,14,0,0,72,137,69,208,72,131,125,208,0,116,120,72,141,61,214,204,5,0,232,87,142,3,0,72,137,198,72,139,125,208,72,141,21,11,188,5,0,184,0,0,0,0,232,141,154,3,0,72,139,69,200,72,139,144,192,0,0,0,15,182,130,136, 0,0,0,131,224,248,136,130,136,0,0,0,72,139,125,208,232,255,158,255,255,72,139,128,200,0,0,0,72,139,24,72,139,125,208,232,236,158,255,255,72,137,198,72,139,77,208,72,137,218,72,141,61,57,206,5,0,184,0,0,0,0,232,119,34,4,0,235,59,72,139,69,200,72,139,128, 192,0,0,0,72,139,64,32,72,139,56,72,139,117,200,186,1,0,0,0,232,73,182,255,255,72,139,69,200,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,224,248,136,130,136,0,0,0,72,131,196,72,91,201,195,85,72,137,229,72,131,236,48,72,137,125,216,137,117,212,137,85, 208,199,69,252,0,0,0,0,199,69,248,0,0,0,0,139,5,117,66,8,0,133,192,117,50,72,139,125,216,190,1,0,0,0,232,0,203,255,255,72,139,125,216,72,141,13,234,205,5,0,72,137,194,72,141,53,116,205,255,255,232,22,193,255,255,199,5,63,66,8,0,1,0,0,0,72,139,69,216, 72,139,128,192,0,0,0,72,139,64,32,72,137,69,240,235,96,72,139,69,240,72,139,0,72,139,0,72,137,69,232,72,139,69,240,72,139,56,139,77,208,139,85,212,72,139,117,216,232,226,180,255,255,72,141,5,47,113,8,0,72,139,0,72,57,69,232,117,9,199,69,252,1,0,0,0,235, 23,72,141,5,30,113,8,0,72,139,0,72,57,69,232,117,7,199,69,248,1,0,0,0,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,153,131,125,252,0,116,9,72,139,125,216,232,24,67,0,0,131,125,248,0,116,9,72,139,125,216,232,108,70,0,0,72,139,117,216,72, 141,61,90,199,5,0,184,0,0,0,0,232,40,33,4,0,72,139,69,216,72,139,128,192,0,0,0,72,139,64,32,72,133,192,116,17,72,139,125,216,243,15,16,5,168,52,6,0,232,98,137,255,255,201,195,85,72,137,229,72,129,236,144,0,0,0,72,137,125,168,72,137,117,160,137,85,156, 72,137,77,144,131,125,156,2,15,142,186,7,0,0,72,131,125,168,0,15,132,175,7,0,0,72,139,69,168,72,139,128,192,0,0,0,72,133,192,117,5,233,154,7,0,0,199,5,27,65,8,0,0,0,0,0,72,139,125,144,232,218,12,3,0,15,40,200,15,87,192,15,46,200,15,149,192,15,154,194, 9,208,15,182,192,137,69,244,72,139,125,144,72,131,199,32,232,182,12,3,0,15,40,200,15,87,192,15,46,200,15,149,192,15,154,194,9,208,15,182,192,137,69,240,72,139,69,144,72,131,192,16,139,0,131,248,2,117,21,72,139,69,144,72,131,192,16,72,139,64,8,72,137, 69,216,233,30,1,0,0,72,139,69,144,72,131,192,16,139,0,131,248,1,15,133,251,0,0,0,72,139,69,144,72,131,192,16,243,15,16,64,8,243,15,44,192,137,133,112,255,255,255,131,189,112,255,255,255,10,116,103,131,189,112,255,255,255,10,127,23,131,189,112,255,255, 255,8,116,43,131,189,112,255,255,255,9,116,55,233,143,0,0,0,131,189,112,255,255,255,32,116,98,131,189,112,255,255,255,127,116,107,131,189,112,255,255,255,27,116,62,235,114,72,141,61,219,203,5,0,232,69,139,3,0,72,137,69,216,233,153,0,0,0,72,141,61,208, 203,5,0,232,48,139,3,0,72,137,69,216,233,132,0,0,0,72,141,61,191,203,5,0,232,27,139,3,0,72,137,69,216,235,114,72,141,61,180,203,5,0,232,9,139,3,0,72,137,69,216,235,96,72,141,61,169,203,5,0,232,247,138,3,0,72,137,69,216,235,78,72,141,61,157,203,5,0,232, 229,138,3,0,72,137,69,216,235,60,72,139,69,144,72,131,192,16,243,15,16,64,8,243,72,15,44,192,137,198,72,141,125,224,232,0,141,4,0,72,141,125,224,232,185,138,3,0,72,137,69,216,235,16,72,141,61,102,203,5,0,232,167,138,3,0,72,137,69,216,72,139,69,144,139, 0,131,248,1,117,21,72,139,69,144,243,15,16,64,8,243,15,44,192,137,133,116,255,255,255,235,10,199,133,116,255,255,255,0,0,0,0,139,133,116,255,255,255,137,69,248,72,139,69,144,72,131,192,16,139,0,131,248,1,117,25,72,139,69,144,72,131,192,16,243,15,16,64, 8,243,15,44,192,137,133,120,255,255,255,235,10,199,133,120,255,255,255,0,0,0,0,139,133,120,255,255,255,137,69,252,131,125,252,92,116,12,131,125,252,123,116,6,131,125,252,125,117,25,139,117,252,72,141,61,213,202,5,0,184,0,0,0,0,232,183,125,4,0,233,113, 5,0,0,131,125,252,13,117,7,199,69,252,10,0,0,0,72,139,69,144,72,131,192,16,139,0,131,248,2,117,38,72,139,69,144,72,131,192,16,72,139,64,8,72,139,56,72,141,53,119,202,5,0,232,211,164,5,0,133,192,117,7,199,69,252,10,0,0,0,72,139,5,107,62,8,0,72,133,192, 117,57,72,141,61,133,202,5,0,232,176,137,3,0,72,137,5,83,62,8,0,72,141,61,119,202,5,0,232,157,137,3,0,72,137,5,56,62,8,0,72,141,61,107,202,5,0,232,138,137,3,0,72,137,5,29,62,8,0,131,125,252,30,117,25,199,69,252,0,0,0,0,72,141,61,227,227,5,0,232,106,137, 3,0,72,137,69,216,235,91,131,125,252,31,117,25,199,69,252,0,0,0,0,72,141,61,56,202,5,0,232,75,137,3,0,72,137,69,216,235,60,131,125,252,28,117,25,199,69,252,0,0,0,0,72,141,61,30,202,5,0,232,44,137,3,0,72,137,69,216,235,29,131,125,252,29,117,23,199,69, 252,0,0,0,0,72,141,61,4,202,5,0,232,13,137,3,0,72,137,69,216,72,139,5,172,61,8,0,72,139,64,8,72,133,192,116,27,131,125,244,0,116,21,243,15,42,69,252,72,139,5,145,61,8,0,72,139,120,8,232,191,200,3,0,72,139,5,121,61,8,0,72,139,64,8,72,133,192,116,27,131, 125,244,0,117,21,243,15,42,69,252,72,139,5,94,61,8,0,72,139,120,8,232,148,200,3,0,72,139,5,70,61,8,0,72,139,64,8,72,133,192,116,96,72,139,85,144,72,139,2,72,137,69,176,72,139,66,8,72,137,69,184,199,69,176,1,0,0,0,243,15,42,69,244,243,15,17,69,184,72, 141,69,176,72,131,192,16,199,0,2,0,0,0,72,141,69,176,72,141,80,16,72,139,69,216,72,137,66,8,72,139,5,244,60,8,0,72,139,120,8,72,141,77,176,186,2,0,0,0,190,0,0,0,0,232,155,200,3,0,72,139,69,168,72,139,128,192,0,0,0,72,133,192,15,132,150,3,0,0,72,131,125, 168,0,15,132,46,3,0,0,131,125,244,0,15,132,36,3,0,0,72,139,69,168,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,7,60,1,117,27,72,139,69,168,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,224,248,136,130,136,0,0,0,72,139,69,168,72,139,128,192,0,0,0, 72,139,64,48,72,133,192,116,68,72,139,69,168,72,139,128,192,0,0,0,72,139,64,64,72,133,192,116,48,131,125,252,0,116,42,72,139,69,168,72,139,128,192,0,0,0,72,139,80,64,243,15,42,69,252,72,139,69,168,72,139,128,192,0,0,0,72,139,120,48,255,210,233,152,2, 0,0,72,139,69,168,72,139,128,192,0,0,0,72,139,64,40,72,133,192,15,132,245,0,0,0,131,125,252,0,117,96,72,139,69,216,72,139,56,72,141,53,214,225,5,0,232,93,162,5,0,133,192,116,73,72,139,69,216,72,139,56,72,141,53,51,200,5,0,232,70,162,5,0,133,192,116,50, 72,139,69,216,72,139,56,72,141,53,33,200,5,0,232,47,162,5,0,133,192,116,27,72,139,69,216,72,139,56,72,141,53,15,200,5,0,232,24,162,5,0,133,192,15,133,143,0,0,0,72,139,69,168,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,16,132,192,117,40,72,139,125, 168,190,3,0,0,0,232,200,191,255,255,72,139,125,168,72,141,13,214,199,5,0,72,137,194,72,141,53,225,193,255,255,232,142,186,255,255,72,139,69,168,72,139,128,192,0,0,0,72,139,120,40,72,139,85,216,139,117,252,232,146,106,1,0,72,139,69,168,72,139,128,192, 0,0,0,15,182,128,136,0,0,0,131,224,16,132,192,15,132,161,1,0,0,72,139,125,168,243,15,16,5,181,46,6,0,232,111,131,255,255,233,139,1,0,0,131,125,252,8,116,6,131,125,252,127,117,117,72,139,69,168,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,32,132, 192,116,14,72,139,125,168,232,72,19,0,0,233,88,1,0,0,72,139,69,168,72,139,128,192,0,0,0,72,139,64,32,72,133,192,15,132,64,1,0,0,72,139,125,168,190,2,0,0,0,232,7,191,255,255,72,139,125,168,72,141,13,95,45,6,0,72,137,194,72,141,53,32,193,255,255,232,205, 185,255,255,72,139,125,168,232,233,19,0,0,233,10,1,0,0,72,139,69,216,72,139,56,72,141,53,102,224,5,0,232,237,160,5,0,133,192,117,53,131,125,240,0,116,12,199,133,124,255,255,255,246,255,255,255,235,10,199,133,124,255,255,255,255,255,255,255,72,139,125, 168,139,149,124,255,255,255,190,0,0,0,0,232,16,248,255,255,233,190,0,0,0,72,139,69,216,72,139,56,72,141,53,142,198,5,0,232,161,160,5,0,133,192,117,41,131,125,240,0,116,9,199,69,128,10,0,0,0,235,7,199,69,128,1,0,0,0,72,139,125,168,139,85,128,190,0,0,0, 0,232,205,247,255,255,235,126,72,139,69,216,72,139,56,72,141,53,83,198,5,0,232,97,160,5,0,133,192,117,41,131,125,240,0,116,9,199,69,132,246,255,255,255,235,7,199,69,132,255,255,255,255,72,139,125,168,186,0,0,0,0,139,117,132,232,141,247,255,255,235,62, 72,139,69,216,72,139,56,72,141,53,24,198,5,0,232,33,160,5,0,133,192,117,39,131,125,240,0,116,9,199,69,136,10,0,0,0,235,7,199,69,136,1,0,0,0,72,139,125,168,186,0,0,0,0,139,117,136,232,77,247,255,255,72,131,125,168,0,116,86,131,125,252,0,117,80,72,139, 69,168,15,182,128,232,0,0,0,131,224,32,132,192,116,62,72,139,69,216,72,139,56,186,7,0,0,0,72,141,53,195,197,5,0,232,209,159,5,0,133,192,117,34,131,125,244,0,116,9,199,69,140,0,0,0,0,235,7,199,69,140,4,0,0,0,72,139,125,168,139,117,140,232,241,201,255, 255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,128,192,0,0,0,139,144,156,0,0,0,72,139,69,248,72,139,128,192,0,0,0,139,64,108,137,209,41,193,72,139,69,248,72,139,128,192,0,0,0,139,144,152,0,0,0,72,139,69,248,72,139,128,192, 0,0,0,139,64,104,137,214,41,198,72,139,125,248,137,202,232,145,246,255,255,72,139,69,248,72,139,144,192,0,0,0,72,139,69,248,72,139,128,192,0,0,0,139,128,152,0,0,0,137,66,104,72,139,69,248,72,139,144,192,0,0,0,72,139,69,248,72,139,128,192,0,0,0,139,128, 156,0,0,0,137,66,108,201,195,85,72,137,229,83,72,131,236,56,72,137,125,216,243,15,17,69,212,243,15,17,77,208,243,15,17,85,204,243,15,16,69,204,243,15,44,192,137,69,236,72,139,69,216,72,139,128,192,0,0,0,72,133,192,117,22,72,141,61,191,193,5,0,184,0,0, 0,0,232,70,127,4,0,233,254,2,0,0,243,15,16,69,208,243,15,44,208,243,15,16,69,212,243,15,44,240,72,139,125,216,232,170,39,0,0,72,139,69,216,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,7,60,1,15,133,168,0,0,0,72,139,69,216,72,139,128,192,0,0,0,72, 139,128,144,0,0,0,72,133,192,117,34,72,139,69,216,72,139,152,192,0,0,0,72,141,53,180,254,255,255,72,139,125,216,232,1,196,3,0,72,137,131,144,0,0,0,72,139,69,216,72,139,128,192,0,0,0,72,139,184,144,0,0,0,232,60,196,3,0,72,139,69,216,72,139,128,192,0,0, 0,72,139,184,144,0,0,0,242,15,16,5,36,45,6,0,232,176,197,3,0,72,139,69,216,72,139,144,192,0,0,0,243,15,16,69,212,243,15,44,192,137,130,152,0,0,0,72,139,69,216,72,139,144,192,0,0,0,243,15,16,69,208,243,15,44,192,137,130,156,0,0,0,233,3,2,0,0,72,139,69, 216,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,7,60,3,117,37,243,15,16,69,208,243,15,44,208,243,15,16,69,212,243,15,44,240,72,139,125,216,185,0,0,0,0,232,109,241,255,255,233,197,1,0,0,72,139,69,216,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131, 224,7,60,2,117,43,243,15,16,69,208,243,15,44,208,243,15,16,69,212,243,15,44,240,72,139,125,216,65,184,0,0,0,0,185,0,0,0,0,232,253,234,255,255,233,129,1,0,0,72,139,69,216,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,7,60,4,15,133,183,0,0,0,72,139, 69,216,72,139,128,192,0,0,0,72,139,64,56,72,133,192,117,17,72,141,61,25,195,5,0,184,0,0,0,0,232,157,125,4,0,72,139,69,216,72,139,128,192,0,0,0,72,139,80,56,72,139,69,216,72,139,128,192,0,0,0,139,64,108,243,15,42,200,243,15,16,69,208,15,40,208,243,15, 92,209,72,139,69,216,72,139,128,192,0,0,0,139,64,104,243,15,42,200,243,15,16,69,212,243,15,92,193,72,139,69,216,72,139,128,192,0,0,0,72,139,64,48,72,137,199,15,40,202,255,210,72,139,69,216,72,139,144,192,0,0,0,243,15,16,69,212,243,15,44,192,137,66,104, 72,139,69,216,72,139,144,192,0,0,0,243,15,16,69,208,243,15,44,192,137,66,108,233,173,0,0,0,72,139,69,216,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,7,60,5,117,104,72,139,69,216,72,139,128,192,0,0,0,72,139,64,40,72,137,69,224,72,131,125,224,0,116, 122,72,139,69,216,72,139,128,192,0,0,0,139,64,108,243,15,42,200,243,15,16,69,208,243,15,92,193,243,15,44,208,72,139,69,216,72,139,128,192,0,0,0,139,64,104,243,15,42,200,243,15,16,69,212,243,15,92,193,243,15,44,240,72,139,125,224,185,2,0,0,0,232,66,106, 1,0,235,44,243,15,16,69,208,243,15,44,208,243,15,16,69,212,243,15,44,240,139,69,236,72,139,125,216,65,185,0,0,0,0,65,137,192,185,0,0,0,0,232,242,219,255,255,72,139,69,216,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,200,8,136,130,136,0,0,0,72,131,196, 56,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,139,128,192,0,0,0,72,133,192,116,95,72,141,85,248,72,141,117,252,72,139,125,232,232,68,36,0,0,139,69,252,133,192,117,7,139,69,248,133,192,116,64,72,139,69,232,72,139,144,192,0, 0,0,15,182,130,136,0,0,0,131,224,248,131,200,1,136,130,136,0,0,0,72,139,69,232,72,139,144,192,0,0,0,139,69,252,137,66,104,72,139,69,232,72,139,144,192,0,0,0,139,69,248,137,66,108,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139, 69,240,72,139,0,15,182,0,132,192,116,30,72,139,69,240,72,139,16,72,139,117,248,72,141,61,12,193,5,0,184,0,0,0,0,232,122,20,4,0,235,21,72,139,117,248,72,141,61,21,193,5,0,184,0,0,0,0,232,99,20,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72, 139,69,232,72,139,128,224,0,0,0,72,133,192,116,28,72,139,69,232,15,182,128,232,0,0,0,131,224,4,132,192,116,10,72,139,69,232,72,137,69,224,235,93,72,139,69,232,72,139,64,48,72,137,69,248,235,64,72,139,69,248,72,139,16,72,141,5,5,99,8,0,72,139,0,72,57, 194,117,30,72,139,125,248,232,155,255,255,255,72,137,69,240,72,131,125,240,0,116,10,72,139,69,240,72,137,69,224,235,27,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,185,72,199,69,224,0,0,0,0,72,139,69,224,201,195,85,72,137,229,72,131,236, 32,72,137,125,232,243,15,17,69,228,72,141,5,190,98,8,0,72,139,0,72,137,69,248,235,87,72,139,125,248,232,59,255,255,255,72,137,69,240,72,131,125,240,0,116,52,72,139,125,240,243,15,16,5,37,39,6,0,232,98,202,255,255,72,139,125,240,232,209,143,255,255,72, 137,198,72,139,85,240,72,141,61,49,192,5,0,184,0,0,0,0,232,95,19,4,0,235,75,72,139,69,248,72,139,128,216,0,0,0,72,137,69,248,72,131,125,248,0,117,162,15,87,192,15,46,69,228,117,34,122,32,72,141,5,173,100,8,0,139,0,133,192,116,19,72,141,61,40,192,5,0, 184,0,0,0,0,232,30,19,4,0,235,10,191,0,0,0,0,232,65,38,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243,15,16,69,228,243,15,44,192,137,69,252,72,139,69,232,72,139,64,72,72,133,192,116,29,131,125,252,0,116,6,131,125,252,1,117, 17,72,139,125,232,15,87,192,232,176,201,255,255,233,120,1,0,0,131,125,252,0,15,133,159,0,0,0,72,139,125,232,232,85,254,255,255,72,137,69,240,72,131,125,240,0,116,74,72,141,61,148,188,5,0,232,21,126,3,0,72,137,198,72,139,125,240,72,141,21,201,171,5,0, 184,0,0,0,0,232,75,138,3,0,72,139,125,240,232,216,142,255,255,72,137,198,72,139,85,240,72,141,61,168,191,5,0,184,0,0,0,0,232,102,18,4,0,233,16,1,0,0,72,141,5,210,99,8,0,139,0,133,192,116,38,72,139,125,240,232,165,142,255,255,72,137,198,72,139,85,240, 72,141,61,173,191,5,0,184,0,0,0,0,232,51,18,4,0,233,221,0,0,0,72,139,125,232,232,22,181,3,0,233,207,0,0,0,131,125,252,1,117,14,72,139,125,232,232,2,181,3,0,233,187,0,0,0,131,125,252,2,15,133,141,0,0,0,72,139,125,232,15,87,192,232,85,122,255,255,235,12, 72,139,69,232,72,139,64,72,72,137,69,232,72,139,69,232,72,139,64,72,72,133,192,117,231,72,139,125,232,232,113,253,255,255,72,137,69,240,72,131,125,240,0,116,71,72,141,61,176,187,5,0,232,49,125,3,0,72,137,198,72,139,125,240,72,141,21,229,170,5,0,184,0, 0,0,0,232,103,137,3,0,72,139,125,232,232,244,141,255,255,72,137,198,72,139,85,240,72,141,61,196,190,5,0,184,0,0,0,0,232,130,17,4,0,235,47,72,139,125,232,232,104,180,3,0,235,36,131,125,252,3,117,30,72,139,125,232,15,87,192,232,194,121,255,255,243,15,16, 5,251,36,6,0,191,0,0,0,0,232,139,253,255,255,201,195,85,72,137,229,72,131,196,128,72,137,125,136,72,139,5,164,1,8,0,72,139,16,72,137,85,248,49,210,72,139,125,136,232,132,141,255,255,72,137,69,152,72,139,125,152,232,237,236,4,0,72,139,69,152,139,128,208, 0,0,0,72,141,125,160,65,137,192,72,141,13,168,190,5,0,186,80,0,0,0,190,0,0,0,0,184,0,0,0,0,232,57,149,5,0,72,139,117,152,72,139,125,152,72,141,85,160,232,236,233,4,0,72,139,5,65,1,8,0,72,139,85,248,72,51,16,116,5,232,25,149,5,0,201,195,85,72,137,229, 72,131,236,64,72,137,125,216,72,137,117,208,72,139,69,208,139,0,137,69,252,139,5,42,49,8,0,57,69,252,15,140,254,0,0,0,72,139,69,216,72,139,64,48,72,137,69,240,199,69,248,0,0,0,0,233,219,0,0,0,72,199,69,232,0,0,0,0,72,139,125,240,232,28,173,3,0,72,137, 69,232,72,131,125,232,0,15,132,172,0,0,0,139,21,235,48,8,0,72,139,53,236,48,8,0,72,139,69,232,72,139,120,16,232,232,98,3,0,133,192,15,132,138,0,0,0,139,5,193,48,8,0,57,69,252,127,22,139,5,182,48,8,0,57,69,252,117,116,139,5,175,48,8,0,57,69,248,126,105, 139,69,252,137,5,157,48,8,0,139,69,248,137,5,152,48,8,0,72,139,125,216,232,238,172,255,255,72,141,61,244,185,5,0,232,117,123,3,0,72,137,198,72,139,125,216,72,141,21,41,169,5,0,184,0,0,0,0,232,171,135,3,0,72,139,125,216,243,15,16,5,123,35,6,0,232,117, 27,0,0,72,139,117,240,72,139,125,216,232,50,169,255,255,199,69,204,1,0,0,0,233,139,0,0,0,72,139,69,240,72,139,64,8,72,137,69,240,255,69,248,72,131,125,240,0,15,133,26,255,255,255,72,139,69,216,72,139,64,48,72,137,69,240,199,69,248,0,0,0,0,235,78,72,139, 69,240,72,139,16,72,141,5,120,94,8,0,72,139,0,72,57,194,117,41,72,139,69,208,139,0,141,80,1,72,139,69,208,137,16,72,139,125,240,72,139,117,208,232,147,254,255,255,133,192,116,9,199,69,204,1,0,0,0,235,29,72,139,69,240,72,139,64,8,72,137,69,240,255,69, 248,72,131,125,240,0,117,171,199,69,204,0,0,0,0,139,69,204,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,243,15,17,69,220,199,69,252,0,0,0,0,72,139,125,224,232,245,99,4,0,72,137,69,240,72,139,5,141,47,8,0,72,133,192,117,12,232,223, 2,3,0,72,137,5,124,47,8,0,72,139,69,240,72,139,56,232,98,149,5,0,72,137,194,72,139,69,240,72,139,48,72,139,61,95,47,8,0,232,68,4,3,0,199,5,64,47,8,0,0,0,0,0,199,5,58,47,8,0,255,255,255,255,243,15,16,69,220,243,15,44,192,137,5,47,47,8,0,72,141,21,184, 93,8,0,72,139,69,232,72,137,2,72,141,117,252,72,139,125,232,232,195,253,255,255,133,192,117,33,72,139,61,17,47,8,0,232,130,24,3,0,72,139,117,232,72,141,61,47,188,5,0,184,0,0,0,0,232,103,14,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,199,69, 252,0,0,0,0,72,139,5,219,46,8,0,72,133,192,116,73,72,141,5,87,93,8,0,72,139,0,72,133,192,117,2,235,56,72,141,5,70,93,8,0,72,139,56,72,141,117,252,232,89,253,255,255,133,192,117,33,72,139,61,167,46,8,0,232,24,24,3,0,72,139,117,232,72,141,61,197,187,5, 0,184,0,0,0,0,232,253,13,4,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,72,72,133,192,116,29,72,139,69,248,72,139,120,72,232,68,42,0,0,72,137,199,243,15,16,5,106,33,6,0,232,167,196,255,255,201,195,85,72,137,229,72,131, 236,48,72,137,125,232,72,137,117,224,72,139,69,232,72,139,64,48,72,137,69,248,233,151,0,0,0,72,139,69,248,72,59,69,224,117,81,72,139,125,232,232,114,170,255,255,72,139,125,232,232,245,41,0,0,72,137,199,243,15,16,5,27,33,6,0,232,88,196,255,255,72,139, 125,232,232,220,41,0,0,72,137,199,243,15,16,5,2,33,6,0,232,252,24,0,0,72,139,117,248,72,139,125,232,232,185,166,255,255,199,69,220,1,0,0,0,235,78,72,139,69,248,72,139,16,72,141,5,49,92,8,0,72,139,0,72,57,194,117,26,72,139,125,248,72,139,117,224,232,97, 255,255,255,133,192,116,9,199,69,220,1,0,0,0,235,30,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,15,133,94,255,255,255,199,69,220,0,0,0,0,139,69,220,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,141,5,241,91,8,0,72,139,0,72,137,69, 248,235,32,72,139,117,232,72,139,125,248,232,8,255,255,255,133,192,117,39,72,139,69,248,72,139,128,216,0,0,0,72,137,69,248,72,131,125,248,0,117,217,72,141,61,130,186,5,0,184,0,0,0,0,232,190,107,4,0,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72, 129,236,232,0,0,0,72,137,189,8,255,255,255,72,199,69,192,0,0,0,0,72,199,69,184,0,0,0,0,72,199,69,176,0,0,0,0,72,199,69,168,0,0,0,0,72,139,133,8,255,255,255,72,139,128,192,0,0,0,72,133,192,15,132,31,2,0,0,72,139,133,8,255,255,255,72,139,64,48,72,137,69, 160,233,180,0,0,0,72,139,69,160,72,139,64,8,72,137,69,152,72,139,117,160,72,139,189,8,255,255,255,232,31,165,255,255,133,192,116,71,72,131,125,184,0,116,34,72,139,85,184,72,139,69,160,72,137,66,8,72,139,69,160,72,137,69,184,72,139,69,160,72,199,64,8, 0,0,0,0,235,99,72,139,69,160,72,137,69,184,72,139,69,184,72,137,69,192,72,139,69,184,72,199,64,8,0,0,0,0,235,69,72,131,125,168,0,116,34,72,139,85,168,72,139,69,160,72,137,66,8,72,139,69,160,72,137,69,168,72,139,69,160,72,199,64,8,0,0,0,0,235,28,72,139, 69,160,72,137,69,168,72,139,69,168,72,137,69,176,72,139,69,168,72,199,64,8,0,0,0,0,72,139,69,152,72,137,69,160,72,131,125,160,0,15,133,65,255,255,255,72,131,125,176,0,117,17,72,139,149,8,255,255,255,72,139,69,192,72,137,66,48,235,27,72,139,149,8,255, 255,255,72,139,69,176,72,137,66,48,72,139,85,168,72,139,69,192,72,137,66,8,72,139,133,8,255,255,255,72,139,128,192,0,0,0,72,139,120,72,232,101,0,3,0,72,139,181,8,255,255,255,72,141,189,16,255,255,255,232,146,95,255,255,233,207,0,0,0,72,139,133,24,255, 255,255,72,137,198,72,139,189,8,255,255,255,232,4,164,255,255,137,69,204,72,139,133,40,255,255,255,72,137,198,72,139,189,8,255,255,255,232,235,163,255,255,137,69,200,139,69,204,59,69,200,15,132,145,0,0,0,139,157,68,255,255,255,72,139,133,40,255,255,255, 72,137,198,72,139,189,8,255,255,255,232,247,168,255,255,65,137,196,68,139,173,36,255,255,255,72,139,133,24,255,255,255,72,137,198,72,139,189,8,255,255,255,232,215,168,255,255,65,137,198,72,141,61,2,180,5,0,232,4,118,3,0,73,137,199,72,141,61,220,175,5, 0,232,245,117,3,0,72,137,194,72,139,133,8,255,255,255,72,139,128,192,0,0,0,72,139,120,72,137,92,36,8,68,137,36,36,69,137,233,69,137,240,76,137,249,72,141,53,238,205,5,0,184,0,0,0,0,232,149,11,3,0,72,141,189,16,255,255,255,232,252,94,255,255,72,137,69, 144,72,131,125,144,0,15,133,22,255,255,255,72,129,196,232,0,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,61,96,175,5,0,232,121,117,3,0,72,137,198,72,139,125,248,232,58,176,3,0,72,139,69,248,72,139,128,192,0, 0,0,72,139,120,72,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,232,122,24,3,0,72,141,61,37,175,5,0,232,62,117,3,0,72,137,198,72,139,125,248,232,3,177,3,0,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,184,0,0,0,72,137,189,56,255,255,255,232,134,253, 2,0,72,137,69,184,72,139,133,56,255,255,255,72,139,64,48,72,137,69,200,235,45,72,139,117,200,72,139,189,56,255,255,255,232,120,162,255,255,133,192,116,13,72,139,117,184,72,139,125,200,232,16,173,3,0,72,139,69,200,72,139,64,8,72,137,69,200,72,131,125, 200,0,117,204,72,139,181,56,255,255,255,72,141,189,64,255,255,255,232,180,93,255,255,233,203,0,0,0,72,139,133,72,255,255,255,72,137,198,72,139,189,56,255,255,255,232,38,162,255,255,133,192,15,132,173,0,0,0,72,139,133,88,255,255,255,72,137,198,72,139, 189,56,255,255,255,232,8,162,255,255,133,192,15,132,143,0,0,0,68,139,165,116,255,255,255,72,139,133,88,255,255,255,72,137,198,72,139,189,56,255,255,255,186,1,0,0,0,232,91,167,255,255,65,137,197,68,139,181,84,255,255,255,72,139,133,72,255,255,255,72,137, 198,72,139,189,56,255,255,255,186,1,0,0,0,232,54,167,255,255,65,137,199,72,141,61,27,178,5,0,232,29,116,3,0,72,137,195,72,141,61,245,173,5,0,232,14,116,3,0,72,139,125,184,68,137,100,36,8,68,137,44,36,69,137,241,69,137,248,72,137,217,72,137,194,72,141, 53,20,204,5,0,184,0,0,0,0,232,187,9,3,0,72,141,189,64,255,255,255,232,34,93,255,255,72,137,69,192,72,131,125,192,0,15,133,26,255,255,255,72,139,69,184,72,129,196,184,0,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,32,72,137,125,232, 72,139,69,232,72,139,128,192,0,0,0,72,133,192,15,132,134,0,0,0,72,139,69,232,72,139,128,192,0,0,0,72,139,64,32,72,133,192,117,2,235,112,72,139,61,40,40,8,0,232,34,252,2,0,72,139,125,232,232,56,254,255,255,72,137,5,19,40,8,0,72,139,69,232,72,139,128,192, 0,0,0,72,139,64,40,72,133,192,116,64,72,139,69,232,72,139,128,192,0,0,0,72,139,120,40,72,141,85,252,72,141,117,240,232,173,68,1,0,72,141,61,193,181,5,0,232,54,11,4,0,72,139,85,240,139,117,252,72,141,61,191,181,5,0,184,0,0,0,0,232,151,7,4,0,201,195,85, 72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,32,132,192,15,132,196,0,0,0,72,139,69,248,72,139,128,192,0,0,0,139,64,124,243,15,42,208,72,139,69,248,72,139,128,192,0,0,0,139,64,120,243,15,42,224, 72,139,69,248,72,139,128,192,0,0,0,139,64,116,243,15,42,200,72,139,69,248,72,139,128,192,0,0,0,139,64,112,243,15,42,192,72,139,125,248,15,40,218,15,40,212,232,29,169,255,255,72,139,125,248,243,15,16,5,169,26,6,0,232,99,111,255,255,72,139,69,248,72,139, 128,192,0,0,0,68,139,64,124,72,139,69,248,72,139,128,192,0,0,0,139,72,120,72,139,69,248,72,139,128,192,0,0,0,139,80,116,72,139,69,248,72,139,128,192,0,0,0,139,112,112,72,139,125,248,232,118,168,255,255,72,139,125,248,72,141,13,238,180,5,0,72,137,194, 72,141,53,203,169,255,255,232,221,165,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,216,232,51,133,255,255,137,69,252,72,139,69,216,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,32,132,192,15,132,179,0,0,0,72,139,69,216,72,139,128,192,0, 0,0,139,64,124,243,15,42,208,72,139,69,216,72,139,128,192,0,0,0,139,64,120,243,15,42,224,72,139,69,216,72,139,128,192,0,0,0,139,64,116,243,15,42,200,72,139,69,216,72,139,128,192,0,0,0,139,64,112,243,15,42,192,72,139,125,216,15,40,218,15,40,212,232,38, 168,255,255,72,139,69,216,72,139,128,192,0,0,0,68,139,64,124,72,139,69,216,72,139,128,192,0,0,0,139,72,120,72,139,69,216,72,139,128,192,0,0,0,139,80,116,72,139,69,216,72,139,128,192,0,0,0,139,112,112,72,139,125,216,232,144,167,255,255,72,139,125,216, 72,141,13,8,180,5,0,72,137,194,72,141,53,229,168,255,255,232,247,164,255,255,72,139,69,216,72,139,128,192,0,0,0,72,139,64,40,72,133,192,116,103,72,141,5,255,86,8,0,72,199,0,0,0,0,0,72,139,125,216,232,122,162,255,255,72,141,5,232,86,8,0,72,139,0,72,133, 192,116,65,72,139,69,216,72,139,64,48,72,137,69,240,235,44,72,139,69,240,72,141,21,199,86,8,0,72,139,18,72,57,208,117,13,72,139,117,240,72,139,125,216,232,195,158,255,255,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,205,72,139,69,216, 72,139,64,48,72,137,69,240,235,52,72,139,69,240,72,139,64,8,72,137,69,232,72,139,117,240,72,139,125,216,232,35,158,255,255,133,192,116,15,72,139,117,240,72,139,125,216,232,96,28,0,0,235,198,72,139,69,232,72,137,69,240,72,131,125,240,0,117,197,139,125, 252,232,184,131,255,255,72,139,125,216,243,15,16,5,138,24,6,0,232,68,109,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,139,128,192,0,0,0,72,133,192,15,132,33,1,0,0,72,139,69,232,72,139,128,192,0,0,0,72,133,192,116,39,72, 139,69,232,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,32,132,192,116,14,72,139,125,232,232,252,252,255,255,233,234,0,0,0,72,139,69,232,72,139,128,192,0,0,0,72,139,64,40,72,133,192,116,99,72,139,69,232,72,139,128,192,0,0,0,72,139,120,40,72,141, 85,252,72,141,117,240,232,78,65,1,0,139,69,252,133,192,15,132,175,0,0,0,72,139,125,232,232,11,252,255,255,72,139,69,232,72,139,128,192,0,0,0,72,139,120,40,72,141,21,130,253,7,0,190,127,0,0,0,232,124,83,1,0,72,139,125,232,243,15,16,5,188,23,6,0,232,118, 108,255,255,235,115,72,139,69,232,72,139,128,192,0,0,0,72,133,192,116,99,72,139,69,232,72,139,128,192,0,0,0,72,139,64,32,72,133,192,116,79,72,139,125,232,190,1,0,0,0,232,56,168,255,255,72,139,125,232,72,141,13,26,178,5,0,72,137,194,72,141,53,81,170,255, 255,232,254,162,255,255,72,139,125,232,232,131,251,255,255,72,139,125,232,232,17,253,255,255,72,139,117,232,72,141,61,212,169,5,0,184,0,0,0,0,232,162,3,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,139,128,192,0,0,0,72,133,192, 116,80,72,139,69,232,72,139,128,192,0,0,0,72,139,64,32,72,137,69,248,235,52,72,139,69,248,72,139,0,72,139,16,72,141,5,86,82,8,0,72,139,0,72,57,194,117,15,72,139,69,248,72,139,0,72,137,199,232,179,119,255,255,72,139,69,248,72,139,64,8,72,137,69,248,72, 131,125,248,0,117,197,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,137,117,192,232,187,129,255,255,137,69,252,72,139,125,200,243,15,16,5,174,22,6,0,232,168,14,0,0,72,139,125,200,232,227,159,255,255,72,139,69,200,72,139,64,48,72,137,69,216,199, 69,248,0,0,0,0,235,15,255,69,248,72,139,69,216,72,139,64,8,72,137,69,216,72,131,125,216,0,117,234,139,69,248,137,5,100,35,8,0,72,139,69,200,72,137,5,97,35,8,0,72,141,61,18,168,5,0,232,43,110,3,0,72,137,198,72,139,125,200,232,236,168,3,0,72,139,125,192, 185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,232,55,17,3,0,72,141,61,226,167,5,0,232,251,109,3,0,72,137,198,72,139,125,200,232,192,169,3,0,72,139,69,200,72,139,64,48,72,137,69,216,199,69,244,0,0,0,0,235,36,139,69,244,59,69,248,124,13,72,139,117,216,72,139,125, 200,232,184,155,255,255,72,139,69,216,72,139,64,8,72,137,69,216,255,69,244,72,131,125,216,0,117,213,72,199,5,206,34,8,0,0,0,0,0,139,125,252,232,232,128,255,255,72,139,125,200,243,15,16,5,186,21,6,0,232,116,106,255,255,72,139,117,200,72,141,61,50,168, 5,0,184,0,0,0,0,232,0,2,4,0,72,139,125,200,232,87,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,128,192,0,0,0,72,133,192,116,85,72,139,69,248,72,139,128,192,0,0,0,72,139,64,40,72,133,192,116,14,72,141,61,4,176,5, 0,232,64,5,4,0,235,51,72,139,125,248,232,225,174,255,255,72,139,125,248,72,141,13,249,175,5,0,72,137,194,72,141,53,2,175,255,255,232,201,160,255,255,72,139,53,181,33,8,0,72,139,125,248,232,82,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125, 232,72,139,69,232,72,139,128,192,0,0,0,72,133,192,15,132,196,0,0,0,72,139,69,232,72,139,128,192,0,0,0,15,182,128,136,0,0,0,131,224,7,132,192,15,133,167,0,0,0,72,139,69,232,72,139,128,192,0,0,0,72,139,64,32,72,133,192,15,132,143,0,0,0,72,139,125,232,232, 231,248,255,255,72,139,125,232,232,78,174,255,255,72,139,125,232,72,141,13,108,175,5,0,72,137,194,72,141,53,111,174,255,255,232,54,160,255,255,72,139,53,34,33,8,0,72,139,125,232,232,191,253,255,255,72,139,69,232,72,139,128,192,0,0,0,72,139,64,32,72,137, 69,248,235,38,72,139,69,248,72,139,56,72,139,117,232,185,10,0,0,0,186,10,0,0,0,232,6,148,255,255,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,211,72,139,125,232,243,15,16,5,67,20,6,0,232,253,104,255,255,201,195,85,72,137,229,72,131,236, 32,72,137,125,232,72,139,69,232,72,139,128,192,0,0,0,72,133,192,15,132,132,0,0,0,72,139,69,232,15,182,128,232,0,0,0,131,224,32,132,192,117,17,72,139,125,232,243,15,16,5,254,19,6,0,232,248,11,0,0,72,139,125,232,186,0,0,0,0,190,0,0,0,0,232,198,158,255, 255,133,192,117,11,72,139,125,232,232,28,157,255,255,235,63,72,139,69,232,72,139,64,48,72,137,69,248,235,42,72,139,117,248,72,139,125,232,232,31,153,255,255,133,192,117,13,72,139,117,248,72,139,125,232,232,116,153,255,255,72,139,69,248,72,139,64,8,72, 137,69,248,72,131,125,248,0,117,207,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,69,200,72,139,128,192,0,0,0,72,139,64,40,72,133,192,15,132,239,0,0,0,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,139,0,72,137,69,232,72,131,125,232,0, 15,132,26,1,0,0,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,139,64,8,72,133,192,15,133,254,0,0,0,72,139,125,200,190,0,0,0,0,232,193,157,255,255,137,69,252,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,139,48,72,139,125,200,232,153,83,255, 255,137,69,248,72,139,125,200,232,64,156,255,255,72,139,69,200,72,139,64,48,72,137,69,240,235,40,72,139,69,240,72,59,69,232,117,18,72,139,117,240,72,139,125,200,232,161,152,255,255,233,156,0,0,0,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240, 0,117,209,72,139,69,200,72,139,64,48,72,137,69,240,235,38,72,139,69,240,72,139,64,8,72,133,192,117,13,72,139,117,240,72,139,125,200,232,97,152,255,255,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,211,235,76,72,139,69,200,72,139,128,192, 0,0,0,72,139,64,32,72,133,192,116,56,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,139,64,8,72,133,192,117,32,72,139,69,200,72,139,128,192,0,0,0,72,139,64,32,72,139,56,72,139,117,200,186,1,0,0,0,232,139,146,255,255,201,195,85,72,137,229,83,72,129, 236,136,0,0,0,72,137,125,168,243,15,17,69,164,243,15,17,77,160,243,15,17,85,156,243,15,17,93,152,243,15,16,69,164,243,15,44,192,137,69,236,243,15,16,69,160,243,15,44,192,137,69,232,243,15,16,69,156,243,15,44,192,137,69,228,243,15,16,69,152,243,15,44, 192,137,69,224,72,199,69,208,0,0,0,0,72,199,69,200,0,0,0,0,139,69,228,137,69,220,139,69,236,137,69,216,72,139,5,190,30,8,0,72,59,69,168,117,18,139,5,170,30,8,0,1,69,236,139,5,161,30,8,0,1,69,228,72,139,69,168,72,139,64,48,72,137,69,208,235,32,72,139, 69,208,72,139,64,8,72,133,192,15,132,175,1,0,0,72,139,69,208,72,139,64,8,72,137,69,208,255,77,236,131,125,236,0,117,218,72,139,69,168,72,139,64,48,72,137,69,200,235,32,72,139,69,200,72,139,64,8,72,133,192,15,132,123,1,0,0,72,139,69,200,72,139,64,8,72, 137,69,200,255,77,228,131,125,228,0,117,218,72,139,125,208,232,57,154,3,0,72,137,69,192,72,131,125,192,0,15,132,78,1,0,0,72,139,125,200,232,33,154,3,0,72,137,69,184,72,131,125,184,0,15,132,54,1,0,0,72,139,69,208,72,139,16,72,141,5,184,77,8,0,72,139,0, 72,57,194,117,45,72,139,69,192,15,182,64,46,131,224,3,60,1,117,30,235,14,72,139,125,192,190,0,0,0,0,232,235,144,3,0,72,139,125,192,232,220,151,3,0,59,69,232,126,228,72,139,69,200,72,139,16,72,141,5,117,77,8,0,72,139,0,72,57,194,117,54,72,139,69,184,15, 182,64,46,131,224,3,60,1,117,39,235,23,72,139,117,184,72,139,125,184,185,0,0,0,0,186,0,0,0,0,232,160,132,3,0,72,139,125,184,232,200,151,3,0,59,69,224,126,219,139,77,224,72,139,85,184,139,117,232,72,139,125,192,232,214,148,3,0,72,137,69,176,72,131,125, 176,0,15,132,133,0,0,0,72,139,125,168,232,42,105,255,255,133,192,15,132,3,1,0,0,139,117,232,72,139,125,192,232,237,156,3,0,133,192,116,9,199,69,132,2,0,0,0,235,7,199,69,132,1,0,0,0,72,139,125,168,232,242,24,0,0,72,137,198,72,139,69,176,72,137,68,36,8, 139,69,132,137,4,36,65,185,0,0,0,0,65,184,0,0,0,0,185,0,0,0,0,186,0,0,0,0,72,141,61,196,162,5,0,184,0,0,0,0,232,74,252,3,0,72,139,117,192,72,139,125,168,232,187,107,255,255,233,143,0,0,0,72,131,125,200,0,116,18,72,139,69,200,72,139,56,232,37,100,3,0, 72,137,69,136,235,11,72,141,29,126,170,5,0,72,137,93,136,72,131,125,208,0,116,18,72,139,69,208,72,139,56,232,1,100,3,0,72,137,69,144,235,11,72,141,5,90,170,5,0,72,137,69,144,72,139,69,168,72,139,128,200,0,0,0,72,139,56,139,69,224,139,85,220,139,77,232, 139,117,216,72,139,93,136,72,137,92,36,8,72,139,93,144,72,137,28,36,65,137,193,65,137,208,137,242,72,137,254,72,141,61,35,170,5,0,184,0,0,0,0,232,199,90,4,0,72,129,196,136,0,0,0,91,201,195,85,72,137,229,72,129,236,0,1,0,0,72,137,189,8,255,255,255,72, 139,133,8,255,255,255,72,139,128,192,0,0,0,72,133,192,116,23,72,139,133,8,255,255,255,72,139,128,192,0,0,0,72,139,64,32,72,133,192,117,12,199,133,4,255,255,255,1,0,0,0,235,10,199,133,4,255,255,255,0,0,0,0,139,133,4,255,255,255,137,69,208,131,125,208, 0,15,148,192,15,182,240,72,139,189,8,255,255,255,232,51,164,255,255,72,139,189,8,255,255,255,72,141,13,26,167,5,0,72,137,194,72,141,53,164,166,255,255,232,70,154,255,255,72,139,133,8,255,255,255,72,139,64,48,72,137,69,184,233,169,1,0,0,131,125,208,0, 117,24,72,139,117,184,72,139,189,8,255,255,255,232,234,147,255,255,133,192,15,132,127,1,0,0,72,141,69,240,72,141,85,244,72,141,77,248,72,141,117,252,72,139,189,8,255,255,255,76,139,85,184,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,119, 141,255,255,72,139,133,8,255,255,255,72,139,64,48,72,137,69,176,235,125,131,125,208,0,117,20,72,139,117,176,72,139,189,8,255,255,255,232,140,147,255,255,133,192,116,87,72,141,69,224,72,141,85,228,72,141,77,232,72,141,117,236,72,139,189,8,255,255,255, 76,139,85,176,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,29,141,255,255,139,69,248,141,80,17,139,69,232,57,194,124,27,139,69,248,141,80,239,139,69,232,57,194,127,14,139,85,236,139,69,252,57,194,15,140,206,0,0,0,72,139,69,176,72,139,64, 8,72,137,69,176,72,131,125,176,0,15,133,120,255,255,255,72,139,133,8,255,255,255,72,139,64,48,72,137,69,176,233,152,0,0,0,131,125,208,0,117,20,72,139,117,176,72,139,189,8,255,255,255,232,240,146,255,255,133,192,116,114,72,141,69,224,72,141,85,228,72, 141,77,232,72,141,117,236,72,139,189,8,255,255,255,76,139,85,176,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,129,140,255,255,139,69,248,141,80,17,139,69,232,57,194,124,54,139,69,248,141,80,239,139,69,232,57,194,127,41,139,85,232,139,69, 248,57,194,116,31,139,85,248,139,69,232,137,209,41,193,72,139,181,8,255,255,255,72,139,125,176,186,0,0,0,0,232,187,140,255,255,72,139,69,176,72,139,64,8,72,137,69,176,72,131,125,176,0,15,133,93,255,255,255,72,139,69,184,72,139,64,8,72,137,69,184,72,131, 125,184,0,15,133,76,254,255,255,199,69,220,35,0,0,0,72,141,133,16,255,255,255,72,137,69,160,235,15,72,139,69,160,199,0,0,0,0,0,72,131,69,160,4,255,77,220,131,125,220,255,117,232,72,139,133,8,255,255,255,72,139,64,48,72,137,69,184,233,24,1,0,0,131,125, 208,0,117,24,72,139,117,184,72,139,189,8,255,255,255,232,246,145,255,255,133,192,15,132,238,0,0,0,72,141,69,240,72,141,85,244,72,141,77,248,72,141,117,252,72,139,189,8,255,255,255,76,139,85,184,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232, 131,139,255,255,72,139,133,8,255,255,255,72,139,64,48,72,137,69,176,233,160,0,0,0,131,125,208,0,117,20,72,139,117,176,72,139,189,8,255,255,255,232,149,145,255,255,133,192,116,122,72,141,69,224,72,141,85,228,72,141,77,232,72,141,117,236,72,139,189,8,255, 255,255,76,139,85,176,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,38,139,255,255,139,69,252,141,80,18,139,69,236,57,194,124,62,139,69,252,141,80,238,139,69,236,57,194,127,49,139,69,232,139,85,240,41,208,137,69,204,131,125,204,0,120,32, 131,125,204,34,127,26,139,77,204,72,99,193,139,132,133,16,255,255,255,141,80,1,72,99,193,137,148,133,16,255,255,255,72,139,69,176,72,139,64,8,72,137,69,176,72,131,125,176,0,15,133,85,255,255,255,72,139,69,184,72,139,64,8,72,137,69,184,72,131,125,184, 0,15,133,221,254,255,255,199,69,220,2,0,0,0,199,69,216,0,0,0,0,199,69,212,4,0,0,0,72,141,133,16,255,255,255,72,131,192,8,72,137,69,160,235,99,72,139,69,160,72,131,232,8,139,8,72,139,69,160,139,16,137,208,1,192,141,20,16,72,139,69,160,72,131,232,4,139, 0,1,192,141,4,2,141,20,1,72,139,69,160,72,131,192,4,139,0,1,192,1,194,72,139,69,160,72,131,192,8,139,0,141,4,2,137,69,200,139,69,200,59,69,216,126,12,139,69,200,137,69,216,139,69,220,137,69,212,255,69,220,72,131,69,160,4,131,125,220,32,126,151,139,117, 212,72,141,61,231,165,5,0,184,0,0,0,0,232,97,86,4,0,72,139,133,8,255,255,255,72,139,64,48,72,137,69,184,233,21,2,0,0,131,125,208,0,117,24,72,139,117,184,72,139,189,8,255,255,255,232,28,144,255,255,133,192,15,132,235,1,0,0,199,69,196,1,0,0,0,72,141,69, 240,72,141,85,244,72,141,77,248,72,141,117,252,72,139,189,8,255,255,255,76,139,85,184,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,162,137,255,255,72,139,133,8,255,255,255,72,139,64,48,72,137,69,176,233,141,0,0,0,131,125,208,0,117,20,72, 139,117,176,72,139,189,8,255,255,255,232,180,143,255,255,133,192,116,103,72,141,69,224,72,141,85,228,72,141,77,232,72,141,117,236,72,139,189,8,255,255,255,76,139,85,176,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,69,137,255,255,139,69, 252,141,80,18,139,69,236,57,194,124,43,139,69,252,141,80,238,139,69,236,57,194,127,30,139,69,224,141,80,246,139,69,248,57,194,127,17,139,69,224,141,80,35,139,69,248,57,194,15,143,32,1,0,0,72,139,69,176,72,139,64,8,72,137,69,176,72,131,125,176,0,15,133, 104,255,255,255,233,250,0,0,0,199,69,196,0,0,0,0,72,139,133,8,255,255,255,72,139,64,48,72,137,69,176,233,212,0,0,0,131,125,208,0,117,24,72,139,117,176,72,139,189,8,255,255,255,232,252,142,255,255,133,192,15,132,170,0,0,0,72,141,69,224,72,141,85,228,72, 141,77,232,72,141,117,236,72,139,189,8,255,255,255,76,139,85,176,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,137,136,255,255,139,69,252,141,80,18,139,69,236,57,194,124,110,139,69,252,141,80,238,139,69,236,57,194,127,97,139,85,232,139,69, 248,57,194,126,87,139,69,240,141,80,35,139,69,232,57,194,126,74,139,69,240,137,194,3,85,212,139,69,232,137,209,41,193,137,200,137,69,192,139,85,252,139,69,236,41,194,139,77,192,72,139,181,8,255,255,255,72,139,125,176,232,166,136,255,255,139,69,232,3, 69,192,137,69,248,139,69,224,3,69,192,137,69,240,199,69,196,1,0,0,0,235,23,72,139,69,176,72,139,64,8,72,137,69,176,72,131,125,176,0,15,133,33,255,255,255,131,125,196,0,15,133,252,254,255,255,72,139,69,184,72,139,64,8,72,137,69,184,72,131,125,184,0,15, 133,224,253,255,255,72,139,189,8,255,255,255,243,15,16,5,160,8,6,0,232,90,93,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,139,128,192,0,0,0,72,139,64,40,72,137,69,240,72,131,125,240,0,116,19,72,141,85,252,72,141,117,232, 72,139,125,240,232,135,49,1,0,235,18,72,141,5,241,141,5,0,72,137,69,232,199,69,252,0,0,0,0,72,139,85,232,139,117,252,72,141,61,84,163,5,0,184,0,0,0,0,232,150,244,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137, 77,224,72,141,5,126,67,8,0,72,139,56,72,139,77,224,139,85,236,72,139,117,240,232,98,211,255,255,201,195,85,72,137,229,83,72,131,236,24,72,137,125,232,243,15,17,69,228,243,15,16,69,228,243,72,15,44,192,131,224,1,72,139,77,232,131,224,1,137,194,193,226, 5,15,182,129,232,0,0,0,131,224,223,9,208,136,129,232,0,0,0,72,139,69,232,15,182,128,232,0,0,0,131,224,32,132,192,116,42,72,139,125,232,232,127,96,255,255,133,192,116,29,72,139,125,232,232,188,96,255,255,133,192,116,16,72,139,125,232,190,4,0,0,0,232,184, 164,255,255,235,49,72,139,125,232,232,194,144,255,255,72,139,125,232,232,76,96,255,255,133,192,116,27,72,139,125,232,232,137,96,255,255,133,192,116,14,72,139,125,232,190,0,0,0,0,232,133,164,255,255,72,139,69,232,15,182,128,232,0,0,0,192,232,5,131,224, 1,15,182,216,72,139,125,232,232,9,16,0,0,72,137,198,137,218,72,141,61,94,162,5,0,184,0,0,0,0,232,132,243,3,0,72,131,196,24,91,201,195,85,72,137,229,83,72,131,236,88,72,137,125,200,243,15,17,69,196,243,15,17,77,192,243,15,17,85,188,243,15,16,69,196,243, 15,44,208,72,139,69,200,137,144,208,0,0,0,243,15,16,5,230,6,6,0,15,46,69,192,117,23,122,21,243,15,16,5,214,6,6,0,15,46,69,188,117,7,122,5,233,229,0,0,0,72,139,125,200,190,0,0,0,0,232,32,156,255,255,72,139,125,200,72,141,13,10,159,5,0,72,137,194,72,141, 53,148,158,255,255,232,54,146,255,255,72,139,69,200,72,139,64,48,72,137,69,208,233,161,0,0,0,72,141,69,224,72,141,85,232,72,141,77,228,72,141,117,236,72,139,125,200,76,139,85,208,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,139,133,255, 255,139,69,236,243,15,42,192,243,15,89,69,192,243,15,90,200,242,15,16,5,148,6,6,0,242,15,88,193,242,15,44,192,137,69,220,139,69,228,243,15,42,192,243,15,89,69,188,243,15,90,200,242,15,16,5,113,6,6,0,242,15,88,193,242,15,44,192,137,69,216,139,85,228,139, 69,216,137,193,41,209,139,85,236,139,69,220,137,195,41,211,137,218,72,139,117,200,72,139,125,208,232,159,133,255,255,72,139,69,208,72,139,64,8,72,137,69,208,72,131,125,208,0,15,133,84,255,255,255,72,139,125,200,232,177,94,255,255,133,192,116,9,72,139, 125,200,232,103,37,0,0,72,139,69,200,72,139,64,48,72,137,69,208,235,80,72,139,69,208,72,139,16,72,141,5,10,65,8,0,72,139,0,72,57,194,117,46,72,139,125,208,232,175,108,255,255,133,192,117,33,72,139,125,208,243,15,16,69,188,243,15,16,77,192,139,69,196, 15,40,208,137,69,172,243,15,16,69,172,232,95,254,255,255,72,139,69,208,72,139,64,8,72,137,69,208,72,131,125,208,0,117,169,72,131,196,88,91,201,195,85,72,137,229,72,131,236,80,72,137,125,216,243,15,17,69,212,243,15,17,77,208,243,15,17,85,204,184,0,0,128, 63,137,69,248,184,0,0,128,63,137,69,244,72,139,125,216,232,232,109,255,255,72,137,69,232,15,87,192,15,46,69,208,122,2,116,2,235,10,184,0,0,128,63,137,69,252,235,78,243,15,16,77,208,243,15,16,5,226,6,6,0,15,46,193,119,2,235,8,184,0,0,160,65,137,69,208, 243,15,16,69,208,15,46,5,203,6,6,0,119,2,235,8,184,0,0,250,67,137,69,208,243,15,90,69,208,242,15,16,13,202,6,6,0,242,15,89,193,242,15,90,192,243,15,17,69,252,243,15,16,69,204,15,46,5,157,6,6,0,117,4,122,2,235,6,139,69,252,137,69,248,243,15,16,69,204, 15,46,5,21,5,6,0,117,4,122,2,235,6,139,69,252,137,69,244,243,15,16,69,244,243,15,16,77,248,139,69,212,72,139,125,232,15,40,208,137,69,188,243,15,16,69,188,232,87,253,255,255,243,15,16,69,212,243,15,44,208,72,141,5,156,66,8,0,137,16,201,195,85,72,137, 229,72,137,125,248,72,137,117,240,72,137,85,232,72,139,5,81,17,8,0,72,59,69,248,117,26,139,21,77,17,8,0,72,139,69,240,137,16,139,21,69,17,8,0,72,139,69,232,137,16,235,22,72,139,69,232,199,0,40,0,0,0,72,139,69,232,139,16,72,139,69,240,137,16,201,195,85, 72,137,229,72,137,125,248,137,117,244,137,85,240,72,139,69,248,72,137,5,0,17,8,0,139,69,244,137,5,255,16,8,0,139,69,240,137,5,250,16,8,0,201,195,85,72,137,229,72,131,236,16,72,141,61,36,159,5,0,232,166,91,3,0,72,137,194,72,141,53,81,195,255,255,72,141, 5,23,63,8,0,72,139,56,199,68,36,8,0,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,5,81,3,0,72,141,61,224,158,5,0,232,92,91,3,0,72,137,194,72,141,53,92,203,255,255,72,141,5,205,62,8,0,72,139,56,199,4,36,0,0,0,0,65,185, 1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,195,80,3,0,72,141,61,183,219,5,0,232,26,91,3,0,72,137,194,72,141,53,153,206,255,255,72,141,5,139,62,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,142,80,3,0,72,141,61,110,155,5,0,232,229, 90,3,0,72,137,194,72,141,53,225,214,255,255,72,141,5,86,62,8,0,72,139,56,199,4,36,0,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,76,80,3,0,72,141,61,51,158,5,0,232,163,90,3,0,72,137,194,72,141,53,19,220,255,255,72,141,5,20,62,8,0,72, 139,56,65,184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,23,80,3,0,72,141,61,63,157,5,0,232,110,90,3,0,72,137,194,72,141,53,11,234,255,255,72,141,5,223,61,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,232,79,3,0,72,141,61,217,157,5,0,232,63,90,3,0,72,137,194,72, 141,53,130,230,255,255,72,141,5,176,61,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,185,79,3,0,72,141,61,245,156,5,0,232,16,90,3,0,72,137,194,72,141,53,155,236,255,255,72,141,5,129,61,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,138,79,3,0,72,141,61,204,156, 5,0,232,225,89,3,0,72,137,194,72,141,53,223,236,255,255,72,141,5,82,61,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,91,79,3,0,72,141,61,81,157,5,0,232,178,89,3,0,72,137,194,72,141,53,150,237,255,255,72,141,5,35,61,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232, 44,79,3,0,72,141,61,44,157,5,0,232,131,89,3,0,72,137,194,72,141,53,13,238,255,255,72,141,5,244,60,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,253,78,3,0,72,141,61,6,157,5,0,232,84,89,3,0,72,137,194,72,141,53,56,142,255,255,72,141,5,197,60,8,0,72,139,56, 185,0,0,0,0,184,0,0,0,0,232,206,78,3,0,72,141,61,220,156,5,0,232,37,89,3,0,72,137,194,72,141,53,177,142,255,255,72,141,5,150,60,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,159,78,3,0,72,141,61,178,156,5,0,232,246,88,3,0,72,137,194,72,141,53,215,241,255, 255,72,141,5,103,60,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,112,78,3,0,72,141,61,136,156,5,0,232,199,88,3,0,72,137,194,72,141,53,78,248,255,255,72,141,5,56,60,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,65,78,3,0,72,141,61,47,187,5,0,232,152,88,3,0,72, 137,194,72,141,53,183,248,255,255,72,141,5,9,60,8,0,72,139,56,65,184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,12,78,3,0,72,141,61,48,156,5,0,232,99,88,3,0,72,137,194,72,141,53,47,216,255,255,72,141,5,212,59,8,0,72,139,56,65,184,0,0,0,0,185,2,0,0,0,184,0,0, 0,0,232,215,77,3,0,72,141,61,1,156,5,0,232,46,88,3,0,72,137,194,72,141,53,95,219,255,255,72,141,5,159,59,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,168,77,3,0,72,141,61,219,155,5,0,232,255,87,3,0,72,137,194,72,141,53,189,250,255,255,72,141,5,112,59,8, 0,72,139,56,199,4,36,0,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,102,77,3,0,72,141,61,158,155,5,0,232,189,87,3,0,72,137,194,72,141,53,16,221,255,255,72,141,5,46,59,8,0,72,139,56,65,185,0,0,0,0,65,184,1,0,0,0,185,2,0,0,0,184,0,0, 0,0,232,43,77,3,0,72,141,61,104,155,5,0,232,130,87,3,0,72,137,194,72,141,53,157,221,255,255,72,141,5,243,58,8,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,252,76,3,0,72,141,61,67,155,5,0,232,83,87,3,0,72,137,194,72,141,53,216,221,255,255,72,141,5,196,58,8, 0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,205,76,3,0,72,141,61,31,155,5,0,232,36,87,3,0,72,137,194,72,141,53,12,175,255,255,72,141,5,149,58,8,0,72,139,56,199,4,36,0,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,139,76,3,0,72,141,61,232, 154,5,0,232,226,86,3,0,72,137,194,72,141,53,20,171,255,255,72,141,5,83,58,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,86,76,3,0,72,141,61,196,154,5,0,232,173,86,3,0,72,137,194,72,141,5,230,220,254,255,72,137,198,72,141,5,27,58,8,0,72,139, 56,199,68,36,8,0,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,2,0,0,0,184,0,0,0,0,232,9,76,3,0,72,141,61,94,148,5,0,232,96,86,3,0,72,137,194,72,141,53,75,236,255,255,72,141,5,209,57,8,0,72,139,56,199,68,36,8,0,0,0,0,199,4,36,1,0,0,0,65,185, 1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,191,75,3,0,72,141,61,220,152,5,0,232,22,86,3,0,72,137,194,72,141,53,158,140,255,255,72,141,5,135,57,8,0,72,139,56,199,68,36,8,0,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0, 0,0,0,232,117,75,3,0,232,73,222,2,0,72,137,5,126,10,8,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,224,72,199,64,8,0,0,0,0,72,139,69,232,72,139,64,48,72,133,192,117,14,72,139,85,232,72,139,69,224,72,137,66,48,235,51,72, 139,69,232,72,139,64,48,72,137,69,240,235,12,72,139,69,240,72,139,64,8,72,137,69,240,72,139,69,240,72,139,64,8,72,133,192,117,231,72,139,85,240,72,139,69,224,72,137,66,8,72,139,69,232,72,139,128,192,0,0,0,72,133,192,116,33,72,139,125,224,232,117,134, 3,0,72,137,69,248,72,131,125,248,0,116,13,72,139,117,248,72,139,125,232,232,83,36,1,0,72,139,69,232,72,139,128,192,0,0,0,72,133,192,116,84,72,139,69,232,15,182,128,233,0,0,0,131,224,1,132,192,116,66,72,139,69,232,15,182,128,232,0,0,0,131,224,128,132, 192,117,48,72,139,125,224,232,32,134,3,0,72,133,192,116,34,72,139,85,232,15,182,130,232,0,0,0,131,200,128,136,130,232,0,0,0,72,139,125,232,190,1,0,0,0,232,68,82,255,255,72,139,125,232,232,194,85,255,255,133,192,116,18,72,139,117,232,72,139,125,224,186, 1,0,0,0,232,255,127,255,255,72,139,69,224,72,139,56,232,151,81,3,0,133,192,116,42,72,139,125,232,232,140,5,0,0,72,139,184,200,0,0,0,232,92,79,255,255,72,137,199,232,75,101,1,0,72,137,199,190,0,0,0,0,232,205,105,255,255,201,195,85,72,137,229,72,137,125, 232,137,117,228,72,139,69,232,15,182,128,232,0,0,0,192,232,6,131,224,1,15,182,192,137,69,252,139,69,228,131,224,1,72,139,77,232,131,224,1,137,194,193,226,6,15,182,129,232,0,0,0,131,224,191,9,208,136,129,232,0,0,0,139,69,252,201,195,85,72,137,229,72,129, 236,160,0,0,0,72,137,189,104,255,255,255,72,137,181,96,255,255,255,72,139,5,247,216,7,0,72,139,16,72,137,85,248,49,210,72,141,61,183,124,5,0,232,240,83,3,0,72,137,198,72,139,189,96,255,255,255,232,31,101,3,0,72,137,69,128,72,139,189,104,255,255,255,232, 202,4,0,0,72,137,133,120,255,255,255,72,139,133,96,255,255,255,72,139,56,232,178,80,3,0,137,69,156,72,139,189,120,255,255,255,190,1,0,0,0,232,55,255,255,255,137,69,152,72,139,133,104,255,255,255,72,139,128,192,0,0,0,72,133,192,15,132,14,1,0,0,72,139, 133,104,255,255,255,72,139,128,192,0,0,0,72,139,64,48,72,59,133,96,255,255,255,117,22,72,139,133,104,255,255,255,72,139,128,192,0,0,0,72,199,64,48,0,0,0,0,72,139,181,96,255,255,255,72,139,189,104,255,255,255,232,214,128,255,255,133,192,116,19,72,139, 181,96,255,255,255,72,139,189,104,255,255,255,232,75,130,255,255,72,139,133,96,255,255,255,72,139,16,72,141,5,163,54,8,0,72,139,0,72,57,194,15,133,150,0,0,0,72,139,133,96,255,255,255,72,137,133,112,255,255,255,72,139,133,112,255,255,255,15,182,128,233, 0,0,0,131,224,1,132,192,116,66,72,139,133,112,255,255,255,72,141,125,160,73,137,192,72,141,13,251,150,5,0,186,80,0,0,0,190,0,0,0,0,184,0,0,0,0,232,155,107,5,0,72,139,181,112,255,255,255,72,141,85,160,72,139,189,104,255,255,255,232,244,245,1,0,235,49, 72,139,181,112,255,255,255,72,139,189,104,255,255,255,232,37,51,1,0,72,137,199,232,210,35,1,0,72,139,189,112,255,255,255,72,139,181,104,255,255,255,72,137,194,232,95,246,1,0,131,125,156,0,116,45,72,139,189,104,255,255,255,232,102,3,0,0,72,139,184,200, 0,0,0,232,54,77,255,255,72,137,199,232,37,99,1,0,72,137,199,190,2,0,0,0,232,167,103,255,255,72,139,181,104,255,255,255,72,139,189,96,255,255,255,232,12,123,255,255,72,139,189,120,255,255,255,232,45,83,255,255,133,192,116,24,72,139,181,104,255,255,255, 72,139,189,96,255,255,255,186,0,0,0,0,232,100,125,255,255,72,139,133,104,255,255,255,72,139,128,192,0,0,0,72,133,192,116,39,72,139,189,96,255,255,255,232,32,131,3,0,72,137,69,136,72,131,125,136,0,116,16,72,139,117,136,72,139,189,104,255,255,255,232,251, 32,1,0,72,139,133,104,255,255,255,72,139,64,48,72,59,133,96,255,255,255,117,24,72,139,133,96,255,255,255,72,139,80,8,72,139,133,104,255,255,255,72,137,80,48,235,74,72,139,133,104,255,255,255,72,139,64,48,72,137,69,144,235,50,72,139,69,144,72,139,64,8, 72,59,133,96,255,255,255,117,21,72,139,133,96,255,255,255,72,139,80,8,72,139,69,144,72,137,80,8,235,19,72,139,69,144,72,139,64,8,72,137,69,144,72,131,125,144,0,117,199,72,139,189,96,255,255,255,232,208,136,3,0,72,131,125,128,0,116,5,232,173,100,255,255, 131,125,156,0,116,45,72,139,189,104,255,255,255,232,48,2,0,0,72,139,184,200,0,0,0,232,0,76,255,255,72,137,199,232,239,97,1,0,72,137,199,190,1,0,0,0,232,113,102,255,255,139,117,152,72,139,189,120,255,255,255,232,151,252,255,255,72,141,5,106,233,7,0,139, 0,141,80,1,72,141,5,94,233,7,0,137,16,72,141,5,85,233,7,0,139,16,72,139,133,104,255,255,255,137,80,64,72,139,5,202,213,7,0,72,139,85,248,72,51,16,116,5,232,162,105,5,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,199,69,252,0,0,0,0,199,69,248,0, 0,0,0,72,141,61,105,121,5,0,232,162,80,3,0,72,137,69,224,235,66,131,125,248,0,117,47,72,139,125,240,232,187,129,3,0,72,133,192,116,33,72,139,125,240,72,139,117,224,232,185,97,3,0,72,133,192,116,15,232,153,99,255,255,137,69,252,199,69,248,1,0,0,0,72,139, 117,240,72,139,125,216,232,53,252,255,255,72,139,69,216,72,139,64,48,72,137,69,240,72,131,125,240,0,117,171,131,125,248,0,116,8,139,125,252,232,133,99,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,232,232,23,1,0, 0,72,137,69,248,72,139,69,232,72,139,128,192,0,0,0,72,133,192,116,53,72,139,69,232,72,139,128,192,0,0,0,72,139,64,24,72,133,192,116,33,72,139,117,224,72,139,125,232,232,113,48,1,0,72,137,69,240,72,131,125,240,0,116,9,72,139,125,240,232,118,45,1,0,201, 195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,68,137,69,204,68,137,77,200,72,139,125,232,232,163,0,0,0,72,137,69,248,72,131,125,216,0,116,32,72,139,69,248,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,224,248, 131,200,4,136,130,136,0,0,0,235,27,72,139,69,248,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,224,248,136,130,136,0,0,0,72,139,69,248,72,139,144,192,0,0,0,72,139,69,224,72,137,66,48,72,139,69,248,72,139,144,192,0,0,0,72,139,69,216,72,137,66,56,72,139, 69,248,72,139,144,192,0,0,0,72,139,69,208,72,137,66,64,72,139,69,248,72,139,144,192,0,0,0,139,69,204,137,66,104,72,139,69,248,72,139,144,192,0,0,0,139,69,200,137,66,108,201,195,85,72,137,229,72,137,125,248,235,12,72,139,69,248,72,139,64,72,72,137,69, 248,72,139,69,248,72,139,64,72,72,133,192,116,36,72,139,69,248,15,182,128,232,0,0,0,131,224,1,132,192,117,18,72,139,69,248,15,182,128,233,0,0,0,131,224,1,132,192,117,195,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72, 139,16,72,141,5,98,51,8,0,72,139,0,72,57,194,117,29,72,139,125,232,72,141,85,248,72,141,117,252,232,160,62,1,0,243,15,16,69,252,243,15,17,69,228,235,8,15,87,192,243,15,17,69,228,243,15,16,69,228,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137, 117,208,72,137,85,200,72,199,69,240,0,0,0,0,72,199,69,232,0,0,0,0,184,0,0,0,0,137,69,252,184,0,0,0,0,137,69,248,72,131,125,208,0,116,14,72,139,125,208,232,110,255,255,255,243,15,17,69,252,72,131,125,200,0,116,14,72,139,125,200,232,89,255,255,255,243, 15,17,69,248,72,131,125,208,0,116,24,72,131,125,200,0,116,29,243,15,16,77,252,243,15,16,69,248,15,46,193,115,14,235,107,72,131,125,200,0,117,100,233,190,0,0,0,72,131,125,232,0,116,22,72,139,69,232,72,139,85,208,72,137,80,8,72,139,69,208,72,137,69,232, 235,16,72,139,69,208,72,137,69,240,72,139,69,240,72,137,69,232,72,139,69,208,72,139,64,8,72,137,69,208,72,131,125,208,0,116,14,72,139,125,208,232,224,254,255,255,243,15,17,69,252,72,139,69,232,72,199,64,8,0,0,0,0,233,118,255,255,255,72,131,125,232,0, 116,22,72,139,69,232,72,139,85,200,72,137,80,8,72,139,69,200,72,137,69,232,235,16,72,139,69,200,72,137,69,240,72,139,69,240,72,137,69,232,72,139,69,200,72,139,64,8,72,137,69,200,72,131,125,200,0,116,14,72,139,125,200,232,129,254,255,255,243,15,17,69, 248,72,139,69,232,72,199,64,8,0,0,0,0,233,23,255,255,255,72,139,69,240,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,137,85,204,131,125,204,1,127,13,72,139,69,208,72,137,69,192,233,150,0,0,0,139,85,204,137,208,193,232,31,1,208,209, 248,137,69,252,139,85,252,139,69,204,41,208,137,69,248,72,139,69,208,72,137,69,232,139,69,252,255,200,137,69,244,235,12,72,139,69,232,72,139,64,8,72,137,69,232,255,77,244,131,125,244,255,117,235,72,139,69,232,72,139,64,8,72,137,69,224,72,139,69,232,72, 199,64,8,0,0,0,0,139,85,252,72,139,117,208,72,139,125,216,232,113,255,255,255,72,137,69,208,139,85,248,72,139,117,224,72,139,125,216,232,93,255,255,255,72,137,69,224,72,139,85,224,72,139,117,208,72,139,125,216,232,251,253,255,255,72,137,69,192,72,139, 69,192,201,195,85,72,137,229,72,131,236,48,72,137,125,216,199,69,252,0,0,0,0,199,69,248,0,0,0,0,184,194,189,240,252,137,69,244,72,139,69,216,72,139,64,48,72,137,69,232,235,59,72,139,125,232,232,106,253,255,255,243,15,17,69,240,243,15,16,77,240,243,15, 16,69,244,15,46,193,119,2,235,7,199,69,248,1,0,0,0,139,69,240,137,69,244,255,69,252,72,139,69,232,72,139,64,8,72,137,69,232,72,131,125,232,0,117,190,131,125,248,0,116,31,72,139,69,216,72,139,112,48,139,85,252,72,139,125,216,232,178,254,255,255,72,137, 194,72,139,69,216,72,137,80,48,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,128,140,0,0,0,72,152,72,141,52,197,0,0,0,0,72,139,69,248,72,139,184,144,0,0,0,232,167,103,3,0,72,139,69,248,139,128,168,0,0,0,72,152,72,141,52,197,0,0, 0,0,72,139,69,248,72,139,184,176,0,0,0,232,131,103,3,0,72,139,69,248,72,139,120,56,232,60,26,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,136,255,255,255,72,139,125,248,190,240,0,0,0,232,81,103,3,0,201,195,85,72,137,229,72, 131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,72,139,125,232,72,139,85,216,72,139,117,224,185,0,0,0,0,232,79,103,3,0,72,137,69,248,72,139,69,232,15,182,128,232,0,0,0,131,224,8,132,192,117,91,72,139,69,232,72,139,64,72,72,133,192,116,78,72,139, 69,232,72,139,120,72,232,226,75,255,255,133,192,116,61,72,139,69,232,72,139,112,72,72,139,125,232,186,0,0,0,0,232,27,118,255,255,72,139,69,232,72,139,112,72,72,139,125,232,186,1,0,0,0,232,5,118,255,255,72,139,117,232,72,139,69,232,72,139,120,72,232,169, 78,255,255,72,139,69,232,15,182,128,232,0,0,0,131,224,8,132,192,117,9,72,139,125,232,232,220,0,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,139,69,232,72,139,64,72,72,137,69,240,72,131,125,240,0,116,53,72,139, 125,240,232,84,75,255,255,133,192,116,40,72,139,69,240,15,182,128,232,0,0,0,131,224,64,132,192,117,22,72,139,125,240,232,127,75,255,255,133,192,116,9,199,69,220,1,0,0,0,235,7,199,69,220,0,0,0,0,139,69,220,137,69,252,72,131,125,240,0,116,22,72,139,117, 232,72,139,85,224,72,139,125,240,185,0,0,0,0,232,102,79,255,255,131,125,252,0,116,22,72,139,69,232,72,139,112,72,72,139,125,232,186,0,0,0,0,232,53,117,255,255,72,139,125,224,232,240,107,3,0,131,125,252,0,116,39,72,139,69,232,72,139,112,72,72,139,125, 232,186,1,0,0,0,232,16,117,255,255,72,139,117,232,72,139,69,232,72,139,120,72,232,180,77,255,255,201,195,85,72,137,229,72,131,236,96,72,137,125,168,199,69,252,0,0,0,0,199,69,252,0,0,0,0,72,139,69,168,72,139,64,48,72,137,69,216,235,37,72,139,69,216,72, 139,16,72,141,5,150,45,8,0,72,139,0,72,57,194,117,3,255,69,252,72,139,69,216,72,139,64,8,72,137,69,216,72,131,125,216,0,117,212,131,125,252,1,15,142,122,1,0,0,139,69,252,72,152,72,141,60,197,0,0,0,0,232,89,99,3,0,72,137,69,208,72,139,69,168,72,139,64, 48,72,137,69,216,72,139,69,208,72,137,69,200,235,50,72,139,69,216,72,139,16,72,141,5,52,45,8,0,72,139,0,72,57,194,117,16,72,139,85,200,72,139,69,216,72,137,2,72,131,69,200,8,72,139,69,216,72,139,64,8,72,137,69,216,72,131,125,216,0,117,199,139,69,252, 137,69,248,233,184,0,0,0,72,139,69,208,72,137,69,200,199,69,240,1,0,0,128,72,199,69,192,0,0,0,0,139,69,252,137,69,244,235,89,72,139,69,200,72,139,0,72,137,69,176,72,131,125,176,0,116,66,72,141,69,224,72,141,85,228,72,141,77,232,72,141,117,236,72,139, 125,168,76,139,85,176,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,208,111,255,255,139,69,236,59,69,240,126,14,139,69,236,137,69,240,72,139,69,200,72,137,69,192,72,131,69,200,8,255,77,244,131,125,244,255,117,158,72,131,125,192,0,116,61, 72,139,69,192,72,139,0,72,137,69,216,72,139,69,192,72,199,0,0,0,0,0,72,139,125,216,232,125,144,0,0,72,137,69,184,72,139,125,168,72,139,117,184,232,132,121,3,0,255,77,248,131,125,248,255,15,133,59,255,255,255,139,69,252,72,152,72,141,52,197,0,0,0,0,72, 139,125,208,232,20,100,3,0,72,139,69,168,72,139,64,72,72,133,192,116,34,72,139,69,168,72,139,120,72,232,231,72,255,255,133,192,116,17,72,139,117,168,72,139,69,168,72,139,120,72,232,218,75,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72, 137,117,224,72,137,85,216,72,139,125,232,72,139,117,216,232,235,111,3,0,72,137,69,248,72,139,69,232,15,182,128,232,0,0,0,131,224,8,132,192,117,91,72,139,69,232,72,139,64,72,72,133,192,116,78,72,139,69,232,72,139,120,72,232,127,72,255,255,133,192,116, 61,72,139,69,232,72,139,112,72,72,139,125,232,186,0,0,0,0,232,184,114,255,255,72,139,69,232,72,139,112,72,72,139,125,232,186,1,0,0,0,232,162,114,255,255,72,139,117,232,72,139,69,232,72,139,120,72,232,70,75,255,255,72,139,69,232,15,182,128,232,0,0,0,131, 224,8,132,192,117,9,72,139,125,232,232,220,0,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,139,69,232,72,139,64,72,72,137,69,240,72,131,125,240,0,116,53,72,139,125,240,232,241,71,255,255,133,192,116,40,72,139, 69,240,15,182,128,232,0,0,0,131,224,64,132,192,117,22,72,139,125,240,232,28,72,255,255,133,192,116,9,199,69,220,1,0,0,0,235,7,199,69,220,0,0,0,0,139,69,220,137,69,252,72,131,125,240,0,116,22,72,139,117,232,72,139,77,224,72,139,125,240,186,0,0,0,0,232, 3,76,255,255,131,125,252,0,116,22,72,139,69,232,72,139,112,72,72,139,125,232,186,0,0,0,0,232,210,113,255,255,72,139,125,224,232,130,114,3,0,131,125,252,0,116,39,72,139,69,232,72,139,112,72,72,139,125,232,186,1,0,0,0,232,173,113,255,255,72,139,117,232, 72,139,69,232,72,139,120,72,232,81,74,255,255,201,195,85,72,137,229,72,131,236,96,72,137,125,168,199,69,252,0,0,0,0,199,69,252,0,0,0,0,72,139,69,168,72,139,64,48,72,137,69,216,235,37,72,139,69,216,72,139,16,72,141,5,59,42,8,0,72,139,0,72,57,194,117,3, 255,69,252,72,139,69,216,72,139,64,8,72,137,69,216,72,131,125,216,0,117,212,131,125,252,1,15,142,122,1,0,0,139,69,252,72,152,72,141,60,197,0,0,0,0,232,246,95,3,0,72,137,69,208,72,139,69,168,72,139,64,48,72,137,69,216,72,139,69,208,72,137,69,200,235,50, 72,139,69,216,72,139,16,72,141,5,217,41,8,0,72,139,0,72,57,194,117,16,72,139,85,200,72,139,69,216,72,137,2,72,131,69,200,8,72,139,69,216,72,139,64,8,72,137,69,216,72,131,125,216,0,117,199,139,69,252,137,69,248,233,184,0,0,0,72,139,69,208,72,137,69,200, 199,69,240,1,0,0,128,72,199,69,192,0,0,0,0,139,69,252,137,69,244,235,89,72,139,69,200,72,139,0,72,137,69,176,72,131,125,176,0,116,66,72,141,69,224,72,141,85,228,72,141,77,232,72,141,117,236,72,139,125,168,76,139,85,176,73,137,193,73,137,208,72,137,242, 72,137,254,76,137,215,232,109,108,255,255,139,69,236,59,69,240,126,14,139,69,236,137,69,240,72,139,69,200,72,137,69,192,72,131,69,200,8,255,77,244,131,125,244,255,117,158,72,131,125,192,0,116,61,72,139,69,192,72,139,0,72,137,69,216,72,139,69,192,72,199, 0,0,0,0,0,72,139,125,216,232,210,150,0,0,72,137,69,184,72,139,125,168,72,139,117,184,232,154,118,3,0,255,77,248,131,125,248,255,15,133,59,255,255,255,139,69,252,72,152,72,141,52,197,0,0,0,0,72,139,125,208,232,177,96,3,0,72,139,69,168,72,139,64,72,72, 133,192,116,34,72,139,69,168,72,139,120,72,232,132,69,255,255,133,192,116,17,72,139,117,168,72,139,69,168,72,139,120,72,232,119,72,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,243,15,17, 93,232,72,139,85,248,139,69,244,137,66,88,72,139,85,248,139,69,236,137,66,96,72,139,85,248,139,69,240,137,66,92,72,139,85,248,139,69,232,137,66,100,72,139,69,248,243,15,16,72,96,72,139,69,248,243,15,16,64,88,15,46,200,122,2,116,27,72,139,69,248,243,15, 16,72,100,72,139,69,248,243,15,16,64,92,15,46,200,122,2,116,2,235,45,72,141,61,17,136,5,0,184,0,0,0,0,232,74,59,4,0,184,0,0,0,0,137,69,240,139,69,240,137,69,244,184,0,0,128,63,137,69,232,139,69,232,137,69,236,72,139,125,248,232,126,11,0,0,201,195,85, 72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,72,139,85,248,139,69,244,137,130,128,0,0,0,72,139,85,248,139,69,240,137,130,132,0,0,0,243,15,16,69,236,243,15,44,208,72,139,69,248,137,144,136,0,0,0,72,139,125, 248,232,43,11,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,72,139,85,248,139,69,244,137,130,156,0,0,0,72,139,85,248,139,69,240,137,130,160,0,0,0,243,15,16,69,236,243,15,44,208,72,139,69,248, 137,144,164,0,0,0,72,139,125,248,232,216,10,0,0,201,195,85,72,137,229,83,72,131,236,56,72,137,125,216,72,137,117,208,137,85,204,72,137,77,192,131,125,204,0,127,22,72,141,61,56,135,5,0,184,0,0,0,0,232,78,58,4,0,233,173,0,0,0,72,139,125,192,232,144,195, 2,0,72,139,69,216,243,15,17,128,152,0,0,0,72,131,69,192,16,255,77,204,139,69,204,72,152,72,141,20,197,0,0,0,0,72,139,69,216,139,128,140,0,0,0,72,152,72,141,52,197,0,0,0,0,72,139,69,216,72,139,184,144,0,0,0,232,162,93,3,0,72,137,194,72,139,69,216,72,137, 144,144,0,0,0,72,139,85,216,139,69,204,137,130,140,0,0,0,199,69,236,0,0,0,0,235,51,72,139,69,216,72,139,144,144,0,0,0,139,69,236,72,152,72,193,224,3,72,141,28,2,139,69,236,72,152,72,193,224,4,72,137,199,72,3,125,192,232,163,195,2,0,72,137,3,255,69,236, 139,69,236,59,69,204,124,197,72,139,125,216,232,236,9,0,0,72,131,196,56,91,201,195,85,72,137,229,83,72,131,236,56,72,137,125,216,72,137,117,208,137,85,204,72,137,77,192,131,125,204,0,127,22,72,141,61,103,134,5,0,184,0,0,0,0,232,93,57,4,0,233,173,0,0, 0,72,139,125,192,232,159,194,2,0,72,139,69,216,243,15,17,128,184,0,0,0,72,131,69,192,16,255,77,204,139,69,204,72,152,72,141,20,197,0,0,0,0,72,139,69,216,139,128,168,0,0,0,72,152,72,141,52,197,0,0,0,0,72,139,69,216,72,139,184,176,0,0,0,232,177,92,3,0, 72,137,194,72,139,69,216,72,137,144,176,0,0,0,72,139,85,216,139,69,204,137,130,168,0,0,0,199,69,236,0,0,0,0,235,51,72,139,69,216,72,139,144,176,0,0,0,139,69,236,72,152,72,193,224,3,72,141,28,2,139,69,236,72,152,72,193,224,4,72,137,199,72,3,125,192,232, 178,194,2,0,72,137,3,255,69,236,139,69,236,59,69,204,124,197,72,139,125,216,232,251,8,0,0,72,131,196,56,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,15,182,128,233,0,0,0,131,224,1,132,192,117,59,72,139,69,232,243, 15,16,80,88,72,139,69,232,243,15,16,72,96,72,139,69,232,243,15,16,64,88,15,40,217,243,15,92,216,15,40,195,243,15,89,69,228,15,40,202,243,15,88,200,243,15,17,77,224,233,49,1,0,0,72,139,69,232,15,182,128,233,0,0,0,131,224,1,132,192,116,114,72,139,69,232, 15,182,128,232,0,0,0,131,224,1,132,192,116,96,72,139,69,232,243,15,16,80,88,72,139,69,232,243,15,16,72,96,72,139,69,232,243,15,16,64,88,15,40,217,243,15,92,216,15,40,195,15,40,200,243,15,89,77,228,72,139,69,232,139,80,112,72,139,69,232,139,64,104,137, 209,41,193,137,200,243,15,42,192,15,40,217,243,15,94,216,15,40,195,15,40,202,243,15,88,200,243,15,17,77,224,233,173,0,0,0,72,139,69,232,72,139,64,72,72,133,192,117,17,72,141,61,196,132,5,0,184,0,0,0,0,232,198,59,4,0,72,139,69,232,72,139,120,72,76,139, 85,232,72,141,69,240,72,141,85,244,72,141,77,248,72,141,117,252,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,63,25,0,0,72,139,69,232,243,15,16,88,88,72,139,69,232,243,15,16,72,96,72,139,69,232,243,15,16,64,88,15,40,209,243,15,92,208,139, 69,252,243,15,42,200,243,15,16,69,228,243,15,92,193,15,40,202,243,15,89,200,139,85,244,139,69,252,137,209,41,193,137,200,243,15,42,192,15,40,209,243,15,94,208,15,40,194,15,40,203,243,15,88,200,243,15,17,77,224,243,15,16,69,224,201,195,85,72,137,229,72, 131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,15,182,128,233,0,0,0,131,224,1,132,192,117,59,72,139,69,232,243,15,16,80,92,72,139,69,232,243,15,16,72,100,72,139,69,232,243,15,16,64,92,15,40,217,243,15,92,216,15,40,195,243,15,89,69,228,15,40, 202,243,15,88,200,243,15,17,77,224,233,49,1,0,0,72,139,69,232,15,182,128,233,0,0,0,131,224,1,132,192,116,114,72,139,69,232,15,182,128,232,0,0,0,131,224,1,132,192,116,96,72,139,69,232,243,15,16,80,92,72,139,69,232,243,15,16,72,100,72,139,69,232,243,15, 16,64,92,15,40,217,243,15,92,216,15,40,195,15,40,200,243,15,89,77,228,72,139,69,232,139,80,116,72,139,69,232,139,64,108,137,209,41,193,137,200,243,15,42,192,15,40,217,243,15,94,216,15,40,195,15,40,202,243,15,88,200,243,15,17,77,224,233,173,0,0,0,72,139, 69,232,72,139,64,72,72,133,192,117,17,72,141,61,46,131,5,0,184,0,0,0,0,232,48,58,4,0,72,139,69,232,72,139,120,72,76,139,85,232,72,141,69,240,72,141,85,244,72,141,77,248,72,141,117,252,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,169,23, 0,0,72,139,69,232,243,15,16,88,92,72,139,69,232,243,15,16,72,100,72,139,69,232,243,15,16,64,92,15,40,209,243,15,92,208,139,69,248,243,15,42,200,243,15,16,69,228,243,15,92,193,15,40,202,243,15,89,200,139,85,240,139,69,248,137,209,41,193,137,200,243,15, 42,192,15,40,209,243,15,94,208,15,40,194,15,40,203,243,15,88,200,243,15,17,77,224,243,15,16,69,224,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,15,182,128,233,0,0,0,131,224,1,132,192,117,66,72,139,69,232,243,15,16, 72,88,243,15,16,69,228,15,40,208,243,15,92,209,72,139,69,232,243,15,16,72,96,72,139,69,232,243,15,16,64,88,15,40,217,243,15,92,216,15,40,195,15,40,226,243,15,94,224,243,15,17,101,224,233,44,1,0,0,72,139,69,232,15,182,128,233,0,0,0,131,224,1,132,192,116, 109,72,139,69,232,15,182,128,232,0,0,0,131,224,1,132,192,116,91,72,139,69,232,139,80,112,72,139,69,232,139,64,104,137,209,41,193,137,200,243,15,42,208,72,139,69,232,243,15,16,72,88,243,15,16,69,228,243,15,92,193,243,15,89,208,72,139,69,232,243,15,16, 72,96,72,139,69,232,243,15,16,64,88,15,40,217,243,15,92,216,15,40,195,15,40,226,243,15,94,224,243,15,17,101,224,233,173,0,0,0,72,139,69,232,72,139,64,72,72,133,192,117,17,72,141,61,150,129,5,0,184,0,0,0,0,232,152,56,4,0,72,139,69,232,72,139,120,72,76, 139,85,232,72,141,69,240,72,141,85,244,72,141,77,248,72,141,117,252,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,17,22,0,0,139,69,252,243,15,42,216,139,85,244,139,69,252,137,209,41,193,137,200,243,15,42,208,72,139,69,232,243,15,16,72,88, 243,15,16,69,228,243,15,92,193,243,15,89,208,72,139,69,232,243,15,16,72,96,72,139,69,232,243,15,16,64,88,15,40,225,243,15,92,224,15,40,196,15,40,202,243,15,94,200,15,40,193,15,40,227,243,15,88,224,243,15,17,101,224,243,15,16,69,224,201,195,85,72,137, 229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,15,182,128,233,0,0,0,131,224,1,132,192,117,66,72,139,69,232,243,15,16,72,92,243,15,16,69,228,15,40,208,243,15,92,209,72,139,69,232,243,15,16,72,100,72,139,69,232,243,15,16,64,92,15,40,217, 243,15,92,216,15,40,195,15,40,226,243,15,94,224,243,15,17,101,224,233,44,1,0,0,72,139,69,232,15,182,128,233,0,0,0,131,224,1,132,192,116,109,72,139,69,232,15,182,128,232,0,0,0,131,224,1,132,192,116,91,72,139,69,232,139,80,116,72,139,69,232,139,64,108, 137,209,41,193,137,200,243,15,42,208,72,139,69,232,243,15,16,72,92,243,15,16,69,228,243,15,92,193,243,15,89,208,72,139,69,232,243,15,16,72,100,72,139,69,232,243,15,16,64,92,15,40,217,243,15,92,216,15,40,195,15,40,226,243,15,94,224,243,15,17,101,224,233, 173,0,0,0,72,139,69,232,72,139,64,72,72,133,192,117,17,72,141,61,254,127,5,0,184,0,0,0,0,232,0,55,4,0,72,139,69,232,72,139,120,72,76,139,85,232,72,141,69,240,72,141,85,244,72,141,77,248,72,141,117,252,73,137,193,73,137,208,72,137,242,72,137,254,76,137, 215,232,121,20,0,0,139,69,248,243,15,42,216,139,85,240,139,69,248,137,209,41,193,137,200,243,15,42,208,72,139,69,232,243,15,16,72,92,243,15,16,69,228,243,15,92,193,243,15,89,208,72,139,69,232,243,15,16,72,100,72,139,69,232,243,15,16,64,92,15,40,225,243, 15,92,224,15,40,196,15,40,202,243,15,94,200,15,40,193,15,40,227,243,15,88,224,243,15,17,101,224,243,15,16,69,224,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,125,248,243,15,16,5,226,226,5,0,232,130,249,255,255,243,15,17, 69,240,72,139,125,248,15,87,192,232,113,249,255,255,243,15,16,77,240,243,15,92,200,15,40,193,243,15,89,69,244,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,125,248,243,15,16,5,156,226,5,0,232,210,250,255,255,243,15,17,69, 240,72,139,125,248,15,87,192,232,193,250,255,255,243,15,16,77,240,243,15,92,200,15,40,193,243,15,89,69,244,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,139,69,240,15,182,128,232,0,0,0,131,224,1,132,192,117,18,72,139,69,240,15, 182,128,233,0,0,0,131,224,1,132,192,117,17,72,139,69,248,15,183,64,40,152,137,69,236,233,188,0,0,0,72,139,69,240,15,182,128,232,0,0,0,131,224,128,132,192,116,68,72,139,69,240,243,15,16,64,88,72,139,125,240,232,219,251,255,255,15,40,200,72,139,69,248, 15,183,64,40,152,243,15,42,192,243,15,88,200,72,139,69,240,139,64,120,243,15,42,192,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,236,235,102,72,139,69,240,243,15,16,80,88,72,139,69,240,243,15,16,72,96,72,139,69,240,243,15,16,64,88,243,15,92, 200,72,139,69,248,15,183,64,40,152,243,15,42,192,243,15,89,200,72,139,69,240,139,80,112,72,139,69,240,139,64,104,137,209,41,193,137,200,243,15,42,192,15,40,217,243,15,94,216,15,40,195,243,15,88,194,72,139,125,240,232,74,251,255,255,243,15,44,192,137, 69,236,139,69,236,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,139,69,240,15,182,128,232,0,0,0,131,224,1,132,192,117,18,72,139,69,240,15,182,128,233,0,0,0,131,224,1,132,192,117,17,72,139,69,248,15,183,64,42,152,137,69,236,233, 188,0,0,0,72,139,69,240,15,182,128,232,0,0,0,131,224,128,132,192,116,68,72,139,69,240,243,15,16,64,92,72,139,125,240,232,109,252,255,255,15,40,200,72,139,69,248,15,183,64,42,152,243,15,42,192,243,15,88,200,72,139,69,240,139,64,124,243,15,42,192,15,40, 209,243,15,92,208,15,40,194,243,15,44,192,137,69,236,235,102,72,139,69,240,243,15,16,80,92,72,139,69,240,243,15,16,72,100,72,139,69,240,243,15,16,64,92,243,15,92,200,72,139,69,248,15,183,64,42,152,243,15,42,192,243,15,89,200,72,139,69,240,139,80,116, 72,139,69,240,139,64,108,137,209,41,193,137,200,243,15,42,192,15,40,217,243,15,94,216,15,40,195,243,15,88,194,72,139,125,240,232,220,251,255,255,243,15,44,192,137,69,236,139,69,236,201,195,85,72,137,229,65,86,65,85,65,84,83,72,129,236,176,0,0,0,72,137, 189,72,255,255,255,72,139,189,72,255,255,255,232,24,57,255,255,133,192,15,132,113,1,0,0,72,139,189,72,255,255,255,232,78,57,255,255,133,192,15,132,1,1,0,0,72,139,133,72,255,255,255,72,139,64,48,72,137,69,216,235,54,72,139,181,72,255,255,255,72,139,125, 216,186,0,0,0,0,232,41,99,255,255,72,139,181,72,255,255,255,72,139,125,216,186,1,0,0,0,232,20,99,255,255,72,139,69,216,72,139,64,8,72,137,69,216,72,131,125,216,0,117,195,72,139,181,72,255,255,255,72,141,189,80,255,255,255,232,155,32,255,255,235,63,139, 93,180,68,139,101,176,68,139,109,172,68,139,117,168,72,139,189,72,255,255,255,232,119,232,255,255,72,137,198,72,139,85,208,137,28,36,69,137,225,69,137,232,68,137,241,72,141,61,166,114,5,0,184,0,0,0,0,232,228,203,3,0,72,141,189,80,255,255,255,232,152, 32,255,255,72,137,69,208,72,131,125,208,0,117,170,72,139,189,72,255,255,255,190,0,0,0,0,232,171,52,255,255,72,139,133,72,255,255,255,15,182,128,232,0,0,0,131,224,128,132,192,116,34,72,141,61,177,123,5,0,184,0,0,0,0,232,180,42,4,0,72,139,189,72,255,255, 255,190,1,0,0,0,232,116,52,255,255,72,139,133,72,255,255,255,72,139,64,72,72,133,192,116,76,72,139,133,72,255,255,255,72,139,120,72,232,219,55,255,255,133,192,116,56,72,139,133,72,255,255,255,72,139,112,72,72,139,189,72,255,255,255,186,0,0,0,0,232,44, 0,0,0,72,139,133,72,255,255,255,72,139,112,72,72,139,189,72,255,255,255,186,1,0,0,0,232,16,0,0,0,72,129,196,176,0,0,0,91,65,92,65,93,65,94,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,56,1,0,0,72,137,189,40,255,255,255,72,137,181,32,255, 255,255,137,149,28,255,255,255,72,139,5,82,187,7,0,72,139,16,72,137,85,200,49,210,72,139,133,40,255,255,255,72,137,133,80,255,255,255,72,139,133,80,255,255,255,15,182,128,233,0,0,0,131,224,1,132,192,117,38,72,141,5,23,194,7,0,72,139,64,40,139,149,28, 255,255,255,72,139,181,32,255,255,255,72,139,189,40,255,255,255,255,208,233,37,15,0,0,131,189,28,255,255,255,0,116,43,72,139,189,80,255,255,255,232,2,70,255,255,133,192,116,27,72,139,181,80,255,255,255,72,139,189,32,255,255,255,232,106,22,1,0,72,137, 199,232,87,23,1,0,72,141,69,128,72,141,85,132,72,141,77,136,72,141,117,140,72,139,189,32,255,255,255,76,139,149,40,255,255,255,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,110,15,0,0,131,189,28,255,255,255,0,117,27,72,139,181,80,255,255, 255,72,139,189,32,255,255,255,232,20,22,1,0,72,137,199,232,58,23,1,0,72,139,133,80,255,255,255,72,141,125,144,73,137,192,72,141,13,141,121,5,0,186,50,0,0,0,190,0,0,0,0,184,0,0,0,0,232,45,78,5,0,131,189,28,255,255,255,0,116,64,139,69,128,139,85,132,139, 77,136,139,117,140,72,139,189,80,255,255,255,76,141,85,144,76,139,157,32,255,255,255,137,68,36,8,137,20,36,65,137,201,65,137,240,76,137,209,186,1,0,0,0,72,137,254,76,137,223,232,155,207,1,0,235,23,72,139,181,80,255,255,255,72,141,85,144,72,139,189,32, 255,255,255,232,61,216,1,0,72,139,133,80,255,255,255,15,182,128,232,0,0,0,131,224,1,132,192,15,132,231,0,0,0,131,189,28,255,255,255,0,15,132,173,0,0,0,139,93,136,68,139,101,140,68,139,109,136,68,139,117,132,68,139,125,128,139,77,132,137,141,228,254,255, 255,139,69,128,137,133,232,254,255,255,139,85,140,137,149,236,254,255,255,139,77,136,137,141,240,254,255,255,139,69,140,137,133,244,254,255,255,72,139,133,80,255,255,255,72,139,120,72,232,126,229,255,255,72,137,198,72,141,69,144,72,137,68,36,48,137,92, 36,40,68,137,100,36,32,68,137,108,36,24,68,137,116,36,16,68,137,124,36,8,139,149,228,254,255,255,137,20,36,68,139,141,232,254,255,255,68,139,133,236,254,255,255,139,141,240,254,255,255,139,149,244,254,255,255,72,141,61,225,120,5,0,184,0,0,0,0,232,183, 200,3,0,233,63,13,0,0,72,139,133,80,255,255,255,72,139,120,72,232,17,229,255,255,72,137,198,72,141,85,144,72,141,61,14,121,5,0,184,0,0,0,0,232,138,200,3,0,233,18,13,0,0,131,189,28,255,255,255,0,15,132,149,12,0,0,139,93,136,68,139,101,140,68,139,109,136, 68,139,117,132,68,139,125,128,139,77,132,137,141,248,254,255,255,139,69,128,137,133,252,254,255,255,139,85,140,137,149,0,255,255,255,139,77,136,137,141,4,255,255,255,139,69,140,137,133,8,255,255,255,72,139,133,80,255,255,255,72,139,120,72,232,151,228, 255,255,72,137,198,72,141,69,144,72,137,68,36,48,137,92,36,40,68,137,100,36,32,68,137,108,36,24,68,137,116,36,16,68,137,124,36,8,139,149,248,254,255,255,137,20,36,68,139,141,252,254,255,255,68,139,133,0,255,255,255,139,141,4,255,255,255,139,149,8,255, 255,255,72,141,61,106,120,5,0,184,0,0,0,0,232,208,199,3,0,139,85,128,139,69,136,57,194,15,78,194,255,200,137,133,124,255,255,255,72,139,133,80,255,255,255,72,139,64,48,72,137,133,64,255,255,255,233,212,0,0,0,72,139,133,64,255,255,255,72,139,16,72,141, 5,61,22,8,0,72,139,0,72,57,194,15,133,165,0,0,0,72,139,189,64,255,255,255,72,141,181,56,255,255,255,232,149,178,254,255,133,192,15,133,138,0,0,0,72,139,189,80,255,255,255,232,99,52,255,255,137,199,232,159,229,3,0,41,133,124,255,255,255,72,139,189,80, 255,255,255,232,74,52,255,255,137,199,232,86,229,3,0,137,195,72,139,133,56,255,255,255,76,139,32,68,139,109,140,72,139,189,80,255,255,255,232,149,227,255,255,72,137,198,139,141,124,255,255,255,72,141,69,144,72,137,68,36,16,72,141,5,177,205,7,0,72,137, 68,36,8,137,28,36,72,141,5,62,205,7,0,73,137,193,77,137,224,68,137,234,72,141,61,214,119,5,0,184,0,0,0,0,232,228,198,3,0,72,139,133,64,255,255,255,72,139,64,8,72,137,133,64,255,255,255,72,131,189,64,255,255,255,0,15,133,30,255,255,255,72,139,133,80,255, 255,255,139,128,136,0,0,0,133,192,15,132,83,4,0,0,139,85,128,139,69,136,57,194,125,32,139,69,136,243,15,42,192,243,15,17,133,116,255,255,255,139,69,128,243,15,42,192,243,15,17,133,112,255,255,255,235,30,139,69,128,243,15,42,192,243,15,17,133,116,255, 255,255,139,69,136,243,15,42,192,243,15,17,133,112,255,255,255,199,133,124,255,255,255,0,0,0,0,72,139,133,80,255,255,255,139,128,128,0,0,0,137,133,120,255,255,255,233,131,1,0,0,72,139,133,80,255,255,255,139,128,136,0,0,0,139,149,124,255,255,255,137,193, 137,208,193,250,31,247,249,137,208,133,192,116,12,199,133,12,255,255,255,2,0,0,0,235,10,199,133,12,255,255,255,4,0,0,0,139,133,12,255,255,255,137,133,108,255,255,255,243,15,16,133,116,255,255,255,243,15,44,192,137,195,43,157,108,255,255,255,243,15,16, 133,120,255,255,255,72,139,189,80,255,255,255,232,74,243,255,255,243,68,15,44,224,243,15,16,133,116,255,255,255,243,68,15,44,232,243,15,16,133,120,255,255,255,72,139,189,80,255,255,255,232,36,243,255,255,243,68,15,44,240,72,139,133,80,255,255,255,72, 139,120,72,232,13,226,255,255,72,137,198,72,141,69,144,72,137,4,36,65,137,217,69,137,224,68,137,233,68,137,242,72,141,61,216,118,5,0,184,0,0,0,0,232,118,197,3,0,243,15,16,133,112,255,255,255,243,15,44,192,137,195,3,157,108,255,255,255,243,15,16,133,120, 255,255,255,72,139,189,80,255,255,255,232,191,242,255,255,243,68,15,44,224,243,15,16,133,112,255,255,255,243,68,15,44,232,243,15,16,133,120,255,255,255,72,139,189,80,255,255,255,232,153,242,255,255,243,68,15,44,240,72,139,133,80,255,255,255,72,139,120, 72,232,130,225,255,255,72,137,198,72,141,69,144,72,137,4,36,65,137,217,69,137,224,68,137,233,68,137,242,72,141,61,77,118,5,0,184,0,0,0,0,232,235,196,3,0,255,133,124,255,255,255,72,139,133,80,255,255,255,243,15,16,136,132,0,0,0,243,15,16,133,120,255,255, 255,243,15,88,193,243,15,17,133,120,255,255,255,243,15,90,157,120,255,255,255,72,139,133,80,255,255,255,243,15,16,64,96,243,15,90,200,242,15,16,5,66,218,5,0,102,15,40,209,242,15,89,208,72,139,133,80,255,255,255,243,15,16,64,88,243,15,90,200,242,15,16, 5,26,218,5,0,242,15,89,193,242,15,88,194,102,15,46,195,15,135,43,254,255,255,199,133,124,255,255,255,1,0,0,0,72,139,133,80,255,255,255,243,15,16,136,128,0,0,0,72,139,133,80,255,255,255,243,15,16,128,132,0,0,0,15,40,209,243,15,92,208,15,40,194,243,15, 17,133,120,255,255,255,233,131,1,0,0,72,139,133,80,255,255,255,139,128,136,0,0,0,139,149,124,255,255,255,137,193,137,208,193,250,31,247,249,137,208,133,192,116,12,199,133,16,255,255,255,2,0,0,0,235,10,199,133,16,255,255,255,4,0,0,0,139,133,16,255,255, 255,137,133,104,255,255,255,243,15,16,133,116,255,255,255,243,15,44,192,137,195,43,157,104,255,255,255,243,15,16,133,120,255,255,255,72,139,189,80,255,255,255,232,54,241,255,255,243,68,15,44,224,243,15,16,133,116,255,255,255,243,68,15,44,232,243,15,16, 133,120,255,255,255,72,139,189,80,255,255,255,232,16,241,255,255,243,68,15,44,240,72,139,133,80,255,255,255,72,139,120,72,232,249,223,255,255,72,137,198,72,141,69,144,72,137,4,36,65,137,217,69,137,224,68,137,233,68,137,242,72,141,61,196,116,5,0,184,0, 0,0,0,232,98,195,3,0,243,15,16,133,112,255,255,255,243,15,44,192,137,195,3,157,104,255,255,255,243,15,16,133,120,255,255,255,72,139,189,80,255,255,255,232,171,240,255,255,243,68,15,44,224,243,15,16,133,112,255,255,255,243,68,15,44,232,243,15,16,133,120, 255,255,255,72,139,189,80,255,255,255,232,133,240,255,255,243,68,15,44,240,72,139,133,80,255,255,255,72,139,120,72,232,110,223,255,255,72,137,198,72,141,69,144,72,137,4,36,65,137,217,69,137,224,68,137,233,68,137,242,72,141,61,57,116,5,0,184,0,0,0,0,232, 215,194,3,0,255,133,124,255,255,255,72,139,133,80,255,255,255,243,15,16,136,132,0,0,0,243,15,16,133,120,255,255,255,243,15,92,193,243,15,17,133,120,255,255,255,243,15,90,157,120,255,255,255,72,139,133,80,255,255,255,243,15,16,64,88,243,15,90,200,242, 15,16,5,46,216,5,0,102,15,40,209,242,15,89,208,72,139,133,80,255,255,255,243,15,16,64,96,243,15,90,200,242,15,16,5,6,216,5,0,242,15,89,193,242,15,88,194,102,15,46,216,15,135,43,254,255,255,72,139,133,80,255,255,255,139,128,164,0,0,0,133,192,15,132,8, 4,0,0,72,139,133,80,255,255,255,243,15,16,72,100,72,139,133,80,255,255,255,243,15,16,64,92,15,46,193,119,2,235,34,72,139,133,80,255,255,255,139,64,92,137,133,100,255,255,255,72,139,133,80,255,255,255,139,64,100,137,133,96,255,255,255,235,32,72,139,133, 80,255,255,255,139,64,100,137,133,100,255,255,255,72,139,133,80,255,255,255,139,64,92,137,133,96,255,255,255,199,133,124,255,255,255,0,0,0,0,72,139,133,80,255,255,255,139,128,156,0,0,0,137,133,120,255,255,255,233,97,1,0,0,72,139,133,80,255,255,255,139, 128,164,0,0,0,139,149,124,255,255,255,137,193,137,208,193,250,31,247,249,137,208,133,192,116,12,199,133,20,255,255,255,2,0,0,0,235,10,199,133,20,255,255,255,4,0,0,0,139,133,20,255,255,255,137,133,92,255,255,255,243,15,16,133,120,255,255,255,72,139,189, 80,255,255,255,232,117,240,255,255,243,15,44,216,139,69,140,65,137,196,68,3,165,92,255,255,255,243,15,16,133,120,255,255,255,72,139,189,80,255,255,255,232,80,240,255,255,243,68,15,44,232,68,139,117,140,72,139,133,80,255,255,255,72,139,120,72,232,157, 221,255,255,72,137,198,72,141,69,144,72,137,4,36,65,137,217,69,137,224,68,137,233,68,137,242,72,141,61,104,114,5,0,184,0,0,0,0,232,6,193,3,0,243,15,16,133,120,255,255,255,72,139,189,80,255,255,255,232,251,239,255,255,243,15,44,216,139,69,132,65,137,196, 68,43,165,92,255,255,255,243,15,16,133,120,255,255,255,72,139,189,80,255,255,255,232,214,239,255,255,243,68,15,44,232,68,139,117,132,72,139,133,80,255,255,255,72,139,120,72,232,35,221,255,255,72,137,198,72,141,69,144,72,137,4,36,65,137,217,69,137,224, 68,137,233,68,137,242,72,141,61,238,113,5,0,184,0,0,0,0,232,140,192,3,0,255,133,124,255,255,255,72,139,133,80,255,255,255,243,15,16,136,160,0,0,0,243,15,16,133,120,255,255,255,243,15,88,193,243,15,17,133,120,255,255,255,243,15,90,157,120,255,255,255, 243,15,90,141,100,255,255,255,242,15,16,5,235,213,5,0,102,15,40,209,242,15,89,208,243,15,90,141,96,255,255,255,242,15,16,5,203,213,5,0,242,15,89,193,242,15,88,194,102,15,46,195,15,135,93,254,255,255,199,133,124,255,255,255,1,0,0,0,72,139,133,80,255,255, 255,243,15,16,136,156,0,0,0,72,139,133,80,255,255,255,243,15,16,128,160,0,0,0,15,40,209,243,15,92,208,15,40,194,243,15,17,133,120,255,255,255,233,97,1,0,0,72,139,133,80,255,255,255,139,128,164,0,0,0,139,149,124,255,255,255,137,193,137,208,193,250,31, 247,249,137,208,133,192,116,12,199,133,24,255,255,255,2,0,0,0,235,10,199,133,24,255,255,255,4,0,0,0,139,133,24,255,255,255,137,133,88,255,255,255,243,15,16,133,120,255,255,255,72,139,189,80,255,255,255,232,147,238,255,255,243,15,44,216,139,69,140,65, 137,196,68,3,165,88,255,255,255,243,15,16,133,120,255,255,255,72,139,189,80,255,255,255,232,110,238,255,255,243,68,15,44,232,68,139,117,140,72,139,133,80,255,255,255,72,139,120,72,232,187,219,255,255,72,137,198,72,141,69,144,72,137,4,36,65,137,217,69, 137,224,68,137,233,68,137,242,72,141,61,134,112,5,0,184,0,0,0,0,232,36,191,3,0,243,15,16,133,120,255,255,255,72,139,189,80,255,255,255,232,25,238,255,255,243,15,44,216,139,69,132,65,137,196,68,43,165,88,255,255,255,243,15,16,133,120,255,255,255,72,139, 189,80,255,255,255,232,244,237,255,255,243,68,15,44,232,68,139,117,132,72,139,133,80,255,255,255,72,139,120,72,232,65,219,255,255,72,137,198,72,141,69,144,72,137,4,36,65,137,217,69,137,224,68,137,233,68,137,242,72,141,61,12,112,5,0,184,0,0,0,0,232,170, 190,3,0,255,133,124,255,255,255,72,139,133,80,255,255,255,243,15,16,136,160,0,0,0,243,15,16,133,120,255,255,255,243,15,92,193,243,15,17,133,120,255,255,255,243,15,90,157,120,255,255,255,243,15,90,141,96,255,255,255,242,15,16,5,9,212,5,0,102,15,40,209, 242,15,89,208,243,15,90,141,100,255,255,255,242,15,16,5,233,211,5,0,242,15,89,193,242,15,88,194,102,15,46,216,15,135,93,254,255,255,199,133,124,255,255,255,0,0,0,0,233,225,0,0,0,72,139,189,80,255,255,255,232,37,43,255,255,137,195,72,139,133,80,255,255, 255,72,139,144,144,0,0,0,139,133,124,255,255,255,72,152,72,193,224,3,72,141,4,2,72,139,0,76,139,32,72,139,133,80,255,255,255,243,15,16,128,152,0,0,0,72,139,189,80,255,255,255,232,236,236,255,255,243,68,15,44,232,72,139,133,80,255,255,255,72,139,144,144, 0,0,0,139,133,124,255,255,255,72,152,72,193,224,3,72,141,4,2,72,139,0,72,139,56,232,69,66,5,0,242,15,90,192,72,139,189,80,255,255,255,232,22,235,255,255,243,68,15,44,240,72,139,189,80,255,255,255,232,3,218,255,255,72,137,198,72,141,69,144,72,137,68,36, 16,72,141,5,37,196,7,0,72,137,68,36,8,137,28,36,72,141,5,178,195,7,0,73,137,193,77,137,224,68,137,233,68,137,242,72,141,61,239,110,5,0,184,0,0,0,0,232,85,189,3,0,255,133,124,255,255,255,72,139,133,80,255,255,255,139,128,140,0,0,0,59,133,124,255,255,255, 15,143,6,255,255,255,199,133,124,255,255,255,0,0,0,0,233,225,0,0,0,72,139,189,80,255,255,255,232,28,42,255,255,137,195,72,139,133,80,255,255,255,72,139,144,176,0,0,0,139,133,124,255,255,255,72,152,72,193,224,3,72,141,4,2,72,139,0,76,139,32,72,139,133, 80,255,255,255,72,139,144,176,0,0,0,139,133,124,255,255,255,72,152,72,193,224,3,72,141,4,2,72,139,0,72,139,56,232,92,65,5,0,242,15,90,192,72,139,189,80,255,255,255,232,197,235,255,255,243,68,15,44,232,72,139,133,80,255,255,255,243,15,16,128,184,0,0,0, 72,139,189,80,255,255,255,232,13,234,255,255,243,68,15,44,240,72,139,189,80,255,255,255,232,250,216,255,255,72,137,198,72,141,69,144,72,137,68,36,16,72,141,5,28,195,7,0,72,137,68,36,8,137,28,36,72,141,5,169,194,7,0,73,137,193,77,137,224,68,137,233,68, 137,242,72,141,61,230,109,5,0,184,0,0,0,0,232,76,188,3,0,255,133,124,255,255,255,72,139,133,80,255,255,255,139,128,168,0,0,0,59,133,124,255,255,255,15,143,6,255,255,255,72,139,133,80,255,255,255,72,139,64,48,72,137,133,64,255,255,255,235,42,72,139,181, 80,255,255,255,72,139,189,64,255,255,255,186,1,0,0,0,232,202,82,255,255,72,139,133,64,255,255,255,72,139,64,8,72,137,133,64,255,255,255,72,131,189,64,255,255,255,0,117,204,235,112,72,139,133,80,255,255,255,72,139,120,72,232,66,216,255,255,72,137,198, 72,141,85,144,72,141,61,63,108,5,0,184,0,0,0,0,232,187,187,3,0,72,139,133,80,255,255,255,72,139,64,48,72,137,133,72,255,255,255,235,42,72,139,181,80,255,255,255,72,139,189,72,255,255,255,186,0,0,0,0,232,88,82,255,255,72,139,133,72,255,255,255,72,139, 64,8,72,137,133,72,255,255,255,72,131,189,72,255,255,255,0,117,204,72,139,5,212,171,7,0,72,139,85,200,72,51,16,116,5,232,172,63,5,0,72,129,196,56,1,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,80,72,137,125,216,72,137,117,208,72,137, 85,200,72,137,77,192,76,137,69,184,76,137,77,176,72,139,69,216,72,137,69,232,72,139,125,232,72,139,117,208,232,68,236,255,255,137,69,252,72,139,125,232,72,139,117,208,232,58,237,255,255,137,69,248,72,139,69,232,139,64,80,3,69,252,137,69,244,72,139,69, 232,139,64,84,3,69,248,137,69,240,72,139,85,200,139,69,252,137,2,72,139,85,192,139,69,248,137,2,72,139,85,184,139,69,244,137,2,72,139,85,176,139,69,240,137,2,201,195,85,72,137,229,72,131,236,112,72,137,125,184,72,137,117,176,72,137,85,168,72,137,77,160, 76,137,69,152,76,137,77,144,199,69,252,255,255,255,127,199,69,248,255,255,255,127,199,69,244,1,0,0,128,199,69,240,1,0,0,128,72,139,69,184,72,137,69,208,72,139,69,208,15,182,128,233,0,0,0,131,224,1,132,192,15,132,134,1,0,0,72,141,69,240,72,141,85,244, 72,141,77,248,72,141,117,252,72,139,125,176,76,139,85,184,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,242,254,255,255,72,139,125,208,232,180,53,255,255,133,192,116,84,72,141,5,138,177,7,0,76,139,24,72,141,69,220,72,141,85,224,72,141,77, 228,72,141,117,232,72,139,125,176,76,139,85,184,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,65,255,211,139,85,224,139,69,244,57,194,126,6,139,69,224,137,69,244,139,85,220,139,69,240,57,194,126,6,139,69,220,137,69,240,72,139,69,208,15,182,128, 232,0,0,0,131,224,128,132,192,15,133,23,1,0,0,72,139,69,208,15,182,128,232,0,0,0,131,224,1,15,182,192,137,69,236,72,139,85,208,15,182,130,232,0,0,0,131,224,254,136,130,232,0,0,0,72,139,69,208,72,139,64,48,72,137,69,200,235,127,72,139,117,208,72,139,125, 200,232,28,78,255,255,133,192,116,98,72,139,69,200,72,139,16,72,141,5,26,8,8,0,72,139,0,72,57,194,116,76,72,141,69,220,72,141,85,224,72,141,77,228,72,141,117,232,72,139,125,208,76,139,85,200,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232, 5,76,255,255,139,85,224,139,69,244,57,194,126,6,139,69,224,137,69,244,139,85,220,139,69,240,57,194,126,6,139,69,220,137,69,240,72,139,69,200,72,139,64,8,72,137,69,200,72,131,125,200,0,15,133,118,255,255,255,139,69,236,131,224,1,72,139,85,208,137,193, 131,225,1,15,182,130,232,0,0,0,131,224,254,9,200,136,130,232,0,0,0,235,52,72,141,5,61,176,7,0,76,139,24,72,141,69,240,72,141,85,244,72,141,77,248,72,141,117,252,72,139,125,176,76,139,85,184,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,65,255, 211,139,85,252,72,139,69,168,137,16,139,85,248,72,139,69,160,137,16,139,85,244,72,139,69,152,137,16,139,85,240,72,139,69,144,137,16,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,137,77,216,72,139,69,232,72,137,69,248,72, 139,69,248,15,182,128,233,0,0,0,131,224,1,132,192,117,29,72,141,5,179,175,7,0,72,139,64,8,139,77,216,139,85,220,72,139,117,224,72,139,125,232,255,208,235,74,72,139,69,248,15,183,64,40,137,194,139,69,220,141,4,2,137,194,72,139,69,248,102,137,80,40,72, 139,69,248,15,183,64,42,137,194,139,69,216,141,4,2,137,194,72,139,69,248,102,137,80,42,72,139,125,248,232,57,235,255,255,72,139,117,248,72,139,125,224,232,113,39,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72, 139,69,232,72,137,69,248,72,139,69,248,15,182,128,233,0,0,0,131,224,1,132,192,117,29,72,141,5,29,175,7,0,72,139,64,16,139,85,220,72,139,117,224,72,139,125,232,255,208,233,176,0,0,0,72,139,117,248,72,139,125,224,232,152,3,1,0,72,137,69,240,72,139,125, 248,232,12,51,255,255,133,192,116,12,139,117,220,72,139,125,240,232,56,5,1,0,131,125,220,0,116,13,72,141,5,162,135,5,0,72,137,69,200,235,11,72,141,5,85,105,5,0,72,137,69,200,72,139,125,240,232,9,244,0,0,72,139,117,224,72,139,77,200,72,137,194,72,141, 61,60,105,5,0,184,0,0,0,0,232,58,183,3,0,131,125,220,0,116,13,72,141,5,95,135,5,0,72,137,69,208,235,11,72,141,5,18,105,5,0,72,137,69,208,72,139,125,224,232,130,211,255,255,72,137,198,72,139,85,232,72,139,77,208,72,141,61,33,105,5,0,184,0,0,0,0,232,247, 182,3,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,139,69,232,72,137,69,248,72,139,125,248,232,80,50,255,255,133,192,116,24,72,141,5,38,174,7,0,72,139,64,24,139,85,220,72,139,117,224,72,139,125,232,255,208,201,195, 85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,137,69,248,72,141,5,244,173,7,0,72,139,64,32,72,139,117,224,72,139,125,232,255,208,235,13,72,139,117,240,72,139,125,248,232,200,205,255,255,72,139,69,248,72,139,64,48,72,137,69, 240,72,131,125,240,0,117,224,201,195,85,72,137,229,72,131,236,80,72,137,125,184,243,15,17,69,180,243,15,17,77,176,72,139,69,184,72,137,69,216,243,15,16,5,244,214,7,0,243,15,88,69,180,243,15,17,69,252,243,15,16,5,230,214,7,0,243,15,88,69,176,243,15,17, 69,248,72,139,69,216,72,139,64,48,72,137,69,208,243,15,16,5,196,214,7,0,72,139,125,216,232,72,224,255,255,243,15,90,200,242,15,16,5,223,201,5,0,242,15,88,193,242,15,44,192,137,69,244,243,15,16,69,252,72,139,125,216,232,35,224,255,255,243,15,90,200,242, 15,16,5,186,201,5,0,242,15,88,193,242,15,44,192,137,69,240,243,15,16,5,123,214,7,0,72,139,125,216,232,145,225,255,255,243,15,17,69,228,243,15,16,69,248,72,139,125,216,232,126,225,255,255,243,15,17,69,224,139,69,252,137,5,77,214,7,0,139,69,248,137,5,72, 214,7,0,72,131,125,208,0,15,132,116,1,0,0,72,139,69,208,72,139,16,72,141,5,27,4,8,0,72,139,0,72,57,194,116,5,233,89,1,0,0,72,141,85,200,72,141,117,236,72,139,125,208,232,97,203,254,255,133,192,15,132,64,1,0,0,131,125,244,0,121,7,199,69,244,0,0,0,0,139, 69,236,57,69,244,124,8,139,69,236,255,200,137,69,244,131,125,240,0,121,7,199,69,240,0,0,0,0,139,69,236,57,69,240,124,8,139,69,236,255,200,137,69,240,139,69,240,255,200,59,69,244,126,106,139,69,244,255,192,137,69,232,235,83,139,69,232,72,152,72,193,224, 3,72,137,194,72,139,69,200,72,141,12,2,243,15,16,69,228,15,40,200,243,15,92,77,224,139,85,232,139,69,240,41,208,243,15,42,192,243,15,89,200,139,85,244,139,69,240,41,208,243,15,42,192,15,40,209,243,15,94,208,15,40,194,243,15,88,69,224,243,15,17,1,255, 69,232,139,69,232,59,69,240,126,165,233,137,0,0,0,139,69,240,255,192,59,69,244,125,103,139,69,244,255,200,137,69,232,235,83,139,69,232,72,152,72,193,224,3,72,137,194,72,139,69,200,72,141,12,2,243,15,16,69,228,15,40,200,243,15,92,77,224,139,85,232,139, 69,240,41,208,243,15,42,192,243,15,89,200,139,85,244,139,69,240,41,208,243,15,42,192,15,40,209,243,15,94,208,15,40,194,243,15,88,69,224,243,15,17,1,255,77,232,139,69,232,59,69,240,125,165,235,24,139,69,240,72,152,72,193,224,3,72,137,194,72,139,69,200, 72,1,194,139,69,224,137,2,72,139,125,208,232,19,201,254,255,201,195,85,72,137,229,83,72,131,236,120,72,137,125,184,72,137,117,176,137,85,172,137,77,168,68,137,69,164,68,137,77,160,72,139,69,184,72,137,69,208,199,69,236,0,0,0,0,72,139,69,208,15,182,128, 233,0,0,0,131,224,1,132,192,117,70,72,141,5,36,171,7,0,72,139,88,48,139,85,160,139,77,164,139,117,168,139,125,172,76,139,85,176,76,139,93,184,139,69,24,137,68,36,8,139,69,16,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,76,137,223,255,211, 137,69,156,233,7,1,0,0,72,139,69,208,15,182,128,232,0,0,0,131,224,1,132,192,116,12,199,69,156,0,0,0,0,233,233,0,0,0,72,139,69,208,72,139,64,48,72,137,69,200,233,140,0,0,0,72,141,85,228,72,141,77,232,139,117,168,139,125,172,76,139,85,200,76,139,93,208, 72,141,69,220,72,137,68,36,8,72,141,69,224,72,137,4,36,73,137,209,73,137,200,137,241,137,250,76,137,214,76,137,223,232,110,100,255,255,133,192,116,64,139,85,160,139,77,164,139,117,168,139,125,172,76,139,85,208,76,139,93,200,139,69,24,137,68,36,8,199, 4,36,0,0,0,0,65,137,209,65,137,200,137,241,137,250,76,137,214,76,137,223,232,14,74,255,255,137,69,236,131,125,236,0,117,23,72,139,69,200,72,139,64,8,72,137,69,200,72,131,125,200,0,15,133,105,255,255,255,131,125,24,0,117,53,72,131,125,200,0,116,24,139, 93,236,72,139,125,208,232,21,207,255,255,72,137,199,137,222,232,106,99,255,255,235,22,72,139,125,208,232,0,207,255,255,72,137,199,190,0,0,0,0,232,82,99,255,255,139,69,236,137,69,156,139,69,156,72,131,196,120,91,201,195,85,72,137,229,72,137,125,232,72, 199,69,248,0,0,0,0,72,139,69,232,72,139,64,48,72,137,69,240,235,60,72,139,69,240,72,139,16,72,141,5,64,1,8,0,72,139,0,72,57,194,117,26,72,139,69,240,15,182,128,233,0,0,0,131,224,1,132,192,116,8,72,139,69,240,72,137,69,248,72,139,69,240,72,139,64,8,72, 137,69,240,72,131,125,240,0,117,189,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,141,5,246,0,8,0,72,139,56,72,141,53,20,168,7,0,232,187,25,3,0,72,141,61,120,76,5,0,232,89,29,3,0,72,137,194,72,141,53,226,216,255,255,72,141,5,202,0,8,0,72,139,56, 199,68,36,8,0,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,184,18,3,0,72,141,61,238,99,5,0,232,15,29,3,0,72,137,194,72,141,53,76,217,255,255,72,141,5,128,0,8,0,72,139,56,199,4,36,0,0,0,0,65,185,1,0,0,0,65,184,1,0,0, 0,185,1,0,0,0,184,0,0,0,0,232,118,18,3,0,72,141,61,92,80,5,0,232,205,28,3,0,72,137,194,72,141,53,176,217,255,255,72,141,5,62,0,8,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,65,18,3,0,72,141,61,131,79,5,0,232,152,28,3,0,72,137,194,72,141,53, 40,217,255,255,72,141,5,9,0,8,0,72,139,56,199,4,36,0,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,184,0,0,0,0,232,255,17,3,0,72,141,61,236,79,5,0,232,86,28,3,0,72,137,194,72,141,53,42,218,255,255,72,141,5,199,255,7,0,72,139,56,65,184,0,0,0,0,185,10, 0,0,0,184,0,0,0,0,232,202,17,3,0,72,141,61,16,120,5,0,232,33,28,3,0,72,137,194,72,141,5,217,156,254,255,72,137,198,72,141,5,143,255,7,0,72,139,56,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,2,0,0,0,65,184,1,0,0,0,185,2,0,0,0,184,0,0,0,0,232,125,17,3, 0,72,141,61,189,98,5,0,232,212,27,3,0,72,137,194,72,141,5,236,159,254,255,72,137,198,72,141,5,66,255,7,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,75,17,3,0,72,141,61,149,98,5,0,232,162,27,3,0,72,137,194,72,141,53,59,207,255,255,72,141,5,19,255,7,0,72,139, 56,185,0,0,0,0,184,0,0,0,0,232,28,17,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,61,176,208,7,0,232,111,82,3,0,72,137,69,248,72,139,85,248,72,139,69,232,72,137,66,48,72,139,85,248,72,139,69,224,72,137,66,56,72,139,125, 248,72,139,117,224,232,5,86,3,0,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,56,72,133,192,116,17,72,139,69,248,72,139,112,56,72,139,125,248,232,217,86,3,0,72,139,69,248,72,139,64,64,72,133,192,116,13,72,139, 69,248,72,139,120,64,232,101,94,3,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,82,82,3,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,242,15,17,69,240,72,139,69,248,72,139,64,56,72,133,192,117,11,72,139,125,248,232,41, 82,3,0,235,74,72,139,69,248,72,199,64,48,0,0,0,0,102,15,87,201,242,15,16,69,240,102,15,46,193,119,2,235,45,72,141,53,156,255,255,255,72,139,125,248,232,62,91,3,0,72,137,194,72,139,69,248,72,137,80,64,72,139,69,248,72,139,120,64,242,15,16,69,240,232,13, 93,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,64,48,72,133,192,116,24,72,139,69,248,72,139,120,48,72,139,77,224,139,85,236,72,139,117,240,232,207,30,3,0,201,195,85,72,137,229,72, 131,236,16,72,137,125,248,72,139,69,248,72,139,64,48,72,133,192,117,11,72,139,125,248,232,123,81,3,0,235,29,72,139,69,248,72,139,112,56,72,139,125,248,232,190,85,3,0,72,139,69,248,72,199,64,56,0,0,0,0,201,195,85,72,137,229,83,72,131,236,8,72,141,29,157, 254,255,255,72,141,61,187,96,5,0,232,195,25,3,0,72,137,199,65,185,0,0,0,0,65,184,1,0,0,0,185,72,0,0,0,72,137,218,190,0,0,0,0,184,0,0,0,0,232,253,7,3,0,72,137,5,224,206,7,0,72,141,53,47,255,255,255,72,139,61,210,206,7,0,232,191,21,3,0,72,141,61,122,96, 5,0,232,119,25,3,0,72,141,53,78,255,255,255,72,139,61,179,206,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,244,14,3,0,72,131,196,8,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,137,69,248,72,139,125,224,232,47,26, 255,255,133,192,15,132,151,0,0,0,72,139,125,224,232,23,202,255,255,72,137,69,240,72,139,69,248,139,184,72,4,0,0,72,139,69,248,68,139,128,72,4,0,0,72,139,69,248,139,136,152,4,0,0,72,139,85,248,72,139,117,240,65,137,249,72,141,61,243,95,5,0,184,0,0,0,0, 232,105,173,3,0,72,139,69,248,139,184,68,4,0,0,72,139,69,248,68,139,128,68,4,0,0,72,139,69,248,139,136,136,4,0,0,72,139,85,248,72,139,117,240,65,137,249,72,141,61,184,95,5,0,184,0,0,0,0,232,46,173,3,0,72,139,69,248,139,144,136,4,0,0,72,139,69,248,137, 144,152,4,0,0,201,195,85,72,137,229,72,129,236,144,0,0,0,72,137,125,184,72,137,117,176,72,139,125,176,232,107,201,255,255,72,137,69,200,72,139,69,184,139,128,148,4,0,0,137,69,252,72,139,69,184,139,64,68,137,69,244,139,69,244,141,80,3,133,192,15,72,194, 193,248,2,137,69,240,72,139,125,184,72,139,117,176,232,246,222,255,255,137,69,236,139,69,244,3,69,236,137,69,232,139,69,240,3,69,236,137,69,228,139,85,240,139,69,232,41,208,137,69,224,72,139,125,184,72,139,117,176,232,195,221,255,255,137,69,220,139,69, 220,137,69,216,139,69,240,3,69,220,137,69,212,139,69,244,3,69,220,43,69,240,137,69,208,199,69,248,0,0,0,0,233,28,1,0,0,72,139,69,184,68,139,128,72,4,0,0,139,69,244,68,139,85,216,65,1,194,139,85,232,139,77,236,139,117,216,72,139,125,200,139,69,248,137, 68,36,16,72,139,69,184,72,137,68,36,8,68,137,4,36,65,137,209,69,137,208,137,242,72,137,254,72,141,61,228,94,5,0,184,0,0,0,0,232,26,172,3,0,72,139,69,184,139,128,136,4,0,0,59,69,248,117,15,72,139,69,184,139,128,68,4,0,0,137,69,144,235,13,72,139,69,184, 139,128,72,4,0,0,137,69,144,72,139,69,184,139,128,136,4,0,0,59,69,248,117,15,72,139,69,184,139,128,68,4,0,0,137,69,148,235,13,72,139,69,184,139,128,72,4,0,0,137,69,148,139,85,224,139,77,208,139,117,228,139,125,212,76,139,85,200,139,69,248,137,68,36,24, 72,139,69,184,72,137,68,36,16,139,69,144,137,68,36,8,139,69,148,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,139,94,5,0,184,0,0,0,0,232,121,171,3,0,139,69,244,1,69,216,139,69,244,1,69,212,139,69,244,1,69,208,72,139,69,184,139,144, 136,4,0,0,72,139,69,184,137,144,152,4,0,0,255,69,248,139,69,248,59,69,252,15,140,216,254,255,255,72,139,69,184,139,128,76,4,0,0,137,69,152,72,139,69,184,139,128,60,4,0,0,137,69,156,72,139,69,184,72,131,192,80,72,137,69,160,72,139,69,184,72,139,128,96, 4,0,0,72,139,56,72,141,53,157,100,5,0,232,122,49,5,0,133,192,116,20,72,139,69,184,72,139,128,96,4,0,0,72,139,0,72,137,69,168,235,11,72,141,5,29,68,5,0,72,137,69,168,72,139,69,184,139,64,76,137,193,3,77,236,72,139,69,184,139,64,72,137,194,3,85,220,72, 139,117,200,72,139,69,184,72,137,68,36,24,139,69,152,137,68,36,16,72,141,5,82,177,7,0,72,137,68,36,8,139,69,156,137,4,36,76,139,77,160,76,139,69,168,72,141,61,196,74,5,0,184,0,0,0,0,232,138,170,3,0,72,139,69,184,15,182,128,56,4,0,0,131,224,128,132,192, 117,65,139,85,220,131,194,7,139,77,232,255,201,139,117,232,139,125,220,76,139,85,200,199,68,36,8,0,0,0,0,72,139,69,184,72,137,4,36,65,137,241,65,137,208,137,250,76,137,214,72,141,61,241,74,5,0,184,0,0,0,0,232,55,170,3,0,72,139,69,184,15,182,128,56,4, 0,0,131,224,64,132,192,117,67,139,85,236,255,194,139,77,220,131,193,7,139,117,236,139,125,220,76,139,85,200,199,68,36,8,0,0,0,0,72,139,69,184,72,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,228,74,5,0,184,0,0,0,0,232,226,169,3, 0,201,195,85,72,137,229,72,131,236,96,72,137,125,184,72,137,117,176,72,139,125,176,232,54,198,255,255,72,137,69,200,72,139,69,184,139,128,148,4,0,0,137,69,252,72,139,69,184,139,64,68,137,69,244,139,69,244,141,80,3,133,192,15,72,194,193,248,2,137,69,240, 72,139,125,184,72,139,117,176,232,193,219,255,255,137,69,236,139,69,244,3,69,236,137,69,232,139,69,240,3,69,236,137,69,228,139,85,240,139,69,232,41,208,137,69,224,72,139,125,184,72,139,117,176,232,142,218,255,255,137,69,220,139,69,220,137,69,216,139, 69,240,3,69,220,137,69,212,139,69,244,3,69,220,43,69,240,137,69,208,139,69,220,137,69,216,139,69,240,3,69,220,137,69,212,139,69,244,3,69,220,43,69,240,137,69,208,199,69,248,0,0,0,0,233,148,0,0,0,139,69,244,139,85,216,1,194,139,77,236,139,117,216,139, 125,248,76,139,85,184,76,139,93,200,139,69,232,137,68,36,8,137,20,36,65,137,201,65,137,240,137,249,76,137,210,76,137,222,72,141,61,68,92,5,0,184,0,0,0,0,232,218,168,3,0,139,85,228,139,77,212,139,117,248,72,139,125,184,76,139,85,200,139,69,224,137,68, 36,8,139,69,208,137,4,36,65,137,209,65,137,200,137,241,72,137,250,76,137,214,72,141,61,47,92,5,0,184,0,0,0,0,232,157,168,3,0,139,69,244,1,69,216,139,69,244,1,69,212,139,69,244,1,69,208,255,69,248,139,69,248,59,69,252,15,140,96,255,255,255,72,139,69,184, 139,64,76,137,199,3,125,236,72,139,69,184,139,64,72,137,193,3,77,220,72,139,85,184,72,139,117,200,65,137,248,72,141,61,234,65,5,0,184,0,0,0,0,232,72,168,3,0,72,139,69,184,15,182,128,56,4,0,0,131,224,128,132,192,117,66,139,85,220,131,194,7,139,77,232, 255,201,139,117,220,72,139,125,184,76,139,85,200,139,69,232,137,68,36,8,137,20,36,65,137,201,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,142,73,5,0,184,0,0,0,0,232,244,167,3,0,72,139,69,184,15,182,128,56,4,0,0,131,224,64,132,192,117,66,139, 69,236,255,192,139,85,220,131,194,7,139,77,236,139,117,220,72,139,125,184,76,139,85,200,137,68,36,8,137,20,36,65,137,201,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,98,73,5,0,184,0,0,0,0,232,160,167,3,0,201,195,85,72,137,229,72,131,236,32, 72,137,125,232,72,137,117,224,72,139,125,224,232,244,195,255,255,72,137,69,240,72,139,69,232,139,128,148,4,0,0,137,69,252,199,69,248,0,0,0,0,235,59,139,77,248,72,139,85,232,72,139,117,240,72,141,61,13,91,5,0,184,0,0,0,0,232,79,167,3,0,139,77,248,72,139, 85,232,72,139,117,240,72,141,61,11,91,5,0,184,0,0,0,0,232,51,167,3,0,255,69,248,139,69,248,59,69,252,124,189,72,139,85,232,72,139,117,240,72,141,61,145,124,5,0,184,0,0,0,0,232,15,167,3,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,30,72, 139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,209,90,5,0,184,0,0,0,0,232,223,166,3,0,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,167,93,5,0,184,0,0,0,0,232,175,166,3,0,201,195,85,72, 137,229,72,131,236,80,72,137,125,232,72,137,117,224,72,139,125,224,232,3,195,255,255,72,137,69,240,72,139,69,232,139,128,148,4,0,0,137,69,252,72,139,69,232,72,139,128,96,4,0,0,72,139,56,72,141,53,2,96,5,0,232,223,44,5,0,133,192,116,20,72,139,69,232,72, 139,128,96,4,0,0,72,139,0,72,137,69,200,235,11,72,141,5,130,63,5,0,72,137,69,200,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,117,15,72,139,69,232,139,128,76,4,0,0,137,69,212,235,7,199,69,212,255,0,0,0,72,139,69,232,139,144,60,4,0,0,72,139,77, 232,72,131,193,80,72,139,117,232,72,139,125,240,72,139,69,200,72,137,68,36,8,139,69,212,137,4,36,72,141,5,146,172,7,0,73,137,193,65,137,208,72,137,242,72,137,254,72,141,61,235,71,5,0,184,0,0,0,0,232,209,165,3,0,199,69,248,0,0,0,0,233,166,0,0,0,72,139, 69,232,139,128,72,4,0,0,139,77,248,72,139,85,232,72,139,117,240,65,137,192,72,141,61,174,89,5,0,184,0,0,0,0,232,156,165,3,0,72,139,69,232,139,128,136,4,0,0,59,69,248,117,15,72,139,69,232,139,128,68,4,0,0,137,69,216,235,13,72,139,69,232,139,128,72,4,0, 0,137,69,216,72,139,69,232,139,128,136,4,0,0,59,69,248,117,15,72,139,69,232,139,128,68,4,0,0,137,69,220,235,13,72,139,69,232,139,128,72,4,0,0,137,69,220,139,77,248,72,139,85,232,72,139,117,240,68,139,77,216,68,139,69,220,72,141,61,172,87,5,0,184,0,0, 0,0,232,34,165,3,0,255,69,248,139,69,248,59,69,252,15,140,78,255,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72,139,125,224,232,100,193,255,255,72,137,69,240,72,139,125,232,72,139,117,224,232,17,214,255,255,137, 69,252,72,139,125,232,72,139,117,224,232,7,215,255,255,137,69,248,139,69,220,131,224,1,132,192,116,94,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,76,72,139,69,232,139,64,68,137,199,3,125,248,68,139,69,252,65,131,192,7,72,139,69,232,139, 64,68,3,69,248,141,72,255,139,85,252,72,139,117,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,249,72,141,61,3,71,5,0,184,0,0,0,0,232,105,164,3,0,139,69,220,131,224,1,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116, 30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,33,88,5,0,184,0,0,0,0,232,47,164,3,0,139,69,220,131,224,2,133,192,116,85,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,67,139,85,248,255,194,139,77,252,131,193,7,139,117,248,139,125,252, 76,139,85,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,162,70,5,0,184,0,0,0,0,232,208,163,3,0,139,69,220,131,224,2,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,116, 30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,142,90,5,0,184,0,0,0,0,232,150,163,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224,232,234,191,255,255,72,137,69,240,72,139,69,232,139,128,148,4,0,0,137,69,252, 72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,116,86,199,69,248,0,0,0,0,235,37,139,77,248,72,139,85,232,72,139,117,240,65,184,255,0,0,0,72,141,61,111,87,5,0,184,0,0,0,0,232,45,163,3,0,255,69,248,139,69,248,59,69,252,124,211,72,139,85,232,72,139, 117,240,185,255,0,0,0,72,141,61,110,70,5,0,184,0,0,0,0,232,4,163,3,0,235,89,199,69,248,0,0,0,0,235,37,139,77,248,72,139,85,232,72,139,117,240,65,184,0,0,0,0,72,141,61,25,87,5,0,184,0,0,0,0,232,215,162,3,0,255,69,248,139,69,248,59,69,252,124,211,72,139, 69,232,139,136,76,4,0,0,72,139,85,232,72,139,117,240,72,141,61,19,70,5,0,184,0,0,0,0,232,169,162,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,131,125,236,0,117,25,72,139,117,240,72,139,125,248,72,141,21,165,244,255, 255,232,139,169,3,0,233,130,0,0,0,131,125,236,1,117,15,72,139,117,240,72,139,125,248,232,130,248,255,255,235,109,131,125,236,2,117,15,72,139,117,240,72,139,125,248,232,53,245,255,255,235,88,131,125,236,3,117,15,72,139,117,240,72,139,125,248,232,164,254, 255,255,235,67,131,125,236,4,117,15,72,139,117,240,72,139,125,248,232,133,250,255,255,235,46,131,125,236,5,117,15,72,139,117,240,72,139,125,248,232,97,251,255,255,235,25,131,125,236,5,126,19,139,85,236,131,234,6,72,139,117,240,72,139,125,248,232,226, 252,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,72,139,69,232,72,137,69,248,72,139,125,248,72,139,117,224,232,233,210,255,255,137,194,72,139,69,216,137,16,72,139,125, 248,72,139,117,224,232,218,211,255,255,137,194,72,139,69,208,137,16,72,139,69,216,139,8,72,139,69,248,139,80,68,72,139,69,248,139,128,148,4,0,0,15,175,194,141,20,1,72,139,69,200,137,16,72,139,69,208,139,16,72,139,69,248,139,64,64,1,194,72,139,69,192, 137,16,201,195,85,72,137,229,65,85,65,84,83,72,129,236,40,1,0,0,72,137,125,152,72,137,117,144,72,139,69,152,72,137,69,216,72,139,125,216,72,141,85,192,72,141,117,160,232,143,122,254,255,72,139,69,216,139,128,136,4,0,0,137,133,64,255,255,255,139,69,200, 137,133,68,255,255,255,139,85,196,137,149,72,255,255,255,139,69,192,137,133,76,255,255,255,72,139,69,216,139,128,60,4,0,0,137,133,80,255,255,255,72,139,125,216,72,129,199,56,4,0,0,232,140,132,254,255,137,133,84,255,255,255,72,139,69,216,139,64,76,137, 133,88,255,255,255,72,139,69,216,139,64,72,137,133,92,255,255,255,72,139,85,176,72,137,149,96,255,255,255,72,139,69,168,72,137,133,104,255,255,255,72,139,85,160,72,137,149,112,255,255,255,72,139,69,216,139,128,148,4,0,0,137,133,120,255,255,255,72,139, 125,216,72,129,199,64,4,0,0,232,19,131,254,255,137,133,124,255,255,255,72,139,69,216,139,128,144,4,0,0,137,69,128,72,139,69,216,139,64,68,137,69,132,72,139,69,216,72,139,16,72,139,5,45,193,7,0,72,57,194,117,18,72,141,61,190,84,5,0,232,194,11,3,0,72,137, 69,136,235,16,72,141,61,88,72,5,0,232,176,11,3,0,72,137,69,136,72,139,69,216,15,183,64,42,15,191,216,72,139,69,216,15,183,64,40,68,15,191,224,72,141,61,144,84,5,0,232,137,11,3,0,73,137,197,72,141,61,97,69,5,0,232,122,11,3,0,72,139,125,144,139,149,64, 255,255,255,137,84,36,120,139,149,68,255,255,255,137,84,36,112,139,149,72,255,255,255,137,84,36,104,139,149,76,255,255,255,137,84,36,96,139,149,80,255,255,255,137,84,36,88,139,149,84,255,255,255,137,84,36,80,139,149,88,255,255,255,137,84,36,72,139,149, 92,255,255,255,137,84,36,64,72,139,149,96,255,255,255,72,137,84,36,56,72,139,149,104,255,255,255,72,137,84,36,48,72,139,149,112,255,255,255,72,137,84,36,40,139,149,120,255,255,255,137,84,36,32,139,149,124,255,255,255,137,84,36,24,139,85,128,137,84,36, 16,139,85,132,137,84,36,8,72,139,85,136,72,137,20,36,65,137,217,69,137,224,76,137,233,72,137,194,72,141,53,206,83,5,0,184,0,0,0,0,232,146,160,2,0,72,139,125,144,72,141,53,146,86,5,0,184,0,0,0,0,232,125,160,2,0,72,129,196,40,1,0,0,91,65,92,65,93,201,195, 85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,8,4,0,0,72,137,189,104,252,255,255,72,137,181,96,252,255,255,72,139,5,97,143,7,0,72,139,16,72,137,85,200,49,210,72,139,133,104,252,255,255,72,137,133,144,252,255,255,199,133,156,252,255,255,255,255, 255,255,72,139,189,144,252,255,255,72,141,181,112,252,255,255,232,142,120,254,255,72,139,133,144,252,255,255,72,139,16,72,139,5,132,191,7,0,72,57,194,117,19,72,139,133,144,252,255,255,139,128,144,4,0,0,137,133,156,252,255,255,72,139,133,144,252,255,255, 139,128,76,4,0,0,137,194,129,226,255,255,255,0,72,139,133,144,252,255,255,139,128,68,4,0,0,137,193,129,225,255,255,255,0,72,139,133,144,252,255,255,139,128,72,4,0,0,137,198,129,230,255,255,255,0,72,139,133,144,252,255,255,139,184,60,4,0,0,72,139,133, 144,252,255,255,15,182,128,56,4,0,0,131,224,63,68,15,182,192,72,139,133,144,252,255,255,68,139,72,76,72,139,133,144,252,255,255,68,139,80,72,72,139,133,128,252,255,255,76,139,24,72,139,133,120,252,255,255,72,139,24,72,139,133,112,252,255,255,76,139,32, 72,139,133,144,252,255,255,68,139,168,148,4,0,0,72,139,133,144,252,255,255,15,182,128,64,4,0,0,131,224,1,68,15,182,240,72,139,133,144,252,255,255,68,139,120,68,72,141,133,160,252,255,255,72,137,133,88,252,255,255,137,84,36,112,137,76,36,104,137,116,36, 96,137,124,36,88,68,137,68,36,80,68,137,76,36,72,68,137,84,36,64,76,137,92,36,56,72,137,92,36,48,76,137,100,36,40,68,137,108,36,32,199,68,36,24,255,255,255,255,68,137,116,36,16,139,133,156,252,255,255,137,68,36,8,199,4,36,0,0,0,0,65,185,8,0,0,0,69,137, 248,72,141,13,2,82,5,0,186,32,3,0,0,190,0,0,0,0,72,139,189,88,252,255,255,184,0,0,0,0,232,151,33,5,0,72,139,189,144,252,255,255,72,141,149,160,252,255,255,72,139,181,144,252,255,255,232,65,118,4,0,72,139,5,150,141,7,0,72,139,85,200,72,51,16,116,5,232, 110,33,5,0,72,129,196,8,4,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,139,85,176,139,117,188,191,0,0,0,0,232,193,138,2,0,137,69,252,72,139,85,176,139,117,188,191,4,0,0,0, 232,173,138,2,0,137,69,248,72,139,85,176,139,117,188,191,6,0,0,0,232,153,138,2,0,137,69,244,131,125,248,0,116,7,199,69,248,1,0,0,0,72,139,85,200,139,69,248,137,130,144,4,0,0,72,139,125,200,72,139,77,176,139,85,188,72,141,117,208,232,188,118,254,255,137, 69,240,139,125,252,232,12,97,254,255,137,194,72,139,69,200,137,80,68,72,139,69,200,139,80,68,72,139,69,200,137,80,64,72,139,69,200,139,128,148,4,0,0,59,69,244,15,132,136,0,0,0,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186, 4,0,0,0,255,209,72,139,85,200,139,69,244,137,130,148,4,0,0,72,139,69,200,139,144,136,4,0,0,72,139,69,200,139,128,148,4,0,0,57,194,124,43,72,139,69,200,139,128,148,4,0,0,141,80,255,72,139,69,200,137,144,136,4,0,0,72,139,69,200,139,144,136,4,0,0,72,139, 69,200,137,144,140,4,0,0,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,2,0,0,0,255,209,235,99,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,5,0,0,0,255,209,72,139,69,200,72,139,72,56,139,85,240, 131,194,6,72,139,69,200,72,139,112,48,72,139,125,200,255,209,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,1,0,0,0,255,209,72,139,117,200,72,139,69,200,72,139,120,48,232,235,10,255,255,201,195,85,72,137,229,72,131,236,32,72, 137,125,232,243,15,17,69,228,243,15,16,69,228,243,15,44,192,137,69,252,72,139,69,232,139,128,140,4,0,0,137,69,248,131,125,252,0,121,7,199,69,252,0,0,0,0,72,139,69,232,139,128,148,4,0,0,59,69,252,127,15,72,139,69,232,139,128,148,4,0,0,255,200,137,69,252, 72,139,69,232,139,144,136,4,0,0,72,139,69,232,139,128,140,4,0,0,57,194,116,88,72,139,69,232,139,128,140,4,0,0,137,69,248,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,85,232,139,69,252,137,130,136,4,0,0,72,139,69,232,72,139,72, 56,72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,72,139,85,232,139,69,248,137,130,140,4,0,0,235,40,72,139,85,232,139,69,252,137,130,136,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,201, 195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,16,72,139,5,50,187,7,0,72,57,194,15,133,218,1,0,0,72,139,69,248,139,128,144,4,0,0,133,192,15,132,227,0,0,0,72,139,69,248,139,144,136,4,0,0,72,139,69,248,139,128,140,4,0,0,57,194,15,132, 199,0,0,0,72,139,69,248,199,128,160,4,0,0,1,0,0,0,72,139,69,248,139,128,140,4,0,0,243,15,42,192,72,139,69,248,243,15,17,128,168,4,0,0,72,139,69,248,72,5,160,4,0,0,72,131,192,16,199,0,1,0,0,0,72,139,69,248,72,5,160,4,0,0,72,141,80,16,184,0,0,0,0,137,66, 8,72,139,77,248,72,129,193,160,4,0,0,72,139,69,248,72,139,120,24,186,2,0,0,0,72,141,53,42,146,7,0,232,27,48,3,0,72,139,69,248,15,182,128,56,4,0,0,131,224,128,132,192,116,63,72,139,69,248,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,43,72,139,77,248, 72,129,193,160,4,0,0,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,186,2,0,0,0,72,141,53,217,145,7,0,232,50,69,3,0,72,139,69,248,139,144,136,4,0,0,72,139,69,248,137,144,140,4,0,0,72,139,69,248,199,128,160,4,0,0,1,0,0,0,72,139,69,248,139,128,136,4,0, 0,243,15,42,192,72,139,69,248,243,15,17,128,168,4,0,0,72,139,69,248,72,5,160,4,0,0,72,131,192,16,199,0,1,0,0,0,72,139,69,248,72,5,160,4,0,0,72,141,80,16,184,0,0,128,63,137,66,8,72,139,77,248,72,129,193,160,4,0,0,72,139,69,248,72,139,120,24,186,2,0,0, 0,72,141,53,79,145,7,0,232,64,47,3,0,72,139,69,248,15,182,128,56,4,0,0,131,224,128,132,192,15,132,168,0,0,0,72,139,69,248,72,139,128,80,4,0,0,72,139,64,8,72,133,192,15,132,144,0,0,0,72,139,77,248,72,129,193,160,4,0,0,72,139,69,248,72,139,128,80,4,0,0, 72,139,120,8,186,2,0,0,0,72,141,53,246,144,7,0,232,79,68,3,0,235,99,72,139,69,248,139,128,136,4,0,0,243,15,42,192,72,139,69,248,72,139,120,24,232,218,45,3,0,72,139,69,248,15,182,128,56,4,0,0,131,224,128,132,192,116,54,72,139,69,248,72,139,128,80,4,0, 0,72,139,64,8,72,133,192,116,34,72,139,69,248,139,128,136,4,0,0,243,15,42,192,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,232,115,67,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243,15,16,69,228,243,15,44,192,137,69,252, 131,125,252,0,121,7,199,69,252,0,0,0,0,72,139,69,232,139,128,148,4,0,0,59,69,252,127,15,72,139,69,232,139,128,148,4,0,0,255,200,137,69,252,72,139,69,232,72,139,16,72,139,5,148,184,7,0,72,57,194,15,133,40,2,0,0,72,139,69,232,139,128,144,4,0,0,133,192, 15,132,218,0,0,0,72,139,69,232,139,128,140,4,0,0,59,69,252,15,132,199,0,0,0,72,139,69,232,199,128,160,4,0,0,1,0,0,0,72,139,69,232,139,128,140,4,0,0,243,15,42,192,72,139,69,232,243,15,17,128,168,4,0,0,72,139,69,232,72,5,160,4,0,0,72,131,192,16,199,0,1, 0,0,0,72,139,69,232,72,5,160,4,0,0,72,141,80,16,184,0,0,0,0,137,66,8,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139,120,24,186,2,0,0,0,72,141,53,149,143,7,0,232,134,45,3,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,63,72,139,69, 232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,43,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,186,2,0,0,0,72,141,53,68,143,7,0,232,157,66,3,0,72,139,69,232,139,144,136,4,0,0,72,139,69,232,139,128,140,4,0,0,57, 194,116,20,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,85,232,139,69,252,137,130,136,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,72,139,69,232,139,144,136,4,0,0,72,139,69, 232,137,144,140,4,0,0,72,139,69,232,199,128,160,4,0,0,1,0,0,0,72,139,69,232,139,128,136,4,0,0,243,15,42,192,72,139,69,232,243,15,17,128,168,4,0,0,72,139,69,232,72,5,160,4,0,0,72,131,192,16,199,0,1,0,0,0,72,139,69,232,72,5,160,4,0,0,72,141,80,16,184,0, 0,128,63,137,66,8,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139,120,24,186,2,0,0,0,72,141,53,102,142,7,0,232,87,44,3,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,15,132,231,0,0,0,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133, 192,15,132,207,0,0,0,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,186,2,0,0,0,72,141,53,13,142,7,0,232,102,65,3,0,233,159,0,0,0,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,85,232,139,69, 252,137,130,136,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,72,139,69,232,139,128,136,4,0,0,243,15,42,192,72,139,69,232,72,139,120,24,232,178,42,3,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132, 192,116,54,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,34,72,139,69,232,139,128,136,4,0,0,243,15,42,192,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,232,75,64,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228, 243,15,16,69,228,243,15,44,192,137,69,252,131,125,252,0,121,7,199,69,252,0,0,0,0,72,139,69,232,139,128,148,4,0,0,59,69,252,127,15,72,139,69,232,139,128,148,4,0,0,255,200,137,69,252,72,139,69,232,72,139,16,72,139,5,108,181,7,0,72,57,194,15,133,84,2,0, 0,72,139,69,232,139,128,144,4,0,0,133,192,15,132,240,0,0,0,72,139,69,232,139,128,140,4,0,0,59,69,252,15,132,221,0,0,0,72,139,69,232,15,182,128,59,4,0,0,131,224,4,132,192,15,132,199,0,0,0,72,139,69,232,199,128,160,4,0,0,1,0,0,0,72,139,69,232,139,128,140, 4,0,0,243,15,42,192,72,139,69,232,243,15,17,128,168,4,0,0,72,139,69,232,72,5,160,4,0,0,72,131,192,16,199,0,1,0,0,0,72,139,69,232,72,5,160,4,0,0,72,141,80,16,184,0,0,0,0,137,66,8,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139,120,24,186,2,0,0, 0,72,141,53,87,140,7,0,232,72,42,3,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,63,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,43,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,186,2, 0,0,0,72,141,53,6,140,7,0,232,95,63,3,0,72,139,69,232,139,144,136,4,0,0,72,139,69,232,139,128,140,4,0,0,57,194,116,20,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,85,232,139,69,252,137,130,136,4,0,0,72,139,69,232,72,139,72,56, 72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,69,232,15,182,128,59,4,0,0,131,224,4,132,192,15,132,133,1,0,0,72,139,69,232,199,128,160,4,0,0,1,0,0,0,72,139,69,232, 139,128,136,4,0,0,243,15,42,192,72,139,69,232,243,15,17,128,168,4,0,0,72,139,69,232,72,5,160,4,0,0,72,131,192,16,199,0,1,0,0,0,72,139,69,232,72,5,160,4,0,0,72,141,80,16,184,0,0,128,63,137,66,8,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139,120, 24,186,2,0,0,0,72,141,53,18,139,7,0,232,3,41,3,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,15,132,249,0,0,0,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,15,132,225,0,0,0,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139, 128,80,4,0,0,72,139,120,8,186,2,0,0,0,72,141,53,185,138,7,0,232,18,62,3,0,233,177,0,0,0,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,85,232,139,69,252,137,130,136,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48, 72,139,125,232,186,0,0,0,0,255,209,72,139,69,232,15,182,128,59,4,0,0,131,224,4,132,192,116,99,72,139,69,232,139,128,136,4,0,0,243,15,42,192,72,139,69,232,72,139,120,24,232,76,39,3,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,54,72,139, 69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,34,72,139,69,232,139,128,136,4,0,0,243,15,42,192,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,232,229,60,3,0,201,195,85,72,137,229,83,72,131,236,56,72,137,125,216,243,15,17,69,212,243,15,17,77,208, 243,15,17,85,204,243,15,17,93,200,243,15,17,101,196,243,15,16,69,212,243,15,44,216,72,139,69,216,72,139,112,48,72,139,125,216,232,121,194,255,255,137,218,41,194,137,208,137,69,236,72,139,69,216,139,64,68,139,85,236,137,193,137,208,193,250,31,247,249, 243,15,42,192,72,139,125,216,232,9,249,255,255,72,131,196,56,91,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,137,77,232,68,137,69,228,68,137,77,224,131,125,24,0,116,44,243,15,42,69,224,243,15,42,77,228,243,15,42,109,232, 243,15,42,117,236,72,139,125,248,15,40,224,15,87,219,15,40,209,15,40,205,15,40,198,232,64,255,255,255,184,1,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,5,154,234,7,0,139,0,133,192,117,27,72,139,69,248,15,182,128,64,4,0,0,131,224,1, 132,192,116,9,72,139,125,248,232,21,246,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243,15,16,69,228,243,15,44,192,137,69,252,131,125,252,0,127,7,199,69,252,1,0,0,0,129,125,252,128,0,0,0,126,7,199,69,252,128,0,0,0,72,139, 69,232,139,128,148,4,0,0,59,69,252,15,132,134,0,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,4,0,0,0,255,209,72,139,85,232,139,69,252,137,130,148,4,0,0,72,139,69,232,139,144,136,4,0,0,72,139,69,232,139,128,148,4,0,0,57, 194,124,23,72,139,69,232,139,128,148,4,0,0,141,80,255,72,139,69,232,137,144,136,4,0,0,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,2,0,0,0,255,209,201,195,85, 72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,85,224,139,117,236,191,0,0,0,0,232,109,125,2,0,137,199,232,21,84,254,255,137,194,72,139,69,248,137,80,68,72,139,69,248,139,80,68,72,139,69,248,137,80,64,72,139,117, 248,72,139,125,248,232,10,101,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,37,101,254,255,201,195,85,72,137,229, 72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,161,101,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137, 77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,253,101,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,43,94,254,255,201,195,85,72,137, 229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,251,94,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,109,96,254,255,201,195,85, 72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,33,97,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85, 236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,190,97,254,255,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,72,139,85,248,137,193,131,225, 1,15,182,130,64,4,0,0,131,224,254,9,200,136,130,64,4,0,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,199,128,144,4,0,0,1,0,0,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,199,128,144,4,0,0,0,0,0,0,201,195,85,72,137,229,72,129,236,16,1,0, 0,72,137,189,24,255,255,255,137,181,20,255,255,255,72,137,149,8,255,255,255,137,141,4,255,255,255,72,139,5,203,125,7,0,72,139,16,72,137,85,248,49,210,131,189,4,255,255,255,0,116,16,72,139,13,26,174,7,0,72,137,141,248,254,255,255,235,14,72,139,5,2,174, 7,0,72,137,133,248,254,255,255,72,139,189,248,254,255,255,232,171,47,3,0,72,137,133,48,255,255,255,199,133,32,255,255,255,0,0,252,255,199,133,36,255,255,255,255,255,255,255,199,133,40,255,255,255,255,255,255,255,199,133,92,255,255,255,15,0,0,0,199,133, 88,255,255,255,0,0,0,0,199,133,84,255,255,255,0,0,0,0,199,133,80,255,255,255,0,0,0,0,199,133,76,255,255,255,248,255,255,255,199,133,72,255,255,255,1,0,0,0,199,133,68,255,255,255,8,0,0,0,199,133,64,255,255,255,10,0,0,0,199,133,60,255,255,255,50,0,0,0, 199,133,56,255,255,255,250,0,0,0,72,139,189,48,255,255,255,72,129,199,64,4,0,0,190,0,0,0,0,232,40,110,254,255,72,139,189,48,255,255,255,72,129,199,56,4,0,0,190,0,0,0,0,232,45,111,254,255,131,189,20,255,255,255,15,15,133,28,3,0,0,72,139,133,8,255,255, 255,139,0,131,248,1,15,133,10,3,0,0,72,139,133,8,255,255,255,72,131,192,16,139,0,131,248,1,15,133,244,2,0,0,72,139,133,8,255,255,255,72,131,192,32,139,0,131,248,1,15,133,222,2,0,0,72,139,133,8,255,255,255,72,131,192,48,139,0,131,248,1,15,133,200,2,0, 0,72,139,133,8,255,255,255,72,131,192,64,139,0,131,248,2,116,22,72,139,133,8,255,255,255,72,131,192,64,139,0,131,248,1,15,133,160,2,0,0,72,139,133,8,255,255,255,72,131,192,80,139,0,131,248,2,116,22,72,139,133,8,255,255,255,72,131,192,80,139,0,131,248, 1,15,133,120,2,0,0,72,139,133,8,255,255,255,72,131,192,96,139,0,131,248,2,116,22,72,139,133,8,255,255,255,72,131,192,96,139,0,131,248,1,15,133,80,2,0,0,72,139,133,8,255,255,255,72,131,192,112,139,0,131,248,1,15,133,58,2,0,0,72,139,133,8,255,255,255,72, 131,232,128,139,0,131,248,1,15,133,36,2,0,0,72,139,133,8,255,255,255,72,5,144,0,0,0,139,0,131,248,1,15,133,12,2,0,0,72,139,133,8,255,255,255,72,5,160,0,0,0,139,0,131,248,1,15,133,244,1,0,0,72,139,133,8,255,255,255,72,5,176,0,0,0,139,0,131,248,1,15,133, 220,1,0,0,72,139,133,8,255,255,255,72,5,192,0,0,0,139,0,131,248,1,15,133,196,1,0,0,72,139,133,8,255,255,255,72,5,208,0,0,0,139,0,131,248,1,15,133,172,1,0,0,72,139,133,8,255,255,255,72,5,224,0,0,0,139,0,131,248,1,15,133,148,1,0,0,72,139,149,8,255,255, 255,139,181,20,255,255,255,191,0,0,0,0,232,157,120,2,0,137,133,92,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,1,0,0,0,232,128,120,2,0,137,133,72,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,2,0,0,0,232,99,120,2, 0,137,198,72,139,189,48,255,255,255,72,129,199,64,4,0,0,232,21,108,254,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,3,0,0,0,232,55,120,2,0,137,133,68,255,255,255,72,139,189,48,255,255,255,72,139,149,8,255,255,255,190,4,0,0,0,232,52,82,254, 255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,7,0,0,0,232,2,120,2,0,137,133,80,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,8,0,0,0,232,229,119,2,0,137,133,76,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191, 9,0,0,0,232,200,119,2,0,137,198,72,139,189,48,255,255,255,72,129,199,56,4,0,0,232,151,108,254,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,10,0,0,0,232,156,119,2,0,137,133,64,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191, 11,0,0,0,232,127,119,2,0,137,133,32,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,12,0,0,0,232,98,119,2,0,137,133,36,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,13,0,0,0,232,69,119,2,0,137,133,40,255,255,255,72,139, 149,8,255,255,255,139,181,20,255,255,255,191,14,0,0,0,232,40,119,2,0,137,133,88,255,255,255,235,22,72,139,189,48,255,255,255,186,0,0,0,0,190,4,0,0,0,232,37,81,254,255,72,141,21,129,230,255,255,72,139,133,48,255,255,255,72,137,80,56,72,139,149,48,255, 255,255,15,182,130,56,4,0,0,131,200,128,136,130,56,4,0,0,72,139,149,48,255,255,255,15,182,130,56,4,0,0,131,200,64,136,130,56,4,0,0,232,11,216,254,255,72,137,194,72,139,133,48,255,255,255,72,137,80,48,72,139,133,48,255,255,255,72,139,128,80,4,0,0,72,139, 56,72,141,53,88,66,5,0,232,53,15,5,0,133,192,117,23,72,139,133,48,255,255,255,15,182,144,56,4,0,0,131,226,127,136,144,56,4,0,0,72,139,133,48,255,255,255,72,139,128,88,4,0,0,72,139,56,72,141,53,32,66,5,0,232,253,14,5,0,133,192,117,23,72,139,133,48,255, 255,255,15,182,144,56,4,0,0,131,226,191,136,144,56,4,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,63,60,1,117,76,72,199,192,255,255,255,255,72,131,248,255,116,35,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53, 1,45,5,0,232,134,12,5,0,233,210,0,0,0,72,139,189,48,255,255,255,72,131,199,80,72,141,53,229,44,5,0,232,147,2,0,0,233,182,0,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,63,60,2,117,70,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199, 194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53,48,109,5,0,232,37,12,5,0,235,116,72,139,189,48,255,255,255,72,131,199,80,72,141,53,23,109,5,0,232,53,2,0,0,235,91,72,139,149,48,255,255,255,15,182,130,56,4,0,0,131,224,192,136,130, 56,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53,179,141,7,0,232,200,11,5,0,235,23,72,139,189,48,255,255,255,72,131,199,80,72,141,53,154,141,7,0,232,216,1,0,0,131,189, 68,255,255,255,0,127,10,199,133,68,255,255,255,1,0,0,0,129,189,68,255,255,255,128,0,0,0,126,10,199,133,68,255,255,255,128,0,0,0,72,139,149,48,255,255,255,139,133,68,255,255,255,137,130,148,4,0,0,131,189,88,255,255,255,0,121,10,199,133,88,255,255,255, 0,0,0,0,72,139,133,48,255,255,255,139,128,148,4,0,0,59,133,88,255,255,255,127,21,72,139,133,48,255,255,255,139,128,148,4,0,0,255,200,137,133,88,255,255,255,72,139,133,48,255,255,255,15,182,128,64,4,0,0,131,224,1,132,192,116,21,72,139,149,48,255,255,255, 139,133,88,255,255,255,137,130,136,4,0,0,235,17,72,139,133,48,255,255,255,199,128,136,4,0,0,0,0,0,0,72,139,133,48,255,255,255,139,144,136,4,0,0,72,139,133,48,255,255,255,137,144,140,4,0,0,131,189,72,255,255,255,0,15,149,192,15,182,208,72,139,133,48,255, 255,255,137,144,144,4,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,64,132,192,116,26,72,139,133,48,255,255,255,72,139,176,88,4,0,0,72,139,189,48,255,255,255,232,129,44,3,0,72,139,149,48,255,255,255,139,133,80,255,255,255,137,66,72,72,139, 149,48,255,255,255,139,133,76,255,255,255,137,66,76,131,189,64,255,255,255,3,127,10,199,133,64,255,255,255,4,0,0,0,72,139,149,48,255,255,255,139,133,64,255,255,255,137,130,60,4,0,0,139,189,92,255,255,255,232,119,74,254,255,137,194,72,139,133,48,255,255, 255,137,80,68,72,139,133,48,255,255,255,139,80,68,72,139,133,48,255,255,255,137,80,64,72,139,189,48,255,255,255,232,105,76,254,255,72,139,189,48,255,255,255,72,141,181,32,255,255,255,232,31,82,254,255,72,139,189,48,255,255,255,72,141,53,16,126,7,0,232, 77,25,3,0,72,139,133,48,255,255,255,72,139,21,245,117,7,0,72,139,77,248,72,51,10,116,5,232,205,9,5,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,179,9,5,0,201,195,85,72, 137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,72,139,85,232,139,117,244,72,139,125,248,185,0,0,0,0,232,160,247,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,72,139,85,232,139,117,244,72,139,125, 248,185,1,0,0,0,232,118,247,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15,182,128,56,4,0,0,131,224,64,132,192,116,20,72,139,69,248,72,139,176,88,4,0,0,72,139,125,248,232,24,44,3,0,72,139,125,248,232,152,96,4,0,201,195,85, 72,137,229,65,84,83,72,131,236,32,72,141,29,177,255,255,255,76,141,37,86,255,255,255,72,141,61,191,44,5,0,232,23,240,2,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,192,4,0,0,72,137,218,76,137,230,184,0,0,0,0,232,76,222,2,0,72,137, 5,55,165,7,0,72,141,53,236,233,255,255,72,139,61,41,165,7,0,232,140,235,2,0,72,141,53,99,239,255,255,72,139,61,22,165,7,0,232,173,235,2,0,72,141,61,34,41,5,0,232,179,239,2,0,72,141,53,170,242,255,255,72,139,61,247,164,7,0,199,68,36,16,0,0,0,0,199,68, 36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,13,229,2,0,72,141,61,171,68,5,0,232,100,239,2,0,72,141,53,217,230,255,255,72,139,61,168,164,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232, 219,228,2,0,72,141,61,225,42,5,0,232,50,239,2,0,72,141,53,240,242,255,255,72,139,61,118,164,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,175,228,2,0,72,141,61,237,25,5,0,232,6,239,2,0,72,141,53,30,232,255,255,72,139,61,74,164,7,0,65,184,0,0,0,0,185,1,0, 0,0,72,137,194,184,0,0,0,0,232,125,228,2,0,72,141,61,39,68,5,0,232,212,238,2,0,72,141,53,157,243,255,255,72,139,61,24,164,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,75,228,2,0,72,141,61,225,56,5,0,232,162,238,2,0,72,141,53,192,243,255, 255,72,139,61,230,163,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,25,228,2,0,72,141,61,181,56,5,0,232,112,238,2,0,72,141,53,194,243,255,255,72,139,61,180,163,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,231,227,2,0,72,141, 61,135,56,5,0,232,62,238,2,0,72,141,53,196,243,255,255,72,139,61,130,163,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,181,227,2,0,72,141,61,91,56,5,0,232,12,238,2,0,72,141,53,198,243,255,255,72,139,61,80,163,7,0,65,184,0,0,0,0,185,7,0,0, 0,72,137,194,184,0,0,0,0,232,131,227,2,0,72,141,61,53,67,5,0,232,218,237,2,0,72,141,53,183,243,255,255,72,139,61,30,163,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,81,227,2,0,72,141,61,11,67,5,0,232,168,237,2,0,72,141,53,168,243,255,255, 72,139,61,236,162,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,31,227,2,0,72,141,61,253,38,5,0,232,118,237,2,0,72,141,53,153,243,255,255,72,139,61,186,162,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,237,226,2,0,72,141,61,175, 66,5,0,232,68,237,2,0,72,141,53,155,243,255,255,72,139,61,136,162,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,187,226,2,0,72,141,61,105,55,5,0,232,18,237,2,0,72,141,53,157,243,255,255,72,139,61,86,162,7,0,65,184,0,0,0,0,185,1,0,0,0,72, 137,194,184,0,0,0,0,232,137,226,2,0,72,141,61,60,55,5,0,232,224,236,2,0,72,141,53,212,240,255,255,72,139,61,36,162,7,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,87,226,2,0,72,141,61,17,55,5,0,232,174,236,2,0,72,141,53,138,243,255,255,72,139, 61,242,161,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,43,226,2,0,72,141,61,243,54,5,0,232,130,236,2,0,72,141,53,70,243,255,255,72,139,61,198,161,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,255,225,2,0,72,141,21,5,208,7,0,72,141,5,237,222,255,255,72,137, 2,72,141,21,244,207,7,0,72,141,5,224,88,254,255,72,137,66,8,72,141,21,226,207,7,0,72,141,5,70,89,254,255,72,137,66,16,72,141,5,208,207,7,0,72,199,64,24,0,0,0,0,72,141,21,193,207,7,0,72,141,5,122,89,254,255,72,137,66,32,72,141,21,175,207,7,0,72,141,5, 135,89,254,255,72,137,66,40,72,141,21,157,207,7,0,72,141,5,90,239,255,255,72,137,66,48,72,139,61,51,161,7,0,72,141,53,132,207,7,0,232,43,232,2,0,72,141,61,113,40,5,0,232,201,235,2,0,72,137,198,72,139,61,17,161,7,0,232,109,232,2,0,72,139,61,5,161,7,0, 72,141,53,209,222,255,255,232,211,233,2,0,72,139,61,242,160,7,0,72,141,53,1,225,255,255,232,236,233,2,0,72,141,29,20,251,255,255,76,141,37,227,250,255,255,72,141,61,118,52,5,0,232,122,235,2,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0, 185,192,4,0,0,72,137,218,76,137,230,184,0,0,0,0,232,175,217,2,0,72,137,5,162,160,7,0,72,141,61,187,53,5,0,232,60,235,2,0,72,137,198,72,141,61,101,250,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,173,222,2,0,72,141,61,149,53,5,0,232,18,235,2,0,72, 137,198,72,141,61,59,250,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,131,222,2,0,72,141,61,116,53,5,0,232,232,234,2,0,72,137,198,72,141,61,17,250,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,89,222,2,0,72,141,53,209,228,255,255,72,139,61,22, 160,7,0,232,113,230,2,0,72,141,53,72,234,255,255,72,139,61,3,160,7,0,232,146,230,2,0,72,141,61,7,36,5,0,232,152,234,2,0,72,141,53,143,237,255,255,72,139,61,228,159,7,0,199,68,36,16,0,0,0,0,199,68,36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1, 0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,242,223,2,0,72,141,61,144,63,5,0,232,73,234,2,0,72,141,53,190,225,255,255,72,139,61,149,159,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,192,223,2,0,72,141,61,198,37,5,0,232,23,234,2,0,72,141, 53,213,237,255,255,72,139,61,99,159,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,148,223,2,0,72,141,61,210,20,5,0,232,235,233,2,0,72,141,53,3,227,255,255,72,139,61,55,159,7,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,98,223,2,0,72,141,61,12, 63,5,0,232,185,233,2,0,72,141,53,130,238,255,255,72,139,61,5,159,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,48,223,2,0,72,141,61,198,51,5,0,232,135,233,2,0,72,141,53,165,238,255,255,72,139,61,211,158,7,0,65,184,0,0,0,0,185,10,0,0,0,72, 137,194,184,0,0,0,0,232,254,222,2,0,72,141,61,154,51,5,0,232,85,233,2,0,72,141,53,167,238,255,255,72,139,61,161,158,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,204,222,2,0,72,141,61,108,51,5,0,232,35,233,2,0,72,141,53,169,238,255,255,72, 139,61,111,158,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,154,222,2,0,72,141,61,64,51,5,0,232,241,232,2,0,72,141,53,171,238,255,255,72,139,61,61,158,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,104,222,2,0,72,141,61,26,62, 5,0,232,191,232,2,0,72,141,53,156,238,255,255,72,139,61,11,158,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,54,222,2,0,72,141,61,240,61,5,0,232,141,232,2,0,72,141,53,141,238,255,255,72,139,61,217,157,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137, 194,184,0,0,0,0,232,4,222,2,0,72,141,61,226,33,5,0,232,91,232,2,0,72,141,53,126,238,255,255,72,139,61,167,157,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,210,221,2,0,72,141,61,148,61,5,0,232,41,232,2,0,72,141,53,128,238,255,255,72,139, 61,117,157,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,160,221,2,0,72,141,61,78,50,5,0,232,247,231,2,0,72,141,53,130,238,255,255,72,139,61,67,157,7,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,110,221,2,0,72,141,61,33,50,5,0, 232,197,231,2,0,72,141,53,185,235,255,255,72,139,61,17,157,7,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,60,221,2,0,72,141,61,246,49,5,0,232,147,231,2,0,72,141,53,111,238,255,255,72,139,61,223,156,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232, 16,221,2,0,72,141,61,216,49,5,0,232,103,231,2,0,72,141,53,43,238,255,255,72,139,61,179,156,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,228,220,2,0,72,139,61,154,156,7,0,72,141,53,227,202,7,0,232,138,227,2,0,72,141,61,208,35,5,0,232,40,231,2,0,72,137,198, 72,139,61,120,156,7,0,232,204,227,2,0,72,131,196,32,91,65,92,201,195,85,72,137,229,72,131,236,80,72,137,125,216,72,137,117,208,72,139,69,216,72,137,69,240,72,139,125,208,232,239,231,254,255,133,192,15,132,30,1,0,0,72,139,125,240,72,139,117,208,232,145, 172,255,255,137,198,72,139,69,240,139,128,140,4,0,0,141,72,50,199,69,204,31,133,235,81,139,69,204,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,141,4,6,137,69,252,72,139,125,240,72,139,117,208,232,91,173,255,255,137,69,248,72,139,125,208, 232,139,151,255,255,72,137,69,232,72,139,69,240,139,64,64,137,194,3,85,248,139,77,248,255,193,139,69,252,139,117,252,72,139,125,240,76,139,85,232,137,20,36,65,137,193,65,137,200,137,241,72,137,250,76,137,214,72,141,61,241,48,5,0,184,0,0,0,0,232,215,122, 3,0,72,139,69,240,139,144,140,4,0,0,72,139,69,240,139,128,144,4,0,0,57,194,117,55,72,139,69,240,139,128,148,4,0,0,133,192,117,94,72,139,85,240,72,139,117,232,72,141,61,218,48,5,0,184,0,0,0,0,232,152,122,3,0,72,139,69,240,199,128,148,4,0,0,1,0,0,0,235, 53,72,139,69,240,139,128,148,4,0,0,133,192,116,39,72,139,85,240,72,139,117,232,72,141,61,203,48,5,0,184,0,0,0,0,232,97,122,3,0,72,139,69,240,199,128,148,4,0,0,0,0,0,0,201,195,85,72,137,229,72,131,196,128,72,137,125,216,72,137,117,208,72,139,125,216,72, 139,117,208,232,97,171,255,255,137,69,252,72,139,125,216,72,139,117,208,232,87,172,255,255,137,69,248,72,139,69,216,139,128,140,4,0,0,141,72,50,199,69,172,31,133,235,81,139,69,172,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,3,69,252,137, 69,244,72,139,125,208,232,90,150,255,255,72,137,69,232,72,139,69,216,68,139,128,72,4,0,0,72,139,69,216,139,64,64,65,137,193,68,3,77,248,72,139,69,216,139,64,68,3,69,252,141,80,2,139,117,252,131,238,3,139,77,248,72,139,125,232,72,139,69,216,72,137,68, 36,8,68,137,4,36,65,137,208,137,242,72,137,254,72,141,61,64,25,5,0,184,0,0,0,0,232,142,121,3,0,72,139,69,216,139,144,68,4,0,0,72,139,69,216,139,64,64,137,193,3,77,248,139,117,248,255,198,139,125,244,68,139,85,244,76,139,93,232,72,139,69,216,72,137,68, 36,8,137,20,36,65,137,201,65,137,248,137,241,68,137,210,76,137,222,72,141,61,207,47,5,0,184,0,0,0,0,232,61,121,3,0,72,139,69,216,139,128,76,4,0,0,137,69,184,72,139,69,216,139,128,60,4,0,0,137,69,188,72,139,69,216,72,131,192,80,72,137,69,192,72,139,69, 216,72,139,128,96,4,0,0,72,139,56,72,141,53,150,50,5,0,232,115,255,4,0,133,192,116,20,72,139,69,216,72,139,128,96,4,0,0,72,139,0,72,137,69,200,235,11,72,141,13,22,18,5,0,72,137,77,200,72,139,69,216,139,64,76,137,193,3,77,248,72,139,69,216,139,64,72,137, 194,3,85,252,72,139,117,232,72,139,69,216,72,137,68,36,24,139,69,184,137,68,36,16,72,141,5,75,127,7,0,72,137,68,36,8,139,69,188,137,4,36,76,139,77,192,76,139,69,200,72,141,61,189,24,5,0,184,0,0,0,0,232,131,120,3,0,72,139,69,216,15,182,128,56,4,0,0,131, 224,128,132,192,117,79,72,139,69,216,139,64,64,137,199,3,125,248,68,139,69,252,65,131,192,4,72,139,69,216,139,64,64,3,69,248,141,72,255,139,85,252,131,234,3,72,139,117,232,199,68,36,8,0,0,0,0,72,139,69,216,72,137,4,36,65,137,249,72,141,61,220,24,5,0, 184,0,0,0,0,232,34,120,3,0,72,139,69,216,15,182,128,56,4,0,0,131,224,64,132,192,117,70,139,85,248,255,194,139,77,252,131,193,4,139,117,252,131,238,3,139,125,248,76,139,85,232,199,68,36,8,0,0,0,0,72,139,69,216,72,137,4,36,65,137,209,65,137,200,137,249, 137,242,76,137,214,72,141,61,204,24,5,0,184,0,0,0,0,232,202,119,3,0,201,195,85,72,137,229,72,131,236,80,72,137,125,216,72,137,117,208,72,139,125,216,72,139,117,208,232,216,168,255,255,137,69,252,72,139,125,216,72,139,117,208,232,206,169,255,255,137,69, 248,72,139,69,216,139,128,140,4,0,0,141,72,50,199,69,204,31,133,235,81,139,69,204,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,3,69,252,137,69,244,72,139,125,208,232,209,147,255,255,72,137,69,232,72,139,69,216,139,64,64,137,194,3,85,248, 72,139,69,216,139,64,68,3,69,252,141,72,2,139,117,252,131,238,3,139,69,248,72,139,125,216,76,139,85,232,137,20,36,65,137,201,65,137,192,137,241,72,137,250,76,137,214,72,141,61,92,24,5,0,184,0,0,0,0,232,18,119,3,0,72,139,69,216,139,64,64,137,194,3,85, 248,139,77,248,255,193,139,69,244,139,117,244,72,139,125,216,76,139,85,232,137,20,36,65,137,193,65,137,200,137,241,72,137,250,76,137,214,72,141,61,235,44,5,0,184,0,0,0,0,232,209,118,3,0,72,139,69,216,139,64,76,137,199,3,125,248,72,139,69,216,139,64,72, 137,193,3,77,252,72,139,85,216,72,139,117,232,65,137,248,72,141,61,63,16,5,0,184,0,0,0,0,232,157,118,3,0,72,139,69,216,15,182,128,56,4,0,0,131,224,128,132,192,117,85,72,139,69,216,139,64,64,137,194,3,85,248,139,77,252,131,193,4,72,139,69,216,139,64,64, 3,69,248,255,200,139,117,252,131,238,3,72,139,125,216,76,139,85,232,137,84,36,8,137,12,36,65,137,193,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,208,23,5,0,184,0,0,0,0,232,54,118,3,0,72,139,69,216,15,182,128,56,4,0,0,131,224,64,132,192,117, 69,139,85,248,255,194,139,77,252,131,193,4,139,117,252,131,238,3,139,69,248,72,139,125,216,76,139,85,232,137,84,36,8,137,12,36,65,137,193,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,161,23,5,0,184,0,0,0,0,232,223,117,3,0,201,195,85,72,137, 229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224,232,51,146,255,255,72,137,69,248,72,139,85,232,72,139,117,248,72,141,61,141,23,5,0,184,0,0,0,0,232,167,117,3,0,72,139,85,232,72,139,117,248,72,141,61,108,44,5,0,184,0,0,0,0,232,142,117,3, 0,72,139,85,232,72,139,117,248,72,141,61,247,74,5,0,184,0,0,0,0,232,117,117,3,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,30,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,55,41,5,0,184,0,0,0,0,232,69,117,3,0,72,139,69,232,15,182, 128,56,4,0,0,131,224,64,132,192,117,30,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,13,44,5,0,184,0,0,0,0,232,21,117,3,0,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,139,125,224,232,105,145,255,255,72,137,69,248,72,139,69, 232,72,139,128,96,4,0,0,72,139,56,72,141,53,117,46,5,0,232,82,251,4,0,133,192,116,20,72,139,69,232,72,139,128,96,4,0,0,72,139,0,72,137,69,208,235,11,72,141,5,245,13,5,0,72,137,69,208,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,117,15,72,139,69, 232,139,128,76,4,0,0,137,69,220,235,7,199,69,220,255,0,0,0,72,139,69,232,139,144,60,4,0,0,72,139,77,232,72,131,193,80,72,139,117,232,72,139,125,248,72,139,69,208,72,137,68,36,8,139,69,220,137,4,36,72,141,5,5,123,7,0,73,137,193,65,137,208,72,137,242,72, 137,254,72,141,61,94,22,5,0,184,0,0,0,0,232,68,116,3,0,72,139,69,232,139,136,68,4,0,0,72,139,85,232,72,139,117,248,72,141,61,51,43,5,0,184,0,0,0,0,232,33,116,3,0,72,139,69,232,139,136,72,4,0,0,72,139,85,232,72,139,117,248,72,141,61,104,22,5,0,184,0,0, 0,0,232,254,115,3,0,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72,139,125,232,72,139,117,224,232,9,165,255,255,137,69,252,72,139,125,232,72,139,117,224,232,255,165,255,255,137,69,248,72,139,125,224,232,47,144,255,255, 72,137,69,240,139,69,220,131,224,1,132,192,116,97,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,79,72,139,69,232,139,64,64,137,199,3,125,248,68,139,69,252,65,131,192,4,72,139,69,232,139,64,64,3,69,248,141,72,255,139,85,252,131,234,3,72,139, 117,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,249,72,141,61,235,21,5,0,184,0,0,0,0,232,81,115,3,0,139,69,220,131,224,1,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,30,72,139,85,232,72,139,117,240,185,0,0,0,0, 72,141,61,9,39,5,0,184,0,0,0,0,232,23,115,3,0,139,69,220,131,224,2,133,192,116,88,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,70,139,85,248,255,194,139,77,252,131,193,4,139,117,252,131,238,3,139,125,248,76,139,85,240,199,68,36,8,0,0,0,0, 72,139,69,232,72,137,4,36,65,137,209,65,137,200,137,249,137,242,76,137,214,72,141,61,135,21,5,0,184,0,0,0,0,232,181,114,3,0,139,69,220,131,224,2,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,116,30,72,139,85,232,72,139,117,240,185, 0,0,0,0,72,141,61,115,41,5,0,184,0,0,0,0,232,123,114,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224,232,207,142,255,255,72,137,69,248,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,116,62,72,139,85,232,72,139, 117,248,185,255,0,0,0,72,141,61,54,21,5,0,184,0,0,0,0,232,44,114,3,0,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,120,21,5,0,184,0,0,0,0,232,14,114,3,0,235,65,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,248,20,5,0,184,0,0,0,0,232,238,113, 3,0,72,139,69,232,139,136,76,4,0,0,72,139,85,232,72,139,117,248,72,141,61,53,21,5,0,184,0,0,0,0,232,203,113,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,131,125,236,0,117,25,72,139,117,240,72,139,125,248,72,141,21, 7,246,255,255,232,173,120,3,0,233,130,0,0,0,131,125,236,1,117,15,72,139,117,240,72,139,125,248,232,188,249,255,255,235,109,131,125,236,2,117,15,72,139,117,240,72,139,125,248,232,30,247,255,255,235,88,131,125,236,3,117,15,72,139,117,240,72,139,125,248, 232,225,254,255,255,235,67,131,125,236,4,117,15,72,139,117,240,72,139,125,248,232,104,251,255,255,235,46,131,125,236,5,117,15,72,139,117,240,72,139,125,248,232,29,252,255,255,235,25,131,125,236,5,126,19,139,85,236,131,234,6,72,139,117,240,72,139,125, 248,232,25,253,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,72,139,69,232,72,137,69,248,72,139,125,248,72,139,117,224,232,11,162,255,255,141,80,253,72,139,69,216,137, 16,72,139,125,248,72,139,117,224,232,251,162,255,255,137,194,72,139,69,208,137,16,72,139,69,216,139,16,72,139,69,248,139,64,68,141,4,2,141,80,5,72,139,69,200,137,16,72,139,69,208,139,16,72,139,69,248,139,64,64,1,194,72,139,69,192,137,16,201,195,85,72, 137,229,65,87,65,86,65,85,65,84,83,72,129,236,72,1,0,0,72,137,125,136,72,137,117,128,72,139,69,136,72,137,69,200,72,139,125,200,72,141,85,176,72,141,117,144,232,182,73,254,255,72,139,69,200,139,152,156,4,0,0,72,139,69,200,68,139,160,140,4,0,0,68,139, 109,184,68,139,117,180,68,139,125,176,72,139,69,200,139,128,60,4,0,0,137,133,32,255,255,255,72,139,125,200,72,129,199,56,4,0,0,232,189,83,254,255,137,133,36,255,255,255,72,139,69,200,139,64,76,137,133,40,255,255,255,72,139,69,200,139,64,72,137,133,44, 255,255,255,72,139,69,160,72,137,133,48,255,255,255,72,139,85,152,72,137,149,56,255,255,255,72,139,69,144,72,137,133,64,255,255,255,72,139,125,200,72,129,199,64,4,0,0,232,84,82,254,255,137,133,72,255,255,255,72,139,69,200,139,128,152,4,0,0,137,133,76, 255,255,255,72,139,69,200,242,15,16,128,168,4,0,0,242,15,90,192,243,15,90,192,242,15,17,133,80,255,255,255,72,139,69,200,242,15,16,128,160,4,0,0,242,15,90,192,243,15,90,192,242,15,17,133,88,255,255,255,72,139,69,200,139,64,64,137,133,96,255,255,255,72, 139,69,200,139,64,68,137,133,100,255,255,255,72,141,61,143,38,5,0,232,203,218,2,0,72,137,133,104,255,255,255,72,139,69,200,15,183,64,42,152,137,133,112,255,255,255,72,139,69,200,15,183,64,40,152,137,133,116,255,255,255,72,141,61,161,35,5,0,232,154,218, 2,0,72,137,133,120,255,255,255,72,141,61,110,20,5,0,232,135,218,2,0,72,139,125,128,137,156,36,128,0,0,0,68,137,100,36,120,68,137,108,36,112,68,137,116,36,104,68,137,124,36,96,139,149,32,255,255,255,137,84,36,88,139,149,36,255,255,255,137,84,36,80,139, 149,40,255,255,255,137,84,36,72,139,149,44,255,255,255,137,84,36,64,72,139,149,48,255,255,255,72,137,84,36,56,72,139,149,56,255,255,255,72,137,84,36,48,72,139,149,64,255,255,255,72,137,84,36,40,139,149,72,255,255,255,137,84,36,32,139,149,76,255,255,255, 137,84,36,24,139,149,96,255,255,255,137,84,36,16,139,149,100,255,255,255,137,84,36,8,72,139,149,104,255,255,255,72,137,20,36,242,15,16,141,80,255,255,255,242,15,16,133,88,255,255,255,68,139,141,112,255,255,255,68,139,133,116,255,255,255,72,139,141,120, 255,255,255,72,137,194,72,141,53,132,37,5,0,184,2,0,0,0,232,135,111,2,0,72,139,125,128,72,141,53,135,37,5,0,184,0,0,0,0,232,114,111,2,0,72,129,196,72,1,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,16,72,137,125,248,137,117,244,131, 125,244,1,127,7,199,69,244,2,0,0,0,72,139,85,248,139,69,244,137,66,68,72,139,69,248,139,64,68,107,192,50,141,80,206,72,139,69,248,137,144,144,4,0,0,72,139,69,248,139,144,140,4,0,0,72,139,69,248,139,64,68,107,192,100,131,232,100,57,194,126,43,72,139,69, 248,139,64,68,107,192,100,141,80,156,72,139,69,248,137,144,136,4,0,0,72,139,69,248,139,144,136,4,0,0,72,139,69,248,137,144,140,4,0,0,72,139,69,248,139,128,152,4,0,0,133,192,116,84,72,139,69,248,242,15,16,136,168,4,0,0,72,139,69,248,242,15,16,128,160, 4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,232,199,242,4,0,102,15,40,200,72,139,69,248,139,64,68,255,200,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,72,139,69,248,242,15,17,128,176,4,0,0,235,65,72,139,69,248,242,15,16,136,168,4,0,0,72, 139,69,248,242,15,16,128,160,4,0,0,242,15,92,200,72,139,69,248,139,64,68,255,200,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,72,139,69,248,242,15,17,128,176,4,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,242,15,17,69,240,242,15, 17,77,232,72,139,69,248,139,128,152,4,0,0,133,192,15,132,137,0,0,0,102,15,87,192,102,15,46,69,240,122,2,116,2,235,29,102,15,87,192,102,15,46,69,232,122,2,116,2,235,14,72,184,0,0,0,0,0,0,240,63,72,137,69,232,102,15,87,201,242,15,16,69,232,102,15,46,193, 119,2,235,37,102,15,87,192,102,15,46,69,240,115,2,235,63,242,15,16,69,232,242,15,16,13,4,130,5,0,242,15,89,193,242,15,17,69,240,235,39,102,15,87,201,242,15,16,69,240,102,15,46,193,119,2,235,22,242,15,16,69,240,242,15,16,13,219,129,5,0,242,15,89,193,242, 15,17,69,232,72,139,85,248,72,139,69,240,72,137,130,160,4,0,0,72,139,85,248,72,139,69,232,72,137,130,168,4,0,0,72,139,69,248,242,15,16,136,160,4,0,0,72,139,69,248,242,15,16,128,168,4,0,0,102,15,46,200,119,2,235,22,72,139,69,248,15,182,144,67,4,0,0,131, 202,16,136,144,67,4,0,0,235,20,72,139,69,248,15,182,144,67,4,0,0,131,226,239,136,144,67,4,0,0,72,139,69,248,139,128,152,4,0,0,133,192,116,84,72,139,69,248,242,15,16,136,168,4,0,0,72,139,69,248,242,15,16,128,160,4,0,0,102,15,40,209,242,15,94,208,102,15, 40,194,232,9,241,4,0,102,15,40,200,72,139,69,248,139,64,68,255,200,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,72,139,69,248,242,15,17,128,176,4,0,0,235,65,72,139,69,248,242,15,16,136,168,4,0,0,72,139,69,248,242,15,16,128,160,4,0,0,242,15, 92,200,72,139,69,248,139,64,68,255,200,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,72,139,69,248,242,15,17,128,176,4,0,0,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,8,4,0,0,72,137,189,120,252,255,255,72,137,181,112,252,255, 255,72,139,5,108,91,7,0,72,139,16,72,137,85,200,49,210,72,139,133,120,252,255,255,72,137,133,152,252,255,255,72,139,189,152,252,255,255,72,141,181,128,252,255,255,232,163,68,254,255,72,139,133,152,252,255,255,139,128,76,4,0,0,137,194,129,226,255,255, 255,0,72,139,133,152,252,255,255,139,128,68,4,0,0,137,193,129,225,255,255,255,0,72,139,133,152,252,255,255,139,128,72,4,0,0,137,198,129,230,255,255,255,0,72,139,133,152,252,255,255,139,184,60,4,0,0,72,139,133,152,252,255,255,15,182,128,56,4,0,0,131,224, 63,68,15,182,192,72,139,133,152,252,255,255,68,139,72,76,72,139,133,152,252,255,255,68,139,80,72,72,139,133,144,252,255,255,76,139,24,72,139,133,136,252,255,255,72,139,24,72,139,133,128,252,255,255,76,139,32,72,139,133,152,252,255,255,68,139,168,156, 4,0,0,72,139,133,152,252,255,255,15,182,128,64,4,0,0,131,224,1,68,15,182,240,72,139,133,152,252,255,255,68,139,184,152,4,0,0,72,139,133,152,252,255,255,242,15,16,128,168,4,0,0,72,139,133,152,252,255,255,242,15,16,152,160,4,0,0,72,139,133,152,252,255, 255,139,64,64,137,133,108,252,255,255,72,139,133,152,252,255,255,139,64,68,137,133,92,252,255,255,72,141,133,160,252,255,255,72,137,133,96,252,255,255,137,84,36,120,137,76,36,112,137,116,36,104,137,124,36,96,68,137,68,36,88,68,137,76,36,80,68,137,84, 36,72,76,137,92,36,64,72,137,92,36,56,76,137,100,36,48,199,68,36,40,255,255,255,255,68,137,108,36,32,68,137,116,36,24,68,137,124,36,16,199,68,36,8,8,0,0,0,139,149,108,252,255,255,137,20,36,102,15,87,210,102,15,40,200,102,15,40,195,65,185,2,0,0,0,68,139, 133,92,252,255,255,72,141,13,178,32,5,0,186,32,3,0,0,190,0,0,0,0,72,139,189,96,252,255,255,184,3,0,0,0,232,127,237,4,0,72,139,189,152,252,255,255,72,141,149,160,252,255,255,72,139,181,152,252,255,255,232,41,66,4,0,72,139,5,126,89,7,0,72,139,85,200,72, 51,16,116,5,232,86,237,4,0,72,129,196,8,4,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,15,182,128,67,4,0,0,131,224,16,132,192,116,94,243,15,90,69,228,72,139,69,232,242,15,16,136,160, 4,0,0,102,15,46,193,119,2,235,21,72,139,69,232,242,15,16,128,160,4,0,0,242,15,90,192,243,15,17,69,228,243,15,90,69,228,72,139,69,232,242,15,16,136,168,4,0,0,102,15,46,200,119,2,235,115,72,139,69,232,242,15,16,128,168,4,0,0,242,15,90,192,243,15,17,69, 228,235,92,243,15,90,69,228,72,139,69,232,242,15,16,136,168,4,0,0,102,15,46,193,119,2,235,21,72,139,69,232,242,15,16,128,168,4,0,0,242,15,90,192,243,15,17,69,228,243,15,90,69,228,72,139,69,232,242,15,16,136,160,4,0,0,102,15,46,200,119,2,235,21,72,139, 69,232,242,15,16,128,160,4,0,0,242,15,90,192,243,15,17,69,228,72,139,69,232,139,128,152,4,0,0,133,192,116,69,243,15,90,77,228,72,139,69,232,242,15,16,128,160,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,232,87,237,4,0,102,15,40,200,72,139,69,232,242, 15,16,128,176,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,69,248,235,50,243,15,90,77,228,72,139,69,232,242,15,16,128,160,4,0,0,242,15,92,200,72,139,69,232,242,15,16,128,176,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,69,248, 242,15,16,77,248,242,15,16,5,71,124,5,0,242,15,89,200,242,15,16,5,35,125,5,0,242,15,88,193,242,15,44,208,72,139,69,232,137,144,140,4,0,0,72,139,69,232,139,144,140,4,0,0,72,139,69,232,137,144,136,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112, 48,72,139,125,232,186,0,0,0,0,255,209,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,139,128,152,4,0,0,133,192,116,76,72,139,69,232,242,15,16,128,160,4,0,0,242,15,17,69,224,72,139,69,232,242,15,16,136,176,4,0,0,72,139,69,232,139,128, 140,4,0,0,242,15,42,192,242,15,89,200,242,15,16,5,127,124,5,0,242,15,89,193,232,200,235,4,0,242,15,89,69,224,242,15,17,69,248,235,63,72,139,69,232,139,128,140,4,0,0,242,15,42,200,242,15,16,5,84,124,5,0,242,15,89,200,72,139,69,232,242,15,16,128,176,4, 0,0,242,15,89,200,72,139,69,232,242,15,16,128,160,4,0,0,242,15,88,193,242,15,17,69,248,242,15,16,77,248,242,15,16,5,54,124,5,0,102,15,46,193,119,2,235,26,242,15,16,69,248,102,15,46,5,41,124,5,0,119,2,235,9,184,0,0,0,0,72,137,69,248,242,15,90,69,248,72, 139,69,232,72,139,120,24,232,200,251,2,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,45,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,25,242,15,90,69,248,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,232,106,17,3,0,201,195, 85,72,137,229,72,131,236,112,72,137,125,184,72,137,117,176,137,85,172,72,137,77,160,72,139,85,160,139,117,172,191,0,0,0,0,232,196,83,2,0,137,69,252,72,139,85,160,139,117,172,191,1,0,0,0,232,176,83,2,0,137,69,248,72,139,85,160,139,117,172,191,2,0,0,0, 232,69,83,2,0,243,15,90,192,242,15,17,69,224,72,139,85,160,139,117,172,191,3,0,0,0,232,43,83,2,0,243,15,90,192,242,15,17,69,216,72,139,85,160,139,117,172,191,4,0,0,0,232,104,83,2,0,137,69,244,72,139,85,160,139,117,172,191,17,0,0,0,232,84,83,2,0,137,69, 240,131,125,244,0,116,7,199,69,244,1,0,0,0,72,139,85,184,139,69,244,137,130,152,4,0,0,131,125,240,0,116,16,72,139,69,184,199,128,156,4,0,0,1,0,0,0,235,14,72,139,69,184,199,128,156,4,0,0,0,0,0,0,72,139,125,184,72,139,77,160,139,85,172,72,141,117,192,232, 83,63,254,255,137,69,236,139,125,248,232,163,41,254,255,137,194,72,139,69,184,137,80,64,139,117,252,72,139,125,184,232,241,246,255,255,242,15,16,69,216,72,139,69,224,72,139,125,184,102,15,40,200,72,137,69,152,242,15,16,69,152,232,250,247,255,255,72,139, 69,184,72,139,72,56,72,139,69,184,72,139,112,48,72,139,125,184,186,5,0,0,0,255,209,72,139,69,184,72,139,72,56,139,85,236,131,194,6,72,139,69,184,72,139,112,48,72,139,125,184,255,209,72,139,69,184,72,139,72,56,72,139,69,184,72,139,112,48,72,139,125,184, 186,1,0,0,0,255,209,72,139,117,184,72,139,69,184,72,139,120,48,232,0,212,254,255,201,195,85,72,137,229,83,72,131,236,72,72,137,125,216,243,15,17,69,212,243,15,17,77,208,72,139,69,216,139,128,140,4,0,0,137,69,236,72,139,69,216,15,182,128,59,4,0,0,131, 224,2,132,192,116,33,72,139,69,216,139,144,136,4,0,0,243,15,16,69,212,243,15,44,192,1,194,72,139,69,216,137,144,136,4,0,0,235,34,72,139,69,216,139,144,136,4,0,0,243,15,16,69,212,243,15,44,192,107,192,100,1,194,72,139,69,216,137,144,136,4,0,0,72,139,69, 216,139,144,136,4,0,0,72,139,69,216,137,144,140,4,0,0,72,139,69,216,139,144,140,4,0,0,72,139,69,216,139,64,68,107,192,100,131,232,100,57,194,126,119,72,139,69,216,139,64,68,107,192,100,141,80,156,72,139,69,216,137,144,140,4,0,0,72,139,69,216,139,128, 136,4,0,0,141,80,50,72,139,69,216,137,144,136,4,0,0,72,139,69,216,139,176,136,4,0,0,72,139,69,216,139,136,136,4,0,0,199,69,188,31,133,235,81,139,69,188,247,233,193,250,5,137,200,193,248,31,137,211,41,195,137,93,200,107,69,200,100,137,202,41,194,137,85, 200,137,242,43,85,200,72,139,69,216,137,144,136,4,0,0,72,139,69,216,139,128,140,4,0,0,133,192,121,110,72,139,69,216,199,128,140,4,0,0,0,0,0,0,72,139,69,216,139,128,136,4,0,0,141,80,206,72,139,69,216,137,144,136,4,0,0,72,139,69,216,139,176,136,4,0,0,72, 139,69,216,139,136,136,4,0,0,199,69,188,31,133,235,81,139,69,188,247,233,193,250,5,137,200,193,248,31,137,211,41,195,137,93,204,107,69,204,100,137,202,41,194,137,85,204,137,242,43,85,204,72,139,69,216,137,144,136,4,0,0,72,139,69,216,139,128,140,4,0,0, 59,69,236,116,36,72,139,69,216,72,139,72,56,72,139,69,216,72,139,112,48,72,139,125,216,186,0,0,0,0,255,209,72,139,125,216,232,122,251,255,255,72,131,196,72,91,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15, 17,85,236,243,15,17,93,232,243,15,17,101,228,72,139,69,248,139,128,156,4,0,0,133,192,117,60,72,139,69,248,72,139,112,48,72,139,125,248,232,148,147,255,255,243,15,42,200,243,15,16,69,244,243,15,92,193,243,15,90,200,242,15,16,5,14,119,5,0,242,15,89,193, 242,15,44,208,72,139,69,248,137,144,140,4,0,0,72,139,69,248,139,144,140,4,0,0,72,139,69,248,139,64,68,107,192,100,131,232,100,57,194,126,23,72,139,69,248,139,64,68,107,192,100,141,80,156,72,139,69,248,137,144,140,4,0,0,72,139,69,248,139,128,140,4,0,0, 133,192,121,14,72,139,69,248,199,128,140,4,0,0,0,0,0,0,72,139,69,248,139,144,140,4,0,0,72,139,69,248,137,144,136,4,0,0,72,139,69,248,72,139,72,56,72,139,69,248,72,139,112,48,72,139,125,248,186,0,0,0,0,255,209,72,139,125,248,232,126,250,255,255,243,15, 16,69,240,243,15,44,208,243,15,16,69,244,243,15,44,200,72,141,53,29,253,255,255,72,139,125,248,72,139,69,248,72,139,64,48,65,137,209,65,137,200,185,0,0,0,0,72,137,242,72,137,254,72,137,199,232,27,125,255,255,201,195,85,72,137,229,72,131,236,48,72,137, 125,232,72,137,117,224,137,85,220,137,77,216,68,137,69,212,68,137,77,208,72,139,69,232,72,137,69,248,131,125,24,0,116,92,243,15,42,69,208,243,15,42,77,212,243,15,42,109,216,243,15,42,117,220,72,139,125,248,15,40,224,15,87,219,15,40,209,15,40,205,15,40, 198,232,115,254,255,255,131,125,212,0,116,22,72,139,69,248,15,182,144,59,4,0,0,131,202,2,136,144,59,4,0,0,235,20,72,139,69,248,15,182,144,59,4,0,0,131,226,253,136,144,59,4,0,0,184,1,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117, 240,137,85,236,72,137,77,224,72,139,85,224,139,117,236,191,0,0,0,0,232,154,78,2,0,137,198,72,139,125,248,232,161,242,255,255,131,125,236,1,126,33,72,139,85,224,139,117,236,191,1,0,0,0,232,120,78,2,0,137,199,232,32,37,254,255,137,194,72,139,69,248,137, 80,64,72,139,117,248,72,139,125,248,232,35,54,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,62,54,254,255,201,195, 85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,186,54,254,255,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,137, 85,236,72,137,77,224,72,139,85,224,139,117,236,191,1,0,0,0,232,114,77,2,0,243,15,90,192,242,15,17,69,216,72,139,85,224,139,117,236,191,0,0,0,0,232,88,77,2,0,243,15,90,192,72,139,125,248,242,15,16,77,216,232,215,242,255,255,201,195,85,72,137,229,72,131, 236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,192,54,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85, 240,72,139,125,248,232,238,46,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,190,47,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72, 139,85,240,72,139,125,248,232,48,49,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,228,49,254,255,201,195,85,72,137, 229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,129,50,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,199,128,152,4, 0,0,1,0,0,0,72,139,69,248,242,15,16,136,168,4,0,0,72,139,69,248,242,15,16,128,160,4,0,0,72,139,125,248,232,149,241,255,255,201,195,85,72,137,229,72,137,125,248,72,139,69,248,199,128,152,4,0,0,0,0,0,0,72,139,69,248,242,15,16,136,168,4,0,0,72,139,69,248, 242,15,16,128,160,4,0,0,242,15,92,200,72,139,69,248,139,64,68,255,200,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,72,139,69,248,242,15,17,128,176,4,0,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192, 15,154,194,9,208,72,139,85,248,137,193,131,225,1,15,182,130,64,4,0,0,131,224,254,9,200,136,130,64,4,0,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,15,182,208,72,139,69,248,137,144,156,4,0, 0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,243,15,17,69,228,243,15,16,69,228,72,139,125,232,232,172,244,255,255,72,139,69,232,139,128,152,4,0,0,133,192,116,76,72,139,69,232,242,15,16,128,160,4,0,0,242,15,17,69,216,72,139,69,232,242,15,16,136, 176,4,0,0,72,139,69,232,139,128,140,4,0,0,242,15,42,192,242,15,89,200,242,15,16,5,245,114,5,0,242,15,89,193,232,62,226,4,0,242,15,89,69,216,242,15,17,69,248,235,63,72,139,69,232,139,128,140,4,0,0,242,15,42,200,242,15,16,5,202,114,5,0,242,15,89,200,72, 139,69,232,242,15,16,128,176,4,0,0,242,15,89,200,72,139,69,232,242,15,16,128,160,4,0,0,242,15,88,193,242,15,17,69,248,242,15,16,77,248,242,15,16,5,172,114,5,0,102,15,46,193,119,2,235,26,242,15,16,69,248,102,15,46,5,159,114,5,0,119,2,235,9,184,0,0,0,0, 72,137,69,248,72,139,69,232,15,182,128,59,4,0,0,131,224,4,132,192,116,81,242,15,90,69,248,72,139,69,232,72,139,120,24,232,44,242,2,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,45,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192, 116,25,242,15,90,69,248,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,232,206,7,3,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,5,74,182,7,0,139,0,133,192,117,54,72,139,69,248,15,182,128,64,4,0,0,131,224,1,132,192,116,36,72,139,69,248, 72,139,72,56,72,139,69,248,72,139,112,48,72,139,125,248,186,0,0,0,0,255,209,72,139,125,248,232,238,244,255,255,201,195,85,72,137,229,72,129,236,32,1,0,0,72,137,189,8,255,255,255,137,181,4,255,255,255,72,137,149,248,254,255,255,72,139,5,102,76,7,0,72, 139,16,72,137,85,248,49,210,72,139,61,198,124,7,0,232,109,254,2,0,72,137,133,48,255,255,255,199,133,16,255,255,255,0,0,252,255,199,133,20,255,255,255,255,255,255,255,199,133,24,255,255,255,255,255,255,255,199,133,92,255,255,255,128,0,0,0,199,133,88,255, 255,255,15,0,0,0,199,133,84,255,255,255,0,0,0,0,199,133,80,255,255,255,254,255,255,255,199,133,76,255,255,255,248,255,255,255,199,133,72,255,255,255,0,0,0,0,199,133,68,255,255,255,0,0,0,0,199,133,64,255,255,255,1,0,0,0,199,133,60,255,255,255,10,0,0,0, 184,0,0,0,0,72,137,133,40,255,255,255,72,184,0,0,0,0,0,192,95,64,72,137,133,32,255,255,255,72,139,189,48,255,255,255,72,129,199,64,4,0,0,190,0,0,0,0,232,215,60,254,255,72,139,189,48,255,255,255,72,129,199,56,4,0,0,190,0,0,0,0,232,220,61,254,255,131,189, 4,255,255,255,17,116,13,131,189,4,255,255,255,18,15,133,146,3,0,0,72,139,133,248,254,255,255,139,0,131,248,1,15,133,128,3,0,0,72,139,133,248,254,255,255,72,131,192,16,139,0,131,248,1,15,133,106,3,0,0,72,139,133,248,254,255,255,72,131,192,32,139,0,131, 248,1,15,133,84,3,0,0,72,139,133,248,254,255,255,72,131,192,48,139,0,131,248,1,15,133,62,3,0,0,72,139,133,248,254,255,255,72,131,192,64,139,0,131,248,1,15,133,40,3,0,0,72,139,133,248,254,255,255,72,131,192,80,139,0,131,248,1,15,133,18,3,0,0,72,139,133, 248,254,255,255,72,131,192,96,139,0,131,248,2,116,22,72,139,133,248,254,255,255,72,131,192,96,139,0,131,248,1,15,133,234,2,0,0,72,139,133,248,254,255,255,72,131,192,112,139,0,131,248,2,116,22,72,139,133,248,254,255,255,72,131,192,112,139,0,131,248,1, 15,133,194,2,0,0,72,139,133,248,254,255,255,72,131,232,128,139,0,131,248,2,116,22,72,139,133,248,254,255,255,72,131,232,128,139,0,131,248,1,15,133,154,2,0,0,72,139,133,248,254,255,255,72,5,144,0,0,0,139,0,131,248,1,15,133,130,2,0,0,72,139,133,248,254, 255,255,72,5,160,0,0,0,139,0,131,248,1,15,133,106,2,0,0,72,139,133,248,254,255,255,72,5,176,0,0,0,139,0,131,248,1,15,133,82,2,0,0,72,139,133,248,254,255,255,72,5,192,0,0,0,139,0,131,248,1,15,133,58,2,0,0,72,139,133,248,254,255,255,72,5,208,0,0,0,139, 0,131,248,1,15,133,34,2,0,0,72,139,133,248,254,255,255,72,5,224,0,0,0,139,0,131,248,1,15,133,10,2,0,0,72,139,133,248,254,255,255,72,5,240,0,0,0,139,0,131,248,1,15,133,242,1,0,0,72,139,133,248,254,255,255,72,5,0,1,0,0,139,0,131,248,1,15,133,218,1,0,0, 72,139,149,248,254,255,255,139,181,4,255,255,255,191,0,0,0,0,232,19,71,2,0,137,133,92,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,1,0,0,0,232,246,70,2,0,137,133,88,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191, 2,0,0,0,232,130,70,2,0,243,15,90,192,242,15,17,133,40,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,3,0,0,0,232,95,70,2,0,243,15,90,192,242,15,17,133,32,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,4,0,0,0,232,147, 70,2,0,137,133,84,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,5,0,0,0,232,118,70,2,0,137,198,72,139,189,48,255,255,255,72,129,199,64,4,0,0,232,40,58,254,255,72,139,189,48,255,255,255,72,139,149,248,254,255,255,190,6,0,0,0,232,100, 32,254,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,9,0,0,0,232,50,70,2,0,137,133,80,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,10,0,0,0,232,21,70,2,0,137,133,76,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255, 255,191,11,0,0,0,232,248,69,2,0,137,198,72,139,189,48,255,255,255,72,129,199,56,4,0,0,232,199,58,254,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,12,0,0,0,232,204,69,2,0,137,133,60,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255, 255,191,13,0,0,0,232,175,69,2,0,137,133,16,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,14,0,0,0,232,146,69,2,0,137,133,20,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,15,0,0,0,232,117,69,2,0,137,133,24,255,255, 255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,16,0,0,0,232,88,69,2,0,137,133,68,255,255,255,235,22,72,139,189,48,255,255,255,186,0,0,0,0,190,6,0,0,0,232,85,31,254,255,131,189,4,255,255,255,18,117,49,72,139,133,248,254,255,255,72,5,16,1,0,0, 139,0,131,248,1,117,29,72,139,149,248,254,255,255,139,181,4,255,255,255,191,17,0,0,0,232,6,69,2,0,137,133,64,255,255,255,72,141,21,85,229,255,255,72,139,133,48,255,255,255,72,137,80,56,72,139,149,48,255,255,255,15,182,130,56,4,0,0,131,200,128,136,130, 56,4,0,0,72,139,149,48,255,255,255,15,182,130,56,4,0,0,131,200,64,136,130,56,4,0,0,232,1,166,254,255,72,137,194,72,139,133,48,255,255,255,72,137,80,48,72,139,133,48,255,255,255,15,182,128,64,4,0,0,131,224,1,132,192,116,21,72,139,149,48,255,255,255,139, 133,68,255,255,255,137,130,140,4,0,0,235,17,72,139,133,48,255,255,255,199,128,140,4,0,0,0,0,0,0,72,139,133,48,255,255,255,139,144,140,4,0,0,72,139,133,48,255,255,255,137,144,136,4,0,0,131,189,84,255,255,255,0,116,10,199,133,84,255,255,255,1,0,0,0,72, 139,149,48,255,255,255,139,133,84,255,255,255,137,130,152,4,0,0,131,189,64,255,255,255,0,116,10,199,133,64,255,255,255,1,0,0,0,72,139,149,48,255,255,255,139,133,64,255,255,255,137,130,156,4,0,0,72,139,133,48,255,255,255,72,139,128,80,4,0,0,72,139,56, 72,141,53,173,15,5,0,232,138,220,4,0,133,192,117,23,72,139,133,48,255,255,255,15,182,144,56,4,0,0,131,226,127,136,144,56,4,0,0,72,139,133,48,255,255,255,72,139,128,88,4,0,0,72,139,56,72,141,53,117,15,5,0,232,82,220,4,0,133,192,117,23,72,139,133,48,255, 255,255,15,182,144,56,4,0,0,131,226,191,136,144,56,4,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,63,60,1,117,76,72,199,192,255,255,255,255,72,131,248,255,116,35,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53, 86,250,4,0,232,219,217,4,0,233,210,0,0,0,72,139,189,48,255,255,255,72,131,199,80,72,141,53,58,250,4,0,232,232,1,0,0,233,182,0,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,63,60,2,117,70,72,199,192,255,255,255,255,72,131,248,255,116,32,72, 199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53,133,58,5,0,232,122,217,4,0,235,116,72,139,189,48,255,255,255,72,131,199,80,72,141,53,108,58,5,0,232,138,1,0,0,235,91,72,139,149,48,255,255,255,15,182,130,56,4,0,0,131,224,192,136, 130,56,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53,8,91,7,0,232,29,217,4,0,235,23,72,139,189,48,255,255,255,72,131,199,80,72,141,53,239,90,7,0,232,45,1,0,0,72,139, 133,48,255,255,255,15,182,128,56,4,0,0,131,224,64,132,192,116,26,72,139,133,48,255,255,255,72,139,176,88,4,0,0,72,139,189,48,255,255,255,232,190,250,2,0,72,139,149,48,255,255,255,139,133,80,255,255,255,137,66,72,72,139,149,48,255,255,255,139,133,76,255, 255,255,137,66,76,131,189,60,255,255,255,3,127,10,199,133,60,255,255,255,4,0,0,0,72,139,149,48,255,255,255,139,133,60,255,255,255,137,130,60,4,0,0,139,189,88,255,255,255,232,180,24,254,255,137,194,72,139,133,48,255,255,255,137,80,64,139,181,92,255,255, 255,72,139,189,48,255,255,255,232,249,229,255,255,242,15,16,133,32,255,255,255,72,139,133,40,255,255,255,72,139,189,48,255,255,255,102,15,40,200,72,137,133,232,254,255,255,242,15,16,133,232,254,255,255,232,243,230,255,255,72,139,189,48,255,255,255,72, 141,181,16,255,255,255,232,60,32,254,255,72,139,133,48,255,255,255,199,128,148,4,0,0,0,0,0,0,72,139,189,48,255,255,255,232,86,26,254,255,72,139,189,48,255,255,255,72,141,53,176,75,7,0,232,77,231,2,0,72,139,133,48,255,255,255,72,139,21,245,67,7,0,72,139, 77,248,72,51,10,116,5,232,205,215,4,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,179,215,4,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15,182,128, 56,4,0,0,131,224,64,132,192,116,20,72,139,69,248,72,139,176,88,4,0,0,72,139,125,248,232,108,250,2,0,72,139,125,248,232,236,46,4,0,201,195,85,72,137,229,65,84,83,72,131,236,32,72,141,29,177,255,255,255,76,141,37,221,246,255,255,72,141,61,47,10,5,0,232, 107,190,2,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,184,4,0,0,72,137,218,76,137,230,184,0,0,0,0,232,160,172,2,0,72,137,5,155,115,7,0,72,141,61,193,250,4,0,232,45,190,2,0,72,137,198,72,141,61,137,246,255,255,185,0,0,0,0,186,10,0, 0,0,184,0,0,0,0,232,158,177,2,0,72,141,53,90,235,255,255,72,139,61,99,115,7,0,232,182,185,2,0,72,141,53,190,244,255,255,72,139,61,80,115,7,0,232,215,185,2,0,72,141,61,76,247,4,0,232,221,189,2,0,72,141,53,181,239,255,255,72,139,61,49,115,7,0,199,68,36, 16,0,0,0,0,199,68,36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,55,179,2,0,72,141,61,23,254,4,0,232,142,189,2,0,72,141,53,145,237,255,255,72,139,61,226,114,7,0,65,185,0,0,0,0,65,184,1,0,0,0,185,1,0, 0,0,72,137,194,184,0,0,0,0,232,255,178,2,0,72,141,61,157,18,5,0,232,86,189,2,0,72,141,53,200,235,255,255,72,139,61,170,114,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,205,178,2,0,72,141,61,211,248,4,0,232,36,189,2,0,72,141,53,50,245,255, 255,72,139,61,120,114,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,161,178,2,0,72,141,61,223,231,4,0,232,248,188,2,0,72,141,53,133,232,255,255,72,139,61,76,114,7,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,111,178,2,0,72,141,61,25,18,5,0,232, 198,188,2,0,72,141,53,98,240,255,255,72,139,61,26,114,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,61,178,2,0,72,141,61,211,6,5,0,232,148,188,2,0,72,141,53,153,240,255,255,72,139,61,232,113,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184, 0,0,0,0,232,11,178,2,0,72,141,61,167,6,5,0,232,98,188,2,0,72,141,53,155,240,255,255,72,139,61,182,113,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,217,177,2,0,72,141,61,68,9,5,0,232,48,188,2,0,72,141,53,157,240,255,255,72,139,61,132,113, 7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,167,177,2,0,72,141,61,71,6,5,0,232,254,187,2,0,72,141,53,193,240,255,255,72,139,61,82,113,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,117,177,2,0,72,141,61,27,6,5,0,232,204,187, 2,0,72,141,53,195,240,255,255,72,139,61,32,113,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,67,177,2,0,72,141,61,245,16,5,0,232,154,187,2,0,72,141,53,180,240,255,255,72,139,61,238,112,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0, 232,17,177,2,0,72,141,61,203,16,5,0,232,104,187,2,0,72,141,53,165,240,255,255,72,139,61,188,112,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,223,176,2,0,72,141,61,189,244,4,0,232,54,187,2,0,72,141,53,150,240,255,255,72,139,61,138,112,7,0, 65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,173,176,2,0,72,141,61,111,16,5,0,232,4,187,2,0,72,141,53,152,240,255,255,72,139,61,88,112,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,123,176,2,0,72,141,61,242,7,5,0,232,210,186,2, 0,72,141,53,154,240,255,255,72,139,61,38,112,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,79,176,2,0,72,141,61,202,7,5,0,232,166,186,2,0,72,141,53,171,240,255,255,72,139,61,250,111,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,35,176,2,0,72,141,61,209,4,5, 0,232,122,186,2,0,72,141,53,216,240,255,255,72,139,61,206,111,7,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,241,175,2,0,72,141,61,117,7,5,0,232,72,186,2,0,72,141,53,223,240,255,255,72,139,61,156,111,7,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194, 184,0,0,0,0,232,191,175,2,0,72,141,21,5,158,7,0,72,141,5,139,221,255,255,72,137,2,72,141,21,244,157,7,0,72,141,5,160,38,254,255,72,137,66,8,72,141,21,226,157,7,0,72,141,5,6,39,254,255,72,137,66,16,72,141,5,208,157,7,0,72,199,64,24,0,0,0,0,72,141,21,193, 157,7,0,72,141,5,58,39,254,255,72,137,66,32,72,141,21,175,157,7,0,72,141,5,71,39,254,255,72,137,66,40,72,141,21,157,157,7,0,72,141,5,192,236,255,255,72,137,66,48,72,139,61,3,111,7,0,72,141,53,132,157,7,0,232,235,181,2,0,72,141,61,29,246,4,0,232,137,185, 2,0,72,137,198,72,139,61,225,110,7,0,232,45,182,2,0,72,139,61,213,110,7,0,72,141,53,102,221,255,255,232,147,183,2,0,72,139,61,194,110,7,0,72,141,53,182,226,255,255,232,172,183,2,0,72,131,196,32,91,65,92,201,195,85,72,137,229,72,131,236,32,72,137,125, 232,72,141,5,90,157,7,0,72,139,56,232,62,240,2,0,72,137,69,248,232,210,156,254,255,72,137,194,72,139,69,248,72,137,80,48,72,139,117,248,72,139,69,248,72,139,120,48,186,0,0,0,0,232,202,109,255,255,72,137,194,72,139,69,248,72,137,80,56,72,139,69,248,199, 64,64,0,0,0,0,72,139,69,248,72,199,64,72,0,0,0,0,72,139,125,248,190,0,0,0,0,232,18,225,2,0,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,24,232,182,225,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248, 72,137,117,240,72,139,69,248,72,139,120,24,72,139,117,240,232,2,226,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,120,24,243,15,16,69,244,232,111,226,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248, 72,137,117,240,72,139,69,248,72,139,120,24,72,139,117,240,232,197,226,2,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,120,24,72,139,77,224,139,85,236,72,139,117,240,232,11,227,2,0,201, 195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,120,24,72,139,77,224,139,85,236,72,139,117,240,232,95,227,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,112,56,72, 139,69,248,72,139,120,48,232,71,109,255,255,72,139,125,248,72,131,199,120,232,100,108,253,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,16,72,141,5,192,155,7,0,72,139,0,72,57,194,116,17,72,141,61,190,4,5,0,184,0,0,0,0,232, 26,179,3,0,72,139,69,248,72,139,64,56,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,64,72,72,133,192,15,149,192,15,182,192,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16, 72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,72,139,69,240,72,139,64,96,72,137,69,224,235,22,72,139,69,224,139,16,72,139,69,232,137,16,72,131,69,232,4,72,131,69,224,4,255,77,252,131,125,252,255,117,225,72,139,69,240,72,139,64, 80,72,59,69,224,117,12,72,139,69,240,72,139,64,72,72,137,69,224,72,139,85,240,72,139,69,224,72,137,66,96,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,139,64,72,72,133,192,116,106,72,139, 69,224,72,139,0,72,137,69,248,72,139,69,232,72,139,64,112,72,133,192,116,22,72,139,69,232,72,139,112,112,72,139,69,224,72,139,56,232,102,243,253,255,235,60,72,139,69,248,139,112,56,72,139,69,248,72,139,72,8,72,139,85,232,65,137,240,190,3,0,0,0,72,141, 61,2,255,255,255,184,0,0,0,0,232,204,235,253,255,72,139,69,232,72,139,80,72,72,139,69,232,72,137,80,96,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139,0,72,137,69,240,72,139,69,200,72,131,192,16,72,139,0,72,137,69,232,72,139,69, 200,72,131,192,24,72,139,0,137,69,252,72,139,69,240,72,139,64,88,72,137,69,224,72,139,69,240,72,139,64,80,72,59,69,224,15,133,138,0,0,0,72,139,69,240,72,139,64,72,72,137,69,216,72,139,69,240,72,139,80,72,72,139,69,240,139,64,104,72,152,72,193,224,2,72, 141,4,2,72,137,69,208,72,139,69,240,139,80,64,72,139,69,240,139,64,104,137,209,41,193,137,200,137,69,248,72,139,69,240,139,64,104,72,152,72,193,224,2,72,41,69,224,235,22,72,139,69,208,139,16,72,139,69,216,137,16,72,131,69,216,4,72,131,69,208,4,255,77, 248,131,125,248,255,117,225,235,22,72,139,69,232,139,16,72,139,69,224,137,16,72,131,69,224,4,72,131,69,232,4,255,77,252,131,125,252,255,117,225,72,139,85,240,72,139,69,224,72,137,66,88,72,139,69,200,72,131,192,32,201,195,85,72,137,229,83,72,131,236,88, 72,137,125,184,72,137,117,176,137,85,172,137,77,168,68,137,69,164,68,137,77,160,72,139,69,184,72,139,64,72,72,133,192,15,132,241,2,0,0,139,69,24,72,99,208,72,139,69,184,72,137,144,128,0,0,0,139,69,32,72,99,208,72,139,69,184,72,137,144,136,0,0,0,131,125, 40,0,15,132,163,2,0,0,72,139,69,184,72,139,64,72,72,133,192,15,132,180,2,0,0,139,69,164,255,200,139,85,160,255,202,33,208,137,69,224,72,131,125,176,0,116,62,72,139,69,184,72,139,120,56,232,223,234,2,0,72,152,72,193,224,3,72,3,69,176,72,139,0,72,137,69, 208,72,139,69,208,139,64,56,137,69,236,139,69,236,137,194,15,175,85,32,137,208,193,250,31,247,125,24,137,69,220,235,22,72,199,69,208,0,0,0,0,199,69,236,1,0,0,0,199,69,220,1,0,0,0,139,69,220,137,69,232,139,69,232,59,69,172,125,6,139,69,172,137,69,232, 72,139,69,184,139,64,64,137,69,228,139,69,228,59,69,232,15,132,178,0,0,0,72,139,69,184,72,139,64,72,72,137,69,192,139,69,228,72,152,72,141,52,133,0,0,0,0,72,139,125,192,232,59,208,2,0,139,69,232,72,152,72,141,60,133,0,0,0,0,232,53,206,2,0,72,137,69,192, 72,199,192,255,255,255,255,72,131,248,255,116,36,72,199,193,255,255,255,255,139,69,232,72,152,72,141,20,133,0,0,0,0,72,139,125,192,190,0,0,0,0,232,169,204,4,0,235,27,139,69,232,72,152,72,141,20,133,0,0,0,0,72,139,125,192,190,0,0,0,0,232,163,1,0,0,72, 139,85,184,139,69,232,137,66,64,139,69,232,72,152,72,193,224,2,72,137,194,72,3,85,192,72,139,69,184,72,137,80,80,72,139,85,184,72,139,69,192,72,137,66,72,72,131,125,176,0,15,132,223,0,0,0,139,69,160,137,194,15,175,85,220,72,139,69,184,137,80,104,72,139, 69,184,72,139,72,80,72,139,69,184,139,80,104,139,69,224,15,175,69,220,137,211,41,195,137,216,72,152,72,193,224,2,72,137,202,72,41,194,72,139,69,184,72,137,80,88,139,69,32,15,175,69,24,131,248,1,117,42,72,139,69,208,72,139,72,8,139,69,220,72,139,85,184, 65,137,192,190,3,0,0,0,72,141,61,221,252,255,255,184,0,0,0,0,232,141,232,253,255,235,83,72,139,69,184,139,112,120,72,139,69,208,72,139,64,8,72,139,125,184,72,131,199,120,139,77,220,139,85,236,65,137,240,72,137,198,232,105,106,253,255,72,139,69,184,72, 139,136,144,0,0,0,139,69,220,72,139,85,184,65,137,192,190,3,0,0,0,72,141,61,136,252,255,255,184,0,0,0,0,232,56,232,253,255,72,139,69,208,139,64,20,133,192,117,95,72,139,125,208,232,57,236,253,255,235,84,72,199,192,255,255,255,255,72,131,248,255,116,40, 72,199,193,255,255,255,255,139,69,232,72,152,72,141,20,133,0,0,0,0,72,139,69,184,72,139,120,72,190,0,0,0,0,232,65,203,4,0,235,31,139,69,232,72,152,72,141,20,133,0,0,0,0,72,139,69,184,72,139,120,72,190,0,0,0,0,232,55,0,0,0,72,139,69,184,72,199,64,112, 0,0,0,0,235,34,72,139,69,184,72,139,120,56,232,99,232,2,0,72,152,72,193,224,3,72,3,69,176,72,139,16,72,139,69,184,72,137,80,112,72,131,196,88,91,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,72,199,193,255,255,255,255,72, 139,85,232,139,117,244,72,139,125,248,232,191,202,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,141,5,6,150,7,0,72,139,56,232,234,232,2,0,72,137,69,248,232,126,149,254,255,72,137,194,72,139,69,248,72,137,80,48,72,139,117,248,72,139,69,248, 72,139,120,48,72,141,21,239,62,7,0,232,116,102,255,255,72,137,194,72,139,69,248,72,137,80,56,191,0,0,0,0,232,186,203,2,0,72,137,194,72,139,69,248,72,137,80,72,72,139,69,248,72,139,80,72,72,139,69,248,72,137,80,80,72,139,69,248,199,64,64,0,0,0,0,72,139, 69,248,72,199,64,112,0,0,0,0,72,139,125,248,72,141,53,152,62,7,0,232,149,217,2,0,72,139,125,248,72,131,199,120,232,115,101,253,255,72,141,61,129,254,4,0,232,64,177,2,0,72,59,69,232,117,13,72,139,69,248,199,64,120,1,0,0,0,235,42,72,141,61,69,254,4,0,232, 33,177,2,0,72,59,69,232,117,13,72,139,69,248,199,64,120,2,0,0,0,235,11,72,139,69,248,199,64,120,0,0,0,0,72,139,69,248,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,3,249,255,255,76,141,37,153,247,255,255,72,141,61,83,45,5,0,232,216,176,2,0,72, 137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,8,0,0,0,185,192,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,13,159,2,0,72,137,194,72,141,5,197,148,7,0,72,137,16,72,141,61,21,45,5,0,232,148,176,2,0,72,137,198,72,141,61,147,254,255,255,185,0,0,0,0,186,7, 0,0,0,184,0,0,0,0,232,5,164,2,0,72,141,53,159,247,255,255,72,141,5,138,148,7,0,72,139,56,232,26,172,2,0,72,141,53,164,247,255,255,72,141,5,116,148,7,0,72,139,56,232,30,172,2,0,72,141,53,177,247,255,255,72,141,5,94,148,7,0,72,139,56,232,34,172,2,0,72, 141,53,192,247,255,255,72,141,5,72,148,7,0,72,139,56,232,38,172,2,0,72,141,53,205,247,255,255,72,141,5,50,148,7,0,72,139,56,232,42,172,2,0,72,141,53,232,247,255,255,72,141,5,28,148,7,0,72,139,56,232,46,172,2,0,72,141,61,173,216,4,0,232,230,175,2,0,72, 137,194,72,141,53,13,249,255,255,72,141,5,247,147,7,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,96,165,2,0,72,141,61,166,23,5,0,232,183,175,2,0,72,137,198,72,141,5,207,147,7,0,72,139,56,232,88,172,2,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236, 32,72,137,125,232,72,141,5,179,147,7,0,72,139,56,232,143,230,2,0,72,137,69,248,232,35,147,254,255,72,137,194,72,139,69,248,72,137,80,48,72,139,117,248,72,139,69,248,72,139,120,48,186,0,0,0,0,232,135,103,255,255,72,137,194,72,139,69,248,72,137,80,56,72, 139,117,248,72,139,125,248,185,0,0,0,0,186,0,0,0,0,232,114,203,2,0,72,139,69,248,199,64,64,0,0,0,0,72,139,69,248,72,199,64,72,0,0,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,56,232,254,215,2,0,201,195, 85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,120,56,72,139,117,240,232,74,216,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,120,56,243,15,16,69,244,232,183,216,2,0,201,195, 85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,120,56,72,139,117,240,232,13,217,2,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,120,56,72,139,77,224,139, 85,236,72,139,117,240,232,83,217,2,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,120,56,72,139,77,224,139,85,236,72,139,117,240,232,167,217,2,0,201,195,85,72,137,229,72,131,236,16,72, 137,125,248,72,139,69,248,72,139,112,56,72,139,69,248,72,139,120,48,232,242,102,255,255,72,139,125,248,72,131,239,128,232,172,98,253,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,16,72,141,5,16,146,7,0,72,139,0,72,57,194, 116,17,72,141,61,24,251,4,0,184,0,0,0,0,232,98,169,3,0,72,139,69,248,72,139,64,56,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,64,72,72,133,192,15,149,192,15,182,192,201,195,85,72,137,229,72,137,125,200,72,139,69,200,72,131,192,8,72,139, 0,72,137,69,240,72,139,69,200,72,131,192,16,72,139,0,72,137,69,232,72,139,69,200,72,131,192,24,72,139,0,137,69,252,72,139,69,240,72,139,64,96,72,137,69,224,72,139,69,224,72,137,69,216,235,60,72,139,85,224,243,15,16,10,72,139,69,232,243,15,16,0,243,15, 88,193,243,15,17,2,72,131,69,224,4,72,131,69,232,4,72,139,69,240,72,139,64,80,72,59,69,224,117,12,72,139,69,240,72,139,64,72,72,137,69,224,255,77,252,131,125,252,255,117,187,72,139,69,240,139,64,104,72,152,72,193,224,2,72,1,69,216,72,139,69,240,72,139, 64,80,72,59,69,216,119,12,72,139,69,240,72,139,64,72,72,137,69,216,72,139,85,240,72,139,69,216,72,137,66,96,72,139,69,200,72,131,192,32,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16, 72,139,0,72,137,69,232,72,139,69,216,72,131,192,24,72,139,0,137,69,252,72,139,69,240,72,139,64,88,72,137,69,224,72,139,69,240,72,139,144,136,0,0,0,72,139,69,240,72,139,128,144,0,0,0,72,57,194,116,50,72,139,69,240,72,139,128,152,0,0,0,72,137,69,232,235, 33,72,139,69,224,139,16,72,139,69,232,137,16,72,131,69,232,4,72,139,85,224,184,0,0,0,0,137,2,72,131,69,224,4,255,77,252,131,125,252,255,117,214,72,139,69,240,72,139,64,80,72,59,69,224,117,12,72,139,69,240,72,139,64,72,72,137,69,224,72,139,85,240,72,139, 69,224,72,137,66,88,72,139,69,216,72,131,192,32,201,195,85,72,137,229,72,137,125,216,72,139,69,216,72,131,192,8,72,139,0,72,137,69,240,72,139,69,216,72,131,192,16,72,139,0,137,69,252,72,139,69,240,72,139,64,88,72,137,69,232,72,139,69,240,72,139,128,152, 0,0,0,72,137,69,224,235,33,72,139,69,232,139,16,72,139,69,224,137,16,72,131,69,224,4,72,139,85,232,184,0,0,0,0,137,2,72,131,69,232,4,255,77,252,131,125,252,255,117,214,72,139,69,240,72,139,64,80,72,59,69,232,117,12,72,139,69,240,72,139,64,72,72,137,69, 232,72,139,85,240,72,139,69,232,72,137,66,88,72,139,69,216,72,131,192,24,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,137,85,236,137,77,232,68,137,69,228,68,137,77,224,72,139,69,248,72,139,64,72,72,133,192,15,132,151,0,0,0,139,69, 24,72,99,208,72,139,69,248,72,137,144,136,0,0,0,139,69,32,72,99,208,72,139,69,248,72,137,144,144,0,0,0,131,125,48,0,116,15,131,125,40,0,117,9,199,69,220,1,0,0,0,235,7,199,69,220,0,0,0,0,15,182,85,220,72,139,69,248,136,80,120,131,125,40,0,116,14,72,139, 69,248,72,199,64,112,0,0,0,0,235,58,72,131,125,240,0,117,17,72,141,61,43,248,4,0,184,0,0,0,0,232,103,166,3,0,72,139,69,248,72,139,120,56,232,115,225,2,0,72,152,72,193,224,3,72,3,69,240,72,139,16,72,139,69,248,72,137,80,112,201,195,85,72,137,229,72,131, 236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,139,64,72,72,133,192,15,132,134,0,0,0,72,139,69,224,72,139,0,72,137,69,248,72,139,69,232,15,182,64,120,132,192,116,33,72,139,69,248,139,16,72,139,69,232,72,139,64,112,72,139,112,8,72,139,69,248,72, 139,120,8,232,107,146,252,255,235,78,72,139,69,232,72,139,64,112,72,133,192,116,22,72,139,69,224,72,139,48,72,139,69,232,72,139,120,112,232,20,231,253,255,235,43,72,139,69,248,139,48,72,139,69,248,72,139,72,8,72,139,85,232,65,137,240,190,3,0,0,0,72,141, 61,105,252,255,255,184,0,0,0,0,232,123,223,253,255,201,195,85,72,137,229,72,131,236,96,72,137,125,184,72,137,117,176,137,85,172,137,77,168,68,137,69,164,68,137,77,160,72,139,69,184,72,139,64,72,72,133,192,15,132,35,3,0,0,139,69,24,72,99,208,72,139,69, 184,72,137,144,136,0,0,0,139,69,32,72,99,208,72,139,69,184,72,137,144,144,0,0,0,131,125,40,0,15,132,185,2,0,0,72,131,125,176,0,116,62,72,139,69,184,72,139,120,56,232,68,224,2,0,72,152,72,193,224,3,72,3,69,176,72,139,0,72,137,69,208,72,139,69,208,139, 64,56,137,69,252,139,69,252,137,194,15,175,85,32,137,208,193,250,31,247,125,24,137,69,240,235,22,72,199,69,208,0,0,0,0,199,69,252,1,0,0,0,199,69,240,1,0,0,0,139,85,172,137,208,193,250,31,247,125,240,137,69,236,131,125,236,0,117,7,199,69,236,1,0,0,0,139, 69,236,255,200,35,69,164,137,69,232,139,69,160,3,69,164,141,80,255,139,69,236,255,200,33,194,139,69,160,247,216,33,208,137,69,228,139,69,240,137,69,248,139,69,248,59,69,172,125,6,139,69,172,137,69,248,72,139,69,184,139,64,64,137,69,244,139,69,244,59, 69,248,15,132,178,0,0,0,72,139,69,184,72,139,64,72,72,137,69,200,139,69,244,72,152,72,141,52,133,0,0,0,0,72,139,125,200,232,214,196,2,0,139,69,248,72,152,72,141,60,133,0,0,0,0,232,208,194,2,0,72,137,69,200,72,199,192,255,255,255,255,72,131,248,255,116, 36,72,199,193,255,255,255,255,139,69,248,72,152,72,141,20,133,0,0,0,0,72,139,125,200,190,0,0,0,0,232,68,193,4,0,235,27,139,69,248,72,152,72,141,20,133,0,0,0,0,72,139,125,200,190,0,0,0,0,232,62,246,255,255,72,139,85,184,139,69,248,137,66,64,139,69,248, 72,152,72,193,224,2,72,137,194,72,3,85,200,72,139,69,184,72,137,80,80,72,139,85,184,72,139,69,200,72,137,66,72,139,69,240,15,175,69,160,59,69,248,126,17,72,141,61,129,245,4,0,184,0,0,0,0,232,171,163,3,0,72,139,69,184,72,139,80,72,139,69,240,15,175,69, 228,72,152,72,193,224,2,72,1,194,72,139,69,184,72,137,80,96,72,139,69,184,72,139,80,96,72,139,69,184,72,139,64,80,72,57,194,117,16,72,139,69,184,72,139,80,72,72,139,69,184,72,137,80,96,131,125,160,1,117,28,131,125,16,1,126,22,139,85,240,137,208,193,250, 31,247,125,16,137,194,72,139,69,184,137,80,104,235,16,139,69,160,137,194,15,175,85,240,72,139,69,184,137,80,104,72,131,125,176,0,15,132,225,0,0,0,72,139,69,184,72,139,80,72,139,69,240,15,175,69,232,72,152,72,193,224,2,72,1,194,72,139,69,184,72,137,80, 88,139,69,32,15,175,69,24,131,248,1,117,45,72,139,69,208,72,139,72,8,139,69,240,72,139,85,184,65,137,192,190,3,0,0,0,72,141,61,114,250,255,255,184,0,0,0,0,232,180,220,253,255,233,136,0,0,0,139,77,240,72,139,85,184,190,2,0,0,0,72,141,61,22,251,255,255, 184,0,0,0,0,232,146,220,253,255,72,139,69,184,139,176,128,0,0,0,72,139,69,208,72,139,64,8,72,139,125,184,72,131,239,128,139,77,252,139,85,240,65,137,240,72,137,198,232,89,95,253,255,235,62,131,125,48,0,116,56,72,131,125,176,0,116,49,72,139,69,184,72, 139,120,56,232,133,221,2,0,72,152,72,193,224,3,72,3,69,176,72,139,0,72,137,69,192,72,139,69,192,139,48,72,139,69,192,72,139,120,8,232,160,213,253,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,141,5,200,138,7,0,72,139,56,232,164,221,2,0,72, 137,69,248,232,56,138,254,255,72,137,194,72,139,69,248,72,137,80,48,72,139,117,248,72,139,69,248,72,139,120,48,72,141,21,169,51,7,0,232,154,94,255,255,72,137,194,72,139,69,248,72,137,80,56,72,139,117,248,72,139,125,248,72,141,13,138,51,7,0,72,141,21, 131,51,7,0,232,129,194,2,0,191,0,0,0,0,232,89,192,2,0,72,137,194,72,139,69,248,72,137,80,72,72,139,69,248,72,139,80,72,72,139,69,248,72,137,80,80,72,139,69,248,199,64,64,0,0,0,0,72,139,125,248,72,131,239,128,232,46,90,253,255,72,141,61,60,243,4,0,232, 251,165,2,0,72,59,69,232,117,16,72,139,69,248,199,128,128,0,0,0,1,0,0,0,235,82,72,141,61,253,242,4,0,232,217,165,2,0,72,59,69,232,117,16,72,139,69,248,199,128,128,0,0,0,2,0,0,0,235,48,72,141,61,47,243,4,0,232,183,165,2,0,72,59,69,232,117,16,72,139,69, 248,199,128,128,0,0,0,2,0,0,0,235,14,72,139,69,248,199,128,128,0,0,0,0,0,0,0,72,139,69,248,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,75,247,255,255,76,141,37,216,245,255,255,72,141,61,231,242,4,0,232,104,165,2,0,72,137,199,199,4,36,0,0,0, 0,65,185,7,0,0,0,65,184,8,0,0,0,185,200,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,157,147,2,0,72,137,194,72,141,5,93,137,7,0,72,137,16,72,141,61,179,33,5,0,232,36,165,2,0,72,137,198,72,141,61,105,254,255,255,185,0,0,0,0,186,7,0,0,0,184,0,0,0,0,232, 149,152,2,0,72,141,53,231,245,255,255,72,141,5,34,137,7,0,72,139,56,232,170,160,2,0,72,141,53,236,245,255,255,72,141,5,12,137,7,0,72,139,56,232,174,160,2,0,72,141,53,249,245,255,255,72,141,5,246,136,7,0,72,139,56,232,178,160,2,0,72,141,53,8,246,255,255, 72,141,5,224,136,7,0,72,139,56,232,182,160,2,0,72,141,53,21,246,255,255,72,141,5,202,136,7,0,72,139,56,232,186,160,2,0,72,141,53,48,246,255,255,72,141,5,180,136,7,0,72,139,56,232,190,160,2,0,72,141,61,61,205,4,0,232,118,164,2,0,72,137,194,72,141,53,190, 249,255,255,72,141,5,143,136,7,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,240,153,2,0,72,141,61,54,12,5,0,232,71,164,2,0,72,137,198,72,141,5,103,136,7,0,72,139,56,232,232,160,2,0,72,131,196,16,91,65,92,201,195,85,72,137,229,232,38,243,255,255,232,145,254, 255,255,201,195,85,72,137,229,72,131,236,96,72,137,125,232,72,137,117,224,72,139,125,232,72,139,117,224,232,182,105,255,255,137,69,252,72,139,125,232,72,139,117,224,232,172,106,255,255,137,69,248,72,139,125,224,232,220,84,255,255,72,137,69,240,72,139, 69,232,68,139,128,72,4,0,0,72,139,69,232,68,139,136,72,4,0,0,72,139,69,232,139,128,188,4,0,0,65,137,194,68,3,85,248,72,139,69,232,139,128,184,4,0,0,137,194,3,85,252,139,77,248,139,117,252,72,139,125,240,72,139,69,232,72,137,68,36,16,68,137,68,36,8,68, 137,12,36,69,137,209,65,137,208,137,242,72,137,254,72,141,61,253,240,4,0,184,0,0,0,0,232,251,55,3,0,72,139,69,232,68,139,128,72,4,0,0,72,139,69,232,139,64,64,137,194,3,85,248,72,139,69,232,139,64,68,137,193,3,77,252,139,117,248,139,125,252,76,139,85, 240,72,139,69,232,72,137,68,36,8,68,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,253,240,4,0,184,0,0,0,0,232,163,55,3,0,72,139,69,232,139,128,76,4,0,0,137,69,200,72,139,69,232,139,128,60,4,0,0,137,69,204,72,139,69,232,72,131,192, 80,72,137,69,208,72,139,69,232,72,139,128,96,4,0,0,72,139,56,72,141,53,252,240,4,0,232,217,189,4,0,133,192,116,20,72,139,69,232,72,139,128,96,4,0,0,72,139,0,72,137,69,216,235,11,72,141,5,124,208,4,0,72,137,69,216,72,139,69,232,139,64,76,137,193,3,77, 248,72,139,69,232,139,64,72,137,194,3,85,252,72,139,117,240,72,139,69,232,72,137,68,36,24,139,69,200,137,68,36,16,72,141,5,177,61,7,0,72,137,68,36,8,139,69,204,137,4,36,76,139,77,208,76,139,69,216,72,141,61,35,215,4,0,184,0,0,0,0,232,233,54,3,0,201,195, 85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,139,125,232,72,139,117,224,232,247,103,255,255,137,69,252,72,139,125,232,72,139,117,224,232,237,104,255,255,137,69,248,72,139,125,224,232,29,83,255,255,72,137,69,240,72,139,69,232,139,128,188, 4,0,0,137,194,3,85,248,72,139,69,232,139,128,184,4,0,0,3,69,252,139,77,248,139,117,252,72,139,125,232,76,139,85,240,137,20,36,65,137,193,65,137,200,137,241,72,137,250,76,137,214,72,141,61,8,240,4,0,184,0,0,0,0,232,94,54,3,0,72,139,69,232,139,64,64,137, 194,3,85,248,72,139,69,232,139,64,68,3,69,252,139,77,248,139,117,252,72,139,125,232,76,139,85,240,137,20,36,65,137,193,65,137,200,137,241,72,137,250,76,137,214,72,141,61,98,215,4,0,184,0,0,0,0,232,24,54,3,0,72,139,69,232,139,64,76,137,199,3,125,248,72, 139,69,232,139,64,72,137,193,3,77,252,72,139,85,232,72,139,117,240,65,137,248,72,141,61,134,207,4,0,184,0,0,0,0,232,228,53,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224,232,56,82,255,255,72,137,69,248,72,139,85, 232,72,139,117,248,72,141,61,146,215,4,0,184,0,0,0,0,232,172,53,3,0,72,139,85,232,72,139,117,248,72,141,61,100,239,4,0,184,0,0,0,0,232,147,53,3,0,72,139,85,232,72,139,117,248,72,141,61,252,10,5,0,184,0,0,0,0,232,122,53,3,0,201,195,85,72,137,229,72,131, 236,64,72,137,125,232,72,137,117,224,72,139,125,224,232,206,81,255,255,72,137,69,248,72,139,69,232,139,144,72,4,0,0,72,139,69,232,139,136,72,4,0,0,72,139,69,232,72,139,117,248,65,137,208,72,137,194,72,141,61,18,239,4,0,184,0,0,0,0,232,40,53,3,0,72,139, 69,232,15,182,128,59,4,0,0,131,224,1,132,192,117,15,72,139,69,232,139,128,72,4,0,0,137,69,212,235,7,199,69,212,255,0,0,0,72,139,85,232,72,139,117,248,139,77,212,72,141,61,238,215,4,0,184,0,0,0,0,232,228,52,3,0,72,139,69,232,72,139,128,96,4,0,0,72,139, 56,72,141,53,99,238,4,0,232,64,187,4,0,133,192,116,20,72,139,69,232,72,139,128,96,4,0,0,72,139,0,72,137,69,216,235,11,72,141,5,227,205,4,0,72,137,69,216,72,139,69,232,139,144,76,4,0,0,72,139,69,232,139,136,60,4,0,0,72,139,117,232,72,131,198,80,72,139, 125,232,76,139,85,248,72,139,69,216,72,137,68,36,8,137,20,36,72,141,5,20,59,7,0,73,137,193,65,137,200,72,137,241,72,137,250,76,137,214,72,141,61,106,214,4,0,184,0,0,0,0,232,80,52,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72, 139,125,224,232,164,80,255,255,72,137,69,248,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,116,32,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,11,215,4,0,184,0,0,0,0,232,1,52,3,0,235,35,72,139,69,232,139,136,72,4,0,0,72,139,85,232,72,139, 117,248,72,141,61,230,214,4,0,184,0,0,0,0,232,220,51,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,131,125,236,1,117,15,72,139,117,240,72,139,125,248,232,205,252,255,255,235,82,131,125,236,2,117,15,72,139,117,240,72, 139,125,248,232,249,250,255,255,235,61,131,125,236,3,117,15,72,139,117,240,72,139,125,248,232,60,255,255,255,235,40,131,125,236,4,117,15,72,139,117,240,72,139,125,248,232,147,253,255,255,235,19,131,125,236,5,117,13,72,139,117,240,72,139,125,248,232,232, 253,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,72,139,69,232,72,137,69,248,72,139,125,248,72,139,117,224,232,86,100,255,255,137,194,72,139,69,216,137,16,72,139,125, 248,72,139,117,224,232,71,101,255,255,137,194,72,139,69,208,137,16,72,139,69,216,139,16,72,139,69,248,139,64,68,1,194,72,139,69,200,137,16,72,139,69,208,139,16,72,139,69,248,139,64,64,1,194,72,139,69,192,137,16,201,195,85,72,137,229,65,87,65,86,65,85, 65,84,83,72,129,236,24,1,0,0,72,137,125,136,72,137,117,128,72,139,69,136,72,137,69,200,72,139,125,200,72,141,85,176,72,141,117,144,232,6,12,254,255,72,139,125,200,72,129,199,64,4,0,0,232,38,21,254,255,137,195,68,139,101,184,68,139,109,176,72,139,69,200, 68,139,176,60,4,0,0,72,139,125,200,72,129,199,56,4,0,0,232,25,22,254,255,65,137,199,72,139,69,200,139,64,76,137,133,56,255,255,255,72,139,69,200,139,64,72,137,133,60,255,255,255,72,139,69,160,72,137,133,64,255,255,255,72,139,85,152,72,137,149,72,255, 255,255,72,139,69,144,72,137,133,80,255,255,255,72,139,69,200,139,128,188,4,0,0,137,133,92,255,255,255,72,139,69,200,139,128,184,4,0,0,137,133,96,255,255,255,72,139,69,200,139,64,68,137,133,100,255,255,255,72,141,61,148,0,5,0,232,117,157,2,0,72,137,133, 104,255,255,255,72,139,69,200,15,183,64,42,152,137,133,112,255,255,255,72,139,69,200,15,183,64,40,152,137,133,116,255,255,255,72,141,61,75,230,4,0,232,68,157,2,0,72,137,133,120,255,255,255,72,141,61,24,215,4,0,232,49,157,2,0,72,139,125,128,137,92,36, 104,68,137,100,36,96,68,137,108,36,88,68,137,116,36,80,68,137,124,36,72,139,149,56,255,255,255,137,84,36,64,139,149,60,255,255,255,137,84,36,56,72,139,149,64,255,255,255,72,137,84,36,48,72,139,149,72,255,255,255,72,137,84,36,40,72,139,149,80,255,255, 255,72,137,84,36,32,139,149,92,255,255,255,137,84,36,24,139,149,96,255,255,255,137,84,36,16,139,149,100,255,255,255,137,84,36,8,72,139,149,104,255,255,255,72,137,20,36,68,139,141,112,255,255,255,68,139,133,116,255,255,255,72,139,141,120,255,255,255,72, 137,194,72,141,53,63,235,4,0,184,0,0,0,0,232,98,50,2,0,72,139,125,128,72,141,53,98,232,4,0,184,0,0,0,0,232,77,50,2,0,72,129,196,24,1,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,65,86,65,85,65,84,83,72,129,236,240,3,0,0,72,137,189,136,252,255, 255,72,137,181,128,252,255,255,72,139,5,47,33,7,0,72,139,16,72,137,85,216,49,210,72,139,133,136,252,255,255,72,137,133,168,252,255,255,72,139,189,168,252,255,255,72,141,181,144,252,255,255,232,102,10,254,255,72,139,133,168,252,255,255,139,128,76,4,0, 0,137,194,129,226,255,255,255,0,72,139,133,168,252,255,255,139,128,72,4,0,0,137,193,129,225,255,255,255,0,72,139,133,168,252,255,255,139,176,60,4,0,0,72,139,133,168,252,255,255,15,182,128,56,4,0,0,131,224,63,15,182,248,72,139,133,168,252,255,255,68,139, 64,76,72,139,133,168,252,255,255,68,139,72,72,72,139,133,160,252,255,255,76,139,16,72,139,133,152,252,255,255,76,139,24,72,139,133,144,252,255,255,72,139,24,72,139,133,168,252,255,255,68,139,160,188,4,0,0,72,139,133,168,252,255,255,68,139,168,184,4,0, 0,72,139,133,168,252,255,255,139,64,68,76,141,181,176,252,255,255,137,148,36,128,0,0,0,199,68,36,120,255,255,255,255,137,76,36,112,137,116,36,104,137,124,36,96,68,137,68,36,88,68,137,76,36,80,76,137,84,36,72,76,137,92,36,64,72,137,92,36,56,199,68,36, 48,255,255,255,255,199,68,36,40,255,255,255,255,199,68,36,32,255,255,255,255,199,68,36,24,255,255,255,255,199,68,36,16,0,0,0,0,68,137,100,36,8,68,137,44,36,65,185,1,0,0,0,65,137,192,72,141,13,180,233,4,0,186,32,3,0,0,190,0,0,0,0,76,137,247,184,0,0,0, 0,232,173,179,4,0,72,139,189,168,252,255,255,72,141,149,176,252,255,255,72,139,181,168,252,255,255,232,87,8,4,0,72,139,5,172,31,7,0,72,139,85,216,72,51,16,116,5,232,132,179,4,0,72,129,196,240,3,0,0,91,65,92,65,93,65,94,201,195,85,72,137,229,72,131,236, 16,72,137,125,248,72,139,69,248,15,182,128,56,4,0,0,131,224,128,132,192,15,132,129,0,0,0,72,139,69,248,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,109,72,139,69,248,72,139,112,48,72,139,125,248,232,12,96,255,255,243,15,42,192,72,139,69,248,243,15, 17,128,144,4,0,0,72,139,69,248,72,139,112,48,72,139,125,248,232,241,96,255,255,243,15,42,192,72,139,69,248,243,15,17,128,160,4,0,0,72,139,77,248,72,129,193,136,4,0,0,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,186,2,0,0,0,72,141,53,248,38,7,0,232, 81,218,2,0,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,139,85,176,139,117,188,191,0,0,0,0,232,52,28,2,0,137,69,252,72,139,85,176,139,117,188,191,2,0,0,0,232,32,28,2,0,137,69,248,72,139,85,176,139,117, 188,191,3,0,0,0,232,12,28,2,0,137,69,244,72,139,125,200,72,139,77,176,139,85,188,72,141,117,208,232,73,8,254,255,137,69,240,72,139,85,200,15,182,130,64,4,0,0,131,224,254,136,130,64,4,0,0,131,125,252,0,127,7,199,69,252,1,0,0,0,72,139,85,200,139,69,252, 137,66,68,72,139,69,200,139,80,68,72,139,69,200,137,80,64,131,125,248,0,127,7,199,69,248,1,0,0,0,72,139,85,200,139,69,248,137,130,184,4,0,0,131,125,244,0,127,7,199,69,244,1,0,0,0,72,139,85,200,139,69,244,137,130,188,4,0,0,72,139,69,200,72,139,72,56,72, 139,69,200,72,139,112,48,72,139,125,200,186,5,0,0,0,255,209,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,1,0,0,0,255,209,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85, 208,139,117,220,191,0,0,0,0,232,37,27,2,0,137,69,252,131,125,252,0,127,7,199,69,252,1,0,0,0,72,139,85,232,139,69,252,137,66,68,72,139,85,232,139,69,252,137,66,64,72,139,117,232,72,139,125,232,232,188,2,254,255,201,195,85,72,137,229,72,131,236,32,72,137, 125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,215,2,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248, 72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,83,3,254,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85,208,139,117,220,191,0,0,0,0,232,98,26,2,0,137,69,252,131,125,252,0, 127,7,199,69,252,1,0,0,0,72,139,85,232,139,69,252,137,130,184,4,0,0,131,125,220,1,126,33,72,139,85,208,139,117,220,191,1,0,0,0,232,46,26,2,0,137,69,252,131,125,252,0,127,7,199,69,252,1,0,0,0,72,139,85,232,139,69,252,137,130,188,4,0,0,72,139,69,232,72, 139,120,48,232,159,152,254,255,133,192,116,27,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,1,0,0,0,255,209,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69, 224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,8,3,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,54,251,253,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248, 72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,6,252,253,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,120,253,253,255,201,195,85,72,137,229,72,131,236,32,72,137, 125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,44,254,253,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248, 72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,201,254,253,255,201,195,85,72,137,229,72,129,236,0,1,0,0,72,137,189,24,255,255,255,137,181,20,255,255,255,72,137,149,8,255,255,255,72,139,5,69,27,7,0,72,139,16,72,137,85,248,49,210, 72,139,61,181,75,7,0,232,76,205,2,0,72,137,133,56,255,255,255,199,133,32,255,255,255,199,113,252,255,199,133,36,255,255,255,255,255,255,255,199,133,40,255,255,255,239,251,254,255,199,133,92,255,255,255,15,0,0,0,199,133,88,255,255,255,100,0,0,0,199,133, 84,255,255,255,60,0,0,0,199,133,80,255,255,255,20,0,0,0,199,133,76,255,255,255,12,0,0,0,199,133,72,255,255,255,2,0,0,0,199,133,68,255,255,255,0,0,0,0,199,133,64,255,255,255,14,0,0,0,72,139,189,56,255,255,255,72,129,199,64,4,0,0,190,0,0,0,0,232,221,11, 254,255,72,139,189,56,255,255,255,72,129,199,56,4,0,0,190,0,0,0,0,232,226,12,254,255,131,189,20,255,255,255,9,15,142,150,0,0,0,131,189,20,255,255,255,13,15,143,137,0,0,0,72,139,133,8,255,255,255,139,0,131,248,1,117,123,72,139,133,8,255,255,255,72,131, 192,16,139,0,131,248,1,117,105,72,139,133,8,255,255,255,72,131,192,32,139,0,131,248,1,117,87,72,139,149,8,255,255,255,139,181,20,255,255,255,191,0,0,0,0,232,155,23,2,0,137,133,92,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,1,0,0,0, 232,126,23,2,0,137,133,88,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,2,0,0,0,232,97,23,2,0,137,133,84,255,255,255,131,189,20,255,255,255,11,126,108,72,139,133,8,255,255,255,72,131,192,48,139,0,131,248,2,116,18,72,139,133,8,255,255, 255,72,131,192,48,139,0,131,248,1,117,72,72,139,133,8,255,255,255,72,131,192,64,139,0,131,248,2,116,18,72,139,133,8,255,255,255,72,131,192,64,139,0,131,248,1,117,36,199,133,68,255,255,255,2,0,0,0,72,139,189,56,255,255,255,72,139,149,8,255,255,255,190, 3,0,0,0,232,3,241,253,255,235,103,131,189,20,255,255,255,11,117,72,72,139,133,8,255,255,255,72,131,192,48,139,0,131,248,2,116,18,72,139,133,8,255,255,255,72,131,192,48,139,0,131,248,1,117,36,199,133,68,255,255,255,1,0,0,0,72,139,189,56,255,255,255,72, 139,149,8,255,255,255,190,3,0,0,0,232,178,240,253,255,235,22,72,139,189,56,255,255,255,186,0,0,0,0,190,3,0,0,0,232,154,240,253,255,131,189,20,255,255,255,9,15,142,34,2,0,0,131,189,20,255,255,255,13,15,143,21,2,0,0,139,133,68,255,255,255,72,152,72,193, 224,4,72,3,133,8,255,255,255,72,131,192,48,139,0,131,248,2,116,34,139,133,68,255,255,255,72,152,72,193,224,4,72,3,133,8,255,255,255,72,131,192,48,139,0,131,248,1,15,133,213,1,0,0,139,133,68,255,255,255,72,152,72,193,224,4,72,3,133,8,255,255,255,72,131, 192,64,139,0,131,248,1,15,133,179,1,0,0,139,133,68,255,255,255,72,152,72,193,224,4,72,3,133,8,255,255,255,72,131,192,80,139,0,131,248,1,15,133,145,1,0,0,139,133,68,255,255,255,72,152,72,193,224,4,72,3,133,8,255,255,255,72,131,192,96,139,0,131,248,1,15, 133,111,1,0,0,139,133,68,255,255,255,72,152,72,193,224,4,72,3,133,8,255,255,255,72,131,192,112,139,0,131,248,1,15,133,77,1,0,0,139,133,68,255,255,255,72,152,72,193,224,4,72,3,133,8,255,255,255,72,131,232,128,139,0,131,248,1,15,133,43,1,0,0,139,133,68, 255,255,255,72,152,72,193,224,4,72,3,133,8,255,255,255,72,5,144,0,0,0,139,0,131,248,1,15,133,7,1,0,0,139,181,68,255,255,255,131,198,3,72,139,189,56,255,255,255,72,139,149,8,255,255,255,232,135,238,253,255,139,149,68,255,255,255,131,194,4,72,139,133,56, 255,255,255,137,144,132,4,0,0,139,189,68,255,255,255,131,199,4,72,139,149,8,255,255,255,139,181,20,255,255,255,232,10,21,2,0,137,133,80,255,255,255,139,189,68,255,255,255,131,199,5,72,139,149,8,255,255,255,139,181,20,255,255,255,232,233,20,2,0,137,133, 76,255,255,255,139,189,68,255,255,255,131,199,6,72,139,149,8,255,255,255,139,181,20,255,255,255,232,200,20,2,0,137,198,72,139,189,56,255,255,255,72,129,199,56,4,0,0,232,151,9,254,255,139,189,68,255,255,255,131,199,7,72,139,149,8,255,255,255,139,181,20, 255,255,255,232,152,20,2,0,137,133,64,255,255,255,139,189,68,255,255,255,131,199,8,72,139,149,8,255,255,255,139,181,20,255,255,255,232,119,20,2,0,137,133,32,255,255,255,139,189,68,255,255,255,131,199,9,72,139,149,8,255,255,255,139,181,20,255,255,255, 232,86,20,2,0,137,133,40,255,255,255,131,189,20,255,255,255,13,117,80,139,133,68,255,255,255,72,152,72,193,224,4,72,3,133,8,255,255,255,72,5,160,0,0,0,139,0,131,248,1,117,48,139,189,68,255,255,255,131,199,10,72,139,149,8,255,255,255,139,181,20,255,255, 255,232,12,20,2,0,137,198,72,139,189,56,255,255,255,72,129,199,64,4,0,0,232,190,7,254,255,72,141,21,59,242,255,255,72,139,133,56,255,255,255,72,137,80,56,72,139,149,56,255,255,255,15,182,130,56,4,0,0,131,200,128,136,130,56,4,0,0,72,139,149,56,255,255, 255,15,182,130,56,4,0,0,131,200,64,136,130,56,4,0,0,232,248,116,254,255,72,137,194,72,139,133,56,255,255,255,72,137,80,48,72,139,133,56,255,255,255,72,139,128,80,4,0,0,72,139,56,72,141,53,69,223,4,0,232,34,172,4,0,133,192,117,23,72,139,133,56,255,255, 255,15,182,144,56,4,0,0,131,226,127,136,144,56,4,0,0,72,139,133,56,255,255,255,72,139,128,88,4,0,0,72,139,56,72,141,53,13,223,4,0,232,234,171,4,0,133,192,117,23,72,139,133,56,255,255,255,15,182,144,56,4,0,0,131,226,191,136,144,56,4,0,0,131,189,92,255, 255,255,0,127,10,199,133,92,255,255,255,1,0,0,0,72,139,149,56,255,255,255,139,133,92,255,255,255,137,66,68,72,139,133,56,255,255,255,139,80,68,72,139,133,56,255,255,255,137,80,64,131,189,88,255,255,255,0,127,10,199,133,88,255,255,255,1,0,0,0,72,139,149, 56,255,255,255,139,133,88,255,255,255,137,130,184,4,0,0,131,189,84,255,255,255,0,127,10,199,133,84,255,255,255,1,0,0,0,72,139,149,56,255,255,255,139,133,84,255,255,255,137,130,188,4,0,0,72,139,133,56,255,255,255,15,182,128,56,4,0,0,131,224,63,60,1,117, 76,72,199,192,255,255,255,255,72,131,248,255,116,35,72,199,194,255,255,255,255,72,139,189,56,255,255,255,72,131,199,80,72,141,53,107,201,4,0,232,240,168,4,0,233,210,0,0,0,72,139,189,56,255,255,255,72,131,199,80,72,141,53,79,201,4,0,232,143,1,0,0,233, 182,0,0,0,72,139,133,56,255,255,255,15,182,128,56,4,0,0,131,224,63,60,2,117,70,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,56,255,255,255,72,131,199,80,72,141,53,154,9,5,0,232,143,168,4,0,235,116,72,139,189, 56,255,255,255,72,131,199,80,72,141,53,129,9,5,0,232,49,1,0,0,235,91,72,139,149,56,255,255,255,15,182,130,56,4,0,0,131,224,192,136,130,56,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,56,255,255,255,72,131, 199,80,72,141,53,29,42,7,0,232,50,168,4,0,235,23,72,139,189,56,255,255,255,72,131,199,80,72,141,53,4,42,7,0,232,212,0,0,0,72,139,133,56,255,255,255,15,182,128,56,4,0,0,131,224,64,132,192,116,26,72,139,133,56,255,255,255,72,139,176,88,4,0,0,72,139,189, 56,255,255,255,232,211,201,2,0,72,139,149,56,255,255,255,139,133,80,255,255,255,137,66,72,72,139,149,56,255,255,255,139,133,76,255,255,255,137,66,76,131,189,64,255,255,255,3,127,10,199,133,64,255,255,255,4,0,0,0,72,139,149,56,255,255,255,139,133,64,255, 255,255,137,130,60,4,0,0,72,139,189,56,255,255,255,72,141,181,32,255,255,255,232,168,239,253,255,72,139,133,56,255,255,255,199,128,136,4,0,0,1,0,0,0,72,139,133,56,255,255,255,199,128,152,4,0,0,1,0,0,0,72,139,189,56,255,255,255,232,177,233,253,255,72, 139,133,56,255,255,255,72,139,21,99,19,7,0,72,139,77,248,72,51,10,116,5,232,59,167,4,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,33,167,4,0,201,195,85,72,137,229,72, 131,236,16,72,137,125,248,72,139,69,248,15,182,128,56,4,0,0,131,224,64,132,192,116,20,72,139,69,248,72,139,176,88,4,0,0,72,139,125,248,232,218,201,2,0,72,139,125,248,232,90,254,3,0,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,177,255,255,255, 76,141,37,108,247,255,255,72,141,61,248,240,4,0,232,217,141,2,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,8,0,0,0,185,192,4,0,0,72,137,218,76,137,230,184,0,0,0,0,232,14,124,2,0,72,137,5,25,67,7,0,72,141,61,147,221,4,0,232,155,141,2,0,72,137, 198,72,141,61,24,247,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,12,129,2,0,72,141,61,184,226,4,0,232,113,141,2,0,72,141,53,115,243,255,255,72,139,61,213,66,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,232,130,2,0,72,141,61,146,226, 4,0,232,63,141,2,0,72,141,53,80,244,255,255,72,139,61,163,66,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,182,130,2,0,72,141,61,76,215,4,0,232,13,141,2,0,72,141,53,121,244,255,255,72,139,61,113,66,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137, 194,184,0,0,0,0,232,132,130,2,0,72,141,61,32,215,4,0,232,219,140,2,0,72,141,53,123,244,255,255,72,139,61,63,66,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,82,130,2,0,72,141,61,177,220,4,0,232,169,140,2,0,72,141,53,125,244,255,255,72,139, 61,13,66,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,32,130,2,0,72,141,61,192,214,4,0,232,119,140,2,0,72,141,53,242,244,255,255,72,139,61,219,65,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,238,129,2,0,72,141,61,148,214,4, 0,232,69,140,2,0,72,141,53,244,244,255,255,72,139,61,169,65,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,188,129,2,0,72,141,61,110,225,4,0,232,19,140,2,0,72,141,53,229,244,255,255,72,139,61,119,65,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194, 184,0,0,0,0,232,138,129,2,0,72,141,61,68,225,4,0,232,225,139,2,0,72,141,53,214,244,255,255,72,139,61,69,65,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,88,129,2,0,72,141,61,54,197,4,0,232,175,139,2,0,72,141,53,199,244,255,255,72,139,61,19, 65,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,38,129,2,0,72,141,61,232,224,4,0,232,125,139,2,0,72,141,53,201,244,255,255,72,139,61,225,64,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,244,128,2,0,72,141,61,98,219,4,0,232, 75,139,2,0,72,141,53,168,240,255,255,72,139,61,175,64,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,200,128,2,0,72,141,21,110,111,7,0,72,141,5,73,236,255,255,72,137,2,72,141,21,93,111,7,0,72,141,5,169,247,253,255,72,137,66,8,72,141,21,75,111,7,0,72,141, 5,15,248,253,255,72,137,66,16,72,141,5,57,111,7,0,72,199,64,24,0,0,0,0,72,141,21,42,111,7,0,72,141,5,67,248,253,255,72,137,66,32,72,141,21,24,111,7,0,72,141,5,80,248,253,255,72,137,66,40,72,141,5,6,111,7,0,72,199,64,48,0,0,0,0,72,139,61,31,64,7,0,72, 141,53,240,110,7,0,232,247,134,2,0,72,141,61,141,218,4,0,232,149,138,2,0,72,137,198,72,139,61,253,63,7,0,232,57,135,2,0,72,139,61,241,63,7,0,72,141,53,34,236,255,255,232,159,136,2,0,72,139,61,222,63,7,0,72,141,53,1,238,255,255,232,184,136,2,0,72,131, 196,16,91,65,92,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15,182,128,59,4,0,0,131,224,8,132,192,116,57,72,139,69,248,72,139,64,48,72,133,192,116,44,72,139,85,248,15,182,130,59,4,0,0,131,224,247,136,130,59,4,0,0,72,139,69,248,72, 139,112,48,72,139,125,248,72,141,21,152,3,0,0,232,155,37,3,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,112,48,72,139,125,248,72,141,21,114,3,0,0,232,117,37,3,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,242,15,16, 136,152,4,0,0,72,139,69,248,242,15,16,128,160,4,0,0,102,15,46,193,119,2,235,22,72,139,69,248,72,139,144,160,4,0,0,72,139,69,248,72,137,144,152,4,0,0,72,139,69,248,242,15,16,136,152,4,0,0,72,139,69,248,242,15,16,128,168,4,0,0,102,15,46,200,119,2,235,22, 72,139,69,248,72,139,144,168,4,0,0,72,139,69,248,72,137,144,152,4,0,0,201,195,85,72,137,229,72,137,125,232,199,69,248,31,0,0,0,72,139,69,232,15,182,128,56,4,0,0,131,224,63,60,1,117,9,199,69,248,27,0,0,0,235,25,72,139,69,232,15,182,128,56,4,0,0,131,224, 63,60,2,117,7,199,69,248,25,0,0,0,72,139,69,232,139,128,60,4,0,0,137,194,15,175,85,248,72,139,69,232,139,64,68,15,175,194,137,69,252,139,77,252,199,69,220,57,142,227,56,139,69,220,247,233,193,250,3,137,200,193,248,31,137,209,41,193,137,200,137,69,252, 72,139,69,232,139,80,64,137,208,193,232,31,1,208,209,248,3,69,252,141,80,4,72,139,69,232,137,144,220,4,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,139,128,152,4,0,0,72,137,69,224,199,69,248,0,0,0,0,72,199,194,255,255,255,255, 72,139,125,216,72,129,199,188,4,0,0,242,15,16,69,224,72,141,13,154,216,4,0,190,0,0,0,0,184,1,0,0,0,232,67,161,4,0,72,139,125,216,72,129,199,188,4,0,0,232,109,163,4,0,137,69,252,131,125,252,4,126,58,139,69,252,131,232,4,137,69,244,139,69,244,72,139,85, 216,72,152,15,182,132,2,188,4,0,0,60,101,116,21,139,69,244,72,139,85,216,72,152,15,182,132,2,188,4,0,0,60,69,117,7,199,69,248,1,0,0,0,72,139,69,216,139,64,68,59,69,252,15,141,159,1,0,0,131,125,248,0,15,132,25,1,0,0,72,139,69,216,139,64,68,131,248,5,127, 48,102,15,87,192,102,15,46,69,224,119,2,235,6,198,69,213,45,235,4,198,69,213,43,72,139,69,216,15,182,85,213,136,144,188,4,0,0,72,139,69,216,198,128,189,4,0,0,0,139,69,252,131,232,4,137,69,244,199,69,240,0,0,0,0,235,24,139,69,240,72,139,85,216,72,152, 15,182,132,2,188,4,0,0,60,46,116,11,255,69,240,139,69,240,59,69,244,124,224,72,139,69,216,139,64,68,131,232,4,59,69,240,125,53,102,15,87,192,102,15,46,69,224,119,2,235,6,198,69,214,45,235,4,198,69,214,43,72,139,69,216,15,182,85,214,136,144,188,4,0,0, 72,139,69,216,198,128,189,4,0,0,0,233,227,0,0,0,72,139,69,216,139,64,68,131,232,4,137,69,236,139,69,252,131,232,4,137,69,232,199,69,244,0,0,0,0,235,43,139,117,236,139,69,232,72,139,85,216,72,152,15,182,140,2,188,4,0,0,72,139,85,216,72,99,198,136,140, 2,188,4,0,0,255,69,244,255,69,236,255,69,232,131,125,244,3,126,207,72,139,69,216,139,64,68,72,139,85,216,72,152,198,132,2,188,4,0,0,0,235,124,199,69,240,0,0,0,0,235,24,139,69,240,72,139,85,216,72,152,15,182,132,2,188,4,0,0,60,46,116,11,255,69,240,139, 69,240,59,69,252,124,224,72,139,69,216,139,64,68,59,69,240,125,50,102,15,87,192,102,15,46,69,224,119,2,235,6,198,69,215,45,235,4,198,69,215,43,72,139,69,216,15,182,85,215,136,144,188,4,0,0,72,139,69,216,198,128,189,4,0,0,0,235,21,72,139,69,216,139,64, 68,72,139,85,216,72,152,198,132,2,188,4,0,0,0,201,195,85,72,137,229,83,72,131,236,72,72,137,125,200,72,137,117,192,72,139,69,200,72,137,69,224,72,139,125,192,232,75,135,254,255,133,192,15,132,150,1,0,0,72,139,69,224,15,182,128,59,4,0,0,131,224,8,132, 192,15,132,14,1,0,0,72,139,69,224,15,182,128,188,4,0,0,132,192,15,132,177,0,0,0,72,139,69,224,72,5,188,4,0,0,72,137,69,216,72,139,125,224,72,129,199,188,4,0,0,232,8,161,4,0,137,69,236,139,69,236,72,139,85,224,72,152,198,132,2,188,4,0,0,62,139,69,236, 255,192,72,139,85,224,72,152,198,132,2,188,4,0,0,0,72,139,69,224,139,64,68,59,69,236,127,29,72,139,77,216,72,255,193,72,139,69,224,139,80,68,139,69,236,41,208,72,152,72,141,4,1,72,137,69,216,72,139,125,192,232,156,54,255,255,72,137,198,72,139,69,216, 72,139,85,224,73,137,192,185,0,0,255,0,72,141,61,171,213,4,0,184,0,0,0,0,232,9,26,3,0,139,69,236,72,139,85,224,72,152,198,132,2,188,4,0,0,0,233,188,0,0,0,72,139,125,224,232,160,252,255,255,72,139,93,224,72,129,195,188,4,0,0,72,139,125,192,232,69,54,255, 255,72,137,198,72,139,85,224,73,137,216,185,0,0,255,0,72,141,61,88,213,4,0,184,0,0,0,0,232,182,25,3,0,72,139,69,224,198,128,188,4,0,0,0,235,114,72,139,125,224,232,86,252,255,255,72,139,69,224,72,5,188,4,0,0,72,137,69,176,72,139,69,224,15,182,128,59,4, 0,0,131,224,1,132,192,117,15,72,139,69,224,139,128,68,4,0,0,137,69,188,235,7,199,69,188,255,0,0,0,72,139,125,192,232,208,53,255,255,72,137,198,72,139,85,224,76,139,69,176,139,77,188,72,141,61,228,212,4,0,184,0,0,0,0,232,66,25,3,0,72,139,69,224,198,128, 188,4,0,0,0,72,131,196,72,91,201,195,85,72,137,229,65,85,65,84,83,72,129,236,184,0,0,0,72,137,125,184,72,137,117,176,72,139,69,184,139,80,64,137,208,193,232,31,1,208,209,248,137,69,220,72,139,69,184,139,72,64,199,69,140,121,120,120,120,139,69,140,247, 233,193,250,4,137,200,193,248,31,137,209,41,193,137,200,255,192,137,69,216,72,139,125,184,72,139,117,176,232,255,73,255,255,137,69,212,72,139,125,184,72,139,117,176,232,245,74,255,255,137,69,208,72,139,125,176,232,37,53,255,255,72,137,69,200,72,139,69, 184,139,144,72,4,0,0,72,139,69,184,139,64,64,137,193,3,77,208,72,139,69,184,139,64,64,137,198,3,117,208,72,139,69,184,139,128,220,4,0,0,137,199,3,125,212,68,139,69,208,65,131,192,4,72,139,69,184,139,128,220,4,0,0,65,137,193,68,3,77,212,72,139,69,184, 139,128,220,4,0,0,3,69,212,68,141,80,252,68,139,93,208,139,93,208,68,139,101,212,76,139,109,200,72,139,69,184,72,137,68,36,64,137,84,36,56,199,68,36,48,0,0,0,0,137,76,36,40,139,69,212,137,68,36,32,137,116,36,24,137,124,36,16,68,137,68,36,8,68,137,12, 36,69,137,217,69,137,208,137,217,68,137,226,76,137,238,72,141,61,218,211,4,0,184,0,0,0,0,232,248,23,3,0,72,139,69,184,139,144,68,4,0,0,72,139,69,184,139,64,64,137,193,3,77,208,139,69,220,139,117,208,1,198,139,69,220,139,125,212,1,199,68,139,85,208,68, 139,93,212,72,139,93,200,72,139,69,184,72,137,68,36,24,137,84,36,16,137,76,36,8,139,69,212,137,4,36,65,137,241,65,137,248,68,137,209,68,137,218,72,137,222,72,141,61,217,211,4,0,184,0,0,0,0,232,143,23,3,0,72,139,69,184,139,128,76,4,0,0,137,69,152,72,139, 69,184,139,128,60,4,0,0,137,69,156,72,139,69,184,72,131,192,80,72,137,69,160,72,139,69,184,72,139,128,96,4,0,0,72,139,56,72,141,53,232,208,4,0,232,197,157,4,0,133,192,116,20,72,139,69,184,72,139,128,96,4,0,0,72,139,0,72,137,69,168,235,11,72,141,13,104, 176,4,0,72,137,77,168,72,139,69,184,139,64,76,137,193,3,77,208,72,139,69,184,139,64,72,137,194,3,85,212,72,139,117,200,72,139,69,184,72,137,68,36,24,139,69,152,137,68,36,16,72,141,5,157,29,7,0,72,137,68,36,8,139,69,156,137,4,36,76,139,77,160,76,139,69, 168,72,141,61,103,211,4,0,184,0,0,0,0,232,213,22,3,0,72,139,125,184,232,130,249,255,255,72,139,69,184,139,144,68,4,0,0,72,139,69,184,139,136,60,4,0,0,72,139,117,184,72,131,198,80,72,139,125,184,72,129,199,188,4,0,0,139,69,220,3,69,208,65,137,194,68,3, 85,216,139,69,220,3,69,212,68,141,88,2,72,139,93,200,72,139,69,184,72,137,68,36,24,137,84,36,16,72,141,5,26,29,7,0,72,137,68,36,8,137,12,36,73,137,241,73,137,248,68,137,209,68,137,218,72,137,222,72,141,61,96,211,4,0,184,0,0,0,0,232,78,22,3,0,72,139,69, 184,15,182,128,56,4,0,0,131,224,128,132,192,117,76,72,139,69,184,139,64,64,137,199,3,125,208,68,139,69,212,65,131,192,7,72,139,69,184,139,64,64,3,69,208,141,72,255,139,85,212,72,139,117,200,199,68,36,8,0,0,0,0,72,139,69,184,72,137,4,36,65,137,249,72, 141,61,170,182,4,0,184,0,0,0,0,232,240,21,3,0,72,139,69,184,15,182,128,56,4,0,0,131,224,64,132,192,117,67,139,85,208,255,194,139,77,212,131,193,7,139,117,208,139,125,212,76,139,85,200,199,68,36,8,0,0,0,0,72,139,69,184,72,137,4,36,65,137,209,65,137,200, 137,241,137,250,76,137,214,72,141,61,157,182,4,0,184,0,0,0,0,232,155,21,3,0,72,129,196,184,0,0,0,91,65,92,65,93,201,195,85,72,137,229,65,84,83,72,131,196,128,72,137,125,200,72,137,117,192,72,139,69,200,139,80,64,137,208,193,232,31,1,208,209,248,137,69, 236,72,139,69,200,139,72,64,199,69,188,121,120,120,120,139,69,188,247,233,193,250,4,137,200,193,248,31,137,209,41,193,137,200,255,192,137,69,232,72,139,125,200,72,139,117,192,232,97,70,255,255,137,69,228,72,139,125,200,72,139,117,192,232,87,71,255,255, 137,69,224,72,139,125,192,232,135,49,255,255,72,137,69,216,72,139,69,200,139,64,64,137,194,3,85,224,72,139,69,200,139,64,64,137,193,3,77,224,72,139,69,200,139,128,220,4,0,0,137,198,3,117,228,139,125,224,131,199,4,72,139,69,200,139,128,220,4,0,0,65,137, 192,68,3,69,228,72,139,69,200,139,128,220,4,0,0,3,69,228,68,141,72,252,68,139,85,224,68,139,93,228,72,139,93,200,76,139,101,216,137,84,36,48,139,69,228,137,68,36,40,137,76,36,32,137,116,36,24,137,124,36,16,68,137,68,36,8,139,69,224,137,4,36,69,137,208, 68,137,217,72,137,218,76,137,230,72,141,61,248,209,4,0,184,0,0,0,0,232,118,20,3,0,72,139,69,200,139,64,64,137,194,3,85,224,139,69,236,139,77,224,1,193,139,69,236,139,117,228,1,198,139,125,224,68,139,85,228,76,139,93,200,72,139,93,216,137,84,36,16,139, 69,228,137,68,36,8,137,12,36,65,137,241,65,137,248,68,137,209,76,137,218,72,137,222,72,141,61,215,209,4,0,184,0,0,0,0,232,29,20,3,0,72,139,69,200,139,64,76,137,199,3,125,224,72,139,69,200,139,64,72,137,193,3,77,228,72,139,85,200,72,139,117,216,65,137, 248,72,141,61,139,173,4,0,184,0,0,0,0,232,233,19,3,0,139,69,236,3,69,224,137,199,3,125,232,139,69,236,3,69,228,141,72,2,72,139,85,200,72,139,117,216,65,137,248,72,141,61,163,209,4,0,184,0,0,0,0,232,185,19,3,0,72,139,69,200,15,182,128,56,4,0,0,131,224, 128,132,192,117,82,72,139,69,200,139,64,64,137,194,3,85,224,139,77,228,131,193,7,72,139,69,200,139,64,64,3,69,224,255,200,139,117,228,72,139,125,200,76,139,85,216,137,84,36,8,137,12,36,65,137,193,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61, 239,180,4,0,184,0,0,0,0,232,85,19,3,0,72,139,69,200,15,182,128,56,4,0,0,131,224,64,132,192,117,66,139,69,224,255,192,139,85,228,131,194,7,139,77,224,139,117,228,72,139,125,200,76,139,85,216,137,68,36,8,137,20,36,65,137,201,65,137,240,185,0,0,0,0,72,137, 250,76,137,214,72,141,61,195,180,4,0,184,0,0,0,0,232,1,19,3,0,72,131,236,128,91,65,92,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224,232,78,47,255,255,72,137,69,248,72,139,85,232,72,139,117,248,72,141,61,208,208,4,0, 184,0,0,0,0,232,194,18,3,0,72,139,85,232,72,139,117,248,72,141,61,208,208,4,0,184,0,0,0,0,232,169,18,3,0,72,139,85,232,72,139,117,248,72,141,61,18,232,4,0,184,0,0,0,0,232,144,18,3,0,72,139,85,232,72,139,117,248,72,141,61,184,208,4,0,184,0,0,0,0,232,119, 18,3,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,30,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,57,198,4,0,184,0,0,0,0,232,71,18,3,0,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,30,72,139,85,232,72,139,117,248,185,0, 0,0,0,72,141,61,15,201,4,0,184,0,0,0,0,232,23,18,3,0,201,195,85,72,137,229,72,131,236,80,72,137,125,232,72,137,117,224,72,139,125,224,232,107,46,255,255,72,137,69,248,72,139,69,232,72,139,128,96,4,0,0,72,139,56,72,141,53,119,203,4,0,232,84,152,4,0,133, 192,116,20,72,139,69,232,72,139,128,96,4,0,0,72,139,0,72,137,69,200,235,11,72,141,5,247,170,4,0,72,137,69,200,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,117,15,72,139,69,232,139,128,76,4,0,0,137,69,212,235,7,199,69,212,255,0,0,0,72,139,69,232, 139,144,60,4,0,0,72,139,77,232,72,131,193,80,72,139,117,232,72,139,125,248,72,139,69,200,72,137,68,36,8,139,69,212,137,4,36,72,141,5,7,24,7,0,73,137,193,65,137,208,72,137,242,72,137,254,72,141,61,96,179,4,0,184,0,0,0,0,232,70,17,3,0,72,139,69,232,15, 182,128,59,4,0,0,131,224,1,132,192,117,15,72,139,69,232,139,128,68,4,0,0,137,69,216,235,7,199,69,216,255,0,0,0,72,139,69,232,139,144,60,4,0,0,72,139,77,232,72,131,193,80,72,139,117,232,72,139,125,248,139,69,216,137,4,36,72,141,5,155,23,7,0,73,137,193, 65,137,208,72,137,242,72,137,254,72,141,61,60,207,4,0,184,0,0,0,0,232,218,16,3,0,72,139,69,232,139,136,72,4,0,0,72,139,85,232,72,139,117,248,72,141,61,97,207,4,0,184,0,0,0,0,232,183,16,3,0,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,117,15,72, 139,69,232,139,128,68,4,0,0,137,69,220,235,7,199,69,220,255,0,0,0,72,139,85,232,72,139,117,248,139,77,220,72,141,61,77,207,4,0,184,0,0,0,0,232,115,16,3,0,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72,139,125,232,72,139, 117,224,232,126,65,255,255,137,69,252,72,139,125,232,72,139,117,224,232,116,66,255,255,137,69,248,72,139,125,224,232,164,44,255,255,72,137,69,240,139,69,220,131,224,1,132,192,116,94,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,76,72,139, 69,232,139,64,64,137,199,3,125,248,68,139,69,252,65,131,192,7,72,139,69,232,139,64,64,3,69,248,141,72,255,139,85,252,72,139,117,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,249,72,141,61,99,178,4,0,184,0,0,0,0,232,201,15,3,0,139,69,220,131, 224,1,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,129,195,4,0,184,0,0,0,0,232,143,15,3,0,139,69,220,131,224,2,133,192,116,85,72,139,69,232,15,182,128,56,4,0,0,131,224, 64,132,192,117,67,139,85,248,255,194,139,77,252,131,193,7,139,117,248,139,125,252,76,139,85,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,2,178,4,0,184,0,0,0,0,232,48,15,3,0,139,69,220,131, 224,2,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,116,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,238,197,4,0,184,0,0,0,0,232,246,14,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224, 232,74,43,255,255,72,137,69,248,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,15,132,214,0,0,0,72,139,69,232,15,182,128,59,4,0,0,131,224,8,132,192,116,71,72,139,85,232,15,182,130,59,4,0,0,131,224,247,136,130,59,4,0,0,72,139,69,232,72,139,184,136, 4,0,0,232,25,187,2,0,72,139,69,232,198,128,188,4,0,0,0,72,139,69,232,72,139,112,48,72,139,125,232,72,141,21,118,243,255,255,232,121,21,3,0,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,84,205,4,0,184,0,0,0,0,232,74,14,3,0,72,139,85,232,72,139, 117,248,185,255,0,0,0,72,141,61,6,205,4,0,184,0,0,0,0,232,44,14,3,0,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,120,177,4,0,184,0,0,0,0,232,14,14,3,0,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,42,205,4,0,184,0,0,0,0,232,240,13,3,0, 233,135,0,0,0,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,215,204,4,0,184,0,0,0,0,232,205,13,3,0,72,139,69,232,139,136,68,4,0,0,72,139,85,232,72,139,117,248,72,141,61,132,204,4,0,184,0,0,0,0,232,170,13,3,0,72,139,69,232,139,136,76,4,0,0,72,139, 85,232,72,139,117,248,72,141,61,241,176,4,0,184,0,0,0,0,232,135,13,3,0,72,139,69,232,139,136,68,4,0,0,72,139,85,232,72,139,117,248,72,141,61,158,204,4,0,184,0,0,0,0,232,100,13,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137, 85,236,131,125,236,0,117,25,72,139,117,240,72,139,125,248,72,141,21,67,242,255,255,232,70,20,3,0,233,130,0,0,0,131,125,236,1,117,15,72,139,117,240,72,139,125,248,232,144,247,255,255,235,109,131,125,236,2,117,15,72,139,117,240,72,139,125,248,232,216,243, 255,255,235,88,131,125,236,3,117,15,72,139,117,240,72,139,125,248,232,255,253,255,255,235,67,131,125,236,4,117,15,72,139,117,240,72,139,125,248,232,230,249,255,255,235,46,131,125,236,5,117,15,72,139,117,240,72,139,125,248,232,180,250,255,255,235,25,131, 125,236,5,126,19,139,85,236,131,234,6,72,139,117,240,72,139,125,248,232,61,252,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,72,139,69,232,72,137,69,248,72,139,125,248, 72,139,117,224,232,164,61,255,255,137,194,72,139,69,216,137,16,72,139,125,248,72,139,117,224,232,149,62,255,255,137,194,72,139,69,208,137,16,72,139,69,216,139,16,72,139,69,248,139,128,220,4,0,0,1,194,72,139,69,200,137,16,72,139,69,208,139,16,72,139,69, 248,139,64,64,1,194,72,139,69,192,137,16,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,72,1,0,0,72,137,125,136,72,137,117,128,72,139,69,136,72,137,69,200,72,139,125,200,72,141,85,176,72,141,117,144,232,81,229,253,255,72,139,69,200,15,182, 128,59,4,0,0,131,224,8,132,192,116,60,72,139,85,200,15,182,130,59,4,0,0,131,224,247,136,130,59,4,0,0,72,139,69,200,72,139,184,136,4,0,0,232,78,184,2,0,72,139,69,200,72,139,112,48,72,139,125,200,72,141,21,182,240,255,255,232,185,18,3,0,72,139,69,200,139, 152,224,4,0,0,72,139,69,200,76,139,160,152,4,0,0,68,139,109,184,68,139,117,180,68,139,125,176,72,139,69,200,139,128,60,4,0,0,137,133,32,255,255,255,72,139,125,200,72,129,199,56,4,0,0,232,10,239,253,255,137,133,36,255,255,255,72,139,69,200,139,64,76,137, 133,40,255,255,255,72,139,69,200,139,64,72,137,133,44,255,255,255,72,139,69,160,72,137,133,48,255,255,255,72,139,85,152,72,137,149,56,255,255,255,72,139,69,144,72,137,133,64,255,255,255,72,139,125,200,72,129,199,64,4,0,0,232,161,237,253,255,137,133,72, 255,255,255,72,139,69,200,139,128,184,4,0,0,137,133,76,255,255,255,72,139,69,200,242,15,16,128,168,4,0,0,242,15,90,192,243,15,90,192,242,15,17,133,80,255,255,255,72,139,69,200,242,15,16,128,160,4,0,0,242,15,90,192,243,15,90,192,242,15,17,133,88,255,255, 255,72,139,69,200,139,64,64,137,133,96,255,255,255,72,139,69,200,139,64,68,137,133,100,255,255,255,72,141,61,59,217,4,0,232,24,118,2,0,72,137,133,104,255,255,255,72,139,69,200,15,183,64,42,152,137,133,112,255,255,255,72,139,69,200,15,183,64,40,152,137, 133,116,255,255,255,72,141,61,238,190,4,0,232,231,117,2,0,72,137,133,120,255,255,255,72,141,61,187,175,4,0,232,212,117,2,0,72,139,125,128,137,92,36,120,68,137,108,36,112,68,137,116,36,104,68,137,124,36,96,139,149,32,255,255,255,137,84,36,88,139,149,36, 255,255,255,137,84,36,80,139,149,40,255,255,255,137,84,36,72,139,149,44,255,255,255,137,84,36,64,72,139,149,48,255,255,255,72,137,84,36,56,72,139,149,56,255,255,255,72,137,84,36,48,72,139,149,64,255,255,255,72,137,84,36,40,139,149,72,255,255,255,137, 84,36,32,139,149,76,255,255,255,137,84,36,24,139,149,96,255,255,255,137,84,36,16,139,149,100,255,255,255,137,84,36,8,72,139,149,104,255,255,255,72,137,20,36,76,137,165,24,255,255,255,242,15,16,149,24,255,255,255,242,15,16,141,80,255,255,255,242,15,16, 133,88,255,255,255,68,139,141,112,255,255,255,68,139,133,116,255,255,255,72,139,141,120,255,255,255,72,137,194,72,141,53,235,200,4,0,184,3,0,0,0,232,205,10,2,0,72,139,125,128,72,141,53,205,192,4,0,184,0,0,0,0,232,184,10,2,0,72,129,196,72,1,0,0,91,65, 92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,48,72,137,125,232,242,15,17,69,224,242,15,17,77,216,199,69,252,0,0,0,0,72,139,69,232,139,128,184,4,0,0,133,192,15,132,137,0,0,0,102,15,87,192,102,15,46,69,224,122,2,116,2,235,29,102,15,87,192,102, 15,46,69,216,122,2,116,2,235,14,72,184,0,0,0,0,0,0,240,63,72,137,69,216,102,15,87,201,242,15,16,69,216,102,15,46,193,119,2,235,37,102,15,87,192,102,15,46,69,224,115,2,235,63,242,15,16,69,216,242,15,16,13,107,30,5,0,242,15,89,193,242,15,17,69,224,235, 39,102,15,87,201,242,15,16,69,224,102,15,46,193,119,2,235,22,242,15,16,69,224,242,15,16,13,66,30,5,0,242,15,89,193,242,15,17,69,216,72,139,85,232,72,139,69,224,72,137,130,160,4,0,0,72,139,85,232,72,139,69,216,72,137,130,168,4,0,0,72,139,69,232,242,15, 16,136,152,4,0,0,72,139,69,232,242,15,16,128,160,4,0,0,102,15,46,193,119,2,235,29,72,139,69,232,72,139,144,160,4,0,0,72,139,69,232,72,137,144,152,4,0,0,199,69,252,1,0,0,0,72,139,69,232,242,15,16,136,152,4,0,0,72,139,69,232,242,15,16,128,168,4,0,0,102, 15,46,200,119,2,235,29,72,139,69,232,72,139,144,168,4,0,0,72,139,69,232,72,137,144,152,4,0,0,199,69,252,1,0,0,0,72,139,69,232,139,128,184,4,0,0,133,192,116,90,72,139,69,232,242,15,16,136,168,4,0,0,72,139,69,232,242,15,16,128,160,4,0,0,102,15,40,209,242, 15,94,208,102,15,40,194,232,64,141,4,0,102,15,40,200,72,139,69,232,139,128,224,4,0,0,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,232,153,140,4,0,72,139,69,232,242,15,17,128,176,4,0,0,235,21,72,139,85,232,72,184,0,0,0,0,0,0,240,63,72,137,130, 176,4,0,0,139,69,252,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,24,4,0,0,72,137,189,120,252,255,255,72,137,181,112,252,255,255,72,139,5,198,247,6,0,72,139,16,72,137,85,200,49,210,72,139,133,120,252,255,255,72,137,133,152,252,255,255, 72,139,189,152,252,255,255,72,141,181,128,252,255,255,232,253,224,253,255,72,139,133,152,252,255,255,15,182,128,59,4,0,0,131,224,8,132,192,116,72,72,139,149,152,252,255,255,15,182,130,59,4,0,0,131,224,247,136,130,59,4,0,0,72,139,133,152,252,255,255,72, 139,184,136,4,0,0,232,131,179,2,0,72,139,133,152,252,255,255,72,139,112,48,72,139,189,152,252,255,255,72,141,21,229,235,255,255,232,232,13,3,0,72,139,133,152,252,255,255,139,128,76,4,0,0,137,194,129,226,255,255,255,0,72,139,133,152,252,255,255,139,128, 68,4,0,0,137,193,129,225,255,255,255,0,72,139,133,152,252,255,255,139,128,72,4,0,0,137,198,129,230,255,255,255,0,72,139,133,152,252,255,255,139,184,60,4,0,0,72,139,133,152,252,255,255,15,182,128,56,4,0,0,131,224,63,68,15,182,192,72,139,133,152,252,255, 255,68,139,72,76,72,139,133,152,252,255,255,68,139,80,72,72,139,133,144,252,255,255,76,139,24,72,139,133,136,252,255,255,72,139,24,72,139,133,128,252,255,255,76,139,32,72,139,133,152,252,255,255,68,139,168,224,4,0,0,72,139,133,152,252,255,255,15,182, 128,64,4,0,0,131,224,1,68,15,182,240,72,139,133,152,252,255,255,68,139,184,184,4,0,0,72,139,133,152,252,255,255,242,15,16,128,168,4,0,0,72,139,133,152,252,255,255,242,15,16,144,160,4,0,0,72,139,133,152,252,255,255,139,64,64,137,133,108,252,255,255,72, 139,133,152,252,255,255,139,64,68,137,133,92,252,255,255,72,141,133,160,252,255,255,72,137,133,96,252,255,255,137,148,36,128,0,0,0,137,76,36,120,137,116,36,112,137,124,36,104,68,137,68,36,96,68,137,76,36,88,68,137,84,36,80,76,137,92,36,72,72,137,92,36, 64,76,137,100,36,56,68,137,108,36,48,199,68,36,40,255,255,255,255,68,137,116,36,32,68,137,124,36,24,199,68,36,16,0,0,0,0,199,68,36,8,8,0,0,0,139,149,108,252,255,255,137,20,36,102,15,40,200,102,15,40,194,65,185,1,0,0,0,68,139,133,92,252,255,255,72,141, 13,200,196,4,0,186,32,3,0,0,190,0,0,0,0,72,139,189,96,252,255,255,184,2,0,0,0,232,117,137,4,0,72,139,189,152,252,255,255,72,141,149,160,252,255,255,72,139,181,152,252,255,255,232,31,222,3,0,72,139,5,116,245,6,0,72,139,85,200,72,51,16,116,5,232,76,137, 4,0,72,129,196,24,4,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,242,15,16,128,152,4,0,0,242,15,90,192,72,139,69,248,72,139,120,24,232,57,154,2,0,72,139,69,248,15,182,128,56,4,0,0,131,224,128,132,192, 116,56,72,139,69,248,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,36,72,139,69,248,242,15,16,128,152,4,0,0,242,15,90,192,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,232,208,175,2,0,201,195,85,72,137,229,72,131,236,112,72,137,125,184,72,137,117,176, 137,85,172,72,137,77,160,72,139,85,160,139,117,172,191,0,0,0,0,232,42,242,1,0,137,69,252,72,139,85,160,139,117,172,191,1,0,0,0,232,22,242,1,0,137,69,248,72,139,85,160,139,117,172,191,2,0,0,0,232,171,241,1,0,243,15,90,192,242,15,17,69,224,72,139,85,160, 139,117,172,191,3,0,0,0,232,145,241,1,0,243,15,90,192,242,15,17,69,216,72,139,85,160,139,117,172,191,4,0,0,0,232,206,241,1,0,137,69,244,72,139,85,160,139,117,172,191,6,0,0,0,232,186,241,1,0,137,69,240,131,125,244,0,116,7,199,69,244,1,0,0,0,72,139,85, 184,139,69,244,137,130,184,4,0,0,72,139,125,184,72,139,77,160,139,85,172,72,141,117,192,232,221,221,253,255,137,69,236,131,125,252,0,127,7,199,69,252,1,0,0,0,72,139,85,184,139,69,252,137,66,68,131,125,248,7,127,7,199,69,248,8,0,0,0,72,139,85,184,139, 69,248,137,66,64,131,125,240,9,127,7,199,69,240,10,0,0,0,72,139,85,184,139,69,240,137,130,224,4,0,0,72,139,125,184,232,110,229,255,255,242,15,16,69,216,72,139,69,224,72,139,125,184,102,15,40,200,72,137,69,152,242,15,16,69,152,232,226,249,255,255,72,139, 69,184,72,139,72,56,72,139,69,184,72,139,112,48,72,139,125,184,186,0,0,0,0,255,209,72,139,69,184,72,139,72,56,139,85,236,131,194,6,72,139,69,184,72,139,112,48,72,139,125,184,255,209,72,139,69,184,72,139,72,56,72,139,69,184,72,139,112,48,72,139,125,184, 186,5,0,0,0,255,209,72,139,69,184,72,139,72,56,72,139,69,184,72,139,112,48,72,139,125,184,186,1,0,0,0,255,209,72,139,117,184,72,139,69,184,72,139,120,48,232,59,114,254,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,243,15,17,69,228,243,15,17, 77,224,72,184,0,0,0,0,0,0,240,63,72,137,69,248,72,139,69,232,15,182,128,59,4,0,0,131,224,2,132,192,116,14,72,184,123,20,174,71,225,122,132,63,72,137,69,248,72,139,69,232,139,128,184,4,0,0,133,192,116,79,72,139,69,232,242,15,16,128,152,4,0,0,242,15,17, 69,216,242,15,16,5,160,23,5,0,242,15,16,77,248,102,15,87,200,243,15,90,69,224,242,15,89,200,72,139,69,232,242,15,16,128,176,4,0,0,232,221,135,4,0,242,15,89,69,216,72,139,69,232,242,15,17,128,152,4,0,0,235,46,72,139,69,232,242,15,16,136,152,4,0,0,243, 15,90,69,224,242,15,89,69,248,102,15,40,209,242,15,92,208,102,15,40,194,72,139,69,232,242,15,17,128,152,4,0,0,72,139,125,232,232,129,227,255,255,72,139,69,232,72,139,112,48,72,139,125,232,72,141,21,217,230,255,255,232,220,8,3,0,72,139,125,232,232,214, 252,255,255,72,139,69,232,72,139,184,136,4,0,0,232,64,174,2,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,243,15,17,93,232,243,15,17,101,228,243,15,16,69,240,243,15,44,208,243,15,16,69,244,243, 15,44,200,72,141,53,183,254,255,255,72,139,125,248,72,139,69,248,72,139,64,48,65,137,209,65,137,200,72,141,13,110,6,0,0,72,137,242,72,137,254,72,137,199,232,238,28,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,137, 77,216,68,137,69,212,68,137,77,208,72,139,69,232,72,137,69,248,131,125,24,0,15,132,6,1,0,0,243,15,42,69,208,243,15,42,77,212,243,15,42,109,216,243,15,42,117,220,72,139,125,248,15,40,224,15,87,219,15,40,209,15,40,205,15,40,198,232,61,255,255,255,131,125, 212,0,116,22,72,139,69,248,15,182,144,59,4,0,0,131,202,2,136,144,59,4,0,0,235,20,72,139,69,248,15,182,144,59,4,0,0,131,226,253,136,144,59,4,0,0,72,139,69,248,15,182,128,59,4,0,0,131,224,8,132,192,117,81,72,139,69,248,72,139,184,144,4,0,0,242,15,16,5, 88,22,5,0,232,180,174,2,0,72,139,85,248,15,182,130,59,4,0,0,131,200,8,136,130,59,4,0,0,72,139,69,248,72,139,184,136,4,0,0,242,15,16,5,52,22,5,0,232,136,174,2,0,72,139,69,248,198,128,188,4,0,0,0,235,71,72,139,85,248,15,182,130,59,4,0,0,131,224,247,136, 130,59,4,0,0,72,139,69,248,72,139,184,136,4,0,0,232,196,172,2,0,72,139,69,248,198,128,188,4,0,0,0,72,139,69,248,72,139,112,48,72,139,125,248,72,141,21,33,229,255,255,232,36,7,3,0,184,1,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17, 69,244,243,15,90,69,244,72,139,69,248,242,15,17,128,152,4,0,0,72,139,125,248,232,127,225,255,255,72,139,69,248,72,139,112,48,72,139,125,248,72,141,21,215,228,255,255,232,218,6,3,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243, 15,16,77,244,243,15,16,5,121,21,5,0,15,46,193,119,2,235,8,184,0,0,32,65,137,69,244,243,15,16,69,244,243,15,44,208,72,139,69,248,137,144,224,4,0,0,72,139,69,248,139,128,184,4,0,0,133,192,116,90,72,139,69,248,242,15,16,136,168,4,0,0,72,139,69,248,242,15, 16,128,160,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,232,190,132,4,0,102,15,40,200,72,139,69,248,139,128,224,4,0,0,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,232,23,132,4,0,72,139,69,248,242,15,17,128,176,4,0,0,235,21,72,139,85,248, 72,184,0,0,0,0,0,0,240,63,72,137,130,176,4,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,72,139,125,248,232,221,254,255,255,72,139,69,248,15,182,128,59,4,0,0,131,224,4,132,192,116,9,72,139,125,248,232,226,249, 255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85,208,139,117,220,191,0,0,0,0,232,127,236,1,0,137,69,248,131,125,248,0,127,7,199,69,248,1,0,0,0,72,139,85,232,139,69,248,137,66,68,131,125,220, 1,126,43,72,139,85,208,139,117,220,191,1,0,0,0,232,78,236,1,0,137,69,252,131,125,252,7,127,7,199,69,252,8,0,0,0,72,139,85,232,139,69,252,137,66,64,72,139,125,232,232,100,224,255,255,72,139,117,232,72,139,125,232,232,230,211,253,255,201,195,85,72,137, 229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,1,212,253,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72, 137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,125,212,253,255,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,85,224,139,117,236,191,1,0,0,0,232,53,235, 1,0,243,15,90,192,242,15,17,69,216,72,139,85,224,139,117,236,191,0,0,0,0,232,27,235,1,0,243,15,90,192,72,139,125,248,242,15,16,77,216,232,44,244,255,255,133,192,116,24,72,139,69,248,72,139,112,48,72,139,125,248,72,141,21,119,226,255,255,232,122,4,3,0, 201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,103,212,253,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117, 240,72,139,117,248,72,139,85,240,72,139,125,248,232,149,204,253,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,101,205,253,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72, 137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,215,206,253,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232, 139,207,253,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85,208,139,117,220,191,1,0,0,0,232,73,234,1,0,137,69,252,131,125,252,3,127,7,199,69,252,4,0,0,0,72,139,85,232,139,69,252,137,130,60,4,0, 0,72,139,85,208,139,117,220,191,0,0,0,0,232,27,234,1,0,137,69,252,131,125,252,0,120,6,131,125,252,2,126,7,199,69,252,0,0,0,0,139,69,252,131,224,63,72,139,85,232,137,193,131,225,63,15,182,130,56,4,0,0,131,224,192,9,200,136,130,56,4,0,0,72,139,125,232, 232,20,222,255,255,72,139,117,232,72,139,69,208,139,77,220,72,139,85,224,72,139,125,232,73,137,192,232,169,207,253,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,199,128,184,4,0,0,1,0,0,0,72,139,69,248,242,15,16,136,168,4,0,0,72, 139,69,248,242,15,16,128,160,4,0,0,72,139,125,248,232,79,242,255,255,133,192,116,24,72,139,69,248,72,139,112,48,72,139,125,248,72,141,21,154,224,255,255,232,157,2,3,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,199,128,184,4,0,0,0,0,0,0,201,195, 85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,72,139,85,248,137,193,131,225,1,15,182,130,64,4,0,0,131,224,254,9,200,136,130,64,4,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,5,14,85, 7,0,139,0,133,192,117,51,72,139,69,248,15,182,128,64,4,0,0,131,224,1,132,192,116,33,72,139,69,248,72,139,112,48,72,139,125,248,72,141,21,4,224,255,255,232,7,2,3,0,72,139,125,248,232,1,246,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,216,243, 15,17,69,212,72,139,69,216,72,137,69,224,243,15,16,69,212,243,15,44,192,136,69,255,198,69,241,0,128,125,255,0,117,65,72,139,85,224,15,182,130,59,4,0,0,131,224,247,136,130,59,4,0,0,72,139,69,224,72,139,184,136,4,0,0,232,38,167,2,0,72,139,69,224,72,139, 112,48,72,139,125,224,72,141,21,142,223,255,255,232,145,1,3,0,233,155,1,0,0,128,125,255,47,126,6,128,125,255,57,126,30,128,125,255,46,116,24,128,125,255,45,116,18,128,125,255,101,116,12,128,125,255,43,116,6,128,125,255,69,117,124,72,139,125,224,72,129, 199,188,4,0,0,232,195,128,4,0,72,131,248,29,15,135,63,1,0,0,15,182,69,255,136,69,240,72,199,192,255,255,255,255,72,131,248,255,116,29,72,199,194,255,255,255,255,72,139,125,224,72,129,199,188,4,0,0,72,141,117,240,232,92,126,4,0,235,20,72,139,125,224,72, 129,199,188,4,0,0,72,141,117,240,232,20,1,0,0,72,139,69,224,72,139,112,48,72,139,125,224,72,141,21,232,222,255,255,232,235,0,3,0,233,221,0,0,0,128,125,255,8,116,6,128,125,255,127,117,80,72,139,125,224,72,129,199,188,4,0,0,232,59,128,4,0,255,200,137,69, 236,131,125,236,0,121,7,199,69,236,0,0,0,0,139,69,236,72,139,85,224,72,152,198,132,2,188,4,0,0,0,72,139,69,224,72,139,112,48,72,139,125,224,72,141,21,140,222,255,255,232,143,0,3,0,233,129,0,0,0,128,125,255,10,116,6,128,125,255,13,117,117,72,139,125,224, 72,129,199,188,4,0,0,232,237,125,4,0,72,139,69,224,242,15,17,128,152,4,0,0,72,139,69,224,198,128,188,4,0,0,0,72,139,85,224,15,182,130,59,4,0,0,131,224,247,136,130,59,4,0,0,72,139,69,224,72,139,184,136,4,0,0,232,176,165,2,0,72,139,125,224,232,183,218, 255,255,72,139,125,224,232,36,244,255,255,72,139,69,224,72,139,112,48,72,139,125,224,72,141,21,6,222,255,255,232,9,0,3,0,72,139,69,224,72,139,184,136,4,0,0,242,15,16,5,173,14,5,0,232,1,167,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137, 117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,14,125,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,224,139,0,131,248,1,117,35,72,139,85,224,139,117,236,191,0,0,0,0,232, 9,230,1,0,72,139,125,248,232,112,248,255,255,72,139,125,248,232,135,243,255,255,201,195,85,72,137,229,72,129,236,32,1,0,0,72,137,189,8,255,255,255,137,181,4,255,255,255,72,137,149,248,254,255,255,72,139,5,179,232,6,0,72,139,16,72,137,85,248,49,210,72, 139,61,43,25,7,0,232,186,154,2,0,72,137,133,56,255,255,255,199,133,16,255,255,255,0,0,252,255,199,133,20,255,255,255,255,255,255,255,199,133,24,255,255,255,255,255,255,255,199,133,92,255,255,255,5,0,0,0,199,133,88,255,255,255,14,0,0,0,199,133,84,255, 255,255,0,0,0,0,199,133,80,255,255,255,0,0,0,0,199,133,76,255,255,255,0,0,0,0,199,133,72,255,255,255,248,255,255,255,199,133,68,255,255,255,10,0,0,0,199,133,64,255,255,255,0,1,0,0,72,184,27,105,87,67,184,23,158,199,72,137,133,48,255,255,255,72,184,27, 105,87,67,184,23,158,71,72,137,133,40,255,255,255,184,0,0,0,0,72,137,133,32,255,255,255,131,189,4,255,255,255,16,15,142,152,3,0,0,72,139,133,248,254,255,255,139,0,131,248,1,15,133,134,3,0,0,72,139,133,248,254,255,255,72,131,192,16,139,0,131,248,1,15, 133,112,3,0,0,72,139,133,248,254,255,255,72,131,192,32,139,0,131,248,1,15,133,90,3,0,0,72,139,133,248,254,255,255,72,131,192,48,139,0,131,248,1,15,133,68,3,0,0,72,139,133,248,254,255,255,72,131,192,64,139,0,131,248,1,15,133,46,3,0,0,72,139,133,248,254, 255,255,72,131,192,80,139,0,131,248,1,15,133,24,3,0,0,72,139,133,248,254,255,255,72,131,192,96,139,0,131,248,2,116,22,72,139,133,248,254,255,255,72,131,192,96,139,0,131,248,1,15,133,240,2,0,0,72,139,133,248,254,255,255,72,131,192,112,139,0,131,248,2, 116,22,72,139,133,248,254,255,255,72,131,192,112,139,0,131,248,1,15,133,200,2,0,0,72,139,133,248,254,255,255,72,131,232,128,139,0,131,248,2,116,22,72,139,133,248,254,255,255,72,131,232,128,139,0,131,248,1,15,133,160,2,0,0,72,139,133,248,254,255,255,72, 5,144,0,0,0,139,0,131,248,1,15,133,136,2,0,0,72,139,133,248,254,255,255,72,5,160,0,0,0,139,0,131,248,1,15,133,112,2,0,0,72,139,133,248,254,255,255,72,5,176,0,0,0,139,0,131,248,1,15,133,88,2,0,0,72,139,133,248,254,255,255,72,5,192,0,0,0,139,0,131,248, 1,15,133,64,2,0,0,72,139,133,248,254,255,255,72,5,208,0,0,0,139,0,131,248,1,15,133,40,2,0,0,72,139,133,248,254,255,255,72,5,224,0,0,0,139,0,131,248,1,15,133,16,2,0,0,72,139,133,248,254,255,255,72,5,240,0,0,0,139,0,131,248,1,15,133,248,1,0,0,72,139,133, 248,254,255,255,72,5,0,1,0,0,139,0,131,248,1,15,133,224,1,0,0,72,139,149,248,254,255,255,139,181,4,255,255,255,191,0,0,0,0,232,146,227,1,0,137,133,92,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,1,0,0,0,232,117,227,1,0,137,133,88, 255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,2,0,0,0,232,1,227,1,0,243,15,90,192,242,15,17,133,48,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,3,0,0,0,232,222,226,1,0,243,15,90,192,242,15,17,133,40,255,255,255, 72,139,149,248,254,255,255,139,181,4,255,255,255,191,4,0,0,0,232,18,227,1,0,137,133,84,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,5,0,0,0,232,245,226,1,0,137,198,72,139,189,56,255,255,255,72,129,199,64,4,0,0,232,167,214,253,255, 72,139,189,56,255,255,255,72,139,149,248,254,255,255,190,6,0,0,0,232,227,188,253,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,9,0,0,0,232,177,226,1,0,137,133,76,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,10,0,0,0,232, 148,226,1,0,137,133,72,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,11,0,0,0,232,119,226,1,0,137,198,72,139,189,56,255,255,255,72,129,199,56,4,0,0,232,70,215,253,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,12,0,0,0,232, 75,226,1,0,137,133,68,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,13,0,0,0,232,46,226,1,0,137,133,16,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,14,0,0,0,232,17,226,1,0,137,133,20,255,255,255,72,139,149,248,254, 255,255,139,181,4,255,255,255,191,15,0,0,0,232,244,225,1,0,137,133,24,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,16,0,0,0,232,128,225,1,0,243,15,90,192,242,15,17,133,32,255,255,255,235,22,72,139,189,56,255,255,255,186,0,0,0,0,190, 6,0,0,0,232,206,187,253,255,131,189,4,255,255,255,18,117,49,72,139,133,248,254,255,255,72,5,16,1,0,0,139,0,131,248,1,117,29,72,139,149,248,254,255,255,139,181,4,255,255,255,191,17,0,0,0,232,127,225,1,0,137,133,64,255,255,255,72,141,21,53,230,255,255, 72,139,133,56,255,255,255,72,137,80,56,72,139,149,56,255,255,255,15,182,130,56,4,0,0,131,200,128,136,130,56,4,0,0,72,139,149,56,255,255,255,15,182,130,56,4,0,0,131,200,64,136,130,56,4,0,0,232,122,66,254,255,72,137,194,72,139,133,56,255,255,255,72,137, 80,48,72,139,133,56,255,255,255,15,182,128,64,4,0,0,131,224,1,132,192,116,23,72,139,149,56,255,255,255,72,139,133,32,255,255,255,72,137,130,152,4,0,0,235,19,72,139,149,56,255,255,255,184,0,0,0,0,72,137,130,152,4,0,0,131,189,84,255,255,255,0,116,10,199, 133,84,255,255,255,1,0,0,0,72,139,149,56,255,255,255,139,133,84,255,255,255,137,130,184,4,0,0,131,189,64,255,255,255,9,127,10,199,133,64,255,255,255,10,0,0,0,72,139,149,56,255,255,255,139,133,64,255,255,255,137,130,224,4,0,0,72,139,133,56,255,255,255, 72,139,128,80,4,0,0,72,139,56,72,141,53,60,172,4,0,232,25,121,4,0,133,192,117,23,72,139,133,56,255,255,255,15,182,144,56,4,0,0,131,226,127,136,144,56,4,0,0,72,139,133,56,255,255,255,72,139,128,88,4,0,0,72,139,56,72,141,53,4,172,4,0,232,225,120,4,0,133, 192,117,23,72,139,133,56,255,255,255,15,182,144,56,4,0,0,131,226,191,136,144,56,4,0,0,72,139,133,56,255,255,255,15,182,128,56,4,0,0,131,224,63,60,1,117,76,72,199,192,255,255,255,255,72,131,248,255,116,35,72,199,194,255,255,255,255,72,139,189,56,255,255, 255,72,131,199,80,72,141,53,229,150,4,0,232,106,118,4,0,233,210,0,0,0,72,139,189,56,255,255,255,72,131,199,80,72,141,53,201,150,4,0,232,109,2,0,0,233,182,0,0,0,72,139,133,56,255,255,255,15,182,128,56,4,0,0,131,224,63,60,2,117,70,72,199,192,255,255,255, 255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,56,255,255,255,72,131,199,80,72,141,53,20,215,4,0,232,9,118,4,0,235,116,72,139,189,56,255,255,255,72,131,199,80,72,141,53,251,214,4,0,232,15,2,0,0,235,91,72,139,149,56,255,255,255,15,182, 130,56,4,0,0,131,224,192,136,130,56,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,56,255,255,255,72,131,199,80,72,141,53,151,247,6,0,232,172,117,4,0,235,23,72,139,189,56,255,255,255,72,131,199,80,72,141, 53,126,247,6,0,232,178,1,0,0,72,139,133,56,255,255,255,15,182,128,56,4,0,0,131,224,64,132,192,116,26,72,139,133,56,255,255,255,72,139,176,88,4,0,0,72,139,189,56,255,255,255,232,77,151,2,0,72,139,149,56,255,255,255,139,133,76,255,255,255,137,66,72,72, 139,149,56,255,255,255,139,133,72,255,255,255,137,66,76,131,189,68,255,255,255,3,127,10,199,133,68,255,255,255,4,0,0,0,72,139,149,56,255,255,255,139,133,68,255,255,255,137,130,60,4,0,0,131,189,92,255,255,255,0,127,10,199,133,92,255,255,255,1,0,0,0,72, 139,149,56,255,255,255,139,133,92,255,255,255,137,66,68,131,189,88,255,255,255,7,127,10,199,133,88,255,255,255,8,0,0,0,72,139,149,56,255,255,255,139,133,88,255,255,255,137,66,64,72,139,133,56,255,255,255,198,128,188,4,0,0,0,72,139,189,56,255,255,255, 232,120,210,255,255,242,15,16,133,40,255,255,255,72,139,133,48,255,255,255,72,139,189,56,255,255,255,102,15,40,200,72,137,133,232,254,255,255,242,15,16,133,232,254,255,255,232,221,230,255,255,72,139,189,56,255,255,255,72,141,181,16,255,255,255,232,148, 188,253,255,72,139,189,56,255,255,255,232,191,182,253,255,72,141,53,47,209,255,255,72,139,189,56,255,255,255,232,57,156,2,0,72,137,194,72,139,133,56,255,255,255,72,137,144,136,4,0,0,72,141,53,100,209,255,255,72,139,189,56,255,255,255,232,21,156,2,0,72, 137,194,72,139,133,56,255,255,255,72,137,144,144,4,0,0,72,139,149,56,255,255,255,15,182,130,59,4,0,0,131,224,247,136,130,59,4,0,0,72,139,189,56,255,255,255,72,141,53,186,231,6,0,232,87,131,2,0,72,139,133,56,255,255,255,72,139,21,255,223,6,0,72,139,77, 248,72,51,10,116,5,232,215,115,4,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,189,115,4,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15,182,128, 56,4,0,0,131,224,64,132,192,116,20,72,139,69,248,72,139,176,88,4,0,0,72,139,125,248,232,118,150,2,0,72,139,69,248,72,139,184,136,4,0,0,232,12,158,2,0,72,139,69,248,72,139,184,144,4,0,0,232,252,157,2,0,72,139,125,248,232,214,202,3,0,201,195,85,72,137, 229,65,84,83,72,131,236,32,72,141,29,145,255,255,255,76,141,37,122,246,255,255,72,141,61,120,189,4,0,232,85,90,2,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,232,4,0,0,72,137,218,76,137,230,184,0,0,0,0,232,138,72,2,0,72,137,5,157, 15,7,0,72,141,61,79,175,4,0,232,23,90,2,0,72,137,198,72,141,61,38,246,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,136,77,2,0,72,141,53,144,233,255,255,72,139,61,101,15,7,0,232,160,85,2,0,72,141,53,97,239,255,255,72,139,61,82,15,7,0,232,193,85,2, 0,72,141,53,158,245,255,255,72,139,61,63,15,7,0,232,226,85,2,0,72,141,61,35,147,4,0,232,180,89,2,0,72,141,53,135,236,255,255,72,139,61,32,15,7,0,199,68,36,16,0,0,0,0,199,68,36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,72,137, 194,184,0,0,0,0,232,14,79,2,0,72,141,61,238,153,4,0,232,101,89,2,0,72,141,53,45,235,255,255,72,139,61,209,14,7,0,65,185,0,0,0,0,65,184,1,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,214,78,2,0,72,141,61,116,174,4,0,232,45,89,2,0,72,141,53,57,233,255, 255,72,139,61,153,14,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,164,78,2,0,72,141,61,170,148,4,0,232,251,88,2,0,72,141,53,69,242,255,255,72,139,61,103,14,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,120,78,2,0,72,141,61,182,131,4,0,232, 207,88,2,0,72,141,53,70,237,255,255,72,139,61,59,14,7,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,70,78,2,0,72,141,61,240,173,4,0,232,157,88,2,0,72,141,53,84,238,255,255,72,139,61,9,14,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0, 0,232,20,78,2,0,72,141,61,170,162,4,0,232,107,88,2,0,72,141,53,173,238,255,255,72,139,61,215,13,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,226,77,2,0,72,141,61,126,162,4,0,232,57,88,2,0,72,141,53,175,238,255,255,72,139,61,165,13,7,0,65, 184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,176,77,2,0,72,141,61,27,165,4,0,232,7,88,2,0,72,141,53,177,238,255,255,72,139,61,115,13,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,126,77,2,0,72,141,61,30,162,4,0,232,213,87,2,0,72,141, 53,241,238,255,255,72,139,61,65,13,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,76,77,2,0,72,141,61,242,161,4,0,232,163,87,2,0,72,141,53,243,238,255,255,72,139,61,15,13,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,26,77,2,0, 72,141,61,204,172,4,0,232,113,87,2,0,72,141,53,228,238,255,255,72,139,61,221,12,7,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,232,76,2,0,72,141,61,162,172,4,0,232,63,87,2,0,72,141,53,213,238,255,255,72,139,61,171,12,7,0,65,184,0,0,0,0,185, 7,0,0,0,72,137,194,184,0,0,0,0,232,182,76,2,0,72,141,61,148,144,4,0,232,13,87,2,0,72,141,53,198,238,255,255,72,139,61,121,12,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,132,76,2,0,72,141,61,70,172,4,0,232,219,86,2,0,72,141,53,200,238,255, 255,72,139,61,71,12,7,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,82,76,2,0,72,141,61,201,163,4,0,232,169,86,2,0,72,141,53,73,239,255,255,72,139,61,21,12,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,38,76,2,0,72,141,61,161,163,4,0,232,125, 86,2,0,72,141,53,118,239,255,255,72,139,61,233,11,7,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,250,75,2,0,72,141,61,168,160,4,0,232,81,86,2,0,72,141,53,98,239,255,255,72,139,61,189,11,7,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,200,75,2,0, 72,141,61,154,171,4,0,232,31,86,2,0,72,141,53,219,234,255,255,72,139,61,139,11,7,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,150,75,2,0,72,141,21,124,58,7,0,72,141,5,201,221,255,255,72,137,2,72,141,21,107,58,7,0,72,141,5,119,194,253,255,72, 137,66,8,72,141,21,89,58,7,0,72,141,5,221,194,253,255,72,137,66,16,72,141,5,71,58,7,0,72,199,64,24,0,0,0,0,72,141,21,56,58,7,0,72,141,5,17,195,253,255,72,137,66,32,72,141,21,38,58,7,0,72,141,5,30,195,253,255,72,137,66,40,72,141,21,20,58,7,0,72,141,5, 196,232,255,255,72,137,66,48,72,139,61,242,10,7,0,72,141,53,251,57,7,0,232,194,81,2,0,72,141,61,230,170,4,0,232,96,85,2,0,72,137,198,72,139,61,208,10,7,0,232,4,82,2,0,72,139,61,196,10,7,0,72,141,53,162,221,255,255,232,106,83,2,0,72,139,61,177,10,7,0, 72,141,53,51,226,255,255,232,131,83,2,0,72,131,196,32,91,65,92,201,195,85,72,137,229,137,125,236,72,137,117,224,72,137,85,216,72,137,77,208,72,139,69,208,139,0,137,69,244,72,139,85,216,139,69,244,137,2,139,69,244,59,69,236,124,9,199,69,204,0,0,0,0,235, 82,139,69,244,137,69,252,235,3,255,69,252,139,69,252,59,69,236,125,20,139,69,252,72,152,72,193,224,4,72,3,69,224,139,0,131,248,4,117,225,139,69,252,59,69,236,124,11,72,139,85,208,139,69,252,137,2,235,11,139,85,252,255,194,72,139,69,208,137,16,139,85, 244,139,69,252,137,193,41,209,137,77,204,139,69,204,201,195,85,72,137,229,72,131,236,32,137,125,252,72,137,117,240,137,85,236,137,77,232,76,137,69,224,72,139,125,224,184,0,0,0,0,232,216,75,3,0,72,141,61,241,169,4,0,184,0,0,0,0,232,65,73,3,0,139,69,236, 72,152,72,193,224,4,72,137,198,72,3,117,240,139,125,232,232,112,74,3,0,232,76,75,3,0,201,195,85,72,137,229,72,129,236,144,0,0,0,72,137,125,168,137,117,164,72,137,85,152,72,137,77,144,76,137,69,136,76,137,77,128,72,139,125,136,232,223,100,0,0,72,137,69, 216,72,131,125,216,0,117,38,72,139,69,136,72,139,48,72,141,61,142,169,4,0,184,0,0,0,0,232,90,75,3,0,72,139,85,144,139,69,164,137,2,233,192,1,0,0,72,139,77,24,72,139,117,216,72,139,125,128,139,85,16,232,245,64,0,0,72,139,69,216,139,64,24,137,69,244,199, 69,240,0,0,0,0,233,138,1,0,0,72,139,69,216,72,139,72,32,139,69,240,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,0,131,248,3,15,133,20,1,0,0,139,69,240,72,152,72,193,224,3,72,3,69,128,72,139,0,72,137,69,208,72,139,69,208,139,64,4, 137,69,232,199,69,228,0,0,0,0,72,139,69,216,72,139,72,32,139,69,240,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,139,64,16,72,137,69,200,72,139,125,200,232,5,100,0,0,72,137,69,192,72,131,125,192,0,117,29,72,139,69,200,72,139,48,72, 141,61,180,168,4,0,184,0,0,0,0,232,128,74,3,0,233,224,0,0,0,72,139,77,144,72,141,85,252,72,139,117,152,139,125,164,232,219,253,255,255,137,69,224,131,125,224,0,15,132,191,0,0,0,139,117,228,255,198,72,139,125,208,232,138,204,253,255,72,139,69,208,72,139, 80,8,139,69,228,15,175,69,232,72,152,72,141,4,2,72,137,69,184,139,69,252,72,152,72,193,224,4,72,3,69,152,72,139,85,184,72,139,77,200,72,139,117,144,72,139,125,152,68,139,85,164,76,139,93,168,72,137,68,36,8,139,69,224,137,4,36,73,137,209,73,137,200,72, 137,241,72,137,250,68,137,214,76,137,223,232,68,254,255,255,255,69,228,233,105,255,255,255,72,139,69,216,72,139,72,32,139,69,240,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,0,131,248,2,117,35,72,139,69,128,72,139,56,72,139,77,144, 72,139,85,152,139,117,164,65,184,0,0,0,0,232,23,0,0,0,133,192,116,2,235,221,255,69,240,139,69,240,59,69,244,15,140,106,254,255,255,201,195,85,72,137,229,72,131,236,112,72,137,125,200,137,117,196,72,137,85,184,72,137,77,176,68,137,69,172,72,139,69,176, 139,0,137,69,236,72,139,125,200,232,243,82,254,255,137,69,232,139,69,236,59,69,196,125,20,139,69,236,72,152,72,193,224,4,72,3,69,184,139,0,131,248,2,116,61,139,69,236,59,69,196,125,32,139,69,236,72,152,72,193,224,4,72,3,69,184,139,48,72,141,61,95,167, 4,0,184,0,0,0,0,232,84,69,3,0,72,139,85,176,139,69,196,137,2,199,69,168,0,0,0,0,233,138,1,0,0,139,69,236,72,152,72,193,224,4,72,3,69,184,72,139,120,8,232,86,76,254,255,72,137,69,216,139,85,236,255,194,72,139,69,176,137,16,72,139,125,216,232,53,98,0,0, 72,137,69,224,72,131,125,224,0,117,45,72,139,69,216,72,139,48,72,141,61,18,167,4,0,184,0,0,0,0,232,176,72,3,0,72,139,85,176,139,69,196,137,2,199,69,168,0,0,0,0,233,36,1,0,0,72,139,117,216,72,139,125,200,232,172,63,0,0,72,137,69,208,72,131,125,208,0,117, 45,72,139,69,216,72,139,48,72,141,61,239,166,4,0,184,0,0,0,0,232,107,72,3,0,72,139,85,176,139,69,196,137,2,199,69,168,0,0,0,0,233,223,0,0,0,131,125,232,0,116,28,72,139,125,200,232,214,1,255,255,72,137,194,15,182,130,232,0,0,0,131,224,253,136,130,232, 0,0,0,72,139,117,208,72,139,125,200,232,243,250,254,255,72,139,77,176,72,141,85,252,72,139,117,184,139,125,196,232,135,251,255,255,137,69,240,139,69,252,72,152,72,193,224,4,72,3,69,184,72,139,85,208,72,131,194,24,72,139,77,216,72,139,117,176,72,139,125, 184,68,139,85,196,76,139,93,200,72,137,68,36,8,139,69,240,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,68,137,214,76,137,223,232,29,252,255,255,131,125,232,0,116,46,72,139,125,200,232,69,1,255,255,72,137,194,15,182,130,232,0,0,0,131,200,2,136, 130,232,0,0,0,72,139,125,208,72,139,117,200,186,1,0,0,0,232,122,123,254,255,131,125,172,0,116,13,72,139,117,208,72,139,125,200,232,7,126,254,255,199,69,168,1,0,0,0,139,69,168,201,195,85,72,137,229,72,131,196,128,72,137,125,152,72,137,117,144,72,137,85, 136,137,77,132,72,139,125,152,232,225,0,255,255,72,137,69,208,199,69,252,0,0,0,0,199,69,236,0,0,0,0,72,139,125,144,232,19,239,1,0,137,69,248,72,139,125,144,232,23,239,1,0,72,137,69,200,72,141,77,236,72,141,85,240,72,139,117,200,139,125,248,232,135,250, 255,255,137,69,244,131,125,244,1,116,95,139,69,240,72,152,72,193,224,4,72,3,69,200,139,0,131,248,2,116,75,139,69,240,72,152,72,193,224,4,72,3,69,200,72,139,64,8,72,139,56,72,141,53,113,165,4,0,232,108,106,4,0,133,192,116,39,72,139,85,136,72,139,125,152, 72,141,53,99,165,4,0,184,0,0,0,0,232,33,73,3,0,72,139,125,144,232,247,215,1,0,233,177,2,0,0,191,0,0,0,0,232,86,105,2,0,72,137,69,160,199,69,220,0,0,0,0,72,141,77,236,72,141,85,240,72,139,117,200,139,125,248,232,246,249,255,255,137,69,244,131,125,244, 1,15,142,115,2,0,0,131,125,244,2,126,27,139,85,240,139,77,244,72,139,117,200,139,125,248,76,141,5,29,165,4,0,232,87,250,255,255,235,114,139,69,240,72,152,72,193,224,4,72,3,69,200,139,0,131,248,2,117,64,139,69,240,72,152,72,193,224,4,72,3,69,200,72,139, 64,8,72,139,56,72,141,53,251,164,4,0,232,182,105,4,0,133,192,117,28,72,139,85,200,72,131,194,16,139,69,240,72,152,72,193,224,4,72,141,4,2,139,0,131,248,2,116,30,139,85,240,139,77,244,72,139,117,200,139,125,248,76,141,5,203,164,4,0,232,232,249,255,255, 233,55,255,255,255,72,139,85,200,72,131,194,16,139,69,240,72,152,72,193,224,4,72,141,4,2,72,139,120,8,232,47,73,254,255,72,137,69,168,72,141,77,236,72,141,85,240,72,139,117,200,139,125,248,232,32,249,255,255,137,69,244,131,125,244,2,116,10,131,125,244, 3,15,133,219,0,0,0,139,69,244,3,69,220,137,69,216,139,69,216,72,152,72,137,194,72,193,226,4,139,69,220,72,152,72,137,198,72,193,230,4,72,139,125,160,232,22,105,2,0,72,137,69,160,139,69,220,72,152,72,193,224,4,72,137,193,72,3,77,160,139,69,240,72,152, 72,193,224,4,72,137,194,72,3,85,200,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,139,85,160,72,131,194,16,139,69,220,72,152,72,193,224,4,72,141,12,2,72,139,85,200,72,131,194,16,139,69,240,72,152,72,193,224,4,72,1,194,72,139,2,72,137,1,72,139,66,8,72, 137,65,8,131,125,244,3,117,55,72,139,85,160,72,131,194,32,139,69,220,72,152,72,193,224,4,72,141,12,2,72,139,85,200,72,131,194,32,139,69,240,72,152,72,193,224,4,72,1,194,72,139,2,72,137,1,72,139,66,8,72,137,65,8,139,69,216,137,69,220,233,254,254,255,255, 72,139,85,160,139,117,220,72,139,125,168,232,225,76,0,0,72,137,69,184,139,69,220,72,152,72,137,198,72,193,230,4,72,139,125,160,232,62,105,2,0,72,139,125,168,232,238,93,0,0,72,137,69,176,72,131,125,176,0,117,35,72,139,69,168,72,139,48,72,141,61,107,163, 4,0,184,0,0,0,0,232,105,68,3,0,72,139,125,184,232,0,96,0,0,235,100,72,139,117,184,72,139,125,176,232,25,83,0,0,133,192,117,35,72,139,69,168,72,139,48,72,141,61,95,163,4,0,184,0,0,0,0,232,53,68,3,0,72,139,125,184,232,204,95,0,0,235,48,72,139,125,184,232, 193,95,0,0,233,113,253,255,255,139,69,132,72,141,77,236,72,139,85,200,139,117,248,72,139,125,152,65,137,192,232,120,250,255,255,139,69,236,59,69,248,124,222,201,195,85,72,137,229,72,131,236,96,72,137,125,184,72,137,117,176,72,137,85,168,137,77,164,232, 232,212,1,0,72,137,69,216,72,139,125,184,232,94,253,254,255,72,137,69,208,72,139,125,208,232,88,77,254,255,137,69,252,199,69,248,0,0,0,0,199,69,232,0,0,0,0,72,139,69,168,72,139,56,72,141,53,29,243,4,0,232,52,103,4,0,133,192,117,9,199,69,248,1,0,0,0,235, 38,72,139,69,168,72,139,0,15,182,0,132,192,116,24,72,139,69,168,72,139,48,72,141,61,191,162,4,0,184,0,0,0,0,232,107,67,3,0,72,139,69,176,72,139,48,139,77,248,72,139,85,208,72,139,125,216,232,16,249,1,0,133,192,116,32,72,139,125,184,72,141,53,172,162, 4,0,184,0,0,0,0,232,163,69,3,0,72,139,125,216,232,121,212,1,0,235,90,131,125,252,0,116,12,72,139,125,208,15,87,192,232,32,151,254,255,131,125,164,0,116,9,72,139,125,184,232,221,250,254,255,72,139,69,176,72,139,16,72,139,117,216,72,139,125,184,185,0,0, 0,0,232,132,251,255,255,131,125,252,0,116,17,72,139,125,208,243,15,16,5,164,243,4,0,232,225,150,254,255,72,139,125,216,232,29,212,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,139,85,232,72,139,117,240,72,139, 125,248,185,1,0,0,0,232,178,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,139,85,232,72,139,117,240,72,139,125,248,185,0,0,0,0,232,134,254,255,255,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72, 137,117,192,72,137,85,184,72,199,69,224,0,0,0,0,72,199,69,208,0,0,0,0,72,139,69,200,72,139,64,48,72,137,69,232,199,69,252,0,0,0,0,199,69,244,255,255,255,255,235,39,72,139,69,192,72,59,69,232,117,14,139,69,252,137,69,244,72,139,69,232,72,137,69,208,255, 69,252,72,139,69,232,72,139,64,8,72,137,69,232,72,131,125,232,0,117,210,131,125,244,255,117,17,72,141,61,121,161,4,0,184,0,0,0,0,232,34,70,3,0,72,139,117,184,72,139,125,200,185,0,0,0,0,72,141,21,127,161,4,0,232,108,250,255,255,72,199,69,216,0,0,0,0,131, 125,244,0,120,121,131,125,252,0,116,87,72,139,69,200,72,139,64,48,72,137,69,232,199,69,248,1,0,0,0,235,45,139,69,248,59,69,252,117,26,72,139,69,224,72,137,69,216,72,139,69,224,72,139,80,8,72,139,69,232,72,137,80,8,235,60,72,139,69,224,72,137,69,232,255, 69,248,72,139,69,232,72,139,64,8,72,137,69,224,72,131,125,224,0,117,192,235,28,72,139,69,200,72,139,64,48,72,137,69,216,72,139,69,216,72,139,80,8,72,139,69,200,72,137,80,48,72,131,125,216,0,117,22,72,141,61,249,160,4,0,184,0,0,0,0,232,63,65,3,0,233,189, 0,0,0,72,131,125,208,0,117,22,72,141,61,20,161,4,0,184,0,0,0,0,232,77,69,3,0,233,160,0,0,0,72,139,117,208,72,139,125,200,232,129,245,254,255,131,125,244,0,126,113,72,139,69,200,72,139,64,48,72,137,69,232,199,69,248,1,0,0,0,235,66,139,69,248,59,69,244, 116,13,72,139,69,232,72,139,64,8,72,133,192,117,30,72,139,69,232,72,139,80,8,72,139,69,216,72,137,80,8,72,139,85,232,72,139,69,216,72,137,66,8,235,69,72,139,69,232,72,139,64,8,72,137,69,232,255,69,248,72,131,125,232,0,117,183,72,141,61,189,160,4,0,184, 0,0,0,0,232,198,68,3,0,235,28,72,139,69,200,72,139,80,48,72,139,69,216,72,137,80,8,72,139,85,200,72,139,69,216,72,137,66,48,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,72,139,69,224,139,0,137,69,252,72,139,69,216,72, 139,0,72,137,69,240,199,69,248,0,0,0,0,235,25,139,69,248,72,152,72,193,224,3,72,3,69,240,72,139,0,72,59,69,232,116,97,255,69,248,139,69,248,59,69,252,124,223,139,69,252,255,192,72,152,72,141,20,197,0,0,0,0,139,69,252,72,152,72,141,52,197,0,0,0,0,72,139, 125,240,232,171,99,2,0,72,137,69,240,139,69,252,72,152,72,193,224,3,72,137,194,72,3,85,240,72,139,69,232,72,137,2,72,139,85,216,72,139,69,240,72,137,2,139,85,252,255,194,72,139,69,224,137,16,201,195,85,72,137,229,72,131,236,112,72,137,125,168,72,137, 117,160,72,137,85,152,137,77,148,72,139,125,168,232,19,89,0,0,72,137,69,216,191,0,0,0,0,232,88,98,2,0,72,137,69,208,72,139,69,216,139,64,24,137,69,248,199,69,244,0,0,0,0,131,125,148,0,117,45,199,69,176,2,0,0,0,72,139,69,168,72,139,0,72,141,120,3,232, 7,72,2,0,72,137,69,184,72,141,85,176,72,139,125,152,190,1,0,0,0,232,255,220,1,0,72,131,125,216,0,117,17,72,141,61,133,159,4,0,184,0,0,0,0,232,110,67,3,0,199,69,252,0,0,0,0,233,15,1,0,0,72,139,69,216,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192, 72,1,208,72,193,224,3,72,141,4,1,139,0,133,192,116,42,72,139,69,216,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,0,131,248,1,15,133,189,0,0,0,139,69,244,255,192,72,152,72,137,194,72,193,226,4,139,69,244,72, 152,72,137,198,72,193,230,4,72,139,125,208,232,108,98,2,0,72,137,69,208,72,139,69,216,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,0,133,192,117,55,139,69,244,72,152,72,193,224,4,72,3,69,208,199,0,1,0,0,0, 139,69,244,72,152,72,193,224,4,72,137,194,72,3,85,208,139,69,252,72,152,72,193,224,3,72,3,69,160,139,0,137,66,8,235,55,139,69,244,72,152,72,193,224,4,72,3,69,208,199,0,2,0,0,0,139,69,244,72,152,72,193,224,4,72,137,194,72,3,85,208,139,69,252,72,152,72, 193,224,3,72,3,69,160,72,139,0,72,137,66,8,255,69,244,255,69,252,139,69,252,59,69,248,15,140,229,254,255,255,131,125,244,0,117,55,131,125,148,0,116,49,139,69,244,72,152,72,193,224,4,72,3,69,208,199,0,2,0,0,0,139,69,244,72,152,72,193,224,4,72,137,194, 72,3,85,208,72,141,5,86,211,6,0,72,137,66,8,255,69,244,72,139,85,208,139,117,244,72,139,125,152,232,115,219,1,0,72,139,125,152,232,86,226,1,0,139,69,244,72,152,72,137,198,72,193,230,4,72,139,125,208,232,90,98,2,0,199,69,252,0,0,0,0,233,7,1,0,0,72,139, 69,216,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,0,131,248,3,15,133,151,0,0,0,139,69,252,72,152,72,193,224,3,72,3,69,160,72,139,0,72,137,69,200,72,139,69,200,139,64,4,137,69,236,72,139,69,200,139,0,137, 69,232,72,139,69,216,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,139,64,16,72,137,69,192,199,69,240,0,0,0,0,235,45,72,139,69,200,72,139,80,8,139,69,236,15,175,69,240,72,152,72,141,4,2,72,137,198,72,139,85, 152,72,139,125,192,185,1,0,0,0,232,41,253,255,255,255,69,240,139,69,240,59,69,232,124,203,72,139,125,152,232,118,225,1,0,235,67,72,139,69,216,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,0,131,248,2,117,29, 72,139,69,160,72,139,0,72,139,120,48,72,139,117,152,232,26,0,0,0,72,139,125,152,232,49,225,1,0,255,69,252,139,69,252,59,69,248,15,140,237,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,235,64,72,139,69,248,72,139,16,72, 141,5,200,41,7,0,72,139,0,72,57,194,117,30,72,139,69,248,72,141,112,24,72,139,69,248,72,139,120,16,72,139,85,240,185,0,0,0,0,232,121,252,255,255,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,185,201,195,85,72,137,229,72,131,236,80,72,137, 125,200,72,137,117,192,72,137,85,184,72,137,77,176,72,139,125,200,232,118,85,0,0,72,137,69,224,72,139,85,176,72,139,117,184,72,139,125,200,232,132,251,255,255,72,131,125,224,0,117,22,72,141,61,60,156,4,0,184,0,0,0,0,232,18,64,3,0,233,218,0,0,0,72,139, 69,224,72,139,64,32,72,137,69,232,72,139,69,224,139,64,24,137,69,252,233,178,0,0,0,72,139,69,232,139,0,131,248,3,117,122,72,139,69,192,72,139,0,72,137,69,216,72,139,69,216,139,64,4,137,69,244,72,139,69,216,139,0,137,69,240,72,139,69,232,72,139,64,16, 72,137,69,208,72,139,85,176,72,139,117,184,72,139,125,208,232,6,251,255,255,199,69,248,0,0,0,0,235,44,72,139,69,216,72,139,80,8,139,69,244,15,175,69,248,72,152,72,141,4,2,72,137,198,72,139,77,176,72,139,85,184,72,139,125,208,232,26,255,255,255,255,69, 248,139,69,248,59,69,240,124,204,235,35,72,139,69,232,139,0,131,248,2,117,24,72,139,69,192,72,139,0,72,139,120,48,72,139,85,176,72,139,117,184,232,25,0,0,0,72,131,69,232,24,72,131,69,192,8,255,77,252,131,125,252,255,15,133,65,255,255,255,201,195,85,72, 137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,235,63,72,139,69,248,72,139,16,72,141,5,58,40,7,0,72,139,0,72,57,194,117,29,72,139,69,248,72,141,112,24,72,139,69,248,72,139,120,16,72,139,77,232,72,139,85,240,232,136,254,255,255,72,139, 69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,186,201,195,85,72,137,229,83,72,131,236,88,72,137,125,168,137,117,164,191,0,0,0,0,232,67,93,2,0,72,137,69,216,199,69,232,0,0,0,0,232,138,203,1,0,72,137,69,200,72,139,69,168,72,139,64,48,72,137,69, 208,235,86,72,139,69,208,72,139,16,72,141,5,182,39,7,0,72,139,0,72,57,194,117,52,131,125,164,0,117,17,72,139,117,208,72,139,125,168,232,102,112,254,255,133,192,116,29,72,139,69,208,72,141,112,24,72,139,69,208,72,139,120,16,72,141,77,216,72,141,85,232, 232,237,253,255,255,72,139,69,208,72,139,64,8,72,137,69,208,72,131,125,208,0,117,163,72,141,61,158,152,4,0,232,153,66,2,0,72,139,125,200,72,137,194,72,141,53,93,154,4,0,184,0,0,0,0,232,88,216,1,0,199,69,236,0,0,0,0,233,14,2,0,0,139,69,236,72,152,72,193, 224,3,72,137,194,72,139,69,216,72,141,4,2,72,139,56,232,37,83,0,0,72,137,69,192,72,139,69,192,139,64,24,137,69,224,139,69,236,72,152,72,193,224,3,72,137,194,72,139,69,216,72,141,4,2,72,139,0,72,139,0,72,141,120,3,232,40,66,2,0,72,137,195,72,141,61,94, 152,4,0,232,25,66,2,0,72,139,125,200,72,137,217,72,137,194,72,141,53,150,189,4,0,184,0,0,0,0,232,213,215,1,0,199,69,228,0,0,0,0,233,115,1,0,0,72,139,69,192,72,139,72,32,139,69,228,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,0,137, 69,160,131,125,160,1,116,41,131,125,160,1,127,8,131,125,160,0,116,16,235,71,131,125,160,2,116,52,131,125,160,3,116,28,235,57,72,141,5,63,206,6,0,72,137,69,184,235,72,72,141,5,82,206,6,0,72,137,69,184,235,59,72,141,61,117,157,4,0,232,134,65,2,0,72,137, 69,184,235,41,72,141,5,115,206,6,0,72,137,69,184,235,28,72,141,5,6,206,6,0,72,137,69,184,72,141,61,56,153,4,0,184,0,0,0,0,232,236,60,3,0,72,139,69,192,72,139,72,32,139,69,228,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,0,131,248, 3,117,115,72,139,69,192,72,139,72,32,139,69,228,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,139,64,16,72,139,0,72,141,120,3,232,2,65,2,0,72,137,198,72,139,69,192,72,139,72,32,139,69,228,72,99,208,72,137,208,72,1,192,72,1,208,72, 193,224,3,72,141,4,1,72,139,72,8,72,139,85,184,72,139,125,200,73,137,240,72,141,53,174,152,4,0,184,0,0,0,0,232,151,214,1,0,235,60,72,139,69,192,72,139,72,32,139,69,228,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,139,72,8,72,139, 85,184,72,139,125,200,72,141,53,26,188,4,0,184,0,0,0,0,232,89,214,1,0,255,69,228,139,69,228,59,69,224,15,140,129,254,255,255,72,139,125,200,232,100,220,1,0,255,69,236,139,69,232,57,69,236,15,140,230,253,255,255,72,139,125,200,232,76,220,1,0,72,139,69, 168,72,139,64,48,72,137,69,208,235,87,72,139,69,208,72,139,16,72,141,5,248,36,7,0,72,139,0,72,57,194,117,53,131,125,164,0,117,17,72,139,117,208,72,139,125,168,232,168,109,254,255,133,192,116,30,72,139,69,208,72,141,112,24,72,139,69,208,72,139,120,16, 72,139,85,200,185,0,0,0,0,232,146,247,255,255,72,139,69,208,72,139,64,8,72,137,69,208,72,131,125,208,0,117,162,72,139,69,200,72,131,196,88,91,201,195,85,72,137,229,72,129,236,64,4,0,0,72,137,189,216,251,255,255,72,137,181,208,251,255,255,72,137,149,200, 251,255,255,72,139,5,166,196,6,0,72,139,16,72,137,85,248,49,210,199,133,12,252,255,255,0,0,0,0,191,0,0,0,0,232,182,89,2,0,72,137,133,240,251,255,255,199,133,4,252,255,255,0,0,0,0,72,139,189,216,251,255,255,232,115,240,254,255,72,137,133,224,251,255,255, 72,139,133,208,251,255,255,72,139,48,72,141,149,16,252,255,255,72,139,189,224,251,255,255,185,232,3,0,0,232,4,37,254,255,72,139,133,200,251,255,255,72,139,56,72,141,53,36,230,4,0,232,59,90,4,0,133,192,117,12,199,133,12,252,255,255,1,0,0,0,235,44,72,139, 133,200,251,255,255,72,139,0,15,182,0,132,192,116,27,72,139,133,200,251,255,255,72,139,48,72,141,61,189,149,4,0,184,0,0,0,0,232,105,54,3,0,72,139,189,216,251,255,255,190,1,0,0,0,232,176,251,255,255,72,137,133,248,251,255,255,72,131,189,248,251,255,255, 0,116,75,139,141,12,252,255,255,72,141,181,16,252,255,255,72,139,189,248,251,255,255,72,141,21,132,108,4,0,232,233,237,1,0,133,192,116,27,72,139,133,208,251,255,255,72,139,48,72,141,61,146,150,4,0,184,0,0,0,0,232,8,54,3,0,72,139,189,248,251,255,255,232, 67,199,1,0,72,139,5,125,195,6,0,72,139,85,248,72,51,16,116,5,232,85,87,4,0,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,120,1,0,0,72,137,189,40,255,255,255,72,137,181,32,255,255,255,72,139,133,40,255,255,255,72,139,64,72,72,133,192,15, 132,88,1,0,0,72,139,133,40,255,255,255,72,139,128,224,0,0,0,72,133,192,15,133,65,1,0,0,232,159,198,1,0,72,137,69,176,72,139,133,40,255,255,255,72,139,112,16,72,139,125,176,232,54,215,1,0,72,139,125,176,232,94,221,1,0,72,137,195,72,139,125,176,232,66, 221,1,0,137,198,72,137,218,191,1,0,0,0,232,122,192,1,0,72,137,69,168,72,139,125,176,232,145,198,1,0,72,139,133,40,255,255,255,15,182,128,232,0,0,0,208,232,131,224,1,15,182,192,137,133,140,254,255,255,72,141,5,151,203,6,0,72,57,69,168,117,21,72,141,61, 171,149,4,0,232,171,61,2,0,72,137,133,144,254,255,255,235,11,72,139,69,168,72,137,133,144,254,255,255,72,139,133,40,255,255,255,139,80,116,72,139,133,40,255,255,255,139,64,108,137,211,41,195,72,139,133,40,255,255,255,139,80,112,72,139,133,40,255,255, 255,139,64,104,65,137,212,65,41,196,72,139,133,40,255,255,255,68,139,104,108,72,139,133,40,255,255,255,68,139,112,104,72,141,61,78,149,4,0,232,67,61,2,0,73,137,199,72,141,61,70,149,4,0,232,52,61,2,0,72,139,189,32,255,255,255,139,149,140,254,255,255,137, 84,36,24,72,139,149,144,254,255,255,72,137,84,36,16,137,92,36,8,68,137,36,36,69,137,233,69,137,240,76,137,249,72,137,194,72,141,53,12,149,4,0,184,0,0,0,0,232,201,210,1,0,233,193,0,0,0,72,139,133,40,255,255,255,68,139,160,208,0,0,0,72,139,133,40,255,255, 255,139,80,116,72,139,133,40,255,255,255,139,64,108,65,137,213,65,41,197,72,139,133,40,255,255,255,139,80,112,72,139,133,40,255,255,255,139,64,104,65,137,214,65,41,198,72,139,133,40,255,255,255,68,139,120,108,72,139,133,40,255,255,255,139,64,104,137, 133,156,254,255,255,72,141,61,143,148,4,0,232,132,60,2,0,72,137,195,72,141,61,135,148,4,0,232,117,60,2,0,72,139,189,32,255,255,255,68,137,100,36,16,68,137,108,36,8,68,137,52,36,69,137,249,68,139,133,156,254,255,255,72,137,217,72,137,194,72,141,53,99, 148,4,0,184,0,0,0,0,232,22,210,1,0,72,139,181,32,255,255,255,72,139,189,40,255,255,255,232,8,83,254,255,72,139,133,40,255,255,255,72,139,64,48,72,137,69,192,235,28,72,139,181,32,255,255,255,72,139,125,192,232,65,116,2,0,72,139,69,192,72,139,64,8,72,137, 69,192,72,131,125,192,0,117,221,72,139,181,40,255,255,255,72,141,189,48,255,255,255,232,229,36,254,255,233,139,0,0,0,72,139,133,56,255,255,255,72,137,198,72,139,189,40,255,255,255,232,132,36,254,255,137,69,204,72,139,133,72,255,255,255,72,137,198,72, 139,189,40,255,255,255,232,107,36,254,255,137,69,200,139,157,100,255,255,255,68,139,165,68,255,255,255,72,141,61,147,121,4,0,232,149,59,2,0,73,137,197,72,141,61,109,117,4,0,232,134,59,2,0,72,137,194,139,77,204,72,139,189,32,255,255,255,137,92,36,8,139, 69,200,137,4,36,69,137,225,65,137,200,76,137,233,72,141,53,133,147,4,0,184,0,0,0,0,232,44,209,1,0,72,141,189,48,255,255,255,232,147,36,254,255,72,137,69,184,72,131,125,184,0,15,133,90,255,255,255,72,139,133,40,255,255,255,15,182,128,233,0,0,0,131,224, 1,132,192,15,133,130,0,0,0,72,139,133,40,255,255,255,243,15,16,72,88,15,87,192,15,46,200,117,110,122,108,72,139,133,40,255,255,255,243,15,16,72,92,15,87,192,15,46,200,117,88,122,86,72,139,133,40,255,255,255,243,15,16,72,96,243,15,16,5,11,227,4,0,15,46, 200,117,61,122,59,72,139,133,40,255,255,255,243,15,16,72,100,243,15,16,5,240,226,4,0,15,46,200,117,34,122,32,72,139,133,40,255,255,255,139,64,80,133,192,117,18,72,139,133,40,255,255,255,139,64,84,133,192,15,132,230,2,0,0,72,139,133,40,255,255,255,15, 182,128,233,0,0,0,131,224,1,132,192,15,132,163,1,0,0,72,139,133,40,255,255,255,15,182,128,232,0,0,0,131,224,128,132,192,15,132,138,1,0,0,72,139,133,40,255,255,255,139,64,124,243,15,42,192,243,15,90,192,242,15,17,133,160,254,255,255,72,139,133,40,255, 255,255,139,64,120,243,15,42,192,243,15,90,192,242,15,17,133,168,254,255,255,72,139,133,40,255,255,255,15,182,128,233,0,0,0,131,224,2,132,192,116,18,242,15,16,5,14,228,4,0,242,15,17,133,176,254,255,255,235,16,242,15,16,5,60,226,4,0,242,15,17,133,176, 254,255,255,72,139,133,40,255,255,255,139,64,84,243,15,42,192,243,15,90,192,242,15,17,133,184,254,255,255,72,139,133,40,255,255,255,139,64,80,243,15,42,192,243,15,90,192,242,15,17,133,192,254,255,255,72,139,133,40,255,255,255,243,15,16,64,100,243,15, 90,192,242,15,17,133,200,254,255,255,72,139,133,40,255,255,255,243,15,16,64,96,243,15,90,192,242,15,17,133,208,254,255,255,72,139,133,40,255,255,255,243,15,16,64,92,243,15,90,192,242,15,17,133,216,254,255,255,72,139,133,40,255,255,255,243,15,16,64,88, 243,15,90,192,242,15,17,133,224,254,255,255,72,141,61,149,145,4,0,232,98,57,2,0,72,137,195,72,141,61,58,115,4,0,232,83,57,2,0,72,139,189,32,255,255,255,242,15,16,133,160,254,255,255,242,15,17,4,36,242,15,16,189,168,254,255,255,242,15,16,181,176,254,255, 255,242,15,16,173,184,254,255,255,242,15,16,165,192,254,255,255,242,15,16,157,200,254,255,255,242,15,16,149,208,254,255,255,242,15,16,141,216,254,255,255,242,15,16,133,224,254,255,255,72,137,217,72,137,194,72,141,53,39,145,4,0,184,8,0,0,0,232,191,206, 1,0,233,42,1,0,0,72,139,133,40,255,255,255,15,182,128,233,0,0,0,131,224,1,15,182,192,152,243,15,42,192,243,15,90,192,242,15,17,133,232,254,255,255,72,139,133,40,255,255,255,139,64,84,243,15,42,192,243,15,90,192,242,15,17,133,240,254,255,255,72,139,133, 40,255,255,255,139,64,80,243,15,42,192,243,15,90,192,242,15,17,133,248,254,255,255,72,139,133,40,255,255,255,243,15,16,64,100,243,15,90,192,242,15,17,133,0,255,255,255,72,139,133,40,255,255,255,243,15,16,64,96,243,15,90,192,242,15,17,133,8,255,255,255, 72,139,133,40,255,255,255,243,15,16,64,92,243,15,90,192,242,15,17,133,16,255,255,255,72,139,133,40,255,255,255,243,15,16,64,88,243,15,90,192,242,15,17,133,24,255,255,255,72,141,61,81,144,4,0,232,30,56,2,0,72,137,195,72,141,61,246,113,4,0,232,15,56,2, 0,72,139,189,32,255,255,255,242,15,16,181,232,254,255,255,242,15,16,173,240,254,255,255,242,15,16,165,248,254,255,255,242,15,16,157,0,255,255,255,242,15,16,149,8,255,255,255,242,15,16,141,16,255,255,255,242,15,16,133,24,255,255,255,72,137,217,72,137, 194,72,141,53,5,144,4,0,184,7,0,0,0,232,144,205,1,0,72,129,196,120,1,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,137,77,212,72,139,69,232,72,139,64,48,72,137,69,248,233,155,0,0,0,72,139, 69,248,72,139,16,72,141,5,51,28,7,0,72,139,0,72,57,194,117,54,131,125,212,0,117,17,72,139,117,248,72,139,125,232,232,227,100,254,255,133,192,116,31,72,139,69,248,72,141,112,24,72,139,69,248,72,139,120,16,72,139,77,216,72,139,85,224,232,106,242,255,255, 235,67,72,139,69,248,72,139,16,72,141,5,167,26,7,0,72,139,0,72,57,194,117,45,131,125,212,0,117,17,72,139,117,248,72,139,125,232,232,151,100,254,255,133,192,116,22,72,139,125,248,72,139,85,216,72,139,117,224,185,1,0,0,0,232,73,255,255,255,72,139,69,248, 72,139,64,8,72,137,69,248,72,131,125,248,0,15,133,90,255,255,255,201,195,85,72,137,229,83,72,131,236,88,72,137,125,184,72,137,117,176,137,85,172,191,0,0,0,0,232,216,80,2,0,72,137,69,216,199,69,232,0,0,0,0,139,77,172,72,141,85,216,72,141,117,232,72,139, 125,184,232,243,254,255,255,199,69,236,0,0,0,0,233,50,2,0,0,139,69,236,72,152,72,193,224,3,72,137,194,72,139,69,216,72,141,4,2,72,139,56,232,62,71,0,0,72,137,69,200,72,139,69,200,139,64,24,137,69,224,72,131,125,200,0,117,22,72,141,61,163,142,4,0,184, 0,0,0,0,232,225,49,3,0,233,232,1,0,0,139,69,236,72,152,72,193,224,3,72,137,194,72,139,69,216,72,141,4,2,72,139,0,72,139,0,72,141,120,3,232,36,54,2,0,72,137,195,72,141,61,48,147,4,0,232,21,54,2,0,72,137,193,72,139,125,176,73,137,216,72,141,21,94,195,6, 0,72,141,53,104,142,4,0,184,0,0,0,0,232,202,203,1,0,199,69,228,0,0,0,0,233,115,1,0,0,72,139,69,200,72,139,72,32,139,69,228,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,0,137,69,168,131,125,168,1,116,41,131,125,168,1,127,8,131,125, 168,0,116,16,235,71,131,125,168,2,116,52,131,125,168,3,116,28,235,57,72,141,5,52,194,6,0,72,137,69,192,235,72,72,141,5,71,194,6,0,72,137,69,192,235,59,72,141,61,106,145,4,0,232,123,53,2,0,72,137,69,192,235,41,72,141,5,104,194,6,0,72,137,69,192,235,28, 72,141,5,251,193,6,0,72,137,69,192,72,141,61,45,141,4,0,184,0,0,0,0,232,225,48,3,0,72,139,69,200,72,139,72,32,139,69,228,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,0,131,248,3,117,115,72,139,69,200,72,139,72,32,139,69,228,72,99, 208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,139,64,16,72,139,0,72,141,120,3,232,247,52,2,0,72,137,198,72,139,69,200,72,139,72,32,139,69,228,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,139,72,8,72,139,85,192,72,139, 125,176,73,137,240,72,141,53,42,141,4,0,184,0,0,0,0,232,140,202,1,0,235,60,72,139,69,200,72,139,72,32,139,69,228,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,139,72,8,72,139,85,192,72,139,125,176,72,141,53,240,140,4,0,184,0,0,0,0, 232,78,202,1,0,255,69,228,139,69,228,59,69,224,15,140,129,254,255,255,72,139,125,176,232,89,208,1,0,255,69,236,139,69,232,57,69,236,15,140,194,253,255,255,72,131,196,88,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216, 232,166,188,1,0,72,137,69,248,72,139,117,248,72,139,125,232,186,1,0,0,0,232,67,253,255,255,72,139,117,248,72,139,125,232,232,146,245,255,255,72,139,69,216,72,139,16,72,139,69,224,72,139,48,72,139,125,248,185,0,0,0,0,232,29,227,1,0,133,192,116,7,232,246, 48,3,0,235,95,72,139,69,232,72,139,64,72,72,133,192,117,22,72,139,85,216,72,139,117,224,72,139,125,232,232,167,27,254,255,232,38,22,254,255,72,139,69,224,72,139,16,72,139,69,216,72,139,48,72,141,61,32,140,4,0,184,0,0,0,0,232,76,39,3,0,72,139,125,232, 15,87,192,232,129,48,254,255,72,139,85,232,72,139,117,216,72,139,125,224,232,106,120,254,255,72,139,125,248,232,47,188,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,75,68,254,255,72,137,69,248,72,139,125,248,232,235,24,254, 255,72,139,8,72,139,69,248,72,139,128,200,0,0,0,72,139,16,72,139,117,248,72,141,61,192,139,4,0,184,0,0,0,0,232,190,199,2,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,1,68,254,255,72,137,69,248,72,139,69,248,72,139,128,200,0, 0,0,72,139,0,72,137,69,240,72,139,69,240,15,182,0,132,192,15,132,140,0,0,0,72,139,125,240,186,8,0,0,0,72,141,53,142,139,4,0,232,245,77,4,0,133,192,116,115,72,139,125,240,232,226,77,4,0,72,131,248,3,118,66,72,139,125,240,232,211,77,4,0,72,3,69,240,72, 141,120,252,72,141,53,250,177,4,0,232,179,77,4,0,133,192,117,33,72,139,125,240,232,178,77,4,0,72,3,69,240,72,141,120,252,72,141,53,75,139,4,0,232,146,77,4,0,133,192,116,34,72,139,125,248,232,22,24,254,255,72,137,194,72,139,69,248,72,139,176,200,0,0,0, 72,139,125,248,232,37,254,255,255,235,9,72,139,125,248,232,231,254,255,255,201,195,85,72,137,229,72,141,61,74,90,4,0,232,81,50,2,0,72,137,194,72,141,53,108,242,255,255,72,141,5,194,21,7,0,72,139,56,65,185,0,0,0,0,65,184,7,0,0,0,185,2,0,0,0,184,0,0,0, 0,232,191,39,2,0,72,141,61,99,217,4,0,232,22,50,2,0,72,137,194,72,141,53,162,230,255,255,72,141,5,135,21,7,0,72,139,56,65,185,0,0,0,0,65,184,7,0,0,0,185,2,0,0,0,184,0,0,0,0,232,132,39,2,0,72,141,61,156,138,4,0,232,219,49,2,0,72,137,194,72,141,53,147, 230,255,255,72,141,5,76,21,7,0,72,139,56,65,185,0,0,0,0,65,184,7,0,0,0,185,2,0,0,0,184,0,0,0,0,232,73,39,2,0,72,141,61,107,138,4,0,232,160,49,2,0,72,137,194,72,141,53,77,253,255,255,72,141,5,17,21,7,0,72,139,56,65,185,0,0,0,0,65,184,2,0,0,0,185,2,0,0, 0,184,0,0,0,0,232,14,39,2,0,72,141,61,52,150,4,0,232,101,49,2,0,72,137,194,72,141,53,224,242,255,255,72,141,5,214,20,7,0,72,139,56,65,184,0,0,0,0,185,11,0,0,0,184,0,0,0,0,232,217,38,2,0,72,141,61,13,138,4,0,232,48,49,2,0,72,137,194,72,141,53,244,253, 255,255,72,141,5,161,20,7,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,170,38,2,0,72,141,61,231,137,4,0,232,1,49,2,0,72,137,194,72,141,53,123,253,255,255,72,141,5,114,20,7,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,123,38,2,0,201,195,85,72,137,229,83,72,131, 236,56,72,137,125,200,72,137,117,192,191,120,0,0,0,232,224,74,2,0,72,137,69,216,199,69,236,0,0,0,0,199,69,232,0,0,0,0,72,139,69,216,199,64,28,255,255,255,255,72,139,85,216,72,139,69,192,72,137,66,40,72,139,85,216,72,139,69,200,72,137,66,48,72,139,69, 200,72,139,128,192,0,0,0,72,139,80,24,72,139,69,216,72,137,80,112,72,139,69,216,199,64,36,0,0,0,0,72,139,69,216,139,80,36,72,139,69,216,137,80,32,72,139,69,216,139,80,32,72,139,69,216,137,80,20,72,139,69,216,139,80,20,72,139,69,216,137,80,16,72,139,69, 216,139,80,16,72,139,69,216,137,80,12,72,139,85,216,72,131,194,8,72,139,117,216,72,139,69,192,72,139,120,16,232,115,194,1,0,72,139,69,200,72,139,144,192,0,0,0,72,139,69,216,72,137,66,24,72,139,93,216,72,139,69,216,72,139,120,48,232,238,224,254,255,72, 199,194,255,255,255,255,72,139,125,216,72,131,199,56,73,137,217,73,137,192,72,141,13,203,136,4,0,190,0,0,0,0,184,0,0,0,0,232,156,72,4,0,72,139,69,216,72,131,196,56,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,139,64,48,72,139, 128,192,0,0,0,72,139,64,40,72,59,69,232,117,23,72,139,69,232,72,139,64,48,72,139,128,192,0,0,0,72,199,64,40,0,0,0,0,72,139,69,232,72,139,64,48,72,139,128,192,0,0,0,72,139,64,24,72,59,69,232,117,29,72,139,69,232,72,139,64,48,72,139,144,192,0,0,0,72,139, 69,232,72,139,64,112,72,137,66,24,235,76,72,139,69,232,72,139,64,48,72,139,128,192,0,0,0,72,139,64,24,72,137,69,248,235,44,72,139,69,248,72,139,64,112,72,59,69,232,117,18,72,139,69,232,72,139,80,112,72,139,69,248,72,137,80,112,235,19,72,139,69,248,72, 139,64,112,72,137,69,248,72,131,125,248,0,117,205,72,139,5,132,228,6,0,72,59,69,232,117,11,72,199,5,115,228,6,0,0,0,0,0,72,139,69,232,139,64,8,72,99,240,72,139,69,232,72,139,56,232,230,74,2,0,72,139,125,232,190,120,0,0,0,232,216,74,2,0,201,195,85,72, 137,229,72,137,125,248,72,139,69,248,72,131,192,56,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,137,85,232,72,139,69,248,72,139,16,72,139,69,240,72,137,16,72,139,69,248,139,80,8,72,139,69,232,137,16,201,195,85,72,137,229,72,137,125,248,72,137, 117,240,72,137,85,232,72,139,69,248,72,139,16,72,139,69,248,139,64,12,72,152,72,1,194,72,139,69,240,72,137,16,72,139,69,248,139,80,16,72,139,69,248,139,64,12,41,194,72,139,69,232,137,16,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,139,69,248, 72,139,64,40,15,182,64,46,131,224,3,15,182,192,137,69,236,131,125,236,1,116,46,131,125,236,1,127,8,131,125,236,0,116,16,235,86,131,125,236,2,116,44,131,125,236,3,116,56,235,72,72,141,61,104,106,4,0,232,243,45,2,0,72,137,69,240,235,65,72,141,61,232,118, 4,0,232,225,45,2,0,72,137,69,240,235,47,72,141,61,210,134,4,0,232,207,45,2,0,72,137,69,240,235,29,72,141,61,196,134,4,0,232,189,45,2,0,72,137,69,240,235,11,72,141,5,138,187,6,0,72,137,69,240,72,139,69,240,201,195,85,72,137,229,72,137,125,232,137,117, 228,137,85,224,139,69,224,72,152,72,3,69,232,72,137,69,240,199,69,252,0,0,0,0,235,30,72,139,69,232,15,182,0,15,190,192,59,69,228,117,8,139,69,252,137,69,220,235,24,255,69,252,72,255,69,232,72,139,69,232,72,59,69,240,117,216,199,69,220,255,255,255,255, 139,69,220,201,195,85,72,137,229,72,137,125,232,137,117,228,137,85,224,139,69,224,72,152,72,3,69,232,72,137,69,248,235,30,72,255,77,248,255,77,224,72,139,69,248,15,182,0,15,190,192,59,69,228,117,8,139,69,224,137,69,220,235,17,72,139,69,248,72,59,69,232, 117,216,199,69,220,255,255,255,255,139,69,220,201,195,85,72,137,229,83,72,129,236,184,1,0,0,72,137,189,152,254,255,255,137,181,148,254,255,255,72,137,149,136,254,255,255,72,137,141,128,254,255,255,76,137,133,120,254,255,255,72,139,5,186,177,6,0,72,139, 16,72,137,85,232,49,210,199,133,20,255,255,255,0,0,0,0,199,133,16,255,255,255,0,0,0,0,199,133,12,255,255,255,0,0,0,0,199,133,236,254,255,255,0,0,0,0,72,139,133,152,254,255,255,72,139,120,48,232,128,221,254,255,72,137,133,160,254,255,255,72,139,133,152, 254,255,255,72,139,64,40,15,183,64,44,152,137,133,232,254,255,255,131,189,232,254,255,255,0,116,14,139,141,232,254,255,255,137,141,80,254,255,255,235,10,199,133,80,254,255,255,60,0,0,0,68,139,133,80,254,255,255,68,137,133,228,254,255,255,199,133,224, 254,255,255,0,0,0,0,199,133,220,254,255,255,0,0,0,0,199,133,216,254,255,255,0,0,0,0,199,133,212,254,255,255,0,0,0,0,72,139,133,152,254,255,255,139,112,8,72,139,133,152,254,255,255,72,139,56,232,246,46,3,0,137,133,208,254,255,255,72,139,133,152,254,255, 255,72,139,64,40,72,139,16,72,141,5,97,15,7,0,72,139,0,72,57,194,117,77,72,139,133,152,254,255,255,72,139,64,40,15,182,128,233,0,0,0,131,224,1,132,192,116,52,72,139,133,152,254,255,255,72,139,64,40,15,182,128,232,0,0,0,131,224,128,132,192,116,27,72,139, 133,152,254,255,255,72,139,64,40,72,137,199,232,29,45,254,255,137,133,0,255,255,255,235,22,72,139,133,152,254,255,255,72,139,120,48,232,5,45,254,255,137,133,0,255,255,255,139,189,0,255,255,255,232,31,222,2,0,137,133,252,254,255,255,139,189,0,255,255, 255,232,38,222,2,0,137,133,248,254,255,255,72,139,133,136,254,255,255,139,8,139,149,252,254,255,255,137,208,193,232,31,1,208,209,248,141,20,1,137,208,193,250,31,247,189,252,254,255,255,137,133,244,254,255,255,72,139,133,128,254,255,255,139,16,137,208, 193,250,31,247,189,248,254,255,255,137,133,240,254,255,255,72,139,133,152,254,255,255,139,64,8,131,248,99,126,34,72,139,133,152,254,255,255,139,64,8,1,192,255,192,72,99,248,232,6,69,2,0,72,137,133,168,254,255,255,233,195,3,0,0,72,141,133,32,255,255,255, 72,137,133,168,254,255,255,233,176,3,0,0,72,139,133,152,254,255,255,139,64,8,43,133,224,254,255,255,137,133,204,254,255,255,139,149,220,254,255,255,139,133,208,254,255,255,41,208,137,133,200,254,255,255,139,133,228,254,255,255,57,133,200,254,255,255, 15,78,133,200,254,255,255,137,133,196,254,255,255,72,139,133,152,254,255,255,72,139,16,139,133,224,254,255,255,72,152,72,141,60,2,139,181,196,254,255,255,232,209,44,3,0,137,133,192,254,255,255,199,133,188,254,255,255,1,0,0,0,72,139,133,152,254,255,255, 72,139,16,139,133,224,254,255,255,72,152,72,141,60,2,139,149,192,254,255,255,190,10,0,0,0,232,136,252,255,255,137,133,184,254,255,255,131,189,184,254,255,255,0,15,137,184,0,0,0,139,133,200,254,255,255,59,133,228,254,255,255,15,142,130,0,0,0,72,139,133, 152,254,255,255,72,139,16,139,133,224,254,255,255,72,152,72,141,60,2,139,149,192,254,255,255,190,32,0,0,0,232,149,252,255,255,137,133,184,254,255,255,131,189,184,254,255,255,0,121,36,139,133,192,254,255,255,137,133,184,254,255,255,139,133,196,254,255, 255,137,133,180,254,255,255,199,133,188,254,255,255,0,0,0,0,235,116,72,139,133,152,254,255,255,72,139,16,139,133,224,254,255,255,72,152,72,141,60,2,139,181,184,254,255,255,232,139,44,3,0,137,133,180,254,255,255,235,75,139,133,204,254,255,255,137,133, 184,254,255,255,139,133,200,254,255,255,137,133,180,254,255,255,199,133,188,254,255,255,0,0,0,0,235,39,72,139,133,152,254,255,255,72,139,16,139,133,224,254,255,255,72,152,72,141,60,2,139,181,184,254,255,255,232,62,44,3,0,137,133,180,254,255,255,139,133, 16,255,255,255,59,133,240,254,255,255,117,120,131,189,244,254,255,255,0,120,29,139,133,180,254,255,255,57,133,244,254,255,255,137,194,15,78,149,244,254,255,255,137,149,84,254,255,255,235,10,199,133,84,254,255,255,0,0,0,0,139,141,84,254,255,255,137,141, 176,254,255,255,72,139,133,152,254,255,255,72,139,16,139,133,224,254,255,255,72,152,72,141,60,2,139,181,176,254,255,255,232,62,43,3,0,137,194,3,149,224,254,255,255,72,139,133,120,254,255,255,137,16,199,133,236,254,255,255,1,0,0,0,72,199,192,255,255,255, 255,72,131,248,255,116,66,72,199,193,255,255,255,255,139,133,184,254,255,255,76,99,192,72,139,133,152,254,255,255,72,139,16,139,133,224,254,255,255,72,152,72,141,52,2,139,133,20,255,255,255,72,152,72,137,199,72,3,189,168,254,255,255,76,137,194,232,89, 65,4,0,235,57,139,133,184,254,255,255,72,99,200,72,139,133,152,254,255,255,72,139,16,139,133,224,254,255,255,72,152,72,141,52,2,139,133,20,255,255,255,72,152,72,137,199,72,3,189,168,254,255,255,72,137,202,232,161,5,0,0,72,139,133,152,254,255,255,139, 64,12,59,133,224,254,255,255,124,60,72,139,133,152,254,255,255,139,80,12,139,133,184,254,255,255,3,133,224,254,255,255,3,133,188,254,255,255,57,194,127,28,72,139,133,152,254,255,255,139,64,12,3,133,20,255,255,255,43,133,224,254,255,255,137,133,216,254, 255,255,72,139,133,152,254,255,255,139,64,16,59,133,224,254,255,255,124,60,72,139,133,152,254,255,255,139,80,16,139,133,184,254,255,255,3,133,224,254,255,255,3,133,188,254,255,255,57,194,127,28,72,139,133,152,254,255,255,139,64,16,3,133,20,255,255,255, 43,133,224,254,255,255,137,133,212,254,255,255,139,133,184,254,255,255,1,133,20,255,255,255,139,133,188,254,255,255,3,133,184,254,255,255,1,133,224,254,255,255,139,133,188,254,255,255,3,133,180,254,255,255,1,133,220,254,255,255,72,139,133,152,254,255, 255,139,64,8,59,133,224,254,255,255,126,24,139,133,20,255,255,255,72,152,72,3,133,168,254,255,255,198,0,10,255,133,20,255,255,255,139,133,180,254,255,255,59,133,12,255,255,255,126,12,139,133,180,254,255,255,137,133,12,255,255,255,255,133,16,255,255,255, 139,133,220,254,255,255,139,149,208,254,255,255,65,137,208,65,41,192,68,137,192,133,192,15,143,51,252,255,255,131,189,236,254,255,255,0,117,15,72,139,149,120,254,255,255,139,133,20,255,255,255,137,2,72,139,133,152,254,255,255,72,139,112,48,72,139,133, 152,254,255,255,72,139,120,40,232,127,236,254,255,243,15,42,192,243,15,17,133,28,255,255,255,72,139,133,152,254,255,255,72,139,112,48,72,139,133,152,254,255,255,72,139,120,40,232,94,237,254,255,243,15,42,192,243,15,17,133,24,255,255,255,131,189,16,255, 255,255,0,127,10,199,133,16,255,255,255,1,0,0,0,131,189,232,254,255,255,0,117,43,235,30,139,133,20,255,255,255,72,152,72,3,133,168,254,255,255,198,0,32,255,133,20,255,255,255,255,133,12,255,255,255,131,189,12,255,255,255,2,126,217,235,12,139,133,232, 254,255,255,137,133,12,255,255,255,139,133,12,255,255,255,15,175,133,252,254,255,255,131,192,4,137,133,8,255,255,255,139,133,16,255,255,255,15,175,133,248,254,255,255,131,192,4,137,133,4,255,255,255,131,189,148,254,255,255,1,15,133,249,0,0,0,72,139,133, 152,254,255,255,72,139,64,48,72,137,198,72,139,133,152,254,255,255,72,139,120,48,232,120,83,254,255,133,192,116,16,72,141,5,156,138,4,0,72,137,133,88,254,255,255,235,14,72,141,21,76,108,4,0,72,137,149,88,254,255,255,139,189,0,255,255,255,232,92,216,2, 0,137,195,243,15,16,141,24,255,255,255,243,15,16,5,74,206,4,0,243,15,88,193,243,15,90,192,242,15,17,133,96,254,255,255,243,15,16,141,28,255,255,255,243,15,16,5,42,206,4,0,243,15,88,193,243,15,90,192,242,15,17,133,104,254,255,255,72,139,189,152,254,255, 255,232,46,247,255,255,72,139,8,72,139,189,152,254,255,255,72,131,199,56,72,139,133,168,254,255,255,139,149,20,255,255,255,72,139,181,160,254,255,255,76,139,133,88,254,255,255,76,137,68,36,8,137,28,36,73,137,193,65,137,208,242,15,16,141,96,254,255,255, 242,15,16,133,104,254,255,255,72,137,250,72,141,61,41,126,4,0,184,2,0,0,0,232,159,185,2,0,233,249,1,0,0,131,189,148,254,255,255,2,15,133,236,1,0,0,72,139,149,152,254,255,255,72,131,194,56,72,139,133,168,254,255,255,139,141,20,255,255,255,72,139,181,160, 254,255,255,73,137,192,72,141,61,28,126,4,0,184,0,0,0,0,232,90,185,2,0,72,139,133,152,254,255,255,139,64,32,59,133,8,255,255,255,117,18,72,139,133,152,254,255,255,139,64,36,59,133,4,255,255,255,116,59,72,139,149,152,254,255,255,72,131,194,56,72,139,133, 152,254,255,255,72,139,112,48,72,139,133,152,254,255,255,72,139,120,40,139,133,4,255,255,255,139,141,8,255,255,255,65,185,0,0,0,0,65,137,192,232,39,193,0,0,72,139,133,152,254,255,255,139,64,20,133,192,15,132,72,1,0,0,139,133,212,254,255,255,59,133,216, 254,255,255,15,142,193,0,0,0,72,139,133,152,254,255,255,72,139,56,139,181,216,254,255,255,232,52,39,3,0,137,193,72,139,149,152,254,255,255,72,131,194,56,72,139,181,160,254,255,255,72,141,61,128,125,4,0,184,0,0,0,0,232,157,184,2,0,72,139,133,152,254,255, 255,72,139,56,139,181,212,254,255,255,232,250,38,3,0,137,133,112,254,255,255,72,141,5,103,18,7,0,139,0,133,192,116,12,199,133,116,254,255,255,0,0,0,0,235,10,199,133,116,254,255,255,255,255,255,255,139,141,112,254,255,255,3,141,116,254,255,255,72,139, 149,152,254,255,255,72,131,194,56,72,139,181,160,254,255,255,72,141,61,46,125,4,0,184,0,0,0,0,232,48,184,2,0,72,139,181,160,254,255,255,72,141,61,47,125,4,0,184,0,0,0,0,232,24,184,2,0,235,117,72,139,181,160,254,255,255,72,141,61,39,125,4,0,184,0,0,0, 0,232,254,183,2,0,72,139,133,152,254,255,255,72,139,56,139,181,216,254,255,255,232,91,38,3,0,137,193,72,139,149,152,254,255,255,72,131,194,56,72,139,181,160,254,255,255,72,141,61,3,125,4,0,184,0,0,0,0,232,196,183,2,0,72,139,149,152,254,255,255,72,131, 194,56,72,139,181,160,254,255,255,72,141,61,247,124,4,0,184,0,0,0,0,232,161,183,2,0,72,139,149,152,254,255,255,139,133,8,255,255,255,137,66,32,72,139,149,152,254,255,255,139,133,4,255,255,255,137,66,36,72,139,149,136,254,255,255,139,133,8,255,255,255, 137,2,72,139,149,128,254,255,255,139,133,4,255,255,255,137,2,72,141,133,32,255,255,255,72,59,133,168,254,255,255,116,29,72,139,133,152,254,255,255,139,64,8,1,192,255,192,72,99,240,72,139,189,168,254,255,255,232,191,62,2,0,72,139,5,151,167,6,0,72,139, 85,232,72,51,16,116,5,232,111,59,4,0,72,129,196,184,1,0,0,91,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,72,139,117,240,72,139,125,248,232,81,59,4,0,201,195,85,72,137,229,72, 131,196,128,72,137,125,152,199,69,252,0,0,0,0,199,69,248,0,0,0,0,72,139,69,152,72,139,64,40,72,137,69,216,72,139,69,152,139,64,8,72,99,240,72,139,69,152,72,139,56,232,54,62,2,0,72,139,85,152,72,131,194,8,72,139,117,152,72,139,69,216,72,139,120,16,232, 100,180,1,0,72,139,69,216,15,183,64,44,102,133,192,15,142,98,2,0,0,72,139,69,216,15,182,64,46,131,224,3,60,3,15,133,79,2,0,0,72,139,69,152,139,80,8,72,139,69,216,15,183,64,44,152,57,194,15,142,55,2,0,0,72,139,69,216,72,139,120,16,232,23,193,1,0,72,137, 69,208,72,139,69,216,72,139,120,16,232,246,192,1,0,137,69,240,72,139,69,152,139,64,8,137,69,236,131,125,240,1,15,133,152,1,0,0,72,139,69,208,139,0,131,248,1,15,133,137,1,0,0,72,139,69,216,15,183,64,44,15,191,208,139,69,236,41,208,137,69,232,72,199,69, 200,0,0,0,0,72,139,69,152,72,139,16,139,69,236,72,152,72,141,4,2,72,137,69,184,72,139,69,152,72,139,0,72,137,69,200,235,15,72,139,69,200,15,182,0,60,46,116,14,72,255,69,200,72,139,69,200,72,59,69,184,114,231,72,139,69,200,72,59,69,184,15,131,202,0,0, 0,72,139,69,200,72,255,192,72,137,69,192,235,26,72,139,69,192,15,182,0,60,47,126,25,72,139,69,192,15,182,0,60,57,127,14,72,255,69,192,72,139,69,192,72,59,69,184,114,220,72,139,85,192,72,139,69,200,72,137,209,72,41,193,72,137,200,72,141,80,255,139,69, 232,72,152,72,57,194,124,122,139,69,232,72,152,72,137,194,72,139,69,192,72,41,208,72,137,69,176,139,69,232,72,152,72,3,69,176,72,137,69,168,235,21,72,139,69,168,15,182,16,72,139,69,176,136,16,72,255,69,176,72,255,69,168,72,139,69,168,72,59,69,184,114, 225,72,139,69,216,15,183,64,44,72,15,191,208,139,69,236,72,99,240,72,139,69,152,72,139,56,232,137,59,2,0,72,137,194,72,139,69,152,72,137,16,72,139,69,216,15,183,64,44,152,137,69,236,233,188,0,0,0,72,139,69,152,72,139,0,72,137,69,136,72,139,69,208,243, 15,16,72,8,15,87,192,15,46,193,119,2,235,6,198,69,151,45,235,4,198,69,151,43,15,182,69,151,72,139,85,136,136,2,139,69,236,72,99,240,72,139,69,152,72,139,56,186,1,0,0,0,232,37,59,2,0,72,137,194,72,139,69,152,72,137,16,199,69,236,1,0,0,0,235,96,72,139, 69,216,15,183,64,44,152,59,69,236,125,82,72,139,69,152,72,139,0,72,141,80,255,72,139,69,216,15,183,64,44,72,15,191,192,72,141,4,2,198,0,62,72,139,69,216,15,183,64,44,72,15,191,208,139,69,236,72,99,240,72,139,69,152,72,139,56,232,200,58,2,0,72,137,194, 72,139,69,152,72,137,16,72,139,69,216,15,183,64,44,152,137,69,236,72,139,85,152,139,69,236,137,66,8,72,141,69,244,72,141,77,248,72,141,85,252,72,139,125,152,73,137,192,190,2,0,0,0,232,125,242,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232, 72,137,117,224,72,139,69,232,72,139,128,192,0,0,0,72,133,192,117,9,72,139,125,232,232,176,105,254,255,72,139,69,232,72,139,128,192,0,0,0,72,139,64,24,72,137,69,248,235,12,72,139,69,248,72,139,64,112,72,137,69,248,72,131,125,248,0,116,14,72,139,69,248, 72,139,64,40,72,59,69,224,117,223,72,131,125,248,0,117,17,72,141,61,243,120,4,0,184,0,0,0,0,232,150,26,3,0,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,199,69,252,0,0,0,0,199,69,248,0,0,0,0,72,141,69,244,72,141,77,248,72,141,85,252, 72,139,125,232,73,137,192,190,0,0,0,0,232,199,241,255,255,139,69,252,201,195,85,72,137,229,72,131,236,32,72,137,125,232,199,69,252,0,0,0,0,199,69,248,0,0,0,0,72,141,69,244,72,141,77,248,72,141,85,252,72,139,125,232,73,137,192,190,0,0,0,0,232,139,241, 255,255,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,199,69,252,0,0,0,0,199,69,248,0,0,0,0,72,141,69,244,72,141,77,248,72,141,85,252,72,139,125,232,73,137,192,190,1,0,0,0,232,79,241,255,255,201,195,85,72,137,229,83,72,131,236,24,72,137, 125,232,72,139,93,232,72,131,195,56,72,139,69,232,72,139,120,48,232,33,207,254,255,72,137,198,72,137,218,72,141,61,31,99,4,0,184,0,0,0,0,232,155,178,2,0,72,131,196,24,91,201,195,85,72,137,229,83,72,131,236,24,72,137,125,232,137,117,228,137,85,224,72, 139,93,232,72,131,195,56,72,139,69,232,72,139,120,48,232,219,206,254,255,72,137,198,139,69,224,139,77,228,65,137,192,72,137,218,72,141,61,199,119,4,0,184,0,0,0,0,232,76,178,2,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117, 228,72,139,69,232,72,139,64,48,72,137,69,248,72,139,125,248,232,144,206,254,255,72,137,69,240,131,125,228,0,116,13,72,141,5,66,130,4,0,72,137,69,216,235,11,72,141,5,245,99,4,0,72,137,69,216,72,139,85,232,72,131,194,56,72,139,117,240,72,139,77,216,72, 141,61,112,119,4,0,184,0,0,0,0,232,222,177,2,0,72,141,21,223,0,7,0,72,139,69,240,72,137,2,201,195,85,72,137,229,72,131,236,48,72,137,125,216,137,117,212,199,69,252,0,0,0,0,199,69,248,0,0,0,0,72,139,69,216,72,139,64,48,72,137,69,232,72,139,125,232,232, 11,206,254,255,72,137,69,224,131,125,212,0,116,127,72,139,85,216,72,131,194,56,72,139,117,224,72,141,61,42,119,4,0,184,0,0,0,0,232,117,177,2,0,72,139,69,232,72,139,144,192,0,0,0,72,139,69,216,72,137,66,40,72,139,69,232,72,139,144,192,0,0,0,15,182,130, 136,0,0,0,131,224,239,136,130,136,0,0,0,72,139,69,216,199,64,12,0,0,0,0,72,139,69,216,139,80,12,72,139,69,216,137,80,24,72,139,69,216,139,80,8,72,139,69,216,137,80,16,72,139,69,216,199,64,20,1,0,0,0,235,72,72,139,117,224,72,141,61,209,118,4,0,184,0,0, 0,0,232,254,176,2,0,72,139,69,232,72,139,128,192,0,0,0,72,139,64,40,72,59,69,216,117,19,72,139,69,232,72,139,128,192,0,0,0,72,199,64,40,0,0,0,0,72,139,69,216,199,64,20,0,0,0,0,72,141,69,244,72,141,77,248,72,141,85,252,72,139,125,216,73,137,192,190,2, 0,0,0,232,39,239,255,255,201,195,85,72,137,229,72,131,236,80,72,137,125,200,137,117,196,72,137,85,184,199,69,252,0,0,0,0,199,69,248,0,0,0,0,131,125,196,0,15,132,45,3,0,0,139,69,196,137,69,228,131,125,228,13,117,7,199,69,228,10,0,0,0,131,125,228,8,117, 51,72,139,69,200,139,64,12,133,192,116,102,72,139,69,200,139,80,12,72,139,69,200,139,64,16,57,194,117,84,72,139,117,200,72,131,198,12,72,139,69,200,72,139,56,232,174,32,3,0,235,62,131,125,228,127,117,56,72,139,69,200,139,80,16,72,139,69,200,139,64,8, 57,194,125,38,72,139,69,200,139,80,12,72,139,69,200,139,64,16,57,194,117,20,72,139,117,200,72,131,198,16,72,139,69,200,72,139,56,232,202,31,3,0,72,139,69,200,139,80,16,72,139,69,200,139,64,12,137,209,41,193,137,200,137,69,232,72,139,69,200,139,64,16, 137,69,240,235,44,72,139,69,200,72,139,8,139,85,232,139,69,240,41,208,72,152,72,1,193,72,139,69,200,72,139,16,139,69,240,72,152,72,141,4,2,15,182,0,136,1,255,69,240,72,139,69,200,139,64,8,59,69,240,127,200,72,139,69,200,139,64,8,43,69,232,137,69,236, 139,69,236,72,99,208,72,139,69,200,139,64,8,72,99,240,72,139,69,200,72,139,56,232,250,53,2,0,72,137,194,72,139,69,200,72,137,16,72,139,85,200,139,69,236,137,66,8,131,125,228,10,116,20,131,125,228,31,15,142,184,0,0,0,131,125,228,126,15,143,174,0,0,0,72, 139,69,200,139,64,8,255,192,137,69,236,139,69,236,72,99,208,72,139,69,200,139,64,8,72,99,240,72,139,69,200,72,139,56,232,164,53,2,0,72,137,194,72,139,69,200,72,137,16,72,139,69,200,139,64,8,137,69,240,235,44,72,139,69,200,72,139,16,139,69,240,72,152, 72,141,12,2,72,139,69,200,72,139,0,72,141,80,255,139,69,240,72,152,72,141,4,2,15,182,0,136,1,255,77,240,72,139,69,200,139,64,12,59,69,240,124,200,72,139,69,200,72,139,16,72,139,69,200,139,64,12,72,152,72,1,194,139,69,228,136,2,72,139,85,200,139,69,236, 137,66,8,72,139,69,200,139,64,12,141,80,1,72,139,69,200,137,80,12,233,17,1,0,0,131,125,228,127,15,142,7,1,0,0,139,125,228,232,201,26,3,0,137,69,224,72,139,69,200,139,64,8,3,69,224,137,69,236,139,69,236,72,99,208,72,139,69,200,139,64,8,72,99,240,72,139, 69,200,72,139,56,232,224,52,2,0,72,137,194,72,139,69,200,72,137,16,72,139,69,200,139,64,8,137,69,240,235,44,72,139,69,200,72,139,16,139,69,240,72,152,72,141,12,2,72,139,69,200,72,139,0,72,141,80,255,139,69,240,72,152,72,141,4,2,15,182,0,136,1,255,77, 240,72,139,69,200,139,64,12,59,69,240,124,200,72,139,69,200,139,85,236,137,80,8,72,199,192,255,255,255,255,72,131,248,255,116,50,72,199,193,255,255,255,255,139,69,224,76,99,192,72,139,69,184,72,139,48,72,139,69,200,72,139,16,72,139,69,200,139,64,12,72, 152,72,141,60,2,76,137,194,232,42,50,4,0,235,41,139,69,224,72,99,200,72,139,69,184,72,139,48,72,139,69,200,72,139,16,72,139,69,200,139,64,12,72,152,72,141,60,2,72,137,202,232,130,246,255,255,72,139,69,200,139,64,12,137,194,3,85,224,72,139,69,200,137, 80,12,72,139,69,200,139,80,12,72,139,69,200,137,80,16,72,139,69,200,72,139,64,48,72,139,144,192,0,0,0,15,182,130,136,0,0,0,131,200,16,136,130,136,0,0,0,233,246,1,0,0,72,139,69,184,72,139,56,72,141,53,174,89,4,0,232,183,51,4,0,133,192,117,94,72,139,69, 200,139,80,16,72,139,69,200,139,64,12,57,194,117,57,72,139,69,200,139,80,12,72,139,69,200,139,64,8,57,194,125,39,72,139,117,200,72,131,198,12,72,139,69,200,72,139,56,232,216,28,3,0,72,139,69,200,139,80,12,72,139,69,200,137,80,16,233,148,1,0,0,72,139, 69,200,139,80,16,72,139,69,200,137,80,12,233,129,1,0,0,72,139,69,184,72,139,56,72,141,53,52,89,4,0,232,66,51,4,0,133,192,117,87,72,139,69,200,139,80,16,72,139,69,200,139,64,12,57,194,117,50,72,139,69,200,139,64,12,133,192,126,39,72,139,117,200,72,131, 198,12,72,139,69,200,72,139,56,232,14,29,3,0,72,139,69,200,139,80,12,72,139,69,200,137,80,16,233,38,1,0,0,72,139,69,200,139,80,12,72,139,69,200,137,80,16,233,19,1,0,0,72,139,69,184,72,139,56,72,141,53,77,114,4,0,232,212,50,4,0,133,192,117,110,72,139, 69,200,139,64,12,133,192,116,42,72,139,117,200,72,131,198,12,72,139,69,200,72,139,56,232,178,28,3,0,235,20,72,139,117,200,72,131,198,12,72,139,69,200,72,139,56,232,156,28,3,0,72,139,69,200,139,64,12,133,192,126,27,72,139,69,200,72,139,16,72,139,69,200, 139,64,12,72,152,72,141,4,2,15,182,0,60,10,117,198,72,139,69,200,139,80,12,72,139,69,200,137,80,16,233,142,0,0,0,72,139,69,184,72,139,56,72,141,53,60,88,4,0,232,79,50,4,0,133,192,117,119,235,20,72,139,117,200,72,131,198,16,72,139,69,200,72,139,56,232, 146,27,3,0,72,139,69,200,139,80,16,72,139,69,200,139,64,8,57,194,125,27,72,139,69,200,72,139,16,72,139,69,200,139,64,16,72,152,72,141,4,2,15,182,0,60,10,117,191,72,139,69,200,139,80,16,72,139,69,200,139,64,8,57,194,125,20,72,139,117,200,72,131,198,16, 72,139,69,200,72,139,56,232,63,27,3,0,72,139,69,200,139,80,16,72,139,69,200,137,80,12,72,141,69,244,72,141,77,248,72,141,85,252,72,139,125,200,73,137,192,190,2,0,0,0,232,186,233,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,216,137,117,212,137, 85,208,137,77,204,139,69,212,137,69,252,139,69,208,137,69,248,72,141,69,244,72,141,77,248,72,141,85,252,72,139,125,216,73,137,192,190,0,0,0,0,232,122,233,255,255,131,125,204,1,117,43,139,85,244,72,139,69,216,137,80,16,72,139,69,216,139,80,16,72,139,69, 216,137,80,12,72,139,69,216,139,80,12,72,139,69,216,137,80,24,233,127,2,0,0,131,125,204,3,15,133,227,1,0,0,72,139,69,216,199,64,24,255,255,255,255,199,69,240,0,0,0,0,139,85,244,72,139,69,216,72,139,56,190,32,0,0,0,232,200,232,255,255,137,69,236,139,69, 236,59,69,240,126,8,139,69,236,255,192,137,69,240,139,85,244,72,139,69,216,72,139,56,190,10,0,0,0,232,161,232,255,255,137,69,236,139,69,236,59,69,240,126,8,139,69,236,255,192,137,69,240,139,85,244,72,139,69,216,72,139,56,190,59,0,0,0,232,122,232,255, 255,137,69,236,139,69,236,59,69,240,126,8,139,69,236,255,192,137,69,240,139,85,244,72,139,69,216,72,139,56,190,44,0,0,0,232,83,232,255,255,137,69,236,139,69,236,59,69,240,126,8,139,69,236,255,192,137,69,240,72,139,85,216,139,69,240,137,66,12,72,139,69, 216,139,80,8,139,69,244,137,209,41,193,137,200,137,69,240,72,139,69,216,139,80,8,139,69,244,137,209,41,193,72,139,69,216,72,139,16,139,69,244,72,152,72,141,60,2,137,202,190,32,0,0,0,232,161,231,255,255,137,69,236,131,125,236,0,120,14,139,69,236,59,69, 240,125,6,139,69,236,137,69,240,72,139,69,216,139,80,8,139,69,244,137,209,41,193,72,139,69,216,72,139,16,139,69,244,72,152,72,141,60,2,137,202,190,10,0,0,0,232,96,231,255,255,137,69,236,131,125,236,0,120,14,139,69,236,59,69,240,125,6,139,69,236,137,69, 240,72,139,69,216,139,80,8,139,69,244,137,209,41,193,72,139,69,216,72,139,16,139,69,244,72,152,72,141,60,2,137,202,190,59,0,0,0,232,31,231,255,255,137,69,236,131,125,236,0,120,14,139,69,236,59,69,240,125,6,139,69,236,137,69,240,72,139,69,216,139,80,8, 139,69,244,137,209,41,193,72,139,69,216,72,139,16,139,69,244,72,152,72,141,60,2,137,202,190,44,0,0,0,232,222,230,255,255,137,69,236,131,125,236,0,120,14,139,69,236,59,69,240,125,6,139,69,236,137,69,240,139,69,244,137,194,3,85,240,72,139,69,216,137,80, 16,233,146,0,0,0,131,125,204,4,117,79,139,69,244,141,12,0,72,139,69,216,139,80,12,72,139,69,216,139,64,16,141,4,2,57,193,126,26,72,139,69,216,139,80,12,72,139,69,216,137,80,24,139,85,244,72,139,69,216,137,80,16,235,87,72,139,69,216,139,80,16,72,139,69, 216,137,80,24,139,85,244,72,139,69,216,137,80,12,235,61,131,125,204,2,117,55,72,139,69,216,139,64,24,133,192,120,73,72,139,69,216,139,80,24,139,69,244,57,194,15,79,208,72,139,69,216,137,80,12,72,139,69,216,139,80,24,139,69,244,57,194,15,76,208,72,139, 69,216,137,80,16,72,141,69,244,72,141,77,248,72,141,85,252,72,139,125,216,73,137,192,190,2,0,0,0,232,173,230,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,72,139,69,208,139,64,24,137,69,248,72,139,69,208,72,139, 64,32,72,137,69,232,199,69,252,0,0,0,0,233,139,0,0,0,72,139,69,232,139,0,137,69,244,131,125,244,0,117,13,72,139,85,216,184,0,0,0,0,137,2,235,98,131,125,244,1,117,16,72,139,69,216,72,141,21,255,159,6,0,72,137,16,235,76,131,125,244,3,117,29,72,139,69,232, 72,139,120,16,72,139,117,200,232,10,140,253,255,72,137,194,72,139,69,216,72,137,16,235,41,131,125,244,2,117,35,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,191,0,0,0,0,232,4,1,254,255,72,137,194,72,139,69,216,72,137,16,255,69,252,72,131,69,232,24,72,131,69,216, 8,139,69,252,59,69,248,15,140,105,255,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,137,85,204,72,137,77,192,72,139,69,208,139,64,24,137,69,248,72,139,69,208,72,139,64,32,72,137,69,232,199,69,252,0,0,0,0,233,134,0,0,0,72,139, 69,232,139,0,137,69,244,131,125,244,0,117,49,131,125,204,0,116,24,72,139,125,192,232,60,147,1,0,243,15,17,69,240,72,131,69,192,16,255,77,204,235,8,184,0,0,0,0,137,69,240,72,139,85,216,139,69,240,137,2,235,57,131,125,244,1,117,51,131,125,204,0,116,23, 72,139,125,192,232,83,147,1,0,72,137,69,224,72,131,69,192,16,255,77,204,235,11,72,141,5,16,160,6,0,72,137,69,224,72,139,85,216,72,139,69,224,72,137,2,255,69,252,72,131,69,232,24,72,131,69,216,8,139,69,252,59,69,248,15,140,110,255,255,255,131,125,204, 0,116,17,72,141,61,123,108,4,0,184,0,0,0,0,232,159,5,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,224,72,139,64,32,72,137,69,240,199,69,252,0,0,0,0,235,74,72,139,69,240,139,0,131,248,3,117,23,139,69,252,72,152,72,193, 224,3,72,3,69,232,72,139,56,232,235,140,253,255,235,32,72,139,69,240,139,0,131,248,2,117,21,139,69,252,72,152,72,193,224,3,72,3,69,232,72,139,56,232,103,19,254,255,255,69,252,72,131,69,240,24,72,139,69,224,139,64,24,59,69,252,127,170,201,195,85,72,137, 229,72,131,236,80,72,137,125,200,72,137,117,192,72,141,125,208,232,34,227,0,0,72,139,125,192,232,34,34,0,0,72,137,69,240,72,131,125,240,0,117,34,72,139,69,192,72,139,48,72,141,61,223,107,4,0,184,0,0,0,0,232,157,8,3,0,72,199,69,184,0,0,0,0,235,103,72, 139,69,240,139,64,24,255,200,72,152,72,193,224,3,72,141,120,32,232,48,43,2,0,72,137,69,248,72,141,5,200,245,6,0,72,139,16,72,139,69,248,72,137,16,72,139,85,248,72,139,69,192,72,137,66,16,72,139,85,248,72,139,117,200,72,141,125,208,232,186,225,0,0,72, 139,125,248,72,131,199,24,72,141,85,208,72,139,117,240,232,34,253,255,255,72,139,69,248,72,137,69,184,72,139,69,184,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,72,137,77,192,72,139,69,200,137,198,72,139,85,192,191, 0,0,0,0,232,29,147,1,0,72,137,199,232,93,11,254,255,72,137,69,240,199,69,248,0,0,0,0,72,139,125,240,232,64,33,0,0,72,133,192,117,46,72,139,69,200,137,198,72,139,85,192,191,0,0,0,0,232,232,146,1,0,72,139,16,72,139,125,216,72,141,53,225,101,4,0,184,0,0, 0,0,232,21,10,3,0,235,88,232,178,152,1,0,72,137,69,232,72,139,69,200,137,198,72,139,85,192,72,139,125,232,232,77,172,1,0,72,139,125,232,232,98,175,1,0,137,69,252,72,139,125,232,232,102,175,1,0,72,137,69,224,72,141,77,248,72,139,85,224,139,117,252,72, 139,125,216,65,184,0,0,0,0,232,210,189,255,255,72,139,125,232,232,154,152,1,0,201,195,85,72,137,229,83,72,131,236,56,72,137,125,216,72,137,117,208,72,137,85,200,72,139,69,216,72,139,120,16,232,145,32,0,0,72,137,69,232,72,139,93,216,72,131,195,24,72,141, 61,123,106,4,0,232,173,15,2,0,72,137,198,72,139,125,232,185,0,0,0,0,72,137,218,232,231,18,0,0,72,139,69,208,243,15,17,0,72,139,93,216,72,131,195,24,72,141,61,68,111,4,0,232,125,15,2,0,72,137,198,72,139,125,232,185,0,0,0,0,72,137,218,232,183,18,0,0,72, 139,69,200,243,15,17,0,72,131,196,56,91,201,195,85,72,137,229,65,84,83,72,129,236,160,0,0,0,72,137,125,152,72,137,117,144,72,137,85,136,72,137,77,128,76,137,133,120,255,255,255,76,137,141,112,255,255,255,72,139,69,152,72,137,69,192,72,139,69,192,72,139, 120,16,232,229,31,0,0,72,137,69,184,72,139,125,184,232,246,31,0,0,72,137,69,176,199,69,236,255,255,255,127,199,69,232,1,0,0,128,199,69,228,255,255,255,127,199,69,224,1,0,0,128,72,141,85,216,72,141,117,220,72,139,125,192,232,244,254,255,255,72,131,125, 176,0,117,59,243,15,16,69,220,72,139,125,144,232,193,208,254,255,243,15,44,192,137,69,232,139,69,232,137,69,236,243,15,16,69,216,72,139,125,144,232,62,210,254,255,243,15,44,192,137,69,224,139,69,224,137,69,228,233,29,1,0,0,199,69,228,255,255,255,127, 139,69,228,137,69,236,199,69,224,1,0,0,128,139,69,224,137,69,232,72,139,69,176,72,139,64,48,72,137,69,168,233,190,0,0,0,72,139,125,168,232,50,11,2,0,72,137,69,160,72,131,125,160,0,15,132,154,0,0,0,72,139,69,160,76,139,16,243,15,16,69,216,139,117,220, 72,139,125,192,72,131,199,24,72,141,85,208,72,141,77,212,76,139,93,184,72,139,93,144,76,139,101,168,72,141,69,200,72,137,68,36,8,72,141,69,204,72,137,4,36,73,137,209,73,137,200,15,40,200,137,181,108,255,255,255,243,15,16,133,108,255,255,255,76,137,217, 72,137,250,72,137,222,76,137,231,65,255,210,139,69,212,59,69,236,125,6,139,69,212,137,69,236,139,69,208,59,69,228,125,6,139,69,208,137,69,228,139,69,204,59,69,232,126,6,139,69,204,137,69,232,139,69,200,59,69,224,126,6,139,69,200,137,69,224,72,139,69, 168,72,139,64,8,72,137,69,168,72,131,125,168,0,15,133,55,255,255,255,139,69,232,59,69,236,124,8,139,69,224,59,69,228,125,25,199,69,224,0,0,0,0,139,69,224,137,69,232,139,69,232,137,69,228,139,69,228,137,69,236,72,139,85,136,139,69,236,137,2,72,139,85, 128,139,69,228,137,2,72,139,149,120,255,255,255,139,69,232,137,2,72,139,149,112,255,255,255,139,69,224,137,2,72,129,196,160,0,0,0,91,65,92,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,136,0,0,0,72,137,125,184,72,137,117,176,137,85,172, 131,125,172,0,15,132,209,0,0,0,76,139,85,184,72,141,69,192,72,141,85,196,72,141,77,200,72,141,117,204,72,139,125,176,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,151,253,255,255,139,69,204,255,200,137,69,204,139,69,196,255,192,137,69,196, 139,69,200,255,200,137,69,200,139,69,192,255,192,137,69,192,139,93,200,68,139,101,204,68,139,109,200,68,139,117,196,68,139,125,192,139,69,196,137,69,152,139,69,192,137,69,156,139,69,204,137,69,160,139,69,200,137,69,164,139,69,204,137,69,168,72,139,125, 176,232,144,189,254,255,72,137,198,72,139,69,184,72,137,68,36,48,137,92,36,40,68,137,100,36,32,68,137,108,36,24,68,137,116,36,16,68,137,124,36,8,139,69,152,137,4,36,68,139,77,156,68,139,69,160,139,77,164,139,85,168,72,141,61,42,103,4,0,184,0,0,0,0,232, 216,160,2,0,235,33,72,139,125,176,232,60,189,254,255,72,137,198,72,139,85,184,72,141,61,106,103,4,0,184,0,0,0,0,232,181,160,2,0,72,129,196,136,0,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,112,72,137,125,168,72,137,117,160,137,85, 156,72,139,69,168,72,137,69,248,72,139,69,248,72,139,64,16,72,137,69,232,72,141,125,176,232,172,221,0,0,72,139,85,248,72,139,117,160,72,141,125,176,232,179,220,0,0,199,69,208,3,0,0,0,72,141,69,176,72,137,69,216,72,139,125,232,232,140,28,0,0,72,137,69, 240,72,131,125,240,0,116,62,131,125,156,0,116,18,72,141,61,247,102,4,0,232,163,11,2,0,72,137,69,144,235,16,72,141,61,236,102,4,0,232,145,11,2,0,72,137,69,144,72,141,77,208,72,139,125,240,186,1,0,0,0,72,139,117,144,232,180,28,0,0,72,141,125,176,232,19, 220,0,0,139,85,156,72,139,117,160,72,139,125,248,232,24,254,255,255,201,195,85,72,137,229,83,72,129,236,184,0,0,0,72,137,189,104,255,255,255,72,137,181,96,255,255,255,137,149,92,255,255,255,137,141,88,255,255,255,72,139,133,104,255,255,255,72,137,69, 208,72,139,69,208,72,139,64,16,72,137,69,200,72,139,125,200,232,226,27,0,0,72,137,69,192,72,131,125,192,0,117,29,72,139,69,200,72,139,48,72,141,61,159,101,4,0,184,0,0,0,0,232,93,2,3,0,233,114,2,0,0,72,141,61,176,101,4,0,232,226,10,2,0,72,137,198,72,141, 69,184,72,141,77,228,72,141,85,236,72,139,125,192,73,137,192,232,16,13,0,0,137,69,220,131,125,220,0,116,14,139,69,228,133,192,116,7,199,69,220,0,0,0,0,72,141,61,107,106,4,0,232,164,10,2,0,72,137,198,72,141,69,184,72,141,77,224,72,141,85,232,72,139,125, 192,73,137,192,232,210,12,0,0,137,69,216,131,125,216,0,116,14,139,69,224,133,192,116,7,199,69,216,0,0,0,0,131,125,220,0,15,132,149,0,0,0,72,139,69,208,72,131,192,24,72,137,194,139,69,236,72,152,72,141,4,2,72,137,195,72,139,69,208,72,131,192,24,72,137, 194,139,69,236,72,152,72,141,4,2,243,15,16,0,243,15,17,133,64,255,255,255,243,15,42,141,92,255,255,255,243,15,17,141,68,255,255,255,72,139,189,96,255,255,255,243,15,16,5,60,178,4,0,232,220,200,254,255,243,15,17,133,72,255,255,255,72,139,189,96,255,255, 255,15,87,192,232,197,200,254,255,243,15,16,141,72,255,255,255,243,15,92,200,15,40,193,243,15,89,133,68,255,255,255,243,15,88,133,64,255,255,255,243,15,17,3,131,125,216,0,15,132,149,0,0,0,72,139,69,208,72,131,192,24,72,137,194,139,69,232,72,152,72,141, 4,2,72,137,195,72,139,69,208,72,131,192,24,72,137,194,139,69,232,72,152,72,141,4,2,243,15,16,0,243,15,17,133,76,255,255,255,243,15,42,141,88,255,255,255,243,15,17,141,80,255,255,255,72,139,189,96,255,255,255,243,15,16,5,157,177,4,0,232,211,201,254,255, 243,15,17,133,84,255,255,255,72,139,189,96,255,255,255,15,87,192,232,188,201,254,255,243,15,16,141,84,255,255,255,243,15,92,200,15,40,193,243,15,89,133,80,255,255,255,243,15,88,133,76,255,255,255,243,15,17,3,72,141,125,160,232,238,218,0,0,72,139,85,208, 72,139,181,96,255,255,255,72,141,125,160,232,242,217,0,0,199,133,112,255,255,255,3,0,0,0,72,141,69,160,72,137,133,120,255,255,255,72,141,133,112,255,255,255,72,131,192,16,199,0,1,0,0,0,72,141,133,112,255,255,255,72,131,192,16,243,15,42,133,92,255,255, 255,243,15,17,64,8,72,141,133,112,255,255,255,72,131,192,32,199,0,1,0,0,0,72,141,133,112,255,255,255,72,131,192,32,243,15,42,133,88,255,255,255,243,15,17,64,8,72,141,61,8,100,4,0,232,164,8,2,0,72,137,198,72,141,141,112,255,255,255,72,139,125,192,186, 2,0,0,0,232,201,25,0,0,72,139,181,96,255,255,255,72,139,125,208,232,40,2,0,0,72,129,196,184,0,0,0,91,201,195,85,72,137,229,72,137,125,248,72,137,117,240,137,85,236,201,195,85,72,137,229,72,137,125,248,72,137,117,240,201,195,85,72,137,229,65,86,65,85, 65,84,83,72,131,196,128,72,137,125,152,72,137,117,144,137,85,140,72,139,69,152,72,137,69,200,72,139,69,200,72,139,120,16,232,240,24,0,0,72,137,69,192,72,139,125,192,232,1,25,0,0,72,137,69,184,72,141,85,216,72,141,117,220,72,139,125,200,232,27,248,255, 255,72,131,125,184,0,15,133,166,0,0,0,131,125,140,0,116,122,243,15,16,69,220,72,139,125,144,232,222,201,254,255,243,15,44,192,137,69,212,243,15,16,69,216,72,139,125,144,232,97,203,254,255,243,15,44,192,137,69,208,139,93,208,255,195,68,139,101,212,65, 255,196,68,139,109,208,65,255,205,68,139,117,212,65,255,206,72,139,125,144,232,157,184,254,255,72,137,198,72,139,69,200,72,137,4,36,65,137,217,69,137,224,68,137,233,68,137,242,72,141,61,240,98,4,0,184,0,0,0,0,232,6,156,2,0,233,224,0,0,0,72,139,125,144, 232,103,184,254,255,72,137,198,72,139,85,200,72,141,61,0,99,4,0,184,0,0,0,0,232,224,155,2,0,233,186,0,0,0,72,139,69,184,72,139,64,48,72,137,69,176,235,103,72,139,125,176,232,7,4,2,0,72,137,69,168,72,131,125,168,0,116,71,72,139,69,168,76,139,80,32,243, 15,16,69,216,139,85,220,72,139,117,200,72,131,198,24,139,69,140,72,139,77,192,72,139,125,144,76,139,77,176,65,137,192,15,40,200,137,149,124,255,255,255,243,15,16,133,124,255,255,255,72,137,242,72,137,254,76,137,207,65,255,210,72,139,69,176,72,139,64, 8,72,137,69,176,72,131,125,176,0,117,146,72,139,117,200,72,139,125,144,232,85,52,254,255,133,192,116,36,72,139,117,144,72,139,125,200,186,0,0,0,0,232,108,249,255,255,72,139,117,144,72,139,125,200,186,1,0,0,0,232,90,249,255,255,72,139,125,200,232,5,163, 2,0,72,131,236,128,91,65,92,65,93,65,94,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,240,72,139,125,248,186,0,0,0,0,232,21,254,255,255,72,139,117,240,72,139,125,248,186,1,0,0,0,232,3,254,255,255,201,195,85,72,137,229,72, 131,236,16,72,137,125,248,72,137,117,240,72,139,125,240,232,59,7,254,255,133,192,116,20,72,139,117,240,72,139,125,248,72,141,21,158,255,255,255,232,190,161,2,0,201,195,85,72,137,229,83,72,129,236,200,0,0,0,72,137,125,152,72,137,117,144,72,137,85,136, 72,137,77,128,76,137,133,120,255,255,255,243,15,17,133,116,255,255,255,243,15,17,141,112,255,255,255,68,137,141,108,255,255,255,199,69,236,0,0,0,0,72,139,125,144,232,193,22,0,0,72,137,69,216,72,141,61,149,96,4,0,232,199,5,2,0,72,137,198,72,139,85,152, 72,139,125,144,185,0,0,0,0,232,0,9,0,0,243,15,17,69,232,72,141,61,104,101,4,0,232,161,5,2,0,72,137,198,72,139,85,152,72,139,125,144,185,0,0,0,0,232,218,8,0,0,243,15,17,69,228,199,69,160,1,0,0,0,243,15,16,69,232,243,15,88,133,116,255,255,255,243,15,17, 69,168,72,141,69,160,72,131,192,16,199,0,1,0,0,0,72,141,69,160,72,131,192,16,243,15,16,69,228,243,15,88,133,112,255,255,255,243,15,17,64,8,131,125,48,0,116,48,72,141,61,163,62,4,0,232,52,5,2,0,72,137,193,72,141,69,160,72,139,85,136,72,139,181,120,255, 255,255,72,139,125,144,73,137,193,65,184,2,0,0,0,232,143,22,0,0,72,139,69,216,72,139,64,48,72,137,69,208,233,185,0,0,0,72,139,125,208,232,195,1,2,0,72,137,69,200,72,131,125,200,0,15,132,149,0,0,0,72,139,69,200,76,139,80,40,243,15,16,69,228,15,40,200, 243,15,88,141,112,255,255,255,243,15,16,69,232,243,15,88,133,116,255,255,255,72,139,85,128,72,139,77,136,72,139,117,144,72,139,125,152,76,139,157,120,255,255,255,72,139,93,208,139,69,48,137,68,36,40,139,69,40,137,68,36,32,139,69,32,137,68,36,24,139,69, 24,137,68,36,16,139,69,16,137,68,36,8,139,133,108,255,255,255,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,76,137,222,72,137,223,65,255,210,137,69,236,131,125,236,0,116,11,139,69,236,137,133,104,255,255,255,235,33,72,139,69,208,72,139,64,8,72, 137,69,208,72,131,125,208,0,15,133,60,255,255,255,199,133,104,255,255,255,0,0,0,0,139,133,104,255,255,255,72,129,196,200,0,0,0,91,201,195,85,72,137,229,72,131,236,96,72,137,125,232,72,137,117,224,137,85,220,137,77,216,68,137,69,212,68,137,77,208,72,139, 69,232,72,137,69,248,72,139,69,248,72,139,120,16,232,186,20,0,0,72,137,69,240,72,139,125,248,72,131,199,24,139,85,220,72,139,77,224,72,139,117,248,76,139,85,240,139,69,24,137,68,36,32,139,69,16,137,68,36,24,139,69,208,137,68,36,16,139,69,212,137,68,36, 8,139,69,216,137,4,36,65,137,209,15,87,201,15,87,192,73,137,200,185,0,0,0,0,72,137,242,76,137,214,232,116,253,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,137,117,192,72,139,69,200,72,137,69,240,232,236,139,1,0,72,137,69,232,72,139,117, 240,72,131,198,24,72,139,69,240,72,139,120,16,72,139,85,232,185,0,0,0,0,232,237,186,255,255,72,141,61,13,95,4,0,232,72,3,2,0,72,137,193,72,139,125,192,72,141,21,180,144,6,0,72,141,53,162,91,4,0,184,0,0,0,0,232,0,153,1,0,72,139,117,232,72,139,125,192, 232,65,156,1,0,72,139,125,192,232,13,159,1,0,72,139,125,232,232,187,139,1,0,201,195,85,72,137,229,72,129,236,144,0,0,0,72,137,189,120,255,255,255,72,137,181,112,255,255,255,72,139,5,218,135,6,0,72,139,16,72,137,85,248,49,210,72,139,133,120,255,255,255, 72,137,69,144,72,139,189,112,255,255,255,232,53,52,254,255,72,139,181,120,255,255,255,72,139,189,112,255,255,255,232,168,48,254,255,72,139,189,112,255,255,255,190,0,0,0,0,232,102,191,255,255,72,137,69,128,72,141,85,156,72,141,117,136,72,139,125,128,232, 233,148,1,0,72,139,125,128,232,55,139,1,0,139,69,156,255,192,72,99,208,139,69,156,72,99,240,72,139,125,136,232,128,29,2,0,72,137,69,136,139,69,156,72,152,72,137,194,72,139,69,136,72,141,4,2,198,0,0,72,141,125,160,72,141,13,23,94,4,0,186,80,0,0,0,190, 0,0,0,0,184,0,0,0,0,232,11,27,4,0,72,139,189,112,255,255,255,72,141,85,160,72,139,117,144,232,187,111,3,0,72,139,125,136,232,45,154,2,0,72,141,61,246,93,4,0,232,33,154,2,0,139,69,156,255,192,72,99,240,72,139,125,136,232,18,30,2,0,72,139,5,234,134,6,0, 72,139,85,248,72,51,16,116,5,232,194,26,4,0,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,69,200,72,139,64,16,72,137,69,224,72,139,125,224,232,147,18,0,0,72,137,69,216,72,131,125,216,0,117,26,72,139,69,224,72,139,48,72,141,61,80,92,4,0,184, 0,0,0,0,232,14,249,2,0,235,54,72,139,125,200,72,131,199,24,72,139,117,216,232,156,239,255,255,72,139,125,200,232,226,113,3,0,72,139,69,216,139,64,24,255,200,72,152,72,193,224,3,72,141,112,32,72,139,125,200,232,127,29,2,0,201,195,85,72,137,229,83,72,131, 236,8,72,141,29,114,255,255,255,72,141,61,19,93,4,0,232,78,1,2,0,72,137,199,65,185,0,0,0,0,65,184,2,0,0,0,185,0,0,0,0,72,137,218,190,0,0,0,0,184,0,0,0,0,232,136,239,1,0,72,137,194,72,141,5,224,229,6,0,72,137,16,72,141,5,214,229,6,0,72,139,56,72,141,53, 244,139,6,0,232,91,253,1,0,72,141,5,192,229,6,0,72,139,56,72,141,53,97,253,255,255,232,27,255,1,0,72,141,5,170,229,6,0,72,139,56,72,141,53,214,253,255,255,232,49,255,1,0,72,131,196,8,91,201,195,85,72,137,229,72,137,125,248,72,137,117,240,137,85,236,131, 125,236,0,116,21,72,139,69,248,72,139,80,8,72,139,69,240,72,139,64,8,72,57,194,117,57,72,139,69,248,139,16,72,139,69,240,139,0,57,194,117,41,72,139,69,248,139,0,131,248,3,117,21,72,139,69,248,72,139,80,16,72,139,69,240,72,139,64,16,72,57,194,117,9,199, 69,232,1,0,0,0,235,7,199,69,232,0,0,0,0,139,69,232,201,195,85,72,137,229,72,131,236,80,72,137,125,200,137,117,196,72,137,85,184,72,139,61,243,181,6,0,232,82,55,2,0,72,137,69,232,72,139,69,232,199,64,24,0,0,0,0,191,0,0,0,0,232,74,26,2,0,72,137,194,72, 139,69,232,72,137,80,32,233,4,2,0,0,72,141,5,238,141,6,0,72,137,69,216,131,125,196,1,15,142,230,1,0,0,72,139,69,184,139,0,131,248,2,15,133,215,1,0,0,72,139,69,184,72,131,192,16,139,0,131,248,2,15,133,196,1,0,0,72,139,69,184,72,139,64,8,72,137,69,208, 72,139,69,184,72,131,192,16,72,139,64,8,72,137,69,224,72,141,5,91,140,6,0,72,57,69,208,117,12,199,69,252,0,0,0,0,233,186,0,0,0,72,141,5,98,140,6,0,72,57,69,208,117,12,199,69,252,1,0,0,0,233,161,0,0,0,72,141,5,137,140,6,0,72,57,69,208,117,12,199,69,252, 2,0,0,0,233,136,0,0,0,72,141,61,96,91,4,0,232,113,255,1,0,72,59,69,208,117,85,131,125,196,2,126,15,72,139,69,184,72,131,192,32,139,0,131,248,2,116,26,72,139,125,232,72,141,53,61,91,4,0,184,0,0,0,0,232,19,249,2,0,233,28,1,0,0,72,139,69,184,72,131,192, 32,72,139,120,8,232,0,250,253,255,72,137,69,216,199,69,252,3,0,0,0,255,77,196,72,131,69,184,16,235,33,72,139,69,208,72,139,16,72,139,125,232,72,141,53,27,91,4,0,184,0,0,0,0,232,204,248,2,0,233,213,0,0,0,72,139,69,232,139,64,24,137,69,248,139,69,248,255, 192,137,69,244,139,69,244,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,193,139,69,248,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,198,72,139,69,232,72,139,120,32,72,137,202,232,184,25,2,0,72,137,194,72,139,69,232,72,137,80, 32,72,139,85,232,139,69,244,137,66,24,72,139,69,232,72,139,72,32,139,69,248,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,20,1,139,69,252,137,2,72,139,69,232,72,139,72,32,139,69,248,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72, 141,20,1,72,139,69,224,72,137,66,8,72,139,69,232,72,139,72,32,139,69,248,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,20,1,72,139,69,216,72,137,66,16,131,109,196,2,72,131,69,184,32,131,125,196,0,15,143,242,253,255,255,72,139,69,200,72,139, 0,15,182,0,132,192,116,31,72,139,85,232,72,139,69,200,72,137,66,16,72,139,69,232,72,139,112,16,72,139,125,232,232,175,56,2,0,235,12,72,139,85,232,72,139,69,200,72,137,66,16,72,139,69,232,201,195,85,72,137,229,72,137,125,248,72,139,69,248,139,64,24,72, 152,72,193,224,3,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,72,131,125,232,0,117,29,72,141,61,181,89,4,0,184,0,0,0,0,232,24,249,2,0,199,69,196,0,0,0,0,233,192,0,0,0,72,139,69,232,139,64, 24,137,69,248,199,69,252,0,0,0,0,233,151,0,0,0,72,139,69,232,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,139,64,8,72,59,69,224,117,107,139,69,252,72,152,72,193,224,3,137,194,72,139,69,216,137,16,72,139,69, 232,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,16,72,139,69,208,137,16,72,139,69,232,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,139,80,16,72,139,69,200,72, 137,16,199,69,196,1,0,0,0,235,22,255,69,252,139,69,252,59,69,248,15,140,93,255,255,255,199,69,196,0,0,0,0,139,69,196,201,195,85,72,137,229,72,131,236,80,72,137,125,216,72,137,117,208,72,137,85,200,137,77,196,184,0,0,0,0,137,69,244,72,141,69,232,72,141, 77,248,72,141,85,252,72,139,117,208,72,139,125,216,73,137,192,232,192,254,255,255,133,192,116,73,139,69,248,133,192,117,23,139,69,252,72,152,72,137,194,72,139,69,200,72,141,4,2,139,0,137,69,244,235,84,131,125,196,0,116,78,72,139,69,208,72,139,16,72,139, 69,216,72,139,64,16,72,139,48,72,141,61,114,88,4,0,184,0,0,0,0,232,150,243,2,0,235,41,131,125,196,0,116,35,72,139,69,208,72,139,16,72,139,69,216,72,139,64,16,72,139,48,72,141,61,91,88,4,0,184,0,0,0,0,232,107,243,2,0,139,69,244,137,69,188,243,15,16,69, 188,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,243,15,17,69,212,137,77,208,72,141,69,240,72,141,77,248,72,141,85,252,72,139,117,224,72,139,125,232,73,137,192,232,5,254,255,255,133,192,116,76,139,69,248,133,192,117, 26,139,69,252,72,152,72,137,194,72,139,69,216,72,141,4,2,72,137,194,139,69,212,137,2,235,84,131,125,208,0,116,78,72,139,69,224,72,139,16,72,139,69,232,72,139,64,16,72,139,48,72,141,61,180,87,4,0,184,0,0,0,0,232,216,242,2,0,235,41,131,125,208,0,116,35, 72,139,69,224,72,139,16,72,139,69,232,72,139,64,16,72,139,48,72,141,61,157,87,4,0,184,0,0,0,0,232,173,242,2,0,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,137,77,196,72,141,5,253,136,6,0,72,137,69,232,72,141,69,240, 72,141,77,248,72,141,85,252,72,139,117,208,72,139,125,216,73,137,192,232,76,253,255,255,133,192,116,76,139,69,248,131,248,1,117,25,139,69,252,72,152,72,137,194,72,139,69,200,72,141,4,2,72,139,0,72,137,69,232,235,84,131,125,196,0,116,78,72,139,69,208, 72,139,16,72,139,69,216,72,139,64,16,72,139,48,72,141,61,36,87,4,0,184,0,0,0,0,232,31,242,2,0,235,41,131,125,196,0,116,35,72,139,69,208,72,139,16,72,139,69,216,72,139,64,16,72,139,48,72,141,61,228,86,4,0,184,0,0,0,0,232,244,241,2,0,72,139,69,232,201, 195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,68,137,69,204,72,141,69,240,72,141,77,248,72,141,85,252,72,139,117,224,72,139,125,232,73,137,192,232,149,252,255,255,133,192,116,79,139,69,248,131,248,1,117,28, 139,69,252,72,152,72,137,194,72,139,69,216,72,141,4,2,72,137,194,72,139,69,208,72,137,2,235,84,131,125,204,0,116,78,72,139,69,224,72,139,16,72,139,69,232,72,139,64,16,72,139,48,72,141,61,106,86,4,0,184,0,0,0,0,232,101,241,2,0,235,41,131,125,204,0,116, 35,72,139,69,224,72,139,16,72,139,69,232,72,139,64,16,72,139,48,72,141,61,42,86,4,0,184,0,0,0,0,232,58,241,2,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,139,69,232,139,80,24,72,139,69,224,139,64,24,57,194,125,12,199,69,220, 0,0,0,0,233,10,1,0,0,72,139,69,224,139,64,24,137,69,252,235,91,72,139,69,232,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,139,0,131,248,3,116,38,72,139,69,232,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1, 192,72,1,208,72,193,224,3,72,141,4,1,139,0,131,248,2,117,12,199,69,220,0,0,0,0,233,166,0,0,0,255,69,252,72,139,69,232,139,64,24,59,69,252,127,153,72,139,69,224,139,80,24,72,139,69,232,139,64,24,57,194,126,17,72,141,61,141,85,4,0,184,0,0,0,0,232,178,236, 2,0,199,69,252,0,0,0,0,235,88,72,139,69,224,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,52,1,72,139,69,232,72,139,72,32,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,60,1,186,1,0,0,0,232, 231,247,255,255,133,192,117,9,199,69,220,0,0,0,0,235,22,255,69,252,72,139,69,224,139,64,24,59,69,252,127,156,199,69,220,1,0,0,0,139,69,220,201,195,85,72,137,229,72,137,125,216,72,137,117,208,72,137,85,200,72,137,77,192,76,137,69,184,72,139,69,216,139, 64,24,137,69,252,72,139,69,208,139,64,24,137,69,248,199,69,244,0,0,0,0,235,124,139,69,244,72,152,72,193,224,2,72,3,69,200,139,0,133,192,120,102,139,69,244,72,152,72,193,224,3,72,3,69,184,72,139,0,72,137,69,224,139,69,244,72,152,72,193,224,3,72,137,194, 72,3,85,184,139,69,244,72,152,72,193,224,2,72,3,69,200,139,0,72,152,72,193,224,3,72,3,69,192,72,139,0,72,137,2,139,69,244,72,152,72,193,224,2,72,3,69,200,139,0,72,152,72,193,224,3,72,137,194,72,3,85,192,72,139,69,224,72,137,2,255,69,244,139,69,244,59, 69,248,15,140,120,255,255,255,201,195,85,72,137,229,72,129,236,144,0,0,0,72,137,125,152,72,137,117,144,72,137,85,136,72,137,77,128,76,137,133,120,255,255,255,72,139,69,144,139,64,24,137,69,252,72,139,69,152,139,64,24,137,69,248,72,139,133,120,255,255, 255,72,139,80,16,72,139,69,152,72,139,64,16,72,57,194,15,133,67,1,0,0,72,141,125,160,232,58,201,0,0,72,139,69,144,139,64,24,255,200,72,152,72,193,224,3,72,141,120,32,232,126,17,2,0,72,137,69,232,72,141,5,22,220,6,0,72,139,16,72,139,69,232,72,137,16,72, 139,69,152,72,139,80,16,72,139,69,232,72,137,80,16,72,139,85,232,72,139,117,128,72,141,125,160,232,4,200,0,0,72,139,125,232,72,131,199,24,72,141,85,160,72,139,117,144,232,108,227,255,255,72,139,69,232,72,131,192,24,72,139,141,120,255,255,255,72,131,193, 24,72,139,85,136,72,139,117,144,72,139,125,152,73,137,192,232,92,254,255,255,72,139,69,128,72,139,80,48,72,139,133,120,255,255,255,72,57,194,117,33,72,139,85,232,72,139,69,128,72,137,80,48,72,139,133,120,255,255,255,72,139,80,8,72,139,69,232,72,137,80, 8,235,101,72,139,69,128,72,139,64,48,72,137,69,216,235,51,72,139,133,120,255,255,255,72,59,69,208,117,30,72,139,69,208,72,139,80,8,72,139,69,232,72,137,80,8,72,139,85,232,72,139,69,216,72,137,80,8,235,44,72,139,69,208,72,137,69,216,72,139,69,216,72,139, 64,8,72,137,69,208,72,131,125,208,0,117,186,72,141,61,230,82,4,0,184,0,0,0,0,232,232,241,2,0,72,139,189,120,255,255,255,232,194,45,2,0,72,139,69,144,72,137,69,224,235,28,72,139,133,120,255,255,255,72,137,69,232,72,139,69,232,72,139,120,16,232,241,6,0, 0,72,137,69,224,199,69,244,0,0,0,0,233,132,0,0,0,72,139,69,224,72,139,72,32,139,69,244,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,137,69,200,72,139,69,200,139,0,131,248,2,117,41,139,69,244,72,139,85,232,72,152,72,139,68,194,24, 72,137,69,192,72,139,77,136,72,139,85,192,72,139,117,144,72,139,125,152,232,130,2,0,0,235,42,72,139,69,200,139,0,131,248,3,117,31,139,69,244,72,139,85,232,72,152,72,139,76,194,24,72,139,85,136,72,139,117,144,72,139,125,152,232,25,0,0,0,255,69,244,72, 139,69,224,139,64,24,59,69,244,15,143,108,255,255,255,72,139,69,232,201,195,85,72,137,229,72,131,236,112,72,137,125,168,72,137,117,160,72,137,85,152,72,137,77,144,72,199,69,232,0,0,0,0,72,139,69,144,72,139,80,16,72,139,69,168,72,139,64,16,72,57,194,15, 133,9,1,0,0,72,139,69,168,139,64,24,72,152,72,193,224,3,137,69,244,72,139,69,160,139,64,24,72,152,72,193,224,3,137,69,240,72,139,69,144,139,0,15,175,69,240,72,99,248,232,47,15,2,0,72,137,69,224,72,139,69,144,72,139,64,8,72,137,69,216,72,139,69,144,139, 64,4,59,69,244,116,17,72,141,61,141,81,4,0,184,0,0,0,0,232,120,240,2,0,199,69,252,0,0,0,0,235,106,139,69,240,15,175,69,252,72,152,72,3,69,224,72,137,69,208,72,139,85,144,72,131,194,32,72,139,117,160,72,139,125,208,232,12,225,255,255,139,69,244,15,175, 69,252,72,152,72,3,69,216,72,137,193,72,139,69,208,72,139,85,152,72,139,117,160,72,139,125,168,73,137,192,232,251,251,255,255,139,69,244,15,175,69,252,72,152,72,3,69,216,72,137,199,72,139,117,168,232,126,226,255,255,255,69,252,72,139,69,144,139,0,59, 69,252,127,139,72,139,69,160,72,137,69,232,72,139,85,144,72,139,69,224,72,137,66,8,72,139,69,144,139,0,15,175,69,244,72,99,240,72,139,125,216,232,78,16,2,0,235,17,72,139,69,144,72,139,120,16,232,248,4,0,0,72,137,69,232,199,69,252,0,0,0,0,233,205,0,0, 0,72,139,69,144,72,139,72,8,72,139,69,144,139,0,72,99,208,139,69,252,72,152,72,15,175,194,72,193,224,3,72,141,4,1,72,137,69,200,199,69,248,0,0,0,0,233,136,0,0,0,72,139,69,232,72,139,72,32,139,69,248,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3, 72,141,4,1,72,137,69,192,72,139,69,192,139,0,131,248,2,117,43,139,69,248,72,152,72,193,224,3,72,3,69,200,72,139,0,72,137,69,184,72,139,77,152,72,139,85,184,72,139,117,160,72,139,125,168,232,85,0,0,0,235,44,72,139,69,192,139,0,131,248,3,117,33,139,69, 248,72,152,72,193,224,3,72,3,69,200,72,139,8,72,139,85,152,72,139,117,160,72,139,125,168,232,234,253,255,255,255,69,248,72,139,69,232,139,64,24,59,69,248,15,143,104,255,255,255,255,69,252,72,139,69,144,139,0,59,69,252,15,143,36,255,255,255,201,195,85, 72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,72,139,69,216,72,139,64,48,72,137,69,248,233,164,0,0,0,72,139,69,248,72,139,16,72,141,5,201,215,6,0,72,139,0,72,57,194,117,34,72,139,69,248,72,139,77,216,72,139,85,208, 72,139,117,224,72,139,125,232,73,137,192,232,17,251,255,255,72,137,69,248,235,96,72,139,69,248,72,139,16,72,141,5,81,214,6,0,72,139,0,72,57,194,117,23,72,139,85,248,72,139,77,208,72,139,117,224,72,139,125,232,232,116,255,255,255,235,51,72,139,69,248, 72,139,16,72,141,5,212,213,6,0,72,139,0,72,57,194,117,29,72,139,125,248,232,188,112,253,255,72,137,193,72,139,85,208,72,139,117,224,72,139,125,232,232,2,253,255,255,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,15,133,81,255,255,255,201,195, 85,72,137,229,72,131,236,96,72,137,125,168,72,137,117,160,72,139,69,160,139,64,24,137,69,252,72,139,69,168,139,64,24,137,69,248,139,69,252,72,152,72,141,60,133,0,0,0,0,232,77,12,2,0,72,137,69,224,139,69,248,72,152,72,141,60,133,0,0,0,0,232,55,12,2,0, 72,137,69,216,199,69,236,0,0,0,0,199,69,244,0,0,0,0,235,22,139,69,244,72,152,72,193,224,2,72,3,69,224,199,0,255,255,255,255,255,69,244,139,69,244,59,69,252,124,226,199,69,244,0,0,0,0,235,22,139,69,244,72,152,72,193,224,2,72,3,69,216,199,0,0,0,0,0,255, 69,244,139,69,244,59,69,248,124,226,199,69,244,0,0,0,0,233,155,0,0,0,72,139,69,160,72,139,72,32,139,69,244,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,137,69,208,199,69,240,0,0,0,0,235,100,72,139,69,168,72,139,72,32,139,69,240,72, 99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,137,69,200,72,139,117,200,72,139,125,208,186,1,0,0,0,232,128,240,255,255,133,192,116,40,139,69,244,72,152,72,193,224,2,72,137,194,72,3,85,224,139,69,240,137,2,139,69,240,72,152,72,193,224, 2,72,3,69,216,199,0,1,0,0,0,255,69,240,139,69,240,59,69,248,124,148,255,69,244,139,69,244,59,69,252,15,140,89,255,255,255,199,69,244,0,0,0,0,233,189,0,0,0,139,69,244,72,152,72,193,224,2,72,3,69,224,139,0,133,192,15,137,163,0,0,0,72,139,69,160,72,139, 72,32,139,69,244,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,137,69,192,199,69,240,0,0,0,0,235,111,139,69,240,72,152,72,193,224,2,72,3,69,216,139,0,133,192,117,89,72,139,69,168,72,139,72,32,139,69,240,72,99,208,72,137,208,72,1,192, 72,1,208,72,193,224,3,72,141,52,1,72,139,125,192,186,0,0,0,0,232,171,239,255,255,133,192,116,40,139,69,244,72,152,72,193,224,2,72,137,194,72,3,85,224,139,69,240,137,2,139,69,240,72,152,72,193,224,2,72,3,69,216,199,0,1,0,0,0,255,69,240,139,69,240,59,69, 248,124,137,255,69,244,139,69,244,59,69,252,15,140,55,255,255,255,139,69,252,59,69,248,116,9,199,69,236,1,0,0,0,235,47,199,69,244,0,0,0,0,235,30,139,69,244,72,152,72,193,224,2,72,3,69,224,139,0,59,69,244,116,7,199,69,236,1,0,0,0,255,69,244,139,69,244, 59,69,252,124,218,131,125,236,0,15,132,139,0,0,0,72,139,69,168,72,139,64,16,72,139,48,72,141,61,149,76,4,0,184,0,0,0,0,232,121,227,2,0,199,69,244,0,0,0,0,235,35,139,69,244,72,152,72,193,224,2,72,3,69,224,139,48,72,141,61,150,76,4,0,184,0,0,0,0,232,80, 227,2,0,255,69,244,139,69,244,59,69,252,124,213,72,141,5,48,211,6,0,72,139,0,72,137,69,184,235,36,72,139,77,224,72,139,85,184,72,139,117,160,72,139,125,168,232,58,252,255,255,72,139,69,184,72,139,128,216,0,0,0,72,137,69,184,72,131,125,184,0,117,213,139, 69,252,72,152,72,141,52,133,0,0,0,0,72,139,125,224,232,95,11,2,0,139,69,248,72,152,72,141,52,133,0,0,0,0,72,139,125,216,232,73,11,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,203,164,6,0,72,139,125,248,232,68,44,2,0,201,195,85,72, 137,229,72,131,236,32,72,137,125,232,72,131,125,232,0,117,17,72,141,61,231,75,4,0,184,0,0,0,0,232,135,234,2,0,72,139,69,232,72,139,64,8,72,137,69,248,72,131,125,248,0,117,10,72,199,69,224,0,0,0,0,235,12,72,139,69,248,72,139,64,56,72,137,69,224,72,139, 69,224,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,64,8,72,133,192,116,28,72,139,69,248,72,139,64,8,72,139,120,24,72,139,77,224,139,85,236,72,139,117,240,232,248,25,2,0,201,195,85,72, 137,229,72,131,236,80,72,137,125,216,72,137,117,208,72,137,85,200,72,137,77,192,68,137,69,188,76,137,77,176,72,141,125,224,232,27,192,0,0,72,139,85,200,72,139,117,208,72,141,125,224,232,34,191,0,0,72,139,69,176,199,0,3,0,0,0,72,139,85,176,72,141,69,224, 72,137,66,8,72,139,77,176,139,85,188,72,139,117,192,72,139,125,216,232,90,255,255,255,72,141,125,224,232,185,190,0,0,201,195,85,72,137,229,72,131,236,80,72,137,125,216,72,137,117,208,137,85,204,72,137,77,192,72,139,85,192,139,117,204,191,0,0,0,0,232, 119,112,1,0,72,137,199,232,183,232,253,255,72,137,69,240,131,125,204,0,117,13,72,199,69,184,0,0,0,0,233,207,0,0,0,255,77,204,72,131,69,192,16,72,139,53,102,163,6,0,72,139,125,240,232,223,42,2,0,72,137,69,248,72,131,125,248,0,15,132,144,0,0,0,72,139,85, 192,139,117,204,72,141,61,112,123,6,0,232,46,237,255,255,72,137,69,232,72,139,117,232,72,139,125,248,232,178,243,255,255,133,192,117,93,72,139,69,248,72,139,64,8,72,133,192,116,26,72,139,69,240,72,139,48,72,141,61,96,74,4,0,184,0,0,0,0,232,193,228,2, 0,235,54,72,139,117,232,72,139,125,248,232,228,250,255,255,72,139,125,248,232,186,36,2,0,72,139,85,192,139,117,204,72,139,125,240,232,204,236,255,255,72,137,69,224,72,139,69,224,72,199,64,8,0,0,0,0,72,139,125,232,232,145,36,2,0,235,16,72,139,85,192,139, 117,204,72,139,125,240,232,161,236,255,255,72,199,69,184,0,0,0,0,72,139,69,184,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,16,72,139,0,15,182,0,132,192,116,17,72,139,69,248,72,139,112,16,72,139,125,248,232,152,40,2,0,72, 139,69,248,139,64,24,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,198,72,139,69,248,72,139,120,32,232,179,8,2,0,201,195,85,72,137,229,83,72,131,236,8,72,141,29,152,255,255,255,72,141,61,199,66,4,0,232,130,236,1,0,72,137,199,65,185,0,0,0, 0,65,184,1,0,0,0,185,40,0,0,0,72,137,218,190,0,0,0,0,184,0,0,0,0,232,188,218,1,0,72,137,5,255,161,6,0,72,141,61,100,73,4,0,232,73,236,1,0,72,137,194,72,141,53,45,254,255,255,72,141,5,34,210,6,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,189, 225,1,0,72,131,196,8,91,201,195,85,72,137,229,72,131,236,96,72,137,125,184,137,117,180,72,137,85,168,72,139,61,161,161,6,0,232,8,35,2,0,72,137,69,240,72,139,125,184,232,185,252,255,255,72,137,69,232,72,141,61,171,70,4,0,232,221,235,1,0,72,137,69,224, 232,127,207,253,255,72,137,194,72,139,69,240,72,137,80,56,72,139,69,240,72,199,64,72,0,0,0,0,72,139,85,240,72,139,69,184,72,137,66,64,72,139,85,240,139,69,180,137,66,80,139,69,180,72,152,72,137,199,72,193,231,4,232,181,5,2,0,72,137,194,72,139,69,240, 72,137,80,88,199,69,252,0,0,0,0,235,54,72,139,69,240,72,139,80,88,139,69,252,72,152,72,193,224,4,72,141,12,2,139,69,252,72,152,72,193,224,4,72,137,194,72,3,85,168,72,139,2,72,137,1,72,139,66,8,72,137,65,8,255,69,252,139,69,252,59,69,180,124,194,72,131, 125,232,0,15,132,244,0,0,0,72,139,85,240,72,139,69,232,72,137,66,48,72,139,69,232,72,139,64,8,72,133,192,116,86,72,139,69,240,72,139,64,48,72,139,64,8,72,137,69,216,235,8,72,139,69,208,72,137,69,216,72,139,69,216,72,139,64,72,72,137,69,208,72,131,125, 208,0,117,229,72,139,85,216,72,139,69,240,72,137,66,72,72,139,69,184,72,139,48,72,141,61,251,71,4,0,184,0,0,0,0,232,119,222,2,0,233,177,0,0,0,72,139,85,168,139,117,180,72,141,61,150,120,6,0,232,84,234,255,255,72,137,69,200,72,139,125,232,190,2,0,0,0, 232,0,0,254,255,72,139,117,200,72,139,125,232,232,202,240,255,255,133,192,117,42,72,139,117,200,72,139,125,232,232,35,248,255,255,72,139,125,232,232,249,33,2,0,72,139,85,168,139,117,180,72,139,125,184,232,11,234,255,255,72,137,69,232,72,139,125,200,232, 220,33,2,0,72,139,85,232,72,139,69,240,72,137,66,8,72,139,125,232,190,1,0,0,0,232,162,255,253,255,235,44,72,139,85,168,139,117,180,72,139,125,184,232,210,233,255,255,72,137,69,232,72,139,85,240,72,139,69,232,72,137,66,48,72,139,85,232,72,139,69,240,72, 137,66,8,72,139,125,240,190,0,0,0,0,232,71,18,2,0,72,139,69,240,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,72,139,85,216,139,117,228,191,0,0,0,0,232,110,108,1,0,72,137,69,248,131,125,228,0,126,3,255,77,228,72,131,69, 216,16,72,139,125,248,232,155,228,253,255,72,137,199,72,139,85,216,139,117,228,232,158,253,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,232,72,205,253,255,72,139,184,200,0,0,0,232,102,228,253,255,72,137,69,248, 139,5,33,159,6,0,133,192,117,34,72,139,69,248,72,139,48,72,141,61,191,70,4,0,184,0,0,0,0,232,19,221,2,0,199,5,251,158,6,0,1,0,0,0,72,139,85,216,139,117,228,72,139,125,248,232,56,253,255,255,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,64, 48,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,69,200,72,139,64,48,72,137,69,248,72,139,69,248,72,139,64,8,72,59,69,200,15,133,232,0,0,0,72,139,125,248,190,2,0,0,0,232,96,254,253,255,72,139,69,200,72,139,64,72,72,133,192,15,132,173,0,0, 0,72,139,69,200,72,139,64,72,72,139,80,88,72,139,69,200,72,139,64,72,139,112,80,72,141,61,176,118,6,0,232,110,232,255,255,72,137,69,232,72,139,117,232,72,139,125,248,232,92,246,255,255,72,139,125,248,232,50,32,2,0,72,139,125,232,232,41,32,2,0,72,139, 69,200,72,139,64,72,72,139,80,88,72,139,69,200,72,139,64,72,139,112,80,72,139,69,200,72,139,120,64,232,39,232,255,255,72,137,69,232,72,139,69,200,72,139,80,72,72,139,69,232,72,137,80,8,72,139,69,232,72,139,64,8,72,137,69,240,235,24,72,139,85,240,72,139, 69,232,72,137,66,48,72,139,69,240,72,139,64,72,72,137,69,240,72,131,125,240,0,117,225,235,12,72,139,69,248,72,199,64,8,0,0,0,0,72,139,125,248,190,1,0,0,0,232,136,253,253,255,235,69,72,139,69,248,72,139,64,8,72,137,69,224,235,36,72,139,69,200,72,59,69, 216,117,18,72,139,69,216,72,139,80,72,72,139,69,224,72,137,80,72,235,27,72,139,69,216,72,137,69,224,72,139,69,224,72,139,64,72,72,137,69,216,72,131,125,216,0,117,201,72,139,69,200,139,64,80,72,152,72,137,198,72,193,230,4,72,139,69,200,72,139,120,88,232, 220,3,2,0,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,120,254,255,255,76,141,37,169,253,255,255,72,141,61,189,68,4,0,232,162,231,1,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,8,0,0,0,185,96,0,0,0,72,137,218,76,137,230,184,0,0,0,0, 232,215,213,1,0,72,137,5,18,157,6,0,72,141,61,169,61,4,0,232,100,231,1,0,72,137,198,72,141,61,165,253,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,213,218,1,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,69, 248,198,0,1,72,139,69,248,198,64,1,0,72,139,85,248,139,69,244,137,66,8,72,139,85,248,184,0,0,0,0,137,66,32,72,139,69,248,139,80,32,72,139,69,248,137,80,28,72,139,69,248,139,80,28,72,139,69,248,137,80,24,72,139,69,248,139,80,24,72,139,69,248,137,80,20, 72,139,69,248,139,80,20,72,139,69,248,137,80,16,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,69,248,198,0,2,72,139,69,248,198,64,1,0,72,139,85,248,72,139,69,240,72,137,66,8,72,139,85,248,184,0,0,0,0,137,66,32,72,139,69,248,139,80,32,72, 139,69,248,137,80,28,72,139,69,248,139,80,28,72,139,69,248,137,80,24,72,139,69,248,139,80,24,72,139,69,248,137,80,20,72,139,69,248,139,80,20,72,139,69,248,137,80,16,201,195,85,72,137,229,72,129,236,96,4,0,0,72,137,189,184,251,255,255,72,137,181,176,251, 255,255,72,139,5,54,107,6,0,72,139,16,72,137,85,248,49,210,72,139,133,184,251,255,255,198,0,1,72,139,133,184,251,255,255,198,64,1,1,72,139,133,176,251,255,255,72,139,56,190,40,0,0,0,232,12,1,4,0,72,137,133,248,251,255,255,72,131,189,248,251,255,255,0, 116,53,72,139,133,176,251,255,255,72,139,56,190,41,0,0,0,232,231,0,4,0,72,137,133,240,251,255,255,72,131,189,240,251,255,255,0,116,16,72,139,133,248,251,255,255,72,59,133,240,251,255,255,118,118,72,139,149,184,251,255,255,72,139,133,176,251,255,255,72, 137,66,8,72,139,149,184,251,255,255,184,0,0,0,0,137,66,32,72,139,133,184,251,255,255,139,80,32,72,139,133,184,251,255,255,137,80,28,72,139,133,184,251,255,255,139,80,28,72,139,133,184,251,255,255,137,80,24,72,139,133,184,251,255,255,139,80,24,72,139, 133,184,251,255,255,137,80,20,72,139,133,184,251,255,255,139,80,20,72,139,133,184,251,255,255,137,80,16,233,173,2,0,0,72,139,133,248,251,255,255,137,194,72,139,133,176,251,255,255,72,139,0,137,209,41,193,137,200,137,133,8,252,255,255,129,189,8,252,255, 255,227,3,0,0,126,10,199,133,8,252,255,255,227,3,0,0,139,133,8,252,255,255,72,99,208,72,139,133,176,251,255,255,72,139,48,72,141,189,16,252,255,255,185,232,3,0,0,232,237,253,3,0,139,133,8,252,255,255,72,152,198,132,5,16,252,255,255,0,72,141,189,16,252, 255,255,232,225,228,1,0,72,137,194,72,139,133,184,251,255,255,72,137,80,8,72,141,149,200,251,255,255,72,141,141,208,251,255,255,72,141,181,216,251,255,255,72,141,189,224,251,255,255,76,139,149,248,251,255,255,72,141,133,192,251,255,255,72,137,4,36,73, 137,209,73,137,200,72,137,241,72,137,250,72,141,53,26,66,4,0,76,137,215,184,0,0,0,0,232,115,255,3,0,137,133,4,252,255,255,242,15,16,133,224,251,255,255,242,15,90,192,72,139,133,184,251,255,255,243,15,17,64,16,242,15,16,133,216,251,255,255,242,15,90,192, 72,139,133,184,251,255,255,243,15,17,64,20,242,15,16,133,208,251,255,255,242,15,90,192,72,139,133,184,251,255,255,243,15,17,64,24,242,15,16,133,200,251,255,255,242,15,90,192,72,139,133,184,251,255,255,243,15,17,64,28,242,15,16,133,192,251,255,255,242, 15,90,192,72,139,133,184,251,255,255,243,15,17,64,32,131,189,4,252,255,255,1,15,142,215,0,0,0,131,189,4,252,255,255,3,15,132,202,0,0,0,131,189,4,252,255,255,3,127,26,72,139,189,240,251,255,255,190,40,0,0,0,232,205,254,3,0,72,133,192,15,133,167,0,0,0, 131,189,4,252,255,255,4,127,59,72,139,189,240,251,255,255,190,40,0,0,0,232,170,254,3,0,72,137,133,232,251,255,255,72,131,189,232,251,255,255,0,116,25,72,139,189,232,251,255,255,72,255,199,190,40,0,0,0,232,133,254,3,0,72,133,192,117,99,131,189,4,252,255, 255,4,117,20,72,139,149,184,251,255,255,184,0,0,0,0,137,66,32,233,192,0,0,0,131,189,4,252,255,255,2,15,133,179,0,0,0,72,139,149,184,251,255,255,184,0,0,0,0,137,66,32,72,139,133,184,251,255,255,139,80,16,72,139,133,184,251,255,255,137,80,24,72,139,133, 184,251,255,255,139,80,20,72,139,133,184,251,255,255,137,80,28,235,122,72,139,133,176,251,255,255,72,139,48,72,141,61,178,64,4,0,184,0,0,0,0,232,176,214,2,0,72,139,149,184,251,255,255,184,0,0,0,0,137,66,32,72,139,133,184,251,255,255,139,80,32,72,139, 133,184,251,255,255,137,80,28,72,139,133,184,251,255,255,139,80,28,72,139,133,184,251,255,255,137,80,20,72,139,133,184,251,255,255,139,80,20,72,139,133,184,251,255,255,137,80,24,72,139,133,184,251,255,255,139,80,24,72,139,133,184,251,255,255,137,80,16, 72,139,5,148,103,6,0,72,139,85,248,72,51,16,116,5,232,108,251,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,131,125,244,0,127,14,72,139,125,248,15,87,192,232,48,251,255,255,235,48,72,139,69,232,139,0,131,248,2,117,19, 72,139,69,232,72,139,112,8,72,139,125,248,232,235,251,255,255,235,18,72,139,69,232,243,15,16,64,8,72,139,125,248,232,254,250,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,131,125,244,0,127,21,72,139,125,248,72,141, 53,239,111,6,0,232,63,251,255,255,233,128,0,0,0,72,139,69,232,139,0,131,248,2,117,101,72,139,69,248,198,0,2,72,139,69,248,198,64,1,1,72,139,69,232,72,139,80,8,72,139,69,248,72,137,80,8,72,139,85,248,184,0,0,0,0,137,66,32,72,139,69,248,139,80,32,72,139, 69,248,137,80,28,72,139,69,248,139,80,28,72,139,69,248,137,80,24,72,139,69,248,139,80,24,72,139,69,248,137,80,20,72,139,69,248,139,80,20,72,139,69,248,137,80,16,235,16,72,139,125,248,72,141,53,106,111,6,0,232,186,250,255,255,201,195,85,72,137,229,72, 131,236,32,72,137,125,248,137,117,244,72,137,85,232,131,125,244,0,127,14,72,139,125,248,15,87,192,232,39,250,255,255,235,62,72,139,69,232,139,0,131,248,2,117,33,72,139,69,248,198,0,55,72,139,69,248,198,64,1,1,72,139,69,232,72,139,80,8,72,139,69,248,72, 137,80,8,235,18,72,139,69,232,243,15,16,64,8,72,139,125,248,232,231,249,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,137,77,228,72,139,69,248,15,182,0,60,1,117,59,72,139,69,248,15,182,64,1,132,192,116,31,72, 139,69,248,72,139,112,8,139,77,228,72,139,85,232,72,139,125,240,232,42,228,255,255,243,15,17,69,224,235,47,72,139,69,248,243,15,16,64,8,243,15,17,69,224,235,31,131,125,228,0,116,17,72,141,61,106,62,4,0,184,0,0,0,0,232,24,216,2,0,15,87,192,243,15,17,69, 224,243,15,16,69,224,201,195,85,72,137,229,72,137,125,232,243,15,17,69,228,72,139,69,232,243,15,16,72,20,72,139,69,232,243,15,16,64,16,15,46,200,122,2,116,2,235,15,243,15,16,69,228,243,15,17,69,216,233,35,1,0,0,72,139,69,232,243,15,16,72,28,72,139,69, 232,243,15,16,64,24,15,40,209,243,15,92,208,72,139,69,232,243,15,16,72,20,72,139,69,232,243,15,16,64,16,15,40,217,243,15,92,216,15,40,195,15,40,202,243,15,94,200,15,40,193,243,15,17,69,240,72,139,69,232,243,15,16,80,24,72,139,69,232,243,15,16,72,16,243, 15,16,69,228,243,15,92,193,243,15,89,69,240,243,15,88,194,243,15,17,69,252,72,139,69,232,243,15,16,72,24,72,139,69,232,243,15,16,64,28,15,46,193,119,2,235,16,72,139,69,232,243,15,16,88,24,243,15,17,93,220,235,14,72,139,69,232,243,15,16,64,28,243,15,17, 69,220,243,15,16,77,220,243,15,17,77,244,243,15,16,77,252,243,15,16,69,244,15,46,193,119,2,235,6,139,69,244,137,69,252,72,139,69,232,243,15,16,72,24,72,139,69,232,243,15,16,64,28,15,46,200,119,2,235,16,72,139,69,232,243,15,16,88,24,243,15,17,93,224,235, 14,72,139,69,232,243,15,16,64,28,243,15,17,69,224,243,15,16,77,224,243,15,17,77,244,243,15,16,69,252,15,46,69,244,119,2,235,6,139,69,244,137,69,252,243,15,16,93,252,243,15,17,93,216,243,15,16,69,216,201,195,85,72,137,229,72,131,236,48,72,137,125,232, 72,137,117,224,72,137,85,216,137,77,212,72,139,69,232,15,182,0,60,1,117,78,72,139,69,232,15,182,64,1,132,192,116,50,72,139,69,232,72,139,112,8,139,77,212,72,139,85,216,72,139,125,224,232,70,226,255,255,243,15,17,69,252,243,15,16,69,252,72,139,125,232, 232,70,254,255,255,243,15,17,69,208,235,47,72,139,69,232,243,15,16,64,8,243,15,17,69,208,235,31,131,125,212,0,116,17,72,141,61,115,60,4,0,184,0,0,0,0,232,33,214,2,0,15,87,192,243,15,17,69,208,243,15,16,69,208,201,195,85,72,137,229,72,131,236,48,72,137, 125,248,72,137,117,240,72,137,85,232,137,77,228,72,139,69,248,15,182,0,60,2,117,56,72,139,69,248,15,182,64,1,132,192,116,30,72,139,69,248,72,139,112,8,139,77,228,72,139,85,232,72,139,125,240,232,33,227,255,255,72,137,69,216,235,48,72,139,69,248,72,139, 64,8,72,137,69,216,235,34,131,125,228,0,116,17,72,141,61,27,60,4,0,184,0,0,0,0,232,161,213,2,0,72,141,5,10,108,6,0,72,137,69,216,72,139,69,216,201,195,85,72,137,229,72,137,125,232,243,15,17,69,228,72,139,69,232,243,15,16,72,28,72,139,69,232,243,15,16, 64,24,15,46,200,122,2,116,2,235,11,139,69,228,137,69,252,233,106,1,0,0,72,139,69,232,243,15,16,72,20,72,139,69,232,243,15,16,64,16,15,40,209,243,15,92,208,72,139,69,232,243,15,16,72,28,72,139,69,232,243,15,16,64,24,15,40,217,243,15,92,216,15,40,195,15, 40,202,243,15,94,200,15,40,193,243,15,17,69,248,72,139,69,232,243,15,16,80,16,72,139,69,232,243,15,16,72,24,243,15,16,69,228,243,15,92,193,243,15,89,69,248,243,15,88,194,243,15,17,69,252,72,139,69,232,243,15,16,72,32,15,87,192,15,46,200,117,4,122,2,235, 60,72,139,69,232,243,15,16,72,32,243,15,16,69,252,243,15,94,193,243,15,90,200,242,15,16,5,197,133,4,0,242,15,88,193,242,15,44,192,243,15,42,200,72,139,69,232,243,15,16,64,32,243,15,89,193,243,15,17,69,252,72,139,69,232,243,15,16,72,16,72,139,69,232,243, 15,16,64,20,15,46,193,119,2,235,16,72,139,69,232,243,15,16,88,16,243,15,17,93,220,235,14,72,139,69,232,243,15,16,64,20,243,15,17,69,220,243,15,16,77,220,243,15,17,77,244,243,15,16,77,252,243,15,16,69,244,15,46,193,119,2,235,6,139,69,244,137,69,252,72, 139,69,232,243,15,16,72,16,72,139,69,232,243,15,16,64,20,15,46,200,119,2,235,16,72,139,69,232,243,15,16,88,16,243,15,17,93,224,235,14,72,139,69,232,243,15,16,64,20,243,15,17,69,224,243,15,16,77,224,243,15,17,77,244,243,15,16,69,252,15,46,69,244,119,2, 235,6,139,69,244,137,69,252,139,69,252,137,69,204,243,15,16,69,204,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,243,15,17,69,212,137,77,208,72,139,69,232,15,182,0,60,1,117,62,72,139,69,232,15,182,64,1,132,192,116,50, 243,15,16,69,212,72,139,125,232,232,21,254,255,255,243,15,17,69,252,72,139,69,232,72,139,112,8,139,77,208,243,15,16,69,252,72,139,85,216,72,139,125,224,232,37,224,255,255,235,23,131,125,208,0,116,17,72,141,61,12,58,4,0,184,0,0,0,0,232,106,211,2,0,201, 195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,72,137,85,184,72,141,5,173,192,6,0,72,139,56,232,233,18,2,0,72,137,69,232,72,139,69,200,72,139,0,72,137,69,224,199,69,252,0,0,0,0,232,107,191,253,255,72,137,194,72,139,69,232,72,137,144,232, 0,0,0,72,139,69,224,15,182,0,60,102,117,11,72,131,69,224,6,131,77,252,1,235,5,72,131,69,224,4,72,139,69,224,15,182,0,60,99,117,4,131,77,252,2,72,139,125,232,72,129,199,176,0,0,0,243,15,16,5,159,131,4,0,232,51,244,255,255,72,139,69,192,137,198,72,139, 85,184,191,0,0,0,0,232,233,93,1,0,72,137,69,208,72,139,69,208,72,139,56,72,141,53,135,57,4,0,232,69,246,3,0,133,192,117,48,72,131,125,192,1,126,41,72,139,85,184,72,131,194,16,72,139,125,232,72,129,199,176,0,0,0,190,1,0,0,0,232,139,248,255,255,72,131, 109,192,2,72,131,69,184,32,235,161,72,139,69,208,72,139,56,72,141,53,67,57,4,0,232,254,245,3,0,133,192,117,18,131,77,252,4,72,255,77,192,72,131,69,184,16,233,120,255,255,255,72,139,85,232,139,69,252,137,66,48,139,69,252,131,224,1,131,240,1,132,192,117, 41,72,131,125,192,0,116,34,72,139,85,184,72,131,69,184,16,72,139,69,192,137,198,72,255,77,192,72,139,125,232,72,131,199,56,232,24,248,255,255,235,16,72,139,125,232,72,131,199,56,15,87,192,232,91,243,255,255,72,131,125,192,0,116,34,72,139,85,184,72,131, 69,184,16,72,139,69,192,137,198,72,255,77,192,72,139,125,232,72,131,199,96,232,223,247,255,255,235,16,72,139,125,232,72,131,199,96,15,87,192,232,34,243,255,255,72,131,125,192,0,116,37,72,139,85,184,72,131,69,184,16,72,139,69,192,137,198,72,255,77,192, 72,139,125,232,72,129,199,136,0,0,0,232,163,247,255,255,235,24,72,139,125,232,72,129,199,136,0,0,0,243,15,16,5,74,130,4,0,232,222,242,255,255,72,131,125,192,0,121,8,72,199,69,192,0,0,0,0,72,139,69,192,137,194,131,226,1,72,139,69,192,141,4,2,137,69,248, 139,69,248,137,194,209,250,72,139,69,232,137,144,216,0,0,0,139,69,248,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,137,199,232,235,243,1,0,72,137,194,72,139,69,232,72,137,144,224,0,0,0,199,69,244,0,0,0,0,72,139,69,232,72,139,128,224,0,0, 0,72,137,69,216,235,31,72,139,85,184,72,139,125,216,190,1,0,0,0,232,2,247,255,255,255,69,244,72,131,69,216,40,72,131,69,184,16,139,69,244,72,152,72,59,69,192,124,214,72,139,69,192,131,224,1,132,192,116,12,72,139,125,216,15,87,192,232,40,242,255,255,72, 139,69,232,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,15,182,128,176,0,0,0,60,1,117,15,72,139,69,232,15,182,128,177,0,0,0,132,192,116,26,72,139,125,232,72,141,53,111,55,4,0,184,0,0,0,0,232,237,210,2,0,233,167,0, 0,0,72,139,69,232,243,15,16,136,184,0,0,0,15,87,192,15,46,200,15,149,192,15,154,194,9,208,15,182,192,137,69,252,15,87,192,15,46,69,228,122,2,116,6,131,125,252,0,117,118,15,87,192,15,46,69,228,117,10,122,8,131,125,252,0,117,2,235,99,72,139,69,232,72,139, 184,232,0,0,0,190,2,0,0,0,232,91,238,253,255,15,87,192,15,46,69,228,117,4,122,2,235,15,243,15,16,5,210,128,4,0,243,15,17,69,224,235,8,15,87,192,243,15,17,69,224,72,139,125,232,72,129,199,176,0,0,0,243,15,16,69,224,232,71,241,255,255,72,139,69,232,72, 139,184,232,0,0,0,190,1,0,0,0,232,13,238,253,255,201,195,85,72,137,229,72,131,236,112,72,137,125,200,72,137,117,192,72,137,85,184,72,137,77,176,243,15,17,69,172,243,15,17,77,168,76,137,69,160,76,137,77,152,72,139,69,200,72,137,69,216,72,139,69,216,139, 128,216,0,0,0,137,69,248,72,139,69,216,72,139,128,224,0,0,0,72,137,69,208,199,69,244,255,255,255,127,199,69,240,1,0,0,128,199,69,236,255,255,255,127,199,69,232,1,0,0,128,72,139,125,216,72,129,199,176,0,0,0,72,139,85,184,72,139,117,176,185,0,0,0,0,232, 196,246,255,255,15,40,200,15,87,192,15,46,200,122,2,116,14,72,139,69,216,139,64,48,131,224,4,133,192,116,49,72,139,69,152,199,0,255,255,255,127,72,139,69,152,139,16,72,139,69,160,137,16,72,139,69,24,199,0,1,0,0,128,72,139,69,24,139,16,72,139,69,16,137, 16,233,229,0,0,0,199,69,252,0,0,0,0,72,139,69,216,72,139,128,224,0,0,0,72,137,69,208,233,154,0,0,0,72,139,85,184,72,139,117,176,72,139,125,208,185,0,0,0,0,232,43,248,255,255,243,15,88,69,172,72,139,125,192,232,86,153,254,255,243,15,44,192,137,69,228, 72,139,125,208,72,131,199,40,72,139,85,184,72,139,117,176,185,0,0,0,0,232,252,247,255,255,243,15,88,69,168,72,139,125,192,232,191,154,254,255,243,15,44,192,137,69,224,139,69,228,59,69,244,125,6,139,69,228,137,69,244,139,69,228,59,69,240,126,6,139,69, 228,137,69,240,139,69,224,59,69,236,125,6,139,69,224,137,69,236,139,69,224,59,69,232,126,6,139,69,224,137,69,232,255,69,252,72,131,69,208,80,139,69,252,59,69,248,15,140,90,255,255,255,72,139,85,160,139,69,244,137,2,72,139,85,152,139,69,236,137,2,72,139, 85,16,139,69,240,137,2,72,139,85,24,139,69,232,137,2,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224,243,15,17,69,220,243,15,17,77,216,68,137,69,212,68,137,77,208,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72, 137,85,232,72,137,77,224,243,15,17,69,220,243,15,17,77,216,68,137,69,212,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224,243,15,17,69,220,243,15,17,77,216,68,137,69,212,201,195,85,72,137,229,137,125,236,131,125,236,9,116, 8,139,69,236,137,69,232,235,7,199,69,232,8,0,0,0,139,69,232,137,69,252,139,69,252,193,224,5,137,69,248,129,125,248,255,0,0,0,126,7,199,69,248,255,0,0,0,139,69,248,201,195,85,72,137,229,65,84,83,72,131,236,64,137,125,220,72,137,117,208,131,125,220,0,121, 7,199,69,220,0,0,0,0,139,77,220,199,69,204,31,133,235,81,139,69,204,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,69,236,139,77,220,199,69,204,103,102,102,102,139,69,204,247,233,193,250,2,137,200,193,248,31,137,209,41,193,199,69,204, 103,102,102,102,139,69,204,247,233,193,250,2,137,200,193,248,31,137,211,41,195,137,216,137,69,232,139,85,232,137,208,193,224,2,1,208,1,192,137,202,41,194,137,208,137,69,232,139,77,220,199,69,204,103,102,102,102,139,69,204,247,233,193,250,2,137,200,193, 248,31,41,194,137,208,193,224,2,1,208,1,192,137,202,41,194,137,208,137,69,228,139,125,228,232,1,255,255,255,65,137,196,139,125,232,232,246,254,255,255,137,195,139,125,236,232,236,254,255,255,72,199,194,255,255,255,255,72,139,125,208,68,137,36,36,65,137, 217,65,137,192,72,141,13,150,51,4,0,190,0,0,0,0,184,0,0,0,0,232,214,237,3,0,72,131,196,64,91,65,92,201,195,85,72,137,229,83,72,129,236,200,3,0,0,72,137,189,88,252,255,255,72,137,181,80,252,255,255,72,137,149,72,252,255,255,72,137,141,64,252,255,255,243, 15,17,133,60,252,255,255,243,15,17,141,56,252,255,255,68,137,133,52,252,255,255,72,139,5,167,89,6,0,72,139,16,72,137,85,232,49,210,72,139,133,88,252,255,255,72,137,69,144,72,139,69,144,139,128,216,0,0,0,137,69,168,72,139,69,144,72,139,128,224,0,0,0,72, 137,69,136,131,189,52,252,255,255,0,116,52,72,139,125,144,72,129,199,176,0,0,0,72,139,149,72,252,255,255,72,139,181,64,252,255,255,185,0,0,0,0,232,55,243,255,255,15,40,200,15,87,192,15,46,200,122,6,15,132,226,2,0,0,131,189,52,252,255,255,0,15,132,168, 2,0,0,131,125,168,1,15,142,139,2,0,0,72,139,69,144,139,64,48,137,69,164,139,69,164,131,224,1,137,69,160,72,139,125,144,72,129,199,136,0,0,0,72,139,149,72,252,255,255,72,139,181,64,252,255,255,185,1,0,0,0,232,217,242,255,255,243,15,17,69,156,131,125,168, 100,126,7,199,69,168,100,0,0,0,199,69,172,0,0,0,0,72,139,69,144,72,139,128,224,0,0,0,72,137,69,136,233,150,0,0,0,139,69,172,141,28,0,72,139,149,72,252,255,255,72,139,181,64,252,255,255,72,139,125,136,185,1,0,0,0,232,110,244,255,255,243,15,88,133,60,252, 255,255,72,139,189,80,252,255,255,232,147,149,254,255,243,15,44,208,72,99,195,137,148,133,96,252,255,255,139,69,172,1,192,141,88,1,72,139,125,136,72,131,199,40,72,139,149,72,252,255,255,72,139,181,64,252,255,255,185,1,0,0,0,232,36,244,255,255,243,15, 88,133,56,252,255,255,72,139,189,80,252,255,255,232,225,150,254,255,243,15,44,208,72,99,195,137,148,133,96,252,255,255,255,69,172,72,131,69,136,80,139,69,172,59,69,168,15,140,94,255,255,255,243,15,16,5,78,123,4,0,15,46,69,156,119,2,235,8,184,0,0,128, 63,137,69,156,72,139,125,144,72,131,199,96,72,139,149,72,252,255,255,72,139,181,64,252,255,255,185,1,0,0,0,232,210,241,255,255,243,15,44,248,72,141,117,208,232,228,252,255,255,139,69,164,131,224,1,132,192,116,79,72,139,125,144,72,131,199,56,72,139,149, 72,252,255,255,72,139,181,64,252,255,255,185,1,0,0,0,232,155,241,255,255,243,15,44,248,72,141,117,176,232,173,252,255,255,72,139,189,80,252,255,255,232,157,131,254,255,72,137,198,72,141,61,46,49,4,0,184,0,0,0,0,232,26,103,2,0,235,32,72,139,189,80,252, 255,255,232,123,131,254,255,72,137,198,72,141,61,37,49,4,0,184,0,0,0,0,232,248,102,2,0,199,69,172,0,0,0,0,235,50,139,69,172,1,192,255,192,72,152,139,148,133,96,252,255,255,139,69,172,1,192,72,152,139,180,133,96,252,255,255,72,141,61,3,49,4,0,184,0,0, 0,0,232,192,102,2,0,255,69,172,139,69,172,59,69,168,124,198,243,15,90,69,156,72,141,61,234,48,4,0,184,1,0,0,0,232,159,102,2,0,139,69,164,131,224,1,132,192,116,27,72,141,85,208,72,141,117,176,72,141,61,211,48,4,0,184,0,0,0,0,232,124,102,2,0,235,21,72, 141,117,208,72,141,61,211,48,4,0,184,0,0,0,0,232,101,102,2,0,139,69,164,131,224,2,133,192,116,17,72,141,61,195,48,4,0,184,0,0,0,0,232,74,102,2,0,72,139,181,72,252,255,255,72,141,61,183,48,4,0,184,0,0,0,0,232,50,102,2,0,235,64,72,141,61,185,48,4,0,184, 0,0,0,0,232,61,197,2,0,235,45,131,125,168,1,126,39,72,139,189,80,252,255,255,232,122,130,254,255,72,137,198,72,139,149,72,252,255,255,72,141,61,193,48,4,0,184,0,0,0,0,232,240,101,2,0,72,139,5,81,86,6,0,72,139,85,232,72,51,16,116,5,232,41,234,3,0,72,129, 196,200,3,0,0,91,201,195,85,72,137,229,72,131,236,48,72,137,125,216,243,15,17,69,212,243,15,17,77,208,72,139,69,216,72,137,69,248,72,139,69,248,72,139,136,224,0,0,0,139,5,202,134,6,0,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1, 72,137,69,240,190,0,0,0,0,72,141,61,237,134,6,0,232,21,160,0,0,133,192,117,22,72,141,61,77,48,4,0,184,0,0,0,0,232,129,196,2,0,233,92,1,0,0,243,15,16,5,130,134,6,0,243,15,88,69,212,243,15,17,5,117,134,6,0,243,15,16,5,121,134,6,0,243,15,88,69,208,243,15, 17,5,108,134,6,0,72,139,69,240,15,182,64,1,132,192,116,73,15,87,192,15,46,69,212,117,4,122,2,235,60,243,15,16,13,63,134,6,0,243,15,16,5,63,134,6,0,243,15,89,200,243,15,16,5,47,134,6,0,243,15,88,193,72,139,21,84,134,6,0,72,139,53,85,134,6,0,72,139,125, 240,185,1,0,0,0,232,217,243,255,255,72,139,69,240,72,131,192,40,15,182,64,1,132,192,116,77,15,87,192,15,46,69,208,117,4,122,2,235,64,243,15,16,13,242,133,6,0,243,15,16,5,242,133,6,0,243,15,89,200,243,15,16,5,226,133,6,0,243,15,88,193,72,139,21,251,133, 6,0,72,139,53,252,133,6,0,72,139,125,240,72,131,199,40,185,1,0,0,0,232,124,243,255,255,72,139,5,203,133,6,0,72,133,192,116,54,72,141,61,105,114,4,0,232,224,207,1,0,72,137,193,72,139,21,176,133,6,0,72,139,53,161,133,6,0,72,139,61,186,133,6,0,72,141,69, 224,73,137,193,65,184,1,0,0,0,232,53,225,255,255,72,139,5,137,133,6,0,72,133,192,116,19,72,139,53,117,133,6,0,72,139,61,118,133,6,0,232,67,201,255,255,72,139,5,114,133,6,0,72,133,192,116,19,72,139,53,86,133,6,0,72,139,61,95,133,6,0,232,15,95,253,255, 201,195,85,72,137,229,72,129,236,144,0,0,0,72,137,125,184,72,137,117,176,72,137,85,168,72,137,77,160,76,137,69,152,76,137,77,144,243,15,17,69,140,243,15,17,77,136,72,139,69,184,72,137,69,208,72,139,69,208,139,128,216,0,0,0,137,69,248,199,69,244,255,255, 255,255,199,69,240,255,255,255,127,72,139,125,208,72,129,199,176,0,0,0,72,139,85,168,72,139,117,160,185,0,0,0,0,232,231,237,255,255,15,40,200,15,87,192,15,46,200,122,2,116,2,235,15,199,133,124,255,255,255,0,0,0,0,233,115,2,0,0,199,69,252,0,0,0,0,72,139, 69,208,72,139,128,224,0,0,0,72,137,69,200,233,250,0,0,0,72,139,85,168,72,139,117,160,72,139,125,200,185,0,0,0,0,232,124,239,255,255,243,15,44,192,137,69,236,243,15,42,69,236,243,15,88,69,140,72,139,125,176,232,155,144,254,255,243,15,44,192,137,69,232, 72,139,125,200,72,131,199,40,72,139,85,168,72,139,117,160,185,0,0,0,0,232,65,239,255,255,243,15,44,192,137,69,228,243,15,42,69,228,243,15,88,69,136,72,139,125,176,232,248,145,254,255,243,15,44,192,137,69,224,139,85,16,139,69,232,41,208,137,69,220,139, 85,24,139,69,224,41,208,137,69,216,72,139,69,200,15,182,64,1,132,192,117,16,72,139,69,200,72,131,192,40,15,182,64,1,132,192,116,78,131,125,220,0,121,3,247,93,220,131,125,216,0,121,3,247,93,216,139,69,216,59,69,220,126,6,139,69,216,137,69,220,139,69,220, 59,69,240,125,38,243,15,42,69,236,243,15,17,5,177,131,6,0,243,15,42,69,228,243,15,17,5,176,131,6,0,139,69,220,137,69,240,139,69,252,137,69,244,255,69,252,72,131,69,200,80,139,69,252,59,69,248,15,140,250,254,255,255,131,125,240,6,126,15,199,133,124,255, 255,255,0,0,0,0,233,61,1,0,0,131,125,56,0,15,132,41,1,0,0,72,139,125,176,243,15,16,5,201,117,4,0,232,105,140,254,255,243,15,17,69,128,72,139,125,176,15,87,192,232,88,140,254,255,243,15,16,77,128,243,15,92,200,15,40,193,243,15,17,5,51,131,6,0,72,139,125, 176,243,15,16,5,147,117,4,0,232,201,141,254,255,243,15,17,69,132,72,139,125,176,15,87,192,232,184,141,254,255,243,15,16,77,132,243,15,92,200,15,40,193,243,15,17,5,9,131,6,0,184,0,0,0,0,137,5,234,130,6,0,184,0,0,0,0,137,5,235,130,6,0,72,139,69,176,72, 137,5,240,130,6,0,72,139,69,152,72,137,5,237,130,6,0,72,139,69,144,72,137,5,234,130,6,0,72,139,69,168,72,137,5,231,130,6,0,139,69,244,1,192,137,5,164,130,6,0,72,139,69,160,72,137,5,217,130,6,0,72,139,5,186,130,6,0,72,133,192,116,28,72,139,21,174,130, 6,0,72,139,53,159,130,6,0,72,141,61,192,130,6,0,232,156,157,0,0,235,26,72,139,21,162,130,6,0,72,139,53,147,130,6,0,72,141,61,164,130,6,0,232,244,157,0,0,139,69,24,72,139,117,184,72,139,125,176,65,137,193,68,139,69,16,185,0,0,0,0,72,141,21,64,251,255, 255,232,175,124,254,255,199,133,124,255,255,255,1,0,0,0,139,133,124,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,128,216,0,0,0,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,4,72,137,198,72,139,69,248,72,139, 184,224,0,0,0,232,73,232,1,0,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,178,255,255,255,76,141,37,29,240,255,255,72,141,61,166,43,4,0,232,15,204,1,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,240,0,0,0,72,137,218,76,137, 230,184,0,0,0,0,232,68,186,1,0,72,137,194,72,141,5,164,176,6,0,72,137,16,72,141,5,154,176,6,0,72,139,56,232,170,200,1,0,72,141,61,95,43,4,0,232,188,203,1,0,72,137,198,72,141,61,180,239,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,45,191,1,0,72,141, 61,63,43,4,0,232,146,203,1,0,72,137,198,72,141,61,138,239,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,3,191,1,0,72,141,61,35,43,4,0,232,104,203,1,0,72,137,198,72,141,61,96,239,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,217,190,1,0,72,141,5, 13,176,6,0,72,139,56,72,141,53,99,86,6,0,232,164,199,1,0,72,141,53,206,241,255,255,72,141,5,240,175,6,0,72,139,56,232,12,199,1,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,72,141,5,212,175,6, 0,72,139,56,232,0,2,2,0,72,137,69,240,199,69,252,1,0,0,0,232,141,174,253,255,72,137,194,72,139,69,240,72,137,80,48,72,141,61,153,37,4,0,232,203,202,1,0,72,137,198,72,139,125,240,72,129,199,80,1,0,0,232,84,228,255,255,72,141,61,115,42,4,0,232,172,202, 1,0,72,137,198,72,139,125,240,72,129,199,120,1,0,0,232,53,228,255,255,72,141,61,86,42,4,0,232,141,202,1,0,72,137,198,72,139,125,240,72,129,199,160,1,0,0,232,22,228,255,255,72,139,125,240,72,129,199,200,1,0,0,243,15,16,5,145,114,4,0,232,37,227,255,255, 72,139,125,240,72,129,199,240,1,0,0,243,15,16,5,121,114,4,0,232,13,227,255,255,72,139,69,208,137,198,72,139,85,200,191,0,0,0,0,232,195,76,1,0,72,137,69,232,72,139,69,232,72,139,56,72,141,53,234,41,4,0,232,31,229,3,0,133,192,116,23,72,139,69,232,72,139, 56,72,141,53,159,86,4,0,232,8,229,3,0,133,192,117,18,199,69,252,2,0,0,0,72,255,77,208,72,131,69,200,16,235,168,72,139,69,232,72,139,56,72,141,53,33,40,4,0,232,223,228,3,0,133,192,117,51,72,131,125,208,1,126,44,72,139,85,200,72,131,194,16,72,139,125,240, 72,129,199,200,1,0,0,190,1,0,0,0,232,37,231,255,255,72,131,109,208,2,72,131,69,200,32,233,94,255,255,255,72,139,69,232,72,139,56,72,141,53,105,41,4,0,232,149,228,3,0,133,192,117,51,72,131,125,208,1,126,44,72,139,85,200,72,131,194,16,72,139,125,240,72, 129,199,240,1,0,0,190,1,0,0,0,232,219,230,255,255,72,131,109,208,2,72,131,69,200,32,233,20,255,255,255,72,139,69,232,72,139,56,72,141,53,144,39,4,0,232,75,228,3,0,133,192,117,51,72,131,125,208,1,126,44,72,139,85,200,72,131,194,16,72,139,125,240,72,129, 199,80,1,0,0,190,1,0,0,0,232,145,230,255,255,72,131,109,208,2,72,131,69,200,32,233,202,254,255,255,72,139,69,232,72,139,56,72,141,53,217,40,4,0,232,1,228,3,0,133,192,117,51,72,131,125,208,1,126,44,72,139,85,200,72,131,194,16,72,139,125,240,72,129,199, 120,1,0,0,190,1,0,0,0,232,71,230,255,255,72,131,109,208,2,72,131,69,200,32,233,128,254,255,255,72,139,69,232,72,139,56,72,141,53,146,40,4,0,232,183,227,3,0,133,192,117,51,72,131,125,208,1,126,44,72,139,85,200,72,131,194,16,72,139,125,240,72,129,199,160, 1,0,0,190,1,0,0,0,232,253,229,255,255,72,131,109,208,2,72,131,69,200,32,233,54,254,255,255,72,131,125,208,0,116,37,72,139,85,200,72,131,69,200,16,72,139,69,208,137,198,72,255,77,208,72,139,125,240,72,129,199,40,1,0,0,232,205,230,255,255,235,24,72,139, 125,240,72,129,199,40,1,0,0,243,15,16,5,107,112,4,0,232,255,224,255,255,72,131,125,208,0,116,34,72,139,85,200,72,131,69,200,16,72,139,69,208,137,198,72,255,77,208,72,139,125,240,72,131,199,56,232,131,229,255,255,235,16,72,139,125,240,72,131,199,56,15, 87,192,232,198,224,255,255,72,131,125,208,0,116,34,72,139,85,200,72,131,69,200,16,72,139,69,208,137,198,72,255,77,208,72,139,125,240,72,131,199,96,232,74,229,255,255,235,21,72,139,125,240,72,131,199,96,243,15,16,5,244,111,4,0,232,136,224,255,255,72,131, 125,208,0,116,37,72,139,85,200,72,131,69,200,16,72,139,69,208,137,198,72,255,77,208,72,139,125,240,72,129,199,136,0,0,0,232,9,229,255,255,235,24,72,139,125,240,72,129,199,136,0,0,0,243,15,16,5,176,111,4,0,232,68,224,255,255,72,131,125,208,0,116,37,72, 139,85,200,72,131,69,200,16,72,139,69,208,137,198,72,255,77,208,72,139,125,240,72,129,199,176,0,0,0,232,197,228,255,255,235,24,72,139,125,240,72,129,199,176,0,0,0,243,15,16,5,108,111,4,0,232,0,224,255,255,72,131,125,208,0,116,37,72,139,85,200,72,131, 69,200,16,72,139,69,208,137,198,72,255,77,208,72,139,125,240,72,129,199,216,0,0,0,232,129,228,255,255,235,24,72,139,125,240,72,129,199,216,0,0,0,243,15,16,5,40,111,4,0,232,188,223,255,255,72,131,125,208,0,116,37,72,139,85,200,72,131,69,200,16,72,139, 69,208,137,198,72,255,77,208,72,139,125,240,72,129,199,0,1,0,0,232,61,228,255,255,235,21,243,15,42,69,252,72,139,125,240,72,129,199,0,1,0,0,232,123,223,255,255,72,139,69,240,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69, 232,15,182,128,200,1,0,0,60,1,117,15,72,139,69,232,15,182,128,201,1,0,0,132,192,116,26,72,139,125,232,72,141,53,194,36,4,0,184,0,0,0,0,232,64,192,2,0,233,161,0,0,0,72,139,69,232,243,15,16,136,208,1,0,0,15,87,192,15,46,200,15,149,192,15,154,194,9,208, 15,182,192,137,69,252,15,87,192,15,46,69,228,122,2,116,6,131,125,252,0,117,112,15,87,192,15,46,69,228,117,10,122,8,131,125,252,0,117,2,235,93,72,139,69,232,72,139,120,48,190,2,0,0,0,232,177,219,253,255,15,87,192,15,46,69,228,117,4,122,2,235,15,243,15, 16,5,40,110,4,0,243,15,17,69,224,235,8,15,87,192,243,15,17,69,224,72,139,125,232,72,129,199,200,1,0,0,243,15,16,69,224,232,157,222,255,255,72,139,69,232,72,139,120,48,190,1,0,0,0,232,102,219,253,255,201,195,85,72,137,229,72,131,236,96,72,137,125,216, 72,137,117,208,72,137,85,200,72,137,77,192,76,137,69,184,76,137,77,176,72,139,69,216,15,182,128,40,1,0,0,60,55,117,15,72,139,69,216,15,182,128,41,1,0,0,132,192,117,29,72,141,61,90,37,4,0,184,0,0,0,0,232,225,188,2,0,199,69,172,255,255,255,255,233,239, 1,0,0,72,139,69,216,72,139,176,48,1,0,0,72,141,69,240,72,141,77,248,72,141,85,252,72,139,125,200,73,137,192,232,145,199,255,255,133,192,117,43,72,139,69,216,72,139,128,48,1,0,0,72,139,48,72,141,61,35,37,4,0,184,0,0,0,0,232,143,188,2,0,199,69,172,255, 255,255,255,233,157,1,0,0,139,69,248,131,248,3,116,43,72,139,69,216,72,139,128,48,1,0,0,72,139,48,72,141,61,8,37,4,0,184,0,0,0,0,232,92,188,2,0,199,69,172,255,255,255,255,233,106,1,0,0,139,69,252,72,152,72,137,194,72,139,69,208,72,141,4,2,72,139,0,72, 137,69,232,72,139,125,216,72,131,199,96,72,139,85,208,72,139,117,200,185,1,0,0,0,232,147,227,255,255,72,139,69,176,243,15,17,0,72,139,125,216,72,129,199,136,0,0,0,72,139,85,208,72,139,117,200,185,1,0,0,0,232,110,227,255,255,72,139,69,16,243,15,17,0,72, 139,125,216,72,129,199,216,0,0,0,72,139,85,208,72,139,117,200,185,1,0,0,0,232,73,227,255,255,72,139,69,24,243,15,17,0,72,139,125,216,72,129,199,176,0,0,0,72,139,85,208,72,139,117,200,185,1,0,0,0,232,36,227,255,255,72,139,69,32,243,15,17,0,72,139,125, 216,72,129,199,0,1,0,0,72,139,85,208,72,139,117,200,185,1,0,0,0,232,255,226,255,255,72,139,69,40,243,15,17,0,72,139,125,216,72,129,199,200,1,0,0,72,139,85,208,72,139,117,200,185,1,0,0,0,232,218,226,255,255,72,139,69,48,243,15,17,0,72,139,125,216,72,129, 199,240,1,0,0,72,139,85,208,72,139,117,200,185,1,0,0,0,232,181,226,255,255,72,139,69,56,243,15,17,0,72,139,85,240,72,139,69,192,72,137,16,72,139,85,184,72,139,69,232,72,137,2,72,139,85,216,72,129,194,80,1,0,0,72,139,69,64,72,137,16,72,139,85,216,72,129, 194,120,1,0,0,72,139,69,72,72,137,16,72,139,85,216,72,129,194,160,1,0,0,72,139,69,80,72,137,16,199,69,172,0,0,0,0,139,69,172,201,195,85,72,137,229,72,131,196,128,72,137,125,184,72,137,117,176,72,137,85,168,72,137,77,160,76,137,69,152,76,137,77,144,72, 199,69,200,0,0,0,0,72,139,125,184,232,18,212,255,255,72,137,69,224,72,131,125,224,0,117,36,72,139,69,184,72,139,48,72,141,61,80,35,4,0,184,0,0,0,0,232,141,186,2,0,199,69,140,255,255,255,255,233,179,1,0,0,72,141,5,170,79,6,0,72,57,69,184,116,56,72,139, 125,224,232,235,211,255,255,72,137,69,200,72,131,125,200,0,117,36,72,139,69,184,72,139,48,72,141,61,42,35,4,0,184,0,0,0,0,232,72,186,2,0,199,69,140,255,255,255,255,233,110,1,0,0,72,139,69,224,139,64,24,72,152,72,193,224,3,137,69,248,72,131,125,144,0, 116,26,72,139,69,144,15,182,64,1,132,192,116,14,72,139,69,144,72,139,64,8,72,137,69,208,235,16,72,141,61,92,34,4,0,232,149,194,1,0,72,137,69,208,72,141,69,216,72,141,77,232,72,141,85,244,72,139,117,208,72,139,125,224,73,137,192,232,190,196,255,255,133, 192,116,7,139,69,232,133,192,116,7,199,69,244,255,255,255,255,72,131,125,152,0,116,26,72,139,69,152,15,182,64,1,132,192,116,14,72,139,69,152,72,139,64,8,72,137,69,208,235,16,72,141,61,4,29,4,0,232,54,194,1,0,72,137,69,208,72,141,69,216,72,141,77,232, 72,141,85,236,72,139,117,208,72,139,125,224,73,137,192,232,95,196,255,255,133,192,116,7,139,69,232,133,192,116,7,199,69,236,255,255,255,255,72,131,125,16,0,116,26,72,139,69,16,15,182,64,1,132,192,116,14,72,139,69,16,72,139,64,8,72,137,69,208,235,16,72, 141,61,160,33,4,0,232,215,193,1,0,72,137,69,208,72,141,69,216,72,141,77,232,72,141,85,240,72,139,117,208,72,139,125,224,73,137,192,232,0,196,255,255,133,192,116,7,139,69,232,133,192,116,7,199,69,240,255,255,255,255,72,139,85,176,72,139,69,200,72,137, 2,72,139,85,168,72,139,69,224,72,137,2,72,139,85,160,139,69,248,137,2,139,85,236,72,139,69,24,137,16,139,85,244,72,139,69,32,137,16,139,85,240,72,139,69,40,137,16,199,69,140,0,0,0,0,139,69,140,201,195,85,72,137,229,65,84,83,72,129,236,112,1,0,0,72,137, 189,40,255,255,255,72,137,181,32,255,255,255,72,137,149,24,255,255,255,72,137,141,16,255,255,255,243,15,17,133,12,255,255,255,243,15,17,141,8,255,255,255,76,137,133,0,255,255,255,76,137,141,248,254,255,255,72,139,133,40,255,255,255,72,137,133,120,255, 255,255,199,69,184,255,255,255,127,199,69,180,255,255,255,127,199,69,176,1,0,0,128,199,69,172,1,0,0,128,72,141,85,220,72,141,141,88,255,255,255,72,141,181,96,255,255,255,72,139,189,16,255,255,255,76,139,149,24,255,255,255,76,139,157,120,255,255,255,72, 141,133,64,255,255,255,72,137,68,36,64,72,141,133,72,255,255,255,72,137,68,36,56,72,141,133,80,255,255,255,72,137,68,36,48,72,141,69,188,72,137,68,36,40,72,141,69,192,72,137,68,36,32,72,141,69,204,72,137,68,36,24,72,141,69,208,72,137,68,36,16,72,141, 69,212,72,137,68,36,8,72,141,69,216,72,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,76,137,214,76,137,223,232,144,250,255,255,133,192,15,133,85,4,0,0,243,15,16,77,192,15,87,192,15,46,200,117,7,122,5,233,65,4,0,0,72,139,149,64,255,255,255,72,139, 141,72,255,255,255,72,139,181,80,255,255,255,72,139,189,96,255,255,255,76,141,85,236,76,141,157,104,255,255,255,72,141,157,112,255,255,255,72,141,69,228,72,137,68,36,24,72,141,69,232,72,137,68,36,16,72,141,69,224,72,137,68,36,8,72,137,20,36,73,137,201, 73,137,240,76,137,209,76,137,218,72,137,222,232,98,252,255,255,133,192,15,133,216,3,0,0,72,139,133,88,255,255,255,139,0,61,208,7,0,0,126,47,72,139,133,88,255,255,255,139,8,199,133,216,254,255,255,211,77,98,16,139,133,216,254,255,255,247,233,193,250,6, 137,200,193,248,31,137,209,41,193,137,141,236,254,255,255,235,10,199,133,236,254,255,255,1,0,0,0,139,133,236,254,255,255,137,69,152,199,69,168,0,0,0,0,184,0,0,0,0,137,69,200,233,96,3,0,0,72,139,141,64,255,255,255,72,139,181,72,255,255,255,72,139,189, 80,255,255,255,243,15,16,77,212,243,15,16,69,208,15,40,216,243,15,88,157,8,255,255,255,243,15,16,69,216,243,15,88,133,12,255,255,255,68,139,69,228,68,139,85,232,68,139,93,224,72,139,133,88,255,255,255,72,139,80,8,139,69,236,15,175,69,168,72,152,72,141, 28,2,139,85,168,76,139,165,32,255,255,255,72,141,69,156,72,137,68,36,40,72,141,69,160,72,137,68,36,32,72,141,69,164,72,137,68,36,24,72,137,76,36,16,72,137,116,36,8,72,137,60,36,15,40,209,15,40,203,65,137,209,68,137,209,68,137,218,72,137,222,76,137,231, 232,158,78,253,255,243,15,42,77,184,243,15,16,69,164,15,46,200,119,2,235,12,243,15,16,69,164,243,15,44,192,137,69,184,243,15,42,77,176,243,15,16,69,164,15,46,193,119,2,235,12,243,15,16,69,164,243,15,44,192,137,69,176,243,15,16,77,160,243,15,16,69,156, 243,15,92,200,243,15,42,69,180,15,46,193,119,2,235,27,243,15,16,77,160,243,15,16,69,156,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,180,243,15,16,77,160,243,15,16,69,156,243,15,88,200,243,15,42,69,172,15,46,200,119,2,235,21,243,15,16,77,160, 243,15,16,69,156,243,15,88,193,243,15,44,192,137,69,172,243,15,16,77,188,15,87,192,15,46,200,117,7,122,5,233,0,2,0,0,139,69,224,133,192,120,87,243,15,16,69,216,15,40,200,243,15,88,141,12,255,255,255,243,15,17,141,240,254,255,255,72,139,133,88,255,255, 255,72,139,80,8,139,69,236,15,175,69,168,72,152,72,1,194,139,69,224,72,152,72,141,4,2,243,15,16,0,72,139,189,80,255,255,255,232,35,221,255,255,243,15,88,133,240,254,255,255,243,15,17,69,148,235,37,243,15,16,133,12,255,255,255,243,15,88,69,200,243,15, 17,69,148,243,15,16,77,212,243,15,16,69,200,243,15,88,193,243,15,17,69,200,139,69,232,133,192,120,39,72,139,133,88,255,255,255,72,139,80,8,139,69,236,15,175,69,168,72,152,72,1,194,139,69,232,72,152,72,141,4,2,139,0,137,69,196,235,8,184,0,0,0,0,137,69, 196,243,15,16,69,208,15,40,208,243,15,88,149,8,255,255,255,243,15,17,149,244,254,255,255,72,139,189,72,255,255,255,243,15,16,69,196,232,144,220,255,255,243,15,88,133,244,254,255,255,243,15,17,69,144,72,139,133,112,255,255,255,72,139,64,48,72,137,133, 56,255,255,255,233,236,0,0,0,72,139,189,56,255,255,255,232,204,185,1,0,72,137,133,48,255,255,255,72,131,189,48,255,255,255,0,15,132,185,0,0,0,72,139,133,48,255,255,255,76,139,16,72,139,189,104,255,255,255,72,139,133,88,255,255,255,72,139,80,8,139,69, 236,15,175,69,168,72,152,72,141,4,2,73,137,195,72,141,85,132,72,141,77,140,243,15,16,69,144,139,117,148,72,139,157,32,255,255,255,76,139,165,56,255,255,255,72,141,69,128,72,137,68,36,8,72,141,69,136,72,137,4,36,73,137,209,73,137,200,15,40,200,137,181, 220,254,255,255,243,15,16,133,220,254,255,255,72,137,249,76,137,218,72,137,222,76,137,231,65,255,210,139,69,140,59,69,184,125,6,139,69,140,137,69,184,139,69,132,59,69,180,125,6,139,69,132,137,69,180,139,69,136,59,69,176,126,6,139,69,136,137,69,176,139, 69,128,59,69,172,126,6,139,69,128,137,69,172,72,139,133,56,255,255,255,72,139,64,8,72,137,133,56,255,255,255,72,131,189,56,255,255,255,0,15,133,6,255,255,255,139,69,152,1,69,168,72,139,133,88,255,255,255,139,0,59,69,168,15,143,142,252,255,255,72,139, 149,0,255,255,255,139,69,184,137,2,72,139,149,248,254,255,255,139,69,180,137,2,72,139,85,16,139,69,176,137,2,72,139,85,24,139,69,172,137,2,72,129,196,112,1,0,0,91,65,92,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224,243, 15,17,69,220,243,15,17,77,216,68,137,69,212,68,137,77,208,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224,243,15,17,69,220,243,15,17,77,216,68,137,69,212,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,137,85,232, 72,137,77,224,243,15,17,69,220,243,15,17,77,216,68,137,69,212,201,195,85,72,137,229,65,84,83,72,129,236,224,1,0,0,72,137,189,200,254,255,255,72,137,181,192,254,255,255,72,137,149,184,254,255,255,72,137,141,176,254,255,255,243,15,17,133,172,254,255,255, 243,15,17,141,168,254,255,255,68,137,133,164,254,255,255,72,139,5,253,63,6,0,72,139,16,72,137,85,232,49,210,72,139,133,200,254,255,255,72,137,133,56,255,255,255,72,141,85,184,72,141,141,24,255,255,255,72,141,181,32,255,255,255,72,139,189,176,254,255, 255,76,139,149,184,254,255,255,76,139,157,56,255,255,255,72,141,133,248,254,255,255,72,137,68,36,64,72,141,133,0,255,255,255,72,137,68,36,56,72,141,133,8,255,255,255,72,137,68,36,48,72,141,69,148,72,137,68,36,40,72,141,69,152,72,137,68,36,32,72,141,69, 168,72,137,68,36,24,72,141,69,172,72,137,68,36,16,72,141,69,176,72,137,68,36,8,72,141,69,180,72,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,76,137,214,76,137,223,232,151,244,255,255,133,192,15,133,94,14,0,0,243,15,16,77,152,15,87,192,15,46,200, 117,15,122,13,131,189,164,254,255,255,0,15,133,66,14,0,0,72,139,149,248,254,255,255,72,139,141,0,255,255,255,72,139,181,8,255,255,255,72,139,189,32,255,255,255,76,141,85,204,76,141,157,40,255,255,255,72,141,157,48,255,255,255,72,141,69,196,72,137,68, 36,24,72,141,69,200,72,137,68,36,16,72,141,69,192,72,137,68,36,8,72,137,20,36,73,137,201,73,137,240,76,137,209,76,137,218,72,137,222,232,97,246,255,255,133,192,116,5,233,216,13,0,0,72,139,133,24,255,255,255,139,0,137,69,144,72,139,133,24,255,255,255, 72,139,64,8,72,137,133,16,255,255,255,131,189,164,254,255,255,0,15,132,188,12,0,0,243,15,16,77,168,15,87,192,15,46,200,122,2,116,5,233,130,2,0,0,184,236,120,173,96,137,69,140,184,236,120,173,224,137,69,136,199,69,132,0,0,0,0,243,15,16,77,180,243,15,16, 133,172,254,255,255,243,15,88,193,243,15,17,69,160,199,69,188,0,0,0,0,233,56,2,0,0,139,69,192,133,192,120,113,243,15,16,69,180,15,40,200,243,15,88,141,172,254,255,255,139,69,204,15,175,69,188,72,152,72,137,194,72,3,149,16,255,255,255,139,69,192,72,152, 72,141,4,2,243,15,16,0,243,15,88,193,243,15,17,69,164,72,139,189,8,255,255,255,243,15,16,69,164,232,103,216,255,255,72,139,189,192,254,255,255,232,245,122,254,255,243,15,44,192,137,133,112,255,255,255,139,133,112,255,255,255,131,192,2,137,133,108,255, 255,255,235,103,139,69,160,137,69,164,243,15,16,77,176,243,15,16,69,160,243,15,88,193,243,15,17,69,160,72,139,189,8,255,255,255,243,15,16,69,164,232,22,216,255,255,72,139,189,192,254,255,255,232,164,122,254,255,243,15,44,192,137,133,112,255,255,255,72, 139,189,8,255,255,255,243,15,16,69,160,232,239,215,255,255,72,139,189,192,254,255,255,232,125,122,254,255,243,15,44,192,137,133,108,255,255,255,139,69,200,133,192,120,48,139,69,204,15,175,69,188,72,152,72,137,194,72,3,149,16,255,255,255,139,69,200,72, 152,72,141,4,2,243,15,16,8,243,15,16,69,172,243,15,88,193,243,15,17,69,128,235,8,184,0,0,0,0,137,69,128,243,15,16,69,128,15,46,69,136,119,2,235,6,139,69,128,137,69,136,243,15,16,77,128,243,15,16,69,140,15,46,193,119,2,235,6,139,69,128,137,69,140,139, 69,144,255,200,59,69,188,116,18,139,133,108,255,255,255,59,133,112,255,255,255,15,132,180,0,0,0,72,139,189,0,255,255,255,243,15,16,69,136,232,67,215,255,255,243,15,88,133,168,254,255,255,72,139,189,192,254,255,255,232,97,123,254,255,15,40,200,243,15, 16,69,184,243,15,88,193,243,15,44,216,72,139,189,0,255,255,255,243,15,16,69,140,232,14,215,255,255,243,15,88,133,168,254,255,255,72,139,189,192,254,255,255,232,44,123,254,255,243,68,15,44,224,72,139,189,192,254,255,255,232,129,104,254,255,72,137,198, 139,149,108,255,255,255,139,189,112,255,255,255,72,139,133,184,254,255,255,72,137,4,36,65,137,217,65,137,208,68,137,225,137,250,72,141,61,198,23,4,0,184,0,0,0,0,232,220,75,2,0,255,69,132,184,236,120,173,96,137,69,140,184,236,120,173,224,137,69,136,129, 125,132,208,7,0,0,15,143,125,8,0,0,129,189,112,255,255,255,183,11,0,0,15,143,109,8,0,0,255,69,188,139,69,188,59,69,144,15,140,188,253,255,255,233,89,8,0,0,199,133,104,255,255,255,255,255,255,255,199,133,100,255,255,255,0,0,0,0,184,0,0,0,0,137,133,96, 255,255,255,184,0,0,0,0,137,133,92,255,255,255,199,133,84,255,255,255,0,0,0,0,72,139,189,56,255,255,255,72,131,199,56,72,139,149,184,254,255,255,72,139,181,176,254,255,255,185,1,0,0,0,232,149,213,255,255,243,15,44,248,72,141,117,208,232,167,224,255,255, 139,69,196,133,192,15,136,64,5,0,0,72,139,189,192,254,255,255,232,140,103,254,255,72,137,198,72,141,61,74,23,4,0,184,0,0,0,0,232,9,75,2,0,199,69,188,0,0,0,0,139,69,180,137,69,160,233,167,1,0,0,139,69,192,133,192,120,48,139,69,204,15,175,69,188,72,152, 72,137,194,72,3,149,16,255,255,255,139,69,192,72,152,72,141,4,2,243,15,16,8,243,15,16,69,180,243,15,88,193,243,15,17,69,164,235,25,139,69,160,137,69,164,243,15,16,77,176,243,15,16,69,160,243,15,88,193,243,15,17,69,160,139,69,200,133,192,120,38,139,69, 204,15,175,69,188,72,152,72,137,194,72,3,149,16,255,255,255,139,69,200,72,152,72,141,4,2,139,0,137,133,96,255,255,255,235,11,184,0,0,0,0,137,133,96,255,255,255,139,69,204,15,175,69,188,72,152,72,137,194,72,3,149,16,255,255,255,139,69,196,72,152,72,141, 4,2,139,0,137,133,92,255,255,255,72,139,189,8,255,255,255,243,15,16,69,164,232,17,213,255,255,243,15,88,133,172,254,255,255,72,139,189,192,254,255,255,232,151,119,254,255,243,15,17,133,88,255,255,255,243,15,90,141,88,255,255,255,242,15,16,5,246,93,4, 0,242,15,88,193,242,15,44,192,137,133,84,255,255,255,139,69,192,133,192,121,14,139,133,84,255,255,255,59,133,104,255,255,255,116,124,243,15,16,69,172,243,15,88,133,96,255,255,255,72,139,189,0,255,255,255,232,169,212,255,255,15,40,200,243,15,88,141,168, 254,255,255,243,15,17,141,124,254,255,255,72,139,189,248,254,255,255,243,15,16,133,92,255,255,255,232,130,212,255,255,243,15,16,141,124,254,255,255,243,15,92,200,15,40,193,72,139,189,192,254,255,255,232,153,120,254,255,243,15,90,192,139,181,84,255,255, 255,72,141,61,208,21,4,0,184,1,0,0,0,232,117,73,2,0,255,133,100,255,255,255,139,133,84,255,255,255,137,133,104,255,255,255,129,189,100,255,255,255,231,3,0,0,15,143,17,3,0,0,255,69,188,139,69,188,59,69,144,15,140,77,254,255,255,199,133,104,255,255,255, 255,255,255,255,139,69,144,255,200,137,69,188,233,193,1,0,0,139,69,192,133,192,120,51,139,69,204,15,175,69,188,72,152,72,137,194,72,3,149,16,255,255,255,139,69,192,72,152,72,141,4,2,243,15,16,8,243,15,16,69,180,243,15,88,193,243,15,17,133,80,255,255, 255,235,28,243,15,16,77,176,243,15,16,69,160,243,15,92,193,243,15,17,69,160,139,69,160,137,133,80,255,255,255,139,69,200,133,192,120,38,139,69,204,15,175,69,188,72,152,72,137,194,72,3,149,16,255,255,255,139,69,200,72,152,72,141,4,2,139,0,137,133,96,255, 255,255,235,11,184,0,0,0,0,137,133,96,255,255,255,139,69,204,15,175,69,188,72,152,72,137,194,72,3,149,16,255,255,255,139,69,196,72,152,72,141,4,2,139,0,137,133,92,255,255,255,72,139,189,8,255,255,255,243,15,16,133,80,255,255,255,232,62,211,255,255,243, 15,88,133,172,254,255,255,72,139,189,192,254,255,255,232,196,117,254,255,243,15,17,133,88,255,255,255,243,15,90,141,88,255,255,255,242,15,16,5,35,92,4,0,242,15,88,193,242,15,44,192,137,133,84,255,255,255,139,69,192,133,192,121,18,139,133,84,255,255,255, 59,133,104,255,255,255,15,132,137,0,0,0,243,15,16,69,172,15,40,200,243,15,88,141,168,254,255,255,243,15,17,141,128,254,255,255,72,139,189,0,255,255,255,243,15,16,133,96,255,255,255,232,191,210,255,255,243,15,16,141,128,254,255,255,243,15,88,200,243,15, 17,141,132,254,255,255,72,139,189,248,254,255,255,243,15,16,133,92,255,255,255,232,151,210,255,255,243,15,88,133,132,254,255,255,72,139,189,192,254,255,255,232,181,118,254,255,243,15,90,192,139,181,84,255,255,255,72,141,61,236,19,4,0,184,1,0,0,0,232, 145,71,2,0,255,133,100,255,255,255,139,133,84,255,255,255,137,133,104,255,255,255,129,189,100,255,255,255,231,3,0,0,15,143,45,1,0,0,255,77,188,131,125,188,0,15,137,53,254,255,255,131,189,100,255,255,255,3,15,143,19,1,0,0,243,15,16,69,172,15,40,200,243, 15,88,141,168,254,255,255,243,15,17,141,136,254,255,255,72,139,189,0,255,255,255,243,15,16,133,96,255,255,255,232,0,210,255,255,243,15,16,141,136,254,255,255,243,15,88,200,243,15,17,141,140,254,255,255,72,139,189,248,254,255,255,243,15,16,133,92,255, 255,255,232,216,209,255,255,243,15,88,133,140,254,255,255,72,139,189,192,254,255,255,232,246,117,254,255,243,15,90,192,139,181,84,255,255,255,131,198,10,72,141,61,42,19,4,0,184,1,0,0,0,232,207,70,2,0,243,15,16,69,172,15,40,200,243,15,88,141,168,254,255, 255,243,15,17,141,144,254,255,255,72,139,189,0,255,255,255,243,15,16,133,96,255,255,255,232,122,209,255,255,243,15,16,141,144,254,255,255,243,15,88,200,243,15,17,141,148,254,255,255,72,139,189,248,254,255,255,243,15,16,133,92,255,255,255,232,82,209,255, 255,243,15,16,141,148,254,255,255,243,15,92,200,15,40,193,72,139,189,192,254,255,255,232,105,117,254,255,243,15,90,192,139,181,84,255,255,255,131,198,10,72,141,61,157,18,4,0,184,1,0,0,0,232,66,70,2,0,72,141,85,208,72,141,117,208,72,141,61,147,18,4,0, 184,0,0,0,0,232,41,70,2,0,243,15,16,69,168,15,46,5,49,90,4,0,122,2,116,2,235,17,72,141,61,127,16,4,0,184,0,0,0,0,232,6,70,2,0,72,139,181,184,254,255,255,72,141,61,121,18,4,0,184,0,0,0,0,232,238,69,2,0,233,170,2,0,0,243,15,16,77,184,15,87,192,15,46,200, 119,5,233,152,2,0,0,72,139,189,192,254,255,255,232,58,98,254,255,72,137,198,72,141,61,94,18,4,0,184,0,0,0,0,232,183,69,2,0,139,69,180,137,69,160,199,69,188,0,0,0,0,233,109,1,0,0,139,69,192,133,192,120,51,139,69,204,15,175,69,188,72,152,72,137,194,72, 3,149,16,255,255,255,139,69,192,72,152,72,141,4,2,243,15,16,8,243,15,16,69,180,243,15,88,193,243,15,17,133,76,255,255,255,235,28,139,69,160,137,133,76,255,255,255,243,15,16,77,176,243,15,16,69,160,243,15,88,193,243,15,17,69,160,139,69,200,133,192,120, 38,139,69,204,15,175,69,188,72,152,72,137,194,72,3,149,16,255,255,255,139,69,200,72,152,72,141,4,2,139,0,137,133,96,255,255,255,235,11,184,0,0,0,0,137,133,96,255,255,255,72,139,189,8,255,255,255,243,15,16,133,76,255,255,255,232,218,207,255,255,243,15, 88,133,172,254,255,255,72,139,189,192,254,255,255,232,96,114,254,255,243,15,17,133,88,255,255,255,243,15,90,141,88,255,255,255,242,15,16,5,191,88,4,0,242,15,88,193,242,15,44,192,137,133,84,255,255,255,139,69,192,133,192,121,14,139,133,84,255,255,255, 59,133,104,255,255,255,116,97,243,15,16,69,172,15,40,200,243,15,88,141,168,254,255,255,243,15,17,141,152,254,255,255,72,139,189,0,255,255,255,243,15,16,133,96,255,255,255,232,95,207,255,255,243,15,88,133,152,254,255,255,72,139,189,192,254,255,255,232, 125,115,254,255,243,15,90,192,139,181,84,255,255,255,72,141,61,180,16,4,0,184,1,0,0,0,232,89,68,2,0,255,133,100,255,255,255,139,133,84,255,255,255,137,133,104,255,255,255,129,189,100,255,255,255,231,3,0,0,127,15,255,69,188,139,69,188,59,69,144,15,140, 135,254,255,255,131,189,100,255,255,255,0,117,19,72,141,61,208,16,4,0,184,0,0,0,0,232,18,68,2,0,235,103,131,189,100,255,255,255,1,117,94,243,15,16,69,172,15,40,200,243,15,88,141,168,254,255,255,243,15,17,141,156,254,255,255,72,139,189,0,255,255,255,243, 15,16,133,96,255,255,255,232,178,206,255,255,243,15,88,133,156,254,255,255,72,139,189,192,254,255,255,232,208,114,254,255,243,15,90,192,139,181,84,255,255,255,131,198,10,72,141,61,4,16,4,0,184,1,0,0,0,232,169,67,2,0,243,15,16,69,184,243,15,90,192,72, 141,61,218,13,4,0,184,1,0,0,0,232,143,67,2,0,72,141,117,208,72,141,61,232,13,4,0,184,0,0,0,0,232,122,67,2,0,243,15,16,69,168,15,46,5,130,87,4,0,122,2,116,2,235,17,72,141,61,208,13,4,0,184,0,0,0,0,232,87,67,2,0,72,139,181,184,254,255,255,72,141,61,202, 15,4,0,184,0,0,0,0,232,63,67,2,0,243,15,16,77,148,15,87,192,15,46,200,117,7,122,5,233,170,2,0,0,139,69,180,137,69,160,199,69,188,0,0,0,0,233,150,1,0,0,139,69,192,133,192,120,62,243,15,16,69,180,15,40,200,243,15,88,141,172,254,255,255,139,69,204,15,175, 69,188,72,152,72,137,194,72,3,149,16,255,255,255,139,69,192,72,152,72,141,4,2,243,15,16,0,243,15,88,193,243,15,17,133,72,255,255,255,235,40,243,15,16,133,172,254,255,255,243,15,88,69,160,243,15,17,133,72,255,255,255,243,15,16,77,176,243,15,16,69,160, 243,15,88,193,243,15,17,69,160,139,69,200,133,192,120,35,139,69,204,15,175,69,188,72,152,72,137,194,72,3,149,16,255,255,255,139,69,200,72,152,72,141,4,2,139,0,137,69,156,235,8,184,0,0,0,0,137,69,156,243,15,16,69,172,15,40,200,243,15,88,141,168,254,255, 255,243,15,17,141,160,254,255,255,72,139,189,0,255,255,255,243,15,16,69,156,232,40,205,255,255,243,15,88,133,160,254,255,255,243,15,17,133,68,255,255,255,72,139,133,48,255,255,255,72,139,64,48,72,137,133,240,254,255,255,233,150,0,0,0,72,139,189,240,254, 255,255,232,97,170,1,0,72,137,133,232,254,255,255,72,131,189,232,254,255,255,0,116,103,72,139,133,232,254,255,255,76,139,80,32,72,139,141,40,255,255,255,139,69,204,15,175,69,188,72,152,72,3,133,16,255,255,255,72,137,198,139,133,164,254,255,255,243,15, 16,133,68,255,255,255,139,149,72,255,255,255,72,139,189,192,254,255,255,76,139,141,240,254,255,255,65,137,192,15,40,200,137,149,108,254,255,255,243,15,16,133,108,254,255,255,72,137,242,72,137,254,76,137,207,65,255,210,72,139,133,240,254,255,255,72,139, 64,8,72,137,133,240,254,255,255,72,131,189,240,254,255,255,0,15,133,92,255,255,255,255,69,188,139,69,188,59,69,144,15,140,94,254,255,255,233,241,0,0,0,243,15,16,77,148,15,87,192,15,46,200,117,7,122,5,233,182,0,0,0,199,133,64,255,255,255,0,0,0,0,233,152, 0,0,0,72,139,133,48,255,255,255,72,139,64,48,72,137,133,224,254,255,255,235,116,72,139,189,224,254,255,255,232,114,169,1,0,72,137,133,216,254,255,255,72,131,189,216,254,255,255,0,116,69,72,139,133,216,254,255,255,76,139,72,32,72,139,141,40,255,255,255, 139,69,204,15,175,133,64,255,255,255,72,152,72,3,133,16,255,255,255,72,137,194,72,139,181,192,254,255,255,72,139,189,224,254,255,255,65,184,0,0,0,0,15,87,201,15,87,192,65,255,209,72,139,133,224,254,255,255,72,139,64,8,72,137,133,224,254,255,255,72,131, 189,224,254,255,255,0,117,130,255,133,64,255,255,255,139,133,64,255,255,255,59,69,144,15,140,89,255,255,255,72,139,189,192,254,255,255,232,11,93,254,255,72,137,198,72,139,149,184,254,255,255,72,141,61,74,13,4,0,184,0,0,0,0,232,129,64,2,0,72,139,5,226, 48,6,0,72,139,85,232,72,51,16,116,5,232,186,196,3,0,72,129,196,224,1,0,0,91,65,92,201,195,85,72,137,229,65,84,83,72,129,236,240,0,0,0,72,137,125,152,72,137,117,144,72,137,85,136,72,137,77,128,76,137,133,120,255,255,255,76,137,141,112,255,255,255,243, 15,17,133,108,255,255,255,243,15,17,141,104,255,255,255,72,139,69,152,72,137,69,200,72,141,85,236,72,141,77,184,72,141,117,192,72,139,125,128,76,139,85,136,76,139,93,200,72,141,69,160,72,137,68,36,64,72,141,69,168,72,137,68,36,56,72,141,69,176,72,137, 68,36,48,72,141,69,212,72,137,68,36,40,72,141,69,216,72,137,68,36,32,72,141,69,220,72,137,68,36,24,72,141,69,224,72,137,68,36,16,72,141,69,228,72,137,68,36,8,72,141,69,232,72,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,76,137,214,76,137,223, 232,77,229,255,255,133,192,15,133,204,0,0,0,243,15,16,77,216,15,87,192,15,46,200,122,6,15,132,185,0,0,0,72,139,85,160,72,139,77,168,72,139,117,176,243,15,16,77,212,243,15,16,69,224,15,40,208,243,15,88,149,104,255,255,255,243,15,16,109,228,243,15,16,69, 232,243,15,88,133,108,255,255,255,139,125,236,76,139,69,192,76,139,85,184,76,139,157,112,255,255,255,72,139,157,120,255,255,255,76,139,101,144,139,69,56,137,68,36,56,139,69,48,137,68,36,48,139,69,40,137,68,36,40,139,69,32,137,68,36,32,139,69,24,137,68, 36,24,139,69,16,137,68,36,16,72,137,84,36,8,72,137,12,36,73,137,241,15,40,225,15,40,218,15,40,213,15,40,200,137,189,92,255,255,255,243,15,16,133,92,255,255,255,76,137,217,72,137,218,76,137,230,76,137,215,232,98,65,253,255,137,133,100,255,255,255,235, 10,199,133,100,255,255,255,0,0,0,0,139,133,100,255,255,255,72,129,196,240,0,0,0,91,65,92,201,195,85,72,137,229,83,72,131,236,24,72,141,29,254,222,255,255,72,141,61,109,11,4,0,232,7,170,1,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185, 24,2,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,58,152,1,0,72,137,194,72,141,5,170,142,6,0,72,137,16,72,141,5,160,142,6,0,72,139,56,232,160,166,1,0,72,141,53,5,227,255,255,72,141,5,138,142,6,0,72,139,56,232,150,165,1,0,72,141,5,123,142,6,0,72,139,56, 72,141,53,1,53,6,0,232,2,166,1,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,72,141,5,66,142,6,0,72,139,56,232,118,224,1,0,72,137,69,240,72,139,69,216,72,139,0,72,137,69,232,199,69,252,0,0,0,0,72,139, 69,232,72,131,192,4,15,182,0,60,115,117,4,131,77,252,1,72,139,85,240,139,69,252,137,130,0,1,0,0,72,139,125,240,72,129,199,208,0,0,0,243,15,16,5,73,81,4,0,232,221,193,255,255,232,192,140,253,255,72,137,194,72,139,69,240,72,137,144,8,1,0,0,72,139,69,208, 137,198,72,139,85,200,191,0,0,0,0,232,128,43,1,0,72,137,69,224,72,139,69,224,72,139,56,72,141,53,30,7,4,0,232,220,195,3,0,133,192,117,48,72,131,125,208,1,126,41,72,139,85,200,72,131,194,16,72,139,125,240,72,129,199,208,0,0,0,190,1,0,0,0,232,34,198,255, 255,72,131,109,208,2,72,131,69,200,32,235,161,139,69,252,131,224,1,132,192,116,63,72,131,125,208,0,116,34,72,139,85,200,72,131,69,200,16,72,139,69,208,137,198,72,255,77,208,72,139,125,240,72,131,199,48,232,62,198,255,255,235,79,72,139,125,240,72,131, 199,48,72,141,53,64,54,6,0,232,144,193,255,255,235,57,72,131,125,208,0,116,34,72,139,85,200,72,131,69,200,16,72,139,69,208,137,198,72,255,77,208,72,139,125,240,72,131,199,48,232,166,197,255,255,235,16,72,139,125,240,72,131,199,48,15,87,192,232,233,192, 255,255,72,131,125,208,0,116,34,72,139,85,200,72,131,69,200,16,72,139,69,208,137,198,72,255,77,208,72,139,125,240,72,131,199,88,232,109,197,255,255,235,16,72,139,125,240,72,131,199,88,15,87,192,232,176,192,255,255,72,131,125,208,0,116,34,72,139,85,200, 72,131,69,200,16,72,139,69,208,137,198,72,255,77,208,72,139,125,240,72,131,239,128,232,52,197,255,255,235,16,72,139,125,240,72,131,239,128,15,87,192,232,119,192,255,255,72,131,125,208,0,116,37,72,139,85,200,72,131,69,200,16,72,139,69,208,137,198,72,255, 77,208,72,139,125,240,72,129,199,168,0,0,0,232,248,196,255,255,235,24,72,139,125,240,72,129,199,168,0,0,0,243,15,16,5,159,79,4,0,232,51,192,255,255,72,131,125,208,0,116,36,72,139,69,208,137,198,72,139,85,200,191,0,0,0,0,232,226,41,1,0,72,137,194,72,139, 69,240,72,137,144,248,0,0,0,235,18,72,139,69,240,72,141,21,20,53,6,0,72,137,144,248,0,0,0,72,139,69,240,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,15,182,128,208,0,0,0,60,1,117,15,72,139,69,232,15,182,128,209,0, 0,0,132,192,116,26,72,139,125,232,72,141,53,61,5,4,0,184,0,0,0,0,232,187,160,2,0,233,167,0,0,0,72,139,69,232,243,15,16,136,216,0,0,0,15,87,192,15,46,200,15,149,192,15,154,194,9,208,15,182,192,137,69,252,15,87,192,15,46,69,228,122,2,116,6,131,125,252, 0,117,118,15,87,192,15,46,69,228,117,10,122,8,131,125,252,0,117,2,235,99,72,139,69,232,72,139,184,8,1,0,0,190,2,0,0,0,232,41,188,253,255,15,87,192,15,46,69,228,117,4,122,2,235,15,243,15,16,5,160,78,4,0,243,15,17,69,224,235,8,15,87,192,243,15,17,69,224, 72,139,125,232,72,129,199,208,0,0,0,243,15,16,69,224,232,21,191,255,255,72,139,69,232,72,139,184,8,1,0,0,190,1,0,0,0,232,219,187,253,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,72,199,192,255,255,255,255,72,131, 248,255,116,37,72,199,193,255,255,255,255,72,139,69,232,72,139,128,248,0,0,0,72,139,48,72,139,125,224,186,80,0,0,0,232,231,190,3,0,235,28,72,139,69,232,72,139,128,248,0,0,0,72,139,48,72,139,125,224,186,80,0,0,0,232,56,0,0,0,72,139,69,224,72,131,192,79, 198,0,0,72,139,125,224,232,209,192,3,0,137,69,252,184,80,0,0,0,43,69,252,137,194,139,69,252,72,152,72,137,198,72,3,117,224,72,139,125,216,232,138,40,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255, 255,255,72,139,85,232,72,139,117,240,72,139,125,248,232,101,190,3,0,201,195,85,72,137,229,83,72,129,236,232,0,0,0,72,137,189,88,255,255,255,72,137,181,80,255,255,255,72,137,149,72,255,255,255,72,137,141,64,255,255,255,243,15,17,133,60,255,255,255,243, 15,17,141,56,255,255,255,76,137,133,48,255,255,255,76,137,141,40,255,255,255,72,139,69,16,72,137,133,32,255,255,255,72,139,69,24,72,137,133,24,255,255,255,72,139,5,2,42,6,0,72,139,16,72,137,85,232,49,210,72,139,133,88,255,255,255,72,137,133,112,255,255, 255,72,139,189,112,255,255,255,72,129,199,208,0,0,0,72,139,149,72,255,255,255,72,139,181,64,255,255,255,185,0,0,0,0,232,177,195,255,255,15,40,200,15,87,192,15,46,200,122,2,116,2,235,67,72,139,133,40,255,255,255,199,0,255,255,255,127,72,139,133,40,255, 255,255,139,16,72,139,133,48,255,255,255,137,16,72,139,133,24,255,255,255,199,0,1,0,0,128,72,139,133,24,255,255,255,139,16,72,139,133,32,255,255,255,137,16,233,140,1,0,0,72,139,189,112,255,255,255,72,131,199,88,72,139,149,72,255,255,255,72,139,181,64, 255,255,255,185,0,0,0,0,232,32,197,255,255,243,15,88,133,60,255,255,255,72,139,189,80,255,255,255,232,69,102,254,255,243,15,44,192,137,69,140,72,139,189,112,255,255,255,72,131,239,128,72,139,149,72,255,255,255,72,139,181,64,255,255,255,185,0,0,0,0,232, 226,196,255,255,243,15,88,133,56,255,255,255,72,139,189,80,255,255,255,232,159,103,254,255,243,15,44,192,137,69,136,72,139,189,80,255,255,255,232,132,165,253,255,137,69,132,139,125,132,232,164,86,2,0,137,69,128,139,125,132,232,177,86,2,0,137,133,124, 255,255,255,72,139,133,112,255,255,255,139,128,0,1,0,0,131,224,1,132,192,116,54,199,133,96,255,255,255,2,0,0,0,72,139,189,112,255,255,255,72,131,199,48,72,139,149,72,255,255,255,72,139,181,64,255,255,255,185,0,0,0,0,232,244,196,255,255,72,137,133,104, 255,255,255,235,53,199,133,96,255,255,255,1,0,0,0,72,139,189,112,255,255,255,72,131,199,48,72,139,149,72,255,255,255,72,139,181,64,255,255,255,185,0,0,0,0,232,68,194,255,255,243,15,17,133,104,255,255,255,72,141,149,96,255,255,255,72,141,117,144,72,139, 189,112,255,255,255,232,12,253,255,255,72,139,149,48,255,255,255,139,69,140,137,2,72,139,149,40,255,255,255,139,69,136,137,2,139,69,128,72,99,216,72,141,125,144,232,44,190,3,0,72,15,175,195,137,194,139,69,140,141,4,2,137,194,72,139,133,32,255,255,255, 137,16,139,133,124,255,255,255,139,85,136,1,194,72,139,133,24,255,255,255,137,16,72,139,5,224,39,6,0,72,139,85,232,72,51,16,116,5,232,184,187,3,0,72,129,196,232,0,0,0,91,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224, 243,15,17,69,220,243,15,17,77,216,68,137,69,212,68,137,77,208,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224,243,15,17,69,220,243,15,17,77,216,68,137,69,212,139,117,212,72,141,61,228,3,4,0,184,0,0,0,0,232, 28,150,2,0,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224,243,15,17,69,220,243,15,17,77,216,68,137,69,212,139,117,212,72,141,61,189,3,4,0,184,0,0,0,0,232,224,149,2,0,201,195,85,72,137,229,72,129,236,192, 0,0,0,72,137,189,104,255,255,255,72,137,181,96,255,255,255,72,137,149,88,255,255,255,72,137,141,80,255,255,255,243,15,17,133,76,255,255,255,243,15,17,141,72,255,255,255,68,137,133,68,255,255,255,72,139,5,227,38,6,0,72,139,16,72,137,85,248,49,210,72,139, 133,104,255,255,255,72,137,69,128,131,189,68,255,255,255,0,116,52,72,139,125,128,72,129,199,208,0,0,0,72,139,149,88,255,255,255,72,139,181,80,255,255,255,185,0,0,0,0,232,143,192,255,255,15,40,200,15,87,192,15,46,200,122,6,15,132,235,1,0,0,131,189,68, 255,255,255,0,15,132,183,1,0,0,72,139,125,128,72,131,199,88,72,139,149,88,255,255,255,72,139,181,80,255,255,255,185,0,0,0,0,232,53,194,255,255,243,15,88,133,76,255,255,255,72,139,189,96,255,255,255,232,90,99,254,255,243,15,44,192,137,69,140,72,139,125, 128,72,131,239,128,72,139,149,88,255,255,255,72,139,181,80,255,255,255,185,0,0,0,0,232,250,193,255,255,243,15,88,133,72,255,255,255,72,139,189,96,255,255,255,232,183,100,254,255,243,15,44,192,137,69,136,72,139,125,128,72,129,199,168,0,0,0,72,139,149, 88,255,255,255,72,139,181,80,255,255,255,185,1,0,0,0,232,216,191,255,255,243,15,44,248,72,141,117,224,232,234,202,255,255,72,139,69,128,139,128,0,1,0,0,131,224,1,132,192,116,51,199,133,112,255,255,255,2,0,0,0,72,139,125,128,72,131,199,48,72,139,149,88, 255,255,255,72,139,181,80,255,255,255,185,0,0,0,0,232,10,194,255,255,72,137,133,120,255,255,255,235,50,199,133,112,255,255,255,1,0,0,0,72,139,125,128,72,131,199,48,72,139,149,88,255,255,255,72,139,181,80,255,255,255,185,0,0,0,0,232,93,191,255,255,243, 15,17,133,120,255,255,255,72,141,149,112,255,255,255,72,141,117,144,72,139,125,128,232,40,250,255,255,72,139,189,96,255,255,255,232,80,81,254,255,72,137,199,72,141,69,144,72,141,85,224,139,77,136,139,117,140,73,137,193,73,137,208,137,242,72,137,254,72, 141,61,198,1,4,0,184,0,0,0,0,232,180,52,2,0,72,139,189,96,255,255,255,232,169,161,253,255,137,199,232,181,82,2,0,72,141,13,62,59,6,0,137,194,72,141,53,209,58,6,0,72,141,61,203,1,4,0,184,0,0,0,0,232,128,52,2,0,72,139,181,88,255,255,255,72,141,61,202,1, 4,0,184,0,0,0,0,232,104,52,2,0,235,39,72,139,189,96,255,255,255,232,201,80,254,255,72,137,198,72,139,149,88,255,255,255,72,141,61,196,1,4,0,184,0,0,0,0,232,63,52,2,0,72,139,5,160,36,6,0,72,139,85,248,72,51,16,116,5,232,120,184,3,0,201,195,85,72,137,229, 72,131,236,48,72,137,125,216,243,15,17,69,212,243,15,17,77,208,72,139,69,216,72,137,69,248,72,139,69,248,72,131,192,48,72,137,69,240,190,0,0,0,0,72,141,61,178,85,6,0,232,138,110,0,0,133,192,117,22,72,141,61,130,1,4,0,184,0,0,0,0,232,246,146,2,0,233,221, 0,0,0,139,5,165,85,6,0,133,192,116,22,72,141,61,136,1,4,0,184,0,0,0,0,232,214,146,2,0,233,189,0,0,0,243,15,16,5,51,85,6,0,243,15,92,69,208,243,15,17,5,38,85,6,0,243,15,16,5,30,85,6,0,72,139,21,55,85,6,0,72,139,69,240,72,139,112,8,72,139,61,48,85,6,0, 185,1,0,0,0,232,248,162,255,255,72,139,5,7,85,6,0,72,133,192,116,54,72,141,61,93,65,4,0,232,212,158,1,0,72,137,193,72,139,21,236,84,6,0,72,139,53,221,84,6,0,72,139,61,246,84,6,0,72,141,69,224,73,137,193,65,184,1,0,0,0,232,41,176,255,255,72,139,5,197, 84,6,0,72,133,192,116,19,72,139,53,177,84,6,0,72,139,61,178,84,6,0,232,55,152,255,255,72,139,5,174,84,6,0,72,133,192,116,19,72,139,53,146,84,6,0,72,139,61,155,84,6,0,232,3,46,253,255,201,195,85,72,137,229,72,129,236,48,4,0,0,72,137,189,216,251,255,255, 243,15,17,133,212,251,255,255,72,139,5,59,35,6,0,72,139,16,72,137,85,248,49,210,72,139,133,216,251,255,255,72,137,133,0,252,255,255,72,139,133,0,252,255,255,72,131,192,48,72,137,133,248,251,255,255,243,15,16,133,212,251,255,255,243,15,44,192,137,133, 12,252,255,255,190,0,0,0,0,72,141,61,76,84,6,0,232,36,109,0,0,133,192,117,22,72,141,61,28,0,4,0,184,0,0,0,0,232,144,145,2,0,233,133,2,0,0,131,189,12,252,255,255,0,15,132,120,2,0,0,139,5,50,84,6,0,133,192,15,132,186,0,0,0,139,5,40,84,6,0,133,192,116,9, 198,133,16,252,255,255,0,235,55,72,139,21,224,83,6,0,72,139,133,248,251,255,255,72,139,112,8,72,139,61,214,83,6,0,185,1,0,0,0,232,81,162,255,255,72,139,48,72,141,189,16,252,255,255,186,232,3,0,0,232,150,184,3,0,198,69,247,0,131,189,12,252,255,255,8,117, 43,15,182,133,16,252,255,255,132,192,15,132,4,2,0,0,72,141,189,16,252,255,255,232,98,184,3,0,72,255,200,198,132,5,16,252,255,255,0,233,232,1,0,0,72,141,189,16,252,255,255,232,70,184,3,0,72,255,192,198,132,5,16,252,255,255,0,72,141,189,16,252,255,255, 232,47,184,3,0,72,137,194,139,133,12,252,255,255,136,132,21,16,252,255,255,233,176,1,0,0,139,5,110,83,6,0,133,192,116,9,198,133,16,252,255,255,0,235,73,72,139,21,38,83,6,0,72,139,133,248,251,255,255,72,139,112,8,72,139,61,28,83,6,0,185,1,0,0,0,232,38, 160,255,255,243,15,90,192,72,141,189,16,252,255,255,72,141,13,224,236,3,0,186,232,3,0,0,190,0,0,0,0,184,1,0,0,0,232,132,181,3,0,131,189,12,252,255,255,10,15,148,192,15,182,192,137,5,5,83,6,0,131,189,12,252,255,255,8,117,36,15,182,133,16,252,255,255,132, 192,116,76,72,141,189,16,252,255,255,232,139,183,3,0,72,255,200,198,132,5,16,252,255,255,0,235,51,72,141,189,16,252,255,255,232,114,183,3,0,72,255,192,198,132,5,16,252,255,255,0,72,141,189,16,252,255,255,232,91,183,3,0,72,137,194,139,133,12,252,255,255, 136,132,21,16,252,255,255,72,141,149,240,251,255,255,72,141,189,16,252,255,255,72,141,53,151,254,3,0,184,0,0,0,0,232,14,183,3,0,133,192,127,12,184,0,0,0,0,72,137,133,240,251,255,255,242,15,16,133,240,251,255,255,242,15,90,192,72,139,21,47,82,6,0,72,139, 133,248,251,255,255,72,139,112,8,72,139,61,37,82,6,0,185,1,0,0,0,232,237,159,255,255,72,139,5,252,81,6,0,72,133,192,116,57,72,141,61,82,62,4,0,232,201,155,1,0,72,137,193,72,139,21,225,81,6,0,72,139,53,210,81,6,0,72,139,61,235,81,6,0,72,141,133,224,251, 255,255,73,137,193,65,184,1,0,0,0,232,27,173,255,255,72,139,5,183,81,6,0,72,133,192,116,19,72,139,53,163,81,6,0,72,139,61,164,81,6,0,232,41,149,255,255,72,139,5,160,81,6,0,72,133,192,116,19,72,139,53,132,81,6,0,72,139,61,141,81,6,0,232,245,42,253,255, 72,139,5,73,32,6,0,72,139,85,248,72,51,16,116,5,232,33,180,3,0,201,195,85,72,137,229,83,72,129,236,136,0,0,0,72,137,125,200,72,137,117,192,72,137,85,184,72,137,77,176,76,137,69,168,76,137,77,160,243,15,17,69,156,243,15,17,77,152,72,139,69,200,72,137, 69,216,72,141,85,232,72,141,77,236,243,15,16,69,152,139,117,156,72,139,125,176,76,139,85,184,76,139,93,192,72,139,93,200,72,141,69,224,72,137,68,36,8,72,141,69,228,72,137,4,36,73,137,209,73,137,200,15,40,200,137,117,140,243,15,16,69,140,72,137,249,76, 137,210,76,137,222,72,137,223,232,75,245,255,255,139,69,236,57,69,16,15,140,82,1,0,0,139,69,228,57,69,16,15,143,70,1,0,0,139,69,232,57,69,24,15,140,58,1,0,0,139,69,224,57,69,24,15,143,46,1,0,0,72,139,69,216,15,182,64,49,132,192,15,132,30,1,0,0,72,139, 125,216,72,129,199,208,0,0,0,72,139,85,184,72,139,117,176,185,0,0,0,0,232,63,185,255,255,15,40,200,15,87,192,15,46,200,122,6,15,132,240,0,0,0,131,125,56,0,15,132,221,0,0,0,72,139,69,192,72,137,5,85,80,6,0,72,139,69,184,72,137,5,98,80,6,0,72,139,69,176, 72,137,5,95,80,6,0,72,139,69,168,72,137,5,60,80,6,0,72,139,69,160,72,137,5,57,80,6,0,199,5,107,80,6,0,1,0,0,0,72,139,125,216,72,131,199,48,72,139,85,184,72,139,117,176,185,0,0,0,0,232,201,184,255,255,243,15,17,5,245,79,6,0,72,139,69,216,139,128,0,1,0, 0,131,224,1,137,5,50,80,6,0,72,139,5,235,79,6,0,72,133,192,116,28,72,139,21,223,79,6,0,72,139,53,208,79,6,0,72,141,61,249,79,6,0,232,133,106,0,0,235,26,72,139,21,211,79,6,0,72,139,53,196,79,6,0,72,141,61,221,79,6,0,232,221,106,0,0,139,69,24,72,139,117, 200,72,139,125,192,65,137,193,68,139,69,16,72,141,13,11,251,255,255,72,141,21,208,249,255,255,232,150,73,254,255,199,69,148,1,0,0,0,235,7,199,69,148,0,0,0,0,139,69,148,72,129,196,136,0,0,0,91,201,195,85,72,137,229,72,137,125,248,201,195,85,72,137,229, 65,84,83,72,131,236,16,72,141,29,228,255,255,255,76,141,37,158,239,255,255,72,141,61,147,251,3,0,232,29,153,1,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,16,1,0,0,72,137,218,76,137,230,184,0,0,0,0,232,82,135,1,0,72,137,194,72,141, 5,186,125,6,0,72,137,16,72,141,5,176,125,6,0,72,139,56,232,184,149,1,0,72,141,53,162,241,255,255,72,141,5,154,125,6,0,72,139,56,232,174,148,1,0,72,141,61,53,251,3,0,232,180,152,1,0,72,137,198,72,141,61,31,239,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0, 0,0,232,37,140,1,0,72,141,5,97,125,6,0,72,139,56,72,141,53,47,36,6,0,232,240,148,1,0,72,131,196,16,91,65,92,201,195,85,72,137,229,232,208,171,255,255,232,162,176,255,255,232,48,204,255,255,232,60,238,255,255,232,24,255,255,255,201,195,85,72,137,229,83, 72,131,236,72,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,141,5,27,125,6,0,72,139,56,232,63,207,1,0,72,137,69,224,72,139,69,224,102,199,64,44,0,0,72,139,85,224,15,182,66,46,131,224,252,136,66,46,232,134,32,1,0,72,137,194,72,139,69,224,72, 137,80,16,131,125,188,1,15,142,160,0,0,0,72,139,85,176,139,117,188,191,0,0,0,0,232,248,25,1,0,243,15,44,192,137,194,72,139,69,224,102,137,80,40,72,139,85,176,139,117,188,191,1,0,0,0,232,217,25,1,0,243,15,44,192,137,194,72,139,69,224,102,137,80,42,131, 125,188,2,126,29,72,139,85,176,72,131,194,32,139,117,188,131,238,2,72,139,69,224,72,139,120,16,232,196,51,1,0,235,45,199,69,208,2,0,0,0,72,141,61,22,250,3,0,232,135,151,1,0,72,137,69,216,72,139,69,224,72,139,120,16,72,141,85,208,190,1,0,0,0,232,149,51, 1,0,72,139,117,224,72,139,125,200,232,150,65,254,255,233,205,0,0,0,72,141,61,230,249,3,0,232,79,151,1,0,72,137,195,72,139,125,200,232,60,72,254,255,72,137,199,185,1,0,0,0,72,141,21,18,56,4,0,72,137,222,184,0,0,0,0,232,117,163,1,0,199,69,208,2,0,0,0,72, 141,61,163,249,3,0,232,20,151,1,0,72,137,69,216,72,139,125,200,232,116,200,253,255,72,141,85,232,72,141,117,236,72,139,125,200,232,192,58,254,255,139,69,236,255,200,137,194,72,139,69,224,102,137,80,40,139,69,232,255,200,137,194,72,139,69,224,102,137, 80,42,72,139,69,224,72,139,120,16,72,141,85,208,190,1,0,0,0,232,234,50,1,0,72,139,117,224,72,139,125,200,232,235,64,254,255,72,139,125,200,232,25,200,253,255,72,139,117,224,72,139,125,200,232,146,196,253,255,72,139,125,200,232,143,71,254,255,72,137,199, 232,231,21,254,255,72,131,196,72,91,201,195,85,72,137,229,72,131,236,64,72,137,125,216,137,117,212,137,85,208,137,77,204,76,137,69,192,72,141,5,73,124,6,0,72,199,0,0,0,0,0,72,139,125,216,232,30,122,253,255,72,141,117,232,72,141,125,252,232,252,122,253, 255,72,139,77,232,139,85,252,72,139,125,192,72,141,53,42,124,6,0,232,99,57,1,0,72,139,125,192,232,112,53,1,0,133,192,116,105,72,141,5,1,124,6,0,72,139,0,72,133,192,117,36,72,139,125,192,232,158,52,1,0,72,141,61,164,248,3,0,184,0,0,0,0,232,165,137,2,0, 72,199,69,240,0,0,0,0,235,62,72,141,5,206,123,6,0,72,139,56,232,18,199,1,0,72,137,69,240,72,131,125,240,0,117,36,72,139,125,192,232,96,52,1,0,72,141,61,123,248,3,0,184,0,0,0,0,232,103,137,2,0,235,8,72,199,69,240,0,0,0,0,72,131,125,240,0,117,19,72,141, 5,137,122,6,0,72,139,56,232,173,204,1,0,72,137,69,240,72,139,85,240,72,139,69,192,72,137,66,16,139,69,212,137,194,72,139,69,240,102,137,80,40,139,69,208,137,194,72,139,69,240,102,137,80,42,72,139,69,240,102,199,64,44,0,0,72,139,85,240,15,182,66,46,131, 224,252,131,200,1,136,66,46,72,139,117,240,72,139,125,216,232,131,63,254,255,131,125,204,0,116,31,72,139,117,240,72,139,125,216,232,45,195,253,255,72,139,125,240,72,139,117,216,186,1,0,0,0,232,166,189,253,255,72,139,69,240,72,139,16,72,141,5,60,121,6, 0,72,139,0,72,57,194,117,17,72,139,125,216,232,2,70,254,255,72,137,199,232,87,75,254,255,72,139,69,240,72,139,16,72,141,5,29,121,6,0,72,139,0,72,57,194,117,17,72,139,125,216,232,219,69,254,255,72,137,199,232,147,78,254,255,72,139,125,216,232,175,120, 253,255,201,195,85,72,137,229,72,131,196,128,72,137,125,184,72,137,117,176,72,137,85,168,72,137,77,160,76,137,69,152,76,137,77,144,199,69,244,0,0,0,0,199,69,240,0,0,0,0,72,139,69,184,72,139,128,192,0,0,0,72,139,64,32,72,133,192,116,46,72,139,69,184,72, 139,128,192,0,0,0,72,139,64,32,72,139,64,8,72,133,192,117,22,72,141,5,216,130,6,0,139,0,133,192,117,9,199,69,140,1,0,0,0,235,7,199,69,140,0,0,0,0,139,69,140,137,69,216,131,125,216,0,15,132,239,0,0,0,72,139,69,184,72,139,128,192,0,0,0,72,139,64,32,72, 139,0,72,137,69,200,72,139,69,184,72,139,64,48,72,137,69,208,199,69,240,0,0,0,0,235,96,72,139,69,208,72,59,69,200,117,71,72,141,69,220,72,141,85,228,72,141,77,224,72,141,117,232,72,139,125,184,76,139,85,208,73,137,193,73,137,208,72,137,242,72,137,254, 76,137,215,232,56,187,253,255,139,69,240,137,69,244,139,85,232,72,139,69,168,137,16,139,69,220,141,80,5,72,139,69,160,137,16,72,139,69,208,72,139,64,8,72,137,69,208,255,69,240,72,131,125,208,0,117,153,72,139,125,184,232,26,197,253,255,72,139,69,184,72, 139,64,48,72,137,69,208,199,69,236,0,0,0,0,235,54,72,139,69,208,72,59,69,200,117,8,139,69,236,137,69,244,235,71,72,139,69,208,72,139,64,8,72,133,192,117,8,139,69,240,255,200,137,69,244,72,139,69,208,72,139,64,8,72,137,69,208,255,69,236,72,131,125,208, 0,117,195,235,26,72,139,85,160,72,139,117,168,72,139,125,184,232,18,55,254,255,72,139,125,184,232,172,196,253,255,72,139,85,176,139,69,216,137,2,72,139,85,152,139,69,244,137,2,72,139,85,144,139,69,240,137,2,201,195,85,72,137,229,83,72,131,236,88,72,137, 125,184,72,137,117,176,137,85,172,72,137,77,160,131,125,172,1,126,98,232,117,27,1,0,72,137,69,200,72,139,85,160,72,131,194,32,139,117,172,131,238,2,72,139,125,200,232,12,47,1,0,72,139,85,160,139,117,172,191,1,0,0,0,232,56,21,1,0,137,195,72,139,85,160, 139,117,172,191,0,0,0,0,232,37,21,1,0,137,198,72,139,69,200,72,139,125,184,73,137,192,185,0,0,0,0,137,218,232,32,252,255,255,233,217,0,0,0,72,139,125,184,232,153,147,253,255,133,192,117,22,72,141,61,104,245,3,0,184,0,0,0,0,232,44,134,2,0,233,182,0,0, 0,232,240,26,1,0,72,137,69,192,72,141,69,220,72,141,85,224,72,141,77,228,72,141,117,232,72,141,125,236,76,139,85,184,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,123,253,255,255,72,141,61,213,244,3,0,232,62,146,1,0,72,137,198,72,139,125, 184,185,1,0,0,0,72,141,21,9,51,4,0,184,0,0,0,0,232,111,158,1,0,139,85,228,139,117,232,72,139,69,192,72,139,125,184,73,137,192,185,1,0,0,0,232,127,251,255,255,139,69,236,133,192,116,37,139,69,220,243,15,42,192,139,69,224,243,15,42,224,72,139,125,184,15, 87,219,15,40,208,15,87,201,15,40,196,232,209,39,254,255,235,17,72,139,125,184,232,202,66,254,255,72,137,199,232,34,17,254,255,72,131,196,88,91,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,232,35,26,1,0,72,137,69,240,72,141,61,52, 244,3,0,232,157,145,1,0,72,137,198,72,139,125,216,185,1,0,0,0,72,141,21,104,50,4,0,184,0,0,0,0,232,206,157,1,0,72,139,125,216,232,228,194,253,255,199,69,224,2,0,0,0,72,139,69,208,72,137,69,232,72,141,85,224,72,139,125,240,190,1,0,0,0,232,126,45,1,0,72, 141,85,248,72,141,117,252,72,139,125,216,232,15,53,254,255,139,85,248,139,117,252,72,139,69,240,72,139,125,216,73,137,192,185,1,0,0,0,232,163,250,255,255,72,139,125,216,232,26,66,254,255,72,137,199,232,114,16,254,255,201,195,85,72,137,229,72,131,236, 32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,141,61,117,205,3,0,232,244,144,1,0,72,137,198,72,139,125,248,232,38,255,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,141,61,58,13,4, 0,232,195,144,1,0,72,137,198,72,139,125,248,232,245,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,141,61,229,12,4,0,232,146,144,1,0,72,137,198,72,139,125,248,232,196,254,255,255,201,195,85,72, 137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,141,61,37,220,3,0,232,97,144,1,0,72,137,198,72,139,125,248,232,147,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224, 72,141,61,44,217,3,0,232,48,144,1,0,72,137,198,72,139,125,248,232,98,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,141,61,17,243,3,0,232,255,143,1,0,72,137,198,72,139,125,248,232,49,254,255, 255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,141,61,118,204,3,0,232,206,143,1,0,72,137,198,72,139,125,248,232,0,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85, 236,72,137,77,224,72,141,61,76,204,3,0,232,157,143,1,0,72,137,198,72,139,125,248,232,207,253,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,141,61,136,242,3,0,232,108,143,1,0,72,137,198,72,139,125, 248,232,158,253,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,141,61,90,242,3,0,232,59,143,1,0,72,137,198,72,139,125,248,232,109,253,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72, 137,117,240,137,85,236,72,137,77,224,72,141,61,45,242,3,0,232,10,143,1,0,72,137,198,72,139,125,248,232,60,253,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,240,102,199,64,44,0,0,72,139,85, 240,15,182,66,46,131,224,252,131,200,1,136,66,46,232,59,23,1,0,72,137,194,72,139,69,240,72,137,80,16,72,139,85,224,139,117,236,191,0,0,0,0,232,183,16,1,0,243,15,44,192,137,194,72,139,69,240,102,137,80,40,72,139,85,224,139,117,236,191,1,0,0,0,232,152, 16,1,0,243,15,44,192,137,194,72,139,69,240,102,137,80,42,131,125,236,2,126,27,72,139,85,224,72,131,194,32,139,117,236,131,238,2,72,139,69,240,72,139,120,16,232,131,42,1,0,72,139,117,240,72,139,125,248,232,132,56,254,255,201,195,85,72,137,229,72,131,236, 16,72,137,125,248,72,139,69,248,72,139,120,8,232,50,183,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,120,8,243,15,16,69,244,232,14,184,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240, 72,139,69,248,72,139,120,8,72,139,117,240,232,100,184,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,120,8,72,139,77,224,139,85,236,72,139,117,240,232,170,184,1,0,201,195,85,72,137, 229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,120,8,72,139,77,224,139,85,236,72,139,117,240,232,254,184,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,117,248,72,131,198,48,72,139,69,248, 72,139,120,16,185,0,0,0,0,186,0,0,0,0,232,140,48,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,199,69,240,1,0,0,0,139,69,228,137,69,248,72,139,117,232,72,131,198,48,72,139,69,232,72,139,120,16,72,141,77,240,186,1,0,0,0,232,78, 48,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,199,69,240,2,0,0,0,72,139,69,224,72,137,69,248,72,139,117,232,72,131,198,48,72,139,69,232,72,139,120,16,72,141,77,240,186,1,0,0,0,232,15,48,1,0,201,195,85,72,137,229,72,131,236, 32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,131,198,48,72,139,69,248,72,139,120,16,72,139,77,224,139,85,236,232,218,47,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139, 69,248,72,139,120,16,232,68,22,1,0,72,139,69,248,72,139,120,16,72,139,85,224,139,117,236,232,126,33,1,0,72,139,117,248,72,139,69,248,72,139,120,64,232,40,60,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77, 224,72,139,69,248,72,139,120,16,72,139,85,224,139,117,236,232,64,33,1,0,72,139,117,248,72,139,69,248,72,139,120,64,232,234,59,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,120, 16,72,139,85,224,139,117,236,232,2,33,1,0,72,139,69,248,72,139,120,16,232,225,39,1,0,72,139,117,248,72,139,69,248,72,139,120,64,232,159,59,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,199,69,240,5,0,0,0,199,69,248,0,0,0,0,72,139,69,232, 72,139,120,16,72,141,85,240,190,1,0,0,0,232,178,32,1,0,72,139,117,232,72,139,69,232,72,139,120,64,232,92,59,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,232,78,255,255,255,201,195,85,72, 137,229,72,131,236,48,72,137,125,216,243,15,17,69,212,243,15,16,69,212,243,15,44,192,137,69,252,131,125,252,0,121,7,199,69,252,0,0,0,0,199,69,224,8,0,0,0,139,69,252,137,69,232,72,139,69,216,72,139,120,16,72,141,85,224,190,1,0,0,0,232,44,32,1,0,72,139, 117,216,72,139,69,216,72,139,120,64,232,214,58,254,255,201,195,85,72,137,229,72,129,236,16,4,0,0,72,137,189,248,251,255,255,72,137,181,240,251,255,255,72,139,5,221,15,6,0,72,139,16,72,137,85,248,49,210,198,133,16,252,255,255,36,72,199,192,255,255,255, 255,72,131,248,255,116,40,72,199,193,255,255,255,255,72,139,133,240,251,255,255,72,139,48,72,141,133,16,252,255,255,72,141,120,1,186,230,3,0,0,232,152,163,3,0,235,31,72,139,133,240,251,255,255,72,139,48,72,141,133,16,252,255,255,72,141,120,1,186,230, 3,0,0,232,107,0,0,0,198,69,247,0,199,133,0,252,255,255,9,0,0,0,72,141,189,16,252,255,255,232,109,138,1,0,72,137,133,8,252,255,255,72,139,133,248,251,255,255,72,139,120,16,72,141,149,0,252,255,255,190,1,0,0,0,232,88,31,1,0,72,139,181,248,251,255,255,72, 139,133,248,251,255,255,72,139,120,64,232,252,57,254,255,72,139,5,30,15,6,0,72,139,85,248,72,51,16,116,5,232,246,162,3,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,72,139,117, 240,72,139,125,248,232,224,162,3,0,201,195,85,72,137,229,83,72,131,236,56,72,137,125,216,243,15,17,69,212,243,15,17,77,208,243,15,17,85,204,243,15,17,93,200,243,15,17,101,196,72,139,125,216,15,87,192,232,98,252,255,255,72,139,69,216,72,139,120,64,232, 175,138,253,255,133,192,116,90,72,139,117,216,72,139,69,216,72,139,120,64,232,34,106,255,255,72,137,69,232,72,139,125,232,232,202,90,255,255,72,137,195,72,139,69,216,72,139,120,64,232,118,58,254,255,72,137,198,72,137,218,72,141,61,146,236,3,0,184,0,0, 0,0,232,240,29,2,0,72,139,69,216,72,139,120,72,242,15,16,5,184,51,4,0,232,252,203,1,0,72,131,196,56,91,201,195,85,72,137,229,83,72,131,236,40,72,137,125,216,72,139,69,216,72,139,120,64,232,48,138,253,255,133,192,116,69,72,139,117,216,72,139,69,216,72, 139,120,64,232,163,105,255,255,72,137,69,232,72,139,125,232,232,75,90,255,255,72,137,195,72,139,69,216,72,139,120,64,232,247,57,254,255,72,137,198,72,137,218,72,141,61,59,236,3,0,184,0,0,0,0,232,113,29,2,0,72,131,196,40,91,201,195,85,72,137,229,72,131, 236,16,72,137,125,248,72,139,69,248,72,139,120,72,232,62,204,1,0,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,137,85,204,72,137,77,192,72,139,61,17,63,6,0,232,176,191,1,0,72,137,69,224,72,139,21,17,63,6,0,72,139,69,224,72,137,80, 48,72,139,125,224,72,141,53,30,21,6,0,232,187,176,1,0,72,137,194,72,139,69,224,72,137,80,56,72,139,69,224,102,199,64,44,0,0,72,139,85,224,15,182,66,46,131,224,252,131,200,2,136,66,46,232,202,16,1,0,72,137,194,72,139,69,224,72,137,80,16,72,139,85,224, 72,139,69,216,72,137,66,64,72,141,53,236,254,255,255,72,139,125,224,232,236,200,1,0,72,137,194,72,139,69,224,72,137,80,72,131,125,204,1,126,113,72,139,85,192,139,117,204,191,0,0,0,0,232,25,10,1,0,243,15,44,192,137,194,72,139,69,224,102,137,80,40,72,139, 85,192,139,117,204,191,1,0,0,0,232,250,9,1,0,243,15,44,192,137,194,72,139,69,224,102,137,80,42,131,125,204,2,126,27,72,139,85,192,72,131,194,32,139,117,204,131,238,2,72,139,69,224,72,139,120,16,232,229,35,1,0,72,139,117,224,72,139,125,216,232,230,49, 254,255,233,4,1,0,0,72,139,125,216,232,162,136,253,255,133,192,117,22,72,141,61,9,235,3,0,184,0,0,0,0,232,53,123,2,0,233,225,0,0,0,72,141,69,236,72,141,85,240,72,141,77,244,72,141,117,248,72,141,125,252,76,139,85,216,73,137,193,73,137,208,72,137,242, 72,137,254,76,137,215,232,141,242,255,255,72,141,61,231,233,3,0,232,80,135,1,0,72,137,198,72,139,125,216,185,1,0,0,0,72,141,21,27,40,4,0,184,0,0,0,0,232,129,147,1,0,139,69,248,137,194,72,139,69,224,102,137,80,40,139,69,244,137,194,72,139,69,224,102,137, 80,42,72,139,117,224,72,139,125,216,232,66,49,254,255,72,139,125,216,232,112,184,253,255,72,139,117,224,72,139,125,216,232,233,180,253,255,72,139,125,224,72,139,117,216,186,1,0,0,0,232,98,175,253,255,139,69,252,133,192,116,37,139,69,236,243,15,42,192, 139,69,240,243,15,42,224,72,139,125,216,15,87,219,15,40,208,15,87,201,15,40,196,232,175,28,254,255,235,17,72,139,125,216,232,168,55,254,255,72,137,199,232,0,6,254,255,201,195,85,72,137,229,72,131,196,128,72,137,125,136,72,139,5,132,11,6,0,72,139,16,72, 137,85,248,49,210,72,139,69,136,72,139,0,15,182,0,132,192,117,18,72,141,61,22,234,3,0,232,111,134,1,0,72,137,69,128,235,122,72,139,69,136,72,139,0,15,182,0,60,45,117,95,198,69,144,45,72,199,192,255,255,255,255,72,131,248,255,116,34,72,199,193,255,255, 255,255,72,139,69,136,72,139,48,72,141,69,144,72,141,120,1,186,99,0,0,0,232,26,159,3,0,235,25,72,139,69,136,72,139,48,72,141,69,144,72,141,120,1,186,99,0,0,0,232,243,251,255,255,198,69,243,0,72,141,125,144,232,2,134,1,0,72,137,69,128,235,13,72,139,125, 136,232,93,223,252,255,72,137,69,128,72,139,69,128,72,139,21,214,10,6,0,72,139,77,248,72,51,10,116,5,232,174,158,3,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,0,15,182,0,60,45,117,22,72,139,69,248,72,139,0,72,141,120,1,232, 170,133,1,0,72,137,69,240,235,13,72,139,125,248,232,233,223,252,255,72,137,69,240,72,139,69,240,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,137,69,248,72,139,117,248,72,139,69,248,72,139,120,64,232,49,53,254,255, 201,195,85,72,137,229,72,131,236,16,72,137,125,248,137,117,244,72,139,69,248,72,139,120,16,232,10,15,1,0,72,139,85,248,72,131,194,48,72,139,69,248,72,139,120,16,190,1,0,0,0,232,62,26,1,0,131,125,244,0,116,41,72,139,69,248,72,139,120,64,232,29,134,253, 255,133,192,116,24,72,139,69,248,72,139,112,64,72,139,125,248,72,141,21,117,255,255,255,232,156,32,2,0,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,137,85,204,72,137,77,192,72,139,69,216,72,139,80,48,72,137,85,224,72,139,64,56,72, 137,69,232,199,69,252,0,0,0,0,131,125,204,0,15,132,147,0,0,0,72,139,69,216,139,64,48,131,248,1,117,51,72,139,125,192,232,104,5,1,0,72,139,69,216,243,15,17,64,56,72,139,69,216,243,15,16,72,56,243,15,16,69,232,15,46,200,15,149,192,15,154,194,9,208,15,182, 192,137,69,252,235,56,72,139,69,216,139,64,48,131,248,2,117,44,72,139,125,192,232,119,5,1,0,72,137,194,72,139,69,216,72,137,80,56,72,139,69,216,72,139,80,56,72,139,69,232,72,57,194,15,149,192,15,182,192,137,69,252,131,125,252,0,116,14,72,139,125,216, 190,1,0,0,0,232,210,254,255,255,72,139,69,216,198,64,112,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,64,48,131,248,1,15,133,176,0,0,0,72,139,69,248,72,139,64,24,72,133,192,116,22,72,139,69,248,243,15,16,64,56,72,139,69,248, 72,139,120,24,232,239,173,1,0,72,139,69,248,72,139,128,160,0,0,0,72,139,0,15,182,0,132,192,15,132,31,1,0,0,72,139,69,248,72,139,128,160,0,0,0,72,139,64,8,72,133,192,15,132,7,1,0,0,72,139,69,248,72,139,80,104,72,139,69,248,72,139,64,96,72,57,194,117,37, 72,139,69,248,72,139,64,104,72,139,16,72,139,125,248,72,141,53,61,231,3,0,184,0,0,0,0,232,91,125,2,0,233,205,0,0,0,72,139,69,248,243,15,16,64,56,72,139,69,248,72,139,128,160,0,0,0,72,139,120,8,232,72,195,1,0,233,171,0,0,0,72,139,69,248,139,64,48,131, 248,2,15,133,155,0,0,0,72,139,69,248,72,139,64,24,72,133,192,116,21,72,139,69,248,72,139,112,56,72,139,69,248,72,139,120,24,232,169,173,1,0,72,139,69,248,72,139,64,104,72,139,0,15,182,0,132,192,116,103,72,139,69,248,72,139,128,160,0,0,0,72,139,64,8,72, 133,192,116,83,72,139,69,248,72,139,80,104,72,139,69,248,72,139,64,96,72,57,194,117,34,72,139,69,248,72,139,64,104,72,139,16,72,139,125,248,72,141,53,137,230,3,0,184,0,0,0,0,232,167,124,2,0,235,28,72,139,69,248,72,139,112,56,72,139,69,248,72,139,128, 160,0,0,0,72,139,120,8,232,232,194,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,199,69,240,1,0,0,0,139,69,228,137,69,248,72,141,77,240,72,139,125,232,186,1,0,0,0,190,0,0,0,0,232,129,253,255,255,72,139,125,232,232,73,254,255, 255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,243,15,16,72,80,15,87,192,15,46,200,117,23,122,21,72,139,69,248,243,15,16,72,76,15,87,192,15,46,200,117,4,122,2,235,58,72,139,69,248,243,15,16,64,80,15,46,69,244,119, 2,235,10,72,139,69,248,139,64,80,137,69,244,72,139,69,248,243,15,16,72,76,243,15,16,69,244,15,46,193,119,2,235,10,72,139,69,248,139,64,76,137,69,244,243,15,16,69,244,72,139,125,248,232,63,255,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232, 72,137,117,224,199,69,240,2,0,0,0,72,139,69,224,72,137,69,248,72,141,77,240,72,139,125,232,186,1,0,0,0,190,0,0,0,0,232,189,252,255,255,72,139,125,232,232,133,253,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72, 137,77,224,131,125,236,0,117,11,72,139,125,248,232,93,253,255,255,235,82,72,139,69,224,139,0,131,248,1,117,20,72,139,69,224,243,15,16,64,8,72,139,125,248,232,183,254,255,255,235,51,72,139,69,224,139,0,131,248,2,117,19,72,139,69,224,72,139,112,8,72,139, 125,248,232,92,255,255,255,235,21,72,139,125,248,72,141,53,35,229,3,0,184,0,0,0,0,232,9,123,2,0,201,195,85,72,137,229,72,131,236,64,72,137,125,200,243,15,17,69,196,243,15,17,77,192,72,139,69,200,72,137,69,248,15,87,192,15,46,69,192,122,6,15,132,203,1, 0,0,72,139,69,248,139,64,48,131,248,1,15,133,187,1,0,0,72,139,69,248,15,182,128,152,0,0,0,132,192,15,132,177,0,0,0,72,139,69,248,243,15,16,64,56,243,15,90,208,243,15,90,77,192,242,15,16,5,53,43,4,0,242,15,89,193,242,15,88,194,242,15,17,69,240,242,15, 16,77,240,242,15,16,5,251,41,4,0,242,15,89,200,242,15,16,5,23,41,4,0,242,15,88,193,232,40,154,3,0,102,15,40,200,242,15,16,5,178,42,4,0,242,15,89,193,242,15,17,69,232,242,15,16,77,240,242,15,16,5,236,42,4,0,242,15,88,193,102,15,46,69,232,119,2,235,38, 242,15,16,77,240,242,15,16,5,210,42,4,0,242,15,92,200,242,15,16,69,232,102,15,46,193,119,2,235,8,72,139,69,232,72,137,69,240,242,15,90,69,240,72,139,125,248,232,196,253,255,255,233,247,0,0,0,72,139,69,248,243,15,16,64,56,243,15,92,69,192,243,15,90,192, 242,15,17,69,224,242,15,16,77,224,242,15,16,5,90,41,4,0,242,15,89,200,242,15,16,5,118,40,4,0,242,15,88,193,232,135,153,3,0,102,15,40,200,242,15,16,5,17,42,4,0,242,15,89,193,242,15,17,69,216,242,15,16,77,224,242,15,16,5,75,42,4,0,242,15,88,193,102,15, 46,69,216,119,2,235,38,242,15,16,77,224,242,15,16,5,49,42,4,0,242,15,92,200,242,15,16,69,216,102,15,46,193,119,2,235,8,72,139,69,216,72,137,69,224,242,15,16,77,224,242,15,16,5,11,40,4,0,242,15,88,193,232,28,153,3,0,242,15,17,69,216,242,15,16,77,224,242, 15,16,5,248,39,4,0,242,15,88,193,102,15,46,69,216,119,2,235,38,242,15,16,77,224,242,15,16,5,222,39,4,0,242,15,92,200,242,15,16,69,216,102,15,46,193,119,2,235,8,72,139,69,216,72,137,69,224,242,15,90,69,224,72,139,125,248,232,200,252,255,255,201,195,85, 72,137,229,72,131,236,112,72,137,125,152,243,15,17,69,148,72,139,5,21,4,6,0,72,139,16,72,137,85,248,49,210,72,139,69,152,72,137,69,176,243,15,16,69,148,243,15,44,192,137,69,188,72,139,125,176,72,131,199,112,232,5,154,3,0,137,69,184,131,125,188,0,117, 35,72,139,69,176,15,182,64,112,132,192,15,132,152,1,0,0,72,139,125,176,190,1,0,0,0,232,108,249,255,255,233,133,1,0,0,131,125,188,8,117,31,131,125,184,0,15,142,3,1,0,0,139,69,184,255,200,72,139,85,176,72,152,198,68,2,112,0,233,238,0,0,0,131,125,188,10, 15,133,131,0,0,0,72,139,69,176,139,64,48,131,248,1,117,28,72,139,125,176,72,131,199,112,232,159,151,3,0,242,15,90,192,72,139,69,176,243,15,17,64,56,235,55,72,139,69,176,139,64,48,131,248,2,117,26,72,139,125,176,72,131,199,112,232,93,126,1,0,72,137,194, 72,139,69,176,72,137,80,56,235,17,72,141,61,76,226,3,0,184,0,0,0,0,232,212,121,2,0,72,139,125,176,232,8,250,255,255,72,139,125,176,190,1,0,0,0,232,194,248,255,255,72,139,69,176,198,64,112,0,233,211,0,0,0,131,125,184,38,15,143,201,0,0,0,72,139,69,176, 139,64,48,131,248,2,116,40,131,125,188,47,126,6,131,125,188,57,126,28,131,125,188,46,116,22,131,125,188,45,116,16,131,125,188,101,116,10,131,125,188,69,15,133,149,0,0,0,139,117,184,139,69,188,137,193,72,139,85,176,72,99,198,136,76,2,112,139,69,184,255, 192,72,139,85,176,72,152,198,68,2,112,0,72,139,69,176,72,131,192,112,72,141,125,192,73,137,192,72,141,13,177,225,3,0,186,44,0,0,0,190,0,0,0,0,184,0,0,0,0,232,98,150,3,0,199,69,160,2,0,0,0,72,141,125,192,232,128,125,1,0,72,137,69,168,72,139,69,176,72, 139,120,16,232,47,7,1,0,72,139,69,176,72,139,120,16,72,141,85,160,190,1,0,0,0,232,103,18,1,0,72,139,117,176,72,139,69,176,72,139,120,64,232,17,45,254,255,72,139,5,51,2,6,0,72,139,85,248,72,51,16,116,5,232,11,150,3,0,201,195,85,72,137,229,72,131,236,32, 72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,243,15,17,93,232,243,15,17,101,228,72,139,69,248,15,183,64,44,102,131,248,1,117,79,72,139,69,248,139,64,48,131,248,1,15,133,243,0,0,0,72,139,69,248,243,15,16,72,56,15,87,192,15,46,200, 122,2,116,2,235,15,243,15,16,5,251,36,4,0,243,15,17,69,224,235,8,15,87,192,243,15,17,69,224,72,139,125,248,243,15,16,69,224,232,255,249,255,255,233,180,0,0,0,15,87,192,15,46,69,228,117,4,122,2,235,83,72,139,69,248,139,64,48,131,248,1,15,133,151,0,0,0, 72,139,69,248,243,15,16,72,56,15,87,192,15,46,200,117,4,122,2,235,28,72,139,69,248,139,80,56,72,139,69,248,137,80,72,72,139,125,248,15,87,192,232,174,249,255,255,235,102,72,139,69,248,243,15,16,64,72,72,139,125,248,232,154,249,255,255,243,15,16,69,236, 243,15,44,192,137,194,72,139,69,248,136,144,152,0,0,0,72,139,69,248,198,64,112,0,243,15,16,69,240,243,15,44,200,243,15,16,69,244,243,15,44,208,72,139,117,248,72,139,69,248,72,139,120,64,65,137,201,65,137,208,72,141,13,204,252,255,255,72,141,21,203,250, 255,255,232,40,44,254,255,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,139,85,176,139,117,188,191,0,0,0,0,232,223,253,0,0,243,15,17,69,252,72,139,85,176,139,117,188,191,1,0,0,0,232,201,253,0,0,243,15,17, 69,248,72,139,85,176,139,117,188,191,2,0,0,0,232,179,253,0,0,243,15,17,69,244,72,139,85,176,139,117,188,191,3,0,0,0,232,28,254,0,0,72,137,199,232,179,245,255,255,72,137,69,232,72,139,85,176,139,117,188,191,4,0,0,0,232,128,253,0,0,243,15,17,69,240,72, 139,85,176,139,117,188,191,5,0,0,0,232,233,253,0,0,72,137,199,232,128,245,255,255,72,137,69,224,72,139,85,176,139,117,188,191,6,0,0,0,232,204,253,0,0,72,137,199,232,99,245,255,255,72,137,69,216,72,139,69,200,72,139,112,64,72,139,125,200,186,0,0,0,0,232, 112,166,253,255,72,139,69,224,72,139,0,15,182,0,132,192,117,43,72,139,69,200,72,139,64,96,72,139,0,15,182,0,132,192,116,25,72,139,117,200,72,139,125,200,185,0,0,0,0,186,0,0,0,0,232,35,151,1,0,235,88,72,139,69,224,72,139,0,15,182,0,132,192,116,74,72,139, 69,200,72,139,64,96,72,139,0,15,182,0,132,192,117,56,72,139,69,200,72,139,64,32,72,133,192,116,43,72,139,69,200,72,139,80,32,72,139,117,200,72,139,69,200,72,139,120,64,185,0,0,0,0,232,1,128,253,255,72,139,69,200,72,139,120,32,232,163,156,1,0,72,139,69, 216,72,139,0,15,182,0,132,192,117,34,72,139,69,200,72,139,64,104,72,139,0,15,182,0,132,192,116,16,72,139,125,200,190,0,0,0,0,232,154,162,1,0,235,88,72,139,69,216,72,139,0,15,182,0,132,192,116,74,72,139,69,200,72,139,64,104,72,139,0,15,182,0,132,192,117, 56,72,139,69,200,72,139,64,24,72,133,192,116,43,72,139,69,200,72,139,72,24,72,139,117,200,72,139,69,200,72,139,120,64,186,0,0,0,0,232,121,127,253,255,72,139,69,200,72,139,120,24,232,16,166,1,0,243,15,16,69,248,15,46,69,244,115,2,235,14,184,0,0,0,0,137, 69,244,139,69,244,137,69,248,72,139,85,200,139,69,248,137,66,80,72,139,85,200,139,69,244,137,66,76,15,87,192,15,46,69,252,119,2,235,10,184,0,0,128,64,137,69,252,235,24,243,15,16,69,252,15,46,5,46,36,4,0,119,2,235,8,184,0,0,160,66,137,69,252,243,15,16, 69,252,243,15,44,192,137,194,72,139,69,200,102,137,80,44,243,15,16,69,240,243,15,44,192,137,194,131,226,3,72,139,69,200,136,144,153,0,0,0,72,139,85,200,72,139,69,232,72,137,66,88,72,139,69,200,72,139,64,96,72,139,0,15,182,0,132,192,116,33,72,139,69,200, 72,139,112,96,72,139,69,200,72,139,120,64,232,59,94,253,255,72,137,198,72,139,125,200,232,15,181,1,0,72,139,85,200,72,139,69,224,72,137,66,96,72,139,69,200,72,139,64,96,72,139,0,15,182,0,132,192,116,33,72,139,69,200,72,139,112,96,72,139,69,200,72,139, 120,64,232,252,93,253,255,72,137,198,72,139,125,200,232,204,179,1,0,72,139,85,200,72,139,69,216,72,137,66,104,72,139,69,200,72,139,112,104,72,139,69,200,72,139,120,64,232,207,93,253,255,72,137,194,72,139,69,200,72,137,144,160,0,0,0,72,139,69,200,72,139, 112,64,72,139,125,200,186,1,0,0,0,232,13,164,253,255,72,139,69,200,72,139,120,64,243,15,16,5,212,32,4,0,232,142,117,253,255,201,195,85,72,137,229,65,84,83,72,131,236,64,72,137,125,200,72,137,117,192,72,137,85,184,72,137,77,176,76,139,85,200,72,141,69, 224,72,141,85,228,72,141,77,232,72,141,117,236,72,139,125,192,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,223,8,0,0,139,85,228,139,69,236,137,209,41,193,137,200,137,69,220,139,85,224,139,69,232,137,209,41,193,137,200,137,69,216,72,139, 69,200,15,182,128,153,0,0,0,132,192,117,92,139,69,236,65,137,196,72,139,69,200,72,139,112,88,72,139,69,200,72,139,120,64,232,5,93,253,255,72,139,56,232,24,147,3,0,72,137,195,72,139,125,192,232,139,121,253,255,137,199,232,175,42,2,0,72,152,72,15,175,195, 68,137,226,41,194,137,208,131,232,3,137,194,72,139,69,184,137,16,139,69,232,141,80,2,72,139,69,176,137,16,235,126,72,139,69,200,15,182,128,153,0,0,0,60,1,117,26,139,69,228,141,80,2,72,139,69,184,137,16,139,69,232,141,80,2,72,139,69,176,137,16,235,85, 72,139,69,200,15,182,128,153,0,0,0,60,2,117,46,139,69,236,141,80,255,72,139,69,184,137,16,139,69,232,141,88,255,72,139,125,192,232,11,121,253,255,137,199,232,71,42,2,0,137,218,41,194,72,139,69,176,137,16,235,24,139,69,236,141,80,255,72,139,69,184,137, 16,139,69,224,141,80,3,72,139,69,176,137,16,72,131,196,64,91,65,92,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,137,77,216,72,139,69,232,72,137,69,248,139,77,216,139,85,220,72,139,117,224,72,139,125,232,232,87,9,0,0,72, 139,125,224,232,11,40,254,255,72,137,198,139,69,216,139,77,220,72,139,85,248,65,137,192,72,141,61,14,219,3,0,184,0,0,0,0,232,123,11,2,0,201,195,85,72,137,229,65,84,83,72,131,236,64,72,137,125,216,72,137,117,208,137,85,204,72,139,69,216,72,137,69,224, 139,85,204,72,139,117,208,72,139,125,216,232,223,10,0,0,72,139,69,224,72,139,64,88,72,139,0,15,182,0,132,192,15,132,188,0,0,0,131,125,204,0,15,132,145,0,0,0,72,141,77,232,72,141,85,236,72,139,117,208,72,139,125,224,232,233,253,255,255,72,139,125,208, 232,14,120,253,255,137,199,232,26,41,2,0,137,195,72,139,69,224,72,139,112,88,72,139,69,224,72,139,120,64,232,86,91,253,255,76,139,32,139,69,232,242,15,42,192,242,15,17,69,184,139,69,236,242,15,42,192,242,15,17,69,192,72,139,125,208,232,58,39,254,255, 72,137,198,72,139,85,224,76,141,13,175,188,3,0,65,137,216,76,137,225,242,15,16,77,184,242,15,16,69,192,72,141,61,78,218,3,0,184,2,0,0,0,232,156,10,2,0,235,33,72,139,125,208,232,0,39,254,255,72,137,198,72,139,85,224,72,141,61,102,218,3,0,184,0,0,0,0,232, 121,10,2,0,131,125,204,0,117,9,72,139,125,224,232,78,18,2,0,72,131,196,64,91,65,92,201,195,85,72,137,229,72,131,236,112,72,137,125,200,137,117,196,72,137,85,184,137,77,180,76,137,69,168,72,139,61,40,44,6,0,232,191,172,1,0,72,137,69,224,72,139,69,224, 102,199,64,44,0,0,72,139,85,224,15,182,66,46,131,200,3,136,66,46,232,6,254,0,0,72,137,194,72,139,69,224,72,137,80,16,72,139,85,224,72,139,69,200,72,137,66,64,72,139,85,224,139,69,196,137,66,48,72,139,85,224,184,0,0,128,63,137,66,72,72,139,85,224,184, 0,0,0,0,137,66,80,72,139,85,224,184,0,0,0,0,137,66,76,72,139,69,224,198,128,153,0,0,0,0,72,139,85,224,72,141,5,15,3,6,0,72,137,66,88,72,139,85,224,72,141,5,0,3,6,0,72,137,66,96,72,139,85,224,72,141,5,241,2,6,0,72,137,130,160,0,0,0,72,139,69,224,72,139, 144,160,0,0,0,72,139,69,224,72,137,80,104,131,125,196,1,117,39,72,139,85,224,184,0,0,0,0,137,66,56,72,139,69,224,102,199,64,44,5,0,199,69,208,1,0,0,0,184,0,0,0,0,137,69,216,235,43,72,139,85,224,72,141,5,127,1,6,0,72,137,66,56,72,139,69,224,102,199,64, 44,10,0,199,69,208,2,0,0,0,72,141,5,99,1,6,0,72,137,69,216,72,139,69,224,72,139,120,16,72,141,85,208,190,1,0,0,0,232,157,9,1,0,131,125,180,1,15,142,26,2,0,0,72,139,85,168,139,117,180,191,0,0,0,0,232,130,246,0,0,243,15,44,192,137,194,72,139,69,224,102, 137,80,40,72,139,85,168,139,117,180,191,1,0,0,0,232,99,246,0,0,243,15,44,192,137,194,72,139,69,224,102,137,80,42,72,139,85,168,139,117,180,191,2,0,0,0,232,155,246,0,0,137,194,72,139,69,224,102,137,80,44,72,139,69,224,15,183,64,44,102,133,192,120,14,72, 139,69,224,15,183,64,44,102,61,244,1,126,10,72,139,69,224,102,199,64,44,4,0,72,139,85,168,139,117,180,191,3,0,0,0,232,4,246,0,0,72,139,69,224,243,15,17,64,80,72,139,85,168,139,117,180,191,4,0,0,0,232,234,245,0,0,72,139,69,224,243,15,17,64,76,72,139,85, 168,139,117,180,191,5,0,0,0,232,208,245,0,0,243,15,44,192,137,194,131,226,3,72,139,69,224,136,144,153,0,0,0,72,139,85,168,139,117,180,191,6,0,0,0,232,43,246,0,0,72,137,199,232,194,237,255,255,72,137,194,72,139,69,224,72,137,80,88,72,139,85,168,139,117, 180,191,7,0,0,0,232,7,246,0,0,72,137,199,232,158,237,255,255,72,137,194,72,139,69,224,72,137,80,96,72,139,69,224,72,139,64,96,72,139,0,15,182,0,132,192,116,33,72,139,69,224,72,139,112,96,72,139,69,224,72,139,120,64,232,49,88,253,255,72,137,198,72,139, 125,224,232,1,174,1,0,72,139,85,168,139,117,180,191,8,0,0,0,232,176,245,0,0,72,137,199,232,71,237,255,255,72,137,194,72,139,69,224,72,137,80,104,72,139,69,224,72,139,112,104,72,139,69,224,72,139,120,64,232,236,87,253,255,72,137,194,72,139,69,224,72,137, 144,160,0,0,0,72,139,69,224,72,139,80,104,72,141,5,184,0,6,0,72,57,194,117,49,72,139,69,224,139,64,48,131,248,1,117,13,72,141,5,96,255,5,0,72,137,69,152,235,11,72,141,5,115,255,5,0,72,137,69,152,72,139,125,224,72,139,117,152,232,228,154,1,0,72,139,69, 224,72,139,80,96,72,141,5,115,0,6,0,72,57,194,117,23,72,139,117,224,72,139,125,224,185,0,0,0,0,186,0,0,0,0,232,186,142,1,0,72,139,117,224,72,139,125,200,232,166,28,254,255,233,23,1,0,0,72,141,69,236,72,141,85,240,72,141,77,244,72,141,117,248,72,141,125, 252,76,139,85,200,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,112,221,255,255,72,139,69,224,139,64,48,131,248,1,117,13,72,141,5,198,254,5,0,72,137,69,160,235,11,72,141,5,217,254,5,0,72,137,69,160,72,139,125,224,72,139,117,160,232,74,154, 1,0,72,139,117,224,72,139,125,224,185,0,0,0,0,186,0,0,0,0,232,52,142,1,0,72,141,61,130,212,3,0,232,235,113,1,0,72,137,198,72,139,125,200,185,1,0,0,0,72,141,21,182,18,4,0,184,0,0,0,0,232,28,126,1,0,139,69,248,137,194,72,139,69,224,102,137,80,40,139,69, 244,137,194,72,139,69,224,102,137,80,42,72,139,117,224,72,139,125,200,232,221,27,254,255,72,139,125,200,232,11,163,253,255,72,139,117,224,72,139,125,200,232,132,159,253,255,139,69,252,133,192,116,37,139,69,236,243,15,42,192,139,69,240,243,15,42,224,72, 139,125,200,15,87,219,15,40,208,15,87,201,15,40,196,232,92,7,254,255,235,17,72,139,125,200,232,85,34,254,255,72,137,199,232,173,240,253,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,224,139,77, 236,72,139,85,240,72,139,125,248,73,137,192,190,1,0,0,0,232,72,251,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,190,2,0,0,0,232,19, 251,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,96,72,139,0,15,182,0,132,192,116,33,72,139,69,248,72,139,112,96,72,139,69,248,72,139,120,64,232,166,85,253,255,72,137,198,72,139,125,248,232,122,172,1,0,72,139,125, 248,232,250,224,2,0,201,195,85,72,137,229,65,84,83,72,129,236,16,1,0,0,72,137,189,8,255,255,255,72,137,181,0,255,255,255,72,139,5,109,245,5,0,72,139,16,72,137,85,232,49,210,72,139,133,8,255,255,255,72,137,133,24,255,255,255,72,139,133,24,255,255,255, 72,139,120,104,232,175,233,255,255,72,139,24,72,139,133,24,255,255,255,72,139,120,96,232,156,233,255,255,76,139,32,72,139,133,24,255,255,255,72,139,120,88,232,137,233,255,255,72,139,16,72,139,133,24,255,255,255,15,182,128,153,0,0,0,15,190,200,72,139, 133,24,255,255,255,243,15,16,64,76,243,15,90,200,72,139,133,24,255,255,255,243,15,16,64,80,243,15,90,192,72,139,133,24,255,255,255,15,183,64,44,152,72,141,189,32,255,255,255,72,137,92,36,16,76,137,100,36,8,72,137,20,36,65,137,201,65,137,192,72,141,13, 86,212,3,0,186,200,0,0,0,190,0,0,0,0,184,2,0,0,0,232,138,136,3,0,72,139,189,24,255,255,255,72,141,149,32,255,255,255,72,139,181,24,255,255,255,232,52,221,2,0,72,139,5,137,244,5,0,72,139,85,232,72,51,16,116,5,232,97,136,3,0,72,129,196,16,1,0,0,91,65,92, 201,195,85,72,137,229,72,131,196,128,72,137,125,184,72,137,117,176,72,137,85,168,72,137,77,160,76,137,69,152,76,137,77,144,72,139,69,184,72,137,69,208,72,139,69,208,15,182,64,46,131,224,3,132,192,15,148,192,15,182,192,137,69,244,72,139,69,208,15,182, 64,46,131,224,3,60,3,117,104,72,139,69,208,15,183,64,44,102,133,192,126,91,72,139,125,176,232,165,112,253,255,137,69,224,139,125,224,232,197,33,2,0,137,69,220,139,125,224,232,210,33,2,0,137,69,216,72,139,69,208,15,183,64,44,102,133,192,126,14,72,139, 69,208,15,183,64,44,152,137,69,140,235,7,199,69,140,6,0,0,0,139,69,140,15,175,69,220,131,192,2,137,69,252,139,69,216,255,192,137,69,248,235,105,72,139,69,176,72,139,128,192,0,0,0,72,133,192,116,76,72,139,69,176,72,139,128,192,0,0,0,72,139,64,24,72,133, 192,116,56,72,139,117,208,72,139,125,176,232,31,79,255,255,72,137,69,200,72,139,125,200,232,143,79,255,255,137,69,252,72,139,125,200,232,191,79,255,255,137,194,139,69,244,1,192,137,209,41,193,137,200,137,69,248,235,13,199,69,248,10,0,0,0,139,69,248,137, 69,252,72,139,117,176,72,139,125,208,232,9,52,254,255,243,15,42,192,243,15,17,69,240,72,139,117,176,72,139,125,208,232,249,52,254,255,243,15,42,192,243,15,17,69,236,243,15,42,69,252,243,15,88,69,240,243,15,17,69,232,243,15,42,69,248,243,15,88,69,236, 243,15,17,69,228,243,15,42,77,244,243,15,16,69,236,243,15,88,193,243,15,17,69,236,243,15,16,69,240,243,15,44,208,72,139,69,168,137,16,243,15,16,69,236,243,15,44,208,72,139,69,160,137,16,243,15,16,69,232,243,15,44,208,72,139,69,152,137,16,243,15,16,69, 228,243,15,44,208,72,139,69,144,137,16,201,195,85,72,137,229,65,84,83,72,131,236,48,72,137,125,216,72,137,117,208,137,85,204,137,77,200,72,139,69,216,72,137,69,232,72,139,69,232,15,183,64,40,137,194,139,69,204,141,4,2,137,194,72,139,69,232,102,137,80, 40,72,139,69,232,15,183,64,42,137,194,139,69,200,141,4,2,137,194,72,139,69,232,102,137,80,42,72,139,125,208,232,102,110,253,255,133,192,116,104,72,139,117,232,72,139,125,208,232,221,77,255,255,72,137,69,224,139,85,200,139,117,204,72,139,125,224,232,56, 79,255,255,72,139,125,224,232,122,78,255,255,65,137,196,72,139,125,224,232,50,78,255,255,137,195,72,139,125,224,232,95,62,255,255,72,139,117,208,72,139,125,232,65,185,0,0,0,0,69,137,224,137,217,72,137,194,232,189,9,0,0,72,139,117,232,72,139,125,208,232, 2,113,253,255,72,131,196,48,91,65,92,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,139,69,232,72,137,69,248,72,139,117,248,72,139,125,224,232,81,77,255,255,72,137,69,240,139,117,220,72,139,125,240,232,254,78,255,255, 72,139,125,224,232,176,109,253,255,133,192,116,84,72,139,125,248,72,139,117,224,232,193,149,253,255,133,192,116,67,131,125,220,0,116,13,72,141,5,74,209,3,0,72,137,69,208,235,11,72,141,5,253,178,3,0,72,137,69,208,72,139,125,240,232,177,61,255,255,72,139, 117,224,72,139,77,208,72,137,194,72,141,61,228,178,3,0,184,0,0,0,0,232,226,0,2,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,139,69,232,72,137,69,248,72,139,117,248,72,139,125,224,232,182,76,255,255,72,137,69,240,72, 139,69,232,72,139,16,72,139,5,142,34,6,0,72,57,194,116,12,139,117,220,72,139,125,240,232,199,78,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,137,69,248,72,139,117,248,72,139,125,224,232,167,112,253,255,201, 195,85,72,137,229,65,84,83,72,131,236,64,72,137,125,200,72,137,117,192,137,85,188,72,139,69,200,72,137,69,232,131,125,188,0,15,132,136,0,0,0,72,139,125,232,72,139,117,192,232,207,148,253,255,133,192,15,132,183,0,0,0,72,139,117,232,72,139,125,192,232, 32,76,255,255,72,137,69,224,72,139,69,232,15,182,64,46,131,224,3,60,3,117,13,72,139,117,232,72,139,125,192,232,65,27,254,255,72,139,125,224,232,176,76,255,255,65,137,196,72,139,125,224,232,104,76,255,255,137,195,72,139,125,224,232,149,60,255,255,72,139, 117,192,72,139,125,232,65,185,1,0,0,0,69,137,224,137,217,72,137,194,232,243,7,0,0,72,139,125,224,232,177,76,255,255,235,68,72,139,117,232,72,139,125,192,232,173,75,255,255,72,137,69,216,72,139,125,232,72,139,117,192,232,54,148,253,255,133,192,116,34, 72,139,125,216,232,68,60,255,255,72,139,117,192,72,139,125,232,72,137,194,232,215,14,0,0,72,139,125,216,232,164,76,255,255,72,131,196,64,91,65,92,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,137,77,216,68,137,69,212,68, 137,77,208,72,139,69,232,72,137,69,248,72,139,69,248,15,182,64,46,131,224,3,60,1,15,133,129,0,0,0,72,141,61,15,164,3,0,232,160,106,1,0,72,137,69,240,72,139,125,248,72,139,117,240,232,205,123,1,0,72,133,192,116,83,131,125,24,0,116,65,242,15,42,69,208, 242,15,42,77,212,242,15,42,109,216,242,15,42,117,220,72,139,125,248,72,139,117,240,102,15,40,224,102,15,87,219,102,15,40,209,102,15,40,205,102,15,40,198,72,141,21,17,207,3,0,184,5,0,0,0,232,145,118,1,0,199,69,204,1,0,0,0,233,167,0,0,0,199,69,204,0,0, 0,0,233,155,0,0,0,72,139,69,248,15,182,64,46,131,224,3,60,3,117,59,131,125,24,0,116,44,243,15,42,69,208,243,15,42,77,212,243,15,42,109,216,243,15,42,117,220,72,139,125,248,15,40,224,15,87,219,15,40,209,15,40,205,15,40,198,232,185,236,255,255,199,69,204, 1,0,0,0,235,81,72,139,69,248,15,182,64,46,131,224,3,60,2,117,59,131,125,24,0,116,44,243,15,42,69,208,243,15,42,77,212,243,15,42,109,216,243,15,42,117,220,72,139,125,248,15,40,224,15,87,219,15,40,209,15,40,205,15,40,198,232,178,223,255,255,199,69,204, 1,0,0,0,235,7,199,69,204,0,0,0,0,139,69,204,201,195,85,72,137,229,65,85,65,84,83,72,129,236,152,0,0,0,72,137,125,168,72,137,117,160,72,139,69,168,72,137,69,208,72,139,69,208,15,182,64,46,131,224,3,60,1,15,133,82,1,0,0,72,141,61,27,206,3,0,232,76,105, 1,0,72,137,198,72,139,125,208,232,126,122,1,0,72,133,192,15,132,179,0,0,0,72,139,69,208,72,139,16,72,141,5,171,76,6,0,72,139,0,72,57,194,117,30,72,139,125,208,232,80,120,253,255,133,192,15,133,140,0,0,0,72,139,125,208,232,93,120,253,255,133,192,117,127, 72,141,61,198,205,3,0,232,247,104,1,0,72,137,198,72,139,125,208,232,150,121,1,0,72,137,194,72,139,125,208,72,139,117,160,184,0,0,0,0,255,210,72,139,69,208,15,183,64,42,68,15,191,232,72,139,69,208,15,183,64,40,15,191,216,72,141,61,23,165,3,0,232,182,104, 1,0,73,137,196,72,141,61,142,162,3,0,232,167,104,1,0,72,139,125,160,69,137,233,65,137,216,76,137,225,72,137,194,72,141,53,100,205,3,0,184,0,0,0,0,232,93,254,0,0,235,83,72,139,69,208,15,183,64,42,68,15,191,232,72,139,69,208,15,183,64,40,15,191,216,72, 141,61,104,177,3,0,232,97,104,1,0,73,137,196,72,141,61,57,162,3,0,232,82,104,1,0,72,139,125,160,69,137,233,65,137,216,76,137,225,72,137,194,72,141,53,15,205,3,0,184,0,0,0,0,232,8,254,0,0,72,139,69,208,72,139,112,16,72,139,125,160,232,69,1,1,0,72,139, 125,160,72,141,53,247,179,3,0,184,0,0,0,0,232,226,253,0,0,233,127,2,0,0,72,139,69,208,15,182,64,46,131,224,3,60,2,117,126,72,139,69,208,15,183,64,42,68,15,191,232,72,139,69,208,15,183,64,40,15,191,216,72,141,61,215,192,3,0,232,212,103,1,0,73,137,196, 72,141,61,172,161,3,0,232,197,103,1,0,72,139,125,160,69,137,233,65,137,216,76,137,225,72,137,194,72,141,53,130,204,3,0,184,0,0,0,0,232,123,253,0,0,72,139,69,208,72,139,112,16,72,139,125,160,232,184,0,1,0,72,139,125,160,72,141,53,106,179,3,0,184,0,0,0, 0,232,85,253,0,0,233,242,1,0,0,72,139,69,208,15,182,64,46,131,224,3,60,3,15,133,102,1,0,0,72,139,69,208,139,64,48,137,69,220,131,125,220,2,117,21,72,141,61,180,163,3,0,232,74,103,1,0,72,137,133,120,255,255,255,235,51,131,125,220,1,117,18,72,141,61,18, 204,3,0,232,47,103,1,0,72,137,69,128,235,16,72,141,61,10,204,3,0,232,29,103,1,0,72,137,69,128,72,139,69,128,72,137,133,120,255,255,255,72,139,133,120,255,255,255,72,137,69,200,72,139,69,208,72,139,120,88,232,81,224,255,255,72,137,69,192,72,139,69,208, 72,139,120,96,232,64,224,255,255,72,137,69,184,72,139,69,208,72,139,120,104,232,47,224,255,255,72,137,69,176,72,139,69,208,15,182,128,153,0,0,0,102,152,152,242,15,42,192,242,15,17,69,136,72,139,69,208,243,15,16,64,76,243,15,90,192,242,15,17,69,144,72, 139,69,208,243,15,16,64,80,243,15,90,192,242,15,17,69,152,72,139,69,208,15,183,64,44,15,191,216,72,139,69,208,15,183,64,42,68,15,191,224,72,139,69,208,15,183,64,40,68,15,191,232,72,141,61,77,160,3,0,232,102,102,1,0,72,137,194,72,139,77,200,72,139,125, 160,72,139,69,176,72,137,68,36,24,72,139,69,184,72,137,68,36,16,72,139,69,192,72,137,68,36,8,137,28,36,242,15,16,85,136,242,15,16,77,144,242,15,16,69,152,69,137,225,69,137,232,72,141,53,17,203,3,0,184,3,0,0,0,232,238,251,0,0,72,139,125,160,72,141,53, 238,177,3,0,184,0,0,0,0,232,217,251,0,0,235,121,72,139,69,208,15,183,64,42,68,15,191,232,72,139,69,208,15,183,64,40,15,191,216,72,141,61,82,162,3,0,232,221,101,1,0,73,137,196,72,141,61,181,159,3,0,232,206,101,1,0,72,139,125,160,69,137,233,65,137,216, 76,137,225,72,137,194,72,141,53,139,202,3,0,184,0,0,0,0,232,132,251,0,0,72,139,69,208,72,139,112,16,72,139,125,160,232,193,254,0,0,72,139,125,160,72,141,53,115,177,3,0,184,0,0,0,0,232,94,251,0,0,72,129,196,152,0,0,0,91,65,92,65,93,201,195,85,72,137,229, 65,84,83,72,131,236,96,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,68,137,69,172,68,137,77,168,72,139,125,192,232,132,148,1,0,137,69,236,131,125,236,1,116,10,139,69,236,255,200,137,69,160,235,7,199,69,160,1,0,0,0,139,77,160,137,77,232,139, 69,172,139,85,16,137,209,41,193,137,200,137,69,224,199,69,228,0,0,0,0,233,188,0,0,0,139,69,224,131,232,7,137,194,15,175,85,228,137,208,193,250,31,247,125,232,3,69,172,137,69,220,131,125,188,0,116,79,139,93,220,131,195,7,68,139,101,24,65,255,204,72,139, 125,200,232,214,21,254,255,72,137,199,139,85,24,139,117,220,139,69,228,137,68,36,8,72,139,69,176,72,137,4,36,65,137,209,65,137,216,68,137,225,137,242,72,137,254,72,141,61,178,201,3,0,184,0,0,0,0,232,48,249,1,0,235,74,139,93,220,131,195,7,68,139,101,24, 65,255,204,72,139,125,200,232,135,21,254,255,72,137,199,139,85,220,139,77,228,72,139,117,176,139,69,24,137,68,36,8,137,28,36,69,137,225,65,137,208,72,137,242,72,137,254,72,141,61,166,201,3,0,184,0,0,0,0,232,228,248,1,0,255,69,228,139,69,228,59,69,236, 15,140,56,255,255,255,72,139,125,192,232,176,147,1,0,137,69,236,131,125,236,1,116,10,139,69,236,255,200,137,69,164,235,7,199,69,164,1,0,0,0,139,77,164,137,77,232,199,69,228,0,0,0,0,233,183,0,0,0,139,69,224,131,232,7,137,194,15,175,85,228,137,208,193, 250,31,247,125,232,3,69,172,137,69,216,131,125,188,0,116,72,139,93,168,131,195,2,68,139,101,216,65,131,196,7,72,139,125,200,232,216,20,254,255,72,137,198,139,77,168,139,85,216,139,69,228,137,68,36,8,72,139,69,176,72,137,4,36,65,137,217,69,137,224,72, 141,61,36,201,3,0,184,0,0,0,0,232,58,248,1,0,235,76,139,93,168,131,195,2,68,139,101,216,65,131,196,7,72,139,125,200,232,144,20,254,255,72,137,199,139,69,168,139,85,216,139,77,228,72,139,117,176,137,92,36,8,68,137,36,36,65,137,193,65,137,208,72,137,242, 72,137,254,72,141,61,22,201,3,0,184,0,0,0,0,232,236,247,1,0,255,69,228,139,69,228,59,69,236,15,140,61,255,255,255,72,131,196,96,91,65,92,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,120,1,0,0,72,137,125,152,72,137,117,144,72,137,85,136, 137,77,132,68,137,69,128,68,137,141,124,255,255,255,76,139,85,152,72,141,69,192,72,141,85,196,72,141,77,200,72,141,117,204,72,139,125,144,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,115,243,255,255,139,85,196,139,69,204,137,209,41,193, 137,200,137,69,188,139,85,192,139,69,200,137,209,41,193,137,200,137,69,184,72,139,69,152,15,182,64,46,131,224,3,60,1,15,133,197,1,0,0,72,139,69,152,72,139,16,72,141,5,147,71,6,0,72,139,0,72,57,194,117,16,72,141,5,68,198,3,0,72,137,133,200,254,255,255, 235,14,72,141,13,94,200,3,0,72,137,141,200,254,255,255,72,139,133,200,254,255,255,72,137,69,168,131,189,124,255,255,255,0,15,132,175,0,0,0,139,93,200,68,139,101,204,68,139,109,192,68,139,117,204,68,139,125,192,139,77,196,137,141,212,254,255,255,139,69, 200,137,133,216,254,255,255,139,77,196,137,141,220,254,255,255,139,69,200,137,133,224,254,255,255,139,77,204,137,141,228,254,255,255,72,139,125,144,232,35,19,254,255,72,137,198,72,139,69,136,72,137,68,36,56,72,139,69,168,72,137,68,36,48,137,92,36,40, 68,137,100,36,32,68,137,108,36,24,68,137,116,36,16,68,137,124,36,8,139,133,212,254,255,255,137,4,36,68,139,141,216,254,255,255,68,139,133,220,254,255,255,139,141,224,254,255,255,139,149,228,254,255,255,72,141,61,165,199,3,0,184,0,0,0,0,232,83,246,1,0, 233,163,4,0,0,139,93,200,68,139,101,204,68,139,109,192,68,139,117,204,68,139,125,192,139,77,196,137,141,232,254,255,255,139,69,200,137,133,236,254,255,255,139,77,196,137,141,240,254,255,255,139,69,200,137,133,244,254,255,255,139,77,204,137,141,248,254, 255,255,72,139,125,144,232,116,18,254,255,72,137,198,72,139,85,136,137,92,36,48,68,137,100,36,40,68,137,108,36,32,68,137,116,36,24,68,137,124,36,16,139,133,232,254,255,255,137,68,36,8,139,141,236,254,255,255,137,12,36,68,139,141,240,254,255,255,68,139, 133,244,254,255,255,139,141,248,254,255,255,72,141,61,88,199,3,0,184,0,0,0,0,232,174,245,1,0,72,139,125,144,232,20,18,254,255,72,137,198,72,139,77,168,72,139,85,136,72,141,61,107,199,3,0,184,0,0,0,0,232,137,245,1,0,233,217,3,0,0,72,139,69,152,15,182, 64,46,131,224,3,60,2,15,133,8,2,0,0,131,189,124,255,255,255,0,15,132,254,0,0,0,139,93,200,68,139,101,204,68,139,109,192,68,139,117,204,68,139,125,192,139,69,196,131,192,4,137,133,252,254,255,255,139,69,192,131,232,4,137,133,0,255,255,255,139,69,196,137, 133,4,255,255,255,139,69,200,131,192,4,137,133,8,255,255,255,139,77,196,137,141,12,255,255,255,139,69,200,137,133,16,255,255,255,139,69,196,131,192,4,137,133,20,255,255,255,139,77,200,137,141,24,255,255,255,139,69,204,137,133,28,255,255,255,72,139,125, 144,232,90,17,254,255,72,137,198,72,139,69,136,72,137,68,36,80,137,92,36,72,68,137,100,36,64,68,137,108,36,56,68,137,116,36,48,68,137,124,36,40,139,141,252,254,255,255,137,76,36,32,139,133,0,255,255,255,137,68,36,24,139,141,4,255,255,255,137,76,36,16, 139,133,8,255,255,255,137,68,36,8,139,141,12,255,255,255,137,12,36,68,139,141,16,255,255,255,68,139,133,20,255,255,255,139,141,24,255,255,255,139,149,28,255,255,255,72,141,61,117,198,3,0,184,0,0,0,0,232,107,244,1,0,233,187,2,0,0,139,93,200,68,139,101, 204,68,139,109,192,68,139,117,204,68,139,125,192,139,69,196,131,192,4,137,133,32,255,255,255,139,69,192,131,232,4,137,133,36,255,255,255,139,69,196,137,133,40,255,255,255,139,69,200,131,192,4,137,133,44,255,255,255,139,77,196,137,141,48,255,255,255,139, 69,200,137,133,52,255,255,255,139,69,196,131,192,4,137,133,56,255,255,255,139,77,200,137,141,60,255,255,255,139,69,204,137,133,64,255,255,255,72,139,125,144,232,92,16,254,255,72,137,198,72,139,85,136,137,92,36,80,68,137,100,36,72,68,137,108,36,64,68, 137,116,36,56,68,137,124,36,48,139,141,32,255,255,255,137,76,36,40,139,133,36,255,255,255,137,68,36,32,139,141,40,255,255,255,137,76,36,24,139,133,44,255,255,255,137,68,36,16,139,141,48,255,255,255,137,76,36,8,139,133,52,255,255,255,137,4,36,68,139,141, 56,255,255,255,68,139,133,60,255,255,255,139,141,64,255,255,255,72,141,61,208,197,3,0,184,0,0,0,0,232,110,243,1,0,233,190,1,0,0,72,139,69,152,15,182,64,46,131,224,3,60,3,15,133,171,1,0,0,131,189,124,255,255,255,0,15,132,210,0,0,0,139,93,200,68,139,101, 204,68,139,109,192,68,139,117,204,68,139,125,192,139,77,196,137,141,68,255,255,255,139,69,200,131,192,4,137,133,72,255,255,255,139,69,196,137,133,76,255,255,255,139,77,200,137,141,80,255,255,255,139,69,196,131,232,4,137,133,84,255,255,255,139,69,200, 137,133,88,255,255,255,139,77,204,137,141,92,255,255,255,72,139,125,144,232,87,15,254,255,72,137,198,72,139,69,136,72,137,68,36,64,137,92,36,56,68,137,100,36,48,68,137,108,36,40,68,137,116,36,32,68,137,124,36,24,139,133,68,255,255,255,137,68,36,16,139, 141,72,255,255,255,137,76,36,8,139,133,76,255,255,255,137,4,36,68,139,141,80,255,255,255,68,139,133,84,255,255,255,139,141,88,255,255,255,139,149,92,255,255,255,72,141,61,30,197,3,0,184,0,0,0,0,232,124,242,1,0,233,204,0,0,0,139,93,200,68,139,101,204, 68,139,109,192,68,139,117,204,68,139,125,192,139,77,196,137,141,96,255,255,255,139,69,200,131,192,4,137,133,100,255,255,255,139,69,196,137,133,104,255,255,255,139,77,200,137,141,108,255,255,255,139,69,196,131,232,4,137,133,112,255,255,255,139,69,200, 137,133,116,255,255,255,139,77,204,137,141,120,255,255,255,72,139,125,144,232,133,14,254,255,72,137,198,72,139,85,136,137,92,36,64,68,137,100,36,56,68,137,108,36,48,68,137,116,36,40,68,137,124,36,32,139,133,96,255,255,255,137,68,36,24,139,141,100,255, 255,255,137,76,36,16,139,133,104,255,255,255,137,68,36,8,139,141,108,255,255,255,137,12,36,68,139,141,112,255,255,255,68,139,133,116,255,255,255,139,141,120,255,255,255,72,141,61,157,196,3,0,184,0,0,0,0,232,171,241,1,0,72,139,125,152,232,70,142,1,0,72, 137,69,176,72,131,125,176,0,116,61,139,69,192,139,85,196,139,77,200,139,117,204,72,139,125,136,68,139,149,124,255,255,255,76,139,93,176,72,139,93,144,137,68,36,8,137,20,36,65,137,201,65,137,240,72,137,249,68,137,210,76,137,222,72,137,223,232,87,247,255, 255,72,129,196,120,1,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,72,139,125,224,232,215,139,1,0,137,69,248,199,69,252,0,0,0,0,235,39,72,139,125,232,232,133,13,254,255,72,137,198,139,77, 252,72,139,85,216,72,141,61,37,196,3,0,184,0,0,0,0,232,251,240,1,0,255,69,252,139,69,252,59,69,248,124,209,72,139,125,224,232,203,139,1,0,137,69,248,199,69,252,0,0,0,0,235,39,72,139,125,232,232,65,13,254,255,72,137,198,139,77,252,72,139,85,216,72,141, 61,247,195,3,0,184,0,0,0,0,232,183,240,1,0,255,69,252,139,69,252,59,69,248,124,209,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,139,69,248,15,182,64,46,131,224,3,132,192,116,50,72,139,125,240,232,237,12,254,255,72, 137,198,72,139,85,232,72,141,61,188,195,3,0,184,0,0,0,0,232,102,240,1,0,72,139,85,232,72,139,117,248,72,139,125,240,232,13,255,255,255,201,195,85,72,137,229,65,84,83,72,131,236,80,72,137,125,184,72,137,117,176,72,137,85,168,137,77,164,72,139,69,184,15, 182,64,46,131,224,3,60,1,15,133,198,1,0,0,232,13,228,0,0,72,137,69,216,139,69,164,72,99,208,72,139,117,168,72,139,125,216,232,132,229,0,0,72,139,69,184,72,139,120,16,232,185,250,0,0,137,69,236,72,139,69,184,72,139,120,16,232,185,250,0,0,72,137,69,208, 72,139,125,216,232,156,250,0,0,137,69,232,72,139,125,216,232,160,250,0,0,72,137,69,200,131,125,236,0,15,142,165,0,0,0,131,125,232,0,15,142,155,0,0,0,72,139,69,208,139,0,131,248,2,15,133,140,0,0,0,72,139,69,208,72,139,64,8,72,139,56,72,141,53,251,194, 3,0,232,12,118,3,0,133,192,117,113,72,139,69,200,139,0,131,248,2,117,102,72,139,69,200,72,139,64,8,72,139,56,72,141,53,213,194,3,0,232,230,117,3,0,133,192,117,75,72,139,93,200,72,131,195,16,68,139,101,232,65,255,204,72,141,61,100,142,3,0,232,199,90,1, 0,72,137,198,72,139,125,184,72,137,217,68,137,226,232,96,95,1,0,72,139,69,184,72,139,120,16,232,89,227,0,0,72,139,85,184,72,139,69,216,72,137,66,16,233,142,0,0,0,72,139,69,184,15,183,64,40,152,137,69,228,72,139,69,184,15,183,64,42,152,137,69,224,72,139, 117,184,72,139,125,176,232,77,6,254,255,72,139,69,216,139,85,224,139,117,228,72,139,125,176,73,137,192,185,0,0,0,0,232,208,195,255,255,72,141,5,50,64,6,0,72,139,0,72,133,192,116,46,72,141,5,35,64,6,0,72,139,0,72,139,16,72,141,5,182,61,6,0,72,139,0,72, 57,194,117,18,72,141,5,7,64,6,0,72,139,0,72,137,199,232,16,99,253,255,72,139,125,176,232,10,11,254,255,72,137,199,232,120,228,253,255,131,125,232,0,126,68,72,139,69,200,139,0,131,248,2,117,57,72,139,69,200,72,139,64,8,72,139,56,72,141,53,208,193,3,0, 232,225,116,3,0,133,192,117,30,232,59,60,253,255,235,23,139,69,164,72,99,208,72,139,69,184,72,139,120,16,72,139,117,168,232,195,227,0,0,72,131,196,80,91,65,92,201,195,85,72,137,229,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,201,195,85,72, 137,229,83,72,131,236,40,72,141,61,1,150,3,0,232,140,89,1,0,72,137,199,65,185,0,0,0,0,65,184,11,0,0,0,185,48,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,196,71,1,0,72,137,194,72,141,5,60,62,6,0,72,137,16,72,141,53,154,255,255,255,72,141,5,43,62,6,0, 72,139,56,232,125,85,1,0,72,141,29,90,208,255,255,72,141,61,39,193,3,0,232,46,89,1,0,72,137,199,65,185,0,0,0,0,65,184,3,0,0,0,185,80,0,0,0,72,137,218,190,0,0,0,0,184,0,0,0,0,232,104,71,1,0,72,137,5,107,15,6,0,72,141,53,115,203,255,255,72,139,61,93,15, 6,0,232,168,84,1,0,72,141,53,141,203,255,255,72,139,61,74,15,6,0,232,201,84,1,0,72,141,53,184,203,255,255,72,139,61,55,15,6,0,232,208,84,1,0,72,141,53,228,203,255,255,72,139,61,36,15,6,0,232,215,84,1,0,72,141,53,209,203,255,255,72,139,61,17,15,6,0,232, 222,84,1,0,72,141,61,5,146,3,0,232,150,88,1,0,72,141,53,161,206,255,255,72,139,61,242,14,6,0,199,68,36,16,0,0,0,0,199,68,36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,240,77,1,0,72,141,61,46,131,3, 0,232,71,88,1,0,72,141,53,152,203,255,255,72,139,61,163,14,6,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,190,77,1,0,72,141,61,26,192,3,0,232,21,88,1,0,72,141,53,239,203,255,255,72,139,61,113,14,6,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194, 184,0,0,0,0,232,140,77,1,0,72,141,61,236,191,3,0,232,227,87,1,0,72,141,53,127,203,255,255,72,139,61,63,14,6,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,90,77,1,0,72,141,61,191,191,3,0,232,177,87,1,0,72,141,53,214,203,255,255,72,139,61,13, 14,6,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,46,77,1,0,72,141,61,156,191,3,0,232,133,87,1,0,72,141,53,237,203,255,255,72,139,61,225,13,6,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,2,77,1,0,72,141,61,120,191,3,0,232,89,87,1,0,72,141,53,231,203,255,255, 72,139,61,181,13,6,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,208,76,1,0,72,141,61,80,191,3,0,232,39,87,1,0,72,141,53,21,204,255,255,72,139,61,131,13,6,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,158,76,1,0,72,141,61,41,191,3, 0,232,245,86,1,0,72,137,199,65,185,0,0,0,0,65,184,1,0,0,0,185,48,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,45,69,1,0,72,137,5,64,13,6,0,72,141,53,115,200,255,255,72,139,61,50,13,6,0,232,109,82,1,0,72,141,53,123,200,255,255,72,139,61,31,13,6,0,232, 142,82,1,0,72,141,53,141,200,255,255,72,139,61,12,13,6,0,232,149,82,1,0,72,141,53,157,200,255,255,72,139,61,249,12,6,0,232,156,82,1,0,72,141,53,187,200,255,255,72,139,61,230,12,6,0,232,163,82,1,0,72,141,29,120,229,255,255,72,141,61,150,190,3,0,232,84, 86,1,0,72,137,199,65,185,0,0,0,0,65,184,11,0,0,0,185,168,0,0,0,72,137,218,190,0,0,0,0,184,0,0,0,0,232,142,68,1,0,72,137,5,153,12,6,0,72,141,53,242,209,255,255,72,139,61,139,12,6,0,232,206,81,1,0,72,141,53,88,211,255,255,72,139,61,120,12,6,0,232,239,81, 1,0,72,141,53,8,212,255,255,72,139,61,101,12,6,0,232,246,81,1,0,72,141,53,54,212,255,255,72,139,61,82,12,6,0,232,253,81,1,0,72,141,61,182,128,3,0,232,207,85,1,0,72,141,53,201,208,255,255,72,139,61,51,12,6,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184, 0,0,0,0,232,70,75,1,0,72,141,61,12,143,3,0,232,157,85,1,0,72,141,53,101,216,255,255,72,139,61,1,12,6,0,199,68,36,16,0,0,0,0,199,68,36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,247,74,1,0,72,141,61, 150,189,3,0,232,78,85,1,0,72,141,53,78,217,255,255,72,139,61,178,11,6,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,197,74,1,0,72,139,61,147,11,6,0,72,141,53,68,225,5,0,232,107,81,1,0,72,139,61,128,11,6,0,72,141,53,105,228,255,255,232,90,83, 1,0,72,131,196,40,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,139,125,224,232,226,85,253,255,133,192,15,132,173,0,0,0,72,139,125,224,232,202,5,254,255,72,137,69,248,72,139,69,232,243,15,16,136,136,4,0,0,15,87,192,15,46,200, 117,4,122,2,235,15,72,139,69,232,139,128,68,4,0,0,137,69,216,235,13,72,139,69,232,139,128,72,4,0,0,137,69,216,72,139,85,232,72,139,117,248,139,77,216,72,141,61,209,188,3,0,184,0,0,0,0,232,7,233,1,0,72,139,69,232,243,15,16,136,136,4,0,0,15,87,192,15,46, 200,117,4,122,2,235,15,72,139,69,232,139,128,68,4,0,0,137,69,220,235,13,72,139,69,232,139,128,72,4,0,0,137,69,220,72,139,85,232,72,139,117,248,139,77,220,72,141,61,177,188,3,0,184,0,0,0,0,232,183,232,1,0,201,195,85,72,137,229,72,131,236,112,72,137,125, 216,72,137,117,208,72,139,125,208,232,11,5,254,255,72,137,69,232,199,69,252,1,0,0,0,72,139,125,216,72,139,117,208,232,177,25,254,255,137,69,248,72,139,125,216,72,139,117,208,232,167,26,254,255,137,69,244,72,139,69,216,139,64,68,131,248,29,126,7,199,69, 252,2,0,0,0,72,139,69,216,139,64,68,131,248,59,126,7,199,69,252,3,0,0,0,72,139,69,216,68,139,128,72,4,0,0,72,139,69,216,139,64,64,137,194,3,85,244,72,139,69,216,139,64,68,137,193,3,77,248,139,117,244,139,125,248,76,139,85,232,72,139,69,216,72,137,68, 36,8,68,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,165,135,3,0,184,0,0,0,0,232,243,231,1,0,72,139,69,216,243,15,16,136,136,4,0,0,15,87,192,15,46,200,117,4,122,2,235,15,72,139,69,216,139,128,68,4,0,0,137,69,176,235,13,72,139,69, 216,139,128,72,4,0,0,137,69,176,72,139,69,216,139,64,64,3,69,244,137,193,43,77,252,72,139,69,216,139,64,68,3,69,248,137,199,43,125,252,139,69,252,3,69,244,68,141,80,1,139,69,252,3,69,248,141,80,1,72,139,117,232,72,139,69,216,72,137,68,36,16,139,69,176, 137,68,36,8,139,69,252,137,4,36,65,137,201,65,137,248,68,137,209,72,141,61,132,187,3,0,184,0,0,0,0,232,90,231,1,0,72,139,69,216,243,15,16,136,136,4,0,0,15,87,192,15,46,200,117,4,122,2,235,15,72,139,69,216,139,128,68,4,0,0,137,69,180,235,13,72,139,69, 216,139,128,72,4,0,0,137,69,180,139,69,252,139,77,244,1,193,72,139,69,216,139,64,68,3,69,248,137,199,43,125,252,72,139,69,216,139,64,64,3,69,244,43,69,252,68,141,80,255,139,69,252,3,69,248,141,80,1,72,139,117,232,72,139,69,216,72,137,68,36,16,139,69, 180,137,68,36,8,139,69,252,137,4,36,65,137,201,65,137,248,68,137,209,72,141,61,51,187,3,0,184,0,0,0,0,232,193,230,1,0,72,139,69,216,139,128,76,4,0,0,137,69,184,72,139,69,216,139,128,60,4,0,0,137,69,188,72,139,69,216,72,131,192,80,72,137,69,192,72,139, 69,216,72,139,128,96,4,0,0,72,139,56,72,141,53,26,160,3,0,232,247,108,3,0,133,192,116,20,72,139,69,216,72,139,128,96,4,0,0,72,139,0,72,137,69,200,235,11,72,141,5,154,127,3,0,72,137,69,200,72,139,69,216,139,64,76,137,193,3,77,244,72,139,69,216,139,64, 72,137,194,3,85,248,72,139,117,232,72,139,69,216,72,137,68,36,24,139,69,184,137,68,36,16,72,141,5,207,236,5,0,72,137,68,36,8,139,69,188,137,4,36,76,139,77,192,76,139,69,200,72,141,61,65,134,3,0,184,0,0,0,0,232,7,230,1,0,72,139,69,216,15,182,128,56,4, 0,0,131,224,128,132,192,117,76,72,139,69,216,139,64,64,137,199,3,125,244,68,139,69,248,65,131,192,7,72,139,69,216,139,64,64,3,69,244,141,72,255,139,85,248,72,139,117,232,199,68,36,8,0,0,0,0,72,139,69,216,72,137,4,36,65,137,249,72,141,61,99,134,3,0,184, 0,0,0,0,232,169,229,1,0,72,139,69,216,15,182,128,56,4,0,0,131,224,64,132,192,117,67,139,85,244,255,194,139,77,248,131,193,7,139,117,244,139,125,248,76,139,85,232,199,68,36,8,0,0,0,0,72,139,69,216,72,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137, 214,72,141,61,86,134,3,0,184,0,0,0,0,232,84,229,1,0,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,139,125,208,232,168,1,254,255,72,137,69,232,199,69,252,1,0,0,0,72,139,125,216,72,139,117,208,232,78,22,254,255,137,69,248,72,139, 125,216,72,139,117,208,232,68,23,254,255,137,69,244,72,139,69,216,139,64,68,131,248,29,126,7,199,69,252,2,0,0,0,72,139,69,216,139,64,68,131,248,59,126,7,199,69,252,3,0,0,0,72,139,69,216,139,64,64,137,194,3,85,244,72,139,69,216,139,64,68,3,69,248,139, 77,244,139,117,248,72,139,125,216,76,139,85,232,137,20,36,65,137,193,65,137,200,137,241,72,137,250,76,137,214,72,141,61,236,133,3,0,184,0,0,0,0,232,162,228,1,0,139,77,252,72,139,85,216,72,139,117,232,72,141,61,64,185,3,0,184,0,0,0,0,232,134,228,1,0,72, 139,69,216,139,64,64,3,69,244,65,137,192,68,43,69,252,72,139,69,216,139,64,68,3,69,248,137,194,43,85,252,139,69,252,3,69,244,141,72,1,139,69,252,3,69,248,255,192,72,139,117,216,72,139,125,232,68,137,4,36,65,137,209,65,137,200,137,193,72,137,242,72,137, 254,72,141,61,12,185,3,0,184,0,0,0,0,232,42,228,1,0,139,77,252,72,139,85,216,72,139,117,232,72,141,61,24,185,3,0,184,0,0,0,0,232,14,228,1,0,139,69,252,139,125,244,1,199,72,139,69,216,139,64,68,3,69,248,65,137,192,68,43,69,252,72,139,69,216,139,64,64, 3,69,244,43,69,252,141,80,255,139,69,252,3,69,248,141,72,1,72,139,69,216,72,139,117,232,137,60,36,69,137,193,65,137,208,72,137,194,72,141,61,233,184,3,0,184,0,0,0,0,232,183,227,1,0,72,139,69,216,139,64,76,137,199,3,125,244,72,139,69,216,139,64,72,137, 193,3,77,248,72,139,85,216,72,139,117,232,65,137,248,72,141,61,37,125,3,0,184,0,0,0,0,232,131,227,1,0,72,139,69,216,15,182,128,56,4,0,0,131,224,128,132,192,117,82,72,139,69,216,139,64,64,137,194,3,85,244,139,77,248,131,193,7,72,139,69,216,139,64,64,3, 69,244,255,200,139,117,248,72,139,125,216,76,139,85,232,137,84,36,8,137,12,36,65,137,193,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,185,132,3,0,184,0,0,0,0,232,31,227,1,0,72,139,69,216,15,182,128,56,4,0,0,131,224,64,132,192,117,66,139,69, 244,255,192,139,85,248,131,194,7,139,77,244,139,117,248,72,139,125,216,76,139,85,232,137,68,36,8,137,20,36,65,137,201,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,141,132,3,0,184,0,0,0,0,232,203,226,1,0,201,195,85,72,137,229,72,131,236,32,72, 137,125,232,72,137,117,224,72,139,125,224,232,31,255,253,255,72,137,69,248,72,139,85,232,72,139,117,248,72,141,61,121,132,3,0,184,0,0,0,0,232,147,226,1,0,72,139,85,232,72,139,117,248,72,141,61,208,183,3,0,184,0,0,0,0,232,122,226,1,0,72,139,85,232,72, 139,117,248,72,141,61,205,183,3,0,184,0,0,0,0,232,97,226,1,0,72,139,85,232,72,139,117,248,72,141,61,202,183,3,0,184,0,0,0,0,232,72,226,1,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,30,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61, 10,150,3,0,184,0,0,0,0,232,24,226,1,0,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,30,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,224,152,3,0,184,0,0,0,0,232,232,225,1,0,201,195,85,72,137,229,72,131,236,80,72,137,125,232,72,137,117, 224,72,139,125,224,232,60,254,253,255,72,137,69,248,72,139,69,232,72,139,128,96,4,0,0,72,139,56,72,141,53,72,155,3,0,232,37,104,3,0,133,192,116,20,72,139,69,232,72,139,128,96,4,0,0,72,139,0,72,137,69,200,235,11,72,141,5,200,122,3,0,72,137,69,200,72,139, 69,232,15,182,128,59,4,0,0,131,224,1,132,192,117,15,72,139,69,232,139,128,76,4,0,0,137,69,212,235,7,199,69,212,255,0,0,0,72,139,69,232,139,144,60,4,0,0,72,139,77,232,72,131,193,80,72,139,117,232,72,139,125,248,72,139,69,200,72,137,68,36,8,139,69,212, 137,4,36,72,141,5,216,231,5,0,73,137,193,65,137,208,72,137,242,72,137,254,72,141,61,49,131,3,0,184,0,0,0,0,232,23,225,1,0,72,139,69,232,139,136,72,4,0,0,72,139,85,232,72,139,117,248,72,141,61,94,131,3,0,184,0,0,0,0,232,244,224,1,0,72,139,69,232,243,15, 16,136,136,4,0,0,15,87,192,15,46,200,117,4,122,2,235,15,72,139,69,232,139,128,68,4,0,0,137,69,216,235,13,72,139,69,232,139,128,72,4,0,0,137,69,216,72,139,85,232,72,139,117,248,139,77,216,72,141,61,110,180,3,0,184,0,0,0,0,232,164,224,1,0,72,139,69,232, 243,15,16,136,136,4,0,0,15,87,192,15,46,200,117,4,122,2,235,15,72,139,69,232,139,128,68,4,0,0,137,69,220,235,13,72,139,69,232,139,128,72,4,0,0,137,69,220,72,139,85,232,72,139,117,248,139,77,220,72,141,61,78,180,3,0,184,0,0,0,0,232,84,224,1,0,201,195, 85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72,139,125,232,72,139,117,224,232,95,17,254,255,137,69,252,72,139,125,232,72,139,117,224,232,85,18,254,255,137,69,248,72,139,125,224,232,133,252,253,255,72,137,69,240,139,69,220,131, 224,1,132,192,116,94,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,76,72,139,69,232,139,64,64,137,199,3,125,248,68,139,69,252,65,131,192,7,72,139,69,232,139,64,64,3,69,248,141,72,255,139,85,252,72,139,117,240,199,68,36,8,0,0,0,0,72,139,69, 232,72,137,4,36,65,137,249,72,141,61,68,130,3,0,184,0,0,0,0,232,170,223,1,0,139,69,220,131,224,1,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,98,147,3,0,184,0,0,0,0,232, 112,223,1,0,139,69,220,131,224,2,133,192,116,85,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,67,139,85,248,255,194,139,77,252,131,193,7,139,117,248,139,125,252,76,139,85,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,209,65,137, 200,137,241,137,250,76,137,214,72,141,61,227,129,3,0,184,0,0,0,0,232,17,223,1,0,139,69,220,131,224,2,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,116,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,207,149,3,0,184,0,0,0,0, 232,215,222,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224,232,43,251,253,255,72,137,69,248,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,116,62,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,146,129, 3,0,184,0,0,0,0,232,136,222,1,0,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,212,129,3,0,184,0,0,0,0,232,106,222,1,0,235,65,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,84,129,3,0,184,0,0,0,0,232,74,222,1,0,72,139,69,232,139,136,76,4,0, 0,72,139,85,232,72,139,117,248,72,141,61,145,129,3,0,184,0,0,0,0,232,39,222,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,131,125,236,0,117,18,72,139,117,240,72,139,125,248,232,122,244,255,255,233,130,0,0,0,131,125, 236,1,117,15,72,139,117,240,72,139,125,248,232,149,248,255,255,235,109,131,125,236,2,117,15,72,139,117,240,72,139,125,248,232,29,245,255,255,235,88,131,125,236,3,117,15,72,139,117,240,72,139,125,248,232,232,254,255,255,235,67,131,125,236,4,117,15,72, 139,117,240,72,139,125,248,232,223,250,255,255,235,46,131,125,236,5,117,15,72,139,117,240,72,139,125,248,232,173,251,255,255,235,25,131,125,236,5,126,19,139,85,236,131,234,6,72,139,117,240,72,139,125,248,232,38,253,255,255,201,195,85,72,137,229,72,131, 236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,72,139,69,232,72,137,69,248,72,139,125,248,72,139,117,224,232,110,14,254,255,137,194,72,139,69,216,137,16,72,139,125,248,72,139,117,224,232,95,15,254,255,137, 194,72,139,69,208,137,16,72,139,69,216,139,16,72,139,69,248,139,64,68,1,194,72,139,69,200,137,16,72,139,69,208,139,16,72,139,69,248,139,64,64,1,194,72,139,69,192,137,16,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,24,1,0,0,72,137,125,136, 72,137,117,128,72,139,69,136,72,137,69,200,72,139,125,200,72,141,85,176,72,141,117,144,232,30,182,252,255,72,139,69,200,243,15,16,128,140,4,0,0,243,15,90,192,242,15,17,133,48,255,255,255,72,139,69,200,243,15,16,128,136,4,0,0,243,15,90,192,242,15,17,133, 56,255,255,255,139,93,184,68,139,101,180,68,139,109,176,72,139,69,200,68,139,176,60,4,0,0,72,139,125,200,72,129,199,56,4,0,0,232,16,192,252,255,65,137,199,72,139,69,200,139,64,76,137,133,64,255,255,255,72,139,69,200,139,64,72,137,133,68,255,255,255,72, 139,69,160,72,137,133,72,255,255,255,72,139,85,152,72,137,149,80,255,255,255,72,139,69,144,72,137,133,88,255,255,255,72,139,125,200,72,129,199,64,4,0,0,232,170,190,252,255,137,133,96,255,255,255,72,139,69,200,139,64,68,137,133,100,255,255,255,72,141, 61,237,195,3,0,232,118,71,1,0,72,137,133,104,255,255,255,72,139,69,200,15,183,64,42,152,137,133,112,255,255,255,72,139,69,200,15,183,64,40,152,137,133,116,255,255,255,72,141,61,76,144,3,0,232,69,71,1,0,72,137,133,120,255,255,255,72,141,61,25,129,3,0, 232,50,71,1,0,72,139,125,128,137,92,36,96,68,137,100,36,88,68,137,108,36,80,68,137,116,36,72,68,137,124,36,64,139,149,64,255,255,255,137,84,36,56,139,149,68,255,255,255,137,84,36,48,72,139,149,72,255,255,255,72,137,84,36,40,72,139,149,80,255,255,255, 72,137,84,36,32,72,139,149,88,255,255,255,72,137,84,36,24,139,149,96,255,255,255,137,84,36,16,139,149,100,255,255,255,137,84,36,8,72,139,149,104,255,255,255,72,137,20,36,242,15,16,141,48,255,255,255,242,15,16,133,56,255,255,255,68,139,141,112,255,255, 255,68,139,133,116,255,255,255,72,139,141,120,255,255,255,72,137,194,72,141,53,178,176,3,0,184,2,0,0,0,232,93,220,0,0,72,139,125,128,72,141,53,93,146,3,0,184,0,0,0,0,232,72,220,0,0,72,129,196,24,1,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229, 65,86,65,85,65,84,83,72,129,236,208,3,0,0,72,137,189,136,252,255,255,72,137,181,128,252,255,255,72,139,5,42,203,5,0,72,139,16,72,137,85,216,49,210,72,139,133,136,252,255,255,72,137,133,168,252,255,255,72,139,189,168,252,255,255,72,141,181,144,252,255, 255,232,97,180,252,255,72,139,133,168,252,255,255,139,128,76,4,0,0,137,194,129,226,255,255,255,0,72,139,133,168,252,255,255,139,128,68,4,0,0,137,193,129,225,255,255,255,0,72,139,133,168,252,255,255,139,128,72,4,0,0,137,198,129,230,255,255,255,0,72,139, 133,168,252,255,255,139,184,60,4,0,0,72,139,133,168,252,255,255,15,182,128,56,4,0,0,131,224,63,68,15,182,192,72,139,133,168,252,255,255,68,139,72,76,72,139,133,168,252,255,255,68,139,80,72,72,139,133,160,252,255,255,76,139,24,72,139,133,152,252,255,255, 72,139,24,72,139,133,144,252,255,255,76,139,32,72,139,133,168,252,255,255,15,182,128,64,4,0,0,131,224,1,68,15,182,232,72,139,133,168,252,255,255,243,15,16,128,140,4,0,0,243,15,90,192,72,139,133,168,252,255,255,139,64,68,76,141,181,176,252,255,255,137, 84,36,96,137,76,36,88,137,116,36,80,137,124,36,72,68,137,68,36,64,68,137,76,36,56,68,137,84,36,48,76,137,92,36,40,72,137,92,36,32,76,137,100,36,24,199,68,36,16,255,255,255,255,199,68,36,8,255,255,255,255,68,137,44,36,242,15,16,13,40,237,3,0,65,185,8, 0,0,0,65,137,192,72,141,13,32,175,3,0,186,32,3,0,0,190,0,0,0,0,76,137,247,184,2,0,0,0,232,161,93,3,0,72,139,189,168,252,255,255,72,141,149,176,252,255,255,72,139,181,168,252,255,255,232,75,178,2,0,72,139,5,160,201,5,0,72,139,85,216,72,51,16,116,5,232, 120,93,3,0,72,129,196,208,3,0,0,91,65,92,65,93,65,94,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,136,136,4,0,0,15,87,192,15,46,200,122,2,116,2,235,19,72,139,69,248,243,15,16,128,140,4,0,0,243,15,17,69,244,235,8,15,87,192, 243,15,17,69,244,72,139,69,248,243,15,16,69,244,243,15,17,128,136,4,0,0,72,139,69,248,72,139,72,56,72,139,69,248,72,139,112,48,72,139,125,248,186,0,0,0,0,255,209,72,139,69,248,243,15,16,128,136,4,0,0,72,139,69,248,72,139,120,24,232,12,110,1,0,72,139, 69,248,15,182,128,56,4,0,0,131,224,128,132,192,116,52,72,139,69,248,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,32,72,139,69,248,243,15,16,128,136,4,0,0,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,232,167,131,1,0,201,195,85,72,137,229,72,131,236, 80,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,139,85,176,139,117,188,191,0,0,0,0,232,1,198,0,0,137,69,252,72,139,85,176,139,117,188,191,2,0,0,0,232,150,197,0,0,243,15,17,69,248,15,87,192,15,46,69,248,122,2,116,2,235,8,184,0,0,128,63,137, 69,248,72,139,85,200,139,69,248,137,130,140,4,0,0,72,139,69,200,243,15,16,136,136,4,0,0,15,87,192,15,46,200,117,4,122,2,235,20,72,139,69,200,139,144,140,4,0,0,72,139,69,200,137,144,136,4,0,0,72,139,125,200,72,139,77,176,139,85,188,72,141,117,208,232, 218,177,252,255,137,69,244,139,125,252,232,42,156,252,255,137,194,72,139,69,200,137,80,68,72,139,69,200,139,80,68,72,139,69,200,137,80,64,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,5,0,0,0,255,209,72,139,69,200,72,139,72, 56,139,85,244,131,194,6,72,139,69,200,72,139,112,48,72,139,125,200,255,209,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,1,0,0,0,255,209,72,139,117,200,72,139,69,200,72,139,120,48,232,164,70,253,255,201,195,85,72,137,229,72, 131,236,32,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,17,85,236,243,15,17,93,232,243,15,17,101,228,72,139,125,248,232,220,253,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,137,77,232,68,137,69,228,68, 137,77,224,131,125,24,0,116,44,243,15,42,69,224,243,15,42,77,228,243,15,42,109,232,243,15,42,117,236,72,139,125,248,15,40,224,15,87,219,15,40,209,15,40,205,15,40,198,232,128,255,255,255,184,1,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243, 15,17,69,244,72,139,69,248,139,85,244,137,144,136,4,0,0,15,87,192,15,46,69,244,117,4,122,2,235,13,72,139,85,248,139,69,244,137,130,140,4,0,0,72,139,69,248,72,139,72,56,72,139,69,248,72,139,112,48,72,139,125,248,186,0,0,0,0,255,209,201,195,85,72,137,229, 72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,72,139,125,248,232,140,255,255,255,72,139,69,248,15,182,128,59,4,0,0,131,224,4,132,192,116,95,72,139,69,248,243,15,16,128,136,4,0,0,72,139,69,248,72,139,120,24,232,116,107,1,0,72,139,69,248, 15,182,128,56,4,0,0,131,224,128,132,192,116,52,72,139,69,248,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,32,72,139,69,248,243,15,16,128,136,4,0,0,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,232,15,129,1,0,201,195,85,72,137,229,72,131,236,16,72, 137,125,248,243,15,17,69,244,243,15,16,69,244,72,139,125,248,232,250,254,255,255,72,139,69,248,243,15,16,128,136,4,0,0,72,139,69,248,72,139,120,24,232,244,106,1,0,72,139,69,248,15,182,128,56,4,0,0,131,224,128,132,192,116,52,72,139,69,248,72,139,128,80, 4,0,0,72,139,64,8,72,133,192,116,32,72,139,69,248,243,15,16,128,136,4,0,0,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,232,143,128,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,5,11,47,6,0,139,0,133,192,117,39,72,139,69,248,15,182,128, 64,4,0,0,131,224,1,132,192,116,21,72,139,69,248,243,15,16,128,136,4,0,0,72,139,125,248,232,64,255,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,85,224,139,117,236,191,0,0,0,0,232,167,194,0,0, 137,199,232,79,153,252,255,137,194,72,139,69,248,137,80,68,72,139,69,248,139,80,68,72,139,69,248,137,80,64,72,139,117,248,72,139,125,248,232,68,170,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72, 139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,95,170,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125, 248,73,137,192,232,219,170,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,55,171,252,255,201,195,85,72,137,229,72, 131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,101,163,252,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,53,164,252,255,201,195,85,72,137, 229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,167,165,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139, 85,240,72,139,125,248,73,137,192,232,44,167,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,39,166,252,255,201,195, 85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,72,139,85,248,137,193,131,225,1,15,182,130,64,4,0,0,131,224,254,9,200,136,130,64,4,0,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15, 46,69,244,117,4,122,2,235,13,72,139,85,248,139,69,244,137,130,140,4,0,0,201,195,85,72,137,229,72,129,236,0,1,0,0,72,137,189,24,255,255,255,137,181,20,255,255,255,72,137,149,8,255,255,255,72,139,5,18,195,5,0,72,139,16,72,137,85,248,49,210,72,139,61,146, 244,5,0,232,25,117,1,0,72,137,133,56,255,255,255,199,133,32,255,255,255,0,0,252,255,199,133,36,255,255,255,255,255,255,255,199,133,40,255,255,255,255,255,255,255,199,133,92,255,255,255,15,0,0,0,199,133,88,255,255,255,0,0,0,0,199,133,84,255,255,255,17, 0,0,0,199,133,80,255,255,255,7,0,0,0,199,133,76,255,255,255,10,0,0,0,184,0,0,0,0,137,133,72,255,255,255,184,0,0,128,63,137,133,68,255,255,255,72,139,189,56,255,255,255,72,129,199,64,4,0,0,190,0,0,0,0,232,178,179,252,255,72,139,189,56,255,255,255,72,129, 199,56,4,0,0,190,0,0,0,0,232,183,180,252,255,131,189,20,255,255,255,13,116,13,131,189,20,255,255,255,14,15,133,180,2,0,0,72,139,133,8,255,255,255,139,0,131,248,1,15,133,162,2,0,0,72,139,133,8,255,255,255,72,131,192,16,139,0,131,248,1,15,133,140,2,0,0, 72,139,133,8,255,255,255,72,131,192,32,139,0,131,248,2,116,22,72,139,133,8,255,255,255,72,131,192,32,139,0,131,248,1,15,133,100,2,0,0,72,139,133,8,255,255,255,72,131,192,48,139,0,131,248,2,116,22,72,139,133,8,255,255,255,72,131,192,48,139,0,131,248,1, 15,133,60,2,0,0,72,139,133,8,255,255,255,72,131,192,64,139,0,131,248,2,116,22,72,139,133,8,255,255,255,72,131,192,64,139,0,131,248,1,15,133,20,2,0,0,72,139,133,8,255,255,255,72,131,192,80,139,0,131,248,1,15,133,254,1,0,0,72,139,133,8,255,255,255,72,131, 192,96,139,0,131,248,1,15,133,232,1,0,0,72,139,133,8,255,255,255,72,131,192,112,139,0,131,248,1,15,133,210,1,0,0,72,139,133,8,255,255,255,72,131,232,128,139,0,131,248,1,15,133,188,1,0,0,72,139,133,8,255,255,255,72,5,144,0,0,0,139,0,131,248,1,15,133,164, 1,0,0,72,139,133,8,255,255,255,72,5,160,0,0,0,139,0,131,248,1,15,133,140,1,0,0,72,139,133,8,255,255,255,72,5,176,0,0,0,139,0,131,248,1,15,133,116,1,0,0,72,139,133,8,255,255,255,72,5,192,0,0,0,139,0,131,248,1,15,133,92,1,0,0,72,139,149,8,255,255,255,139, 181,20,255,255,255,191,0,0,0,0,232,78,190,0,0,137,133,92,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,1,0,0,0,232,49,190,0,0,137,198,72,139,189,56,255,255,255,72,129,199,64,4,0,0,232,227,177,252,255,72,139,189,56,255,255,255,72,139, 149,8,255,255,255,190,2,0,0,0,232,31,152,252,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,5,0,0,0,232,237,189,0,0,137,133,84,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,6,0,0,0,232,208,189,0,0,137,133,80,255,255,255,72, 139,149,8,255,255,255,139,181,20,255,255,255,191,7,0,0,0,232,179,189,0,0,137,198,72,139,189,56,255,255,255,72,129,199,56,4,0,0,232,130,178,252,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,8,0,0,0,232,135,189,0,0,137,133,76,255,255,255,72,139, 149,8,255,255,255,139,181,20,255,255,255,191,9,0,0,0,232,106,189,0,0,137,133,32,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,10,0,0,0,232,77,189,0,0,137,133,36,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,11,0,0, 0,232,48,189,0,0,137,133,40,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,12,0,0,0,232,188,188,0,0,243,15,17,133,72,255,255,255,235,22,72,139,189,56,255,255,255,186,0,0,0,0,190,2,0,0,0,232,14,151,252,255,131,189,20,255,255,255,14,117, 51,72,139,133,8,255,255,255,72,5,208,0,0,0,139,0,131,248,1,117,31,72,139,149,8,255,255,255,139,181,20,255,255,255,191,13,0,0,0,232,104,188,0,0,243,15,17,133,68,255,255,255,72,141,21,176,240,255,255,72,139,133,56,255,255,255,72,137,80,56,72,139,149,56, 255,255,255,15,182,130,56,4,0,0,131,200,128,136,130,56,4,0,0,72,139,149,56,255,255,255,15,182,130,56,4,0,0,131,200,64,136,130,56,4,0,0,232,184,29,253,255,72,137,194,72,139,133,56,255,255,255,72,137,80,48,72,139,133,56,255,255,255,72,139,128,80,4,0,0, 72,139,56,72,141,53,5,136,3,0,232,226,84,3,0,133,192,117,23,72,139,133,56,255,255,255,15,182,144,56,4,0,0,131,226,127,136,144,56,4,0,0,72,139,133,56,255,255,255,72,139,128,88,4,0,0,72,139,56,72,141,53,205,135,3,0,232,170,84,3,0,133,192,117,23,72,139, 133,56,255,255,255,15,182,144,56,4,0,0,131,226,191,136,144,56,4,0,0,72,139,133,56,255,255,255,15,182,128,56,4,0,0,131,224,63,60,1,117,76,72,199,192,255,255,255,255,72,131,248,255,116,35,72,199,194,255,255,255,255,72,139,189,56,255,255,255,72,131,199, 80,72,141,53,174,114,3,0,232,51,82,3,0,233,210,0,0,0,72,139,189,56,255,255,255,72,131,199,80,72,141,53,146,114,3,0,232,97,2,0,0,233,182,0,0,0,72,139,133,56,255,255,255,15,182,128,56,4,0,0,131,224,63,60,2,117,70,72,199,192,255,255,255,255,72,131,248,255, 116,32,72,199,194,255,255,255,255,72,139,189,56,255,255,255,72,131,199,80,72,141,53,221,178,3,0,232,210,81,3,0,235,116,72,139,189,56,255,255,255,72,131,199,80,72,141,53,196,178,3,0,232,3,2,0,0,235,91,72,139,149,56,255,255,255,15,182,130,56,4,0,0,131, 224,192,136,130,56,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,56,255,255,255,72,131,199,80,72,141,53,96,211,5,0,232,117,81,3,0,235,23,72,139,189,56,255,255,255,72,131,199,80,72,141,53,71,211,5,0,232,166, 1,0,0,15,87,192,15,46,133,68,255,255,255,117,4,122,2,235,18,243,15,16,133,68,255,255,255,243,15,17,133,0,255,255,255,235,16,243,15,16,5,120,224,3,0,243,15,17,133,0,255,255,255,72,139,133,56,255,255,255,243,15,16,133,0,255,255,255,243,15,17,128,140,4, 0,0,72,139,133,56,255,255,255,15,182,128,64,4,0,0,131,224,1,132,192,116,70,15,87,192,15,46,133,72,255,255,255,117,4,122,2,235,18,243,15,16,133,68,255,255,255,243,15,17,133,4,255,255,255,235,11,15,87,192,243,15,17,133,4,255,255,255,72,139,133,56,255,255, 255,243,15,16,133,4,255,255,255,243,15,17,128,136,4,0,0,235,18,72,139,149,56,255,255,255,184,0,0,0,0,137,130,136,4,0,0,72,139,133,56,255,255,255,15,182,128,56,4,0,0,131,224,64,132,192,116,26,72,139,133,56,255,255,255,72,139,176,88,4,0,0,72,139,189,56, 255,255,255,232,96,114,1,0,72,139,149,56,255,255,255,139,133,84,255,255,255,137,66,72,72,139,149,56,255,255,255,139,133,80,255,255,255,137,66,76,131,189,76,255,255,255,3,127,10,199,133,76,255,255,255,4,0,0,0,72,139,149,56,255,255,255,139,133,76,255,255, 255,137,130,60,4,0,0,139,189,92,255,255,255,232,86,144,252,255,137,194,72,139,133,56,255,255,255,137,80,68,72,139,133,56,255,255,255,139,80,68,72,139,133,56,255,255,255,137,80,64,72,139,189,56,255,255,255,72,141,181,32,255,255,255,232,10,152,252,255, 72,139,189,56,255,255,255,232,53,146,252,255,72,139,189,56,255,255,255,72,141,53,143,195,5,0,232,44,95,1,0,72,139,133,56,255,255,255,72,139,21,212,187,5,0,72,139,77,248,72,51,10,116,5,232,172,79,3,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248, 72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,146,79,3,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15,182,128,56,4,0,0,131,224,64,132,192,116,20,72,139,69,248,72,139,176,88,4,0,0,72,139,125,248,232, 75,114,1,0,72,139,125,248,232,203,166,2,0,201,195,85,72,137,229,65,84,83,72,131,236,32,72,141,29,177,255,255,255,76,141,37,16,248,255,255,72,141,61,193,178,3,0,232,74,54,1,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,144,4,0,0,72, 137,218,76,137,230,184,0,0,0,0,232,127,36,1,0,72,137,5,154,236,5,0,72,141,61,145,114,3,0,232,12,54,1,0,72,137,198,72,141,61,188,247,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,125,41,1,0,72,141,53,87,241,255,255,72,139,61,98,236,5,0,232,149,49,1, 0,72,141,53,22,244,255,255,72,139,61,79,236,5,0,232,182,49,1,0,72,141,61,43,111,3,0,232,188,53,1,0,72,141,53,27,243,255,255,72,139,61,48,236,5,0,199,68,36,16,0,0,0,0,199,68,36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,72,137, 194,184,0,0,0,0,232,22,43,1,0,72,141,61,180,138,3,0,232,109,53,1,0,72,141,53,162,241,255,255,72,139,61,225,235,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,228,42,1,0,72,141,61,234,112,3,0,232,59,53,1,0,72,141,53,136,244,255,255,72,139, 61,175,235,5,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,184,42,1,0,72,141,61,246,95,3,0,232,15,53,1,0,72,141,53,245,242,255,255,72,139,61,131,235,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,134,42,1,0,72,141,61,48,138,3,0,232,221,52,1,0,72, 141,53,108,244,255,255,72,139,61,81,235,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,84,42,1,0,72,141,61,234,126,3,0,232,171,52,1,0,72,141,53,143,244,255,255,72,139,61,31,235,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,34, 42,1,0,72,141,61,190,126,3,0,232,121,52,1,0,72,141,53,145,244,255,255,72,139,61,237,234,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,240,41,1,0,72,141,61,144,126,3,0,232,71,52,1,0,72,141,53,147,244,255,255,72,139,61,187,234,5,0,65,184,0, 0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,190,41,1,0,72,141,61,100,126,3,0,232,21,52,1,0,72,141,53,149,244,255,255,72,139,61,137,234,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,140,41,1,0,72,141,61,62,137,3,0,232,227,51,1,0,72,141,53, 134,244,255,255,72,139,61,87,234,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,90,41,1,0,72,141,61,20,137,3,0,232,177,51,1,0,72,141,53,119,244,255,255,72,139,61,37,234,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,40,41,1,0,72, 141,61,6,109,3,0,232,127,51,1,0,72,141,53,156,244,255,255,72,139,61,243,233,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,246,40,1,0,72,141,61,184,136,3,0,232,77,51,1,0,72,141,53,54,244,255,255,72,139,61,193,233,5,0,65,184,0,0,0,0,185,10, 0,0,0,72,137,194,184,0,0,0,0,232,196,40,1,0,72,141,61,114,125,3,0,232,27,51,1,0,72,141,53,108,244,255,255,72,139,61,143,233,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,146,40,1,0,72,141,61,78,158,3,0,232,233,50,1,0,72,141,53,115,244,255, 255,72,139,61,93,233,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,96,40,1,0,72,141,21,166,23,6,0,72,141,5,201,233,255,255,72,137,2,72,141,21,149,23,6,0,72,141,5,65,159,252,255,72,137,66,8,72,141,21,131,23,6,0,72,141,5,167,159,252,255,72, 137,66,16,72,141,5,113,23,6,0,72,199,64,24,0,0,0,0,72,141,21,98,23,6,0,72,141,5,219,159,252,255,72,137,66,32,72,141,21,80,23,6,0,72,141,5,232,159,252,255,72,137,66,40,72,141,21,62,23,6,0,72,141,5,227,239,255,255,72,137,66,48,72,139,61,196,232,5,0,72, 141,53,37,23,6,0,232,140,46,1,0,72,141,61,175,110,3,0,232,42,50,1,0,72,137,198,72,139,61,162,232,5,0,232,206,46,1,0,72,139,61,150,232,5,0,72,141,53,159,233,255,255,232,52,48,1,0,72,139,61,131,232,5,0,72,141,53,155,235,255,255,232,77,48,1,0,72,131,196, 32,91,65,92,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,191,16,0,0,0,232,241,75,1,0,72,137,69,248,72,131,125,232,0,116,24,72,139,69,248,199,64,8,1,0,0,0,72,139,85,248,72,139,69,232,72,137,2,235,22,72,139,69,248,199,64,8,2,0,0,0, 72,139,85,248,72,139,69,224,72,137,2,72,139,69,248,199,64,12,0,0,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,139,64,12,141,80,255,72,139,69,232,137,80,12,72,139,69,232,139,64,12,137,69,252,131,125,252,0,117,27,72, 139,69,232,139,64,8,133,192,117,16,72,139,125,232,190,16,0,0,0,232,85,77,1,0,235,23,131,125,252,0,121,17,72,141,61,157,156,3,0,184,0,0,0,0,232,190,44,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,199,64,8,0,0,0,0,72,139,69,248, 139,64,12,133,192,121,17,72,141,61,114,156,3,0,184,0,0,0,0,232,137,44,2,0,72,139,69,248,139,64,12,133,192,117,14,72,139,125,248,190,16,0,0,0,232,238,76,1,0,201,195,85,72,137,229,72,137,125,232,137,117,228,72,139,69,232,72,139,64,16,72,137,69,248,72,131, 125,248,0,117,12,199,69,224,0,0,0,0,233,136,0,0,0,72,139,69,248,139,64,8,131,248,2,117,39,72,139,69,248,72,139,0,139,80,24,72,139,69,232,139,64,8,57,194,116,9,199,69,224,0,0,0,0,235,94,199,69,224,1,0,0,0,235,85,72,139,69,248,139,64,8,131,248,1,117,66, 131,125,228,0,117,21,72,139,69,232,72,139,0,72,133,192,117,9,199,69,224,0,0,0,0,235,46,72,139,69,248,72,139,0,139,80,64,72,139,69,232,139,64,8,57,194,116,9,199,69,224,0,0,0,0,235,16,199,69,224,1,0,0,0,235,7,199,69,224,0,0,0,0,139,69,224,201,195,85,72, 137,229,72,137,125,216,72,139,69,216,72,139,64,16,72,137,69,248,72,139,69,248,139,64,8,131,248,1,117,42,72,139,69,216,72,139,0,72,137,69,240,72,131,125,240,0,116,14,72,139,69,240,72,139,64,16,72,137,69,208,235,33,72,199,69,208,0,0,0,0,235,23,72,139,69, 248,72,139,0,72,137,69,232,72,139,69,232,72,139,64,16,72,137,69,208,72,139,69,208,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,77,240,72,139,85,248,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,139,66,16,72,137,65,16,72,139, 69,240,72,139,64,16,72,133,192,116,18,72,139,69,240,72,139,80,16,139,66,12,255,192,137,66,12,235,17,72,141,61,232,154,3,0,184,0,0,0,0,232,242,42,2,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,139,64,16,72,137,69,248,72,131,125, 248,0,116,21,72,139,125,248,232,171,253,255,255,72,139,69,232,72,199,64,16,0,0,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,72,139,69,232,72,139,64,16,72,137,69,248,72,131,125,248,0,116,9,72,139,125,248,232,109, 253,255,255,72,139,69,224,72,139,64,56,72,137,69,248,72,139,85,232,72,139,69,248,72,137,66,16,72,139,69,224,139,80,64,72,139,69,232,137,80,8,72,139,85,232,72,139,69,216,72,137,2,72,139,69,248,139,64,12,141,80,1,72,139,69,248,137,80,12,201,195,85,72,137, 229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,72,139,69,232,72,139,64,16,72,137,69,248,72,131,125,248,0,116,9,72,139,125,248,232,249,252,255,255,72,139,69,224,72,139,64,56,72,137,69,248,72,139,85,232,72,139,69,248,72,137,66,16,72,139, 69,224,139,80,24,72,139,69,232,137,80,8,72,139,85,232,72,139,69,216,72,137,2,72,139,69,248,139,64,12,141,80,1,72,139,69,248,137,80,12,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,199,64,16,0,0,0,0,72,139,69,248,199,64,8,0,0,0,0,72,139,69,248, 72,199,0,0,0,0,0,201,195,85,72,137,229,72,131,236,64,72,137,125,216,137,117,212,72,137,85,200,72,139,61,129,228,5,0,232,0,101,1,0,72,137,69,240,72,139,125,240,72,131,199,48,232,164,255,255,255,139,69,212,72,152,72,137,199,72,193,231,4,232,239,71,1,0, 72,137,69,232,72,139,85,240,72,139,69,232,72,137,66,72,139,69,212,137,69,252,72,139,85,240,139,69,252,137,66,80,235,64,72,139,125,240,72,141,53,29,186,5,0,232,218,85,1,0,72,137,194,72,139,69,232,72,137,80,8,72,139,125,200,72,131,69,200,16,232,141,174, 0,0,72,137,199,232,82,40,253,255,72,137,194,72,139,69,232,72,137,16,72,131,69,232,16,255,77,252,131,125,252,255,117,183,72,139,125,240,72,141,53,212,185,5,0,232,145,85,1,0,72,137,194,72,139,69,240,72,137,80,88,72,139,125,240,72,141,53,25,186,5,0,232, 118,85,1,0,72,137,194,72,139,69,240,72,137,80,96,72,139,117,240,72,131,198,48,72,139,125,240,232,28,80,1,0,72,139,69,240,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,141,5,131,16,6,0,72,139,48,72,139,125,224,232,33,106,1,0,72, 137,69,248,72,131,125,248,0,116,24,72,139,125,232,72,131,199,48,72,139,117,248,186,0,0,0,0,232,175,253,255,255,235,28,72,139,69,224,72,139,16,72,139,125,232,72,141,53,79,152,3,0,184,0,0,0,0,232,136,38,2,0,201,195,85,72,137,229,72,131,236,80,72,137,125, 184,243,15,17,69,180,72,139,69,184,72,131,192,48,72,137,69,232,72,139,69,232,72,139,64,16,72,137,69,224,15,87,192,15,46,69,180,15,149,192,15,154,194,9,208,15,182,192,137,69,252,72,131,125,224,0,117,26,72,139,125,184,72,141,53,22,152,3,0,184,0,0,0,0,232, 44,38,2,0,233,153,1,0,0,72,139,69,224,139,64,8,131,248,1,116,26,72,139,125,184,72,141,53,16,152,3,0,184,0,0,0,0,232,6,38,2,0,233,115,1,0,0,72,139,69,224,72,139,0,72,137,69,216,72,139,69,216,139,80,64,72,139,69,232,139,64,8,57,194,116,26,72,139,125,184, 72,141,53,253,151,3,0,184,0,0,0,0,232,207,37,2,0,233,60,1,0,0,131,125,252,0,116,39,72,139,125,216,232,233,44,253,255,133,192,117,26,72,139,125,184,72,141,53,236,151,3,0,184,0,0,0,0,232,162,37,2,0,233,15,1,0,0,72,139,69,232,72,139,0,72,137,69,240,72,131, 125,240,0,117,14,72,139,69,216,72,139,64,48,72,137,69,240,235,26,72,139,69,240,72,139,64,8,72,137,69,240,235,12,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,116,45,72,139,69,240,72,139,16,72,141,5,62,16,6,0,72,139,0,72,57,194,117,215,131, 125,252,0,116,17,72,139,117,240,72,139,125,216,232,238,88,253,255,133,192,116,192,72,131,125,240,0,15,132,128,0,0,0,72,139,69,240,72,137,69,200,72,139,69,200,72,139,64,16,72,137,69,192,72,139,85,232,72,139,69,200,72,137,2,72,139,69,184,139,64,80,137, 69,248,72,139,69,184,72,139,64,72,72,137,69,208,235,41,72,139,69,208,72,139,0,72,59,69,192,117,23,72,139,117,184,72,131,198,48,72,139,69,208,72,139,120,8,232,103,84,1,0,235,59,72,131,69,208,16,255,77,248,131,125,248,255,117,206,72,139,117,184,72,131, 198,48,72,139,69,184,72,139,120,88,232,66,84,1,0,235,22,72,139,125,232,232,110,251,255,255,72,139,69,184,72,139,120,96,232,187,83,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,15,87,192,232,238,253,255,255,201,195,85,72,137,229, 72,131,236,96,72,137,125,184,72,137,117,176,137,85,172,72,137,77,160,72,139,125,184,72,131,199,48,190,1,0,0,0,232,158,249,255,255,133,192,117,26,72,139,125,184,72,141,53,182,150,3,0,184,0,0,0,0,232,48,36,2,0,233,179,0,0,0,72,139,69,184,72,139,64,64,72, 137,69,200,72,139,69,200,139,64,8,131,248,1,117,13,72,139,69,200,72,139,0,72,137,69,216,235,59,72,139,69,200,72,139,0,72,137,69,192,235,15,72,139,69,192,72,139,64,48,72,139,0,72,137,69,192,72,139,69,192,72,139,64,48,139,64,8,131,248,2,116,225,72,139, 69,192,72,139,64,48,72,139,0,72,137,69,216,72,139,125,216,232,233,218,253,255,72,137,69,208,131,125,172,0,116,43,72,139,69,160,139,0,131,248,2,117,32,72,139,77,160,72,131,193,16,139,85,172,255,202,72,139,69,160,72,139,112,8,72,139,125,208,232,104,46, 1,0,235,21,72,139,125,184,72,141,53,25,150,3,0,184,0,0,0,0,232,120,35,2,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,125,216,72,131,199,48,190,1,0,0,0,232,173,248,255,255,133,192,117,23,72,139,125,216,72,141,53,197,149,3,0,184,0,0,0,0, 232,63,35,2,0,235,112,72,139,125,216,72,131,199,48,232,60,249,255,255,72,137,69,240,72,139,69,216,139,64,80,137,69,252,72,139,69,216,72,139,64,72,72,137,69,232,235,41,72,139,69,232,72,139,0,72,59,69,240,117,23,72,139,117,216,72,131,198,48,72,139,69,232, 72,139,120,8,232,142,82,1,0,235,35,72,131,69,232,16,255,77,252,131,125,252,255,117,206,72,139,117,216,72,131,198,48,72,139,69,216,72,139,120,88,232,105,82,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,125,248,72,131,199, 48,232,129,249,255,255,72,139,117,248,72,131,198,48,72,139,125,240,232,16,249,255,255,72,139,125,248,232,30,255,255,255,201,195,85,72,137,229,72,131,236,80,72,137,125,184,72,139,125,184,72,131,199,48,190,1,0,0,0,232,201,247,255,255,133,192,117,23,72, 139,125,184,72,141,53,21,149,3,0,184,0,0,0,0,232,91,34,2,0,235,89,72,139,69,184,72,139,64,64,72,137,69,200,72,139,69,200,139,64,8,131,248,1,116,23,72,139,125,184,72,141,53,6,149,3,0,184,0,0,0,0,232,44,34,2,0,235,42,72,139,69,200,72,139,0,72,137,69,216, 72,139,125,184,72,131,199,48,72,139,117,216,186,0,0,0,0,232,18,249,255,255,72,139,125,184,232,138,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,64,80,72,152,72,137,198,72,193,230,4,72,139,69,248,72,139,120,72,232,22, 68,1,0,72,139,125,248,72,131,199,48,232,155,248,255,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,182,255,255,255,76,141,37,202,249,255,255,72,141,61,164,148,3,0,232,207,39,1,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185, 104,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,4,22,1,0,72,137,5,39,222,5,0,72,141,61,110,148,3,0,232,145,39,1,0,72,141,53,114,250,255,255,72,139,61,13,222,5,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,8,29,1,0,72,141,61,69,148,3,0,232,95, 39,1,0,72,141,53,158,252,255,255,72,139,61,219,221,5,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,220,28,1,0,72,141,61,30,148,3,0,232,51,39,1,0,72,141,53,120,250,255,255,72,139,61,175,221,5,0,65,184,0,0,0,0,185,6,0,0,0,72,137,194,184,0,0,0,0,232,170,28,1, 0,72,141,61,242,147,3,0,232,1,39,1,0,72,141,53,90,252,255,255,72,139,61,125,221,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,120,28,1,0,72,141,61,14,206,3,0,232,207,38,1,0,72,141,53,8,254,255,255,72,139,61,75,221,5,0,185,0,0,0,0,72,137, 194,184,0,0,0,0,232,76,28,1,0,72,141,53,175,253,255,255,72,139,61,43,221,5,0,232,112,34,1,0,72,141,53,241,252,255,255,72,139,61,24,221,5,0,232,67,34,1,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,64,72,137,125,216,137,117,212,72,137,85,200, 72,139,61,248,220,5,0,232,111,93,1,0,72,137,69,240,72,139,85,200,139,117,212,191,0,0,0,0,232,217,168,0,0,72,137,199,232,25,33,253,255,72,137,194,72,139,69,240,72,137,80,48,131,125,212,0,116,8,255,77,212,72,131,69,200,16,139,69,212,72,152,72,137,199,72, 193,231,4,232,57,64,1,0,72,137,194,72,139,69,240,72,137,80,64,72,139,85,240,139,69,212,137,66,56,199,69,252,0,0,0,0,72,139,69,240,72,139,64,64,72,137,69,232,235,58,72,139,85,200,139,117,212,139,125,252,232,110,168,0,0,72,137,194,72,139,69,232,72,137, 16,72,139,125,240,190,0,0,0,0,232,5,78,1,0,72,137,194,72,139,69,232,72,137,80,8,255,69,252,72,131,69,232,16,139,69,252,59,69,212,124,190,72,139,69,240,201,195,85,72,137,229,72,131,236,80,72,137,125,184,72,137,117,176,72,139,69,184,139,64,56,137,69,252, 72,139,69,184,72,139,64,48,72,137,69,232,72,139,125,232,232,69,54,255,255,72,137,69,224,72,139,69,176,72,139,64,16,72,137,69,216,72,131,125,224,0,117,33,72,139,69,232,72,139,16,72,139,125,184,72,141,53,74,146,3,0,184,0,0,0,0,232,24,31,2,0,233,96,1,0, 0,72,139,125,176,190,0,0,0,0,232,90,244,255,255,133,192,117,26,72,139,125,184,72,141,53,61,146,3,0,184,0,0,0,0,232,236,30,2,0,233,52,1,0,0,72,139,69,216,139,64,8,131,248,2,117,13,72,139,69,176,72,139,0,72,137,69,208,235,15,72,139,69,176,72,139,0,72,131, 192,24,72,137,69,208,139,69,252,255,200,137,69,248,72,139,69,184,72,139,80,64,139,69,248,72,152,72,193,224,4,72,141,4,2,72,137,69,200,233,220,0,0,0,72,139,69,200,72,139,48,72,141,69,192,72,141,77,240,72,141,85,244,72,139,125,224,73,137,192,232,241,38, 255,255,133,192,15,132,131,0,0,0,139,69,240,133,192,117,38,139,69,244,72,152,72,137,194,72,139,69,208,72,141,4,2,243,15,16,0,72,139,69,200,72,139,120,8,232,120,78,1,0,233,128,0,0,0,139,69,240,131,248,1,117,34,139,69,244,72,152,72,137,194,72,139,69,208, 72,141,4,2,72,139,48,72,139,69,200,72,139,120,8,232,196,78,1,0,235,86,72,139,69,200,72,139,0,72,139,8,72,139,69,224,72,139,64,16,72,139,16,72,139,125,184,72,141,53,99,145,3,0,184,0,0,0,0,232,241,29,2,0,235,42,72,139,69,200,72,139,0,72,139,8,72,139,69, 224,72,139,64,16,72,139,16,72,139,125,184,72,141,53,92,145,3,0,184,0,0,0,0,232,197,29,2,0,255,77,248,72,131,109,200,16,131,125,248,0,15,137,26,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,64,56,72,152,72,137,198,72, 193,230,4,72,139,69,248,72,139,120,64,232,201,63,1,0,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,195,255,255,255,76,141,37,27,253,255,255,72,141,61,13,145,3,0,232,143,35,1,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,72, 0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,196,17,1,0,72,137,5,239,217,5,0,72,141,53,174,253,255,255,72,139,61,225,217,5,0,232,30,31,1,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,64,72,137,125,216,137,117,212,72,137,85,200,72,139,61,193, 217,5,0,232,48,90,1,0,72,137,69,240,131,125,212,0,116,59,72,139,69,200,139,0,131,248,2,117,48,72,139,69,200,72,139,64,8,72,139,56,72,141,53,120,144,3,0,232,246,61,3,0,133,192,117,21,72,139,69,240,199,64,84,1,0,0,0,255,77,212,72,131,69,200,16,235,11,72, 139,69,240,199,64,84,0,0,0,0,72,139,85,200,139,117,212,191,0,0,0,0,232,78,165,0,0,72,137,199,232,142,29,253,255,72,137,194,72,139,69,240,72,137,80,72,131,125,212,0,116,8,255,77,212,72,131,69,200,16,139,69,212,72,152,72,137,199,72,193,231,4,232,174,60, 1,0,72,137,194,72,139,69,240,72,137,80,88,72,139,85,240,139,69,212,137,66,80,131,125,212,0,15,132,159,0,0,0,199,69,252,0,0,0,0,72,139,69,240,72,139,64,88,72,137,69,232,235,126,72,139,85,200,139,117,212,139,125,252,232,217,164,0,0,72,137,194,72,139,69, 232,72,137,16,72,139,69,240,139,64,84,133,192,116,17,72,139,69,232,72,141,21,6,176,5,0,72,137,80,8,235,12,72,139,85,232,184,0,0,0,0,137,66,8,131,125,252,0,116,47,72,139,69,240,139,64,84,133,192,116,19,72,139,117,232,72,131,198,8,72,139,125,240,232,141, 70,1,0,235,17,72,139,117,232,72,131,198,8,72,139,125,240,232,174,69,1,0,255,69,252,72,131,69,232,16,139,69,252,59,69,212,15,140,118,255,255,255,72,139,117,240,72,131,198,48,72,139,125,240,232,190,68,1,0,72,139,125,240,72,131,199,48,232,118,243,255,255, 72,139,69,240,201,195,85,72,137,229,72,131,236,80,72,137,125,184,72,139,69,184,139,64,80,137,69,252,72,139,69,184,72,139,64,72,72,137,69,240,72,139,125,240,232,78,50,255,255,72,137,69,232,72,139,69,184,72,131,192,48,72,137,69,216,72,139,69,216,72,139, 64,16,72,137,69,208,72,131,125,232,0,117,33,72,139,69,240,72,139,16,72,139,125,184,72,141,53,215,142,3,0,184,0,0,0,0,232,21,27,2,0,233,168,1,0,0,72,139,125,216,190,0,0,0,0,232,87,240,255,255,133,192,117,26,72,139,125,184,72,141,53,202,142,3,0,184,0,0, 0,0,232,233,26,2,0,233,124,1,0,0,72,139,125,216,232,231,240,255,255,72,137,194,72,139,69,184,72,139,64,72,72,57,194,116,49,72,139,125,216,232,206,240,255,255,72,139,8,72,139,69,184,72,139,64,72,72,139,16,72,139,125,184,72,141,53,153,142,3,0,184,0,0,0, 0,232,159,26,2,0,233,50,1,0,0,131,125,252,0,15,132,40,1,0,0,72,139,69,208,139,64,8,131,248,2,117,13,72,139,69,216,72,139,0,72,137,69,200,235,15,72,139,69,216,72,139,0,72,131,192,24,72,137,69,200,72,139,69,184,139,64,84,133,192,116,73,199,69,248,0,0,0, 0,72,139,69,184,72,139,64,88,72,137,69,224,235,42,72,139,69,224,72,139,72,8,72,139,69,224,72,139,48,72,139,85,200,72,139,125,232,65,184,1,0,0,0,232,208,37,255,255,255,69,248,72,131,69,224,16,139,69,248,59,69,252,124,206,235,71,199,69,248,0,0,0,0,72,139, 69,184,72,139,64,88,72,137,69,224,235,42,72,139,69,224,243,15,16,64,8,72,139,69,224,72,139,48,72,139,85,200,72,139,125,232,185,1,0,0,0,232,23,36,255,255,255,69,248,72,131,69,224,16,139,69,248,59,69,252,124,206,72,139,69,208,139,64,8,131,248,1,117,21, 72,139,69,208,72,139,48,72,139,69,216,72,139,56,232,136,25,255,255,235,68,72,139,69,208,72,139,0,72,137,69,192,235,15,72,139,69,192,72,139,64,48,72,139,0,72,137,69,192,72,139,69,192,72,139,64,48,139,64,8,131,248,2,116,225,72,139,69,192,72,139,64,48,72, 139,48,72,139,69,192,72,139,120,32,232,66,25,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,139,64,80,133,192,116,36,72,139,69,248,139,64,84,133,192,117,25,72,139,69,248,72,139,80,88,139,69,244,137,66,8,72,139, 125,248,232,169,253,255,255,235,21,72,139,125,248,72,141,53,43,141,3,0,184,0,0,0,0,232,17,25,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,139,64,80,133,192,116,38,72,139,69,248,139,64,84,133,192,116,27,72,139,69, 248,72,139,80,88,72,139,69,240,72,137,66,8,72,139,125,248,232,81,253,255,255,235,21,72,139,125,248,72,141,53,211,140,3,0,184,0,0,0,0,232,185,24,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,64,80,72,152,72,137,198,72,193,230, 4,72,139,69,248,72,139,120,88,232,207,58,1,0,72,139,125,248,72,131,199,48,232,84,239,255,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,182,255,255,255,76,141,37,83,251,255,255,72,141,61,111,73,3,0,232,136,30,1,0,72,137,199,199,4,36,0,0,0, 0,65,185,10,0,0,0,65,184,0,0,0,0,185,96,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,189,12,1,0,72,137,5,240,212,5,0,72,141,53,187,254,255,255,72,139,61,226,212,5,0,232,49,26,1,0,72,141,53,255,254,255,255,72,139,61,207,212,5,0,232,56,26,1,0,72,141,53, 124,252,255,255,72,139,61,188,212,5,0,232,215,25,1,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,61,159,212,5,0,232,6,85,1,0,72,137,69,248,72,139,125,232,232,192,24,253,255,72,137,194,72,139,69,248, 72,137,80,48,72,139,85,248,72,139,69,224,72,137,66,56,72,139,125,248,72,131,199,64,232,138,239,255,255,72,139,125,248,72,131,199,88,232,125,239,255,255,72,139,117,248,72,131,198,88,72,139,125,248,232,167,64,1,0,72,139,125,248,72,141,53,24,170,5,0,232, 213,69,1,0,72,139,69,248,201,195,85,72,137,229,72,131,236,112,72,137,125,152,243,15,17,69,148,243,15,16,69,148,243,15,44,192,137,69,252,72,139,69,152,72,139,64,48,72,137,69,224,72,139,69,152,72,139,64,56,72,137,69,216,72,139,125,224,232,33,46,255,255, 72,137,69,200,72,139,69,152,72,131,192,88,72,137,69,184,72,139,125,184,190,0,0,0,0,232,94,236,255,255,133,192,117,26,72,139,125,152,72,141,53,50,139,3,0,184,0,0,0,0,232,240,22,2,0,233,200,1,0,0,72,139,125,184,232,238,236,255,255,72,137,194,72,139,69, 152,72,139,64,48,72,57,194,116,49,72,139,125,184,232,213,236,255,255,72,139,8,72,139,69,152,72,139,64,48,72,139,16,72,139,125,152,72,141,53,0,139,3,0,184,0,0,0,0,232,166,22,2,0,233,126,1,0,0,72,139,69,184,72,139,64,16,139,64,8,131,248,2,117,13,72,139, 69,184,72,139,0,72,137,69,176,235,15,72,139,69,184,72,139,0,72,131,192,24,72,137,69,176,72,131,125,200,0,117,33,72,139,69,224,72,139,16,72,139,125,152,72,141,53,212,138,3,0,184,0,0,0,0,232,82,22,2,0,233,42,1,0,0,72,141,69,208,72,141,77,236,72,141,85, 244,72,139,117,216,72,139,125,200,73,137,192,232,168,30,255,255,133,192,117,33,72,139,69,216,72,139,16,72,139,125,152,72,141,53,187,138,3,0,184,0,0,0,0,232,17,22,2,0,233,233,0,0,0,139,69,236,131,248,3,116,33,72,139,69,216,72,139,16,72,139,125,152,72, 141,53,186,138,3,0,184,0,0,0,0,232,232,21,2,0,233,192,0,0,0,72,139,125,208,232,212,44,255,255,72,137,69,192,72,131,125,192,0,117,33,72,139,69,208,72,139,16,72,139,125,152,72,141,53,173,138,3,0,184,0,0,0,0,232,179,21,2,0,233,139,0,0,0,72,139,69,192,139, 64,24,72,152,72,193,224,3,137,69,240,139,69,244,72,152,72,137,194,72,139,69,176,72,141,4,2,72,139,0,72,137,69,168,72,139,69,168,139,0,137,69,248,131,125,252,0,121,7,199,69,252,0,0,0,0,139,69,252,59,69,248,124,8,139,69,248,255,200,137,69,252,72,139,69, 168,72,139,80,8,139,69,252,15,175,69,240,72,152,72,141,4,2,72,137,194,72,139,125,152,72,131,199,64,72,139,117,168,232,181,236,255,255,72,139,117,152,72,131,198,64,72,139,69,152,72,139,120,24,232,191,68,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125, 248,72,137,117,240,72,139,125,248,72,131,199,64,232,215,235,255,255,72,139,125,248,72,131,199,88,232,202,235,255,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,194,255,255,255,76,141,37,246,252,255,255,72,141,61,238,137,3,0,232,254,26,1,0, 72,137,199,199,68,36,8,0,0,0,0,199,4,36,7,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,112,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,43,9,1,0,72,137,5,102,209,5,0,72,141,53,42,253,255,255,72,139,61,88,209,5,0,232,159,22,1,0,72,131,196,16,91,65,92,201,195, 85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,61,59,209,5,0,232,154,81,1,0,72,137,69,248,72,139,125,232,232,84,21,253,255,72,137,194,72,139,69,248,72,137,80,48,72,139,85,248,72,139,69,224,72,137,66,56,72,139,125,248,72,141,53,247,166, 5,0,232,148,66,1,0,72,139,69,248,201,195,85,72,137,229,72,131,236,96,72,137,125,168,72,137,117,160,72,139,69,168,72,139,64,48,72,137,69,232,72,139,69,168,72,139,64,56,72,137,69,224,72,139,125,232,232,237,42,255,255,72,137,69,208,72,139,69,160,72,139, 64,16,72,137,69,184,72,131,125,208,0,117,33,72,139,69,232,72,139,16,72,139,125,168,72,141,53,242,136,3,0,184,0,0,0,0,232,192,19,2,0,233,51,1,0,0,72,141,69,216,72,141,77,244,72,141,85,248,72,139,117,224,72,139,125,208,73,137,192,232,22,28,255,255,133, 192,117,33,72,139,69,224,72,139,16,72,139,125,168,72,141,53,217,136,3,0,184,0,0,0,0,232,127,19,2,0,233,242,0,0,0,139,69,244,131,248,3,116,33,72,139,69,224,72,139,16,72,139,125,168,72,141,53,216,136,3,0,184,0,0,0,0,232,86,19,2,0,233,201,0,0,0,72,139,125, 160,190,0,0,0,0,232,152,232,255,255,133,192,117,26,72,139,125,168,72,141,53,123,134,3,0,184,0,0,0,0,232,42,19,2,0,233,157,0,0,0,72,139,125,160,232,40,233,255,255,72,137,194,72,139,69,168,72,139,64,48,72,57,194,116,46,72,139,125,160,232,15,233,255,255, 72,139,8,72,139,69,168,72,139,64,48,72,139,16,72,139,125,168,72,141,53,138,136,3,0,184,0,0,0,0,232,224,18,2,0,235,86,72,139,69,184,139,64,8,131,248,2,117,13,72,139,69,160,72,139,0,72,137,69,200,235,15,72,139,69,160,72,139,0,72,131,192,24,72,137,69,200, 139,69,248,72,152,72,137,194,72,139,69,200,72,141,4,2,72,139,0,72,137,69,192,72,139,69,192,139,0,243,15,42,192,72,139,69,168,72,139,120,24,232,182,66,1,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,252,253,255,255,72,141,61,51,136,3,0,232,152,24, 1,0,72,137,199,199,68,36,8,0,0,0,0,199,4,36,7,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,195,6,1,0,72,137,5,6,207,5,0,72,141,53,3,254,255,255,72,139,61,248,206,5,0,232,29,20,1,0,72,131,196,24,91,201,195,85, 72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,243,15,17,69,220,72,139,61,216,206,5,0,232,47,79,1,0,72,137,69,248,72,139,125,232,232,233,18,253,255,72,137,194,72,139,69,248,72,137,80,48,72,139,85,248,72,139,69,224,72,137,66,56,72,139,125,248, 72,131,199,64,232,179,233,255,255,72,139,117,248,72,131,198,64,72,139,125,248,232,221,58,1,0,72,139,69,248,201,195,85,72,137,229,72,129,236,160,0,0,0,72,137,189,104,255,255,255,243,15,17,133,100,255,255,255,72,139,133,104,255,255,255,72,139,64,48,72, 137,69,216,72,139,133,104,255,255,255,72,139,64,56,72,137,69,208,72,139,125,216,232,100,40,255,255,72,137,69,192,243,15,16,133,100,255,255,255,243,15,44,192,137,69,236,72,139,133,104,255,255,255,72,131,192,64,72,137,69,160,72,139,69,160,72,139,64,16, 72,137,69,152,72,139,189,104,255,255,255,72,131,199,64,190,0,0,0,0,232,124,230,255,255,133,192,117,29,72,139,189,104,255,255,255,72,141,53,225,134,3,0,184,0,0,0,0,232,11,17,2,0,233,129,3,0,0,72,139,189,104,255,255,255,72,131,199,64,232,2,231,255,255, 72,137,194,72,139,133,104,255,255,255,72,139,64,48,72,57,194,116,62,72,139,189,104,255,255,255,72,131,199,64,232,223,230,255,255,72,139,8,72,139,133,104,255,255,255,72,139,64,48,72,139,16,72,139,189,104,255,255,255,72,141,53,156,134,3,0,184,0,0,0,0,232, 170,16,2,0,233,32,3,0,0,72,139,69,152,139,64,8,131,248,2,117,13,72,139,69,160,72,139,0,72,137,69,176,235,15,72,139,69,160,72,139,0,72,131,192,24,72,137,69,176,72,131,125,192,0,117,36,72,139,69,216,72,139,16,72,139,189,104,255,255,255,72,141,53,113,134, 3,0,184,0,0,0,0,232,87,16,2,0,233,205,2,0,0,72,141,69,200,72,141,77,244,72,141,85,248,72,139,117,208,72,139,125,192,73,137,192,232,173,24,255,255,133,192,117,36,72,139,69,208,72,139,16,72,139,189,104,255,255,255,72,141,53,85,134,3,0,184,0,0,0,0,232,19, 16,2,0,233,137,2,0,0,139,69,244,131,248,3,116,36,72,139,69,208,72,139,16,72,139,189,104,255,255,255,72,141,53,81,134,3,0,184,0,0,0,0,232,231,15,2,0,233,93,2,0,0,72,139,125,200,232,211,38,255,255,72,137,69,184,72,131,125,184,0,117,36,72,139,69,200,72, 139,16,72,139,189,104,255,255,255,72,141,53,169,132,3,0,184,0,0,0,0,232,175,15,2,0,233,37,2,0,0,72,139,69,184,139,64,24,72,152,72,193,224,3,137,69,240,139,69,248,72,152,72,137,194,72,139,69,176,72,141,4,2,72,139,0,72,137,69,168,72,139,69,168,139,64,4, 59,69,240,116,17,72,141,61,244,133,3,0,184,0,0,0,0,232,41,17,2,0,72,139,69,168,139,0,137,69,252,131,125,236,0,127,7,199,69,236,1,0,0,0,139,69,236,59,69,252,15,132,191,1,0,0,72,139,69,152,139,64,8,131,248,1,117,45,72,139,69,152,72,139,56,232,90,22,253, 255,133,192,116,125,72,139,69,152,72,139,48,72,139,69,160,72,139,0,72,137,199,186,0,0,0,0,232,142,64,253,255,235,96,72,139,69,152,72,139,0,72,137,69,144,235,15,72,139,69,144,72,139,64,48,72,139,0,72,137,69,144,72,139,69,144,72,139,64,48,139,64,8,131, 248,2,116,225,72,139,69,144,72,139,64,48,72,139,56,232,253,21,253,255,133,192,116,32,72,139,69,144,72,139,64,48,72,139,48,72,139,69,144,72,139,64,32,72,137,199,186,0,0,0,0,232,44,64,253,255,139,69,240,15,175,69,236,72,99,208,139,69,240,15,175,69,252, 72,99,240,72,139,69,168,72,139,120,8,232,201,47,1,0,72,137,194,72,139,69,168,72,137,80,8,72,139,85,168,139,69,236,137,2,139,69,236,59,69,252,126,80,72,139,69,168,72,139,80,8,139,69,252,15,175,69,240,72,152,72,141,4,2,72,137,69,136,199,69,232,0,0,0,0, 139,85,252,139,69,236,41,208,137,69,228,235,26,72,139,125,136,72,139,85,160,72,139,117,184,232,182,0,255,255,139,69,240,72,152,72,1,69,136,255,77,228,131,125,228,255,117,221,72,139,69,152,139,64,8,131,248,1,117,45,72,139,69,152,72,139,56,232,52,21,253, 255,133,192,116,125,72,139,69,152,72,139,48,72,139,69,160,72,139,0,72,137,199,186,1,0,0,0,232,104,63,253,255,235,96,72,139,69,152,72,139,0,72,137,69,128,235,15,72,139,69,128,72,139,64,48,72,139,0,72,137,69,128,72,139,69,128,72,139,64,48,139,64,8,131, 248,2,116,225,72,139,69,128,72,139,64,48,72,139,56,232,215,20,253,255,133,192,116,32,72,139,69,128,72,139,64,48,72,139,48,72,139,69,128,72,139,64,32,72,137,199,186,1,0,0,0,232,6,63,253,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125, 248,72,131,199,64,232,61,228,255,255,201,195,85,72,137,229,65,84,83,72,131,236,32,72,141,29,211,255,255,255,76,141,37,59,251,255,255,72,141,61,221,131,3,0,232,113,19,1,0,72,137,199,199,68,36,16,0,0,0,0,199,68,36,8,6,0,0,0,199,4,36,7,0,0,0,65,185,7,0, 0,0,65,184,0,0,0,0,185,88,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,150,1,1,0,72,137,5,225,201,5,0,72,141,53,79,251,255,255,72,139,61,211,201,5,0,232,10,15,1,0,72,131,196,32,91,65,92,201,195,85,72,137,229,72,131,236,64,72,137,125,216,137,117,212,72, 137,85,200,72,139,61,179,201,5,0,232,2,74,1,0,72,137,69,240,72,139,85,200,139,117,212,191,0,0,0,0,232,108,149,0,0,72,137,199,232,172,13,253,255,72,137,194,72,139,69,240,72,137,80,72,131,125,212,0,116,8,255,77,212,72,131,69,200,16,139,69,212,72,152,72, 137,199,72,193,231,4,232,204,44,1,0,72,137,194,72,139,69,240,72,137,80,88,72,139,85,240,139,69,212,137,66,80,131,125,212,0,116,97,199,69,252,0,0,0,0,72,139,69,240,72,139,64,88,72,137,69,232,235,68,72,139,85,200,139,117,212,139,125,252,232,251,148,0,0, 72,137,194,72,139,69,232,72,137,16,72,139,85,232,184,0,0,0,0,137,66,8,131,125,252,0,116,17,72,139,117,232,72,131,198,8,72,139,125,240,232,10,54,1,0,255,69,252,72,131,69,232,16,139,69,252,59,69,212,124,180,72,139,117,240,72,131,198,48,72,139,125,240,232, 30,53,1,0,72,139,125,240,72,141,53,143,158,5,0,232,76,58,1,0,72,139,125,240,72,131,199,48,232,198,227,255,255,72,139,69,240,201,195,85,72,137,229,72,131,236,96,72,137,125,168,243,15,17,69,164,72,139,69,168,139,64,80,137,69,252,72,139,69,168,72,139,64, 72,72,137,69,240,72,139,125,240,232,153,34,255,255,72,137,69,232,72,139,69,168,72,131,192,48,72,137,69,216,72,139,69,216,72,139,64,16,72,137,69,208,72,131,125,232,0,117,33,72,139,69,240,72,139,16,72,139,125,168,72,141,53,10,130,3,0,184,0,0,0,0,232,96, 11,2,0,233,177,1,0,0,72,131,125,208,0,117,26,72,139,125,168,72,141,53,11,130,3,0,184,0,0,0,0,232,63,11,2,0,233,144,1,0,0,72,139,69,208,139,64,8,131,248,1,116,26,72,139,125,168,72,141,53,3,130,3,0,184,0,0,0,0,232,25,11,2,0,233,106,1,0,0,72,139,69,208, 72,139,0,72,137,69,176,72,139,69,176,139,80,64,72,139,69,216,139,64,8,57,194,116,26,72,139,125,168,72,141,53,235,129,3,0,184,0,0,0,0,232,226,10,2,0,233,51,1,0,0,131,125,252,0,15,132,41,1,0,0,72,139,69,168,72,139,80,88,139,69,164,137,66,8,72,139,117,240, 72,139,125,176,232,110,255,254,255,72,137,69,192,72,131,125,192,0,117,33,72,139,69,240,72,139,16,72,139,125,168,72,141,53,176,129,3,0,184,0,0,0,0,232,145,10,2,0,233,226,0,0,0,72,139,69,216,72,139,0,72,137,69,184,72,131,125,184,0,116,30,72,139,69,184, 72,139,80,8,72,139,69,192,72,137,80,8,72,139,85,192,72,139,69,184,72,137,80,8,235,28,72,139,69,176,72,139,80,48,72,139,69,192,72,137,80,8,72,139,85,192,72,139,69,176,72,137,80,48,72,139,85,216,72,139,69,192,72,137,2,72,139,69,192,72,131,192,24,72,137, 69,200,199,69,248,0,0,0,0,72,139,69,168,72,139,64,88,72,137,69,224,235,42,72,139,69,224,243,15,16,64,8,72,139,69,224,72,139,48,72,139,85,200,72,139,125,232,185,1,0,0,0,232,44,20,255,255,255,69,248,72,131,69,224,16,139,69,248,59,69,252,124,206,72,139, 125,176,232,0,193,253,255,72,137,199,232,255,16,253,255,133,192,116,18,72,139,125,192,72,139,117,176,186,1,0,0,0,232,60,59,253,255,72,139,69,168,72,139,120,24,72,139,117,216,232,70,57,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248, 139,64,80,72,152,72,137,198,72,193,230,4,72,139,69,248,72,139,120,88,232,192,43,1,0,72,139,125,248,72,131,199,48,232,69,224,255,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,182,255,255,255,76,141,37,114,252,255,255,72,141,61,128,128,3,0, 232,121,15,1,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,96,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,174,253,0,0,72,137,5,1,198,5,0,72,141,53,67,253,255,255,72,139,61,243,197,5,0,232,34,11,1,0,72,131,196,16,91,65,92,201,195,85, 72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,61,214,197,5,0,232,29,70,1,0,72,137,69,248,72,139,125,232,232,215,9,253,255,72,137,194,72,139,69,248,72,137,80,48,72,139,85,248,72,139,69,224,72,137,66,56,72,139,125,248,72,131,199,64,232, 161,224,255,255,72,139,125,248,72,141,53,77,155,5,0,232,10,55,1,0,72,139,69,248,201,195,85,72,137,229,72,131,236,80,72,137,125,184,72,137,117,176,72,139,69,184,72,139,64,48,72,137,69,240,72,139,125,240,232,111,31,255,255,72,137,69,224,72,139,69,176,72, 139,64,16,72,137,69,216,72,131,125,224,0,117,33,72,139,69,240,72,139,16,72,139,125,184,72,141,53,132,127,3,0,184,0,0,0,0,232,66,8,2,0,233,1,1,0,0,72,139,125,176,190,0,0,0,0,232,132,221,255,255,133,192,117,26,72,139,125,184,72,141,53,103,123,3,0,184,0, 0,0,0,232,22,8,2,0,233,213,0,0,0,72,139,69,184,72,139,112,56,72,141,69,232,72,141,77,248,72,141,85,252,72,139,125,224,73,137,192,232,104,16,255,255,133,192,117,37,72,139,69,184,72,139,64,56,72,139,16,72,139,125,184,72,141,53,55,127,3,0,184,0,0,0,0,232, 205,7,2,0,233,140,0,0,0,139,69,248,131,248,2,116,34,72,139,69,184,72,139,64,56,72,139,16,72,139,125,184,72,141,53,42,127,3,0,184,0,0,0,0,232,160,7,2,0,235,98,72,139,69,216,139,64,8,131,248,2,117,13,72,139,69,176,72,139,0,72,137,69,192,235,15,72,139,69, 176,72,139,0,72,131,192,24,72,137,69,192,139,69,252,72,152,72,137,194,72,139,69,192,72,141,4,2,72,139,48,72,139,125,184,72,131,199,64,186,0,0,0,0,232,90,222,255,255,72,139,117,184,72,131,198,64,72,139,69,184,72,139,120,24,232,216,54,1,0,201,195,85,72, 137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,125,248,72,131,199,64,232,240,221,255,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,207,255,255,255,76,141,37,5,254,255,255,72,141,61,158,126,3,0,232,36,13,1,0,72,137,199,199,68, 36,8,0,0,0,0,199,4,36,7,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,88,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,81,251,0,0,72,137,5,172,195,5,0,72,141,53,27,254,255,255,72,139,61,158,195,5,0,232,171,8,1,0,72,131,196,16,91,65,92,201,195,85,72,137,229,232, 209,228,255,255,232,12,233,255,255,232,14,238,255,255,232,147,241,255,255,232,253,243,255,255,232,22,249,255,255,232,9,253,255,255,232,89,255,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,137,69,248,72,139, 125,224,232,127,13,253,255,133,192,15,132,151,0,0,0,72,139,125,224,232,103,189,253,255,72,137,69,240,72,139,69,248,139,184,72,4,0,0,72,139,69,248,68,139,128,72,4,0,0,72,139,69,248,139,136,152,4,0,0,72,139,85,248,72,139,117,240,65,137,249,72,141,61,67, 83,3,0,184,0,0,0,0,232,185,160,1,0,72,139,69,248,139,184,68,4,0,0,72,139,69,248,68,139,128,68,4,0,0,72,139,69,248,139,136,136,4,0,0,72,139,85,248,72,139,117,240,65,137,249,72,141,61,8,83,3,0,184,0,0,0,0,232,126,160,1,0,72,139,69,248,139,144,136,4,0,0, 72,139,69,248,137,144,152,4,0,0,201,195,85,72,137,229,72,129,236,144,0,0,0,72,137,125,184,72,137,117,176,72,139,125,176,232,187,188,253,255,72,137,69,192,72,139,69,184,139,128,148,4,0,0,137,69,252,72,139,69,184,139,64,64,137,69,244,139,69,244,141,80, 3,133,192,15,72,194,193,248,2,137,69,240,72,139,125,184,72,139,117,176,232,70,210,253,255,137,69,236,139,69,236,137,69,232,139,69,244,3,69,232,137,69,228,139,69,240,3,69,232,137,69,224,139,85,240,139,69,228,41,208,137,69,220,72,139,125,184,72,139,117, 176,232,13,209,253,255,137,69,216,139,69,244,3,69,216,137,69,212,139,69,240,3,69,216,137,69,208,139,85,240,139,69,212,41,208,137,69,204,199,69,248,0,0,0,0,233,29,1,0,0,72,139,69,184,139,144,72,4,0,0,139,77,228,139,117,212,139,125,232,68,139,85,216,76, 139,93,192,139,69,248,137,68,36,16,72,139,69,184,72,137,68,36,8,137,20,36,65,137,201,65,137,240,137,249,68,137,210,76,137,222,72,141,61,49,82,3,0,184,0,0,0,0,232,103,159,1,0,72,139,69,184,139,128,136,4,0,0,59,69,248,117,15,72,139,69,184,139,128,68,4, 0,0,137,69,144,235,13,72,139,69,184,139,128,72,4,0,0,137,69,144,72,139,69,184,139,128,136,4,0,0,59,69,248,117,15,72,139,69,184,139,128,68,4,0,0,137,69,148,235,13,72,139,69,184,139,128,72,4,0,0,137,69,148,139,85,220,139,77,204,139,117,224,139,125,208, 76,139,85,192,139,69,248,137,68,36,24,72,139,69,184,72,137,68,36,16,139,69,144,137,68,36,8,139,69,148,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,216,81,3,0,184,0,0,0,0,232,198,158,1,0,139,69,244,1,69,232,139,69,244,1,69,228,139, 69,244,1,69,224,139,69,244,1,69,220,72,139,69,184,139,144,136,4,0,0,72,139,69,184,137,144,152,4,0,0,255,69,248,139,69,248,59,69,252,15,140,215,254,255,255,72,139,69,184,139,128,76,4,0,0,137,69,152,72,139,69,184,139,128,60,4,0,0,137,69,156,72,139,69,184, 72,131,192,80,72,137,69,160,72,139,69,184,72,139,128,96,4,0,0,72,139,56,72,141,53,228,87,3,0,232,193,36,3,0,133,192,116,20,72,139,69,184,72,139,128,96,4,0,0,72,139,0,72,137,69,168,235,11,72,141,5,100,55,3,0,72,137,69,168,72,139,69,184,139,64,76,137,193, 3,77,236,72,139,69,184,139,64,72,137,194,3,85,216,72,139,117,192,72,139,69,184,72,137,68,36,24,139,69,152,137,68,36,16,72,141,5,153,164,5,0,72,137,68,36,8,139,69,156,137,4,36,76,139,77,160,76,139,69,168,72,141,61,11,62,3,0,184,0,0,0,0,232,209,157,1,0, 72,139,69,184,15,182,128,56,4,0,0,131,224,128,132,192,117,65,139,85,216,131,194,7,139,77,232,255,201,139,117,232,139,125,216,76,139,85,192,199,68,36,8,0,0,0,0,72,139,69,184,72,137,4,36,65,137,241,65,137,208,137,250,76,137,214,72,141,61,56,62,3,0,184, 0,0,0,0,232,126,157,1,0,72,139,69,184,15,182,128,56,4,0,0,131,224,64,132,192,117,67,139,85,236,255,194,139,77,216,131,193,7,139,117,236,139,125,216,76,139,85,192,199,68,36,8,0,0,0,0,72,139,69,184,72,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137, 214,72,141,61,43,62,3,0,184,0,0,0,0,232,41,157,1,0,201,195,85,72,137,229,72,131,236,96,72,137,125,184,72,137,117,176,72,139,125,176,232,125,185,253,255,72,137,69,192,72,139,69,184,139,128,148,4,0,0,137,69,252,72,139,69,184,139,64,64,137,69,244,139,69, 244,141,80,3,133,192,15,72,194,193,248,2,137,69,240,72,139,125,184,72,139,117,176,232,8,207,253,255,137,69,236,139,69,236,137,69,232,139,69,244,3,69,232,137,69,228,139,69,240,3,69,232,137,69,224,139,85,240,139,69,228,41,208,137,69,220,72,139,125,184, 72,139,117,176,232,207,205,253,255,137,69,216,139,69,244,3,69,216,137,69,212,139,69,240,3,69,216,137,69,208,139,85,240,139,69,212,41,208,137,69,204,199,69,248,0,0,0,0,233,149,0,0,0,139,85,232,139,77,216,139,117,248,72,139,125,184,76,139,85,192,139,69, 228,137,68,36,8,139,69,212,137,4,36,65,137,209,65,137,200,137,241,72,137,250,76,137,214,72,141,61,163,79,3,0,184,0,0,0,0,232,57,156,1,0,139,85,224,139,77,208,139,117,248,72,139,125,184,76,139,85,192,139,69,220,137,68,36,8,139,69,204,137,4,36,65,137,209, 65,137,200,137,241,72,137,250,76,137,214,72,141,61,142,79,3,0,184,0,0,0,0,232,252,155,1,0,139,69,244,1,69,232,139,69,244,1,69,228,139,69,244,1,69,224,139,69,244,1,69,220,255,69,248,139,69,248,59,69,252,15,140,95,255,255,255,72,139,69,184,139,64,76,137, 199,3,125,236,72,139,69,184,139,64,72,137,193,3,77,216,72,139,85,184,72,139,117,192,65,137,248,72,141,61,67,53,3,0,184,0,0,0,0,232,161,155,1,0,72,139,69,184,15,182,128,56,4,0,0,131,224,128,132,192,117,66,139,85,216,131,194,7,139,77,232,255,201,139,117, 216,72,139,125,184,76,139,85,192,139,69,232,137,68,36,8,137,20,36,65,137,201,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,231,60,3,0,184,0,0,0,0,232,77,155,1,0,72,139,69,184,15,182,128,56,4,0,0,131,224,64,132,192,117,66,139,69,236,255,192,139, 85,216,131,194,7,139,77,236,139,117,216,72,139,125,184,76,139,85,192,137,68,36,8,137,20,36,65,137,201,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,187,60,3,0,184,0,0,0,0,232,249,154,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72, 137,117,224,72,139,125,224,232,77,183,253,255,72,137,69,240,72,139,69,232,139,128,148,4,0,0,137,69,252,199,69,248,0,0,0,0,235,59,139,77,248,72,139,85,232,72,139,117,240,72,141,61,102,78,3,0,184,0,0,0,0,232,168,154,1,0,139,77,248,72,139,85,232,72,139, 117,240,72,141,61,100,78,3,0,184,0,0,0,0,232,140,154,1,0,255,69,248,139,69,248,59,69,252,124,189,72,139,85,232,72,139,117,240,72,141,61,234,111,3,0,184,0,0,0,0,232,104,154,1,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,30,72,139,85,232, 72,139,117,240,185,0,0,0,0,72,141,61,42,78,3,0,184,0,0,0,0,232,56,154,1,0,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,0,81,3,0,184,0,0,0,0,232,8,154,1,0,201,195,85,72,137,229,72,131,236, 80,72,137,125,232,72,137,117,224,72,139,125,224,232,92,182,253,255,72,137,69,240,72,139,69,232,139,128,148,4,0,0,137,69,252,72,139,69,232,72,139,128,96,4,0,0,72,139,56,72,141,53,91,83,3,0,232,56,32,3,0,133,192,116,20,72,139,69,232,72,139,128,96,4,0,0, 72,139,0,72,137,69,200,235,11,72,141,5,219,50,3,0,72,137,69,200,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,117,15,72,139,69,232,139,128,76,4,0,0,137,69,212,235,7,199,69,212,255,0,0,0,72,139,69,232,139,144,60,4,0,0,72,139,77,232,72,131,193,80, 72,139,117,232,72,139,125,240,72,139,69,200,72,137,68,36,8,139,69,212,137,4,36,72,141,5,235,159,5,0,73,137,193,65,137,208,72,137,242,72,137,254,72,141,61,68,59,3,0,184,0,0,0,0,232,42,153,1,0,199,69,248,0,0,0,0,233,166,0,0,0,72,139,69,232,139,128,72,4, 0,0,139,77,248,72,139,85,232,72,139,117,240,65,137,192,72,141,61,7,77,3,0,184,0,0,0,0,232,245,152,1,0,72,139,69,232,139,128,136,4,0,0,59,69,248,117,15,72,139,69,232,139,128,68,4,0,0,137,69,216,235,13,72,139,69,232,139,128,72,4,0,0,137,69,216,72,139,69, 232,139,128,136,4,0,0,59,69,248,117,15,72,139,69,232,139,128,68,4,0,0,137,69,220,235,13,72,139,69,232,139,128,72,4,0,0,137,69,220,139,77,248,72,139,85,232,72,139,117,240,68,139,77,216,68,139,69,220,72,141,61,5,75,3,0,184,0,0,0,0,232,123,152,1,0,255,69, 248,139,69,248,59,69,252,15,140,78,255,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72,139,125,224,232,189,180,253,255,72,137,69,240,72,139,125,232,72,139,117,224,232,106,201,253,255,137,69,252,72,139,125,232,72, 139,117,224,232,96,202,253,255,137,69,248,139,69,220,131,224,1,132,192,116,120,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,102,72,139,69,232,139,144,148,4,0,0,72,139,69,232,139,64,64,15,175,194,137,199,3,125,248,68,139,69,252,65,131,192, 7,72,139,69,232,139,144,148,4,0,0,72,139,69,232,139,64,64,15,175,194,3,69,248,141,72,255,139,85,252,72,139,117,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,249,72,141,61,66,58,3,0,184,0,0,0,0,232,168,151,1,0,139,69,220,131,224,1,133,192,117, 48,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,96,75,3,0,184,0,0,0,0,232,110,151,1,0,139,69,220,131,224,2,133,192,116,85,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,67,139, 85,248,255,194,139,77,252,131,193,7,139,117,248,139,125,252,76,139,85,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,225,57,3,0,184,0,0,0,0,232,15,151,1,0,139,69,220,131,224,2,133,192,117, 48,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,116,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,205,77,3,0,184,0,0,0,0,232,213,150,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224,232,41,179,253,255, 72,137,69,240,72,139,69,232,139,128,148,4,0,0,137,69,252,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,116,86,199,69,248,0,0,0,0,235,37,139,77,248,72,139,85,232,72,139,117,240,65,184,255,0,0,0,72,141,61,174,74,3,0,184,0,0,0,0,232,108,150,1,0,255, 69,248,139,69,248,59,69,252,124,211,72,139,85,232,72,139,117,240,185,255,0,0,0,72,141,61,173,57,3,0,184,0,0,0,0,232,67,150,1,0,235,89,199,69,248,0,0,0,0,235,37,139,77,248,72,139,85,232,72,139,117,240,65,184,0,0,0,0,72,141,61,88,74,3,0,184,0,0,0,0,232, 22,150,1,0,255,69,248,139,69,248,59,69,252,124,211,72,139,69,232,139,136,76,4,0,0,72,139,85,232,72,139,117,240,72,141,61,82,57,3,0,184,0,0,0,0,232,232,149,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,131,125,236,0, 117,25,72,139,117,240,72,139,125,248,72,141,21,148,244,255,255,232,202,156,1,0,233,130,0,0,0,131,125,236,1,117,15,72,139,117,240,72,139,125,248,232,122,248,255,255,235,109,131,125,236,2,117,15,72,139,117,240,72,139,125,248,232,36,245,255,255,235,88,131, 125,236,3,117,15,72,139,117,240,72,139,125,248,232,164,254,255,255,235,67,131,125,236,4,117,15,72,139,117,240,72,139,125,248,232,107,250,255,255,235,46,131,125,236,5,117,15,72,139,117,240,72,139,125,248,232,71,251,255,255,235,25,131,125,236,5,126,19, 139,85,236,131,234,6,72,139,117,240,72,139,125,248,232,200,252,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,72,139,69,232,72,137,69,248,72,139,125,248,72,139,117,224, 232,40,198,253,255,137,194,72,139,69,216,137,16,72,139,125,248,72,139,117,224,232,25,199,253,255,137,194,72,139,69,208,137,16,72,139,69,216,139,16,72,139,69,248,139,64,68,1,194,72,139,69,200,137,16,72,139,69,208,139,8,72,139,69,248,139,80,64,72,139,69, 248,139,128,148,4,0,0,15,175,194,141,20,1,72,139,69,192,137,16,201,195,85,72,137,229,65,85,65,84,83,72,129,236,40,1,0,0,72,137,125,152,72,137,117,144,72,139,69,152,72,137,69,216,72,139,125,216,72,141,85,192,72,141,117,160,232,206,109,252,255,72,139,69, 216,139,128,136,4,0,0,137,133,64,255,255,255,139,69,200,137,133,68,255,255,255,139,85,196,137,149,72,255,255,255,139,69,192,137,133,76,255,255,255,72,139,69,216,139,128,60,4,0,0,137,133,80,255,255,255,72,139,125,216,72,129,199,56,4,0,0,232,203,119,252, 255,137,133,84,255,255,255,72,139,69,216,139,64,76,137,133,88,255,255,255,72,139,69,216,139,64,72,137,133,92,255,255,255,72,139,85,176,72,137,149,96,255,255,255,72,139,69,168,72,137,133,104,255,255,255,72,139,85,160,72,137,149,112,255,255,255,72,139, 69,216,139,128,148,4,0,0,137,133,120,255,255,255,72,139,125,216,72,129,199,64,4,0,0,232,82,118,252,255,137,133,124,255,255,255,72,139,69,216,139,128,144,4,0,0,137,69,128,72,139,69,216,139,64,68,137,69,132,72,139,69,216,72,139,16,72,139,5,228,181,5,0, 72,57,194,117,18,72,141,61,19,98,3,0,232,1,255,0,0,72,137,69,136,235,16,72,141,61,158,59,3,0,232,239,254,0,0,72,137,69,136,72,139,69,216,15,183,64,42,15,191,216,72,139,69,216,15,183,64,40,68,15,191,224,72,141,61,207,71,3,0,232,200,254,0,0,73,137,197, 72,141,61,160,56,3,0,232,185,254,0,0,72,139,125,144,139,149,64,255,255,255,137,84,36,120,139,149,68,255,255,255,137,84,36,112,139,149,72,255,255,255,137,84,36,104,139,149,76,255,255,255,137,84,36,96,139,149,80,255,255,255,137,84,36,88,139,149,84,255, 255,255,137,84,36,80,139,149,88,255,255,255,137,84,36,72,139,149,92,255,255,255,137,84,36,64,72,139,149,96,255,255,255,72,137,84,36,56,72,139,149,104,255,255,255,72,137,84,36,48,72,139,149,112,255,255,255,72,137,84,36,40,139,149,120,255,255,255,137,84, 36,32,139,149,124,255,255,255,137,84,36,24,139,85,128,137,84,36,16,139,85,132,137,84,36,8,72,139,85,136,72,137,20,36,65,137,217,69,137,224,76,137,233,72,137,194,72,141,53,13,71,3,0,184,0,0,0,0,232,209,147,0,0,72,139,125,144,72,141,53,209,73,3,0,184,0, 0,0,0,232,188,147,0,0,72,129,196,40,1,0,0,91,65,92,65,93,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,8,4,0,0,72,137,189,104,252,255,255,72,137,181,96,252,255,255,72,139,5,160,130,5,0,72,139,16,72,137,85,200,49,210,72,139,133,104,252,255, 255,72,137,133,144,252,255,255,199,133,156,252,255,255,255,255,255,255,72,139,189,144,252,255,255,72,141,181,112,252,255,255,232,205,107,252,255,72,139,133,144,252,255,255,72,139,16,72,139,5,59,180,5,0,72,57,194,117,19,72,139,133,144,252,255,255,139, 128,144,4,0,0,137,133,156,252,255,255,72,139,133,144,252,255,255,139,128,76,4,0,0,137,194,129,226,255,255,255,0,72,139,133,144,252,255,255,139,128,68,4,0,0,137,193,129,225,255,255,255,0,72,139,133,144,252,255,255,139,128,72,4,0,0,137,198,129,230,255, 255,255,0,72,139,133,144,252,255,255,139,184,60,4,0,0,72,139,133,144,252,255,255,15,182,128,56,4,0,0,131,224,63,68,15,182,192,72,139,133,144,252,255,255,68,139,72,76,72,139,133,144,252,255,255,68,139,80,72,72,139,133,128,252,255,255,76,139,24,72,139, 133,120,252,255,255,72,139,24,72,139,133,112,252,255,255,76,139,32,72,139,133,144,252,255,255,68,139,168,148,4,0,0,72,139,133,144,252,255,255,15,182,128,64,4,0,0,131,224,1,68,15,182,240,72,139,133,144,252,255,255,68,139,120,68,72,141,133,160,252,255, 255,72,137,133,88,252,255,255,137,84,36,112,137,76,36,104,137,116,36,96,137,124,36,88,68,137,68,36,80,68,137,76,36,72,68,137,84,36,64,76,137,92,36,56,72,137,92,36,48,76,137,100,36,40,68,137,108,36,32,199,68,36,24,255,255,255,255,68,137,116,36,16,139, 133,156,252,255,255,137,68,36,8,199,4,36,0,0,0,0,65,185,8,0,0,0,69,137,248,72,141,13,161,109,3,0,186,32,3,0,0,190,0,0,0,0,72,139,189,88,252,255,255,184,0,0,0,0,232,214,20,3,0,72,139,189,144,252,255,255,72,141,149,160,252,255,255,72,139,181,144,252,255, 255,232,128,105,2,0,72,139,5,213,128,5,0,72,139,85,200,72,51,16,116,5,232,173,20,3,0,72,129,196,8,4,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,139,85,176,139,117,188,191, 0,0,0,0,232,0,126,0,0,137,69,252,72,139,85,176,139,117,188,191,4,0,0,0,232,236,125,0,0,137,69,248,72,139,85,176,139,117,188,191,6,0,0,0,232,216,125,0,0,137,69,244,131,125,248,0,116,7,199,69,248,1,0,0,0,72,139,85,200,139,69,248,137,130,144,4,0,0,72,139, 125,200,72,139,77,176,139,85,188,72,141,117,208,232,251,105,252,255,137,69,240,139,125,252,232,75,84,252,255,137,194,72,139,69,200,137,80,68,72,139,69,200,139,80,68,72,139,69,200,137,80,64,72,139,69,200,139,128,148,4,0,0,59,69,244,15,132,136,0,0,0,72, 139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,4,0,0,0,255,209,72,139,85,200,139,69,244,137,130,148,4,0,0,72,139,69,200,139,144,136,4,0,0,72,139,69,200,139,128,148,4,0,0,57,194,124,43,72,139,69,200,139,128,148,4,0,0,141,80,255, 72,139,69,200,137,144,136,4,0,0,72,139,69,200,139,144,136,4,0,0,72,139,69,200,137,144,140,4,0,0,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,2,0,0,0,255,209,235,99,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72, 139,125,200,186,5,0,0,0,255,209,72,139,69,200,72,139,72,56,139,85,240,131,194,6,72,139,69,200,72,139,112,48,72,139,125,200,255,209,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,1,0,0,0,255,209,72,139,117,200,72,139,69,200, 72,139,120,48,232,42,254,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243,15,16,69,228,243,15,44,192,137,69,252,131,125,252,0,121,7,199,69,252,0,0,0,0,72,139,69,232,139,128,148,4,0,0,59,69,252,127,15,72,139,69,232,139,128, 148,4,0,0,255,200,137,69,252,72,139,69,232,139,144,136,4,0,0,72,139,69,232,139,128,140,4,0,0,57,194,116,88,72,139,69,232,139,128,140,4,0,0,137,69,248,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,85,232,139,69,252,137,130,136, 4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,72,139,85,232,139,69,248,137,130,140,4,0,0,235,40,72,139,85,232,139,69,252,137,130,136,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139, 125,232,186,0,0,0,0,255,209,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,16,72,139,5,246,175,5,0,72,57,194,15,133,218,1,0,0,72,139,69,248,139,128,144,4,0,0,133,192,15,132,227,0,0,0,72,139,69,248,139,144,136,4,0,0,72,139,69, 248,139,128,140,4,0,0,57,194,15,132,199,0,0,0,72,139,69,248,199,128,160,4,0,0,1,0,0,0,72,139,69,248,139,128,140,4,0,0,243,15,42,192,72,139,69,248,243,15,17,128,168,4,0,0,72,139,69,248,72,5,160,4,0,0,72,131,192,16,199,0,1,0,0,0,72,139,69,248,72,5,160, 4,0,0,72,141,80,16,184,0,0,0,0,137,66,8,72,139,77,248,72,129,193,160,4,0,0,72,139,69,248,72,139,120,24,186,2,0,0,0,72,141,53,118,133,5,0,232,103,35,1,0,72,139,69,248,15,182,128,56,4,0,0,131,224,128,132,192,116,63,72,139,69,248,72,139,128,80,4,0,0,72, 139,64,8,72,133,192,116,43,72,139,77,248,72,129,193,160,4,0,0,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,186,2,0,0,0,72,141,53,37,133,5,0,232,126,56,1,0,72,139,69,248,139,144,136,4,0,0,72,139,69,248,137,144,140,4,0,0,72,139,69,248,199,128,160,4,0, 0,1,0,0,0,72,139,69,248,139,128,136,4,0,0,243,15,42,192,72,139,69,248,243,15,17,128,168,4,0,0,72,139,69,248,72,5,160,4,0,0,72,131,192,16,199,0,1,0,0,0,72,139,69,248,72,5,160,4,0,0,72,141,80,16,184,0,0,128,63,137,66,8,72,139,77,248,72,129,193,160,4,0, 0,72,139,69,248,72,139,120,24,186,2,0,0,0,72,141,53,155,132,5,0,232,140,34,1,0,72,139,69,248,15,182,128,56,4,0,0,131,224,128,132,192,15,132,168,0,0,0,72,139,69,248,72,139,128,80,4,0,0,72,139,64,8,72,133,192,15,132,144,0,0,0,72,139,77,248,72,129,193,160, 4,0,0,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,186,2,0,0,0,72,141,53,66,132,5,0,232,155,55,1,0,235,99,72,139,69,248,139,128,136,4,0,0,243,15,42,192,72,139,69,248,72,139,120,24,232,38,33,1,0,72,139,69,248,15,182,128,56,4,0,0,131,224,128,132,192, 116,54,72,139,69,248,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,34,72,139,69,248,139,128,136,4,0,0,243,15,42,192,72,139,69,248,72,139,128,80,4,0,0,72,139,120,8,232,191,54,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243, 15,16,69,228,243,15,44,192,137,69,252,131,125,252,0,121,7,199,69,252,0,0,0,0,72,139,69,232,139,128,148,4,0,0,59,69,252,127,15,72,139,69,232,139,128,148,4,0,0,255,200,137,69,252,72,139,69,232,72,139,16,72,139,5,88,173,5,0,72,57,194,15,133,40,2,0,0,72, 139,69,232,139,128,144,4,0,0,133,192,15,132,218,0,0,0,72,139,69,232,139,128,140,4,0,0,59,69,252,15,132,199,0,0,0,72,139,69,232,199,128,160,4,0,0,1,0,0,0,72,139,69,232,139,128,140,4,0,0,243,15,42,192,72,139,69,232,243,15,17,128,168,4,0,0,72,139,69,232, 72,5,160,4,0,0,72,131,192,16,199,0,1,0,0,0,72,139,69,232,72,5,160,4,0,0,72,141,80,16,184,0,0,0,0,137,66,8,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139,120,24,186,2,0,0,0,72,141,53,225,130,5,0,232,210,32,1,0,72,139,69,232,15,182,128,56,4,0, 0,131,224,128,132,192,116,63,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,43,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,186,2,0,0,0,72,141,53,144,130,5,0,232,233,53,1,0,72,139,69,232,139,144,136, 4,0,0,72,139,69,232,139,128,140,4,0,0,57,194,116,20,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,85,232,139,69,252,137,130,136,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,72, 139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,69,232,199,128,160,4,0,0,1,0,0,0,72,139,69,232,139,128,136,4,0,0,243,15,42,192,72,139,69,232,243,15,17,128,168,4,0,0,72,139,69,232,72,5,160,4,0,0,72,131,192,16,199,0,1,0,0,0,72,139,69, 232,72,5,160,4,0,0,72,141,80,16,184,0,0,128,63,137,66,8,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139,120,24,186,2,0,0,0,72,141,53,178,129,5,0,232,163,31,1,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,15,132,231,0,0,0,72,139,69,232, 72,139,128,80,4,0,0,72,139,64,8,72,133,192,15,132,207,0,0,0,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,186,2,0,0,0,72,141,53,89,129,5,0,232,178,52,1,0,233,159,0,0,0,72,139,69,232,139,144,136,4,0,0,72,139,69,232, 137,144,140,4,0,0,72,139,85,232,139,69,252,137,130,136,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,72,139,69,232,139,128,136,4,0,0,243,15,42,192,72,139,69,232,72,139,120,24,232,254,29,1,0,72,139,69, 232,15,182,128,56,4,0,0,131,224,128,132,192,116,54,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,34,72,139,69,232,139,128,136,4,0,0,243,15,42,192,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,232,151,51,1,0,201,195,85,72,137,229,72,131, 236,32,72,137,125,232,243,15,17,69,228,243,15,16,69,228,243,15,44,192,137,69,252,131,125,252,0,121,7,199,69,252,0,0,0,0,72,139,69,232,139,128,148,4,0,0,59,69,252,127,15,72,139,69,232,139,128,148,4,0,0,255,200,137,69,252,72,139,69,232,72,139,16,72,139, 5,48,170,5,0,72,57,194,15,133,84,2,0,0,72,139,69,232,139,128,144,4,0,0,133,192,15,132,240,0,0,0,72,139,69,232,139,128,140,4,0,0,59,69,252,15,132,221,0,0,0,72,139,69,232,15,182,128,59,4,0,0,131,224,4,132,192,15,132,199,0,0,0,72,139,69,232,199,128,160, 4,0,0,1,0,0,0,72,139,69,232,139,128,140,4,0,0,243,15,42,192,72,139,69,232,243,15,17,128,168,4,0,0,72,139,69,232,72,5,160,4,0,0,72,131,192,16,199,0,1,0,0,0,72,139,69,232,72,5,160,4,0,0,72,141,80,16,184,0,0,0,0,137,66,8,72,139,77,232,72,129,193,160,4,0, 0,72,139,69,232,72,139,120,24,186,2,0,0,0,72,141,53,163,127,5,0,232,148,29,1,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,63,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,43,72,139,77,232,72,129,193,160,4,0,0,72,139,69,232, 72,139,128,80,4,0,0,72,139,120,8,186,2,0,0,0,72,141,53,82,127,5,0,232,171,50,1,0,72,139,69,232,139,144,136,4,0,0,72,139,69,232,139,128,140,4,0,0,57,194,116,20,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,85,232,139,69,252,137, 130,136,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,69,232,15,182,128,59,4,0,0,131,224,4,132,192,15,132,133,1,0,0,72,139,69,232, 199,128,160,4,0,0,1,0,0,0,72,139,69,232,139,128,136,4,0,0,243,15,42,192,72,139,69,232,243,15,17,128,168,4,0,0,72,139,69,232,72,5,160,4,0,0,72,131,192,16,199,0,1,0,0,0,72,139,69,232,72,5,160,4,0,0,72,141,80,16,184,0,0,128,63,137,66,8,72,139,77,232,72, 129,193,160,4,0,0,72,139,69,232,72,139,120,24,186,2,0,0,0,72,141,53,94,126,5,0,232,79,28,1,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,15,132,249,0,0,0,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,15,132,225,0,0,0,72,139,77,232, 72,129,193,160,4,0,0,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,186,2,0,0,0,72,141,53,5,126,5,0,232,94,49,1,0,233,177,0,0,0,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,85,232,139,69,252,137,130,136,4,0,0,72,139,69,232,72, 139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,72,139,69,232,15,182,128,59,4,0,0,131,224,4,132,192,116,99,72,139,69,232,139,128,136,4,0,0,243,15,42,192,72,139,69,232,72,139,120,24,232,152,26,1,0,72,139,69,232,15,182,128,56,4, 0,0,131,224,128,132,192,116,54,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,34,72,139,69,232,139,128,136,4,0,0,243,15,42,192,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,232,49,48,1,0,201,195,85,72,137,229,83,72,131,236,56,72,137,125, 216,243,15,17,69,212,243,15,17,77,208,243,15,17,85,204,243,15,17,93,200,243,15,17,101,196,243,15,16,69,208,243,15,44,216,72,139,69,216,72,139,112,48,72,139,125,216,232,203,182,253,255,137,218,41,194,137,208,137,69,236,72,139,69,216,139,64,64,139,85,236, 137,193,137,208,193,250,31,247,249,243,15,42,192,72,139,125,216,232,9,249,255,255,72,131,196,56,91,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,137,77,232,68,137,69,228,68,137,77,224,131,125,24,0,116,44,243,15,42,69,224, 243,15,42,77,228,243,15,42,109,232,243,15,42,117,236,72,139,125,248,15,40,224,15,87,219,15,40,209,15,40,205,15,40,198,232,64,255,255,255,184,1,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,5,230,221,5,0,139,0,133,192,117,27,72,139,69, 248,15,182,128,64,4,0,0,131,224,1,132,192,116,9,72,139,125,248,232,21,246,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243,15,16,69,228,243,15,44,192,137,69,252,131,125,252,0,127,7,199,69,252,1,0,0,0,129,125,252,128,0,0, 0,126,7,199,69,252,128,0,0,0,72,139,69,232,139,128,148,4,0,0,59,69,252,15,132,134,0,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,4,0,0,0,255,209,72,139,85,232,139,69,252,137,130,148,4,0,0,72,139,69,232,139,144,136,4,0, 0,72,139,69,232,139,128,148,4,0,0,57,194,124,23,72,139,69,232,139,128,148,4,0,0,141,80,255,72,139,69,232,137,144,136,4,0,0,72,139,69,232,139,144,136,4,0,0,72,139,69,232,137,144,140,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125, 232,186,2,0,0,0,255,209,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,85,224,139,117,236,191,0,0,0,0,232,185,112,0,0,137,199,232,97,71,252,255,137,194,72,139,69,248,137,80,68,72,139,69,248,139,80,68, 72,139,69,248,137,80,64,72,139,117,248,72,139,125,248,232,86,88,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,113, 88,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,237,88,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248, 72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,73,89,252,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232, 119,81,252,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,71,82,252,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248, 232,185,83,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,109,84,252,255,201,195,85,72,137,229,72,131,236,32,72,137, 125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,10,85,252,255,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208, 72,139,85,248,137,193,131,225,1,15,182,130,64,4,0,0,131,224,254,9,200,136,130,64,4,0,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,199,128,144,4,0,0,1,0,0,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,199,128,144,4,0,0,0,0,0,0,201,195,85, 72,137,229,72,129,236,16,1,0,0,72,137,189,24,255,255,255,137,181,20,255,255,255,72,137,149,8,255,255,255,137,141,4,255,255,255,72,139,5,23,113,5,0,72,139,16,72,137,85,248,49,210,131,189,4,255,255,255,0,116,16,72,139,13,222,162,5,0,72,137,141,248,254, 255,255,235,14,72,139,5,198,162,5,0,72,137,133,248,254,255,255,72,139,189,248,254,255,255,232,247,34,1,0,72,137,133,48,255,255,255,199,133,32,255,255,255,0,0,252,255,199,133,36,255,255,255,255,255,255,255,199,133,40,255,255,255,255,255,255,255,199,133, 92,255,255,255,15,0,0,0,199,133,88,255,255,255,0,0,0,0,199,133,84,255,255,255,0,0,0,0,199,133,80,255,255,255,0,0,0,0,199,133,76,255,255,255,248,255,255,255,199,133,72,255,255,255,1,0,0,0,199,133,68,255,255,255,8,0,0,0,199,133,64,255,255,255,10,0,0,0, 199,133,60,255,255,255,50,0,0,0,199,133,56,255,255,255,250,0,0,0,131,189,20,255,255,255,15,15,133,28,3,0,0,72,139,133,8,255,255,255,139,0,131,248,1,15,133,10,3,0,0,72,139,133,8,255,255,255,72,131,192,16,139,0,131,248,1,15,133,244,2,0,0,72,139,133,8,255, 255,255,72,131,192,32,139,0,131,248,1,15,133,222,2,0,0,72,139,133,8,255,255,255,72,131,192,48,139,0,131,248,1,15,133,200,2,0,0,72,139,133,8,255,255,255,72,131,192,64,139,0,131,248,2,116,22,72,139,133,8,255,255,255,72,131,192,64,139,0,131,248,1,15,133, 160,2,0,0,72,139,133,8,255,255,255,72,131,192,80,139,0,131,248,2,116,22,72,139,133,8,255,255,255,72,131,192,80,139,0,131,248,1,15,133,120,2,0,0,72,139,133,8,255,255,255,72,131,192,96,139,0,131,248,2,116,22,72,139,133,8,255,255,255,72,131,192,96,139,0, 131,248,1,15,133,80,2,0,0,72,139,133,8,255,255,255,72,131,192,112,139,0,131,248,1,15,133,58,2,0,0,72,139,133,8,255,255,255,72,131,232,128,139,0,131,248,1,15,133,36,2,0,0,72,139,133,8,255,255,255,72,5,144,0,0,0,139,0,131,248,1,15,133,12,2,0,0,72,139,133, 8,255,255,255,72,5,160,0,0,0,139,0,131,248,1,15,133,244,1,0,0,72,139,133,8,255,255,255,72,5,176,0,0,0,139,0,131,248,1,15,133,220,1,0,0,72,139,133,8,255,255,255,72,5,192,0,0,0,139,0,131,248,1,15,133,196,1,0,0,72,139,133,8,255,255,255,72,5,208,0,0,0,139, 0,131,248,1,15,133,172,1,0,0,72,139,133,8,255,255,255,72,5,224,0,0,0,139,0,131,248,1,15,133,148,1,0,0,72,139,149,8,255,255,255,139,181,20,255,255,255,191,0,0,0,0,232,25,108,0,0,137,133,92,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191, 1,0,0,0,232,252,107,0,0,137,133,72,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,2,0,0,0,232,223,107,0,0,137,198,72,139,189,48,255,255,255,72,129,199,64,4,0,0,232,145,95,252,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,3, 0,0,0,232,179,107,0,0,137,133,68,255,255,255,72,139,189,48,255,255,255,72,139,149,8,255,255,255,190,4,0,0,0,232,176,69,252,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,7,0,0,0,232,126,107,0,0,137,133,80,255,255,255,72,139,149,8,255,255,255, 139,181,20,255,255,255,191,8,0,0,0,232,97,107,0,0,137,133,76,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,9,0,0,0,232,68,107,0,0,137,198,72,139,189,48,255,255,255,72,129,199,56,4,0,0,232,19,96,252,255,72,139,149,8,255,255,255,139,181, 20,255,255,255,191,10,0,0,0,232,24,107,0,0,137,133,64,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,11,0,0,0,232,251,106,0,0,137,133,32,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,12,0,0,0,232,222,106,0,0,137,133, 36,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,13,0,0,0,232,193,106,0,0,137,133,40,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,14,0,0,0,232,164,106,0,0,137,133,88,255,255,255,235,22,72,139,189,48,255,255,255,186, 0,0,0,0,190,4,0,0,0,232,161,68,252,255,72,141,21,190,230,255,255,72,139,133,48,255,255,255,72,137,80,56,72,139,149,48,255,255,255,15,182,130,56,4,0,0,131,200,128,136,130,56,4,0,0,72,139,149,48,255,255,255,15,182,130,56,4,0,0,131,200,64,136,130,56,4,0, 0,232,135,203,252,255,72,137,194,72,139,133,48,255,255,255,72,137,80,48,72,139,133,48,255,255,255,72,139,128,80,4,0,0,72,139,56,72,141,53,212,53,3,0,232,177,2,3,0,133,192,117,23,72,139,133,48,255,255,255,15,182,144,56,4,0,0,131,226,127,136,144,56,4,0, 0,72,139,133,48,255,255,255,72,139,128,88,4,0,0,72,139,56,72,141,53,156,53,3,0,232,121,2,3,0,133,192,117,23,72,139,133,48,255,255,255,15,182,144,56,4,0,0,131,226,191,136,144,56,4,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,63,60,1,117,76, 72,199,192,255,255,255,255,72,131,248,255,116,35,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53,125,32,3,0,232,2,0,3,0,233,210,0,0,0,72,139,189,48,255,255,255,72,131,199,80,72,141,53,97,32,3,0,232,147,2,0,0,233,182,0,0,0, 72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,63,60,2,117,70,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53,172,96,3,0,232,161,255,2,0,235,116,72,139,189,48,255,255, 255,72,131,199,80,72,141,53,147,96,3,0,232,53,2,0,0,235,91,72,139,149,48,255,255,255,15,182,130,56,4,0,0,131,224,192,136,130,56,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80, 72,141,53,47,129,5,0,232,68,255,2,0,235,23,72,139,189,48,255,255,255,72,131,199,80,72,141,53,22,129,5,0,232,216,1,0,0,131,189,68,255,255,255,0,127,10,199,133,68,255,255,255,1,0,0,0,129,189,68,255,255,255,128,0,0,0,126,10,199,133,68,255,255,255,128,0, 0,0,72,139,149,48,255,255,255,139,133,68,255,255,255,137,130,148,4,0,0,131,189,88,255,255,255,0,121,10,199,133,88,255,255,255,0,0,0,0,72,139,133,48,255,255,255,139,128,148,4,0,0,59,133,88,255,255,255,127,21,72,139,133,48,255,255,255,139,128,148,4,0,0, 255,200,137,133,88,255,255,255,72,139,133,48,255,255,255,15,182,128,64,4,0,0,131,224,1,132,192,116,21,72,139,149,48,255,255,255,139,133,88,255,255,255,137,130,136,4,0,0,235,17,72,139,133,48,255,255,255,199,128,136,4,0,0,0,0,0,0,72,139,133,48,255,255, 255,139,144,136,4,0,0,72,139,133,48,255,255,255,137,144,140,4,0,0,131,189,72,255,255,255,0,15,149,192,15,182,208,72,139,133,48,255,255,255,137,144,144,4,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,64,132,192,116,26,72,139,133,48,255,255, 255,72,139,176,88,4,0,0,72,139,189,48,255,255,255,232,253,31,1,0,72,139,149,48,255,255,255,139,133,80,255,255,255,137,66,72,72,139,149,48,255,255,255,139,133,76,255,255,255,137,66,76,131,189,64,255,255,255,3,127,10,199,133,64,255,255,255,4,0,0,0,72,139, 149,48,255,255,255,139,133,64,255,255,255,137,130,60,4,0,0,139,189,92,255,255,255,232,243,61,252,255,137,194,72,139,133,48,255,255,255,137,80,68,72,139,133,48,255,255,255,139,80,68,72,139,133,48,255,255,255,137,80,64,72,139,189,48,255,255,255,232,229, 63,252,255,72,139,189,48,255,255,255,72,141,181,32,255,255,255,232,155,69,252,255,72,139,189,48,255,255,255,72,141,53,140,113,5,0,232,201,12,1,0,72,139,133,48,255,255,255,72,139,21,113,105,5,0,72,139,77,248,72,51,10,116,5,232,73,253,2,0,201,195,85,72, 137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,47,253,2,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,72,139,85,232,139,117,244,72,139,125,248,185,0,0, 0,0,232,208,247,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,72,139,85,232,139,117,244,72,139,125,248,185,1,0,0,0,232,166,247,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15,182,128, 56,4,0,0,131,224,64,132,192,116,20,72,139,69,248,72,139,176,88,4,0,0,72,139,125,248,232,148,31,1,0,72,139,125,248,232,20,84,2,0,201,195,85,72,137,229,65,84,83,72,131,236,32,72,141,29,177,255,255,255,76,141,37,86,255,255,255,72,141,61,66,32,3,0,232,147, 227,0,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,192,4,0,0,72,137,218,76,137,230,184,0,0,0,0,232,200,209,0,0,72,137,5,43,154,5,0,72,141,53,28,234,255,255,72,139,61,29,154,5,0,232,8,223,0,0,72,141,53,147,239,255,255,72,139,61,10, 154,5,0,232,41,223,0,0,72,141,61,158,28,3,0,232,47,227,0,0,72,141,53,218,242,255,255,72,139,61,235,153,5,0,199,68,36,16,0,0,0,0,199,68,36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,137,216,0,0,72,141, 61,39,56,3,0,232,224,226,0,0,72,141,53,22,231,255,255,72,139,61,156,153,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,87,216,0,0,72,141,61,93,30,3,0,232,174,226,0,0,72,141,53,32,243,255,255,72,139,61,106,153,5,0,185,0,0,0,0,72,137,194,184, 0,0,0,0,232,43,216,0,0,72,141,61,105,13,3,0,232,130,226,0,0,72,141,53,91,232,255,255,72,139,61,62,153,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,249,215,0,0,72,141,61,163,55,3,0,232,80,226,0,0,72,141,53,205,243,255,255,72,139,61,12,153, 5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,199,215,0,0,72,141,61,93,44,3,0,232,30,226,0,0,72,141,53,240,243,255,255,72,139,61,218,152,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,149,215,0,0,72,141,61,49,44,3,0,232,236,225, 0,0,72,141,53,242,243,255,255,72,139,61,168,152,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,99,215,0,0,72,141,61,3,44,3,0,232,186,225,0,0,72,141,53,244,243,255,255,72,139,61,118,152,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0, 0,232,49,215,0,0,72,141,61,215,43,3,0,232,136,225,0,0,72,141,53,246,243,255,255,72,139,61,68,152,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,255,214,0,0,72,141,61,177,54,3,0,232,86,225,0,0,72,141,53,231,243,255,255,72,139,61,18,152,5,0, 65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,205,214,0,0,72,141,61,135,54,3,0,232,36,225,0,0,72,141,53,216,243,255,255,72,139,61,224,151,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,155,214,0,0,72,141,61,121,26,3,0,232,242,224,0, 0,72,141,53,201,243,255,255,72,139,61,174,151,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,105,214,0,0,72,141,61,43,54,3,0,232,192,224,0,0,72,141,53,203,243,255,255,72,139,61,124,151,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0, 0,232,55,214,0,0,72,141,61,229,42,3,0,232,142,224,0,0,72,141,53,205,243,255,255,72,139,61,74,151,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,5,214,0,0,72,141,61,184,42,3,0,232,92,224,0,0,72,141,53,4,241,255,255,72,139,61,24,151,5,0,65,184, 0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,211,213,0,0,72,141,61,141,42,3,0,232,42,224,0,0,72,141,53,186,243,255,255,72,139,61,230,150,5,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,167,213,0,0,72,141,61,111,42,3,0,232,254,223,0,0,72,141,53,118,243,255, 255,72,139,61,186,150,5,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,123,213,0,0,72,141,21,1,197,5,0,72,141,5,42,223,255,255,72,137,2,72,141,21,240,196,5,0,72,141,5,92,76,252,255,72,137,66,8,72,141,21,222,196,5,0,72,141,5,194,76,252,255,72,137,66,16,72,141, 5,204,196,5,0,72,199,64,24,0,0,0,0,72,141,21,189,196,5,0,72,141,5,246,76,252,255,72,137,66,32,72,141,21,171,196,5,0,72,141,5,3,77,252,255,72,137,66,40,72,141,21,153,196,5,0,72,141,5,138,239,255,255,72,137,66,48,72,139,61,39,150,5,0,72,141,53,128,196, 5,0,232,167,219,0,0,72,141,61,244,27,3,0,232,69,223,0,0,72,137,198,72,139,61,5,150,5,0,232,233,219,0,0,72,139,61,249,149,5,0,72,141,53,14,223,255,255,232,79,221,0,0,72,139,61,230,149,5,0,72,141,53,62,225,255,255,232,104,221,0,0,72,141,29,20,251,255,255, 76,141,37,227,250,255,255,72,141,61,8,66,3,0,232,246,222,0,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,192,4,0,0,72,137,218,76,137,230,184,0,0,0,0,232,43,205,0,0,72,137,5,150,149,5,0,72,141,53,127,229,255,255,72,139,61,136,149,5, 0,232,107,218,0,0,72,141,53,246,234,255,255,72,139,61,117,149,5,0,232,140,218,0,0,72,141,61,1,24,3,0,232,146,222,0,0,72,141,53,61,238,255,255,72,139,61,86,149,5,0,199,68,36,16,0,0,0,0,199,68,36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0, 185,1,0,0,0,72,137,194,184,0,0,0,0,232,236,211,0,0,72,141,61,138,51,3,0,232,67,222,0,0,72,141,53,121,226,255,255,72,139,61,7,149,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,186,211,0,0,72,141,61,192,25,3,0,232,17,222,0,0,72,141,53,131, 238,255,255,72,139,61,213,148,5,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,142,211,0,0,72,141,61,204,8,3,0,232,229,221,0,0,72,141,53,190,227,255,255,72,139,61,169,148,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,92,211,0,0,72,141,61,6,51,3, 0,232,179,221,0,0,72,141,53,48,239,255,255,72,139,61,119,148,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,42,211,0,0,72,141,61,192,39,3,0,232,129,221,0,0,72,141,53,83,239,255,255,72,139,61,69,148,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194, 184,0,0,0,0,232,248,210,0,0,72,141,61,148,39,3,0,232,79,221,0,0,72,141,53,85,239,255,255,72,139,61,19,148,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,198,210,0,0,72,141,61,102,39,3,0,232,29,221,0,0,72,141,53,87,239,255,255,72,139,61,225, 147,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,148,210,0,0,72,141,61,58,39,3,0,232,235,220,0,0,72,141,53,89,239,255,255,72,139,61,175,147,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,98,210,0,0,72,141,61,20,50,3,0,232,185, 220,0,0,72,141,53,74,239,255,255,72,139,61,125,147,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,48,210,0,0,72,141,61,234,49,3,0,232,135,220,0,0,72,141,53,59,239,255,255,72,139,61,75,147,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0, 0,232,254,209,0,0,72,141,61,220,21,3,0,232,85,220,0,0,72,141,53,44,239,255,255,72,139,61,25,147,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,204,209,0,0,72,141,61,142,49,3,0,232,35,220,0,0,72,141,53,46,239,255,255,72,139,61,231,146,5,0, 65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,154,209,0,0,72,141,61,72,38,3,0,232,241,219,0,0,72,141,53,48,239,255,255,72,139,61,181,146,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,104,209,0,0,72,141,61,27,38,3,0,232,191,219,0, 0,72,141,53,103,236,255,255,72,139,61,131,146,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,54,209,0,0,72,141,61,240,37,3,0,232,141,219,0,0,72,141,53,29,239,255,255,72,139,61,81,146,5,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,10,209,0,0,72, 141,61,210,37,3,0,232,97,219,0,0,72,141,53,217,238,255,255,72,139,61,37,146,5,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,222,208,0,0,72,139,61,12,146,5,0,72,141,53,93,192,5,0,232,132,215,0,0,72,141,61,209,23,3,0,232,34,219,0,0,72,137,198,72,139,61,234, 145,5,0,232,198,215,0,0,72,131,196,32,91,65,92,201,195,85,72,137,229,65,84,83,72,131,236,64,72,137,125,216,72,137,117,208,72,139,69,216,72,137,69,224,72,139,125,208,232,230,219,252,255,133,192,15,132,162,0,0,0,72,139,125,224,72,139,117,208,232,142,161, 253,255,137,194,72,139,69,224,139,64,64,141,52,2,72,139,69,224,139,128,140,4,0,0,141,72,50,199,69,204,31,133,235,81,139,69,204,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,242,41,194,137,208,137,69,236,72,139,125,224,72,139,117,208, 232,63,160,253,255,137,69,232,72,139,69,224,139,64,68,137,195,3,93,232,68,139,101,232,65,255,196,72,139,125,208,232,98,139,253,255,72,137,198,139,85,236,72,139,125,224,139,69,236,137,4,36,65,137,217,65,137,208,68,137,225,72,137,250,72,141,61,224,36,3, 0,184,0,0,0,0,232,198,110,1,0,72,131,196,64,91,65,92,201,195,85,72,137,229,72,131,196,128,72,137,125,216,72,137,117,208,72,139,125,216,72,139,117,208,232,205,159,253,255,137,69,252,72,139,125,216,72,139,117,208,232,195,160,253,255,137,69,248,72,139,69, 216,139,64,64,137,198,3,117,248,72,139,69,216,139,128,140,4,0,0,141,72,50,199,69,172,31,133,235,81,139,69,172,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,242,41,194,137,208,137,69,244,72,139,125,208,232,183,138,253,255,72,137,69,232, 72,139,69,216,68,139,128,72,4,0,0,72,139,69,216,139,64,64,3,69,248,141,80,3,72,139,69,216,139,64,68,137,193,3,77,252,139,117,248,131,238,2,139,125,252,76,139,85,232,72,139,69,216,72,137,68,36,8,68,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137, 214,72,141,61,154,13,3,0,184,0,0,0,0,232,232,109,1,0,72,139,69,216,139,144,68,4,0,0,72,139,69,216,139,64,68,137,193,3,77,252,139,117,252,255,198,139,125,244,68,139,85,244,76,139,93,232,72,139,69,216,72,137,68,36,8,137,20,36,65,137,249,65,137,200,68,137, 209,137,242,76,137,222,72,141,61,41,36,3,0,184,0,0,0,0,232,151,109,1,0,72,139,69,216,139,128,76,4,0,0,137,69,184,72,139,69,216,139,128,60,4,0,0,137,69,188,72,139,77,216,72,131,193,80,72,137,77,192,72,139,69,216,72,139,128,96,4,0,0,72,139,56,72,141,53, 240,38,3,0,232,205,243,2,0,133,192,116,20,72,139,69,216,72,139,128,96,4,0,0,72,139,0,72,137,69,200,235,11,72,141,5,112,6,3,0,72,137,69,200,72,139,69,216,139,64,76,137,193,3,77,248,72,139,69,216,139,64,72,137,194,3,85,252,72,139,117,232,72,139,69,216, 72,137,68,36,24,139,69,184,137,68,36,16,72,141,5,165,115,5,0,72,137,68,36,8,139,69,188,137,4,36,76,139,77,192,76,139,69,200,72,141,61,23,13,3,0,184,0,0,0,0,232,221,108,1,0,72,139,69,216,15,182,128,56,4,0,0,131,224,128,132,192,117,77,72,139,69,216,139, 64,64,3,69,248,141,120,3,68,139,69,252,65,131,192,7,72,139,69,216,139,64,64,3,69,248,141,72,2,139,85,252,72,139,117,232,199,68,36,8,0,0,0,0,72,139,69,216,72,137,4,36,65,137,249,72,141,61,56,13,3,0,184,0,0,0,0,232,126,108,1,0,72,139,69,216,15,182,128, 56,4,0,0,131,224,64,132,192,117,70,139,85,248,255,202,139,77,252,131,193,7,139,117,248,131,238,2,139,125,252,76,139,85,232,199,68,36,8,0,0,0,0,72,139,69,216,72,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,40,13,3,0,184,0,0,0,0, 232,38,108,1,0,201,195,85,72,137,229,72,131,236,80,72,137,125,216,72,137,117,208,72,139,125,216,72,139,117,208,232,52,157,253,255,137,69,252,72,139,125,216,72,139,117,208,232,42,158,253,255,137,69,248,72,139,69,216,139,64,64,137,198,3,117,248,72,139, 69,216,139,128,140,4,0,0,141,72,50,199,69,204,31,133,235,81,139,69,204,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,242,41,194,137,208,137,69,244,72,139,125,208,232,30,136,253,255,72,137,69,232,72,139,69,216,139,64,64,3,69,248,141, 80,3,72,139,69,216,139,64,68,3,69,252,139,77,248,131,233,2,139,117,252,72,139,125,216,76,139,85,232,137,20,36,65,137,193,65,137,200,137,241,72,137,250,76,137,214,72,141,61,171,12,3,0,184,0,0,0,0,232,97,107,1,0,72,139,69,216,139,64,68,137,194,3,85,252, 139,77,252,255,193,139,117,244,72,139,125,216,76,139,85,232,139,69,244,137,4,36,65,137,209,65,137,240,72,137,250,76,137,214,72,141,61,60,33,3,0,184,0,0,0,0,232,34,107,1,0,72,139,69,216,139,64,76,137,199,3,125,248,72,139,69,216,139,64,72,137,193,3,77, 252,72,139,85,216,72,139,117,232,65,137,248,72,141,61,144,4,3,0,184,0,0,0,0,232,238,106,1,0,72,139,69,216,15,182,128,56,4,0,0,131,224,128,132,192,117,84,72,139,69,216,139,64,64,3,69,248,141,80,3,139,77,252,131,193,7,72,139,69,216,139,64,64,3,69,248,131, 192,2,139,117,252,72,139,125,216,76,139,85,232,137,84,36,8,137,12,36,65,137,193,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,34,12,3,0,184,0,0,0,0,232,136,106,1,0,72,139,69,216,15,182,128,56,4,0,0,131,224,64,132,192,117,69,139,69,248,255,200, 139,85,252,131,194,7,139,77,248,131,233,2,139,117,252,72,139,125,216,76,139,85,232,137,68,36,8,137,20,36,65,137,201,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,243,11,3,0,184,0,0,0,0,232,49,106,1,0,201,195,85,72,137,229,72,131,236,32,72,137, 125,232,72,137,117,224,72,139,125,224,232,133,134,253,255,72,137,69,248,72,139,85,232,72,139,117,248,72,141,61,223,11,3,0,184,0,0,0,0,232,249,105,1,0,72,139,85,232,72,139,117,248,72,141,61,190,32,3,0,184,0,0,0,0,232,224,105,1,0,72,139,85,232,72,139,117, 248,72,141,61,73,63,3,0,184,0,0,0,0,232,199,105,1,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,30,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,137,29,3,0,184,0,0,0,0,232,151,105,1,0,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132, 192,117,30,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,95,32,3,0,184,0,0,0,0,232,103,105,1,0,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,139,125,224,232,187,133,253,255,72,137,69,248,72,139,69,232,72,139,128,96,4,0,0,72, 139,56,72,141,53,199,34,3,0,232,164,239,2,0,133,192,116,20,72,139,69,232,72,139,128,96,4,0,0,72,139,0,72,137,69,208,235,11,72,141,5,71,2,3,0,72,137,69,208,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,117,15,72,139,69,232,139,128,76,4,0,0,137,69, 220,235,7,199,69,220,255,0,0,0,72,139,69,232,139,144,60,4,0,0,72,139,77,232,72,131,193,80,72,139,117,232,72,139,125,248,72,139,69,208,72,137,68,36,8,139,69,220,137,4,36,72,141,5,87,111,5,0,73,137,193,65,137,208,72,137,242,72,137,254,72,141,61,176,10, 3,0,184,0,0,0,0,232,150,104,1,0,72,139,69,232,139,136,68,4,0,0,72,139,85,232,72,139,117,248,72,141,61,133,31,3,0,184,0,0,0,0,232,115,104,1,0,72,139,69,232,139,136,72,4,0,0,72,139,85,232,72,139,117,248,72,141,61,186,10,3,0,184,0,0,0,0,232,80,104,1,0,201, 195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72,139,125,232,72,139,117,224,232,91,153,253,255,137,69,252,72,139,125,232,72,139,117,224,232,81,154,253,255,137,69,248,72,139,125,224,232,129,132,253,255,72,137,69,240,139,69,220, 131,224,1,132,192,116,95,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,77,72,139,69,232,139,64,64,3,69,248,141,120,3,68,139,69,252,65,131,192,7,72,139,69,232,139,64,64,3,69,248,141,72,2,139,85,252,72,139,117,240,199,68,36,8,0,0,0,0,72,139, 69,232,72,137,4,36,65,137,249,72,141,61,63,10,3,0,184,0,0,0,0,232,165,103,1,0,139,69,220,131,224,1,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,93,27,3,0,184,0,0,0,0,232, 107,103,1,0,139,69,220,131,224,2,133,192,116,88,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,70,139,85,248,255,202,139,77,252,131,193,7,139,117,248,131,238,2,139,125,252,76,139,85,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,209, 65,137,200,137,241,137,250,76,137,214,72,141,61,219,9,3,0,184,0,0,0,0,232,9,103,1,0,139,69,220,131,224,2,133,192,117,48,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,116,30,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,199,29,3,0,184,0,0, 0,0,232,207,102,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224,232,35,131,253,255,72,137,69,248,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,116,62,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,138, 9,3,0,184,0,0,0,0,232,128,102,1,0,72,139,85,232,72,139,117,248,185,255,0,0,0,72,141,61,204,9,3,0,184,0,0,0,0,232,98,102,1,0,235,65,72,139,85,232,72,139,117,248,185,0,0,0,0,72,141,61,76,9,3,0,184,0,0,0,0,232,66,102,1,0,72,139,69,232,139,136,76,4,0,0,72, 139,85,232,72,139,117,248,72,141,61,137,9,3,0,184,0,0,0,0,232,31,102,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,131,125,236,0,117,25,72,139,117,240,72,139,125,248,72,141,21,97,246,255,255,232,1,109,1,0,233,130,0, 0,0,131,125,236,1,117,15,72,139,117,240,72,139,125,248,232,180,249,255,255,235,109,131,125,236,2,117,15,72,139,117,240,72,139,125,248,232,6,247,255,255,235,88,131,125,236,3,117,15,72,139,117,240,72,139,125,248,232,225,254,255,255,235,67,131,125,236,4, 117,15,72,139,117,240,72,139,125,248,232,106,251,255,255,235,46,131,125,236,5,117,15,72,139,117,240,72,139,125,248,232,31,252,255,255,235,25,131,125,236,5,126,19,139,85,236,131,234,6,72,139,117,240,72,139,125,248,232,27,253,255,255,201,195,85,72,137, 229,72,131,236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,72,139,69,232,72,137,69,248,72,139,125,248,72,139,117,224,232,95,150,253,255,137,194,72,139,69,216,137,16,72,139,125,248,72,139,117,224,232,80,151, 253,255,141,80,254,72,139,69,208,137,16,72,139,69,216,139,16,72,139,69,248,139,64,68,1,194,72,139,69,200,137,16,72,139,69,208,139,16,72,139,69,248,139,64,64,141,4,2,141,80,5,72,139,69,192,137,16,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129, 236,72,1,0,0,72,137,125,136,72,137,117,128,72,139,69,136,72,137,69,200,72,139,125,200,72,141,85,176,72,141,117,144,232,10,62,252,255,72,139,69,200,139,152,148,4,0,0,72,139,69,200,68,139,160,140,4,0,0,68,139,109,184,68,139,117,180,68,139,125,176,72,139, 69,200,139,128,60,4,0,0,137,133,32,255,255,255,72,139,125,200,72,129,199,56,4,0,0,232,17,72,252,255,137,133,36,255,255,255,72,139,69,200,139,64,76,137,133,40,255,255,255,72,139,69,200,139,64,72,137,133,44,255,255,255,72,139,69,160,72,137,133,48,255,255, 255,72,139,85,152,72,137,149,56,255,255,255,72,139,69,144,72,137,133,64,255,255,255,72,139,125,200,72,129,199,64,4,0,0,232,168,70,252,255,137,133,72,255,255,255,72,139,69,200,139,128,144,4,0,0,137,133,76,255,255,255,72,139,69,200,242,15,16,128,160,4, 0,0,242,15,90,192,243,15,90,192,242,15,17,133,80,255,255,255,72,139,69,200,242,15,16,128,152,4,0,0,242,15,90,192,243,15,90,192,242,15,17,133,88,255,255,255,72,139,69,200,139,64,64,137,133,96,255,255,255,72,139,69,200,139,64,68,137,133,100,255,255,255, 72,141,61,114,75,3,0,232,31,207,0,0,72,137,133,104,255,255,255,72,139,69,200,15,183,64,42,152,137,133,112,255,255,255,72,139,69,200,15,183,64,40,152,137,133,116,255,255,255,72,141,61,245,23,3,0,232,238,206,0,0,72,137,133,120,255,255,255,72,141,61,194, 8,3,0,232,219,206,0,0,72,139,125,128,137,156,36,128,0,0,0,68,137,100,36,120,68,137,108,36,112,68,137,116,36,104,68,137,124,36,96,139,149,32,255,255,255,137,84,36,88,139,149,36,255,255,255,137,84,36,80,139,149,40,255,255,255,137,84,36,72,139,149,44,255, 255,255,137,84,36,64,72,139,149,48,255,255,255,72,137,84,36,56,72,139,149,56,255,255,255,72,137,84,36,48,72,139,149,64,255,255,255,72,137,84,36,40,139,149,72,255,255,255,137,84,36,32,139,149,76,255,255,255,137,84,36,24,139,149,96,255,255,255,137,84,36, 16,139,149,100,255,255,255,137,84,36,8,72,139,149,104,255,255,255,72,137,20,36,242,15,16,141,80,255,255,255,242,15,16,133,88,255,255,255,68,139,141,112,255,255,255,68,139,133,116,255,255,255,72,139,141,120,255,255,255,72,137,194,72,141,53,216,25,3,0, 184,2,0,0,0,232,219,99,0,0,72,139,125,128,72,141,53,219,25,3,0,184,0,0,0,0,232,198,99,0,0,72,129,196,72,1,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,16,72,137,125,248,137,117,244,131,125,244,1,127,7,199,69,244,2,0,0,0,72,139,85,248, 139,69,244,137,66,64,72,139,69,248,139,144,140,4,0,0,72,139,69,248,139,64,64,107,192,100,131,232,100,57,194,126,43,72,139,69,248,139,64,64,107,192,100,141,80,156,72,139,69,248,137,144,136,4,0,0,72,139,69,248,139,144,136,4,0,0,72,139,69,248,137,144,140, 4,0,0,72,139,69,248,139,128,144,4,0,0,133,192,116,84,72,139,69,248,242,15,16,136,160,4,0,0,72,139,69,248,242,15,16,128,152,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,232,50,231,2,0,102,15,40,200,72,139,69,248,139,64,64,255,200,242,15,42,192,102, 15,40,209,242,15,94,208,102,15,40,194,72,139,69,248,242,15,17,128,168,4,0,0,235,65,72,139,69,248,242,15,16,136,160,4,0,0,72,139,69,248,242,15,16,128,152,4,0,0,242,15,92,200,72,139,69,248,139,64,64,255,200,242,15,42,192,102,15,40,209,242,15,94,208,102, 15,40,194,72,139,69,248,242,15,17,128,168,4,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,242,15,17,69,240,242,15,17,77,232,72,139,69,248,139,128,144,4,0,0,133,192,15,132,137,0,0,0,102,15,87,192,102,15,46,69,240,122,2,116,2,235,29,102,15,87, 192,102,15,46,69,232,122,2,116,2,235,14,72,184,0,0,0,0,0,0,240,63,72,137,69,232,102,15,87,201,242,15,16,69,232,102,15,46,193,119,2,235,37,102,15,87,192,102,15,46,69,240,115,2,235,63,242,15,16,69,232,242,15,16,13,111,118,3,0,242,15,89,193,242,15,17,69, 240,235,39,102,15,87,201,242,15,16,69,240,102,15,46,193,119,2,235,22,242,15,16,69,240,242,15,16,13,70,118,3,0,242,15,89,193,242,15,17,69,232,72,139,85,248,72,139,69,240,72,137,130,152,4,0,0,72,139,85,248,72,139,69,232,72,137,130,160,4,0,0,72,139,69,248, 242,15,16,136,152,4,0,0,72,139,69,248,242,15,16,128,160,4,0,0,102,15,46,200,119,2,235,22,72,139,69,248,15,182,144,67,4,0,0,131,202,16,136,144,67,4,0,0,235,20,72,139,69,248,15,182,144,67,4,0,0,131,226,239,136,144,67,4,0,0,72,139,69,248,139,128,144,4,0, 0,133,192,116,84,72,139,69,248,242,15,16,136,160,4,0,0,72,139,69,248,242,15,16,128,152,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,232,116,229,2,0,102,15,40,200,72,139,69,248,139,64,64,255,200,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194, 72,139,69,248,242,15,17,128,168,4,0,0,235,65,72,139,69,248,242,15,16,136,160,4,0,0,72,139,69,248,242,15,16,128,152,4,0,0,242,15,92,200,72,139,69,248,139,64,64,255,200,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,72,139,69,248,242,15,17,128, 168,4,0,0,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,24,4,0,0,72,137,189,120,252,255,255,72,137,181,112,252,255,255,72,139,5,215,79,5,0,72,139,16,72,137,85,200,49,210,72,139,133,120,252,255,255,72,137,133,152,252,255,255,72,139,189,152, 252,255,255,72,141,181,128,252,255,255,232,14,57,252,255,72,139,133,152,252,255,255,139,128,76,4,0,0,137,194,129,226,255,255,255,0,72,139,133,152,252,255,255,139,128,68,4,0,0,137,193,129,225,255,255,255,0,72,139,133,152,252,255,255,139,128,72,4,0,0,137, 198,129,230,255,255,255,0,72,139,133,152,252,255,255,139,184,60,4,0,0,72,139,133,152,252,255,255,15,182,128,56,4,0,0,131,224,63,68,15,182,192,72,139,133,152,252,255,255,68,139,72,76,72,139,133,152,252,255,255,68,139,80,72,72,139,133,144,252,255,255,76, 139,24,72,139,133,136,252,255,255,72,139,24,72,139,133,128,252,255,255,76,139,32,72,139,133,152,252,255,255,68,139,168,148,4,0,0,72,139,133,152,252,255,255,15,182,128,64,4,0,0,131,224,1,68,15,182,240,72,139,133,152,252,255,255,68,139,184,144,4,0,0,72, 139,133,152,252,255,255,242,15,16,128,160,4,0,0,72,139,133,152,252,255,255,242,15,16,144,152,4,0,0,72,139,133,152,252,255,255,139,64,64,137,133,108,252,255,255,72,139,133,152,252,255,255,139,64,68,137,133,92,252,255,255,72,141,133,160,252,255,255,72, 137,133,96,252,255,255,137,148,36,128,0,0,0,137,76,36,120,137,116,36,112,137,124,36,104,68,137,68,36,96,68,137,76,36,88,68,137,84,36,80,76,137,92,36,72,72,137,92,36,64,76,137,100,36,56,199,68,36,48,255,255,255,255,68,137,108,36,40,68,137,116,36,32,68, 137,124,36,24,199,68,36,16,0,0,0,0,199,68,36,8,2,0,0,0,139,149,108,252,255,255,137,20,36,102,15,40,200,102,15,40,194,65,185,8,0,0,0,68,139,133,92,252,255,255,72,141,13,198,59,3,0,186,32,3,0,0,190,0,0,0,0,72,139,189,96,252,255,255,184,2,0,0,0,232,227, 225,2,0,72,139,189,152,252,255,255,72,141,149,160,252,255,255,72,139,181,152,252,255,255,232,141,54,2,0,72,139,5,226,77,5,0,72,139,85,200,72,51,16,116,5,232,186,225,2,0,72,129,196,24,4,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,32, 72,137,125,232,72,139,69,232,139,128,144,4,0,0,133,192,116,76,72,139,69,232,242,15,16,128,152,4,0,0,242,15,17,69,224,72,139,69,232,242,15,16,136,168,4,0,0,72,139,69,232,139,128,140,4,0,0,242,15,42,192,242,15,89,200,242,15,16,5,161,114,3,0,242,15,89,193, 232,234,225,2,0,242,15,89,69,224,242,15,17,69,248,235,63,72,139,69,232,139,128,140,4,0,0,242,15,42,200,242,15,16,5,118,114,3,0,242,15,89,200,72,139,69,232,242,15,16,128,168,4,0,0,242,15,89,200,72,139,69,232,242,15,16,128,152,4,0,0,242,15,88,193,242,15, 17,69,248,242,15,16,77,248,242,15,16,5,88,114,3,0,102,15,46,193,119,2,235,26,242,15,16,69,248,102,15,46,5,75,114,3,0,119,2,235,9,184,0,0,0,0,72,137,69,248,242,15,90,69,248,72,139,69,232,72,139,120,24,232,234,241,0,0,72,139,69,232,15,182,128,56,4,0,0, 131,224,128,132,192,116,45,72,139,69,232,72,139,128,80,4,0,0,72,139,64,8,72,133,192,116,25,242,15,90,69,248,72,139,69,232,72,139,128,80,4,0,0,72,139,120,8,232,140,7,1,0,201,195,85,72,137,229,72,131,236,112,72,137,125,184,72,137,117,176,137,85,172,72, 137,77,160,72,139,85,160,139,117,172,191,0,0,0,0,232,230,73,0,0,137,69,252,72,139,85,160,139,117,172,191,1,0,0,0,232,210,73,0,0,137,69,248,72,139,85,160,139,117,172,191,2,0,0,0,232,103,73,0,0,243,15,90,192,242,15,17,69,224,72,139,85,160,139,117,172,191, 3,0,0,0,232,77,73,0,0,243,15,90,192,242,15,17,69,216,72,139,85,160,139,117,172,191,4,0,0,0,232,138,73,0,0,137,69,244,72,139,85,160,139,117,172,191,17,0,0,0,232,118,73,0,0,137,69,240,131,125,244,0,116,7,199,69,244,1,0,0,0,72,139,85,184,139,69,244,137, 130,144,4,0,0,131,125,240,0,116,16,72,139,69,184,199,128,148,4,0,0,1,0,0,0,235,14,72,139,69,184,199,128,148,4,0,0,0,0,0,0,72,139,125,184,72,139,77,160,139,85,172,72,141,117,192,232,117,53,252,255,137,69,236,139,125,252,232,197,31,252,255,137,194,72,139, 69,184,137,80,68,139,117,248,72,139,125,184,232,191,248,255,255,242,15,16,69,216,72,139,69,224,72,139,125,184,102,15,40,200,72,137,69,152,242,15,16,69,152,232,177,249,255,255,72,139,69,184,72,139,72,56,72,139,69,184,72,139,112,48,72,139,125,184,186,5, 0,0,0,255,209,72,139,69,184,72,139,72,56,139,85,236,131,194,6,72,139,69,184,72,139,112,48,72,139,125,184,255,209,72,139,69,184,72,139,72,56,72,139,69,184,72,139,112,48,72,139,125,184,186,1,0,0,0,255,209,72,139,117,184,72,139,69,184,72,139,120,48,232, 34,202,252,255,201,195,85,72,137,229,83,72,131,236,72,72,137,125,216,243,15,17,69,212,243,15,17,77,208,72,139,69,216,139,128,140,4,0,0,137,69,236,72,139,69,216,15,182,128,59,4,0,0,131,224,2,132,192,116,33,72,139,69,216,139,144,136,4,0,0,243,15,16,69, 208,243,15,44,192,41,194,72,139,69,216,137,144,136,4,0,0,235,34,72,139,69,216,139,144,136,4,0,0,243,15,16,69,208,243,15,44,192,107,192,100,41,194,72,139,69,216,137,144,136,4,0,0,72,139,69,216,139,144,136,4,0,0,72,139,69,216,137,144,140,4,0,0,72,139,69, 216,139,144,140,4,0,0,72,139,69,216,139,64,64,107,192,100,131,232,100,57,194,126,119,72,139,69,216,139,64,64,107,192,100,141,80,156,72,139,69,216,137,144,140,4,0,0,72,139,69,216,139,128,136,4,0,0,141,80,50,72,139,69,216,137,144,136,4,0,0,72,139,69,216, 139,176,136,4,0,0,72,139,69,216,139,136,136,4,0,0,199,69,188,31,133,235,81,139,69,188,247,233,193,250,5,137,200,193,248,31,137,211,41,195,137,93,200,107,69,200,100,137,202,41,194,137,85,200,137,242,43,85,200,72,139,69,216,137,144,136,4,0,0,72,139,69, 216,139,128,140,4,0,0,133,192,121,110,72,139,69,216,199,128,140,4,0,0,0,0,0,0,72,139,69,216,139,128,136,4,0,0,141,80,206,72,139,69,216,137,144,136,4,0,0,72,139,69,216,139,176,136,4,0,0,72,139,69,216,139,136,136,4,0,0,199,69,188,31,133,235,81,139,69,188, 247,233,193,250,5,137,200,193,248,31,137,211,41,195,137,93,204,107,69,204,100,137,202,41,194,137,85,204,137,242,43,85,204,72,139,69,216,137,144,136,4,0,0,72,139,69,216,139,128,140,4,0,0,59,69,236,116,36,72,139,69,216,72,139,72,56,72,139,69,216,72,139, 112,48,72,139,125,216,186,0,0,0,0,255,209,72,139,125,216,232,122,251,255,255,72,131,196,72,91,201,195,85,72,137,229,83,72,131,236,40,72,137,125,232,243,15,17,69,228,243,15,17,77,224,243,15,17,85,220,243,15,17,93,216,243,15,17,101,212,72,139,69,232,139, 128,148,4,0,0,133,192,117,66,72,139,69,232,139,88,64,72,139,69,232,72,139,112,48,72,139,125,232,232,180,138,253,255,141,4,3,243,15,42,192,243,15,92,69,224,243,15,90,200,242,15,16,5,41,109,3,0,242,15,89,193,242,15,44,208,72,139,69,232,137,144,140,4,0, 0,72,139,69,232,139,144,140,4,0,0,72,139,69,232,139,64,64,107,192,100,131,232,100,57,194,126,23,72,139,69,232,139,64,64,107,192,100,141,80,156,72,139,69,232,137,144,140,4,0,0,72,139,69,232,139,128,140,4,0,0,133,192,121,14,72,139,69,232,199,128,140,4, 0,0,0,0,0,0,72,139,69,232,139,144,140,4,0,0,72,139,69,232,137,144,136,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,72,139,125,232,232,119,250,255,255,243,15,16,69,224,243,15,44,208,243,15,16,69,228,243, 15,44,200,72,141,53,22,253,255,255,72,139,125,232,72,139,69,232,72,139,64,48,65,137,209,65,137,200,185,0,0,0,0,72,137,242,72,137,254,72,137,199,232,54,115,253,255,72,131,196,40,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137, 85,220,137,77,216,68,137,69,212,68,137,77,208,72,139,69,232,72,137,69,248,131,125,24,0,116,92,243,15,42,69,208,243,15,42,77,212,243,15,42,109,216,243,15,42,117,220,72,139,125,248,15,40,224,15,87,219,15,40,209,15,40,205,15,40,198,232,103,254,255,255,131, 125,212,0,116,22,72,139,69,248,15,182,144,59,4,0,0,131,202,2,136,144,59,4,0,0,235,20,72,139,69,248,15,182,144,59,4,0,0,131,226,253,136,144,59,4,0,0,184,1,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,15,182,128, 67,4,0,0,131,224,16,132,192,116,94,243,15,90,69,228,72,139,69,232,242,15,16,136,152,4,0,0,102,15,46,193,119,2,235,21,72,139,69,232,242,15,16,128,152,4,0,0,242,15,90,192,243,15,17,69,228,243,15,90,69,228,72,139,69,232,242,15,16,136,160,4,0,0,102,15,46, 200,119,2,235,115,72,139,69,232,242,15,16,128,160,4,0,0,242,15,90,192,243,15,17,69,228,235,92,243,15,90,69,228,72,139,69,232,242,15,16,136,160,4,0,0,102,15,46,193,119,2,235,21,72,139,69,232,242,15,16,128,160,4,0,0,242,15,90,192,243,15,17,69,228,243,15, 90,69,228,72,139,69,232,242,15,16,136,152,4,0,0,102,15,46,200,119,2,235,21,72,139,69,232,242,15,16,128,152,4,0,0,242,15,90,192,243,15,17,69,228,72,139,69,232,139,128,144,4,0,0,133,192,116,69,243,15,90,77,228,72,139,69,232,242,15,16,128,152,4,0,0,102, 15,40,209,242,15,94,208,102,15,40,194,232,94,219,2,0,102,15,40,200,72,139,69,232,242,15,16,128,168,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,69,248,235,50,243,15,90,77,228,72,139,69,232,242,15,16,128,152,4,0,0,242,15,92,200,72,139,69, 232,242,15,16,128,168,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,69,248,242,15,16,77,248,242,15,16,5,78,106,3,0,242,15,89,200,242,15,16,5,42,107,3,0,242,15,88,193,242,15,44,208,72,139,69,232,137,144,140,4,0,0,72,139,69,232,139,144,140, 4,0,0,72,139,69,232,137,144,136,4,0,0,72,139,69,232,72,139,72,56,72,139,69,232,72,139,112,48,72,139,125,232,186,0,0,0,0,255,209,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,72,139,125,248,232,35,254,255,255,72, 139,69,248,15,182,128,59,4,0,0,131,224,4,132,192,116,9,72,139,125,248,232,171,247,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,85,224,139,117,236,191,0,0,0,0,232,182,66,0,0,137,199,232,94,25, 252,255,137,194,72,139,69,248,137,80,68,131,125,236,1,126,28,72,139,85,224,139,117,236,191,1,0,0,0,232,143,66,0,0,137,198,72,139,125,248,232,66,242,255,255,72,139,117,248,72,139,125,248,232,63,42,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125, 248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,90,42,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72, 139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,214,42,252,255,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,85,224,139,117,236,191,1,0,0,0,232,142,65,0,0,243,15,90,192,242,15,17,69, 216,72,139,85,224,139,117,236,191,0,0,0,0,232,116,65,0,0,243,15,90,192,72,139,125,248,242,15,16,77,216,232,136,242,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77, 236,72,139,85,240,72,139,125,248,73,137,192,232,220,42,252,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,10,35,252,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117, 240,72,139,117,248,72,139,85,240,72,139,125,248,232,218,35,252,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,76,37,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137, 117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,0,38,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224, 139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,157,38,252,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,199,128,144,4,0,0,1,0,0,0,72,139,69,248,242,15,16,136,160,4,0,0,72,139,69,248,242,15,16,128,152,4,0,0,72,139,125,248, 232,70,241,255,255,201,195,85,72,137,229,72,137,125,248,72,139,69,248,199,128,144,4,0,0,0,0,0,0,72,139,69,248,242,15,16,136,160,4,0,0,72,139,69,248,242,15,16,128,152,4,0,0,242,15,92,200,72,139,69,248,139,64,64,255,200,242,15,42,192,102,15,40,209,242, 15,94,208,102,15,40,194,72,139,69,248,242,15,17,128,168,4,0,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,72,139,85,248,137,193,131,225,1,15,182,130,64,4,0,0,131,224,254,9,200,136,130,64,4, 0,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,15,182,208,72,139,69,248,137,144,148,4,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,5,178,171,5,0,139,0,133,192,117,54,72,139, 69,248,15,182,128,64,4,0,0,131,224,1,132,192,116,36,72,139,69,248,72,139,72,56,72,139,69,248,72,139,112,48,72,139,125,248,186,0,0,0,0,255,209,72,139,125,248,232,52,244,255,255,201,195,85,72,137,229,72,129,236,32,1,0,0,72,137,189,8,255,255,255,137,181, 4,255,255,255,72,137,149,248,254,255,255,72,139,5,206,65,5,0,72,139,16,72,137,85,248,49,210,72,139,61,166,115,5,0,232,213,243,0,0,72,137,133,48,255,255,255,199,133,16,255,255,255,0,0,252,255,199,133,20,255,255,255,255,255,255,255,199,133,24,255,255,255, 255,255,255,255,199,133,92,255,255,255,15,0,0,0,199,133,88,255,255,255,128,0,0,0,199,133,84,255,255,255,0,0,0,0,199,133,80,255,255,255,0,0,0,0,199,133,76,255,255,255,0,0,0,0,199,133,72,255,255,255,247,255,255,255,199,133,68,255,255,255,10,0,0,0,199,133, 64,255,255,255,0,0,0,0,199,133,60,255,255,255,1,0,0,0,184,0,0,0,0,72,137,133,40,255,255,255,72,184,0,0,0,0,0,192,95,64,72,137,133,32,255,255,255,72,139,189,48,255,255,255,72,129,199,64,4,0,0,190,0,0,0,0,232,63,50,252,255,72,139,189,48,255,255,255,72, 129,199,56,4,0,0,190,0,0,0,0,232,68,51,252,255,131,189,4,255,255,255,17,116,13,131,189,4,255,255,255,18,15,133,146,3,0,0,72,139,133,248,254,255,255,139,0,131,248,1,15,133,128,3,0,0,72,139,133,248,254,255,255,72,131,192,16,139,0,131,248,1,15,133,106,3, 0,0,72,139,133,248,254,255,255,72,131,192,32,139,0,131,248,1,15,133,84,3,0,0,72,139,133,248,254,255,255,72,131,192,48,139,0,131,248,1,15,133,62,3,0,0,72,139,133,248,254,255,255,72,131,192,64,139,0,131,248,1,15,133,40,3,0,0,72,139,133,248,254,255,255, 72,131,192,80,139,0,131,248,1,15,133,18,3,0,0,72,139,133,248,254,255,255,72,131,192,96,139,0,131,248,2,116,22,72,139,133,248,254,255,255,72,131,192,96,139,0,131,248,1,15,133,234,2,0,0,72,139,133,248,254,255,255,72,131,192,112,139,0,131,248,2,116,22,72, 139,133,248,254,255,255,72,131,192,112,139,0,131,248,1,15,133,194,2,0,0,72,139,133,248,254,255,255,72,131,232,128,139,0,131,248,2,116,22,72,139,133,248,254,255,255,72,131,232,128,139,0,131,248,1,15,133,154,2,0,0,72,139,133,248,254,255,255,72,5,144,0, 0,0,139,0,131,248,1,15,133,130,2,0,0,72,139,133,248,254,255,255,72,5,160,0,0,0,139,0,131,248,1,15,133,106,2,0,0,72,139,133,248,254,255,255,72,5,176,0,0,0,139,0,131,248,1,15,133,82,2,0,0,72,139,133,248,254,255,255,72,5,192,0,0,0,139,0,131,248,1,15,133, 58,2,0,0,72,139,133,248,254,255,255,72,5,208,0,0,0,139,0,131,248,1,15,133,34,2,0,0,72,139,133,248,254,255,255,72,5,224,0,0,0,139,0,131,248,1,15,133,10,2,0,0,72,139,133,248,254,255,255,72,5,240,0,0,0,139,0,131,248,1,15,133,242,1,0,0,72,139,133,248,254, 255,255,72,5,0,1,0,0,139,0,131,248,1,15,133,218,1,0,0,72,139,149,248,254,255,255,139,181,4,255,255,255,191,0,0,0,0,232,123,60,0,0,137,133,92,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,1,0,0,0,232,94,60,0,0,137,133,88,255,255,255, 72,139,149,248,254,255,255,139,181,4,255,255,255,191,2,0,0,0,232,234,59,0,0,243,15,90,192,242,15,17,133,40,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,3,0,0,0,232,199,59,0,0,243,15,90,192,242,15,17,133,32,255,255,255,72,139,149,248, 254,255,255,139,181,4,255,255,255,191,4,0,0,0,232,251,59,0,0,137,133,84,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,5,0,0,0,232,222,59,0,0,137,198,72,139,189,48,255,255,255,72,129,199,64,4,0,0,232,144,47,252,255,72,139,189,48,255, 255,255,72,139,149,248,254,255,255,190,6,0,0,0,232,204,21,252,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,9,0,0,0,232,154,59,0,0,137,133,76,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,10,0,0,0,232,125,59,0,0,137,133, 72,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,11,0,0,0,232,96,59,0,0,137,198,72,139,189,48,255,255,255,72,129,199,56,4,0,0,232,47,48,252,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,12,0,0,0,232,52,59,0,0,137,133,68, 255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,13,0,0,0,232,23,59,0,0,137,133,16,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,14,0,0,0,232,250,58,0,0,137,133,20,255,255,255,72,139,149,248,254,255,255,139,181,4,255, 255,255,191,15,0,0,0,232,221,58,0,0,137,133,24,255,255,255,72,139,149,248,254,255,255,139,181,4,255,255,255,191,16,0,0,0,232,192,58,0,0,137,133,64,255,255,255,235,22,72,139,189,48,255,255,255,186,0,0,0,0,190,6,0,0,0,232,189,20,252,255,131,189,4,255,255, 255,18,117,49,72,139,133,248,254,255,255,72,5,16,1,0,0,139,0,131,248,1,117,29,72,139,149,248,254,255,255,139,181,4,255,255,255,191,17,0,0,0,232,110,58,0,0,137,133,60,255,255,255,72,141,21,105,230,255,255,72,139,133,48,255,255,255,72,137,80,56,72,139, 149,48,255,255,255,15,182,130,56,4,0,0,131,200,128,136,130,56,4,0,0,72,139,149,48,255,255,255,15,182,130,56,4,0,0,131,200,64,136,130,56,4,0,0,232,105,155,252,255,72,137,194,72,139,133,48,255,255,255,72,137,80,48,72,139,133,48,255,255,255,15,182,128,64, 4,0,0,131,224,1,132,192,116,21,72,139,149,48,255,255,255,139,133,64,255,255,255,137,130,140,4,0,0,235,17,72,139,133,48,255,255,255,199,128,140,4,0,0,0,0,0,0,72,139,133,48,255,255,255,139,144,140,4,0,0,72,139,133,48,255,255,255,137,144,136,4,0,0,131,189, 84,255,255,255,0,116,10,199,133,84,255,255,255,1,0,0,0,72,139,149,48,255,255,255,139,133,84,255,255,255,137,130,144,4,0,0,131,189,60,255,255,255,0,116,10,199,133,60,255,255,255,1,0,0,0,72,139,149,48,255,255,255,139,133,60,255,255,255,137,130,148,4,0, 0,72,139,133,48,255,255,255,72,139,128,80,4,0,0,72,139,56,72,141,53,21,5,3,0,232,242,209,2,0,133,192,117,23,72,139,133,48,255,255,255,15,182,144,56,4,0,0,131,226,127,136,144,56,4,0,0,72,139,133,48,255,255,255,72,139,128,88,4,0,0,72,139,56,72,141,53,221, 4,3,0,232,186,209,2,0,133,192,117,23,72,139,133,48,255,255,255,15,182,144,56,4,0,0,131,226,191,136,144,56,4,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,63,60,1,117,76,72,199,192,255,255,255,255,72,131,248,255,116,35,72,199,194,255,255,255, 255,72,139,189,48,255,255,255,72,131,199,80,72,141,53,190,239,2,0,232,67,207,2,0,233,210,0,0,0,72,139,189,48,255,255,255,72,131,199,80,72,141,53,162,239,2,0,232,215,1,0,0,233,182,0,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,63,60,2,117, 70,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53,237,47,3,0,232,226,206,2,0,235,116,72,139,189,48,255,255,255,72,131,199,80,72,141,53,212,47,3,0,232,121,1,0,0,235,91,72,139, 149,48,255,255,255,15,182,130,56,4,0,0,131,224,192,136,130,56,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53,112,80,5,0,232,133,206,2,0,235,23,72,139,189,48,255,255, 255,72,131,199,80,72,141,53,87,80,5,0,232,28,1,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,64,132,192,116,26,72,139,133,48,255,255,255,72,139,176,88,4,0,0,72,139,189,48,255,255,255,232,38,240,0,0,72,139,149,48,255,255,255,139,133,76,255, 255,255,137,66,72,72,139,149,48,255,255,255,139,133,72,255,255,255,137,66,76,131,189,68,255,255,255,3,127,10,199,133,68,255,255,255,4,0,0,0,72,139,149,48,255,255,255,139,133,68,255,255,255,137,130,60,4,0,0,139,189,92,255,255,255,232,28,14,252,255,137, 194,72,139,133,48,255,255,255,137,80,68,139,181,88,255,255,255,72,139,189,48,255,255,255,232,13,231,255,255,242,15,16,133,32,255,255,255,72,139,133,40,255,255,255,72,139,189,48,255,255,255,102,15,40,200,72,137,133,232,254,255,255,242,15,16,133,232,254, 255,255,232,240,231,255,255,72,139,189,48,255,255,255,72,141,181,16,255,255,255,232,164,21,252,255,72,139,189,48,255,255,255,232,207,15,252,255,72,139,189,48,255,255,255,72,141,53,41,65,5,0,232,198,220,0,0,72,139,133,48,255,255,255,72,139,21,110,57,5, 0,72,139,77,248,72,51,10,116,5,232,70,205,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,44,205,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15, 182,128,56,4,0,0,131,224,64,132,192,116,20,72,139,69,248,72,139,176,88,4,0,0,72,139,125,248,232,229,239,0,0,72,139,125,248,232,101,36,2,0,201,195,85,72,137,229,65,84,83,72,131,236,32,72,141,29,177,255,255,255,76,141,37,238,246,255,255,72,141,61,55,48, 3,0,232,228,179,0,0,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,176,4,0,0,72,137,218,76,137,230,184,0,0,0,0,232,25,162,0,0,72,137,5,140,106,5,0,72,141,61,50,240,2,0,232,166,179,0,0,72,137,198,72,141,61,154,246,255,255,185,0,0,0,0,186, 10,0,0,0,184,0,0,0,0,232,23,167,0,0,72,141,53,177,234,255,255,72,139,61,84,106,5,0,232,47,175,0,0,72,141,53,185,242,255,255,72,139,61,65,106,5,0,232,80,175,0,0,72,141,61,197,236,2,0,232,86,179,0,0,72,141,53,12,239,255,255,72,139,61,34,106,5,0,199,68, 36,16,0,0,0,0,199,68,36,8,1,0,0,0,199,4,36,1,0,0,0,65,185,1,0,0,0,65,184,1,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,176,168,0,0,72,141,61,144,243,2,0,232,7,179,0,0,72,141,53,232,236,255,255,72,139,61,211,105,5,0,65,185,0,0,0,0,65,184,1,0,0,0,185, 1,0,0,0,72,137,194,184,0,0,0,0,232,120,168,0,0,72,141,61,22,8,3,0,232,207,178,0,0,72,141,53,31,235,255,255,72,139,61,155,105,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,70,168,0,0,72,141,61,76,238,2,0,232,157,178,0,0,72,141,53,67,245,255, 255,72,139,61,105,105,5,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,26,168,0,0,72,141,61,88,221,2,0,232,113,178,0,0,72,141,53,247,239,255,255,72,139,61,61,105,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,232,167,0,0,72,141,61,146,7,3,0,232, 63,178,0,0,72,141,53,191,241,255,255,72,139,61,11,105,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,182,167,0,0,72,141,61,76,252,2,0,232,13,178,0,0,72,141,53,246,241,255,255,72,139,61,217,104,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184, 0,0,0,0,232,132,167,0,0,72,141,61,32,252,2,0,232,219,177,0,0,72,141,53,248,241,255,255,72,139,61,167,104,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,82,167,0,0,72,141,61,189,254,2,0,232,169,177,0,0,72,141,53,250,241,255,255,72,139,61,117, 104,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,32,167,0,0,72,141,61,192,251,2,0,232,119,177,0,0,72,141,53,30,242,255,255,72,139,61,67,104,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,238,166,0,0,72,141,61,148,251,2,0,232, 69,177,0,0,72,141,53,32,242,255,255,72,139,61,17,104,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,188,166,0,0,72,141,61,110,6,3,0,232,19,177,0,0,72,141,53,17,242,255,255,72,139,61,223,103,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0, 0,0,232,138,166,0,0,72,141,61,68,6,3,0,232,225,176,0,0,72,141,53,2,242,255,255,72,139,61,173,103,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,88,166,0,0,72,141,61,54,234,2,0,232,175,176,0,0,72,141,53,243,241,255,255,72,139,61,123,103,5,0, 65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,38,166,0,0,72,141,61,232,5,3,0,232,125,176,0,0,72,141,53,245,241,255,255,72,139,61,73,103,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,244,165,0,0,72,141,61,107,253,2,0,232,75,176,0, 0,72,141,53,247,241,255,255,72,139,61,23,103,5,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,200,165,0,0,72,141,61,67,253,2,0,232,31,176,0,0,72,141,53,8,242,255,255,72,139,61,235,102,5,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,156,165,0,0,72,141,61,74,250, 2,0,232,243,175,0,0,72,141,53,53,242,255,255,72,139,61,191,102,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,106,165,0,0,72,141,61,238,252,2,0,232,193,175,0,0,72,141,53,60,242,255,255,72,139,61,141,102,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137, 194,184,0,0,0,0,232,56,165,0,0,72,141,21,254,148,5,0,72,141,5,176,222,255,255,72,137,2,72,141,21,237,148,5,0,72,141,5,25,28,252,255,72,137,66,8,72,141,21,219,148,5,0,72,141,5,127,28,252,255,72,137,66,16,72,141,5,201,148,5,0,72,199,64,24,0,0,0,0,72,141, 21,186,148,5,0,72,141,5,179,28,252,255,72,137,66,32,72,141,21,168,148,5,0,72,141,5,192,28,252,255,72,137,66,40,72,141,21,150,148,5,0,72,141,5,35,236,255,255,72,137,66,48,72,139,61,244,101,5,0,72,141,53,125,148,5,0,232,100,171,0,0,72,141,61,142,235,2, 0,232,2,175,0,0,72,137,198,72,139,61,210,101,5,0,232,166,171,0,0,72,139,61,198,101,5,0,72,141,53,139,222,255,255,232,12,173,0,0,72,139,61,179,101,5,0,72,141,53,196,227,255,255,232,37,173,0,0,72,131,196,32,91,65,92,201,195,85,72,137,229,83,72,131,236, 72,72,137,125,200,72,137,117,192,72,139,125,192,232,170,175,252,255,133,192,15,132,179,0,0,0,72,139,69,200,139,64,68,141,80,3,133,192,15,72,194,193,248,2,137,69,236,72,139,125,200,72,139,117,192,232,61,117,253,255,255,200,137,69,232,72,139,125,200,72, 139,117,192,232,37,116,253,255,137,69,228,139,69,236,3,69,228,255,192,137,69,224,72,139,69,200,139,64,68,3,69,228,43,69,236,255,200,137,69,220,72,139,69,200,139,128,136,4,0,0,141,72,1,72,139,69,200,139,144,144,4,0,0,184,40,0,0,0,41,208,15,175,193,137, 195,3,93,232,72,139,125,192,232,24,95,253,255,72,137,199,139,69,220,139,85,232,139,77,224,72,139,117,200,137,28,36,65,137,193,65,137,208,72,137,242,72,137,254,72,141,61,187,33,3,0,184,0,0,0,0,232,121,66,1,0,72,131,196,72,91,201,195,85,72,137,229,72,131, 236,64,72,137,125,216,72,137,117,208,72,139,125,208,232,200,94,253,255,72,137,69,224,72,139,125,208,232,194,174,252,255,133,192,15,132,111,1,0,0,72,139,125,216,72,139,117,208,232,100,115,253,255,137,69,252,72,139,125,216,72,139,117,208,232,90,116,253, 255,137,69,248,72,139,69,216,139,128,140,4,0,0,133,192,15,132,200,0,0,0,72,139,69,216,139,128,140,4,0,0,72,141,21,33,68,5,0,72,152,139,4,130,137,69,244,72,139,69,216,139,128,136,4,0,0,141,72,1,72,139,69,216,139,144,140,4,0,0,184,41,0,0,0,41,208,15,175, 193,137,193,3,77,248,72,139,69,216,139,128,136,4,0,0,141,80,1,137,208,193,232,31,1,208,209,248,137,202,41,194,137,208,137,69,240,72,139,69,216,139,64,68,3,69,252,141,80,1,139,77,240,139,117,252,72,139,125,216,76,139,85,224,139,69,240,137,4,36,65,137, 209,65,137,200,137,241,72,137,250,76,137,214,72,141,61,222,32,3,0,184,0,0,0,0,232,116,65,1,0,139,69,244,72,141,21,106,63,5,0,72,152,139,12,130,72,139,85,216,72,139,117,224,72,141,61,222,32,3,0,184,0,0,0,0,232,76,65,1,0,235,117,72,139,69,216,139,80,68, 137,208,193,232,31,1,208,209,248,3,69,252,137,69,236,72,139,69,216,139,136,72,4,0,0,72,139,85,216,72,139,117,224,72,141,61,163,32,3,0,184,0,0,0,0,232,17,65,1,0,139,85,248,131,194,20,139,77,248,131,193,20,139,69,236,139,117,236,72,139,125,216,76,139,85, 224,137,20,36,65,137,193,65,137,200,137,241,72,137,250,76,137,214,72,141,61,63,32,3,0,184,0,0,0,0,232,213,64,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,137,69,248,72,139,69,248,15,182,128,176,4,0,0,131,224, 1,132,192,116,33,72,139,117,224,72,139,125,248,232,78,253,255,255,72,139,85,248,15,182,130,176,4,0,0,131,224,254,136,130,176,4,0,0,72,139,69,248,15,182,128,176,4,0,0,131,224,2,132,192,116,33,72,139,117,224,72,139,125,248,232,247,253,255,255,72,139,85, 248,15,182,130,176,4,0,0,131,224,253,136,130,176,4,0,0,201,195,85,72,137,229,83,72,129,236,168,0,0,0,72,137,125,168,72,137,117,160,72,139,125,160,232,165,92,253,255,72,137,69,176,72,139,125,168,72,139,117,160,232,82,113,253,255,137,69,236,72,139,125, 168,72,139,117,160,232,72,114,253,255,137,69,232,72,139,69,168,139,64,68,141,80,3,133,192,15,72,194,193,248,2,137,69,228,72,139,69,168,139,80,68,137,208,193,232,31,1,208,209,248,3,69,236,137,69,224,139,69,228,3,69,236,255,192,137,69,220,72,139,69,168, 139,64,68,3,69,236,43,69,228,137,69,216,72,139,69,168,139,64,68,3,69,236,131,192,4,137,69,212,72,139,69,168,139,128,136,4,0,0,255,192,137,69,208,199,69,204,41,0,0,0,139,85,208,137,208,193,232,31,1,208,209,248,137,69,200,139,85,200,139,69,232,41,208,137, 69,184,72,139,69,168,68,139,128,72,4,0,0,72,139,69,168,139,64,64,3,69,232,68,141,72,2,72,139,69,168,139,64,68,3,69,236,141,80,1,139,77,232,131,233,2,139,117,236,255,206,72,139,125,176,72,139,69,168,72,137,68,36,8,68,137,4,36,65,137,208,137,242,72,137, 254,72,141,61,227,222,2,0,184,0,0,0,0,232,49,63,1,0,199,69,188,1,0,0,0,233,45,1,0,0,139,69,188,72,141,21,59,65,5,0,72,152,139,4,130,137,69,196,139,85,188,139,69,204,41,208,15,175,69,208,3,69,184,137,69,192,139,69,196,72,141,21,247,60,5,0,72,152,139,20, 130,72,139,69,168,139,136,136,4,0,0,139,117,192,139,125,216,68,139,85,192,68,139,93,220,72,139,93,176,139,69,188,137,68,36,24,72,139,69,168,72,137,68,36,16,137,84,36,8,137,12,36,65,137,241,65,137,248,68,137,209,68,137,218,72,137,222,72,141,61,97,30,3, 0,184,0,0,0,0,232,159,62,1,0,139,69,188,131,192,2,131,224,3,133,192,15,132,147,0,0,0,72,139,69,168,139,128,156,4,0,0,133,192,15,132,129,0,0,0,72,139,69,168,139,136,76,4,0,0,72,139,69,168,139,176,60,4,0,0,72,139,125,168,72,131,199,80,139,69,188,72,141, 21,86,50,5,0,72,152,72,139,20,194,139,69,200,68,139,85,192,65,1,194,68,139,93,212,72,139,93,176,139,69,188,137,68,36,32,72,139,69,168,72,137,68,36,24,137,76,36,16,72,141,5,199,68,5,0,72,137,68,36,8,137,52,36,73,137,249,73,137,208,68,137,209,68,137,218, 72,137,222,72,141,61,5,30,3,0,184,0,0,0,0,232,251,61,1,0,255,69,188,131,125,188,40,15,142,201,254,255,255,72,139,69,168,139,128,156,4,0,0,133,192,15,132,154,0,0,0,199,69,188,41,0,0,0,139,85,188,139,69,204,41,208,15,175,69,208,3,69,184,137,69,192,72,139, 69,168,139,136,76,4,0,0,72,139,69,168,139,176,60,4,0,0,72,139,125,168,72,131,199,80,139,69,188,72,141,21,157,49,5,0,72,152,72,139,20,194,139,69,200,68,139,85,192,65,1,194,68,139,93,212,72,139,93,176,139,69,188,137,68,36,32,72,139,69,168,72,137,68,36, 24,137,76,36,16,72,141,5,14,68,5,0,72,137,68,36,8,137,52,36,73,137,249,73,137,208,68,137,209,68,137,218,72,137,222,72,141,61,196,29,3,0,184,0,0,0,0,232,66,61,1,0,72,139,69,168,68,139,128,72,4,0,0,72,139,69,168,68,139,136,72,4,0,0,139,77,232,255,201,139, 85,208,137,208,193,224,2,1,208,193,224,3,141,20,1,139,77,216,255,201,139,117,232,255,206,139,125,220,76,139,85,176,72,139,69,168,72,137,68,36,16,68,137,68,36,8,68,137,12,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,208,29,3,0,184,0,0, 0,0,232,214,60,1,0,72,139,69,168,139,144,72,4,0,0,72,139,69,168,139,136,136,4,0,0,139,117,232,131,198,10,139,125,232,131,199,10,68,139,69,224,68,139,85,224,76,139,93,176,72,139,69,168,72,137,68,36,16,137,84,36,8,137,12,36,65,137,241,137,249,68,137,210, 76,137,222,72,141,61,208,29,3,0,184,0,0,0,0,232,126,60,1,0,72,139,69,168,139,128,76,4,0,0,137,69,136,72,139,69,168,139,128,60,4,0,0,137,69,140,72,139,69,168,72,131,192,80,72,137,69,144,72,139,69,168,72,139,128,96,4,0,0,72,139,56,72,141,53,215,245,2,0, 232,180,194,2,0,133,192,116,20,72,139,69,168,72,139,128,96,4,0,0,72,139,0,72,137,69,152,235,11,72,141,5,87,213,2,0,72,137,69,152,72,139,69,168,139,64,76,137,193,3,77,232,72,139,69,168,139,64,72,137,194,3,85,236,72,139,117,176,72,139,69,168,72,137,68, 36,24,139,69,136,137,68,36,16,72,141,5,140,66,5,0,72,137,68,36,8,139,69,140,137,4,36,76,139,77,144,76,139,69,152,72,141,61,254,219,2,0,184,0,0,0,0,232,196,59,1,0,72,139,69,168,15,182,128,56,4,0,0,131,224,128,132,192,15,133,178,0,0,0,72,139,69,168,139, 64,64,3,69,232,141,120,2,68,139,69,236,65,131,192,6,72,139,69,168,139,64,64,3,69,232,141,72,1,139,85,236,255,202,72,139,117,176,199,68,36,8,0,0,0,0,72,139,69,168,72,137,4,36,65,137,249,72,141,61,25,220,2,0,184,0,0,0,0,232,95,59,1,0,72,139,69,168,139, 64,64,3,69,232,141,72,2,72,139,69,168,139,64,68,3,69,236,141,120,1,72,139,69,168,139,64,64,3,69,232,68,141,80,1,72,139,69,168,139,64,68,3,69,236,141,80,250,72,139,117,176,199,68,36,8,1,0,0,0,72,139,69,168,72,137,4,36,65,137,201,65,137,248,68,137,209, 72,141,61,150,28,3,0,184,0,0,0,0,232,252,58,1,0,72,139,69,168,15,182,128,56,4,0,0,131,224,64,132,192,15,133,157,0,0,0,139,85,232,255,202,139,77,236,131,193,6,139,117,232,131,238,2,139,125,236,255,207,76,139,85,176,199,68,36,8,0,0,0,0,72,139,69,168,72, 137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,160,219,2,0,184,0,0,0,0,232,158,58,1,0,139,77,232,255,201,72,139,69,168,139,64,68,3,69,236,141,120,1,68,139,85,232,65,131,234,2,72,139,69,168,139,64,68,3,69,236,141,80,250,72,139,117, 176,199,68,36,8,1,0,0,0,72,139,69,168,72,137,4,36,65,137,201,65,137,248,68,137,209,72,141,61,75,219,2,0,184,0,0,0,0,232,73,58,1,0,72,139,85,168,15,182,130,176,4,0,0,131,200,2,136,130,176,4,0,0,72,139,69,168,15,182,128,176,4,0,0,208,232,131,224,1,72,139, 85,168,137,193,131,225,1,15,182,130,176,4,0,0,131,224,254,9,200,136,130,176,4,0,0,72,139,69,168,72,139,112,48,72,139,125,168,72,141,21,36,249,255,255,232,3,65,1,0,72,129,196,168,0,0,0,91,201,195,85,72,137,229,72,131,236,96,72,137,125,184,72,137,117,176, 72,139,125,176,232,62,86,253,255,72,137,69,200,72,139,125,184,72,139,117,176,232,235,106,253,255,137,69,252,72,139,125,184,72,139,117,176,232,225,107,253,255,137,69,248,72,139,69,184,139,64,68,141,80,3,133,192,15,72,194,193,248,2,137,69,244,139,69,244, 3,69,252,255,192,137,69,240,72,139,69,184,139,64,68,3,69,252,43,69,244,137,69,236,72,139,69,184,139,64,68,3,69,252,131,192,4,137,69,232,72,139,69,184,139,128,136,4,0,0,255,192,137,69,228,199,69,224,41,0,0,0,139,85,228,137,208,193,232,31,1,208,209,248, 137,69,220,139,85,220,139,69,248,41,208,137,69,208,72,139,69,184,139,64,64,3,69,248,141,80,2,72,139,69,184,139,64,68,3,69,252,255,192,139,77,248,131,233,2,139,117,252,255,206,72,139,125,184,76,139,85,200,137,20,36,65,137,193,65,137,200,137,241,72,137, 250,76,137,214,72,141,61,55,218,2,0,184,0,0,0,0,232,237,56,1,0,199,69,212,1,0,0,0,233,158,0,0,0,139,85,212,139,69,224,41,208,15,175,69,228,3,69,208,137,69,216,139,85,216,139,77,240,139,117,212,72,139,125,184,76,139,85,200,139,69,216,137,68,36,8,139,69, 236,137,4,36,65,137,209,65,137,200,137,241,72,137,250,76,137,214,72,141,61,116,26,3,0,184,0,0,0,0,232,146,56,1,0,139,69,212,131,192,2,131,224,3,133,192,116,63,72,139,69,184,139,128,156,4,0,0,133,192,116,49,139,69,220,3,69,216,139,85,232,139,77,212,72, 139,117,184,72,139,125,200,65,137,193,65,137,208,72,137,242,72,137,254,72,141,61,80,26,3,0,184,0,0,0,0,232,70,56,1,0,255,69,212,131,125,212,40,15,142,88,255,255,255,72,139,69,184,139,128,156,4,0,0,133,192,116,74,199,69,212,41,0,0,0,139,85,212,139,69, 224,41,208,15,175,69,228,3,69,208,137,69,216,139,69,220,3,69,216,139,85,232,139,77,212,72,139,117,184,72,139,125,200,65,137,193,65,137,208,72,137,242,72,137,254,72,141,61,235,25,3,0,184,0,0,0,0,232,225,55,1,0,72,139,85,184,15,182,130,176,4,0,0,131,200, 2,136,130,176,4,0,0,72,139,69,184,15,182,128,176,4,0,0,208,232,131,224,1,72,139,85,184,137,193,131,225,1,15,182,130,176,4,0,0,131,224,254,9,200,136,130,176,4,0,0,72,139,117,176,72,139,125,184,72,141,21,192,246,255,255,232,159,62,1,0,72,139,69,184,139, 64,76,137,199,3,125,248,72,139,69,184,139,64,72,137,193,3,77,252,72,139,85,184,72,139,117,200,65,137,248,72,141,61,252,208,2,0,184,0,0,0,0,232,90,55,1,0,72,139,69,184,15,182,128,56,4,0,0,131,224,128,132,192,15,133,188,0,0,0,72,139,69,184,139,64,64,3, 69,248,141,80,2,139,77,252,131,193,6,72,139,69,184,139,64,64,3,69,248,255,192,139,117,252,255,206,72,139,125,184,76,139,85,200,137,84,36,8,137,12,36,65,137,193,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,137,216,2,0,184,0,0,0,0,232,239,54, 1,0,72,139,69,184,139,64,64,3,69,248,141,72,2,72,139,69,184,139,64,68,3,69,252,68,141,64,1,72,139,69,184,139,64,64,3,69,248,141,80,1,72,139,69,184,139,64,68,3,69,252,131,232,6,72,139,117,184,72,139,125,200,137,76,36,8,68,137,4,36,65,137,209,65,137,192, 185,1,0,0,0,72,137,242,72,137,254,72,141,61,34,216,2,0,184,0,0,0,0,232,136,54,1,0,72,139,69,184,15,182,128,56,4,0,0,131,224,64,132,192,15,133,160,0,0,0,139,69,248,255,200,139,85,252,131,194,6,139,77,248,131,233,2,139,117,252,255,206,72,139,125,184,76, 139,85,200,137,68,36,8,137,20,36,65,137,201,65,137,240,185,0,0,0,0,72,137,250,76,137,214,72,141,61,237,215,2,0,184,0,0,0,0,232,43,54,1,0,68,139,69,248,65,255,200,72,139,69,184,139,64,68,3,69,252,141,80,1,139,77,248,131,233,2,72,139,69,184,139,64,68,3, 69,252,131,232,6,72,139,117,184,72,139,125,200,68,137,68,36,8,137,20,36,65,137,201,65,137,192,185,1,0,0,0,72,137,242,72,137,254,72,141,61,148,215,2,0,184,0,0,0,0,232,210,53,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139, 125,224,232,38,82,253,255,72,137,69,240,72,139,85,232,72,139,117,240,72,141,61,128,215,2,0,184,0,0,0,0,232,154,53,1,0,199,69,252,1,0,0,0,235,86,139,77,252,72,139,85,232,72,139,117,240,72,141,61,163,23,3,0,184,0,0,0,0,232,117,53,1,0,139,69,252,131,192, 2,131,224,3,133,192,116,42,72,139,69,232,139,128,156,4,0,0,133,192,116,28,139,77,252,72,139,85,232,72,139,117,240,72,141,61,134,23,3,0,184,0,0,0,0,232,62,53,1,0,255,69,252,131,125,252,40,126,164,72,139,69,232,139,128,156,4,0,0,133,192,116,35,199,69,252, 41,0,0,0,139,77,252,72,139,85,232,72,139,117,240,72,141,61,76,23,3,0,184,0,0,0,0,232,4,53,1,0,72,139,85,232,72,139,117,240,72,141,61,78,23,3,0,184,0,0,0,0,232,235,52,1,0,72,139,85,232,72,139,117,240,72,141,61,77,23,3,0,184,0,0,0,0,232,210,52,1,0,72,139, 85,232,72,139,117,240,72,141,61,59,10,3,0,184,0,0,0,0,232,185,52,1,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,117,60,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,123,232,2,0,184,0,0,0,0,232,137,52,1,0,72,139,85,232,72,139,117,240,185, 1,0,0,0,72,141,61,93,232,2,0,184,0,0,0,0,232,107,52,1,0,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,117,60,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,51,235,2,0,184,0,0,0,0,232,59,52,1,0,72,139,85,232,72,139,117,240,185,1,0,0,0,72,141, 61,21,235,2,0,184,0,0,0,0,232,29,52,1,0,201,195,85,72,137,229,72,131,236,96,72,137,125,232,72,137,117,224,72,139,125,224,232,113,80,253,255,72,137,69,240,72,139,69,232,139,136,72,4,0,0,72,139,85,232,72,139,117,240,72,141,61,69,214,2,0,184,0,0,0,0,232, 219,51,1,0,199,69,252,1,0,0,0,233,214,0,0,0,72,139,69,232,139,128,136,4,0,0,139,77,252,72,139,85,232,72,139,117,240,65,137,192,72,141,61,64,22,3,0,184,0,0,0,0,232,166,51,1,0,139,69,252,131,192,2,131,224,3,133,192,15,132,153,0,0,0,72,139,69,232,139,128, 156,4,0,0,133,192,15,132,135,0,0,0,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,117,15,72,139,69,232,139,128,76,4,0,0,137,69,200,235,7,199,69,200,255,0,0,0,72,139,69,232,68,139,128,60,4,0,0,76,139,77,232,73,131,193,80,139,69,252,72,141,21,62,39, 5,0,72,152,72,139,20,194,139,77,252,72,139,117,232,72,139,125,240,139,69,200,137,68,36,16,72,141,5,195,57,5,0,72,137,68,36,8,68,137,4,36,73,137,208,72,137,242,72,137,254,72,141,61,198,21,3,0,184,0,0,0,0,232,252,50,1,0,255,69,252,131,125,252,40,15,142, 32,255,255,255,72,139,69,232,139,128,156,4,0,0,133,192,15,132,142,0,0,0,199,69,252,41,0,0,0,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,117,15,72,139,69,232,139,128,76,4,0,0,137,69,204,235,7,199,69,204,255,0,0,0,72,139,69,232,68,139,128,60,4, 0,0,76,139,77,232,73,131,193,80,139,69,252,72,141,21,145,38,5,0,72,152,72,139,20,194,139,77,252,72,139,117,232,72,139,125,240,139,69,204,137,68,36,16,72,141,5,22,57,5,0,72,137,68,36,8,68,137,4,36,73,137,208,72,137,242,72,137,254,72,141,61,25,21,3,0,184, 0,0,0,0,232,79,50,1,0,72,139,69,232,72,139,128,96,4,0,0,72,139,56,72,141,53,206,235,2,0,232,171,184,2,0,133,192,116,20,72,139,69,232,72,139,128,96,4,0,0,72,139,0,72,137,69,208,235,11,72,141,5,78,203,2,0,72,137,69,208,72,139,69,232,15,182,128,59,4,0,0, 131,224,1,132,192,117,15,72,139,69,232,139,128,76,4,0,0,137,69,220,235,7,199,69,220,255,0,0,0,72,139,69,232,139,144,60,4,0,0,72,139,77,232,72,131,193,80,72,139,117,232,72,139,125,240,72,139,69,208,72,137,68,36,8,139,69,220,137,4,36,72,141,5,94,56,5,0, 73,137,193,65,137,208,72,137,242,72,137,254,72,141,61,183,211,2,0,184,0,0,0,0,232,157,49,1,0,72,139,69,232,139,144,72,4,0,0,72,139,69,232,139,136,72,4,0,0,72,139,69,232,72,139,117,240,65,137,208,72,137,194,72,141,61,132,20,3,0,184,0,0,0,0,232,106,49, 1,0,72,139,69,232,139,136,136,4,0,0,72,139,85,232,72,139,117,240,72,141,61,161,20,3,0,184,0,0,0,0,232,71,49,1,0,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72,139,125,232,72,139,117,224,232,82,98,253,255,137,69,252,72, 139,125,232,72,139,117,224,232,72,99,253,255,137,69,248,72,139,125,224,232,120,77,253,255,72,137,69,240,139,69,220,131,224,1,132,192,15,132,200,0,0,0,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,15,133,178,0,0,0,72,139,69,232,139,64,64,3,69, 248,141,120,2,68,139,69,252,65,131,192,6,72,139,69,232,139,64,64,3,69,248,141,72,1,139,85,252,255,202,72,139,117,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,249,72,141,61,44,211,2,0,184,0,0,0,0,232,146,48,1,0,72,139,69,232,139,64,64,3,69, 248,141,72,2,72,139,69,232,139,64,68,3,69,252,141,120,1,72,139,69,232,139,64,64,3,69,248,68,141,80,1,72,139,69,232,139,64,68,3,69,252,141,80,250,72,139,117,240,199,68,36,8,1,0,0,0,72,139,69,232,72,137,4,36,65,137,201,65,137,248,68,137,209,72,141,61,201, 210,2,0,184,0,0,0,0,232,47,48,1,0,139,69,220,131,224,1,133,192,117,78,72,139,69,232,15,182,128,56,4,0,0,131,224,128,132,192,116,60,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,231,227,2,0,184,0,0,0,0,232,245,47,1,0,72,139,85,232,72,139,117,240, 185,1,0,0,0,72,141,61,201,227,2,0,184,0,0,0,0,232,215,47,1,0,139,69,220,131,224,2,133,192,15,132,179,0,0,0,72,139,69,232,15,182,128,56,4,0,0,131,224,64,132,192,15,133,157,0,0,0,139,85,248,255,202,139,77,252,131,193,6,139,117,248,131,238,2,139,125,252, 255,207,76,139,85,240,199,68,36,8,0,0,0,0,72,139,69,232,72,137,4,36,65,137,209,65,137,200,137,241,137,250,76,137,214,72,141,61,61,210,2,0,184,0,0,0,0,232,107,47,1,0,139,77,248,255,201,72,139,69,232,139,64,68,3,69,252,141,120,1,68,139,85,248,65,131,234, 2,72,139,69,232,139,64,68,3,69,252,141,80,250,72,139,117,240,199,68,36,8,1,0,0,0,72,139,69,232,72,137,4,36,65,137,201,65,137,248,68,137,209,72,141,61,232,209,2,0,184,0,0,0,0,232,22,47,1,0,139,69,220,131,224,2,133,192,117,78,72,139,69,232,15,182,128,56, 4,0,0,131,224,64,132,192,116,60,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,212,229,2,0,184,0,0,0,0,232,220,46,1,0,72,139,85,232,72,139,117,240,185,1,0,0,0,72,141,61,182,229,2,0,184,0,0,0,0,232,190,46,1,0,201,195,85,72,137,229,72,131,236,32,72, 137,125,232,72,137,117,224,72,139,125,224,232,18,75,253,255,72,137,69,240,72,139,69,232,15,182,128,59,4,0,0,131,224,1,132,192,15,132,199,0,0,0,72,139,85,232,72,139,117,240,185,255,0,0,0,72,141,61,117,209,2,0,184,0,0,0,0,232,107,46,1,0,199,69,252,1,0, 0,0,235,64,139,69,252,131,192,2,131,224,3,133,192,116,48,72,139,69,232,139,128,156,4,0,0,133,192,116,34,139,77,252,72,139,85,232,72,139,117,240,65,184,255,0,0,0,72,141,61,175,17,3,0,184,0,0,0,0,232,37,46,1,0,255,69,252,131,125,252,40,126,186,72,139,69, 232,139,128,156,4,0,0,133,192,116,41,199,69,252,41,0,0,0,139,77,252,72,139,85,232,72,139,117,240,65,184,255,0,0,0,72,141,61,111,17,3,0,184,0,0,0,0,232,229,45,1,0,72,139,85,232,72,139,117,240,185,255,0,0,0,72,141,61,49,209,2,0,184,0,0,0,0,232,199,45,1, 0,233,213,0,0,0,72,139,85,232,72,139,117,240,185,0,0,0,0,72,141,61,174,208,2,0,184,0,0,0,0,232,164,45,1,0,199,69,252,1,0,0,0,235,71,139,69,252,131,192,2,131,224,3,133,192,116,55,72,139,69,232,139,128,156,4,0,0,133,192,116,41,72,139,69,232,139,128,76, 4,0,0,139,77,252,72,139,85,232,72,139,117,240,65,137,192,72,141,61,225,16,3,0,184,0,0,0,0,232,87,45,1,0,255,69,252,131,125,252,40,126,179,72,139,69,232,139,128,156,4,0,0,133,192,116,48,199,69,252,41,0,0,0,72,139,69,232,139,128,76,4,0,0,139,77,252,72, 139,85,232,72,139,117,240,65,137,192,72,141,61,154,16,3,0,184,0,0,0,0,232,16,45,1,0,72,139,69,232,139,136,76,4,0,0,72,139,85,232,72,139,117,240,72,141,61,87,208,2,0,184,0,0,0,0,232,237,44,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137, 117,240,137,85,236,131,125,236,1,117,15,72,139,117,240,72,139,125,248,232,221,242,255,255,235,109,131,125,236,2,117,15,72,139,117,240,72,139,125,248,232,93,236,255,255,235,88,131,125,236,3,117,15,72,139,117,240,72,139,125,248,232,223,253,255,255,235, 67,131,125,236,4,117,15,72,139,117,240,72,139,125,248,232,182,246,255,255,235,46,131,125,236,5,117,15,72,139,117,240,72,139,125,248,232,86,248,255,255,235,25,131,125,236,5,126,19,139,85,236,131,234,6,72,139,117,240,72,139,125,248,232,17,251,255,255,201, 195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,72,139,69,232,72,137,69,248,72,139,125,248,72,139,117,224,232,76,93,253,255,141,80,255,72,139,69,216,137,16,72,139,125,248,72,139,117, 224,232,60,94,253,255,141,80,254,72,139,69,208,137,16,72,139,69,216,139,16,72,139,69,248,139,64,68,141,4,2,141,80,2,72,139,69,200,137,16,72,139,69,208,139,16,72,139,69,248,139,64,64,141,4,2,141,80,4,72,139,69,192,137,16,201,195,85,72,137,229,65,87,65, 86,65,85,65,84,83,72,129,236,8,1,0,0,72,137,125,136,72,137,117,128,72,139,69,136,72,137,69,200,72,139,125,200,72,141,85,176,72,141,117,144,232,242,4,252,255,72,139,125,200,72,129,199,64,4,0,0,232,18,14,252,255,137,195,72,139,69,200,68,139,160,156,4,0, 0,68,139,109,184,68,139,117,176,72,139,69,200,68,139,184,60,4,0,0,72,139,125,200,72,129,199,56,4,0,0,232,250,14,252,255,137,133,68,255,255,255,72,139,69,200,139,64,76,137,133,72,255,255,255,72,139,69,200,139,64,72,137,133,76,255,255,255,72,139,69,160, 72,137,133,80,255,255,255,72,139,85,152,72,137,149,88,255,255,255,72,139,69,200,139,64,64,137,133,96,255,255,255,72,139,69,200,139,64,68,137,133,100,255,255,255,72,141,61,141,249,2,0,232,113,150,0,0,72,137,133,104,255,255,255,72,139,69,200,15,183,64, 42,152,137,133,112,255,255,255,72,139,69,200,15,183,64,40,152,137,133,116,255,255,255,72,141,61,71,223,2,0,232,64,150,0,0,72,137,133,120,255,255,255,72,141,61,20,208,2,0,232,45,150,0,0,72,139,125,128,137,92,36,96,68,137,100,36,88,68,137,108,36,80,68, 137,116,36,72,68,137,124,36,64,139,149,68,255,255,255,137,84,36,56,139,149,72,255,255,255,137,84,36,48,139,149,76,255,255,255,137,84,36,40,72,139,149,80,255,255,255,72,137,84,36,32,72,139,149,88,255,255,255,72,137,84,36,24,139,149,96,255,255,255,137, 84,36,16,139,149,100,255,255,255,137,84,36,8,72,139,149,104,255,255,255,72,137,20,36,68,139,141,112,255,255,255,68,139,133,116,255,255,255,72,139,141,120,255,255,255,72,137,194,72,141,53,214,13,3,0,184,0,0,0,0,232,106,43,0,0,72,139,125,128,72,141,53, 106,225,2,0,184,0,0,0,0,232,85,43,0,0,72,129,196,8,1,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,137,125,232,137,117,228,139,77,228,199,69,220,103,102,102,102,139,69,220,247,233,193,250,4,137,200,193,248,31,137,209,41,193,137,200,137,69,252, 131,125,252,1,127,7,199,69,252,2,0,0,0,139,85,252,255,202,72,139,69,232,137,144,136,4,0,0,139,85,252,137,208,193,224,2,1,208,193,224,3,137,194,72,139,69,232,137,80,64,201,195,85,72,137,229,83,72,129,236,136,0,0,0,72,137,125,168,243,15,17,69,164,243,15, 16,69,164,243,15,44,192,137,69,232,131,125,232,0,116,7,199,69,232,1,0,0,0,72,139,69,168,139,128,156,4,0,0,133,192,15,132,151,0,0,0,131,125,232,0,15,133,141,0,0,0,72,139,69,168,72,139,120,48,232,175,69,253,255,72,137,69,192,72,139,85,168,139,69,232,137, 130,156,4,0,0,72,139,69,168,72,139,120,48,232,152,149,252,255,133,192,116,94,199,69,236,1,0,0,0,235,44,139,69,236,131,192,2,131,224,3,133,192,116,28,139,77,236,72,139,85,168,72,139,117,192,72,141,61,52,11,3,0,184,0,0,0,0,232,236,40,1,0,255,69,236,131, 125,236,40,126,206,199,69,236,41,0,0,0,139,77,236,72,139,85,168,72,139,117,192,72,141,61,8,11,3,0,184,0,0,0,0,232,192,40,1,0,72,139,69,168,139,128,156,4,0,0,133,192,15,133,20,2,0,0,131,125,232,0,15,132,10,2,0,0,72,139,69,168,139,64,68,141,80,3,133,192, 15,72,194,193,248,2,137,69,228,72,139,69,168,72,139,112,48,72,139,125,168,232,171,89,253,255,137,194,72,139,69,168,139,64,68,141,4,2,131,192,4,137,69,224,72,139,69,168,139,128,136,4,0,0,255,192,137,69,220,199,69,216,41,0,0,0,139,85,220,137,208,193,232, 31,1,208,209,248,137,69,212,72,139,69,168,72,139,112,48,72,139,125,168,232,105,90,253,255,43,69,212,137,69,204,72,139,69,168,72,139,120,48,232,146,68,253,255,72,137,69,184,72,139,85,168,139,69,232,137,130,156,4,0,0,72,139,69,168,72,139,120,48,232,123, 148,252,255,133,192,15,132,99,1,0,0,199,69,236,1,0,0,0,233,167,0,0,0,139,85,236,139,69,216,41,208,15,175,69,220,3,69,204,137,69,208,139,69,236,131,192,2,131,224,3,133,192,15,132,129,0,0,0,72,139,69,168,139,136,76,4,0,0,72,139,69,168,139,176,60,4,0,0, 72,139,125,168,72,131,199,80,139,69,236,72,141,21,168,27,5,0,72,152,72,139,20,194,139,69,212,68,139,85,208,65,1,194,68,139,93,224,72,139,93,184,139,69,236,137,68,36,32,72,139,69,168,72,137,68,36,24,137,76,36,16,72,141,5,25,46,5,0,72,137,68,36,8,137,52, 36,73,137,249,73,137,208,68,137,209,68,137,218,72,137,222,72,141,61,31,11,3,0,184,0,0,0,0,232,77,39,1,0,255,69,236,131,125,236,40,15,142,79,255,255,255,199,69,236,41,0,0,0,139,85,236,139,69,216,41,208,15,175,69,220,3,69,204,137,69,208,72,139,69,168,139, 136,76,4,0,0,72,139,69,168,139,176,60,4,0,0,72,139,125,168,72,131,199,80,139,69,236,72,141,21,1,27,5,0,72,152,72,139,20,194,139,69,212,68,139,85,208,65,1,194,68,139,93,224,72,139,93,184,139,69,236,137,68,36,40,72,139,69,168,72,137,68,36,32,137,76,36, 24,72,141,5,114,45,5,0,72,137,68,36,16,72,141,5,102,45,5,0,72,137,68,36,8,137,52,36,73,137,249,73,137,208,68,137,209,68,137,218,72,137,222,72,141,61,164,6,3,0,184,0,0,0,0,232,154,38,1,0,72,129,196,136,0,0,0,91,201,195,85,72,137,229,65,86,65,85,65,84, 83,72,129,236,240,3,0,0,72,137,189,136,252,255,255,72,137,181,128,252,255,255,72,139,5,209,22,5,0,72,139,16,72,137,85,216,49,210,72,139,133,136,252,255,255,72,137,133,168,252,255,255,72,139,189,168,252,255,255,72,141,181,144,252,255,255,232,8,0,252,255, 72,139,133,168,252,255,255,139,128,76,4,0,0,137,194,129,226,255,255,255,0,72,139,133,168,252,255,255,139,128,72,4,0,0,137,193,129,225,255,255,255,0,72,139,133,168,252,255,255,139,176,60,4,0,0,72,139,133,168,252,255,255,15,182,128,56,4,0,0,131,224,63, 15,182,248,72,139,133,168,252,255,255,68,139,64,76,72,139,133,168,252,255,255,68,139,72,72,72,139,133,160,252,255,255,76,139,16,72,139,133,152,252,255,255,76,139,24,72,139,133,168,252,255,255,139,152,156,4,0,0,72,139,133,168,252,255,255,68,139,96,64, 72,139,133,168,252,255,255,68,139,104,68,76,141,181,176,252,255,255,137,148,36,128,0,0,0,199,68,36,120,255,255,255,255,137,76,36,112,137,116,36,104,137,124,36,96,68,137,68,36,88,68,137,76,36,80,76,137,84,36,72,76,137,92,36,64,72,141,5,192,10,3,0,72,137, 68,36,56,199,68,36,48,255,255,255,255,199,68,36,40,255,255,255,255,199,68,36,32,255,255,255,255,137,92,36,24,199,68,36,16,0,0,0,0,199,68,36,8,80,0,0,0,68,137,36,36,65,185,8,0,0,0,69,137,232,72,141,13,109,9,3,0,186,32,3,0,0,190,0,0,0,0,76,137,247,184, 0,0,0,0,232,86,169,2,0,72,139,189,168,252,255,255,72,141,149,176,252,255,255,72,139,181,168,252,255,255,232,0,254,1,0,72,139,5,85,21,5,0,72,139,85,216,72,51,16,116,5,232,45,169,2,0,72,129,196,240,3,0,0,91,65,92,65,93,65,94,201,195,85,72,137,229,72,131, 236,80,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,139,85,176,139,117,188,191,0,0,0,0,232,130,18,0,0,137,69,252,72,139,85,176,139,117,188,191,1,0,0,0,232,110,18,0,0,137,69,248,72,139,85,176,139,117,188,191,4,0,0,0,232,90,18,0,0,137,69,244, 72,141,61,9,222,2,0,232,230,143,0,0,72,137,69,208,72,139,125,200,72,139,77,176,139,85,188,72,141,117,208,232,135,254,251,255,137,69,240,72,139,85,200,15,182,130,56,4,0,0,131,224,127,136,130,56,4,0,0,72,139,85,200,15,182,130,64,4,0,0,131,224,254,136,130, 64,4,0,0,139,125,252,232,175,232,251,255,137,194,72,139,69,200,137,80,68,139,117,248,72,139,125,200,232,26,250,255,255,131,125,244,0,116,7,199,69,244,1,0,0,0,243,15,42,69,244,72,139,125,200,232,94,250,255,255,72,139,69,200,72,139,72,56,72,139,69,200, 72,139,112,48,72,139,125,200,186,5,0,0,0,255,209,72,139,69,200,72,139,72,56,139,85,240,131,194,6,72,139,69,200,72,139,112,48,72,139,125,200,255,209,72,139,69,200,72,139,72,56,72,139,69,200,72,139,112,48,72,139,125,200,186,1,0,0,0,255,209,72,139,117,200, 72,139,69,200,72,139,120,48,232,16,147,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,85,224,139,117,236,191,0,0,0,0,232,67,17,0,0,137,199,232,235,231,251,255,137,194,72,139,69,248,137,80,68, 131,125,236,1,126,28,72,139,85,224,139,117,236,191,1,0,0,0,232,28,17,0,0,137,198,72,139,125,248,232,64,249,255,255,72,139,69,248,72,139,120,48,232,159,143,252,255,133,192,116,71,72,139,69,248,72,139,72,56,72,139,69,248,72,139,112,48,72,139,125,248,186, 1,0,0,0,255,209,72,139,69,248,72,139,72,56,72,139,69,248,72,139,112,48,72,139,125,248,186,5,0,0,0,255,209,72,139,117,248,72,139,69,248,72,139,120,48,232,92,146,252,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137, 77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,156,248,251,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240, 72,139,125,248,73,137,192,232,24,249,251,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,116,249,251,255,201,195,85,72, 137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,149,242,251,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,117,248,72,139,85,240,72,139,125,248,232,7,244,251,255,201,195, 85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,187,244,251,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137, 85,236,72,137,77,224,72,139,117,248,72,139,69,224,139,77,236,72,139,85,240,72,139,125,248,73,137,192,232,88,245,251,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243,15,90,77,228,242,15,16,5,108,55,3,0,102,15,46,193,115,2,235, 16,72,139,69,232,199,128,144,4,0,0,0,0,0,0,235,85,243,15,16,69,228,15,46,5,88,55,3,0,115,2,235,16,72,139,69,232,199,128,144,4,0,0,40,0,0,0,235,53,243,15,90,77,228,242,15,16,5,239,53,3,0,242,15,88,193,242,15,88,192,242,15,44,192,137,69,248,139,69,248, 72,141,21,150,31,5,0,72,152,139,20,130,72,139,69,232,137,144,144,4,0,0,243,15,90,77,228,242,15,16,5,186,53,3,0,242,15,89,200,242,15,16,5,238,54,3,0,242,15,88,193,242,15,44,192,137,69,252,139,69,252,45,16,39,0,0,243,15,42,192,243,15,90,200,242,15,16,5, 99,54,3,0,242,15,89,193,242,15,90,192,243,15,17,69,228,72,139,85,232,139,69,228,137,130,152,4,0,0,72,139,69,232,72,139,128,160,4,0,0,72,137,199,243,15,16,69,228,232,15,182,0,0,72,139,85,232,15,182,130,176,4,0,0,131,200,1,136,130,176,4,0,0,72,139,69,232, 72,139,112,48,72,139,125,232,72,141,21,159,223,255,255,232,126,39,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243,15,90,77,228,242,15,16,5,69,54,3,0,102,15,46,193,115,2,235,16,72,139,69,232,199,128,140,4,0,0,0,0,0,0,235,85, 243,15,16,69,228,15,46,5,49,54,3,0,115,2,235,16,72,139,69,232,199,128,140,4,0,0,40,0,0,0,235,53,243,15,90,77,228,242,15,16,5,200,52,3,0,242,15,88,193,242,15,88,192,242,15,44,192,137,69,248,139,69,248,72,141,21,111,30,5,0,72,152,139,20,130,72,139,69,232, 137,144,140,4,0,0,243,15,90,77,228,242,15,16,5,147,52,3,0,242,15,89,200,242,15,16,5,199,53,3,0,242,15,88,193,242,15,44,192,137,69,252,139,69,252,45,16,39,0,0,243,15,42,192,243,15,90,200,242,15,16,5,60,53,3,0,242,15,89,193,242,15,90,192,243,15,17,69,228, 72,139,85,232,139,69,228,137,130,148,4,0,0,72,139,85,232,15,182,130,176,4,0,0,131,200,2,136,130,176,4,0,0,72,139,69,232,72,139,112,48,72,139,125,232,72,141,21,144,222,255,255,232,111,38,1,0,72,139,69,232,72,139,128,168,4,0,0,72,137,199,243,15,16,69,228, 232,188,180,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,128,148,4,0,0,72,139,69,248,72,139,128,168,4,0,0,72,137,199,232,143,180,0,0,72,139,69,248,243,15,16,128,152,4,0,0,72,139,69,248,72,139,128,160,4,0,0,72,137,199, 232,112,180,0,0,72,139,85,248,15,182,130,176,4,0,0,131,200,2,136,130,176,4,0,0,72,139,69,248,15,182,128,176,4,0,0,208,232,131,224,1,72,139,85,248,137,193,131,225,1,15,182,130,176,4,0,0,131,224,254,9,200,136,130,176,4,0,0,72,139,69,248,72,139,112,48,72, 139,125,248,72,141,21,213,221,255,255,232,180,37,1,0,201,195,85,72,137,229,72,129,236,0,1,0,0,72,137,189,24,255,255,255,137,181,20,255,255,255,72,137,149,8,255,255,255,72,139,5,227,14,5,0,72,139,16,72,137,85,248,49,210,72,139,61,195,64,5,0,232,234,192, 0,0,72,137,133,48,255,255,255,199,133,32,255,255,255,239,251,254,255,199,133,36,255,255,255,255,255,255,255,199,133,40,255,255,255,255,255,255,255,199,133,92,255,255,255,15,0,0,0,199,133,88,255,255,255,120,0,0,0,199,133,84,255,255,255,255,255,255,255, 199,133,80,255,255,255,248,255,255,255,199,133,76,255,255,255,0,0,0,0,199,133,72,255,255,255,10,0,0,0,199,133,68,255,255,255,1,0,0,0,199,133,64,255,255,255,50,0,0,0,199,133,60,255,255,255,250,0,0,0,72,139,189,48,255,255,255,72,129,199,64,4,0,0,190,0, 0,0,0,232,113,255,251,255,72,139,189,48,255,255,255,72,129,199,56,4,0,0,190,0,0,0,0,232,118,0,252,255,131,189,20,255,255,255,10,15,142,68,2,0,0,72,139,133,8,255,255,255,139,0,131,248,1,15,133,50,2,0,0,72,139,133,8,255,255,255,72,131,192,16,139,0,131, 248,1,15,133,28,2,0,0,72,139,133,8,255,255,255,72,131,192,32,139,0,131,248,2,116,22,72,139,133,8,255,255,255,72,131,192,32,139,0,131,248,1,15,133,244,1,0,0,72,139,133,8,255,255,255,72,131,192,48,139,0,131,248,2,116,22,72,139,133,8,255,255,255,72,131, 192,48,139,0,131,248,1,15,133,204,1,0,0,72,139,133,8,255,255,255,72,131,192,64,139,0,131,248,1,15,133,182,1,0,0,72,139,133,8,255,255,255,72,131,192,80,139,0,131,248,1,15,133,160,1,0,0,72,139,133,8,255,255,255,72,131,192,96,139,0,131,248,1,15,133,138, 1,0,0,72,139,133,8,255,255,255,72,131,192,112,139,0,131,248,1,15,133,116,1,0,0,72,139,133,8,255,255,255,72,131,232,128,139,0,131,248,1,15,133,94,1,0,0,72,139,133,8,255,255,255,72,5,144,0,0,0,139,0,131,248,1,15,133,70,1,0,0,72,139,133,8,255,255,255,72, 5,160,0,0,0,139,0,131,248,1,15,133,46,1,0,0,72,139,149,8,255,255,255,139,181,20,255,255,255,191,0,0,0,0,232,88,10,0,0,137,133,92,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,1,0,0,0,232,59,10,0,0,137,133,88,255,255,255,72,139,189,48, 255,255,255,72,139,149,8,255,255,255,190,1,0,0,0,232,56,228,251,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,4,0,0,0,232,6,10,0,0,137,133,84,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,5,0,0,0,232,233,9,0,0,137,133,80,255, 255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,6,0,0,0,232,204,9,0,0,137,198,72,139,189,48,255,255,255,72,129,199,56,4,0,0,232,155,254,251,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,7,0,0,0,232,160,9,0,0,137,133,72,255,255,255, 72,139,149,8,255,255,255,139,181,20,255,255,255,191,8,0,0,0,232,131,9,0,0,137,133,32,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,9,0,0,0,232,102,9,0,0,137,133,40,255,255,255,72,139,149,8,255,255,255,139,181,20,255,255,255,191,10,0, 0,0,232,73,9,0,0,137,133,68,255,255,255,235,22,72,139,189,48,255,255,255,186,0,0,0,0,190,1,0,0,0,232,70,227,251,255,131,189,20,255,255,255,12,117,64,72,139,133,8,255,255,255,72,5,176,0,0,0,139,0,131,248,1,117,44,72,139,149,8,255,255,255,139,181,20,255, 255,255,191,11,0,0,0,232,247,8,0,0,137,198,72,139,189,48,255,255,255,72,129,199,64,4,0,0,232,169,252,251,255,72,141,21,21,238,255,255,72,139,133,48,255,255,255,72,137,80,56,72,139,149,48,255,255,255,15,182,130,56,4,0,0,131,224,127,136,130,56,4,0,0,72, 139,149,48,255,255,255,15,182,130,56,4,0,0,131,200,64,136,130,56,4,0,0,232,227,105,252,255,72,137,194,72,139,133,48,255,255,255,72,137,80,48,72,139,133,48,255,255,255,72,139,128,88,4,0,0,72,139,56,72,141,53,48,212,2,0,232,13,161,2,0,133,192,117,23,72, 139,133,48,255,255,255,15,182,144,56,4,0,0,131,226,191,136,144,56,4,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,63,60,1,117,76,72,199,192,255,255,255,255,72,131,248,255,116,35,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131, 199,80,72,141,53,17,191,2,0,232,150,158,2,0,233,210,0,0,0,72,139,189,48,255,255,255,72,131,199,80,72,141,53,245,190,2,0,232,115,2,0,0,233,182,0,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,63,60,2,117,70,72,199,192,255,255,255,255,72,131, 248,255,116,32,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53,64,255,2,0,232,53,158,2,0,235,116,72,139,189,48,255,255,255,72,131,199,80,72,141,53,39,255,2,0,232,21,2,0,0,235,91,72,139,149,48,255,255,255,15,182,130,56,4,0, 0,131,224,192,136,130,56,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,194,255,255,255,255,72,139,189,48,255,255,255,72,131,199,80,72,141,53,195,31,5,0,232,216,157,2,0,235,23,72,139,189,48,255,255,255,72,131,199,80,72,141,53,170,31,5, 0,232,184,1,0,0,72,139,133,48,255,255,255,15,182,128,56,4,0,0,131,224,64,132,192,116,26,72,139,133,48,255,255,255,72,139,176,88,4,0,0,72,139,189,48,255,255,255,232,121,191,0,0,72,139,149,48,255,255,255,139,133,84,255,255,255,137,66,72,72,139,149,48,255, 255,255,139,133,80,255,255,255,137,66,76,131,189,72,255,255,255,3,127,10,199,133,72,255,255,255,4,0,0,0,72,139,149,48,255,255,255,139,133,72,255,255,255,137,130,60,4,0,0,139,189,92,255,255,255,232,111,221,251,255,137,194,72,139,133,48,255,255,255,137, 80,68,139,181,88,255,255,255,72,139,189,48,255,255,255,232,209,238,255,255,72,139,189,48,255,255,255,72,141,181,32,255,255,255,232,37,229,251,255,131,189,68,255,255,255,0,116,10,199,133,68,255,255,255,1,0,0,0,72,139,149,48,255,255,255,139,133,68,255, 255,255,137,130,156,4,0,0,72,139,133,48,255,255,255,199,128,140,4,0,0,0,0,0,0,72,139,133,48,255,255,255,199,128,144,4,0,0,0,0,0,0,72,139,149,48,255,255,255,184,0,0,202,194,137,130,148,4,0,0,72,139,149,48,255,255,255,184,0,0,202,194,137,130,152,4,0,0, 72,139,189,48,255,255,255,232,228,222,251,255,72,141,61,221,166,2,0,232,166,131,0,0,72,137,193,72,139,181,48,255,255,255,72,139,189,48,255,255,255,72,141,21,40,16,5,0,232,198,159,0,0,72,139,189,48,255,255,255,72,141,53,21,16,5,0,232,178,171,0,0,72,137, 194,72,139,133,48,255,255,255,72,137,144,160,4,0,0,72,139,189,48,255,255,255,72,141,53,241,15,5,0,232,142,171,0,0,72,137,194,72,139,133,48,255,255,255,72,137,144,168,4,0,0,72,139,133,48,255,255,255,72,139,21,37,8,5,0,72,139,77,248,72,51,10,116,5,232, 253,155,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,227,155,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,15,182,128,56,4,0,0,131,224,64,132, 192,116,20,72,139,69,248,72,139,176,88,4,0,0,72,139,125,248,232,156,190,0,0,72,139,125,248,232,28,243,1,0,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,177,255,255,255,76,141,37,144,248,255,255,72,141,61,183,229,2,0,232,155,130,0,0,72,137,199, 199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,184,4,0,0,72,137,218,76,137,230,184,0,0,0,0,232,208,112,0,0,72,137,5,75,57,5,0,72,141,53,168,247,255,255,72,139,61,61,57,5,0,232,16,126,0,0,72,141,53,71,245,255,255,72,139,61,42,57,5,0,232,49,126,0, 0,72,141,61,110,165,2,0,232,55,130,0,0,72,141,53,79,246,255,255,72,139,61,11,57,5,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,174,119,0,0,72,141,61,76,215,2,0,232,5,130,0,0,72,141,53,185,241,255,255,72,139,61,217,56,5,0,65,184,0,0,0,0,185, 10,0,0,0,72,137,194,184,0,0,0,0,232,124,119,0,0,72,141,61,38,215,2,0,232,211,129,0,0,72,141,53,198,242,255,255,72,139,61,167,56,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,74,119,0,0,72,141,61,150,251,2,0,232,161,129,0,0,72,141,53,141, 236,255,255,72,139,61,117,56,5,0,65,184,0,0,0,0,185,6,0,0,0,72,137,194,184,0,0,0,0,232,24,119,0,0,72,141,61,174,203,2,0,232,111,129,0,0,72,141,53,22,243,255,255,72,139,61,67,56,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,230,118,0,0,72, 141,61,130,203,2,0,232,61,129,0,0,72,141,53,24,243,255,255,72,139,61,17,56,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,180,118,0,0,72,141,61,84,203,2,0,232,11,129,0,0,72,141,53,26,243,255,255,72,139,61,223,55,5,0,65,184,0,0,0,0,185,10, 0,0,0,72,137,194,184,0,0,0,0,232,130,118,0,0,72,141,61,52,214,2,0,232,217,128,0,0,72,141,53,28,243,255,255,72,139,61,173,55,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,80,118,0,0,72,141,61,10,214,2,0,232,167,128,0,0,72,141,53,13,243,255, 255,72,139,61,123,55,5,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,30,118,0,0,72,141,61,252,185,2,0,232,117,128,0,0,72,141,53,254,242,255,255,72,139,61,73,55,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,236,117,0,0,72,141,61, 174,213,2,0,232,67,128,0,0,72,141,53,0,243,255,255,72,139,61,23,55,5,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,186,117,0,0,72,141,21,192,101,5,0,72,141,5,69,232,255,255,72,137,2,72,141,21,175,101,5,0,72,141,5,155,236,251,255,72,137,66, 8,72,141,21,157,101,5,0,72,141,5,1,237,251,255,72,137,66,16,72,141,5,139,101,5,0,72,199,64,24,0,0,0,0,72,141,21,124,101,5,0,72,141,5,53,237,251,255,72,137,66,32,72,141,21,106,101,5,0,72,141,5,66,237,251,255,72,137,66,40,72,141,5,88,101,5,0,72,199,64, 48,0,0,0,0,72,139,61,129,54,5,0,72,141,53,66,101,5,0,232,233,123,0,0,72,141,61,163,226,2,0,232,135,127,0,0,72,137,198,72,139,61,95,54,5,0,232,43,124,0,0,72,139,61,83,54,5,0,72,141,53,40,232,255,255,232,145,125,0,0,72,139,61,64,54,5,0,72,141,53,81,237, 255,255,232,170,125,0,0,72,131,196,16,91,65,92,201,195,144,144,144,85,72,137,229,72,137,125,248,72,139,69,248,139,0,131,248,1,117,16,72,139,69,248,243,15,16,64,8,243,15,17,69,244,235,8,15,87,192,243,15,17,69,244,243,15,16,69,244,201,195,85,72,137,229, 72,131,236,16,72,137,125,248,72,139,125,248,232,185,255,255,255,243,72,15,44,192,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,5,215,3,5,0,72,139,16,72,137,85,248,49,210,72,139,69,200,139,0,131,248,2,117,14,72,139,69,200,72,139,64,8,72,137, 69,192,235,11,72,141,5,86,11,5,0,72,137,69,192,72,139,69,192,72,139,21,159,3,5,0,72,139,77,248,72,51,10,116,5,232,119,151,2,0,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,5,124,3,5,0,72,139,16,72,137,85,248,49,210,72,139,69,200,139,0,131, 248,2,117,14,72,139,69,200,72,139,64,8,72,137,69,192,235,91,72,139,69,200,139,0,131,248,1,117,46,72,139,69,200,243,15,16,64,8,243,15,90,192,72,141,125,208,72,141,13,95,206,2,0,186,30,0,0,0,190,0,0,0,0,184,1,0,0,0,232,3,151,2,0,235,21,72,141,125,208,186, 4,0,0,0,72,141,53,15,193,2,0,232,48,152,2,0,72,141,125,208,232,17,126,0,0,72,137,69,192,72,139,69,192,72,139,21,244,2,5,0,72,139,77,248,72,51,10,116,5,232,204,150,2,0,201,195,85,72,137,229,137,125,252,137,117,248,72,137,85,240,139,69,248,59,69,252,127, 10,15,87,192,243,15,17,69,236,235,48,139,69,252,72,152,72,193,224,4,72,1,69,240,72,139,69,240,139,0,131,248,1,117,16,72,139,69,240,243,15,16,64,8,243,15,17,69,236,235,8,15,87,192,243,15,17,69,236,243,15,16,69,236,201,195,85,72,137,229,72,131,236,16,137, 125,252,137,117,248,72,137,85,240,72,139,85,240,139,117,248,139,125,252,232,136,255,255,255,243,72,15,44,192,201,195,85,72,137,229,137,125,252,137,117,248,72,137,85,240,139,69,248,59,69,252,127,13,72,141,5,48,11,5,0,72,137,69,232,235,49,139,69,252,72, 152,72,193,224,4,72,1,69,240,72,139,69,240,139,0,131,248,2,117,14,72,139,69,240,72,139,64,8,72,137,69,232,235,11,72,141,5,253,10,5,0,72,137,69,232,72,139,69,232,201,195,85,72,137,229,72,131,236,112,72,137,125,168,72,137,117,160,137,85,156,72,139,5,241, 1,5,0,72,139,16,72,137,85,248,49,210,72,139,69,168,139,0,137,69,152,131,125,152,9,15,135,219,4,0,0,139,69,152,72,141,20,133,0,0,0,0,72,141,5,23,0,0,0,72,141,4,2,139,0,72,99,208,72,141,5,7,0,0,0,72,141,4,2,255,224,144,178,4,0,0,226,0,0,0,237,1,0,0,164, 0,0,0,40,0,0,0,102,0,0,0,178,4,0,0,178,4,0,0,49,4,0,0,94,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,194,255,255,255,255,72,139,125,160,72,141,53,85,200,2,0,232,82,149,2,0,233,114,4,0,0,72,139,125,160,72,141,53,64,200,2,0,232,121,4, 0,0,233,93,4,0,0,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,194,255,255,255,255,72,139,125,160,72,141,53,43,246,2,0,232,20,149,2,0,233,52,4,0,0,72,139,125,160,72,141,53,22,246,2,0,232,59,4,0,0,233,31,4,0,0,72,199,192,255,255,255,255,72,131, 248,255,116,28,72,199,194,255,255,255,255,72,139,125,160,72,141,53,239,245,2,0,232,214,148,2,0,233,246,3,0,0,72,139,125,160,72,141,53,218,245,2,0,232,253,3,0,0,233,225,3,0,0,72,139,69,168,243,15,16,64,8,243,15,90,192,72,141,125,208,72,141,13,218,203, 2,0,186,30,0,0,0,190,0,0,0,0,184,1,0,0,0,232,126,148,2,0,72,141,125,208,232,175,150,2,0,72,137,194,139,69,156,255,200,137,192,72,57,194,115,56,72,199,192,255,255,255,255,72,131,248,255,116,25,72,199,194,255,255,255,255,72,141,117,208,72,139,125,160,232, 87,148,2,0,233,119,3,0,0,72,141,117,208,72,139,125,160,232,129,3,0,0,233,101,3,0,0,72,139,69,168,243,15,16,72,8,15,87,192,15,46,193,119,2,235,62,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,194,255,255,255,255,72,139,125,160,72,141,53,204, 222,2,0,232,9,148,2,0,233,41,3,0,0,72,139,125,160,72,141,53,183,222,2,0,232,48,3,0,0,233,20,3,0,0,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,194,255,255,255,255,72,139,125,160,72,141,53,238,244,2,0,232,203,147,2,0,233,235,2,0,0,72,139,125, 160,72,141,53,217,244,2,0,232,242,2,0,0,233,214,2,0,0,72,139,69,168,72,139,64,8,72,139,0,72,137,69,192,199,69,204,0,0,0,0,199,69,200,0,0,0,0,235,86,72,139,69,192,15,182,0,60,59,116,61,72,139,69,192,15,182,0,60,44,116,50,72,139,69,192,15,182,0,60,92,116, 39,72,139,69,192,15,182,0,60,36,117,35,72,139,69,192,72,255,192,15,182,0,60,47,126,21,72,139,69,192,72,255,192,15,182,0,60,57,127,7,199,69,200,1,0,0,0,72,255,69,192,255,69,204,72,139,69,192,15,182,0,132,192,117,159,131,125,200,0,15,132,200,0,0,0,72,139, 69,160,72,137,69,184,139,69,156,131,232,2,137,192,72,3,69,160,72,137,69,176,72,139,69,168,72,139,64,8,72,139,0,72,137,69,192,235,104,72,139,69,192,15,182,0,60,59,116,61,72,139,69,192,15,182,0,60,44,116,50,72,139,69,192,15,182,0,60,92,116,39,72,139,69, 192,15,182,0,60,36,117,39,72,139,69,192,72,255,192,15,182,0,60,47,126,25,72,139,69,192,72,255,192,15,182,0,60,57,127,11,72,139,69,184,198,0,92,72,255,69,184,72,139,69,192,15,182,16,72,139,69,184,136,16,72,255,69,184,72,255,69,192,72,139,69,184,72,59, 69,176,115,11,72,139,69,192,15,182,0,132,192,117,131,72,139,69,192,15,182,0,132,192,116,11,72,139,69,184,198,0,42,72,255,69,184,72,139,69,184,198,0,0,233,132,1,0,0,139,69,156,255,200,59,69,204,118,70,72,199,192,255,255,255,255,72,131,248,255,116,32,72, 199,194,255,255,255,255,72,139,69,168,72,139,64,8,72,139,48,72,139,125,160,232,45,146,2,0,233,77,1,0,0,72,139,69,168,72,139,64,8,72,139,48,72,139,125,160,232,80,1,0,0,233,52,1,0,0,72,199,192,255,255,255,255,72,131,248,255,116,37,72,199,193,255,255,255, 255,139,69,156,131,232,2,137,194,72,139,69,168,72,139,64,8,72,139,48,72,139,125,160,232,235,145,2,0,235,28,139,69,156,131,232,2,137,194,72,139,69,168,72,139,64,8,72,139,48,72,139,125,160,232,35,1,0,0,72,199,192,255,255,255,255,72,131,248,255,116,39,72, 199,194,255,255,255,255,139,69,156,131,232,2,137,192,72,137,199,72,3,125,160,72,141,53,183,242,2,0,232,146,145,2,0,233,178,0,0,0,139,69,156,131,232,2,137,192,72,137,199,72,3,125,160,72,141,53,151,242,2,0,232,174,0,0,0,233,146,0,0,0,72,139,69,168,139, 64,8,72,199,194,255,255,255,255,72,139,125,160,65,137,192,72,141,13,115,242,2,0,190,0,0,0,0,184,0,0,0,0,232,48,145,2,0,235,101,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,193,255,255,255,255,139,85,156,72,139,69,168,72,139,64,8,72,139,48, 72,139,125,160,232,33,145,2,0,235,23,139,85,156,72,139,69,168,72,139,64,8,72,139,48,72,139,125,160,232,94,0,0,0,139,69,156,255,200,137,192,72,3,69,160,198,0,0,235,17,72,141,61,11,242,2,0,184,0,0,0,0,232,140,115,1,0,72,139,5,226,252,4,0,72,139,85,248, 72,51,16,116,5,232,186,144,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,160,144,2,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232, 72,199,193,255,255,255,255,72,139,85,232,72,139,117,240,72,139,125,248,232,126,144,2,0,201,195,144,144,85,72,137,229,72,131,236,16,191,16,0,0,0,232,151,145,0,0,72,137,69,248,72,139,69,248,199,0,0,0,0,0,191,0,0,0,0,232,127,145,0,0,72,137,194,72,139,69, 248,72,137,80,8,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,0,72,152,72,137,198,72,193,230,4,72,139,69,248,72,139,120,8,232,58,147,0,0,72,139,125,248,190,16,0,0,0,232,44,147,0,0,201,195,85,72,137,229,72,131,236, 32,72,137,125,232,191,16,0,0,0,232,32,145,0,0,72,137,69,248,72,139,69,232,139,16,72,139,69,248,137,16,72,139,69,248,139,0,72,152,72,137,199,72,193,231,4,232,252,144,0,0,72,137,194,72,139,69,248,72,137,80,8,72,199,192,255,255,255,255,72,131,248,255,116, 45,72,199,193,255,255,255,255,72,139,69,248,139,0,72,152,72,137,194,72,193,226,4,72,139,69,232,72,139,112,8,72,139,69,248,72,139,120,8,232,84,143,2,0,235,36,72,139,69,248,139,0,72,152,72,137,194,72,193,226,4,72,139,69,232,72,139,112,8,72,139,69,248,72, 139,120,8,232,6,0,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,72,139,117,240,72,139,125,248,232,252,142,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125, 248,72,139,69,248,139,0,72,152,72,137,198,72,193,230,4,72,139,69,248,72,139,120,8,186,0,0,0,0,232,36,145,0,0,72,137,194,72,139,69,248,72,137,80,8,72,139,69,248,199,0,0,0,0,0,201,195,85,72,137,229,72,129,236,144,4,0,0,72,137,189,152,251,255,255,72,137, 181,144,251,255,255,72,137,149,136,251,255,255,72,139,5,199,250,4,0,72,139,16,72,137,85,248,49,210,72,141,133,0,252,255,255,72,5,232,3,0,0,72,137,133,184,251,255,255,72,139,133,144,251,255,255,72,137,133,176,251,255,255,72,139,133,136,251,255,255,72, 3,133,144,251,255,255,72,137,133,168,251,255,255,199,133,248,251,255,255,16,0,0,0,199,133,244,251,255,255,0,0,0,0,72,139,133,152,251,255,255,139,0,72,152,72,137,198,72,193,230,4,72,139,133,152,251,255,255,72,139,120,8,232,114,145,0,0,139,133,248,251, 255,255,72,152,72,137,199,72,193,231,4,232,106,143,0,0,72,137,194,72,139,133,152,251,255,255,72,137,80,8,72,139,133,152,251,255,255,72,139,64,8,72,137,133,160,251,255,255,72,139,133,152,251,255,255,199,0,0,0,0,0,235,7,72,255,133,176,251,255,255,72,139, 133,176,251,255,255,72,59,133,168,251,255,255,116,56,72,139,133,176,251,255,255,15,182,0,60,32,116,219,72,139,133,176,251,255,255,15,182,0,60,10,116,205,72,139,133,176,251,255,255,15,182,0,60,13,116,191,72,139,133,176,251,255,255,15,182,0,60,9,116,177, 72,139,133,176,251,255,255,72,59,133,168,251,255,255,15,132,177,6,0,0,72,139,133,176,251,255,255,15,182,0,60,59,117,39,72,139,133,160,251,255,255,199,0,4,0,0,0,72,139,133,160,251,255,255,199,64,8,0,0,0,0,72,255,133,176,251,255,255,233,231,5,0,0,72,139, 133,176,251,255,255,15,182,0,60,44,117,39,72,139,133,160,251,255,255,199,0,5,0,0,0,72,139,133,160,251,255,255,199,64,8,0,0,0,0,72,255,133,176,251,255,255,233,178,5,0,0,199,133,236,251,255,255,0,0,0,0,199,133,232,251,255,255,0,0,0,0,199,133,228,251,255, 255,0,0,0,0,199,133,224,251,255,255,0,0,0,0,72,141,133,0,252,255,255,72,137,133,192,251,255,255,72,139,133,176,251,255,255,15,182,16,72,139,133,192,251,255,255,136,16,72,139,133,192,251,255,255,15,182,0,136,133,255,251,255,255,72,255,133,176,251,255, 255,139,133,232,251,255,255,137,133,228,251,255,255,128,189,255,251,255,255,92,15,148,192,15,182,192,137,133,232,251,255,255,131,189,236,251,255,255,0,15,136,249,2,0,0,128,189,255,251,255,255,47,126,21,128,189,255,251,255,255,57,127,12,199,133,124,251, 255,255,1,0,0,0,235,10,199,133,124,251,255,255,0,0,0,0,139,133,124,251,255,255,137,133,220,251,255,255,128,189,255,251,255,255,46,15,148,192,15,182,192,137,133,216,251,255,255,128,189,255,251,255,255,45,15,148,192,15,182,192,137,133,212,251,255,255,131, 189,212,251,255,255,0,117,9,128,189,255,251,255,255,43,117,12,199,133,128,251,255,255,1,0,0,0,235,10,199,133,128,251,255,255,0,0,0,0,139,149,128,251,255,255,137,149,208,251,255,255,128,189,255,251,255,255,101,116,9,128,189,255,251,255,255,69,117,12,199, 133,132,251,255,255,1,0,0,0,235,10,199,133,132,251,255,255,0,0,0,0,139,133,132,251,255,255,137,133,204,251,255,255,131,189,236,251,255,255,0,117,87,131,189,212,251,255,255,0,116,15,199,133,236,251,255,255,1,0,0,0,233,22,2,0,0,131,189,220,251,255,255, 0,116,15,199,133,236,251,255,255,2,0,0,0,233,254,1,0,0,131,189,216,251,255,255,0,116,15,199,133,236,251,255,255,3,0,0,0,233,230,1,0,0,199,133,236,251,255,255,255,255,255,255,233,215,1,0,0,131,189,236,251,255,255,1,117,63,131,189,220,251,255,255,0,116, 15,199,133,236,251,255,255,2,0,0,0,233,182,1,0,0,131,189,216,251,255,255,0,116,15,199,133,236,251,255,255,3,0,0,0,233,158,1,0,0,199,133,236,251,255,255,255,255,255,255,233,143,1,0,0,131,189,236,251,255,255,2,117,76,131,189,216,251,255,255,0,116,15,199, 133,236,251,255,255,4,0,0,0,233,110,1,0,0,131,189,204,251,255,255,0,116,15,199,133,236,251,255,255,6,0,0,0,233,86,1,0,0,131,189,220,251,255,255,0,15,133,73,1,0,0,199,133,236,251,255,255,255,255,255,255,233,58,1,0,0,131,189,236,251,255,255,3,117,39,131, 189,220,251,255,255,0,116,15,199,133,236,251,255,255,5,0,0,0,233,25,1,0,0,199,133,236,251,255,255,255,255,255,255,233,10,1,0,0,131,189,236,251,255,255,4,117,63,131,189,220,251,255,255,0,116,15,199,133,236,251,255,255,5,0,0,0,233,233,0,0,0,131,189,204, 251,255,255,0,116,15,199,133,236,251,255,255,6,0,0,0,233,209,0,0,0,199,133,236,251,255,255,255,255,255,255,233,194,0,0,0,131,189,236,251,255,255,5,117,52,131,189,204,251,255,255,0,116,15,199,133,236,251,255,255,6,0,0,0,233,161,0,0,0,131,189,220,251,255, 255,0,15,133,148,0,0,0,199,133,236,251,255,255,255,255,255,255,233,133,0,0,0,131,189,236,251,255,255,6,117,54,131,189,208,251,255,255,0,116,12,199,133,236,251,255,255,7,0,0,0,235,103,131,189,220,251,255,255,0,116,12,199,133,236,251,255,255,8,0,0,0,235, 82,199,133,236,251,255,255,255,255,255,255,235,70,131,189,236,251,255,255,7,117,33,131,189,220,251,255,255,0,116,12,199,133,236,251,255,255,8,0,0,0,235,40,199,133,236,251,255,255,255,255,255,255,235,28,131,189,236,251,255,255,8,117,19,131,189,220,251, 255,255,0,117,10,199,133,236,251,255,255,255,255,255,255,131,189,228,251,255,255,0,117,63,128,189,255,251,255,255,36,117,54,72,139,133,176,251,255,255,72,59,133,168,251,255,255,116,38,72,139,133,176,251,255,255,15,182,0,60,47,126,24,72,139,133,176,251, 255,255,15,182,0,60,57,127,10,199,133,224,251,255,255,1,0,0,0,131,189,232,251,255,255,0,117,7,72,255,133,192,251,255,255,72,139,133,176,251,255,255,72,59,133,168,251,255,255,116,117,72,139,133,192,251,255,255,72,59,133,184,251,255,255,116,101,131,189, 232,251,255,255,0,15,133,44,252,255,255,72,139,133,176,251,255,255,15,182,0,60,32,116,74,72,139,133,176,251,255,255,15,182,0,60,10,116,60,72,139,133,176,251,255,255,15,182,0,60,13,116,46,72,139,133,176,251,255,255,15,182,0,60,9,116,32,72,139,133,176, 251,255,255,15,182,0,60,44,116,18,72,139,133,176,251,255,255,15,182,0,60,59,15,133,212,251,255,255,72,139,133,192,251,255,255,198,0,0,131,189,236,251,255,255,2,116,27,131,189,236,251,255,255,4,116,18,131,189,236,251,255,255,5,116,9,131,189,236,251,255, 255,8,117,46,72,139,133,160,251,255,255,199,0,1,0,0,0,72,141,189,0,252,255,255,232,192,136,2,0,242,15,90,192,72,139,133,160,251,255,255,243,15,17,64,8,233,244,0,0,0,131,189,224,251,255,255,0,15,132,192,0,0,0,15,182,133,0,252,255,255,60,36,116,10,199, 133,224,251,255,255,0,0,0,0,72,141,133,0,252,255,255,72,255,192,72,137,133,192,251,255,255,235,45,72,139,133,192,251,255,255,15,182,0,60,47,126,14,72,139,133,192,251,255,255,15,182,0,60,57,126,10,199,133,224,251,255,255,0,0,0,0,72,255,133,192,251,255, 255,72,139,133,192,251,255,255,15,182,0,132,192,117,197,131,189,224,251,255,255,0,116,43,72,139,133,160,251,255,255,199,0,8,0,0,0,72,141,133,0,252,255,255,72,141,120,1,232,27,136,2,0,137,194,72,139,133,160,251,255,255,137,80,8,235,80,72,139,133,160,251, 255,255,199,0,9,0,0,0,72,141,189,0,252,255,255,232,212,110,0,0,72,137,194,72,139,133,160,251,255,255,72,137,80,8,235,39,72,139,133,160,251,255,255,199,0,2,0,0,0,72,141,189,0,252,255,255,232,171,110,0,0,72,137,194,72,139,133,160,251,255,255,72,137,80, 8,72,131,133,160,251,255,255,16,255,133,244,251,255,255,139,133,244,251,255,255,59,133,248,251,255,255,117,100,139,133,248,251,255,255,72,152,72,137,194,72,193,226,5,139,133,248,251,255,255,72,152,72,137,198,72,193,230,4,72,139,133,152,251,255,255,72, 139,120,8,232,100,137,0,0,72,137,194,72,139,133,152,251,255,255,72,137,80,8,209,165,248,251,255,255,72,139,133,152,251,255,255,72,139,80,8,139,133,244,251,255,255,72,152,72,193,224,4,72,141,4,2,72,137,133,160,251,255,255,72,139,133,176,251,255,255,72, 59,133,168,251,255,255,116,5,233,243,248,255,255,139,133,244,251,255,255,72,152,72,137,194,72,193,226,4,139,133,248,251,255,255,72,152,72,137,198,72,193,230,4,72,139,133,152,251,255,255,72,139,120,8,232,235,136,0,0,72,137,194,72,139,133,152,251,255,255, 72,137,80,8,72,139,149,152,251,255,255,139,133,244,251,255,255,137,2,72,139,5,168,242,4,0,72,139,85,248,72,51,16,116,5,232,128,134,2,0,201,195,85,72,137,229,72,129,236,64,4,0,0,72,137,189,216,251,255,255,72,137,181,208,251,255,255,72,137,149,200,251, 255,255,72,139,5,113,242,4,0,72,139,16,72,137,85,248,49,210,191,0,0,0,0,232,139,135,0,0,72,137,133,248,251,255,255,199,133,12,252,255,255,0,0,0,0,72,139,133,216,251,255,255,72,139,64,8,72,137,133,232,251,255,255,72,139,133,216,251,255,255,139,0,137,133, 8,252,255,255,233,104,1,0,0,72,139,133,232,251,255,255,139,0,131,248,4,116,14,72,139,133,232,251,255,255,139,0,131,248,5,117,44,131,189,12,252,255,255,0,116,35,72,139,149,248,251,255,255,72,255,202,139,133,12,252,255,255,72,152,72,141,4,2,15,182,0,60, 32,117,6,255,141,12,252,255,255,72,141,181,16,252,255,255,72,139,189,232,251,255,255,186,232,3,0,0,232,188,239,255,255,72,141,189,16,252,255,255,232,213,135,2,0,137,194,139,133,12,252,255,255,141,4,2,255,192,137,133,4,252,255,255,139,133,4,252,255,255, 72,99,208,139,133,12,252,255,255,72,99,240,72,139,189,248,251,255,255,232,169,135,0,0,72,137,133,240,251,255,255,72,131,189,240,251,255,255,0,15,132,201,0,0,0,72,139,133,240,251,255,255,72,137,133,248,251,255,255,72,199,192,255,255,255,255,72,131,248, 255,116,39,72,199,194,255,255,255,255,139,133,12,252,255,255,72,152,72,137,199,72,3,189,248,251,255,255,72,141,181,16,252,255,255,232,39,133,2,0,235,30,139,133,12,252,255,255,72,152,72,137,199,72,3,189,248,251,255,255,72,141,181,16,252,255,255,232,11, 1,0,0,139,133,4,252,255,255,137,133,12,252,255,255,72,139,133,232,251,255,255,139,0,131,248,4,117,27,72,139,149,248,251,255,255,72,255,202,139,133,12,252,255,255,72,152,72,141,4,2,198,0,10,235,25,72,139,149,248,251,255,255,72,255,202,139,133,12,252,255, 255,72,152,72,141,4,2,198,0,32,72,131,133,232,251,255,255,16,255,141,8,252,255,255,131,189,8,252,255,255,255,15,133,133,254,255,255,131,189,12,252,255,255,0,116,98,72,139,149,248,251,255,255,72,255,202,139,133,12,252,255,255,72,152,72,141,4,2,15,182, 0,60,32,117,69,139,133,12,252,255,255,255,200,72,99,208,139,133,12,252,255,255,72,99,240,72,139,189,248,251,255,255,232,133,134,0,0,72,137,133,240,251,255,255,72,131,189,240,251,255,255,0,116,20,72,139,133,240,251,255,255,72,137,133,248,251,255,255,255, 141,12,252,255,255,72,139,149,208,251,255,255,72,139,133,248,251,255,255,72,137,2,72,139,149,200,251,255,255,139,133,12,252,255,255,137,2,72,139,5,26,240,4,0,72,139,85,248,72,51,16,116,5,232,242,131,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125, 248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,216,131,2,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,72,139,69,232,139,0,3,69,228,137,69,252,139,69,252,72,152,72,137,194,72,193,226,4, 72,139,69,232,139,0,72,152,72,137,198,72,193,230,4,72,139,69,232,72,139,120,8,232,188,133,0,0,72,137,69,240,72,131,125,240,0,116,48,72,139,85,232,72,139,69,240,72,137,66,8,72,139,69,232,72,139,80,8,72,139,69,232,139,0,72,152,72,193,224,4,72,141,4,2,72, 137,69,240,139,69,228,137,69,248,235,51,72,141,61,131,228,2,0,184,0,0,0,0,232,201,97,1,0,235,50,72,139,77,240,72,139,85,216,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,131,69,216,16,72,131,69,240,16,255,77,248,131,125,248,255,117,215,72,139,85,232,139, 69,252,137,2,201,195,85,72,137,229,72,129,236,96,7,0,0,72,137,189,216,248,255,255,72,137,149,96,255,255,255,72,137,141,104,255,255,255,76,137,133,112,255,255,255,76,137,141,120,255,255,255,15,182,192,72,137,133,168,248,255,255,72,139,149,168,248,255, 255,72,141,4,149,0,0,0,0,72,141,21,59,0,0,0,72,137,149,168,248,255,255,72,41,133,168,248,255,255,72,141,69,255,72,139,149,168,248,255,255,255,226,15,41,120,241,15,41,112,225,15,41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72,145,15,41,64,129, 72,137,181,208,248,255,255,72,141,133,224,248,255,255,72,137,133,64,255,255,255,199,133,76,255,255,255,0,0,0,0,72,139,133,208,248,255,255,72,137,133,56,255,255,255,72,141,133,32,255,255,255,199,0,16,0,0,0,72,141,133,32,255,255,255,199,64,4,48,0,0,0,72, 141,133,32,255,255,255,72,141,85,16,72,137,80,8,72,141,133,32,255,255,255,72,141,149,80,255,255,255,72,137,80,16,131,189,76,255,255,255,99,126,27,190,100,0,0,0,72,141,61,92,227,2,0,184,0,0,0,0,232,130,96,1,0,233,29,2,0,0,72,139,133,56,255,255,255,15, 182,0,15,190,192,137,133,180,248,255,255,72,255,133,56,255,255,255,131,189,180,248,255,255,102,15,132,188,0,0,0,131,189,180,248,255,255,102,127,31,131,189,180,248,255,255,44,15,132,178,1,0,0,131,189,180,248,255,255,59,15,132,136,1,0,0,233,206,1,0,0,131, 189,180,248,255,255,105,116,18,131,189,180,248,255,255,115,15,132,251,0,0,0,233,179,1,0,0,72,139,133,64,255,255,255,199,0,1,0,0,0,139,133,32,255,255,255,131,248,48,115,42,72,139,149,48,255,255,255,139,133,32,255,255,255,137,192,72,1,194,72,137,149,184, 248,255,255,139,133,32,255,255,255,131,192,8,137,133,32,255,255,255,235,25,72,139,133,40,255,255,255,72,137,133,184,248,255,255,72,131,192,8,72,137,133,40,255,255,255,72,139,133,184,248,255,255,139,0,243,15,42,192,72,139,133,64,255,255,255,243,15,17, 64,8,233,39,1,0,0,72,139,133,64,255,255,255,199,0,1,0,0,0,139,133,36,255,255,255,61,176,0,0,0,115,42,72,139,149,48,255,255,255,139,133,36,255,255,255,137,192,72,1,194,72,137,149,192,248,255,255,139,133,36,255,255,255,131,192,16,137,133,36,255,255,255, 235,25,72,139,133,40,255,255,255,72,137,133,192,248,255,255,72,131,192,8,72,137,133,40,255,255,255,72,139,133,192,248,255,255,242,15,16,0,242,15,90,192,72,139,133,64,255,255,255,243,15,17,64,8,233,170,0,0,0,72,139,133,64,255,255,255,199,0,2,0,0,0,139, 133,32,255,255,255,131,248,48,115,42,72,139,149,48,255,255,255,139,133,32,255,255,255,137,192,72,1,194,72,137,149,200,248,255,255,139,133,32,255,255,255,131,192,8,137,133,32,255,255,255,235,25,72,139,133,40,255,255,255,72,137,133,200,248,255,255,72,131, 192,8,72,137,133,40,255,255,255,72,139,133,200,248,255,255,72,139,16,72,139,133,64,255,255,255,72,137,80,8,235,56,72,139,133,64,255,255,255,199,0,4,0,0,0,72,139,133,64,255,255,255,199,64,8,0,0,0,0,235,27,72,139,133,64,255,255,255,199,0,5,0,0,0,72,139, 133,64,255,255,255,199,64,8,0,0,0,0,72,131,133,64,255,255,255,16,255,133,76,255,255,255,233,191,253,255,255,72,141,149,224,248,255,255,139,181,76,255,255,255,72,139,189,216,248,255,255,232,235,251,255,255,201,195,85,72,137,229,72,129,236,48,4,0,0,72, 137,189,232,251,255,255,72,137,181,224,251,255,255,72,139,5,173,235,4,0,72,139,16,72,137,85,248,49,210,232,35,239,255,255,72,137,133,0,252,255,255,72,139,133,224,251,255,255,72,139,80,8,72,139,133,224,251,255,255,139,48,72,139,189,0,252,255,255,232,148, 251,255,255,199,133,12,252,255,255,0,0,0,0,72,139,133,0,252,255,255,72,139,64,8,72,137,133,248,251,255,255,233,19,2,0,0,72,139,133,248,251,255,255,139,0,137,133,220,251,255,255,131,189,220,251,255,255,9,15,135,216,1,0,0,139,133,220,251,255,255,72,141, 20,133,0,0,0,0,72,141,5,22,0,0,0,72,141,4,2,139,0,72,99,208,72,141,5,6,0,0,0,72,141,4,2,255,224,173,1,0,0,190,1,0,0,31,1,0,0,173,1,0,0,40,0,0,0,84,0,0,0,173,1,0,0,173,1,0,0,128,0,0,0,219,0,0,0,72,139,133,248,251,255,255,199,0,2,0,0,0,72,141,61,196,177, 2,0,232,221,101,0,0,72,137,194,72,139,133,248,251,255,255,72,137,80,8,233,106,1,0,0,72,139,133,248,251,255,255,199,0,2,0,0,0,72,141,61,172,223,2,0,232,177,101,0,0,72,137,194,72,139,133,248,251,255,255,72,137,80,8,233,62,1,0,0,72,139,133,248,251,255,255, 139,64,8,72,141,189,16,252,255,255,65,137,192,72,141,13,137,223,2,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,65,126,2,0,72,139,133,248,251,255,255,199,0,2,0,0,0,72,141,189,16,252,255,255,232,86,101,0,0,72,137,194,72,139,133,248,251,255,255,72,137,80, 8,233,227,0,0,0,72,141,181,16,252,255,255,72,139,189,248,251,255,255,186,232,3,0,0,232,18,232,255,255,72,139,133,248,251,255,255,199,0,2,0,0,0,72,141,189,16,252,255,255,232,18,101,0,0,72,137,194,72,139,133,248,251,255,255,72,137,80,8,233,159,0,0,0,72, 139,133,248,251,255,255,72,139,64,8,72,139,56,72,141,53,204,176,2,0,232,229,127,2,0,133,192,117,41,72,139,133,248,251,255,255,199,0,2,0,0,0,72,141,61,175,176,2,0,232,200,100,0,0,72,137,194,72,139,133,248,251,255,255,72,137,80,8,235,88,72,139,133,248, 251,255,255,72,139,64,8,72,139,56,72,141,53,153,222,2,0,232,158,127,2,0,133,192,117,58,72,139,133,248,251,255,255,199,0,2,0,0,0,72,141,61,124,222,2,0,232,129,100,0,0,72,137,194,72,139,133,248,251,255,255,72,137,80,8,235,17,72,141,61,197,222,2,0,184,0, 0,0,0,232,245,95,1,0,255,133,12,252,255,255,72,131,133,248,251,255,255,16,72,139,133,0,252,255,255,139,0,59,133,12,252,255,255,15,143,216,253,255,255,72,139,133,0,252,255,255,72,139,80,8,72,139,133,0,252,255,255,139,48,72,139,189,232,251,255,255,232, 43,249,255,255,72,139,5,8,233,4,0,72,139,85,248,72,51,16,116,5,232,224,124,2,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,199,69,240,4,0,0,0,199,69,248,0,0,0,0,72,141,85,240,72,139,125,232,190,1,0,0,0,232,232,248,255,255,201,195,85,72,137,229, 72,131,236,80,72,137,125,200,137,117,196,72,137,85,184,72,139,69,200,139,0,3,69,196,137,69,252,139,69,252,72,152,72,137,194,72,193,226,4,72,139,69,200,139,0,72,152,72,137,198,72,193,230,4,72,139,69,200,72,139,120,8,232,162,126,0,0,72,137,69,232,72,131, 125,232,0,116,51,72,139,85,200,72,139,69,232,72,137,66,8,72,139,69,200,72,139,80,8,72,139,69,200,139,0,72,152,72,193,224,4,72,141,4,2,72,137,69,232,139,69,196,137,69,248,233,203,1,0,0,72,141,61,102,221,2,0,184,0,0,0,0,232,172,90,1,0,233,203,1,0,0,72, 139,69,184,139,0,131,248,2,15,133,134,1,0,0,72,139,69,184,72,139,64,8,72,139,0,72,137,69,224,72,139,125,224,72,141,53,246,174,2,0,232,15,126,2,0,133,192,117,26,72,139,69,232,199,0,4,0,0,0,72,139,69,232,199,64,8,0,0,0,0,233,66,1,0,0,72,139,125,224,72, 141,53,220,220,2,0,232,225,125,2,0,133,192,117,26,72,139,69,232,199,0,5,0,0,0,72,139,69,232,199,64,8,0,0,0,0,233,20,1,0,0,72,139,125,224,190,36,0,0,0,232,175,125,2,0,72,137,69,216,72,131,125,216,0,15,132,225,0,0,0,72,139,69,216,72,255,192,15,182,0,60, 47,15,142,207,0,0,0,72,139,69,216,72,255,192,15,182,0,60,57,15,143,189,0,0,0,199,69,244,0,0,0,0,72,139,69,224,15,182,0,60,36,116,9,199,69,244,1,0,0,0,235,59,72,139,69,224,72,255,192,72,137,69,216,235,35,72,139,69,216,15,182,0,60,47,126,11,72,139,69,216, 15,182,0,60,57,126,9,199,69,244,1,0,0,0,235,15,72,255,69,216,72,139,69,216,15,182,0,132,192,117,210,131,125,244,0,116,32,72,139,69,232,199,0,9,0,0,0,72,139,125,224,232,19,98,0,0,72,137,194,72,139,69,232,72,137,80,8,235,87,199,69,240,0,0,0,0,72,139,69, 184,72,139,64,8,72,139,0,72,141,120,1,72,141,85,240,72,141,53,211,143,2,0,184,0,0,0,0,232,201,124,2,0,72,139,69,232,199,0,8,0,0,0,139,85,240,72,139,69,232,137,80,8,235,22,72,139,77,232,72,139,85,184,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,131,69, 184,16,235,27,72,139,77,232,72,139,85,184,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,131,69,184,16,72,131,69,232,16,255,77,248,131,125,248,255,15,133,62,254,255,255,72,139,85,200,139,69,252,137,2,201,195,85,72,137,229,72,131,236,32,72,137,125,232,199, 69,248,0,0,0,0,199,69,244,1,0,0,0,199,69,252,0,0,0,0,235,119,131,125,244,0,116,35,131,125,248,0,116,5,232,72,88,1,0,72,141,61,247,142,2,0,184,0,0,0,0,232,15,86,1,0,199,69,248,1,0,0,0,72,139,69,232,72,139,80,8,139,69,252,72,152,72,193,224,4,72,141,52, 2,191,1,0,0,0,232,48,87,1,0,72,139,69,232,72,139,80,8,139,69,252,72,152,72,193,224,4,72,141,4,2,139,0,131,248,4,117,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,255,69,252,72,139,69,232,139,0,59,69,252,15,143,122,255,255,255,131,125,248,0,116,5,232, 200,87,1,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,139,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,64,8,201,195,85,72,137,229,72,131,236,96,72,137,125,216,72,137,117,208,68,137,69,188,76,137,77,176,137,85,192,72,137,77,200, 72,139,125,216,232,150,121,2,0,137,69,248,199,69,244,0,0,0,0,72,139,69,216,72,137,69,232,72,139,69,232,15,182,0,136,69,255,72,139,69,208,198,0,0,235,17,72,139,69,232,15,182,0,136,69,255,72,255,69,232,255,69,244,128,125,255,0,116,12,128,125,255,47,126, 6,128,125,255,57,126,221,72,139,69,232,72,59,69,216,117,45,72,199,194,255,255,255,255,72,139,125,208,72,141,13,124,218,2,0,190,0,0,0,0,184,0,0,0,0,232,207,120,2,0,199,69,172,0,0,0,0,233,139,0,0,0,131,125,248,0,120,8,139,69,248,59,69,188,126,56,131,125, 16,0,117,9,199,69,172,0,0,0,0,235,110,72,199,194,255,255,255,255,139,69,248,72,139,125,208,65,137,192,72,141,13,194,217,2,0,190,0,0,0,0,184,0,0,0,0,232,127,120,2,0,235,61,131,125,248,0,117,20,72,139,117,208,72,141,125,192,186,243,1,0,0,232,122,226,255, 255,235,35,72,139,85,176,72,131,234,16,139,69,248,72,152,72,193,224,4,72,141,60,2,72,139,117,208,186,243,1,0,0,232,85,226,255,255,139,69,244,255,200,137,69,172,139,69,172,201,195,85,72,137,229,72,129,236,80,8,0,0,72,137,189,232,247,255,255,137,181,228, 247,255,255,72,137,149,216,247,255,255,137,141,212,247,255,255,72,139,5,39,228,4,0,72,139,16,72,137,85,248,49,210,72,139,133,232,247,255,255,72,139,0,72,137,133,16,248,255,255,199,133,28,248,255,255,0,0,0,0,199,133,24,248,255,255,232,3,0,0,199,133,240, 247,255,255,1,0,0,0,232,84,67,252,255,243,15,42,192,243,15,17,133,248,247,255,255,235,16,139,133,24,248,255,255,72,152,198,132,5,32,248,255,255,0,255,141,24,248,255,255,131,189,24,248,255,255,255,117,225,72,139,189,16,248,255,255,190,36,0,0,0,232,180, 121,2,0,72,137,133,8,248,255,255,72,131,189,8,248,255,255,0,116,25,72,139,133,8,248,255,255,72,139,149,16,248,255,255,72,41,208,72,61,231,3,0,0,126,19,72,139,141,232,247,255,255,72,137,141,200,247,255,255,233,143,1,0,0,72,139,149,8,248,255,255,72,139, 133,16,248,255,255,72,137,209,72,41,193,72,137,200,72,137,194,72,139,181,16,248,255,255,72,141,189,32,248,255,255,185,232,3,0,0,232,53,119,2,0,72,139,133,8,248,255,255,72,255,192,72,137,133,16,248,255,255,233,218,0,0,0,131,189,212,247,255,255,0,117,36, 131,189,28,248,255,255,0,117,27,15,182,133,16,252,255,255,132,192,117,16,72,199,133,200,247,255,255,0,0,0,0,233,26,1,0,0,72,141,181,16,252,255,255,72,141,189,32,248,255,255,185,232,3,0,0,186,243,1,0,0,232,213,118,2,0,139,133,28,248,255,255,72,152,72, 1,133,16,248,255,255,72,139,189,16,248,255,255,190,36,0,0,0,232,197,120,2,0,72,137,133,8,248,255,255,72,131,189,8,248,255,255,0,116,69,72,139,149,8,248,255,255,72,139,133,16,248,255,255,72,137,209,72,41,193,72,137,200,72,137,194,72,139,181,16,248,255, 255,72,141,189,32,248,255,255,185,232,3,0,0,232,114,118,2,0,72,139,133,8,248,255,255,72,255,192,72,137,133,16,248,255,255,235,26,72,139,181,16,248,255,255,72,141,189,32,248,255,255,186,232,3,0,0,232,59,118,2,0,235,90,72,139,149,216,247,255,255,139,141, 228,247,255,255,139,181,240,247,255,255,72,139,189,248,247,255,255,76,141,149,16,252,255,255,76,139,157,16,248,255,255,139,133,212,247,255,255,137,4,36,73,137,209,65,137,200,137,242,72,137,249,76,137,214,76,137,223,232,124,252,255,255,137,133,28,248, 255,255,131,189,28,248,255,255,0,15,137,204,254,255,255,72,141,189,32,248,255,255,232,245,92,0,0,72,137,133,200,247,255,255,72,139,133,200,247,255,255,72,139,21,210,225,4,0,72,139,77,248,72,51,10,116,5,232,170,117,2,0,201,195,85,72,137,229,72,129,236, 208,0,0,0,72,137,189,88,255,255,255,72,137,181,80,255,255,255,137,149,76,255,255,255,72,137,141,64,255,255,255,72,139,133,88,255,255,255,72,139,64,8,72,137,69,208,72,139,133,88,255,255,255,139,0,137,69,252,199,69,244,0,0,0,0,131,125,252,5,127,16,72,141, 133,96,255,255,255,72,137,69,224,233,203,0,0,0,72,141,5,93,66,5,0,72,57,133,80,255,255,255,117,11,139,69,252,137,69,244,233,136,0,0,0,72,131,189,80,255,255,255,0,116,12,199,133,52,255,255,255,0,0,0,0,235,10,199,133,52,255,255,255,255,255,255,255,139, 133,52,255,255,255,137,69,236,199,69,240,0,0,0,0,235,78,139,69,240,72,152,72,193,224,4,72,3,69,208,139,0,131,248,4,117,9,199,69,236,255,255,255,255,235,46,139,69,240,72,152,72,193,224,4,72,3,69,208,139,0,131,248,5,117,9,199,69,236,0,0,0,0,235,17,255, 69,236,139,69,236,59,69,244,126,6,139,69,236,137,69,244,255,69,240,139,69,240,59,69,252,124,170,131,125,244,5,127,13,72,141,133,96,255,255,255,72,137,69,224,235,21,139,69,244,72,152,72,137,199,72,193,231,4,232,202,117,0,0,72,137,69,224,72,139,69,224, 72,137,69,216,233,144,1,0,0,255,77,252,72,131,69,208,16,131,125,252,0,116,22,72,139,69,208,139,0,131,248,4,116,231,72,139,69,208,139,0,131,248,5,116,220,131,125,252,0,15,132,112,1,0,0,72,139,69,208,139,0,131,248,8,15,133,157,0,0,0,72,139,69,208,139,64, 8,133,192,126,15,72,139,69,208,139,64,8,59,133,76,255,255,255,126,29,72,139,69,208,139,112,8,72,141,61,167,213,2,0,184,0,0,0,0,232,149,82,1,0,233,247,0,0,0,72,139,149,64,255,255,255,72,131,234,16,72,139,69,208,139,64,8,72,152,72,193,224,4,72,141,4,2, 139,0,131,248,2,116,29,72,139,69,208,139,112,8,72,141,61,143,213,2,0,184,0,0,0,0,232,85,82,1,0,233,183,0,0,0,72,139,149,64,255,255,255,72,131,234,16,72,139,69,208,139,64,8,72,152,72,193,224,4,72,141,4,2,72,139,64,8,72,137,69,192,235,96,72,139,69,208, 139,0,131,248,9,117,72,72,139,69,208,72,139,120,8,72,139,149,64,255,255,255,139,181,76,255,255,255,185,0,0,0,0,232,53,251,255,255,72,137,69,192,72,131,125,192,0,117,43,72,139,69,208,72,139,64,8,72,139,48,72,141,61,67,213,2,0,184,0,0,0,0,232,217,81,1, 0,235,62,72,139,125,208,232,108,219,255,255,72,137,69,192,72,139,69,192,72,139,64,8,72,137,133,80,255,255,255,72,131,189,80,255,255,255,0,117,51,72,139,69,192,72,139,48,72,141,61,38,213,2,0,184,0,0,0,0,232,153,81,1,0,72,131,69,208,16,255,77,252,131,125, 252,0,116,23,72,139,69,208,139,0,131,248,4,117,231,235,10,72,131,69,208,16,255,77,252,235,14,72,131,189,80,255,255,255,0,15,132,106,254,255,255,131,125,252,0,15,132,78,3,0,0,199,69,248,0,0,0,0,72,139,133,80,255,255,255,72,137,69,200,131,125,252,0,15, 132,142,2,0,0,72,139,69,208,139,0,137,133,56,255,255,255,131,189,56,255,255,255,9,15,135,74,2,0,0,139,133,56,255,255,255,72,141,20,133,0,0,0,0,72,141,5,22,0,0,0,72,141,4,2,139,0,72,99,208,72,141,5,6,0,0,0,72,141,4,2,255,224,31,2,0,0,165,0,0,0,165,0,0, 0,31,2,0,0,40,0,0,0,107,0,0,0,31,2,0,0,31,2,0,0,192,0,0,0,150,1,0,0,72,141,5,85,63,5,0,72,57,133,80,255,255,255,117,38,72,139,69,216,199,0,2,0,0,0,72,141,61,43,165,2,0,232,68,89,0,0,72,137,194,72,139,69,216,72,137,80,8,233,215,1,0,0,72,199,69,200,0,0, 0,0,233,223,1,0,0,72,141,5,18,63,5,0,72,57,133,80,255,255,255,15,133,203,1,0,0,72,139,69,216,199,0,2,0,0,0,72,141,61,248,210,2,0,232,253,88,0,0,72,137,194,72,139,69,216,72,137,80,8,233,144,1,0,0,72,139,77,216,72,139,85,208,72,139,2,72,137,1,72,139,66, 8,72,137,65,8,233,117,1,0,0,72,139,69,208,139,64,8,133,192,126,65,72,139,69,208,139,64,8,59,133,76,255,255,255,127,50,72,139,149,64,255,255,255,72,131,234,16,72,139,69,208,139,64,8,72,152,72,193,224,4,72,1,194,72,139,77,216,72,139,2,72,137,1,72,139,66, 8,72,137,65,8,233,41,1,0,0,72,139,69,208,139,64,8,133,192,117,33,72,139,69,216,199,0,1,0,0,0,232,200,60,252,255,243,15,42,192,72,139,69,216,243,15,17,64,8,233,253,0,0,0,72,141,5,69,62,5,0,72,57,133,80,255,255,255,117,27,72,139,69,216,199,0,1,0,0,0,72, 139,85,216,184,0,0,0,0,137,66,8,233,210,0,0,0,72,139,69,208,139,112,8,72,141,61,35,211,2,0,184,0,0,0,0,232,129,79,1,0,72,139,69,216,199,0,1,0,0,0,72,139,85,216,184,0,0,0,0,137,66,8,233,159,0,0,0,72,141,5,231,61,5,0,72,57,133,80,255,255,255,15,148,192, 15,182,200,72,139,69,208,72,139,120,8,72,139,149,64,255,255,255,139,181,76,255,255,255,232,109,248,255,255,72,137,69,184,72,131,125,184,0,117,56,72,139,69,208,72,139,64,8,72,139,48,72,141,61,219,210,2,0,184,0,0,0,0,232,17,79,1,0,72,139,69,216,199,0,2, 0,0,0,72,139,69,208,72,139,80,8,72,139,69,216,72,137,80,8,235,46,72,139,69,216,199,0,2,0,0,0,72,139,85,216,72,139,69,184,72,137,66,8,235,22,72,141,61,183,210,2,0,184,0,0,0,0,232,247,82,1,0,233,185,0,0,0,72,131,69,216,16,255,77,252,72,131,69,208,16,255, 69,248,233,104,253,255,255,131,125,248,0,116,120,72,139,69,224,139,0,137,133,60,255,255,255,131,189,60,255,255,255,1,116,46,131,189,60,255,255,255,2,116,2,235,88,72,139,77,224,72,131,193,16,139,85,248,255,202,72,139,69,224,72,139,112,8,72,139,189,80, 255,255,255,232,172,91,0,0,235,53,131,125,248,1,117,23,72,139,69,224,243,15,16,64,8,72,139,189,80,255,255,255,232,197,150,0,0,235,24,72,139,77,224,139,85,248,72,139,189,80,255,255,255,190,0,0,0,0,232,34,151,0,0,72,139,69,224,72,137,69,216,131,125,252, 0,116,24,72,139,69,200,72,137,133,80,255,255,255,72,131,69,208,16,255,77,252,233,154,252,255,255,131,125,244,5,126,21,139,69,244,72,152,72,137,198,72,193,230,4,72,139,125,224,232,156,114,0,0,201,195,85,72,137,229,72,129,236,0,4,0,0,72,137,189,8,252,255, 255,137,181,4,252,255,255,72,139,5,90,219,4,0,72,139,16,72,137,85,248,49,210,72,141,181,16,252,255,255,72,139,189,8,252,255,255,232,12,41,1,0,139,181,4,252,255,255,72,141,189,16,252,255,255,184,0,0,0,0,232,87,112,2,0,72,139,21,32,219,4,0,72,139,77,248, 72,51,10,116,5,232,248,110,2,0,201,195,85,72,137,229,72,129,236,0,4,0,0,72,137,189,8,252,255,255,72,137,181,0,252,255,255,72,139,5,240,218,4,0,72,139,16,72,137,85,248,49,210,72,141,181,16,252,255,255,72,139,189,8,252,255,255,232,162,40,1,0,72,139,181, 0,252,255,255,72,141,189,16,252,255,255,232,97,111,2,0,72,139,21,186,218,4,0,72,139,77,248,72,51,10,116,5,232,146,110,2,0,201,195,85,72,137,229,72,129,236,48,4,0,0,72,137,189,232,251,255,255,72,137,181,224,251,255,255,72,137,149,216,251,255,255,137,141, 212,251,255,255,72,139,5,125,218,4,0,72,139,16,72,137,85,248,49,210,198,133,16,252,255,255,0,72,139,133,216,251,255,255,15,182,0,132,192,116,48,72,139,181,216,251,255,255,72,141,189,16,252,255,255,186,232,3,0,0,232,51,110,2,0,72,141,189,16,252,255,255, 186,232,3,0,0,72,141,53,160,208,2,0,232,27,110,2,0,72,139,181,224,251,255,255,72,141,189,16,252,255,255,186,232,3,0,0,232,3,110,2,0,72,141,189,16,252,255,255,190,0,0,0,0,232,141,254,255,255,137,133,12,252,255,255,131,189,12,252,255,255,0,121,59,72,139, 5,248,217,4,0,72,139,8,186,6,0,0,0,190,1,0,0,0,72,141,61,74,208,2,0,232,173,110,2,0,72,141,189,16,252,255,255,232,7,111,2,0,199,133,208,251,255,255,1,0,0,0,233,211,1,0,0,139,189,12,252,255,255,186,2,0,0,0,190,0,0,0,0,232,191,110,2,0,72,137,133,248,251, 255,255,72,131,189,248,251,255,255,0,120,55,139,189,12,252,255,255,186,0,0,0,0,190,0,0,0,0,232,153,110,2,0,72,133,192,120,29,72,139,189,248,251,255,255,232,157,110,0,0,72,137,133,240,251,255,255,72,131,189,240,251,255,255,0,117,70,72,139,5,96,217,4,0, 72,139,8,186,7,0,0,0,190,1,0,0,0,72,141,61,185,207,2,0,232,21,110,2,0,72,141,189,16,252,255,255,232,111,110,2,0,139,189,12,252,255,255,232,116,109,2,0,199,133,208,251,255,255,1,0,0,0,233,48,1,0,0,72,139,149,248,251,255,255,72,139,181,240,251,255,255, 139,189,12,252,255,255,232,162,110,2,0,137,133,8,252,255,255,139,133,8,252,255,255,72,152,72,59,133,248,251,255,255,125,106,72,139,5,234,216,4,0,72,139,56,139,133,8,252,255,255,72,139,141,248,251,255,255,139,149,12,252,255,255,65,137,192,72,141,53,63, 207,2,0,184,0,0,0,0,232,100,109,2,0,72,141,189,16,252,255,255,232,232,109,2,0,139,189,12,252,255,255,232,237,108,2,0,72,139,181,248,251,255,255,72,139,189,240,251,255,255,232,175,111,0,0,199,133,208,251,255,255,1,0,0,0,233,150,0,0,0,131,189,212,251,255, 255,0,116,75,199,133,4,252,255,255,0,0,0,0,235,46,139,133,4,252,255,255,72,152,72,3,133,240,251,255,255,15,182,0,60,10,117,18,139,133,4,252,255,255,72,152,72,3,133,240,251,255,255,198,0,59,255,133,4,252,255,255,139,133,4,252,255,255,72,152,72,59,133, 248,251,255,255,124,193,72,139,149,248,251,255,255,72,139,181,240,251,255,255,72,139,189,232,251,255,255,232,35,221,255,255,72,139,181,248,251,255,255,72,139,189,240,251,255,255,232,31,111,0,0,139,189,12,252,255,255,232,63,108,2,0,199,133,208,251,255, 255,0,0,0,0,139,133,208,251,255,255,72,139,21,220,215,4,0,72,139,77,248,72,51,10,116,5,232,180,107,2,0,201,195,85,72,137,229,72,129,236,48,4,0,0,72,137,189,248,251,255,255,72,137,181,240,251,255,255,72,137,149,232,251,255,255,137,141,228,251,255,255, 72,139,5,159,215,4,0,72,139,16,72,137,85,248,49,210,72,141,133,0,252,255,255,72,141,141,16,252,255,255,72,139,181,240,251,255,255,72,139,189,232,251,255,255,199,4,36,0,0,0,0,65,185,232,3,0,0,73,137,192,72,141,21,51,128,2,0,232,208,109,252,255,137,133, 12,252,255,255,131,189,12,252,255,255,0,121,36,72,139,181,240,251,255,255,72,141,61,63,133,2,0,184,0,0,0,0,232,175,73,1,0,199,133,224,251,255,255,1,0,0,0,235,69,139,189,12,252,255,255,232,108,107,2,0,72,139,181,0,252,255,255,139,141,228,251,255,255,72, 141,149,16,252,255,255,72,139,189,248,251,255,255,232,86,252,255,255,133,192,116,12,199,133,224,251,255,255,1,0,0,0,235,10,199,133,224,251,255,255,0,0,0,0,139,133,224,251,255,255,72,139,21,217,214,4,0,72,139,77,248,72,51,10,116,5,232,177,106,2,0,201, 195,85,72,137,229,72,129,236,48,4,0,0,72,137,189,248,251,255,255,72,137,181,240,251,255,255,72,137,149,232,251,255,255,137,141,228,251,255,255,72,139,5,156,214,4,0,72,139,16,72,137,85,248,49,210,72,141,133,0,252,255,255,72,141,141,16,252,255,255,72,139, 181,240,251,255,255,72,139,189,232,251,255,255,199,4,36,0,0,0,0,65,185,232,3,0,0,73,137,192,72,141,21,48,127,2,0,232,200,49,1,0,137,133,12,252,255,255,131,189,12,252,255,255,0,121,36,72,139,181,240,251,255,255,72,141,61,60,132,2,0,184,0,0,0,0,232,172, 72,1,0,199,133,224,251,255,255,1,0,0,0,235,69,139,189,12,252,255,255,232,105,106,2,0,72,139,181,0,252,255,255,139,141,228,251,255,255,72,141,149,16,252,255,255,72,139,189,248,251,255,255,232,83,251,255,255,133,192,116,12,199,133,224,251,255,255,1,0,0, 0,235,10,199,133,224,251,255,255,0,0,0,0,139,133,224,251,255,255,72,139,21,214,213,4,0,72,139,77,248,72,51,10,116,5,232,174,105,2,0,201,195,85,72,137,229,72,129,236,64,20,0,0,72,137,189,216,235,255,255,72,137,181,208,235,255,255,72,137,149,200,235,255, 255,137,141,196,235,255,255,72,139,5,153,213,4,0,72,139,16,72,137,85,248,49,210,72,199,133,248,235,255,255,0,0,0,0,72,141,133,16,236,255,255,72,137,133,240,235,255,255,72,141,133,16,236,255,255,72,5,0,16,0,0,72,137,133,232,235,255,255,199,133,8,236,255, 255,0,0,0,0,199,133,4,236,255,255,0,0,0,0,198,133,16,252,255,255,0,72,139,133,200,235,255,255,15,182,0,132,192,116,48,72,139,181,200,235,255,255,72,141,189,16,252,255,255,186,232,3,0,0,232,14,105,2,0,72,141,189,16,252,255,255,186,232,3,0,0,72,141,53, 123,203,2,0,232,246,104,2,0,72,139,181,208,235,255,255,72,141,189,16,252,255,255,186,232,3,0,0,232,222,104,2,0,72,139,189,208,235,255,255,232,0,107,2,0,72,3,133,208,235,255,255,72,141,120,252,72,141,53,36,207,2,0,232,221,106,2,0,133,192,116,39,72,139, 189,208,235,255,255,232,217,106,2,0,72,3,133,208,235,255,255,72,141,120,252,72,141,53,111,168,2,0,232,182,106,2,0,133,192,117,34,72,139,189,216,235,255,255,190,0,0,0,0,232,43,3,0,0,72,137,133,216,235,255,255,199,133,8,236,255,255,1,0,0,0,72,141,189,16, 252,255,255,72,141,53,70,175,2,0,232,95,249,255,255,72,137,133,248,235,255,255,72,131,189,248,235,255,255,0,117,49,72,139,5,95,212,4,0,72,139,8,186,6,0,0,0,190,1,0,0,0,72,141,61,177,202,2,0,232,20,105,2,0,72,141,189,16,252,255,255,232,34,76,1,0,233,115, 2,0,0,72,139,133,216,235,255,255,72,139,64,8,72,137,133,224,235,255,255,72,139,133,216,235,255,255,139,0,137,133,12,236,255,255,233,200,1,0,0,72,139,133,224,235,255,255,139,0,131,248,2,116,14,72,139,133,224,235,255,255,139,0,131,248,9,117,30,72,139,133, 224,235,255,255,72,139,64,8,72,139,56,232,242,105,2,0,131,192,80,137,133,0,236,255,255,235,10,199,133,0,236,255,255,40,0,0,0,72,139,149,232,235,255,255,72,139,133,240,235,255,255,72,41,194,139,133,0,236,255,255,72,152,72,57,194,125,86,72,139,149,240, 235,255,255,72,141,133,16,236,255,255,72,137,209,72,41,193,72,137,200,72,137,198,72,139,141,248,235,255,255,72,141,189,16,236,255,255,186,1,0,0,0,232,73,104,2,0,72,133,192,117,17,72,141,189,16,252,255,255,232,82,75,1,0,233,163,1,0,0,72,141,133,16,236, 255,255,72,137,133,240,235,255,255,72,139,133,224,235,255,255,139,0,131,248,4,116,14,72,139,133,224,235,255,255,139,0,131,248,5,117,40,72,141,133,16,236,255,255,72,59,133,240,235,255,255,115,24,72,139,133,240,235,255,255,72,255,200,15,182,0,60,32,117, 7,72,255,141,240,235,255,255,131,189,196,235,255,255,0,116,14,72,139,133,224,235,255,255,139,0,131,248,4,116,89,72,139,133,232,235,255,255,137,194,72,139,133,240,235,255,255,137,209,41,193,137,200,141,80,254,72,139,181,240,235,255,255,72,139,189,224, 235,255,255,232,189,208,255,255,72,139,189,240,235,255,255,232,214,104,2,0,137,133,0,236,255,255,139,133,0,236,255,255,72,152,72,1,133,240,235,255,255,139,133,0,236,255,255,1,133,4,236,255,255,72,139,133,224,235,255,255,139,0,131,248,4,116,18,131,189, 196,235,255,255,0,117,38,131,189,4,236,255,255,65,126,29,72,139,133,240,235,255,255,198,0,10,72,255,133,240,235,255,255,199,133,4,236,255,255,0,0,0,0,235,23,72,139,133,240,235,255,255,198,0,32,72,255,133,240,235,255,255,255,133,4,236,255,255,72,131,133, 224,235,255,255,16,255,141,12,236,255,255,131,189,12,236,255,255,255,15,133,37,254,255,255,72,139,149,240,235,255,255,72,141,133,16,236,255,255,72,137,209,72,41,193,72,137,200,72,137,198,72,139,141,248,235,255,255,72,141,189,16,236,255,255,186,1,0,0, 0,232,208,102,2,0,72,133,192,117,14,72,141,189,16,252,255,255,232,217,73,1,0,235,45,131,189,8,236,255,255,0,116,12,72,139,189,216,235,255,255,232,145,213,255,255,72,139,189,248,235,255,255,232,84,102,2,0,199,133,192,235,255,255,0,0,0,0,235,53,131,189, 8,236,255,255,0,116,12,72,139,189,216,235,255,255,232,100,213,255,255,72,131,189,248,235,255,255,0,116,12,72,139,189,248,235,255,255,232,29,102,2,0,199,133,192,235,255,255,1,0,0,0,139,133,192,235,255,255,72,139,21,120,209,4,0,72,139,77,248,72,51,10,116, 5,232,80,101,2,0,201,195,85,72,137,229,65,87,65,86,65,85,65,84,83,72,129,236,120,98,0,0,72,137,189,216,160,255,255,137,181,212,160,255,255,72,139,5,64,209,4,0,72,139,16,72,137,85,200,49,210,232,182,212,255,255,72,137,133,24,255,255,255,72,139,133,216, 160,255,255,72,139,64,8,72,137,133,16,255,255,255,72,139,133,216,160,255,255,139,0,72,152,72,137,133,8,255,255,255,72,199,133,248,254,255,255,0,0,0,0,72,199,133,240,254,255,255,0,0,0,0,72,199,133,224,254,255,255,0,0,0,0,184,0,0,32,65,137,133,92,255,255, 255,131,189,212,160,255,255,0,117,57,72,141,61,96,199,2,0,232,212,75,0,0,72,137,195,72,141,61,84,199,2,0,232,197,75,0,0,72,139,189,24,255,255,255,72,137,217,72,137,194,72,141,53,63,199,2,0,184,0,0,0,0,232,126,225,255,255,72,199,133,0,255,255,255,0,0, 0,0,233,40,50,0,0,72,139,133,0,255,255,255,137,133,88,255,255,255,235,6,255,133,88,255,255,255,139,133,88,255,255,255,72,152,72,59,133,8,255,255,255,125,26,139,133,88,255,255,255,72,152,72,193,224,4,72,3,133,16,255,255,255,139,0,131,248,4,117,207,139, 133,88,255,255,255,72,152,72,59,133,8,255,255,255,15,132,231,49,0,0,139,133,88,255,255,255,72,152,72,59,133,0,255,255,255,116,82,139,133,88,255,255,255,72,99,208,72,139,133,0,255,255,255,72,255,192,72,57,194,116,58,72,139,133,0,255,255,255,72,193,224, 4,72,3,133,16,255,255,255,139,0,131,248,2,117,33,72,139,149,16,255,255,255,72,131,194,16,72,139,133,0,255,255,255,72,193,224,4,72,141,4,2,139,0,131,248,2,116,22,139,133,88,255,255,255,255,192,72,152,72,137,133,0,255,255,255,233,90,49,0,0,139,149,88,255, 255,255,72,139,133,0,255,255,255,137,209,41,193,137,200,137,133,84,255,255,255,129,189,84,255,255,255,222,3,0,0,126,10,199,133,84,255,255,255,222,3,0,0,72,139,133,0,255,255,255,72,193,224,4,72,3,133,16,255,255,255,72,137,133,216,254,255,255,72,139,133, 216,254,255,255,72,139,64,8,72,139,0,72,137,133,208,254,255,255,72,139,133,216,254,255,255,72,131,192,16,72,139,64,8,72,139,0,72,137,133,200,254,255,255,131,189,212,160,255,255,0,15,132,206,23,0,0,72,199,133,232,254,255,255,0,0,0,0,233,48,1,0,0,72,139, 133,232,254,255,255,72,193,224,4,72,3,133,216,254,255,255,139,0,131,248,8,117,124,72,139,133,232,254,255,255,72,193,224,4,72,3,133,216,254,255,255,139,64,8,72,141,189,96,255,255,255,65,137,192,72,141,13,253,195,2,0,186,100,0,0,0,190,0,0,0,0,184,0,0,0, 0,232,181,98,2,0,72,139,133,232,254,255,255,72,193,224,4,72,3,133,216,254,255,255,199,0,2,0,0,0,72,139,133,232,254,255,255,72,193,224,4,72,137,195,72,3,157,216,254,255,255,72,141,189,96,255,255,255,232,170,73,0,0,72,137,67,8,233,148,0,0,0,72,139,133, 232,254,255,255,72,193,224,4,72,3,133,216,254,255,255,139,0,131,248,9,117,123,72,139,133,232,254,255,255,72,193,224,4,72,3,133,216,254,255,255,72,139,64,8,72,139,0,72,141,189,96,255,255,255,73,137,192,72,141,13,240,196,2,0,186,100,0,0,0,190,0,0,0,0,184, 0,0,0,0,232,28,98,2,0,72,139,133,232,254,255,255,72,193,224,4,72,3,133,216,254,255,255,199,0,2,0,0,0,72,139,133,232,254,255,255,72,193,224,4,72,137,195,72,3,157,216,254,255,255,72,141,189,96,255,255,255,232,17,73,0,0,72,137,67,8,72,255,133,232,254,255, 255,139,133,84,255,255,255,72,152,72,59,133,232,254,255,255,15,143,187,254,255,255,72,139,189,208,254,255,255,72,141,53,240,160,2,0,232,222,99,2,0,133,192,15,133,214,1,0,0,72,139,189,200,254,255,255,72,141,53,96,196,2,0,232,195,99,2,0,133,192,15,133, 187,1,0,0,72,129,189,248,254,255,255,231,3,0,0,126,36,72,141,61,72,196,2,0,184,0,0,0,0,232,69,60,1,0,72,139,133,24,255,255,255,72,137,133,192,157,255,255,233,127,47,0,0,72,139,149,248,254,255,255,72,139,133,240,254,255,255,72,137,132,213,96,223,255,255, 72,255,133,248,254,255,255,72,199,133,240,254,255,255,0,0,0,0,72,141,5,189,46,5,0,139,0,243,15,42,192,243,15,90,192,242,15,17,133,200,157,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,5,0,0,0,232,64,202,255,255,243,15,17,133,212,157,255, 255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,33,202,255,255,243,15,16,141,212,157,255,255,243,15,92,200,15,40,193,243,15,90,192,242,15,17,133,216,157,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,4,0,0,0,232,239, 201,255,255,243,15,17,133,228,157,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,208,201,255,255,243,15,16,149,228,157,255,255,243,15,92,208,15,40,194,243,15,90,192,242,15,17,133,232,157,255,255,72,139,149,216,254,255,255,139, 181,84,255,255,255,191,3,0,0,0,232,158,201,255,255,243,15,90,192,242,15,17,133,240,157,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,123,201,255,255,243,15,90,192,242,15,17,133,248,157,255,255,72,141,61,96,159,2,0,232,85,71, 0,0,72,137,195,72,141,61,88,159,2,0,232,70,71,0,0,72,139,189,24,255,255,255,242,15,16,165,200,157,255,255,242,15,16,157,216,157,255,255,242,15,16,149,232,157,255,255,242,15,16,141,240,157,255,255,242,15,16,133,248,157,255,255,72,137,217,72,137,194,72, 141,53,204,194,2,0,184,5,0,0,0,232,215,220,255,255,72,139,189,208,254,255,255,72,141,53,189,194,2,0,232,237,97,2,0,133,192,15,133,101,45,0,0,72,139,189,200,254,255,255,72,141,53,165,194,2,0,232,210,97,2,0,133,192,117,39,72,131,133,216,254,255,255,16, 255,141,84,255,255,255,72,139,133,216,254,255,255,72,131,192,16,72,139,64,8,72,139,0,72,137,133,200,254,255,255,131,189,84,255,255,255,6,15,142,124,1,0,0,72,139,189,200,254,255,255,72,141,53,97,194,2,0,232,135,97,2,0,133,192,15,133,97,1,0,0,72,139,133, 216,254,255,255,72,131,192,96,139,0,131,248,2,117,34,72,139,133,216,254,255,255,72,131,192,96,72,139,64,8,72,139,56,72,141,53,48,194,2,0,232,79,97,2,0,133,192,116,60,72,139,133,216,254,255,255,72,131,192,96,139,0,131,248,2,15,133,23,1,0,0,72,139,133, 216,254,255,255,72,131,192,96,72,139,64,8,72,139,56,72,141,53,0,194,2,0,232,23,97,2,0,133,192,15,133,241,0,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,7,0,0,0,232,133,200,255,255,73,137,196,72,141,61,216,173,2,0,232,233,69,0,0,73,137,197, 72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,221,199,255,255,243,15,90,192,242,15,17,133,0,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,186,199,255,255,243,15,90,192,242,15,17,133,8,158,255,255,72, 141,61,245,129,2,0,232,148,69,0,0,72,137,195,72,141,61,108,127,2,0,232,133,69,0,0,72,139,189,24,255,255,255,77,137,225,77,137,232,242,15,16,141,0,158,255,255,242,15,16,133,8,158,255,255,72,137,217,72,137,194,72,141,53,71,193,2,0,184,2,0,0,0,232,40,219, 255,255,72,131,189,248,254,255,255,0,116,7,72,255,141,248,254,255,255,72,139,133,248,254,255,255,72,139,132,197,96,223,255,255,72,137,133,240,254,255,255,72,255,133,240,254,255,255,233,158,43,0,0,72,139,189,200,254,255,255,72,141,53,4,193,2,0,232,11, 96,2,0,133,192,116,27,72,139,189,200,254,255,255,72,141,53,206,192,2,0,232,244,95,2,0,133,192,15,133,132,2,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,6,0,0,0,232,98,199,255,255,72,137,133,184,254,255,255,72,141,61,193,192,2,0,232,194,68, 0,0,72,59,133,184,254,255,255,116,25,72,141,61,180,192,2,0,232,173,68,0,0,72,59,133,184,254,255,255,15,133,138,0,0,0,72,199,133,232,254,255,255,7,0,0,0,235,108,72,139,133,232,254,255,255,72,193,224,4,72,3,133,216,254,255,255,139,0,131,248,2,117,76,72, 139,133,232,254,255,255,72,193,224,4,72,3,133,216,254,255,255,72,139,88,8,72,141,61,59,229,2,0,232,88,68,0,0,72,57,195,117,37,72,139,133,232,254,255,255,72,193,224,4,72,137,195,72,3,157,216,254,255,255,72,141,61,61,192,2,0,232,50,68,0,0,72,137,67,8,72, 255,133,232,254,255,255,139,133,84,255,255,255,72,152,72,59,133,232,254,255,255,127,131,72,141,61,23,192,2,0,232,10,68,0,0,72,59,133,184,254,255,255,117,19,72,141,61,8,192,2,0,232,245,67,0,0,72,137,133,184,254,255,255,199,133,224,160,255,255,2,0,0,0, 72,141,61,191,125,2,0,232,216,67,0,0,72,137,133,232,160,255,255,72,141,133,224,160,255,255,72,131,192,16,199,0,2,0,0,0,72,141,133,224,160,255,255,72,141,88,16,72,141,61,176,140,2,0,232,169,67,0,0,72,137,67,8,72,139,149,216,254,255,255,72,131,194,32,72, 139,2,72,137,133,0,161,255,255,72,139,66,8,72,137,133,8,161,255,255,72,139,149,216,254,255,255,72,131,194,48,72,139,2,72,137,133,16,161,255,255,72,139,66,8,72,137,133,24,161,255,255,72,141,133,224,160,255,255,72,131,192,64,199,0,2,0,0,0,72,141,133,224, 160,255,255,72,141,80,64,72,139,133,184,254,255,255,72,137,66,8,72,199,133,232,254,255,255,7,0,0,0,235,74,72,139,149,232,254,255,255,72,131,234,2,72,139,133,232,254,255,255,72,193,224,4,72,137,193,72,3,141,216,254,255,255,72,137,208,72,193,224,4,72,141, 85,208,72,1,208,72,141,144,16,161,255,255,72,139,1,72,137,2,72,139,65,8,72,137,66,8,72,255,133,232,254,255,255,139,133,84,255,255,255,72,152,72,59,133,232,254,255,255,127,165,139,133,84,255,255,255,72,152,72,193,224,4,72,137,194,72,141,133,224,160,255, 255,72,1,208,72,131,232,32,199,0,4,0,0,0,139,133,84,255,255,255,72,152,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,232,32,199,64,8,0,0,0,0,139,181,84,255,255,255,255,206,72,141,149,224,160,255,255,72,139,189,24,255,255,255,232, 130,215,255,255,72,255,133,240,254,255,255,233,232,40,0,0,72,139,189,200,254,255,255,72,141,53,78,170,2,0,232,85,93,2,0,133,192,116,27,72,139,189,200,254,255,255,72,141,53,205,164,2,0,232,62,93,2,0,133,192,15,133,162,1,0,0,199,133,224,160,255,255,2,0, 0,0,72,141,61,7,124,2,0,232,32,66,0,0,72,137,133,232,160,255,255,72,141,133,224,160,255,255,72,131,192,16,199,0,2,0,0,0,72,141,133,224,160,255,255,72,131,192,16,72,137,133,16,158,255,255,72,139,189,200,254,255,255,72,141,53,220,169,2,0,232,227,92,2,0, 133,192,116,16,72,141,13,72,126,2,0,72,137,141,24,158,255,255,235,14,72,141,5,198,154,2,0,72,137,133,24,158,255,255,72,139,189,24,158,255,255,232,181,65,0,0,72,139,149,16,158,255,255,72,137,66,8,72,139,149,216,254,255,255,72,131,194,32,72,139,2,72,137, 133,0,161,255,255,72,139,66,8,72,137,133,8,161,255,255,72,139,149,216,254,255,255,72,131,194,48,72,139,2,72,137,133,16,161,255,255,72,139,66,8,72,137,133,24,161,255,255,72,199,133,232,254,255,255,6,0,0,0,235,74,72,139,149,232,254,255,255,72,131,234,2, 72,139,133,232,254,255,255,72,193,224,4,72,137,193,72,3,141,216,254,255,255,72,137,208,72,193,224,4,72,141,85,208,72,1,208,72,141,144,16,161,255,255,72,139,1,72,137,2,72,139,65,8,72,137,66,8,72,255,133,232,254,255,255,139,133,84,255,255,255,72,152,72, 59,133,232,254,255,255,127,165,139,133,84,255,255,255,72,152,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,232,32,199,0,4,0,0,0,139,133,84,255,255,255,72,152,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,232, 32,199,64,8,0,0,0,0,139,181,84,255,255,255,255,206,72,141,149,224,160,255,255,72,139,189,24,255,255,255,232,174,213,255,255,72,255,133,240,254,255,255,233,20,39,0,0,72,139,189,200,254,255,255,72,141,53,159,188,2,0,232,129,91,2,0,133,192,15,133,173,0, 0,0,72,141,61,238,124,2,0,232,109,64,0,0,73,137,196,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,97,194,255,255,243,15,90,192,242,15,17,133,32,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,62,194,255, 255,243,15,90,192,242,15,17,133,40,158,255,255,72,141,61,31,137,2,0,232,24,64,0,0,72,137,195,72,141,61,240,121,2,0,232,9,64,0,0,72,139,189,24,255,255,255,77,137,224,242,15,16,141,32,158,255,255,242,15,16,133,40,158,255,255,72,137,217,72,137,194,72,141, 53,6,188,2,0,184,2,0,0,0,232,175,213,255,255,72,255,133,240,254,255,255,233,76,38,0,0,72,139,189,200,254,255,255,72,141,53,21,138,2,0,232,185,90,2,0,133,192,116,27,72,139,189,200,254,255,255,72,141,53,217,187,2,0,232,162,90,2,0,133,192,15,133,155,0,0, 0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,145,193,255,255,243,15,90,192,242,15,17,133,48,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,110,193,255,255,243,15,90,192,242,15,17,133,56,158,255,255, 72,141,61,43,164,2,0,232,72,63,0,0,72,137,195,72,141,61,32,121,2,0,232,57,63,0,0,72,139,189,24,255,255,255,242,15,16,141,48,158,255,255,242,15,16,133,56,158,255,255,72,137,217,72,137,194,72,141,53,80,187,2,0,184,2,0,0,0,232,226,212,255,255,72,255,133, 240,254,255,255,233,127,37,0,0,72,139,189,200,254,255,255,72,141,53,50,187,2,0,232,236,89,2,0,133,192,15,133,142,2,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,7,0,0,0,232,219,192,255,255,243,15,17,133,80,255,255,255,15,87,192,15,46,133, 80,255,255,255,115,2,235,11,184,0,0,128,63,137,133,80,255,255,255,72,141,61,195,140,2,0,232,160,62,0,0,72,137,195,72,141,61,180,140,2,0,232,145,62,0,0,73,137,196,72,141,61,165,140,2,0,232,130,62,0,0,73,137,197,72,139,149,216,254,255,255,139,181,84,255, 255,255,191,6,0,0,0,232,118,192,255,255,243,15,17,133,68,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,5,0,0,0,232,87,192,255,255,15,40,200,243,15,16,5,104,230,2,0,15,40,209,243,15,92,208,15,40,194,243,15,89,133,80,255,255,255,243, 15,88,133,68,158,255,255,243,15,90,192,242,15,17,133,72,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,6,0,0,0,232,15,192,255,255,243,15,90,192,242,15,17,133,80,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,5,0, 0,0,232,236,191,255,255,243,15,90,192,242,15,17,133,88,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,4,0,0,0,232,201,191,255,255,243,15,90,192,242,15,17,133,96,158,255,255,72,141,61,246,185,2,0,232,163,61,0,0,73,137,198,72,139,149, 216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,151,191,255,255,243,15,90,192,242,15,17,133,104,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,116,191,255,255,243,15,90,192,242,15,17,133,112,158,255,255,72,141,61, 85,134,2,0,232,78,61,0,0,73,137,199,72,141,61,38,119,2,0,232,63,61,0,0,72,137,194,72,139,189,24,255,255,255,72,184,0,0,0,0,0,0,240,63,72,137,68,36,80,184,0,0,0,0,72,137,68,36,72,72,184,0,0,0,0,0,0,240,191,72,137,68,36,64,72,184,0,0,0,0,0,0,240,191,72, 137,68,36,56,72,184,0,0,0,0,0,0,16,193,72,137,68,36,48,72,184,0,0,0,0,0,0,32,64,72,137,68,36,40,184,0,0,0,0,72,137,68,36,32,72,184,0,0,0,0,0,0,32,192,72,137,68,36,24,184,0,0,0,0,72,137,68,36,16,72,137,92,36,8,76,137,36,36,77,137,233,102,15,87,255,102, 15,87,246,242,15,16,173,72,158,255,255,242,15,16,165,80,158,255,255,242,15,16,157,88,158,255,255,242,15,16,149,96,158,255,255,77,137,240,242,15,16,141,104,158,255,255,242,15,16,133,112,158,255,255,76,137,249,72,141,53,190,184,2,0,184,8,0,0,0,232,57,210, 255,255,72,255,133,240,254,255,255,233,214,34,0,0,72,139,189,200,254,255,255,72,141,53,200,120,2,0,232,67,87,2,0,133,192,15,133,173,0,0,0,72,141,61,166,184,2,0,232,47,60,0,0,73,137,196,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232, 35,190,255,255,243,15,90,192,242,15,17,133,120,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,0,190,255,255,243,15,90,192,242,15,17,133,128,158,255,255,72,141,61,225,132,2,0,232,218,59,0,0,72,137,195,72,141,61,178,117,2, 0,232,203,59,0,0,72,139,189,24,255,255,255,77,137,224,242,15,16,141,120,158,255,255,242,15,16,133,128,158,255,255,72,137,217,72,137,194,72,141,53,200,183,2,0,184,2,0,0,0,232,113,209,255,255,72,255,133,240,254,255,255,233,14,34,0,0,72,139,189,200,254, 255,255,72,141,53,246,183,2,0,232,123,86,2,0,133,192,15,133,212,0,0,0,131,189,84,255,255,255,5,126,16,72,141,5,223,183,2,0,72,137,133,136,158,255,255,235,14,72,141,21,201,183,2,0,72,137,149,136,158,255,255,72,139,189,136,158,255,255,232,64,59,0,0,73, 137,196,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,52,189,255,255,243,15,90,192,242,15,17,133,144,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,17,189,255,255,243,15,90,192,242,15,17,133,152,158, 255,255,72,141,61,242,131,2,0,232,235,58,0,0,72,137,195,72,141,61,195,116,2,0,232,220,58,0,0,72,139,189,24,255,255,255,77,137,224,242,15,16,141,144,158,255,255,242,15,16,133,152,158,255,255,72,137,217,72,137,194,72,141,53,217,182,2,0,184,2,0,0,0,232, 130,208,255,255,72,255,133,240,254,255,255,233,31,33,0,0,72,139,189,200,254,255,255,72,141,53,11,136,2,0,232,140,85,2,0,133,192,15,133,212,0,0,0,131,189,84,255,255,255,5,126,16,72,141,13,254,182,2,0,72,137,141,160,158,255,255,235,14,72,141,5,222,135, 2,0,72,137,133,160,158,255,255,72,139,189,160,158,255,255,232,81,58,0,0,73,137,196,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,69,188,255,255,243,15,90,192,242,15,17,133,168,158,255,255,72,139,149,216,254,255,255,139,181,84,255, 255,255,191,2,0,0,0,232,34,188,255,255,243,15,90,192,242,15,17,133,176,158,255,255,72,141,61,3,131,2,0,232,252,57,0,0,72,137,195,72,141,61,212,115,2,0,232,237,57,0,0,72,139,189,24,255,255,255,77,137,224,242,15,16,141,168,158,255,255,242,15,16,133,176, 158,255,255,72,137,217,72,137,194,72,141,53,234,181,2,0,184,2,0,0,0,232,147,207,255,255,72,255,133,240,254,255,255,233,48,32,0,0,72,139,189,200,254,255,255,72,141,53,52,182,2,0,232,157,84,2,0,133,192,15,133,163,5,0,0,72,139,133,216,254,255,255,72,131, 192,32,72,139,64,8,72,139,0,72,137,133,192,254,255,255,72,139,189,192,254,255,255,72,141,53,253,117,2,0,232,105,84,2,0,133,192,15,133,78,2,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,7,0,0,0,232,88,187,255,255,243,15,17,133,76,255,255,255, 72,139,149,216,254,255,255,139,181,84,255,255,255,191,8,0,0,0,232,57,187,255,255,243,15,17,133,72,255,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,9,0,0,0,232,26,187,255,255,243,15,17,133,68,255,255,255,72,141,61,27,135,2,0,232,248,56, 0,0,72,137,195,72,141,61,12,135,2,0,232,233,56,0,0,73,137,196,72,141,61,253,134,2,0,232,218,56,0,0,73,137,197,243,15,16,133,76,255,255,255,243,15,88,133,68,255,255,255,243,15,90,192,242,15,17,133,184,158,255,255,243,15,90,133,68,255,255,255,242,15,17, 133,192,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,5,0,0,0,232,162,186,255,255,243,15,90,192,242,15,17,133,200,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,6,0,0,0,232,127,186,255,255,243,15,90,192,242,15,17, 133,208,158,255,255,72,141,61,29,132,2,0,232,89,56,0,0,73,137,198,72,139,149,216,254,255,255,139,181,84,255,255,255,191,4,0,0,0,232,77,186,255,255,243,15,90,192,242,15,17,133,216,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0, 0,232,42,186,255,255,243,15,90,192,242,15,17,133,224,158,255,255,72,141,61,11,129,2,0,232,4,56,0,0,73,137,199,72,141,61,220,113,2,0,232,245,55,0,0,72,137,194,72,139,189,24,255,255,255,72,184,0,0,0,0,0,0,240,63,72,137,68,36,80,184,0,0,0,0,72,137,68,36, 72,72,184,0,0,0,0,0,0,240,191,72,137,68,36,64,72,184,0,0,0,0,0,0,240,191,72,137,68,36,56,72,184,0,0,0,0,0,0,16,193,72,137,68,36,48,72,184,0,0,0,0,0,0,32,64,72,137,68,36,40,184,0,0,0,0,72,137,68,36,32,72,184,0,0,0,0,0,0,32,192,72,137,68,36,24,184,0,0, 0,0,72,137,68,36,16,72,137,92,36,8,76,137,36,36,77,137,233,102,15,87,255,102,15,87,246,242,15,16,173,184,158,255,255,242,15,16,165,192,158,255,255,242,15,16,157,200,158,255,255,242,15,16,149,208,158,255,255,77,137,240,242,15,16,141,216,158,255,255,242, 15,16,133,224,158,255,255,76,137,249,72,141,53,116,179,2,0,184,8,0,0,0,232,239,204,255,255,233,21,3,0,0,72,139,189,192,254,255,255,72,141,53,160,179,2,0,232,0,82,2,0,133,192,15,133,78,2,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,7,0,0, 0,232,239,184,255,255,243,15,17,133,64,255,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,8,0,0,0,232,208,184,255,255,243,15,17,133,60,255,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,9,0,0,0,232,177,184,255,255,243,15, 17,133,56,255,255,255,72,141,61,178,132,2,0,232,143,54,0,0,72,137,195,72,141,61,163,132,2,0,232,128,54,0,0,73,137,196,72,141,61,148,132,2,0,232,113,54,0,0,73,137,197,243,15,16,133,64,255,255,255,243,15,88,133,56,255,255,255,243,15,90,192,242,15,17,133, 232,158,255,255,243,15,90,141,56,255,255,255,242,15,17,141,240,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,6,0,0,0,232,57,184,255,255,243,15,90,192,242,15,17,133,248,158,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255, 191,5,0,0,0,232,22,184,255,255,243,15,90,192,242,15,17,133,0,159,255,255,72,141,61,67,178,2,0,232,240,53,0,0,73,137,198,72,139,149,216,254,255,255,139,181,84,255,255,255,191,4,0,0,0,232,228,183,255,255,243,15,90,192,242,15,17,133,8,159,255,255,72,139, 149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,193,183,255,255,243,15,90,192,242,15,17,133,16,159,255,255,72,141,61,162,126,2,0,232,155,53,0,0,73,137,199,72,141,61,115,111,2,0,232,140,53,0,0,72,137,194,72,139,189,24,255,255,255,72,184,0,0, 0,0,0,0,240,63,72,137,68,36,80,184,0,0,0,0,72,137,68,36,72,72,184,0,0,0,0,0,0,240,191,72,137,68,36,64,72,184,0,0,0,0,0,0,240,191,72,137,68,36,56,72,184,0,0,0,0,0,0,16,193,72,137,68,36,48,72,184,0,0,0,0,0,0,32,64,72,137,68,36,40,184,0,0,0,0,72,137,68, 36,32,72,184,0,0,0,0,0,0,32,192,72,137,68,36,24,184,0,0,0,0,72,137,68,36,16,72,137,92,36,8,76,137,36,36,77,137,233,102,15,87,255,102,15,87,246,242,15,16,173,232,158,255,255,242,15,16,165,240,158,255,255,242,15,16,157,248,158,255,255,242,15,16,149,0,159, 255,255,77,137,240,242,15,16,141,8,159,255,255,242,15,16,133,16,159,255,255,76,137,249,72,141,53,11,177,2,0,184,8,0,0,0,232,134,202,255,255,233,172,0,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,32,183,255,255,73,137,196,72,139, 149,216,254,255,255,139,181,84,255,255,255,191,4,0,0,0,232,135,182,255,255,243,15,90,192,242,15,17,133,24,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,100,182,255,255,243,15,90,192,242,15,17,133,32,159,255,255,72,141, 61,69,125,2,0,232,62,52,0,0,72,137,195,72,141,61,22,110,2,0,232,47,52,0,0,72,139,189,24,255,255,255,77,137,224,242,15,16,141,24,159,255,255,242,15,16,133,32,159,255,255,72,137,217,72,137,194,72,141,53,44,176,2,0,184,2,0,0,0,232,213,201,255,255,72,255, 133,240,254,255,255,233,114,26,0,0,72,139,189,200,254,255,255,72,141,53,221,113,2,0,232,223,78,2,0,133,192,116,27,72,139,189,200,254,255,255,72,141,53,112,176,2,0,232,200,78,2,0,133,192,15,133,64,26,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255, 191,5,0,0,0,232,183,181,255,255,243,15,90,192,242,15,17,133,40,159,255,255,243,72,15,42,149,240,254,255,255,243,15,17,149,52,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,4,0,0,0,232,131,181,255,255,243,15,16,141,52,159,255,255,243, 15,92,200,243,15,16,5,139,219,2,0,15,40,209,243,15,92,208,15,40,194,243,15,90,192,242,15,17,133,56,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,66,181,255,255,243,15,90,192,242,15,17,133,64,159,255,255,243,72,15,42,133, 240,254,255,255,243,15,17,133,76,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,14,181,255,255,243,15,16,141,76,159,255,255,243,15,92,200,243,15,16,5,22,219,2,0,15,40,209,243,15,92,208,15,40,194,243,15,90,192,242,15,17, 133,80,159,255,255,72,141,61,200,112,2,0,232,202,50,0,0,72,137,195,72,141,61,162,108,2,0,232,187,50,0,0,72,139,189,24,255,255,255,242,15,16,157,40,159,255,255,242,15,16,149,56,159,255,255,242,15,16,141,64,159,255,255,242,15,16,133,80,159,255,255,72,137, 217,72,137,194,72,141,53,49,175,2,0,184,4,0,0,0,232,84,200,255,255,233,248,24,0,0,72,139,189,208,254,255,255,72,141,53,119,138,2,0,232,101,77,2,0,133,192,15,133,181,1,0,0,72,139,189,200,254,255,255,72,141,53,85,138,2,0,232,74,77,2,0,133,192,15,133,154, 1,0,0,72,129,189,248,254,255,255,231,3,0,0,126,36,72,141,61,207,173,2,0,184,0,0,0,0,232,204,37,1,0,72,139,133,24,255,255,255,72,137,133,192,157,255,255,233,6,25,0,0,72,139,149,248,254,255,255,72,139,133,240,254,255,255,72,137,132,213,96,223,255,255,72, 255,133,248,254,255,255,72,199,133,240,254,255,255,0,0,0,0,72,131,189,224,254,255,255,0,117,42,72,139,149,216,254,255,255,139,181,84,255,255,255,191,6,0,0,0,232,214,179,255,255,243,15,17,133,92,255,255,255,72,199,133,224,254,255,255,1,0,0,0,72,139,149, 216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,172,179,255,255,243,15,17,133,52,255,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,141,179,255,255,243,15,17,133,48,255,255,255,72,139,149,216,254,255,255,139,181,84,255, 255,255,191,5,0,0,0,232,110,179,255,255,243,15,88,133,48,255,255,255,243,15,90,192,242,15,17,133,88,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,4,0,0,0,232,67,179,255,255,243,15,88,133,52,255,255,255,243,15,90,192,242,15,17,133, 96,159,255,255,243,15,90,133,48,255,255,255,242,15,17,133,104,159,255,255,243,15,90,141,52,255,255,255,242,15,17,141,112,159,255,255,72,141,61,146,172,2,0,232,245,48,0,0,72,137,195,72,141,61,248,136,2,0,232,230,48,0,0,72,139,189,24,255,255,255,242,15, 16,157,88,159,255,255,242,15,16,149,96,159,255,255,242,15,16,141,104,159,255,255,242,15,16,133,112,159,255,255,72,137,217,72,137,194,72,141,53,92,173,2,0,184,4,0,0,0,232,127,198,255,255,72,139,189,208,254,255,255,72,141,53,124,106,2,0,232,149,75,2,0, 133,192,15,133,13,23,0,0,131,189,84,255,255,255,4,15,142,166,2,0,0,72,139,189,200,254,255,255,72,141,53,206,108,2,0,232,109,75,2,0,133,192,15,133,139,2,0,0,72,139,133,216,254,255,255,72,131,192,64,139,0,131,248,2,15,133,117,2,0,0,72,139,133,216,254,255, 255,72,131,192,64,72,139,64,8,72,139,56,72,141,53,32,152,2,0,232,49,75,2,0,133,192,15,133,79,2,0,0,72,141,61,212,172,2,0,232,29,48,0,0,72,137,195,72,141,61,222,171,2,0,232,14,48,0,0,72,139,189,24,255,255,255,72,137,217,72,137,194,72,141,53,136,171,2, 0,184,0,0,0,0,232,199,197,255,255,199,133,224,160,255,255,2,0,0,0,72,141,61,170,171,2,0,232,218,47,0,0,72,137,133,232,160,255,255,72,141,133,224,160,255,255,72,131,192,16,199,0,2,0,0,0,72,141,133,224,160,255,255,72,141,88,16,72,141,61,133,171,2,0,232, 171,47,0,0,72,137,67,8,72,139,149,216,254,255,255,72,131,194,32,72,139,2,72,137,133,0,161,255,255,72,139,66,8,72,137,133,8,161,255,255,72,139,149,216,254,255,255,72,131,194,48,72,139,2,72,137,133,16,161,255,255,72,139,66,8,72,137,133,24,161,255,255,72, 141,133,224,160,255,255,72,131,192,64,199,0,1,0,0,0,72,141,133,224,160,255,255,72,141,80,64,139,133,84,255,255,255,131,232,5,242,15,42,200,242,15,16,5,128,217,2,0,242,15,89,193,242,15,90,192,243,15,17,66,8,72,141,133,224,160,255,255,72,131,192,80,199, 0,1,0,0,0,72,141,133,224,160,255,255,72,141,80,80,139,133,92,255,255,255,137,66,8,72,141,133,224,160,255,255,72,131,192,96,199,0,2,0,0,0,72,141,133,224,160,255,255,72,141,88,96,72,141,61,197,170,2,0,232,220,46,0,0,72,137,67,8,72,199,133,232,254,255,255, 5,0,0,0,235,74,72,139,149,232,254,255,255,72,131,194,2,72,139,133,232,254,255,255,72,193,224,4,72,137,193,72,3,141,216,254,255,255,72,137,208,72,193,224,4,72,141,85,208,72,1,208,72,141,144,16,161,255,255,72,139,1,72,137,2,72,139,65,8,72,137,66,8,72,255, 133,232,254,255,255,139,133,84,255,255,255,72,152,72,59,133,232,254,255,255,127,165,139,133,84,255,255,255,72,152,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,0,4,0,0,0,139,133,84,255,255,255,72,152,72,193,224,4,72,137, 194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,64,8,0,0,0,0,139,181,84,255,255,255,131,198,3,72,141,149,224,160,255,255,72,139,189,24,255,255,255,232,27,195,255,255,72,131,189,248,254,255,255,0,116,7,72,255,141,248,254,255,255,72,139,133,248, 254,255,255,72,139,132,197,96,223,255,255,72,137,133,240,254,255,255,72,255,133,240,254,255,255,233,90,20,0,0,72,139,189,200,254,255,255,72,141,53,206,118,2,0,232,199,72,2,0,133,192,15,133,146,15,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255, 191,4,0,0,0,232,53,176,255,255,72,137,133,176,254,255,255,72,141,61,16,170,2,0,232,149,45,0,0,72,59,133,176,254,255,255,15,133,188,0,0,0,243,15,90,141,92,255,255,255,242,15,16,5,18,216,2,0,102,15,40,209,242,15,88,208,242,15,17,149,120,159,255,255,72, 139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,95,175,255,255,243,15,90,192,242,15,17,133,128,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,60,175,255,255,243,15,90,192,242,15,17,133,136,159,255,255,72, 141,61,145,169,2,0,232,22,45,0,0,72,137,195,72,141,61,215,168,2,0,232,7,45,0,0,72,139,189,24,255,255,255,242,15,16,149,120,159,255,255,242,15,16,141,128,159,255,255,242,15,16,133,136,159,255,255,72,137,217,72,137,194,72,141,53,145,169,2,0,184,3,0,0,0, 232,168,194,255,255,233,147,14,0,0,72,141,61,65,169,2,0,232,192,44,0,0,72,59,133,176,254,255,255,15,133,196,0,0,0,243,15,90,141,92,255,255,255,242,15,16,5,61,215,2,0,102,15,40,209,242,15,88,208,242,15,17,149,144,159,255,255,72,139,149,216,254,255,255, 139,181,84,255,255,255,191,3,0,0,0,232,138,174,255,255,243,15,90,192,242,15,17,133,152,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,103,174,255,255,243,15,90,192,242,15,17,133,160,159,255,255,72,141,61,188,168,2,0,232, 65,44,0,0,72,137,195,72,141,61,2,168,2,0,232,50,44,0,0,72,139,189,24,255,255,255,242,15,16,29,85,212,2,0,242,15,16,149,144,159,255,255,242,15,16,141,152,159,255,255,242,15,16,133,160,159,255,255,72,137,217,72,137,194,72,141,53,168,168,2,0,184,4,0,0,0, 232,203,193,255,255,233,182,13,0,0,72,141,61,98,121,2,0,232,227,43,0,0,72,59,133,176,254,255,255,15,133,188,0,0,0,243,15,90,141,92,255,255,255,242,15,16,5,96,214,2,0,102,15,40,209,242,15,88,208,242,15,17,149,168,159,255,255,72,139,149,216,254,255,255, 139,181,84,255,255,255,191,3,0,0,0,232,173,173,255,255,243,15,90,192,242,15,17,133,176,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,138,173,255,255,243,15,90,192,242,15,17,133,184,159,255,255,72,141,61,227,120,2,0,232, 100,43,0,0,72,137,195,72,141,61,37,167,2,0,232,85,43,0,0,72,139,189,24,255,255,255,242,15,16,149,168,159,255,255,242,15,16,141,176,159,255,255,242,15,16,133,184,159,255,255,72,137,217,72,137,194,72,141,53,223,167,2,0,184,3,0,0,0,232,246,192,255,255,233, 225,12,0,0,72,141,61,157,167,2,0,232,14,43,0,0,72,59,133,176,254,255,255,15,133,196,0,0,0,243,15,90,141,92,255,255,255,242,15,16,5,139,213,2,0,102,15,40,209,242,15,88,208,242,15,17,149,192,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255, 191,3,0,0,0,232,216,172,255,255,243,15,90,192,242,15,17,133,200,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,181,172,255,255,243,15,90,192,242,15,17,133,208,159,255,255,72,141,61,14,120,2,0,232,143,42,0,0,72,137,195,72, 141,61,80,166,2,0,232,128,42,0,0,72,139,189,24,255,255,255,242,15,16,29,163,210,2,0,242,15,16,149,192,159,255,255,242,15,16,141,200,159,255,255,242,15,16,133,208,159,255,255,72,137,217,72,137,194,72,141,53,246,166,2,0,184,4,0,0,0,232,25,192,255,255,233, 4,12,0,0,72,141,61,178,102,2,0,232,49,42,0,0,72,59,133,176,254,255,255,15,133,195,0,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,5,0,0,0,232,27,172,255,255,243,15,90,192,242,15,17,133,216,159,255,255,72,139,149,216,254,255,255,139,181,84, 255,255,255,191,3,0,0,0,232,248,171,255,255,243,15,90,192,242,15,17,133,224,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,213,171,255,255,243,15,90,192,242,15,17,133,232,159,255,255,72,141,61,205,165,2,0,232,175,41,0,0, 72,137,195,72,141,61,112,165,2,0,232,160,41,0,0,72,139,189,24,255,255,255,102,15,87,219,242,15,16,149,216,159,255,255,242,15,16,141,224,159,255,255,242,15,16,133,232,159,255,255,72,137,217,72,137,194,72,141,53,26,166,2,0,184,4,0,0,0,232,61,191,255,255, 233,40,11,0,0,72,141,61,204,165,2,0,232,85,41,0,0,72,59,133,176,254,255,255,15,133,195,0,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,5,0,0,0,232,63,171,255,255,243,15,90,192,242,15,17,133,240,159,255,255,72,139,149,216,254,255,255,139,181, 84,255,255,255,191,3,0,0,0,232,28,171,255,255,243,15,90,192,242,15,17,133,248,159,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,249,170,255,255,243,15,90,192,242,15,17,133,0,160,255,255,72,141,61,88,101,2,0,232,211,40,0,0, 72,137,195,72,141,61,148,164,2,0,232,196,40,0,0,72,139,189,24,255,255,255,102,15,87,219,242,15,16,149,240,159,255,255,242,15,16,141,248,159,255,255,242,15,16,133,0,160,255,255,72,137,217,72,137,194,72,141,53,62,165,2,0,184,4,0,0,0,232,97,190,255,255, 233,76,10,0,0,72,141,61,204,164,2,0,232,121,40,0,0,72,59,133,176,254,255,255,15,133,241,1,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,7,0,0,0,232,99,170,255,255,243,15,90,192,242,15,17,133,8,160,255,255,72,139,149,216,254,255,255,139,181, 84,255,255,255,191,8,0,0,0,232,64,170,255,255,243,15,17,133,20,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,7,0,0,0,232,33,170,255,255,243,15,16,141,20,160,255,255,243,15,92,200,243,15,17,141,24,160,255,255,72,139,149,216,254,255, 255,139,181,84,255,255,255,191,6,0,0,0,232,246,169,255,255,15,40,200,243,15,16,5,7,208,2,0,15,46,200,117,4,122,2,235,51,72,139,149,216,254,255,255,139,181,84,255,255,255,191,6,0,0,0,232,203,169,255,255,15,40,200,243,15,16,5,220,207,2,0,15,40,209,243, 15,92,208,243,15,17,149,28,160,255,255,235,16,243,15,16,5,195,207,2,0,243,15,17,133,28,160,255,255,243,15,16,133,24,160,255,255,243,15,94,133,28,160,255,255,243,15,90,192,242,15,17,133,32,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255, 191,6,0,0,0,232,108,169,255,255,243,15,90,192,242,15,17,133,40,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,5,0,0,0,232,73,169,255,255,243,15,90,192,242,15,17,133,48,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191, 3,0,0,0,232,38,169,255,255,243,15,90,192,242,15,17,133,56,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,3,169,255,255,243,15,90,192,242,15,17,133,64,160,255,255,72,141,61,35,163,2,0,232,221,38,0,0,72,137,195,72,141,61, 158,162,2,0,232,206,38,0,0,72,139,189,24,255,255,255,242,15,16,173,8,160,255,255,242,15,16,165,32,160,255,255,242,15,16,157,40,160,255,255,242,15,16,149,48,160,255,255,242,15,16,141,56,160,255,255,242,15,16,133,64,160,255,255,72,137,217,72,137,194,72, 141,53,71,163,2,0,184,6,0,0,0,232,87,188,255,255,233,66,8,0,0,72,141,61,51,114,2,0,232,111,38,0,0,72,59,133,176,254,255,255,15,133,145,1,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,7,0,0,0,232,89,168,255,255,243,15,17,133,44,255,255,255, 72,139,149,216,254,255,255,139,181,84,255,255,255,191,8,0,0,0,232,58,168,255,255,243,15,17,133,40,255,255,255,243,15,90,141,44,255,255,255,242,15,17,141,72,160,255,255,243,15,16,133,40,255,255,255,15,40,200,243,15,92,141,44,255,255,255,243,15,16,5,35, 206,2,0,243,15,88,193,243,15,90,192,242,15,17,133,80,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,5,0,0,0,232,224,167,255,255,243,15,90,192,242,15,17,133,88,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,6,0,0, 0,232,189,167,255,255,243,15,90,192,242,15,17,133,96,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,154,167,255,255,243,15,90,192,242,15,17,133,104,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0, 0,232,119,167,255,255,243,15,90,192,242,15,17,133,112,160,255,255,72,141,61,229,97,2,0,232,81,37,0,0,72,137,195,72,141,61,217,161,2,0,232,66,37,0,0,73,137,196,72,141,61,3,161,2,0,232,51,37,0,0,72,139,189,24,255,255,255,102,15,87,255,242,15,16,181,72, 160,255,255,242,15,16,45,74,205,2,0,242,15,16,165,80,160,255,255,242,15,16,157,88,160,255,255,242,15,16,149,96,160,255,255,242,15,16,141,104,160,255,255,242,15,16,133,112,160,255,255,73,137,216,76,137,225,72,137,194,72,141,53,167,161,2,0,184,8,0,0,0, 232,173,186,255,255,233,152,6,0,0,72,141,61,196,160,2,0,232,197,36,0,0,72,59,133,176,254,255,255,116,25,72,141,61,183,160,2,0,232,176,36,0,0,72,59,133,176,254,255,255,15,133,114,4,0,0,199,133,224,160,255,255,2,0,0,0,72,141,61,93,160,2,0,232,141,36,0, 0,72,137,133,232,160,255,255,72,141,133,224,160,255,255,72,131,192,16,199,0,2,0,0,0,72,141,133,224,160,255,255,72,141,88,16,72,141,61,87,160,2,0,232,94,36,0,0,72,137,67,8,72,139,149,216,254,255,255,72,131,194,32,72,139,2,72,137,133,0,161,255,255,72,139, 66,8,72,137,133,8,161,255,255,72,139,149,216,254,255,255,72,131,194,48,72,139,2,72,137,133,16,161,255,255,72,139,66,8,72,137,133,24,161,255,255,72,141,133,224,160,255,255,72,131,192,64,199,0,1,0,0,0,72,141,133,224,160,255,255,72,141,80,64,139,133,84, 255,255,255,131,232,4,242,15,42,200,242,15,16,5,51,206,2,0,242,15,89,193,242,15,90,192,243,15,17,66,8,72,141,133,224,160,255,255,72,131,192,80,199,0,1,0,0,0,72,141,133,224,160,255,255,72,141,80,80,139,133,92,255,255,255,137,66,8,72,139,149,216,254,255, 255,72,131,194,64,72,139,2,72,137,133,64,161,255,255,72,139,66,8,72,137,133,72,161,255,255,72,199,133,232,254,255,255,5,0,0,0,233,217,2,0,0,72,139,133,232,254,255,255,137,199,72,139,149,216,254,255,255,139,181,84,255,255,255,232,249,165,255,255,72,137, 133,168,254,255,255,72,141,61,50,160,2,0,232,89,35,0,0,72,59,133,168,254,255,255,117,83,72,139,133,232,254,255,255,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,0,2,0,0,0,72,139,133,232,254,255,255,72,193,224,4,72,137, 194,72,141,133,224,160,255,255,72,1,208,72,141,88,32,72,141,61,225,159,2,0,232,6,35,0,0,72,137,67,8,233,72,2,0,0,72,141,61,206,159,2,0,232,241,34,0,0,72,59,133,168,254,255,255,117,83,72,139,133,232,254,255,255,72,193,224,4,72,137,194,72,141,133,224,160, 255,255,72,1,208,72,131,192,32,199,0,2,0,0,0,72,139,133,232,254,255,255,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,141,88,32,72,141,61,121,159,2,0,232,158,34,0,0,72,137,67,8,233,224,1,0,0,72,141,61,240,201,2,0,232,137,34,0,0,72,59, 133,168,254,255,255,117,83,72,139,133,232,254,255,255,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,0,2,0,0,0,72,139,133,232,254,255,255,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,141,88,32,72,141,61, 33,159,2,0,232,54,34,0,0,72,137,67,8,233,120,1,0,0,72,141,61,14,159,2,0,232,33,34,0,0,72,59,133,168,254,255,255,117,83,72,139,133,232,254,255,255,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,0,2,0,0,0,72,139,133,232,254, 255,255,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,141,88,32,72,141,61,217,157,2,0,232,206,33,0,0,72,137,67,8,233,16,1,0,0,72,141,61,172,158,2,0,232,185,33,0,0,72,59,133,168,254,255,255,117,83,72,139,133,232,254,255,255,72,193,224, 4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,0,2,0,0,0,72,139,133,232,254,255,255,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,141,88,32,72,141,61,65,158,2,0,232,102,33,0,0,72,137,67,8,233,168,0,0,0,72,141,61,208, 160,2,0,232,81,33,0,0,72,59,133,168,254,255,255,117,80,72,139,133,232,254,255,255,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,0,2,0,0,0,72,139,133,232,254,255,255,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72, 1,208,72,141,88,32,72,141,61,253,157,2,0,232,254,32,0,0,72,137,67,8,235,67,72,139,149,232,254,255,255,72,131,194,2,72,139,133,232,254,255,255,72,193,224,4,72,137,193,72,3,141,216,254,255,255,72,137,208,72,193,224,4,72,141,85,208,72,1,208,72,141,144,16, 161,255,255,72,139,1,72,137,2,72,139,65,8,72,137,66,8,72,255,133,232,254,255,255,139,133,84,255,255,255,72,152,72,59,133,232,254,255,255,15,143,18,253,255,255,139,133,84,255,255,255,72,152,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72, 131,192,32,199,0,4,0,0,0,139,133,84,255,255,255,72,152,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,64,8,0,0,0,0,139,181,84,255,255,255,131,198,3,72,141,149,224,160,255,255,72,139,189,24,255,255,255,232,68,181,255,255, 233,248,1,0,0,199,133,224,160,255,255,2,0,0,0,72,141,61,235,155,2,0,232,27,32,0,0,72,137,133,232,160,255,255,72,141,133,224,160,255,255,72,131,192,16,199,0,2,0,0,0,72,141,133,224,160,255,255,72,141,88,16,72,141,61,229,155,2,0,232,236,31,0,0,72,137,67, 8,72,139,149,216,254,255,255,72,131,194,32,72,139,2,72,137,133,0,161,255,255,72,139,66,8,72,137,133,8,161,255,255,72,139,149,216,254,255,255,72,131,194,48,72,139,2,72,137,133,16,161,255,255,72,139,66,8,72,137,133,24,161,255,255,72,141,133,224,160,255, 255,72,131,192,64,199,0,1,0,0,0,72,141,133,224,160,255,255,72,141,80,64,139,133,84,255,255,255,131,232,4,242,15,42,200,242,15,16,5,193,201,2,0,242,15,89,193,242,15,90,192,243,15,17,66,8,72,141,133,224,160,255,255,72,131,192,80,199,0,1,0,0,0,72,141,133, 224,160,255,255,72,141,80,80,139,133,92,255,255,255,137,66,8,72,199,133,232,254,255,255,4,0,0,0,235,74,72,139,149,232,254,255,255,72,131,194,2,72,139,133,232,254,255,255,72,193,224,4,72,137,193,72,3,141,216,254,255,255,72,137,208,72,193,224,4,72,141, 85,208,72,1,208,72,141,144,16,161,255,255,72,139,1,72,137,2,72,139,65,8,72,137,66,8,72,255,133,232,254,255,255,139,133,84,255,255,255,72,152,72,59,133,232,254,255,255,127,165,72,141,61,72,66,2,0,232,209,30,0,0,72,59,133,176,254,255,255,117,44,72,141, 133,224,160,255,255,72,131,192,96,199,0,2,0,0,0,72,141,133,224,160,255,255,72,141,88,96,72,141,61,166,155,2,0,232,160,30,0,0,72,137,67,8,139,133,84,255,255,255,72,152,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,0,4,0, 0,0,139,133,84,255,255,255,72,152,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,64,8,0,0,0,0,139,181,84,255,255,255,131,198,3,72,141,149,224,160,255,255,72,139,189,24,255,255,255,232,71,179,255,255,72,255,133,240,254,255, 255,233,173,4,0,0,72,139,189,200,254,255,255,72,141,53,29,119,2,0,232,26,57,2,0,133,192,116,27,72,139,189,200,254,255,255,72,141,53,120,90,2,0,232,3,57,2,0,133,192,15,133,6,2,0,0,199,133,224,160,255,255,2,0,0,0,72,141,61,181,153,2,0,232,229,29,0,0,72, 137,133,232,160,255,255,72,141,133,224,160,255,255,72,131,192,16,199,0,2,0,0,0,72,141,133,224,160,255,255,72,131,192,16,72,137,133,120,160,255,255,72,139,189,200,254,255,255,72,141,53,171,118,2,0,232,168,56,2,0,133,192,116,16,72,141,13,39,128,2,0,72, 137,141,128,160,255,255,235,14,72,141,5,129,133,2,0,72,137,133,128,160,255,255,72,139,189,128,160,255,255,232,122,29,0,0,72,139,149,120,160,255,255,72,137,66,8,72,139,149,216,254,255,255,72,131,194,32,72,139,2,72,137,133,0,161,255,255,72,139,66,8,72, 137,133,8,161,255,255,72,139,149,216,254,255,255,72,131,194,48,72,139,2,72,137,133,16,161,255,255,72,139,66,8,72,137,133,24,161,255,255,72,141,133,224,160,255,255,72,131,192,64,199,0,1,0,0,0,72,141,133,224,160,255,255,72,141,80,64,139,133,84,255,255, 255,131,232,4,242,15,42,200,242,15,16,5,72,199,2,0,242,15,89,193,242,15,90,192,243,15,17,66,8,72,141,133,224,160,255,255,72,131,192,80,199,0,1,0,0,0,72,141,133,224,160,255,255,72,141,80,80,139,133,92,255,255,255,137,66,8,72,199,133,232,254,255,255,4, 0,0,0,235,74,72,139,149,232,254,255,255,72,131,194,2,72,139,133,232,254,255,255,72,193,224,4,72,137,193,72,3,141,216,254,255,255,72,137,208,72,193,224,4,72,141,85,208,72,1,208,72,141,144,16,161,255,255,72,139,1,72,137,2,72,139,65,8,72,137,66,8,72,255, 133,232,254,255,255,139,133,84,255,255,255,72,152,72,59,133,232,254,255,255,127,165,139,133,84,255,255,255,72,152,72,193,224,4,72,137,194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,0,4,0,0,0,139,133,84,255,255,255,72,152,72,193,224,4,72,137, 194,72,141,133,224,160,255,255,72,1,208,72,131,192,32,199,64,8,0,0,0,0,139,181,84,255,255,255,131,198,3,72,141,149,224,160,255,255,72,139,189,24,255,255,255,232,15,177,255,255,72,255,133,240,254,255,255,233,117,2,0,0,72,139,189,200,254,255,255,72,141, 53,197,128,2,0,232,226,54,2,0,133,192,15,133,252,0,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,4,0,0,0,232,209,157,255,255,243,15,89,133,92,255,255,255,243,15,17,133,36,255,255,255,243,15,16,141,36,255,255,255,243,15,16,5,109,197,2,0,15, 46,193,119,2,235,11,184,0,0,22,67,137,133,36,255,255,255,243,15,90,133,36,255,255,255,242,15,17,133,136,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,120,157,255,255,243,15,90,192,242,15,17,133,144,160,255,255,72,139,149, 216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,85,157,255,255,243,15,90,192,242,15,17,133,152,160,255,255,72,141,61,102,151,2,0,232,47,27,0,0,72,137,195,72,141,61,240,150,2,0,232,32,27,0,0,72,139,189,24,255,255,255,242,15,16,149,136,160,255,255, 242,15,16,141,144,160,255,255,242,15,16,133,152,160,255,255,72,137,217,72,137,194,72,141,53,170,151,2,0,184,3,0,0,0,232,193,176,255,255,72,255,133,240,254,255,255,233,94,1,0,0,72,139,189,200,254,255,255,72,141,53,201,88,2,0,232,203,53,2,0,133,192,15, 133,67,1,0,0,72,139,149,216,254,255,255,139,181,84,255,255,255,191,5,0,0,0,232,186,156,255,255,243,15,90,192,242,15,17,133,160,160,255,255,243,72,15,42,141,240,254,255,255,243,15,17,141,172,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255, 191,4,0,0,0,232,134,156,255,255,243,15,16,141,172,160,255,255,243,15,92,200,243,15,16,5,142,194,2,0,15,40,209,243,15,92,208,15,40,194,243,15,90,192,242,15,17,133,176,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,3,0,0,0,232,69,156, 255,255,243,15,90,192,242,15,17,133,184,160,255,255,243,72,15,42,133,240,254,255,255,243,15,17,133,196,160,255,255,72,139,149,216,254,255,255,139,181,84,255,255,255,191,2,0,0,0,232,17,156,255,255,243,15,16,141,196,160,255,255,243,15,92,200,243,15,16, 5,25,194,2,0,15,40,209,243,15,92,208,15,40,194,243,15,90,192,242,15,17,133,200,160,255,255,72,141,61,203,87,2,0,232,205,25,0,0,72,137,195,72,141,61,142,149,2,0,232,190,25,0,0,72,139,189,24,255,255,255,242,15,16,157,160,160,255,255,242,15,16,149,176,160, 255,255,242,15,16,141,184,160,255,255,242,15,16,133,200,160,255,255,72,137,217,72,137,194,72,141,53,52,150,2,0,184,4,0,0,0,232,87,175,255,255,139,133,88,255,255,255,255,192,72,152,72,137,133,0,255,255,255,72,139,133,0,255,255,255,72,59,133,8,255,255, 255,15,140,196,205,255,255,131,189,212,160,255,255,0,117,57,72,141,61,253,149,2,0,232,70,25,0,0,72,137,195,72,141,61,7,149,2,0,232,55,25,0,0,72,139,189,24,255,255,255,72,137,217,72,137,194,72,141,53,177,148,2,0,184,0,0,0,0,232,240,174,255,255,72,139, 133,24,255,255,255,72,137,133,192,157,255,255,72,139,133,192,157,255,255,72,139,21,239,157,4,0,72,139,77,200,72,51,10,116,5,232,199,49,2,0,72,129,196,120,98,0,0,91,65,92,65,93,65,94,65,95,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117, 208,137,85,204,199,69,252,0,0,0,0,233,72,1,0,0,199,69,248,0,0,0,0,233,33,1,0,0,72,139,69,216,72,139,80,8,139,69,248,3,69,252,72,152,72,193,224,4,72,141,4,2,72,137,69,240,72,139,69,208,72,139,80,8,139,69,248,72,152,72,193,224,4,72,141,4,2,72,137,69,232, 72,139,69,240,139,0,131,248,4,116,11,72,139,69,240,139,0,131,248,5,117,25,72,139,69,232,139,16,72,139,69,240,139,0,57,194,15,133,218,0,0,0,233,186,0,0,0,72,139,69,240,139,0,131,248,1,116,11,72,139,69,240,139,0,131,248,8,117,55,72,139,69,232,139,16,72, 139,69,240,139,0,57,194,15,133,171,0,0,0,72,139,69,240,243,15,16,72,8,72,139,69,232,243,15,16,64,8,15,46,200,15,133,144,0,0,0,15,138,138,0,0,0,235,109,72,139,69,240,139,0,131,248,2,116,11,72,139,69,240,139,0,131,248,9,117,87,72,139,69,232,139,0,131,248, 2,116,11,72,139,69,232,139,0,131,248,9,117,92,131,125,204,0,116,21,72,139,69,240,72,139,80,8,72,139,69,232,72,139,64,8,72,57,194,117,65,131,125,204,0,117,32,72,139,69,232,72,139,64,8,72,139,48,72,139,69,240,72,139,64,8,72,139,56,232,189,50,2,0,72,133, 192,116,27,255,69,248,72,139,69,208,139,0,59,69,248,15,143,208,254,255,255,199,69,200,1,0,0,0,235,37,255,69,252,72,139,69,216,139,16,72,139,69,208,139,0,137,209,41,193,137,200,59,69,252,15,141,157,254,255,255,199,69,200,0,0,0,0,139,69,200,201,195,85, 72,137,229,83,72,131,236,72,72,137,125,200,72,137,117,192,232,175,159,255,255,72,137,69,224,72,139,69,200,72,139,24,72,139,69,200,72,139,56,232,46,50,2,0,72,141,4,3,72,141,120,252,72,141,53,85,150,2,0,232,14,50,2,0,133,192,116,43,72,139,69,200,72,139, 24,72,139,69,200,72,139,56,232,3,50,2,0,72,141,4,3,72,141,120,252,72,141,53,156,111,2,0,232,227,49,2,0,133,192,117,9,199,69,188,1,0,0,0,235,7,199,69,188,0,0,0,0,139,69,188,137,69,236,232,236,41,252,255,137,69,232,72,139,85,192,72,139,117,200,191,0,0, 0,0,232,50,250,251,255,72,139,69,192,72,139,16,72,139,69,200,72,139,48,72,139,125,224,185,0,0,0,0,232,219,192,255,255,133,192,116,14,72,139,69,200,72,139,56,232,177,48,2,0,235,65,131,125,236,0,116,35,72,139,125,224,190,1,0,0,0,232,247,201,255,255,72, 137,69,216,72,139,125,224,232,17,159,255,255,72,139,69,216,72,137,69,224,72,139,125,224,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,232,112,185,255,255,72,141,21,19,164,4,0,72,141,53,12,164,4,0,191,0,0,0,0,232,171,249,251,255,72,139,125,224,232,208,158,255,255, 139,125,232,232,99,41,252,255,72,131,196,72,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,72,199,69,240,0,0,0,0,232,23,41,252,255,137,69,252,72,139,117,216,72,139,125,224,232,144,254,255,255,235,56,72,141,5,80,163, 4,0,72,139,64,8,72,137,69,240,72,141,61,121,146,2,0,232,194,21,0,0,72,137,198,72,139,125,240,185,1,0,0,0,72,141,21,141,182,2,0,184,0,0,0,0,232,243,33,0,0,72,141,5,24,163,4,0,72,139,64,8,72,59,69,240,116,16,72,141,5,7,163,4,0,72,139,64,8,72,133,192,117, 167,232,253,84,0,0,139,125,252,232,195,40,252,255,72,139,69,240,201,195,144,144,144,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,240,72,139,8,72,139,69,248,72,139,0,72,139,0,72,139,16,72,139,125,248,72, 141,53,66,146,2,0,184,0,0,0,0,232,0,15,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,0,72,139,80,88,72,141,5,227,1,0,0,72,57,194,116,34,72,139,69,248,72,139,0,72,139,64,88,72,139,125,248,185,0,0,0,0,186,0,0,0,0,190,0,0,0, 0,255,208,235,34,72,139,69,248,72,139,0,72,139,64,96,72,139,125,248,185,0,0,0,0,186,0,0,0,0,72,141,53,161,161,4,0,255,208,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,72,139,69,216,72,139,0,72,139,80,88,72,141,5,118,1,0,0,72,57,194, 116,48,199,69,240,3,0,0,0,72,139,69,208,72,137,69,248,72,139,69,216,72,139,0,72,139,64,88,72,141,77,240,72,139,125,216,186,1,0,0,0,190,0,0,0,0,255,208,235,48,199,69,224,3,0,0,0,72,139,69,208,72,137,69,232,72,139,69,216,72,139,0,72,139,64,96,72,141,77, 224,72,139,125,216,186,1,0,0,0,72,141,53,184,160,4,0,255,208,201,195,85,72,137,229,72,131,236,48,72,137,125,216,243,15,17,69,212,72,139,69,216,72,139,0,72,139,80,88,72,141,5,236,0,0,0,72,57,194,116,46,199,69,240,1,0,0,0,139,69,212,137,69,248,72,139,69, 216,72,139,0,72,139,64,88,72,141,77,240,72,139,125,216,186,1,0,0,0,190,0,0,0,0,255,208,235,46,199,69,224,1,0,0,0,139,69,212,137,69,232,72,139,69,216,72,139,0,72,139,64,96,72,141,77,224,72,139,125,216,186,1,0,0,0,72,141,53,82,160,4,0,255,208,201,195,85, 72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,72,139,69,216,72,139,0,72,139,80,88,72,141,5,103,0,0,0,72,57,194,116,48,199,69,240,2,0,0,0,72,139,69,208,72,137,69,248,72,139,69,216,72,139,0,72,139,64,88,72,141,77,240,72,139,125,216,186,1,0,0,0, 190,0,0,0,0,255,208,235,48,199,69,224,2,0,0,0,72,139,69,208,72,137,69,232,72,139,69,216,72,139,0,72,139,64,96,72,141,77,224,72,139,125,216,186,1,0,0,0,72,141,53,233,159,4,0,255,208,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137, 85,236,72,137,77,224,131,125,236,0,117,45,72,139,69,248,72,139,0,72,139,80,56,72,141,5,208,253,255,255,72,57,194,116,22,72,139,69,248,72,139,0,72,139,64,56,72,139,125,248,255,208,233,63,1,0,0,131,125,236,1,15,133,190,0,0,0,72,139,69,224,139,0,131,248, 1,117,54,72,139,69,248,72,139,0,72,139,80,72,72,141,5,128,254,255,255,72,57,194,116,31,72,139,69,248,72,139,0,72,139,80,72,72,139,69,224,243,15,16,64,8,72,139,125,248,255,210,233,244,0,0,0,72,139,69,224,139,0,131,248,2,117,53,72,139,69,248,72,139,0,72, 139,80,80,72,141,5,197,254,255,255,72,57,194,116,30,72,139,69,248,72,139,0,72,139,80,80,72,139,69,224,72,139,112,8,72,139,125,248,255,210,233,180,0,0,0,72,139,69,224,139,0,131,248,3,117,50,72,139,69,248,72,139,0,72,139,80,64,72,141,5,118,253,255,255, 72,57,194,116,27,72,139,69,248,72,139,0,72,139,80,64,72,139,69,224,72,139,112,8,72,139,125,248,255,210,235,119,72,139,69,248,72,139,0,72,139,80,96,72,141,5,153,252,255,255,72,57,194,116,33,72,139,69,248,72,139,0,72,139,64,96,72,139,77,224,139,85,236, 72,139,125,248,72,141,53,223,158,4,0,255,208,235,63,72,139,69,248,72,139,0,15,182,128,141,0,0,0,132,192,116,22,72,139,125,248,72,139,77,224,139,85,236,72,139,117,240,232,255,54,0,0,235,23,72,139,77,224,139,85,236,72,139,125,248,72,141,53,161,158,4,0, 232,52,252,255,255,201,195,85,72,137,229,83,72,129,236,136,1,0,0,72,137,189,216,254,255,255,72,137,181,208,254,255,255,72,137,149,200,254,255,255,72,137,141,192,254,255,255,68,137,133,188,254,255,255,15,182,192,72,137,133,152,254,255,255,72,139,149,152, 254,255,255,72,141,4,149,0,0,0,0,72,141,13,59,0,0,0,72,137,141,152,254,255,255,72,41,133,152,254,255,255,72,141,69,239,72,139,149,152,254,255,255,255,226,15,41,120,241,15,41,112,225,15,41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72,145,15, 41,64,129,68,137,141,184,254,255,255,72,141,133,224,254,255,255,72,137,133,40,255,255,255,199,133,56,255,255,255,0,0,0,0,139,133,188,254,255,255,131,224,3,137,133,52,255,255,255,131,189,52,255,255,255,0,117,10,199,133,52,255,255,255,3,0,0,0,72,139,149, 40,255,255,255,139,133,184,254,255,255,137,2,72,141,133,0,255,255,255,199,0,48,0,0,0,72,141,133,0,255,255,255,199,64,4,48,0,0,0,72,141,133,0,255,255,255,72,141,77,16,72,137,72,8,72,141,133,0,255,255,255,72,141,149,64,255,255,255,72,137,80,16,233,153, 0,0,0,131,189,56,255,255,255,5,117,34,72,139,133,216,254,255,255,72,139,48,186,5,0,0,0,72,141,61,136,141,2,0,184,0,0,0,0,232,198,7,1,0,235,127,72,131,133,40,255,255,255,4,255,133,56,255,255,255,139,133,0,255,255,255,131,248,48,115,42,72,139,149,16,255, 255,255,139,133,0,255,255,255,137,192,72,1,194,72,137,149,160,254,255,255,139,133,0,255,255,255,131,192,8,137,133,0,255,255,255,235,25,72,139,133,8,255,255,255,72,137,133,160,254,255,255,72,131,192,8,72,137,133,8,255,255,255,72,139,133,160,254,255,255, 139,16,72,139,133,40,255,255,255,137,16,72,139,133,40,255,255,255,139,0,133,192,15,133,86,255,255,255,72,141,5,198,245,4,0,72,139,0,72,133,192,15,132,96,1,0,0,72,131,189,208,254,255,255,0,15,132,82,1,0,0,139,149,244,254,255,255,139,141,240,254,255,255, 139,181,236,254,255,255,139,189,232,254,255,255,68,139,133,228,254,255,255,68,139,149,224,254,255,255,72,139,157,208,254,255,255,72,141,5,120,245,4,0,72,139,0,76,139,157,216,254,255,255,137,84,36,16,137,76,36,8,137,52,36,65,137,249,68,137,209,76,137, 218,72,137,222,72,137,199,184,0,0,0,0,232,245,4,0,0,72,139,5,59,198,4,0,72,133,192,15,132,224,0,0,0,72,139,5,43,198,4,0,72,139,0,72,137,133,24,255,255,255,72,139,133,216,254,255,255,72,139,56,232,52,42,2,0,136,133,63,255,255,255,72,139,189,24,255,255, 255,232,34,42,2,0,136,133,62,255,255,255,15,182,133,62,255,255,255,58,133,63,255,255,255,15,142,149,0,0,0,15,190,149,62,255,255,255,15,190,133,63,255,255,255,137,209,41,193,137,200,72,152,72,137,198,72,3,181,24,255,255,255,72,139,133,216,254,255,255, 72,139,56,232,206,41,2,0,133,192,117,98,139,149,244,254,255,255,139,141,240,254,255,255,139,181,236,254,255,255,139,189,232,254,255,255,68,139,133,228,254,255,255,68,139,149,224,254,255,255,76,139,29,135,197,4,0,72,139,157,208,254,255,255,72,141,5,129, 244,4,0,72,139,0,137,84,36,16,137,76,36,8,137,52,36,65,137,249,68,137,209,76,137,218,72,137,222,72,137,199,184,0,0,0,0,232,5,4,0,0,191,144,0,0,0,232,125,40,0,0,72,137,133,32,255,255,255,72,139,149,32,255,255,255,72,139,133,216,254,255,255,72,137,66,8, 72,139,133,32,255,255,255,72,139,80,8,72,139,133,32,255,255,255,72,137,16,72,139,149,32,255,255,255,72,139,133,192,254,255,255,72,137,66,24,191,0,0,0,0,232,51,40,0,0,72,137,194,72,139,133,32,255,255,255,72,137,80,32,72,139,133,32,255,255,255,199,64,40, 0,0,0,0,72,139,149,32,255,255,255,72,139,133,200,254,255,255,72,137,66,48,72,139,149,32,255,255,255,72,141,5,172,248,255,255,72,137,66,56,72,139,149,32,255,255,255,72,141,5,3,249,255,255,72,137,66,64,72,139,149,32,255,255,255,72,141,5,122,249,255,255, 72,137,66,72,72,139,149,32,255,255,255,72,141,5,238,249,255,255,72,137,66,80,72,139,149,32,255,255,255,72,141,5,101,250,255,255,72,137,66,88,72,139,149,32,255,255,255,72,141,5,16,248,255,255,72,137,66,96,131,189,52,255,255,255,3,117,16,72,141,5,84,153, 4,0,72,137,133,168,254,255,255,235,11,72,199,133,168,254,255,255,0,0,0,0,72,139,133,32,255,255,255,72,139,149,168,254,255,255,72,137,80,104,72,139,133,32,255,255,255,72,199,64,112,0,0,0,0,139,133,188,254,255,255,131,224,8,133,192,15,148,194,72,139,133, 32,255,255,255,136,144,142,0,0,0,131,189,52,255,255,255,3,15,148,194,72,139,133,32,255,255,255,136,144,141,0,0,0,131,189,52,255,255,255,1,15,159,194,72,139,133,32,255,255,255,136,144,140,0,0,0,72,139,133,32,255,255,255,198,128,143,0,0,0,0,72,139,133, 32,255,255,255,199,128,136,0,0,0,0,0,0,0,72,139,21,48,153,4,0,72,139,133,32,255,255,255,72,137,80,16,131,189,52,255,255,255,3,117,16,72,141,5,32,163,254,255,72,137,133,176,254,255,255,235,14,72,141,13,164,10,0,0,72,137,141,176,254,255,255,72,139,133, 32,255,255,255,72,139,149,176,254,255,255,72,137,80,120,72,139,133,32,255,255,255,72,129,196,136,1,0,0,91,201,195,85,72,137,229,83,72,129,236,88,1,0,0,72,137,189,232,254,255,255,72,137,181,224,254,255,255,72,137,141,88,255,255,255,76,137,133,96,255,255, 255,76,137,141,104,255,255,255,15,182,192,72,137,133,200,254,255,255,72,139,141,200,254,255,255,72,141,4,141,0,0,0,0,72,141,13,59,0,0,0,72,137,141,200,254,255,255,72,41,133,200,254,255,255,72,141,69,239,72,139,141,200,254,255,255,255,225,15,41,120,241, 15,41,112,225,15,41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72,145,15,41,64,129,137,149,220,254,255,255,72,141,133,240,254,255,255,72,137,133,48,255,255,255,199,133,60,255,255,255,0,0,0,0,72,139,149,48,255,255,255,139,133,220,254,255,255, 137,2,72,141,133,16,255,255,255,199,0,24,0,0,0,72,141,133,16,255,255,255,199,64,4,48,0,0,0,72,141,133,16,255,255,255,72,141,85,16,72,137,80,8,72,141,133,16,255,255,255,72,141,141,64,255,255,255,72,137,72,16,233,153,0,0,0,131,189,60,255,255,255,5,117, 34,72,139,133,224,254,255,255,72,139,48,186,5,0,0,0,72,141,61,180,136,2,0,184,0,0,0,0,232,186,2,1,0,235,127,72,131,133,48,255,255,255,4,255,133,60,255,255,255,139,133,16,255,255,255,131,248,48,115,42,72,139,149,32,255,255,255,139,133,16,255,255,255,137, 192,72,1,194,72,137,149,208,254,255,255,139,133,16,255,255,255,131,192,8,137,133,16,255,255,255,235,25,72,139,133,24,255,255,255,72,137,133,208,254,255,255,72,131,192,8,72,137,133,24,255,255,255,72,139,133,208,254,255,255,139,16,72,139,133,48,255,255, 255,137,16,72,139,133,48,255,255,255,139,0,133,192,15,133,86,255,255,255,139,149,4,255,255,255,139,141,0,255,255,255,139,181,252,254,255,255,139,189,248,254,255,255,68,139,133,244,254,255,255,68,139,149,240,254,255,255,72,139,157,232,254,255,255,72,141, 5,141,240,4,0,72,139,0,76,139,157,224,254,255,255,137,84,36,16,137,76,36,8,137,52,36,65,137,249,68,137,209,76,137,218,72,137,222,72,137,199,184,0,0,0,0,232,10,0,0,0,72,129,196,88,1,0,0,91,201,195,85,72,137,229,83,72,129,236,136,1,0,0,72,137,189,168,254, 255,255,72,137,181,160,254,255,255,72,137,149,152,254,255,255,76,137,133,96,255,255,255,76,137,141,104,255,255,255,15,182,192,72,137,133,112,254,255,255,72,139,149,112,254,255,255,72,141,4,149,0,0,0,0,72,141,21,59,0,0,0,72,137,149,112,254,255,255,72, 41,133,112,254,255,255,72,141,69,239,72,139,149,112,254,255,255,255,226,15,41,120,241,15,41,112,225,15,41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72,145,15,41,64,129,137,141,148,254,255,255,72,139,5,190,142,4,0,72,139,16,72,137,149,56,255, 255,255,49,210,139,133,148,254,255,255,137,133,220,254,255,255,72,141,133,176,254,255,255,199,0,32,0,0,0,72,141,133,176,254,255,255,199,64,4,48,0,0,0,72,141,133,176,254,255,255,72,141,85,16,72,137,80,8,72,141,133,176,254,255,255,72,141,149,64,255,255, 255,72,137,80,16,72,141,5,171,150,4,0,72,57,133,152,254,255,255,117,51,72,139,133,168,254,255,255,139,128,136,0,0,0,133,192,116,17,72,141,61,218,134,2,0,184,0,0,0,0,232,238,252,0,0,72,139,133,168,254,255,255,199,128,136,0,0,0,255,255,255,255,72,141,5, 8,150,4,0,72,57,133,152,254,255,255,117,37,131,189,220,254,255,255,0,15,133,136,4,0,0,72,139,181,160,254,255,255,72,139,189,168,254,255,255,232,191,4,0,0,233,152,4,0,0,72,141,5,147,149,4,0,72,57,133,152,254,255,255,15,133,132,0,0,0,131,189,220,254,255, 255,1,15,133,79,4,0,0,139,133,176,254,255,255,131,248,48,115,42,72,139,149,192,254,255,255,139,133,176,254,255,255,137,192,72,1,194,72,137,149,120,254,255,255,139,133,176,254,255,255,131,192,8,137,133,176,254,255,255,235,25,72,139,133,184,254,255,255, 72,137,133,120,254,255,255,72,131,192,8,72,137,133,184,254,255,255,72,139,133,120,254,255,255,139,0,133,192,15,133,240,3,0,0,72,139,181,160,254,255,255,72,139,189,168,254,255,255,232,91,4,0,0,233,0,4,0,0,72,141,5,27,149,4,0,72,57,133,152,254,255,255, 15,133,132,0,0,0,131,189,220,254,255,255,2,15,133,183,3,0,0,139,133,176,254,255,255,131,248,48,115,42,72,139,149,192,254,255,255,139,133,176,254,255,255,137,192,72,1,194,72,137,149,128,254,255,255,139,133,176,254,255,255,131,192,8,137,133,176,254,255, 255,235,25,72,139,133,184,254,255,255,72,137,133,128,254,255,255,72,131,192,8,72,137,133,184,254,255,255,72,139,133,128,254,255,255,139,0,133,192,15,133,88,3,0,0,72,139,181,160,254,255,255,72,139,189,168,254,255,255,232,221,3,0,0,233,104,3,0,0,72,141, 5,195,148,4,0,72,57,133,152,254,255,255,117,37,131,189,220,254,255,255,10,15,133,35,3,0,0,72,139,181,160,254,255,255,72,139,189,168,254,255,255,232,194,3,0,0,233,51,3,0,0,72,141,5,174,148,4,0,72,57,133,152,254,255,255,117,37,131,189,220,254,255,255,10, 15,133,238,2,0,0,72,139,181,160,254,255,255,72,139,189,168,254,255,255,232,167,3,0,0,233,254,2,0,0,199,133,212,254,255,255,0,0,0,0,233,254,0,0,0,72,139,133,168,254,255,255,72,139,72,32,139,133,212,254,255,255,72,99,208,72,137,208,72,193,224,2,72,1,208, 72,193,224,3,72,141,4,1,72,139,0,72,59,133,152,254,255,255,15,133,194,0,0,0,72,139,133,152,254,255,255,72,139,8,72,141,189,224,254,255,255,72,141,21,199,132,2,0,190,80,0,0,0,184,0,0,0,0,232,220,33,2,0,72,139,133,168,254,255,255,72,139,72,32,139,133,212, 254,255,255,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,28,1,72,141,189,224,254,255,255,232,200,6,0,0,72,137,3,72,141,5,176,236,4,0,72,139,0,72,57,133,168,254,255,255,117,36,72,139,133,152,254,255,255,72,139,48,72,141,149,224,254,255, 255,72,141,61,100,132,2,0,184,0,0,0,0,232,56,250,0,0,235,47,72,139,133,168,254,255,255,72,139,0,72,139,16,72,139,133,152,254,255,255,72,139,48,72,141,141,224,254,255,255,72,141,61,107,132,2,0,184,0,0,0,0,232,7,250,0,0,255,133,212,254,255,255,72,139,133, 168,254,255,255,139,64,40,59,133,212,254,255,255,15,143,236,254,255,255,72,139,133,168,254,255,255,139,64,40,255,192,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,137,193,72,139,133,168,254,255,255,139,64,40,72,99,208,72,137,208,72,193,224, 2,72,1,208,72,193,224,3,72,137,198,72,139,133,168,254,255,255,72,139,120,32,72,137,202,232,3,33,0,0,72,137,194,72,139,133,168,254,255,255,72,137,80,32,72,139,133,168,254,255,255,72,139,72,32,72,139,133,168,254,255,255,139,64,40,72,99,208,72,137,208,72, 193,224,2,72,1,208,72,193,224,3,72,141,4,1,72,137,133,200,254,255,255,72,139,133,168,254,255,255,139,64,40,141,80,1,72,139,133,168,254,255,255,137,80,40,72,139,149,200,254,255,255,72,139,133,152,254,255,255,72,137,2,72,139,149,160,254,255,255,72,139, 133,200,254,255,255,72,137,80,8,199,133,216,254,255,255,0,0,0,0,235,125,139,133,216,254,255,255,72,139,141,200,254,255,255,72,99,208,139,133,220,254,255,255,137,68,145,16,255,133,216,254,255,255,139,133,176,254,255,255,131,248,48,115,42,72,139,149,192, 254,255,255,139,133,176,254,255,255,137,192,72,1,194,72,137,149,136,254,255,255,139,133,176,254,255,255,131,192,8,137,133,176,254,255,255,235,25,72,139,133,184,254,255,255,72,137,133,136,254,255,255,72,131,192,8,72,137,133,184,254,255,255,72,139,133, 136,254,255,255,139,0,137,133,220,254,255,255,131,189,220,254,255,255,0,116,13,131,189,216,254,255,255,4,15,142,109,255,255,255,131,189,220,254,255,255,0,116,40,72,139,133,152,254,255,255,72,139,16,72,139,133,168,254,255,255,72,139,0,72,139,48,72,141, 61,237,130,2,0,184,0,0,0,0,232,19,252,0,0,139,133,216,254,255,255,72,139,149,200,254,255,255,72,152,199,68,130,16,0,0,0,0,235,40,72,139,133,152,254,255,255,72,139,16,72,139,133,168,254,255,255,72,139,0,72,139,48,72,141,61,228,130,2,0,184,0,0,0,0,232, 253,255,0,0,72,139,5,83,137,4,0,72,139,149,56,255,255,255,72,51,16,116,5,232,40,29,2,0,72,129,196,136,1,0,0,91,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,240,72,139,69,248,72,137,80,56,201,195,85,72,137,229,72,137,125,248,72,137,117, 240,72,139,85,240,72,139,69,248,72,137,80,64,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,240,72,139,69,248,72,137,80,72,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,240,72,139,69,248,72,137,80,80,201,195,85,72,137,229, 72,137,125,248,72,137,117,240,72,139,85,240,72,139,69,248,72,137,80,88,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,240,72,139,69,248,72,137,80,96,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,248,72,139,69,240,72,137, 66,104,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,248,72,139,69,240,72,137,66,112,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,0,72,139,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,64,8,72,139,0,201,195, 85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,248,72,139,69,240,72,137,66,8,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,0,72,139,64,112,201,195,85,72,137,229,72,137,125,248,72,139,69,248,198,128,143,0,0,0,1,201,195,85,72,137,229, 72,137,125,248,72,139,69,248,15,182,128,143,0,0,0,15,190,192,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,72,139,0,139,128,136,0,0,0,137,69,252,131,125,252,0,126,26,139,69,252,72,152,72,137,194,72,139,69,232,72,141, 4,2,72,137,194,139,69,228,137,2,235,34,72,139,69,232,72,139,0,72,139,0,72,139,16,72,139,125,232,72,141,53,58,129,2,0,184,0,0,0,0,232,96,252,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,137,117,244,131,125,244,0,127,9,199,69,244,255,255,255, 255,235,62,72,139,69,248,72,139,80,72,72,141,5,37,238,255,255,72,57,194,116,27,72,139,69,248,72,139,0,72,139,48,72,141,61,19,129,2,0,184,0,0,0,0,232,231,245,0,0,72,139,85,248,72,141,5,67,255,255,255,72,137,66,72,72,139,85,248,139,69,244,137,130,136,0, 0,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,137,5,120,142,4,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,64,16,72,139,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,141,61,210,128,2,0,184,0,0,0,0,232, 107,253,0,0,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,248,72,139,69,240,72,137,66,120,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,64,120,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,85,248,72,139,69,240, 72,137,130,128,0,0,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,128,128,0,0,0,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,199,69,252,0,0,0,0,199,69,248,0,0,0,0,199,69,244,0,0,0,0,72,139,69,200,72,137,69,216,235,26, 72,139,69,216,15,182,0,15,190,192,1,69,252,139,69,252,1,69,248,255,69,244,72,255,69,216,72,139,69,216,15,182,0,132,192,117,219,139,69,248,37,255,3,0,0,72,193,224,3,72,137,194,72,141,5,22,184,4,0,72,141,4,2,72,137,69,232,235,45,72,139,69,224,72,139,56, 72,139,117,200,232,242,27,2,0,133,192,117,13,72,139,69,224,72,137,69,184,233,181,0,0,0,72,139,69,224,72,131,192,16,72,137,69,232,72,139,69,232,72,139,0,72,137,69,224,72,131,125,224,0,117,193,72,131,125,192,0,116,10,72,139,69,192,72,137,69,224,235,115, 191,24,0,0,0,232,199,26,0,0,72,137,69,224,139,69,244,255,192,72,99,248,232,182,26,0,0,72,137,194,72,139,69,224,72,137,16,72,139,69,224,72,199,64,16,0,0,0,0,72,139,69,224,72,199,64,8,0,0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,25,72,199,194, 255,255,255,255,72,139,69,224,72,139,56,72,139,117,200,232,53,25,2,0,235,16,72,139,69,224,72,139,56,72,139,117,200,232,25,0,0,0,72,139,85,232,72,139,69,224,72,137,2,72,139,69,224,72,137,69,184,72,139,69,184,201,195,85,72,137,229,72,131,236,16,72,137, 125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,230,24,2,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,190,0,0,0,0,232,112,254,255,255,201,195,85,72,137,229,72,129,236,16,4,0,0,72,137,189,248, 251,255,255,72,139,5,189,132,4,0,72,139,16,72,137,85,248,49,210,72,139,133,248,251,255,255,72,139,0,72,137,133,0,252,255,255,72,139,189,0,252,255,255,232,177,26,2,0,137,133,12,252,255,255,139,133,12,252,255,255,72,152,72,3,133,0,252,255,255,72,141,120, 253,72,141,53,241,62,2,0,232,128,26,2,0,133,192,117,16,72,139,141,248,251,255,255,72,137,141,240,251,255,255,235,125,72,139,181,0,252,255,255,72,141,189,16,252,255,255,186,232,3,0,0,232,56,24,2,0,72,199,192,255,255,255,255,72,131,248,255,116,39,72,199, 194,255,255,255,255,139,133,12,252,255,255,72,152,72,141,189,16,252,255,255,72,1,199,72,141,53,147,62,2,0,232,6,24,2,0,235,30,139,133,12,252,255,255,72,152,72,141,189,16,252,255,255,72,1,199,72,141,53,115,62,2,0,232,220,254,255,255,72,141,189,16,252, 255,255,232,246,254,255,255,72,137,133,240,251,255,255,72,139,133,240,251,255,255,72,139,21,211,131,4,0,72,139,77,248,72,51,10,116,5,232,171,23,2,0,201,195,85,72,137,229,83,72,129,236,72,4,0,0,72,137,189,216,251,255,255,72,137,181,208,251,255,255,137, 149,204,251,255,255,72,137,141,192,251,255,255,72,139,5,149,131,4,0,72,139,16,72,137,85,232,49,210,139,5,158,213,4,0,61,232,3,0,0,126,27,190,232,3,0,0,72,141,61,155,125,2,0,184,0,0,0,0,232,225,245,0,0,233,238,1,0,0,72,141,5,77,228,4,0,72,199,0,0,0,0, 0,72,139,133,208,251,255,255,72,137,5,64,181,4,0,72,139,133,208,251,255,255,72,139,24,232,242,225,251,255,72,137,199,72,137,222,232,14,174,0,0,133,192,116,65,139,5,60,213,4,0,255,192,137,5,52,213,4,0,72,139,189,216,251,255,255,72,139,141,192,251,255, 255,139,149,204,251,255,255,72,139,181,208,251,255,255,232,181,2,0,0,139,5,14,213,4,0,255,200,137,5,6,213,4,0,233,115,1,0,0,72,199,5,214,180,4,0,0,0,0,0,72,141,5,95,139,4,0,72,139,64,8,72,137,133,240,251,255,255,72,139,133,208,251,255,255,72,139,24,232, 118,225,251,255,72,137,199,72,141,133,232,251,255,255,72,141,141,0,252,255,255,199,4,36,0,0,0,0,65,185,232,3,0,0,73,137,192,72,141,21,15,61,2,0,72,137,222,232,255,24,252,255,137,133,252,251,255,255,131,189,252,251,255,255,0,121,82,72,139,133,208,251, 255,255,72,139,24,232,40,225,251,255,72,137,199,72,141,133,232,251,255,255,72,141,141,0,252,255,255,199,4,36,0,0,0,0,65,185,232,3,0,0,73,137,192,72,141,21,151,124,2,0,72,137,222,232,177,24,252,255,137,133,252,251,255,255,131,189,252,251,255,255,0,15, 136,168,0,0,0,139,189,252,251,255,255,232,109,22,2,0,72,139,189,208,251,255,255,232,76,59,0,0,133,192,117,112,72,139,181,192,251,255,255,139,189,204,251,255,255,232,51,224,251,255,72,141,189,0,252,255,255,232,1,253,255,255,72,137,195,72,139,189,232,251, 255,255,232,242,252,255,255,72,137,199,72,137,222,232,152,229,255,255,72,141,5,90,138,4,0,72,139,64,8,72,59,133,240,251,255,255,116,19,72,141,5,70,138,4,0,72,139,64,8,72,137,199,232,155,6,252,255,190,0,0,0,0,191,0,0,0,0,232,215,223,251,255,235,43,72, 139,133,208,251,255,255,72,139,48,72,141,61,232,123,2,0,184,0,0,0,0,232,254,243,0,0,235,14,72,141,5,109,226,4,0,72,199,0,0,0,0,0,72,139,5,111,129,4,0,72,139,85,232,72,51,16,116,5,232,71,21,2,0,72,129,196,72,4,0,0,91,201,195,85,72,137,229,72,131,236,16, 72,141,5,72,226,4,0,72,139,0,72,133,192,15,133,227,0,0,0,199,69,252,12,0,0,0,72,141,5,70,138,4,0,72,137,69,240,235,27,72,139,69,240,72,139,48,72,139,69,240,72,139,0,72,139,56,232,170,250,255,255,72,131,69,240,8,255,77,252,131,125,252,255,117,220,72,141, 61,145,123,2,0,232,6,252,255,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,8,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,62,234,255,255,72,137,194,72,141,5,198,225,4,0,72,137,16,72,141,61,92,123,2,0,232,197,251,255,255,72,137,199,65,185,0,0,0,0, 65,184,0,0,0,0,185,8,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,253,233,255,255,72,137,194,72,141,5,125,225,4,0,72,137,16,72,141,53,227,136,4,0,72,141,61,108,225,4,0,232,74,54,0,0,72,141,53,165,252,255,255,72,141,5,97,225,4,0,72,139,56,232,163,247, 255,255,201,195,85,72,137,229,72,141,5,60,225,4,0,72,139,0,201,195,85,72,137,229,83,72,129,236,200,0,0,0,72,137,189,88,255,255,255,72,137,181,80,255,255,255,137,149,76,255,255,255,72,137,141,64,255,255,255,72,139,133,88,255,255,255,72,139,0,72,137,69, 208,72,141,133,96,255,255,255,72,137,69,184,72,141,69,144,72,137,69,176,199,69,228,0,0,0,0,72,141,5,153,135,4,0,72,57,133,80,255,255,255,117,86,131,189,76,255,255,255,0,117,25,72,139,69,208,72,139,64,72,72,139,189,88,255,255,255,15,87,192,255,208,233, 24,7,0,0,72,139,133,64,255,255,255,139,0,131,248,1,15,133,218,6,0,0,72,139,69,208,72,139,80,72,72,139,133,64,255,255,255,243,15,16,64,8,72,139,189,88,255,255,255,255,210,233,228,6,0,0,72,141,5,115,135,4,0,72,57,133,80,255,255,255,117,22,72,139,69,208, 72,139,64,56,72,139,189,88,255,255,255,255,208,233,190,6,0,0,72,141,5,109,135,4,0,72,57,133,80,255,255,255,117,42,72,139,69,208,72,139,64,88,72,139,141,64,255,255,255,139,149,76,255,255,255,72,139,181,80,255,255,255,72,139,189,88,255,255,255,255,208, 233,132,6,0,0,72,141,5,243,134,4,0,72,57,133,80,255,255,255,117,85,131,189,76,255,255,255,0,116,47,72,139,133,64,255,255,255,139,0,131,248,2,117,33,72,139,69,208,72,139,80,80,72,139,133,64,255,255,255,72,139,112,8,72,139,189,88,255,255,255,255,210,233, 60,6,0,0,72,139,69,208,72,139,64,80,72,139,189,88,255,255,255,72,141,53,188,135,4,0,255,208,233,31,6,0,0,72,139,69,208,139,64,40,137,69,232,72,139,69,208,72,139,64,32,72,137,69,200,233,164,5,0,0,72,139,69,200,72,139,0,72,59,133,80,255,255,255,15,133, 139,5,0,0,72,139,69,200,72,131,192,16,72,137,69,192,72,139,69,192,139,0,131,248,10,117,106,72,141,5,128,223,4,0,72,57,133,88,255,255,255,117,48,72,139,69,200,72,139,64,8,72,139,149,64,255,255,255,139,181,76,255,255,255,72,139,189,80,255,255,255,255,208, 72,137,194,72,141,5,63,223,4,0,72,137,16,233,153,5,0,0,72,139,69,200,72,139,64,8,72,139,141,64,255,255,255,139,149,76,255,255,255,72,139,181,80,255,255,255,72,139,189,88,255,255,255,255,208,233,111,5,0,0,131,189,76,255,255,255,5,126,10,199,133,76,255, 255,255,5,0,0,0,72,141,5,3,223,4,0,72,57,133,88,255,255,255,15,132,208,1,0,0,72,139,149,88,255,255,255,72,139,69,184,72,137,16,72,131,69,184,8,255,69,228,233,181,1,0,0,131,125,236,7,15,135,171,1,0,0,139,69,236,72,141,20,133,0,0,0,0,72,141,5,23,0,0,0, 72,141,4,2,139,0,72,99,208,72,141,5,7,0,0,0,72,141,4,2,255,224,144,130,1,0,0,111,0,0,0,204,0,0,0,32,0,0,0,130,1,0,0,130,1,0,0,124,0,0,0,217,0,0,0,131,189,76,255,255,255,0,15,132,161,4,0,0,72,139,133,64,255,255,255,139,0,131,248,3,15,133,143,4,0,0,72, 139,133,64,255,255,255,72,139,64,8,72,137,194,72,139,69,184,72,137,16,255,141,76,255,255,255,72,131,133,64,255,255,255,16,255,69,228,72,131,69,184,8,233,19,1,0,0,131,189,76,255,255,255,0,15,132,82,4,0,0,131,189,76,255,255,255,0,117,13,72,139,85,176,184, 0,0,0,0,137,2,235,48,72,139,133,64,255,255,255,139,0,131,248,1,15,133,42,4,0,0,72,139,133,64,255,255,255,139,80,8,72,139,69,176,137,16,255,141,76,255,255,255,72,131,133,64,255,255,255,16,72,131,69,176,4,233,182,0,0,0,131,189,76,255,255,255,0,15,132,245, 3,0,0,131,189,76,255,255,255,0,117,19,72,141,21,167,133,4,0,72,139,69,184,72,137,16,233,133,0,0,0,72,139,133,64,255,255,255,139,0,131,248,2,117,23,72,139,133,64,255,255,255,72,139,64,8,72,137,194,72,139,69,184,72,137,16,235,82,72,141,5,135,221,4,0,72, 57,133,88,255,255,255,15,133,160,3,0,0,72,139,133,64,255,255,255,139,0,131,248,1,15,133,142,3,0,0,72,139,133,64,255,255,255,243,15,16,72,8,15,87,192,15,46,200,15,133,118,3,0,0,15,138,112,3,0,0,72,141,21,43,133,4,0,72,139,69,184,72,137,16,255,141,76,255, 255,255,72,131,133,64,255,255,255,16,255,69,228,72,131,69,184,8,72,139,69,192,139,0,137,69,236,131,125,236,0,15,149,192,72,131,69,192,4,132,192,15,133,46,254,255,255,131,125,228,6,15,135,196,2,0,0,139,69,228,72,141,20,133,0,0,0,0,72,141,5,25,0,0,0,72, 141,4,2,139,0,72,99,208,72,141,5,9,0,0,0,72,141,4,2,255,224,15,31,0,28,0,0,0,96,0,0,0,171,0,0,0,253,0,0,0,86,1,0,0,183,1,0,0,37,2,0,0,72,139,69,200,72,139,64,8,72,137,194,243,15,16,69,160,243,15,16,77,156,243,15,16,85,152,243,15,16,109,148,139,69,144, 15,40,224,15,40,217,15,40,205,137,133,60,255,255,255,243,15,16,133,60,255,255,255,255,210,72,137,69,168,233,65,2,0,0,72,139,69,200,72,139,64,8,72,137,194,243,15,16,69,160,243,15,16,77,156,243,15,16,85,152,243,15,16,109,148,139,69,144,72,139,189,96,255, 255,255,15,40,224,15,40,217,15,40,205,137,133,60,255,255,255,243,15,16,133,60,255,255,255,255,210,72,137,69,168,233,246,1,0,0,72,139,69,200,72,139,64,8,72,137,194,243,15,16,69,160,243,15,16,77,156,243,15,16,85,152,243,15,16,109,148,139,69,144,72,139, 181,104,255,255,255,72,139,189,96,255,255,255,15,40,224,15,40,217,15,40,205,137,133,60,255,255,255,243,15,16,133,60,255,255,255,255,210,72,137,69,168,233,164,1,0,0,72,139,69,200,72,139,64,8,72,137,193,243,15,16,69,160,243,15,16,77,156,243,15,16,85,152, 243,15,16,109,148,139,69,144,72,139,149,112,255,255,255,72,139,181,104,255,255,255,72,139,189,96,255,255,255,15,40,224,15,40,217,15,40,205,137,133,60,255,255,255,243,15,16,133,60,255,255,255,255,209,72,137,69,168,233,75,1,0,0,72,139,69,200,72,139,64, 8,73,137,192,243,15,16,69,160,243,15,16,77,156,243,15,16,85,152,243,15,16,109,148,139,69,144,72,139,141,120,255,255,255,72,139,149,112,255,255,255,72,139,181,104,255,255,255,72,139,189,96,255,255,255,15,40,224,15,40,217,15,40,205,137,133,60,255,255,255, 243,15,16,133,60,255,255,255,65,255,208,72,137,69,168,233,234,0,0,0,72,139,69,200,72,139,64,8,73,137,194,243,15,16,69,160,243,15,16,77,156,243,15,16,85,152,243,15,16,109,148,139,69,144,72,139,85,128,72,139,141,120,255,255,255,72,139,181,112,255,255,255, 72,139,189,104,255,255,255,76,139,141,96,255,255,255,15,40,224,15,40,217,15,40,205,137,133,60,255,255,255,243,15,16,133,60,255,255,255,73,137,208,72,137,242,72,137,254,76,137,207,65,255,210,72,137,69,168,235,124,72,139,69,200,72,139,64,8,243,15,16,69, 160,243,15,16,77,156,243,15,16,85,152,243,15,16,109,148,139,85,144,72,139,77,136,72,139,117,128,72,139,189,120,255,255,255,76,139,149,112,255,255,255,76,139,157,104,255,255,255,72,139,157,96,255,255,255,15,40,224,15,40,217,15,40,205,137,149,60,255,255, 255,243,15,16,133,60,255,255,255,73,137,201,73,137,240,72,137,249,76,137,210,76,137,222,72,137,223,255,208,72,137,69,168,235,8,72,199,69,168,0,0,0,0,72,141,5,44,218,4,0,72,57,133,88,255,255,255,117,117,72,141,21,12,218,4,0,72,139,69,168,72,137,2,235, 101,72,131,69,200,40,255,77,232,131,125,232,255,15,133,79,250,255,255,72,139,69,208,72,139,64,96,72,139,141,64,255,255,255,139,149,76,255,255,255,72,139,181,80,255,255,255,72,139,189,88,255,255,255,255,208,235,44,72,139,69,208,72,139,0,72,139,8,72,139, 133,80,255,255,255,72,139,16,72,139,189,88,255,255,255,72,141,53,104,115,2,0,184,0,0,0,0,232,142,237,0,0,72,129,196,200,0,0,0,91,201,195,85,72,137,229,72,129,236,208,1,0,0,72,137,189,120,254,255,255,72,137,181,112,254,255,255,72,137,141,104,255,255,255, 76,137,133,112,255,255,255,76,137,141,120,255,255,255,15,182,192,72,137,133,56,254,255,255,72,139,141,56,254,255,255,72,141,4,141,0,0,0,0,72,141,13,59,0,0,0,72,137,141,56,254,255,255,72,41,133,56,254,255,255,72,141,69,255,72,139,141,56,254,255,255,255, 225,15,41,120,241,15,41,112,225,15,41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72,145,15,41,64,129,72,137,149,104,254,255,255,72,141,133,128,254,255,255,72,137,133,64,255,255,255,199,133,76,255,255,255,0,0,0,0,72,139,133,104,254,255,255,72, 137,133,56,255,255,255,72,141,133,32,255,255,255,199,0,24,0,0,0,72,141,133,32,255,255,255,199,64,4,48,0,0,0,72,141,133,32,255,255,255,72,141,85,16,72,137,80,8,72,141,133,32,255,255,255,72,141,141,80,255,255,255,72,137,72,16,131,189,76,255,255,255,9,126, 29,72,139,189,120,254,255,255,72,141,53,121,114,2,0,184,0,0,0,0,232,113,236,0,0,233,74,2,0,0,72,139,133,56,255,255,255,15,182,0,15,190,192,137,133,68,254,255,255,72,255,133,56,255,255,255,131,189,68,254,255,255,105,15,132,40,1,0,0,131,189,68,254,255, 255,105,127,14,131,189,68,254,255,255,102,116,36,233,12,2,0,0,131,189,68,254,255,255,112,15,132,124,1,0,0,131,189,68,254,255,255,115,15,132,130,0,0,0,233,237,1,0,0,72,139,133,64,255,255,255,199,0,1,0,0,0,139,133,36,255,255,255,61,176,0,0,0,115,42,72, 139,149,48,255,255,255,139,133,36,255,255,255,137,192,72,1,194,72,137,149,72,254,255,255,139,133,36,255,255,255,131,192,16,137,133,36,255,255,255,235,25,72,139,133,40,255,255,255,72,137,133,72,254,255,255,72,131,192,8,72,137,133,40,255,255,255,72,139, 133,72,254,255,255,242,15,16,0,242,15,90,192,72,139,133,64,255,255,255,243,15,17,64,8,233,93,1,0,0,72,139,133,64,255,255,255,199,0,2,0,0,0,139,133,32,255,255,255,131,248,48,115,42,72,139,149,48,255,255,255,139,133,32,255,255,255,137,192,72,1,194,72,137, 149,80,254,255,255,139,133,32,255,255,255,131,192,8,137,133,32,255,255,255,235,25,72,139,133,40,255,255,255,72,137,133,80,254,255,255,72,131,192,8,72,137,133,40,255,255,255,72,139,133,80,254,255,255,72,139,16,72,139,133,64,255,255,255,72,137,80,8,233, 232,0,0,0,72,139,133,64,255,255,255,199,0,1,0,0,0,139,133,32,255,255,255,131,248,48,115,42,72,139,149,48,255,255,255,139,133,32,255,255,255,137,192,72,1,194,72,137,149,88,254,255,255,139,133,32,255,255,255,131,192,8,137,133,32,255,255,255,235,25,72,139, 133,40,255,255,255,72,137,133,88,254,255,255,72,131,192,8,72,137,133,40,255,255,255,72,139,133,88,254,255,255,72,139,0,243,72,15,42,192,72,139,133,64,255,255,255,243,15,17,64,8,235,112,72,139,133,64,255,255,255,199,0,3,0,0,0,139,133,32,255,255,255,131, 248,48,115,42,72,139,149,48,255,255,255,139,133,32,255,255,255,137,192,72,1,194,72,137,149,96,254,255,255,139,133,32,255,255,255,131,192,8,137,133,32,255,255,255,235,25,72,139,133,40,255,255,255,72,137,133,96,254,255,255,72,131,192,8,72,137,133,40,255, 255,255,72,139,133,96,254,255,255,72,139,16,72,139,133,64,255,255,255,72,137,80,8,72,131,133,64,255,255,255,16,255,133,76,255,255,255,233,144,253,255,255,72,141,141,128,254,255,255,139,149,76,255,255,255,72,139,181,112,254,255,255,72,139,189,120,254, 255,255,232,219,244,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,131,125,228,0,15,132,180,0,0,0,72,139,69,216,139,0,137,69,252,131,125,252,2,117,35,72,139,77,216,72,131,193,16,139,85,228,255,202,72,139,69,216,72, 139,112,8,72,139,125,232,232,143,244,255,255,233,130,0,0,0,131,125,252,3,117,50,131,125,228,1,117,19,72,139,69,216,72,139,112,8,72,139,125,232,232,204,47,0,0,235,99,72,139,77,216,139,85,228,72,139,125,232,72,141,53,168,124,4,0,232,1,48,0,0,235,74,131, 125,252,1,117,51,131,125,228,1,117,20,72,139,69,216,243,15,16,64,8,72,139,125,232,232,106,47,0,0,235,42,72,139,77,216,139,85,228,72,139,125,232,72,141,53,111,124,4,0,232,200,47,0,0,235,17,72,141,61,81,111,2,0,184,0,0,0,0,232,242,234,0,0,201,195,85,72, 137,229,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,139,69,216,72,139,0,72,137,69,240,72,139,69,240,139,64,40,137,69,252,72,139,69,240,72,139,64,32,72,137,69,232,235,32,72,139,69,232,72,139,0,72,59,69,208,117,14,72,139,69,232, 72,139,64,8,72,137,69,200,235,63,72,131,69,232,40,255,77,252,131,125,252,255,117,215,72,139,69,208,72,139,8,72,139,69,240,72,139,0,72,139,16,72,139,125,216,72,141,53,215,110,2,0,184,0,0,0,0,232,165,232,0,0,72,141,5,113,255,255,255,72,137,69,200,72,139, 69,200,201,195,85,72,137,229,72,137,125,216,72,137,117,208,72,139,69,216,72,139,0,72,137,69,240,72,139,69,240,139,64,40,137,69,252,72,139,69,240,72,139,64,32,72,137,69,232,235,32,72,139,69,232,72,139,0,72,59,69,208,117,14,72,139,69,232,72,139,64,8,72, 137,69,200,235,22,72,131,69,232,40,255,77,252,131,125,252,255,117,215,72,199,69,200,0,0,0,0,72,139,69,200,201,195,85,72,137,229,232,101,169,251,255,232,234,12,252,255,232,106,212,252,255,232,52,204,251,255,232,3,254,252,255,232,170,47,253,255,232,55, 96,253,255,232,182,147,253,255,232,188,183,254,255,232,110,10,255,255,232,24,58,255,255,232,92,107,255,255,232,235,73,253,255,232,168,236,253,255,232,150,85,254,255,232,103,148,254,255,232,53,225,254,255,232,24,40,0,0,232,174,249,0,0,232,49,109,1,0,232, 37,91,1,0,232,190,239,1,0,232,156,20,1,0,232,142,180,1,0,232,116,189,1,0,232,132,201,1,0,232,67,212,1,0,232,119,104,1,0,232,211,131,1,0,232,45,137,249,255,232,141,174,249,255,232,65,208,249,255,232,219,215,249,255,232,50,229,249,255,232,103,244,249,255, 232,95,88,250,255,232,194,103,250,255,232,71,134,250,255,232,250,138,250,255,232,42,158,250,255,232,97,27,251,255,232,138,70,251,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,15,87,201,243,15,16,69,244,15,46,193,119,2,235,17, 72,141,61,119,109,2,0,184,0,0,0,0,232,189,228,0,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,15,182,208,72,141,5,45,211,4,0,137,16,201,195,85,72,137,229,83,72,129,236,152,0,0,0,72,137,189, 120,255,255,255,72,137,181,112,255,255,255,137,149,108,255,255,255,72,137,141,96,255,255,255,72,139,5,235,113,4,0,72,139,16,72,137,85,232,49,210,72,139,133,112,255,255,255,72,139,24,72,139,133,120,255,255,255,72,139,56,232,97,233,255,255,72,137,198,72, 137,218,72,141,61,33,109,2,0,184,0,0,0,0,232,164,225,0,0,199,69,140,0,0,0,0,235,45,139,69,140,72,152,72,193,224,4,72,137,199,72,3,189,96,255,255,255,72,141,117,144,186,80,0,0,0,232,125,111,255,255,72,141,125,144,232,149,226,0,0,255,69,140,139,69,140, 59,133,108,255,255,255,124,200,232,134,227,0,0,72,139,5,101,113,4,0,72,139,85,232,72,51,16,116,5,232,61,5,2,0,72,129,196,152,0,0,0,91,201,195,85,72,137,229,72,141,61,218,103,2,0,232,75,236,255,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,8,0,0,0, 186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,131,218,255,255,72,137,5,46,195,4,0,72,141,53,238,254,255,255,72,139,61,32,195,4,0,232,69,232,255,255,72,141,61,140,103,2,0,232,253,235,255,255,72,137,198,72,141,61,5,195,4,0,232,187,38,0,0,72,141,61,209,83,2,0, 232,226,235,255,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,8,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,26,218,255,255,72,137,194,72,141,5,170,209,4,0,72,137,16,72,141,61,248,53,2,0,232,161,235,255,255,72,137,194,72,141,5,93,159,0,0,72,137,198, 72,141,5,135,209,4,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,18,225,255,255,72,141,61,225,107,2,0,232,105,235,255,255,72,137,194,72,141,5,226,206,251,255,72,137,198,72,141,5,79,209,4,0,72,139,56,65,185,0,0,0,0,65,184,2,0,0,0,185,2,0,0,0, 184,0,0,0,0,232,212,224,255,255,72,141,61,246,19,2,0,232,43,235,255,255,72,137,194,72,141,5,17,213,255,255,72,137,198,72,141,5,17,209,4,0,72,139,56,65,185,0,0,0,0,65,184,2,0,0,0,185,2,0,0,0,184,0,0,0,0,232,150,224,255,255,72,141,61,115,107,2,0,232,237, 234,255,255,72,137,194,72,141,5,156,146,0,0,72,137,198,72,141,5,211,208,4,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,100,224,255,255,72,141,61,70,107,2,0,232,187,234,255,255,72,137,194,72,141,5,117,107,252,255,72,137,198,72,141,5,161,208,4,0,72,139,56,65, 184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,44,224,255,255,72,141,61,49,40,2,0,232,131,234,255,255,72,137,194,72,141,5,152,92,0,0,72,137,198,72,141,5,105,208,4,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,244,223,255,255,72,141,61,18,19,2,0,232, 75,234,255,255,72,137,194,72,141,5,189,253,251,255,72,137,198,72,141,5,49,208,4,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,188,223,255,255,72,141,61,169,106,2,0,232,19,234,255,255,72,137,194,72,141,5,222,52,0,0,72,137,198,72,141,5,249,207, 4,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,132,223,255,255,72,141,61,120,106,2,0,232,219,233,255,255,72,137,194,72,141,5,199,137,252,255,72,137,198,72,141,5,193,207,4,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,76,223,255,255, 72,141,61,68,106,2,0,232,163,233,255,255,72,137,194,72,141,5,174,48,0,0,72,137,198,72,141,5,137,207,4,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,26,223,255,255,72,141,61,30,106,2,0,232,113,233,255,255,72,137,194,72,141,5,154,228,0,0,72,137,198,72,141,5, 87,207,4,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,232,222,255,255,72,141,61,246,105,2,0,232,63,233,255,255,72,137,194,72,141,5,216,78,0,0,72,137,198,72,141,5,37,207,4,0,72,139,56,65,184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,176,222,255,255,72,141,61,207, 105,2,0,232,7,233,255,255,72,137,194,72,141,5,48,85,0,0,72,137,198,72,141,5,237,206,4,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,120,222,255,255,72,141,61,164,105,2,0,232,207,232,255,255,72,137,194,72,141,5,176,88,0,0,72,137,198,72,141,5, 181,206,4,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,64,222,255,255,72,141,61,121,105,2,0,232,151,232,255,255,72,137,194,72,141,5,213,239,1,0,72,137,198,72,141,5,125,206,4,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,8,222,255,255, 72,141,61,77,105,2,0,232,95,232,255,255,72,137,194,72,141,5,172,239,1,0,72,137,198,72,141,5,69,206,4,0,72,139,56,65,184,0,0,0,0,185,6,0,0,0,184,0,0,0,0,232,208,221,255,255,72,141,61,37,105,2,0,232,39,232,255,255,72,137,194,72,141,5,131,239,1,0,72,137, 198,72,141,5,13,206,4,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,152,221,255,255,72,141,61,249,104,2,0,232,239,231,255,255,72,137,194,72,141,5,32,212,0,0,72,137,198,72,141,5,213,205,4,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,102,221,255,255, 72,141,61,217,104,2,0,232,189,231,255,255,72,137,194,72,141,5,125,212,0,0,72,137,198,72,141,5,163,205,4,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,46,221,255,255,72,141,61,173,104,2,0,232,133,231,255,255,72,137,194,72,141,5,141,213,0,0,72, 137,198,72,141,5,107,205,4,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,252,220,255,255,72,141,61,144,104,2,0,232,83,231,255,255,72,137,194,72,141,5,241,213,0,0,72,137,198,72,141,5,57,205,4,0,72,139,56,65,184,0,0,0,0,185,10,0,0,0,184,0,0,0,0,232,196,220,255, 255,72,141,61,103,104,2,0,232,27,231,255,255,72,137,194,72,141,5,24,129,0,0,72,137,198,72,141,5,1,205,4,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,146,220,255,255,72,141,61,58,104,2,0,232,233,230,255,255,72,137,194,72,141,5,199,101,0,0,72,137,198,72,141, 5,207,204,4,0,72,139,56,185,0,0,0,0,184,0,0,0,0,232,96,220,255,255,72,141,61,25,104,2,0,232,183,230,255,255,72,137,194,72,141,53,41,249,255,255,72,141,5,160,204,4,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,43,220,255,255,72,141,61,236,103, 2,0,232,130,230,255,255,72,137,194,72,141,53,39,249,255,255,72,141,5,107,204,4,0,72,139,56,65,184,0,0,0,0,185,1,0,0,0,184,0,0,0,0,232,246,219,255,255,72,141,53,43,249,255,255,72,141,5,69,204,4,0,72,139,56,232,127,226,255,255,72,141,61,38,78,2,0,232,55, 230,255,255,72,137,198,72,141,61,39,204,4,0,232,245,32,0,0,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,137,85,232,72,131,125,248,0,116,10,72,139,69,248,199,0,0,0,0,0,72,131,125,240,0,116,10,72,139,69,240,199,0,43,0,0,0,72,131,125,232,0,116, 10,72,139,69,232,199,0,0,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,131,125,232,0,117,8,72,199,69,232,1,0,0,0,72,139,125,232,190,1,0,0,0,232,240,254,1,0,72,137,69,248,72,131,125,248,0,117,17,72,141,61,16,103,2,0,184,0,0,0,0,232,68,217, 0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,160,255,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,125,224,232,133,255,255,255,72,137,69,248,72,131,125,224,0,116,56,72,199, 192,255,255,255,255,72,131,248,255,116,26,72,199,193,255,255,255,255,72,139,85,224,72,139,117,232,72,139,125,248,232,240,253,1,0,235,17,72,139,85,224,72,139,117,232,72,139,125,248,232,6,0,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125, 248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,72,139,117,240,72,139,125,248,232,171,253,1,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,72,131,125,216,0,117,8,72,199,69,216,1,0,0,0,72,131, 125,224,0,117,8,72,199,69,224,1,0,0,0,72,139,117,216,72,139,125,232,232,74,255,1,0,72,137,69,248,72,139,69,216,72,59,69,224,118,107,72,131,125,248,0,116,100,72,199,192,255,255,255,255,72,131,248,255,116,48,72,199,193,255,255,255,255,72,139,85,224,72, 139,69,216,72,137,198,72,41,214,72,139,85,248,72,139,69,224,72,141,60,2,72,137,242,190,0,0,0,0,232,38,253,1,0,235,39,72,139,85,224,72,139,69,216,72,137,193,72,41,209,72,139,85,248,72,139,69,224,72,141,60,2,72,137,202,190,0,0,0,0,232,30,0,0,0,72,131,125, 248,0,117,17,72,141,61,187,101,2,0,184,0,0,0,0,232,199,215,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,139,117,244,72,139,125,248,232,181,252,1,0,201,195,85,72, 137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,131,125,240,0,117,8,72,199,69,240,1,0,0,0,72,139,125,248,232,123,253,1,0,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,72,137,85,200,72,137,77,192,72,139,61,198,186,4,0,232,173, 26,0,0,72,137,69,248,72,139,85,248,72,139,69,216,72,137,66,16,72,139,85,248,72,139,69,208,72,137,66,24,72,141,5,182,112,4,0,72,57,69,200,117,14,72,139,85,248,184,0,0,0,0,137,66,40,235,12,72,139,85,248,72,139,69,192,72,137,66,40,72,139,85,248,72,139,69, 200,72,137,66,32,72,139,69,248,72,199,64,8,0,0,0,0,72,139,69,216,72,139,64,32,72,137,69,240,72,131,125,240,0,116,43,235,8,72,139,69,232,72,137,69,240,72,139,69,240,72,139,64,8,72,137,69,232,72,131,125,232,0,117,229,72,139,85,240,72,139,69,248,72,137, 66,8,235,12,72,139,85,216,72,139,69,248,72,137,66,32,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,117,232,72,139,125,232,72,141,13,14,112,4,0,72,141,21,7,112,4,0,232,5,255,255,255,72,137,69,248,72,139,85,248, 139,69,228,137,66,40,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,240,72,139,8,72,139,69,248,72,139,64,32,72,139,16,72,139,69,248,72,139,120,16,72,141,53,69,100,2,0,184,0,0,0,0,232,75,220,0,0,201,195,85,72, 137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,80,32,72,141,5,54,111,4,0,72,57,194,117,35,72,139,69,248,72,139,112,40,72,139,69,248,72,139,120,24,72,141,21,2,16,2,0,184,0,0,0,0,232,132,238,255,255,235,92,72,139,69,248,72,139,64,32,72,133,192, 117,15,72,139,69,248,72,139,120,24,232,220,33,0,0,235,64,72,139,69,248,72,139,80,32,72,141,5,3,111,4,0,72,57,194,117,28,72,139,125,248,185,0,0,0,0,186,0,0,0,0,72,141,53,201,110,4,0,232,105,2,0,0,235,16,72,139,125,248,72,141,53,183,110,4,0,232,36,255, 255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,139,80,32,72,141,5,49,110,4,0,72,57,194,117,39,72,139,69,232,72,139,112,40,72,139,69,232,72,139,120,24,72,139,77,224,72,141,21,123,93,2,0,184,0,0,0,0,232,219,237, 255,255,235,110,72,139,69,232,72,139,64,32,72,133,192,117,19,72,139,69,232,72,139,120,24,72,139,117,224,232,119,33,0,0,235,78,72,139,69,232,72,139,80,32,72,141,5,86,110,4,0,72,57,194,117,42,199,69,240,3,0,0,0,72,139,69,224,72,137,69,248,72,141,77,240, 72,139,125,232,186,1,0,0,0,72,141,53,174,109,4,0,232,174,1,0,0,235,16,72,139,125,232,72,141,53,156,109,4,0,232,105,254,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,72,139,80,32,72,141,5,149,109,4,0,72,57,194, 117,43,243,15,90,69,228,72,139,69,232,72,139,112,40,72,139,69,232,72,139,120,24,72,141,21,224,92,2,0,184,1,0,0,0,232,30,237,255,255,233,141,0,0,0,72,139,69,232,72,139,80,32,72,141,5,246,109,4,0,72,57,194,117,12,72,139,85,232,139,69,228,137,66,40,235, 109,72,139,69,232,72,139,64,32,72,133,192,117,20,72,139,69,232,72,139,120,24,243,15,16,69,228,232,109,32,0,0,235,76,72,139,69,232,72,139,80,32,72,141,5,117,109,4,0,72,57,194,117,40,199,69,240,1,0,0,0,139,69,228,137,69,248,72,141,77,240,72,139,125,232, 186,1,0,0,0,72,141,53,239,108,4,0,232,207,0,0,0,235,16,72,139,125,232,72,141,53,221,108,4,0,232,138,253,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,139,80,32,72,141,5,215,108,4,0,72,57,194,117,39,72,139, 69,232,72,139,112,40,72,139,69,232,72,139,120,24,72,139,77,224,72,141,21,247,92,2,0,184,0,0,0,0,232,65,236,255,255,235,110,72,139,69,232,72,139,64,32,72,133,192,117,19,72,139,69,232,72,139,120,24,72,139,117,224,232,4,32,0,0,235,78,72,139,69,232,72,139, 80,32,72,141,5,188,108,4,0,72,57,194,117,42,199,69,240,2,0,0,0,72,139,69,224,72,137,69,248,72,141,77,240,72,139,125,232,186,1,0,0,0,72,141,53,84,108,4,0,232,20,0,0,0,235,16,72,139,125,232,72,141,53,66,108,4,0,232,207,252,255,255,201,195,85,72,137,229, 72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,69,232,72,139,80,32,72,141,5,85,108,4,0,72,57,194,116,60,72,139,69,232,72,139,80,32,72,141,5,225,107,4,0,72,57,194,116,40,72,139,69,232,72,139,80,32,72,141,5,237,107,4,0,72,57, 194,116,20,72,139,69,232,72,139,80,32,72,141,5,153,107,4,0,72,57,194,117,33,72,139,69,232,72,139,112,40,72,139,69,232,72,139,120,24,72,139,77,208,139,85,220,232,169,227,255,255,233,149,0,0,0,72,139,69,232,72,139,64,32,72,133,192,117,26,72,139,69,232, 72,139,120,24,72,139,77,208,139,85,220,72,139,117,224,232,44,31,0,0,235,110,131,125,220,0,117,11,72,139,125,232,232,76,252,255,255,235,93,131,125,220,1,117,31,72,139,69,208,139,0,131,248,1,117,20,72,139,125,208,232,97,95,255,255,72,139,125,232,232,131, 253,255,255,235,56,131,125,220,1,117,34,72,139,69,208,139,0,131,248,2,117,23,72,139,125,208,232,138,95,255,255,72,137,198,72,139,125,232,232,58,254,255,255,235,16,72,139,125,232,72,141,53,99,107,4,0,232,176,251,255,255,201,195,85,72,137,229,72,131,236, 32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,64,32,72,59,69,240,117,30,72,139,69,248,72,139,112,40,72,139,69,248,72,139,120,24,72,139,77,224,139,85,236,232,204,226,255,255,235,52,72,139,69,248,72,139,64,32,72,133,192, 117,26,72,139,69,248,72,139,120,24,72,139,77,224,139,85,236,72,139,117,240,232,165,226,255,255,235,13,72,139,117,240,72,139,125,248,232,55,251,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,139,64,16,72,137,69,248,72,139, 69,248,72,139,64,32,72,59,69,232,117,18,72,139,69,232,72,139,80,8,72,139,69,248,72,137,80,32,235,65,72,139,69,248,72,139,64,32,72,137,69,240,235,44,72,139,69,240,72,139,64,8,72,59,69,232,117,18,72,139,69,232,72,139,80,8,72,139,69,240,72,137,80,8,235, 19,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,205,72,139,125,232,190,48,0,0,0,232,117,249,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,120,40,232,232,173,254,255,72,139,69,248,72,139, 72,40,72,139,85,240,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,139,66,16,72,137,65,16,72,139,69,240,72,139,64,16,72,133,192,116,16,72,139,69,240,72,139,80,16,139,66,12,255,192,137,66,12,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117, 208,72,139,61,21,180,4,0,232,244,19,0,0,72,137,69,248,72,139,85,248,72,139,69,216,72,137,66,16,72,139,69,248,72,199,64,24,0,0,0,0,72,139,85,248,72,141,5,57,105,4,0,72,137,66,32,72,139,85,248,72,139,69,208,72,137,66,40,72,139,69,248,72,199,64,8,0,0,0, 0,72,139,69,216,72,139,64,32,72,137,69,240,72,131,125,240,0,116,43,235,8,72,139,69,232,72,137,69,240,72,139,69,240,72,139,64,8,72,137,69,232,72,131,125,232,0,117,229,72,139,85,240,72,139,69,248,72,137,66,8,235,12,72,139,85,216,72,139,69,248,72,137,66, 32,72,139,69,248,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,80,40,139,69,244,137,2,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,72,139,61,82,179,4,0,232,41,19,0,0,72,137,69,248,72,139,85,248,72,139, 69,216,72,137,66,16,72,139,69,248,72,199,64,24,0,0,0,0,72,139,85,248,72,141,5,142,104,4,0,72,137,66,32,72,139,85,248,72,139,69,208,72,137,66,40,72,139,69,248,72,199,64,8,0,0,0,0,72,139,69,216,72,139,64,32,72,137,69,240,72,131,125,240,0,116,43,235,8,72, 139,69,232,72,137,69,240,72,139,69,240,72,139,64,8,72,137,69,232,72,131,125,232,0,117,229,72,139,85,240,72,139,69,248,72,137,66,8,235,12,72,139,85,216,72,139,69,248,72,137,66,32,72,139,69,248,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139, 69,248,72,139,80,40,72,139,69,240,72,137,2,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,72,139,61,142,178,4,0,232,93,18,0,0,72,137,69,248,72,139,85,248,72,139,69,216,72,137,66,16,72,139,69,248,72,199,64,24,0,0,0,0,72,139,85,248,72, 141,5,226,103,4,0,72,137,66,32,72,139,85,248,72,139,69,208,72,137,66,40,72,139,69,248,72,199,64,8,0,0,0,0,72,139,69,216,72,139,64,32,72,137,69,240,72,131,125,240,0,116,43,235,8,72,139,69,232,72,137,69,240,72,139,69,240,72,139,64,8,72,137,69,232,72,131, 125,232,0,117,229,72,139,85,240,72,139,69,248,72,137,66,8,235,12,72,139,85,216,72,139,69,248,72,137,66,32,72,139,69,248,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,137,85,204,72,137,77,192,72,139,69,216,72,139,64,32,72,137,69,232, 131,125,204,0,15,132,211,0,0,0,139,69,204,255,200,137,69,252,72,139,69,192,72,131,192,16,72,137,69,240,235,95,72,139,69,240,139,0,131,248,3,117,19,72,139,69,240,72,139,112,8,72,139,125,232,232,103,26,0,0,235,48,72,139,69,240,139,0,131,248,1,117,20,72, 139,69,240,243,15,16,64,8,72,139,125,232,232,31,26,0,0,235,17,72,139,69,240,72,139,112,8,72,139,125,232,232,92,26,0,0,72,131,69,240,16,72,139,69,232,72,139,64,8,72,137,69,232,72,131,125,232,0,116,9,255,77,252,131,125,252,255,117,145,72,139,69,192,139, 0,131,248,3,117,19,72,139,69,192,72,139,112,8,72,139,125,216,232,248,25,0,0,235,48,72,139,69,192,139,0,131,248,1,117,20,72,139,69,192,243,15,16,64,8,72,139,125,216,232,176,25,0,0,235,17,72,139,69,192,72,139,112,8,72,139,125,216,232,237,25,0,0,201,195, 85,72,137,229,72,141,61,37,86,2,0,232,170,217,255,255,72,137,199,65,185,0,0,0,0,65,184,1,0,0,0,185,48,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,226,199,255,255,72,137,5,157,176,4,0,72,141,53,253,246,255,255,72,139,61,143,176,4,0,232,34,213,255,255, 72,141,53,139,247,255,255,72,139,61,124,176,4,0,232,41,213,255,255,72,141,53,51,248,255,255,72,139,61,105,176,4,0,232,48,213,255,255,72,141,53,255,248,255,255,72,139,61,86,176,4,0,232,55,213,255,255,72,141,53,167,249,255,255,72,139,61,67,176,4,0,232, 62,213,255,255,72,141,53,179,250,255,255,72,139,61,48,176,4,0,232,69,213,255,255,72,141,61,120,85,2,0,232,253,216,255,255,72,137,199,65,185,0,0,0,0,65,184,1,0,0,0,185,48,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,53,199,255,255,72,137,5,248,175,4, 0,72,141,53,103,251,255,255,72,139,61,234,175,4,0,232,143,212,255,255,72,141,53,0,246,255,255,72,139,61,215,175,4,0,232,228,212,255,255,72,141,61,23,85,2,0,232,156,216,255,255,72,137,199,65,185,0,0,0,0,65,184,1,0,0,0,185,48,0,0,0,186,0,0,0,0,190,0,0, 0,0,184,0,0,0,0,232,212,198,255,255,72,137,5,159,175,4,0,72,141,53,19,252,255,255,72,139,61,145,175,4,0,232,72,212,255,255,72,141,53,159,245,255,255,72,139,61,126,175,4,0,232,131,212,255,255,72,141,61,182,84,2,0,232,59,216,255,255,72,137,199,65,185,0, 0,0,0,65,184,1,0,0,0,185,48,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,115,198,255,255,72,137,5,70,175,4,0,72,141,53,125,252,255,255,72,139,61,56,175,4,0,232,1,212,255,255,72,141,53,62,245,255,255,72,139,61,37,175,4,0,232,34,212,255,255,201,195,85, 72,137,229,139,5,28,175,4,0,255,192,137,5,20,175,4,0,201,195,85,72,137,229,139,5,8,175,4,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,191,32,0,0,0,232,201,241,255,255,72,137,69,248,72,139,85,248,72,139,69,216,72,137,2,72,139,69, 248,72,199,64,8,0,0,0,0,72,139,69,216,72,139,64,24,72,137,69,240,72,131,125,240,0,116,43,235,8,72,139,69,232,72,137,69,240,72,139,69,240,72,139,64,8,72,137,69,232,72,131,125,232,0,117,229,72,139,85,240,72,139,69,248,72,137,66,8,235,12,72,139,85,216,72, 139,69,248,72,137,66,24,72,139,69,248,72,199,64,16,0,0,0,0,72,139,85,248,72,139,69,208,72,137,66,24,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,56,72,141,53,246,88,2,0,184,0,0,0,0,232,213,208,0,0,201,195,85,72, 137,229,72,131,236,32,72,137,125,232,139,5,9,174,4,0,255,192,137,5,1,174,4,0,139,5,251,173,4,0,61,231,3,0,0,126,11,72,139,125,232,232,170,255,255,255,235,45,72,139,69,232,72,139,64,16,72,137,69,248,235,24,72,139,69,248,72,139,120,8,232,118,22,0,0,72, 139,69,248,72,139,0,72,137,69,248,72,131,125,248,0,117,225,139,5,182,173,4,0,255,200,137,5,174,173,4,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,139,5,150,173,4,0,255,192,137,5,142,173,4,0,139,5,136,173,4,0,61,231,3,0,0,126,11, 72,139,125,216,232,55,255,255,255,235,76,72,139,85,208,72,139,2,72,137,69,224,72,139,66,8,72,137,69,232,72,139,66,16,72,137,69,240,72,139,69,216,72,139,64,16,72,137,69,248,235,28,72,139,69,248,72,139,120,8,72,141,117,224,232,44,22,0,0,72,139,69,248,72, 139,0,72,137,69,248,72,131,125,248,0,117,221,139,5,36,173,4,0,255,200,137,5,28,173,4,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,139,5,3,173,4,0,255,192,137,5,251,172,4,0,139,5,245,172,4,0,61,231,3,0,0,126,11,72,139,125,232, 232,164,254,255,255,235,50,72,139,69,232,72,139,64,16,72,137,69,248,235,29,72,139,69,248,72,139,120,8,243,15,16,69,228,232,138,21,0,0,72,139,69,248,72,139,0,72,137,69,248,72,131,125,248,0,117,220,139,5,171,172,4,0,255,200,137,5,163,172,4,0,201,195,85, 72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,139,5,139,172,4,0,255,192,137,5,131,172,4,0,139,5,125,172,4,0,61,231,3,0,0,126,11,72,139,125,232,232,44,254,255,255,235,49,72,139,69,232,72,139,64,16,72,137,69,248,235,28,72,139,69,248,72,139,120, 8,72,139,117,224,232,99,21,0,0,72,139,69,248,72,139,0,72,137,69,248,72,131,125,248,0,117,221,139,5,52,172,4,0,255,200,137,5,44,172,4,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,139,5,13,172,4,0,255,192, 137,5,5,172,4,0,139,5,255,171,4,0,61,231,3,0,0,126,11,72,139,125,232,232,174,253,255,255,235,56,72,139,69,232,72,139,64,16,72,137,69,248,235,35,72,139,69,248,72,139,120,8,72,139,77,208,139,85,220,72,139,117,224,232,5,21,0,0,72,139,69,248,72,139,0,72, 137,69,248,72,131,125,248,0,117,214,139,5,175,171,4,0,255,200,137,5,167,171,4,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,139,5,136,171,4,0,255,192,137,5,128,171,4,0,139,5,122,171,4,0,61,231,3,0,0,126, 11,72,139,125,232,232,41,253,255,255,235,56,72,139,69,232,72,139,64,16,72,137,69,248,235,35,72,139,69,248,72,139,120,8,72,139,77,208,139,85,220,72,139,117,224,232,211,216,255,255,72,139,69,248,72,139,0,72,137,69,248,72,131,125,248,0,117,214,139,5,42, 171,4,0,255,200,137,5,34,171,4,0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,64,24,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,139,0,72,137,69,248,72,139,69,248,72,139,64,24,72,59,69,232,117,18,72,139,69,232,72,139, 80,8,72,139,69,248,72,137,80,24,235,65,72,139,69,248,72,139,64,24,72,137,69,240,235,44,72,139,69,240,72,139,64,8,72,59,69,232,117,18,72,139,69,232,72,139,80,8,72,139,69,240,72,137,80,8,235,19,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117, 205,72,139,125,232,190,32,0,0,0,232,129,239,255,255,201,195,85,72,137,229,72,131,236,96,72,137,125,200,137,117,196,72,137,85,184,137,77,180,72,139,69,200,72,139,64,24,72,137,69,240,235,15,72,139,69,240,72,139,64,8,72,137,69,240,255,77,196,72,131,125, 240,0,116,6,131,125,196,0,117,228,72,131,125,240,0,117,13,72,199,69,168,0,0,0,0,233,246,0,0,0,72,139,69,184,72,139,0,15,182,128,142,0,0,0,132,192,116,19,131,125,180,0,117,10,72,139,69,184,72,137,69,232,235,73,255,77,180,72,139,69,184,72,139,64,32,72, 137,69,248,235,15,72,139,69,248,72,139,64,8,72,137,69,248,255,77,180,72,131,125,248,0,116,6,131,125,180,0,117,228,72,131,125,248,0,117,13,72,199,69,168,0,0,0,0,233,147,0,0,0,72,139,69,248,72,137,69,232,191,16,0,0,0,232,194,236,255,255,72,137,69,224,72, 139,69,224,72,199,0,0,0,0,0,72,139,85,224,72,139,69,232,72,137,66,8,72,139,69,240,72,139,64,16,72,137,69,216,72,131,125,216,0,116,38,235,11,72,139,69,216,72,139,0,72,137,69,216,72,139,69,216,72,139,0,72,133,192,117,233,72,139,85,216,72,139,69,224,72, 137,2,235,12,72,139,85,240,72,139,69,224,72,137,66,16,72,139,69,240,72,139,80,24,72,141,5,110,95,4,0,72,57,194,117,5,232,142,229,251,255,72,139,69,224,72,137,69,168,72,139,69,168,201,195,85,72,137,229,72,131,236,80,72,137,125,200,137,117,196,72,137,85, 184,137,77,180,72,139,69,200,72,139,64,24,72,137,69,240,235,26,72,131,125,240,0,15,132,33,1,0,0,72,139,69,240,72,139,64,8,72,137,69,240,255,77,196,72,131,125,240,0,116,6,131,125,196,0,117,217,72,139,69,184,72,139,0,15,182,128,142,0,0,0,132,192,116,19, 131,125,180,0,117,10,72,139,69,184,72,137,69,232,235,64,255,77,180,72,139,69,184,72,139,64,32,72,137,69,248,235,15,72,139,69,248,72,139,64,8,72,137,69,248,255,77,180,72,131,125,248,0,116,6,131,125,180,0,117,228,72,131,125,248,0,15,132,171,0,0,0,72,139, 69,248,72,137,69,232,72,139,69,240,72,139,64,16,72,137,69,224,72,131,125,224,0,15,132,140,0,0,0,72,139,69,224,72,139,64,8,72,59,69,232,117,83,72,139,69,224,72,139,16,72,139,69,240,72,137,80,16,72,139,125,224,190,16,0,0,0,232,64,237,255,255,235,70,72, 139,69,216,72,139,64,8,72,59,69,232,117,30,72,139,69,216,72,139,16,72,139,69,224,72,137,16,72,139,125,216,190,16,0,0,0,232,20,237,255,255,235,26,72,139,69,216,72,137,69,224,72,139,69,224,72,139,0,72,137,69,216,72,131,125,216,0,117,186,72,139,69,240,72, 139,80,24,72,141,5,16,94,4,0,72,57,194,117,5,232,48,228,251,255,201,195,85,72,137,229,72,137,125,232,72,139,69,232,72,139,64,24,72,137,69,240,199,69,252,0,0,0,0,235,15,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,234,139,69, 252,201,195,85,72,137,229,72,137,125,232,72,139,69,232,72,139,64,32,72,137,69,240,199,69,252,0,0,0,0,235,15,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,234,72,139,69,232,72,139,0,15,182,128,142,0,0,0,132,192,116,3,255,69,252, 139,69,252,201,195,85,72,137,229,72,137,125,232,72,137,117,224,137,85,220,72,139,69,232,72,139,64,24,72,137,69,248,235,12,72,139,69,248,72,139,64,8,72,137,69,248,255,77,220,131,125,220,255,116,7,72,131,125,248,0,117,228,72,139,85,224,72,139,69,248,72, 137,2,72,131,125,248,0,116,14,72,139,69,248,72,139,64,16,72,137,69,208,235,8,72,199,69,208,0,0,0,0,72,139,69,208,201,195,85,72,137,229,72,137,125,200,72,137,117,192,72,137,85,184,72,137,77,176,72,139,69,200,72,139,64,8,72,137,69,240,72,139,69,240,72, 139,16,72,139,5,210,166,4,0,72,57,194,116,57,72,139,69,240,72,139,16,72,139,5,199,166,4,0,72,57,194,116,38,72,139,69,240,72,139,16,72,139,5,188,166,4,0,72,57,194,116,19,72,139,69,240,72,139,16,72,139,5,177,166,4,0,72,57,194,117,119,72,139,69,240,72,137, 69,232,72,139,69,232,72,139,64,16,72,137,69,216,72,139,69,216,72,139,0,15,182,128,142,0,0,0,15,190,192,137,69,252,72,139,69,216,72,139,64,32,72,137,69,224,235,15,255,69,252,72,139,69,224,72,139,64,8,72,137,69,224,72,131,125,224,0,116,10,72,139,69,224, 72,59,69,232,117,224,72,139,85,176,139,69,252,137,2,72,139,85,192,72,139,69,216,72,137,2,72,139,85,184,72,139,69,232,72,137,2,235,32,72,139,69,176,199,0,0,0,0,0,72,139,69,184,72,199,0,0,0,0,0,72,139,85,240,72,139,69,192,72,137,16,72,139,69,200,72,139, 0,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,0,15,182,128,141,0,0,0,132,192,116,10,72,139,69,248,72,137,69,240,235,8,72,199,69,240,0,0,0,0,72,139,69,240,201,195,85,72,137,229,72,137,125,232,72,137,117,224,72,139,69,232,72,139,64,32,72, 59,69,224,116,93,72,139,69,232,72,139,64,32,72,137,69,248,235,72,72,139,69,248,72,139,64,8,72,59,69,224,117,46,72,139,69,224,72,139,80,8,72,139,69,248,72,137,80,8,72,139,69,232,72,139,80,32,72,139,69,224,72,137,80,8,72,139,85,232,72,139,69,224,72,137, 66,32,235,19,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,177,201,195,85,72,137,229,72,137,125,232,72,137,117,224,72,139,69,232,72,139,64,24,72,59,69,224,116,93,72,139,69,232,72,139,64,24,72,137,69,248,235,72,72,139,69,248,72,139,64,8, 72,59,69,224,117,46,72,139,69,224,72,139,80,8,72,139,69,248,72,137,80,8,72,139,69,232,72,139,80,24,72,139,69,224,72,137,80,8,72,139,85,232,72,139,69,224,72,137,66,24,235,19,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,177,201,195,85,72, 137,229,72,137,125,232,72,139,69,232,72,139,64,32,72,137,69,240,199,69,252,0,0,0,0,235,35,72,139,69,240,72,139,80,32,72,141,5,188,90,4,0,72,57,194,117,3,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,214,72,139,69,232,72,139, 0,15,182,128,142,0,0,0,132,192,116,20,72,139,69,232,72,139,0,139,128,136,0,0,0,133,192,116,3,255,69,252,139,69,252,201,195,85,72,137,229,72,137,125,232,137,117,228,199,69,252,0,0,0,0,72,139,69,232,72,139,0,15,182,128,142,0,0,0,132,192,116,38,72,139,69, 232,72,139,0,139,128,136,0,0,0,133,192,116,21,255,77,228,131,125,228,255,117,9,199,69,224,0,0,0,0,235,83,255,69,252,72,139,69,232,72,139,64,32,72,137,69,240,235,52,72,139,69,240,72,139,80,32,72,141,5,15,90,4,0,72,57,194,117,17,131,125,228,0,117,8,139, 69,252,137,69,224,235,32,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240,255,77,228,72,131,125,240,0,117,197,199,69,224,255,255,255,255,139,69,224,201,195,85,72,137,229,72,137,125,232,137,117,228,72,139,69,232,72,139,0,15,182,128,142,0,0,0,132,192, 116,68,131,125,228,0,117,59,72,139,69,232,72,139,0,15,182,128,142,0,0,0,132,192,116,26,72,139,69,232,72,139,0,139,128,136,0,0,0,133,192,116,9,199,69,220,1,0,0,0,235,7,199,69,220,0,0,0,0,139,69,220,137,69,216,235,94,255,77,228,72,139,69,232,72,139,64, 32,72,137,69,248,235,15,72,139,69,248,72,139,64,8,72,137,69,248,255,77,228,72,131,125,248,0,116,6,131,125,228,0,117,228,72,131,125,248,0,116,29,72,139,69,248,72,139,80,32,72,141,5,54,89,4,0,72,57,194,117,9,199,69,224,1,0,0,0,235,7,199,69,224,0,0,0,0, 139,69,224,137,69,216,139,69,216,201,195,85,72,137,229,72,137,125,232,72,139,69,232,72,139,64,24,72,137,69,240,199,69,252,0,0,0,0,235,35,72,139,69,240,72,139,80,24,72,141,5,234,88,4,0,72,57,194,117,3,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240, 72,131,125,240,0,117,214,139,69,252,201,195,85,72,137,229,72,137,125,232,137,117,228,72,139,69,232,72,139,64,24,72,137,69,240,199,69,252,0,0,0,0,235,52,72,139,69,240,72,139,80,24,72,141,5,155,88,4,0,72,57,194,117,17,131,125,228,0,117,8,139,69,252,137, 69,224,235,32,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240,255,77,228,72,131,125,240,0,117,197,199,69,224,255,255,255,255,139,69,224,201,195,85,72,137,229,72,137,125,232,137,117,228,72,139,69,232,72,139,64,24,72,137,69,240,199,69,252,0,0,0,0,235, 12,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,116,9,255,77,228,131,125,228,255,117,228,72,131,125,240,0,116,29,72,139,69,240,72,139,80,24,72,141,5,17,88,4,0,72,57,194,117,9,199,69,224,1,0,0,0,235,7,199,69,224,0,0,0,0,139,69,224,201,195, 85,72,137,229,72,137,125,232,137,117,228,199,69,252,0,0,0,0,72,139,69,232,72,139,0,15,182,128,142,0,0,0,132,192,116,96,72,139,69,232,72,139,0,139,128,136,0,0,0,133,192,116,79,255,77,228,131,125,228,255,117,67,72,139,69,232,72,139,0,139,128,136,0,0,0, 133,192,126,32,72,139,69,232,72,139,0,139,128,136,0,0,0,72,152,72,137,194,72,139,69,232,72,141,4,2,72,137,69,216,235,8,72,199,69,216,0,0,0,0,72,139,69,216,72,137,69,208,235,90,255,69,252,72,139,69,232,72,139,64,32,72,137,69,240,235,58,72,139,69,240,72, 139,80,32,72,141,5,86,87,4,0,72,57,194,117,23,131,125,228,0,117,14,72,139,69,240,72,131,192,40,72,137,69,208,235,33,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240,255,77,228,72,131,125,240,0,117,191,72,199,69,208,0,0,0,0,72,139,69,208,201,195,85, 72,137,229,72,131,236,32,72,137,125,232,199,69,252,0,0,0,0,72,139,69,232,72,139,80,32,72,141,5,244,86,4,0,72,57,194,116,17,72,141,61,166,75,2,0,184,0,0,0,0,232,57,197,0,0,72,139,69,232,72,139,64,16,72,139,64,32,72,137,69,240,199,69,252,0,0,0,0,235,35, 72,139,69,240,72,139,80,32,72,141,5,182,86,4,0,72,57,194,117,3,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,116,10,72,139,69,240,72,59,69,232,117,204,139,69,252,201,195,85,72,137,229,72,137,125,232,199,69,252,0,0,0,0,72,139,69, 232,72,139,0,72,139,64,24,72,137,69,240,199,69,252,0,0,0,0,235,35,72,139,69,240,72,139,80,24,72,141,5,86,86,4,0,72,57,194,117,3,255,69,252,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,116,10,72,139,69,240,72,59,69,232,117,204,139,69,252,201, 195,85,72,137,229,72,131,236,32,72,137,125,232,72,131,125,232,0,117,17,72,141,61,234,74,2,0,184,0,0,0,0,232,99,196,0,0,72,139,69,232,72,139,120,24,232,224,226,255,255,72,137,69,248,72,139,85,248,72,139,69,232,72,137,2,72,139,69,232,15,182,128,141,0,0, 0,132,192,116,24,72,139,69,248,72,199,64,32,0,0,0,0,72,139,69,248,72,199,64,24,0,0,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,139,0,72,137,69,248,72,139,69,248,72,139,64,48,72,133,192,116,22,72,139,69,248,72, 139,64,48,72,137,194,72,139,125,232,184,0,0,0,0,255,210,72,139,69,248,15,182,128,141,0,0,0,132,192,116,82,235,13,72,139,69,232,72,139,120,24,232,57,244,255,255,72,139,69,232,72,139,64,24,72,133,192,117,230,235,13,72,139,69,232,72,139,120,32,232,40,234, 255,255,72,139,69,232,72,139,64,32,72,133,192,117,230,72,139,69,232,72,139,64,16,72,133,192,116,13,72,139,69,232,72,139,120,16,232,155,80,255,255,72,139,69,248,72,139,64,24,72,133,192,116,17,72,139,69,248,72,139,112,24,72,139,125,232,232,223,227,255, 255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,139,0,72,137,69,248,72,139,69,248,72,139,64,120,72,133,192,116,18,72,139,69,248,72,139,64,120,72,139,117,224,72,139,125,232,255,208,201,195,85,72,137,229,72,131,236, 32,72,137,125,232,72,139,69,232,72,139,64,8,72,137,69,248,235,24,72,139,69,248,72,139,56,232,42,7,0,0,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,225,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,72, 139,64,8,72,137,69,248,235,29,72,139,69,248,72,139,56,243,15,16,69,228,232,4,7,0,0,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,220,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,139,64,8,72,137,69, 248,235,28,72,139,69,248,72,139,56,72,139,117,224,232,17,7,0,0,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,221,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,72,139,64,8,72,137,69,248,235,28,72,139,69, 248,72,139,56,72,139,117,224,232,167,6,0,0,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,221,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,69,232,72,139,64,8,72,137,69,248,235,35,72,139, 69,248,72,139,56,72,139,77,208,139,85,220,72,139,117,224,232,164,6,0,0,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,214,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,69,232,72,139,64, 8,72,137,69,248,235,35,72,139,69,248,72,139,56,72,139,77,208,139,85,220,72,139,117,224,232,166,202,255,255,72,139,69,248,72,139,64,8,72,137,69,248,72,131,125,248,0,117,214,201,195,85,72,137,229,72,141,61,28,72,2,0,232,214,197,255,255,72,137,199,65,185, 0,0,0,0,65,184,1,0,0,0,185,16,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,14,180,255,255,72,137,5,249,156,4,0,72,141,53,18,254,255,255,72,139,61,235,156,4,0,232,78,193,255,255,72,141,53,58,254,255,255,72,139,61,216,156,4,0,232,111,193,255,255,72,141, 53,108,254,255,255,72,139,61,197,156,4,0,232,118,193,255,255,72,141,53,156,254,255,255,72,139,61,178,156,4,0,232,47,193,255,255,72,141,53,204,254,255,255,72,139,61,159,156,4,0,232,106,193,255,255,72,141,53,10,255,255,255,72,139,61,140,156,4,0,232,113, 193,255,255,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,137,117,192,72,139,69,192,72,139,64,8,72,133,192,15,132,213,0,0,0,72,139,69,192,72,139,64,8,72,139,16,72,139,5,82,156,4,0,72,57,194,117,70,72,139,69,192,72,139,64,8,72,137,69,248,191,16, 0,0,0,232,4,223,255,255,72,137,69,240,72,139,69,248,72,139,80,8,72,139,69,240,72,137,80,8,72,139,85,240,72,139,69,200,72,137,2,72,139,85,248,72,139,69,240,72,137,66,8,233,132,0,0,0,72,139,61,0,156,4,0,232,183,251,255,255,72,137,69,232,191,16,0,0,0,232, 186,222,255,255,72,137,69,224,191,16,0,0,0,232,172,222,255,255,72,137,69,216,72,139,85,232,72,139,69,224,72,137,66,8,72,139,85,224,72,139,69,200,72,137,2,72,139,85,224,72,139,69,216,72,137,66,8,72,139,69,192,72,139,80,8,72,139,69,216,72,137,16,72,139, 69,216,72,199,64,8,0,0,0,0,72,139,85,232,72,139,69,192,72,137,80,8,235,12,72,139,85,192,72,139,69,200,72,137,66,8,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,72,139,69,208,72,139,64,8,72,59,69,216,117,17,72,139,69,208,72,199,64, 8,0,0,0,0,233,36,1,0,0,72,139,69,208,72,139,64,8,72,133,192,15,132,247,0,0,0,72,139,69,208,72,139,64,8,72,139,16,72,139,5,47,155,4,0,72,57,194,15,133,220,0,0,0,72,139,69,208,72,139,64,8,72,137,69,248,72,139,69,248,72,139,64,8,72,137,69,240,72,139,69, 240,72,139,0,72,59,69,216,117,32,72,139,69,240,72,139,80,8,72,139,69,248,72,137,80,8,72,139,125,240,190,16,0,0,0,232,164,223,255,255,235,86,72,139,69,248,72,139,64,8,72,137,69,240,235,53,72,139,69,232,72,139,0,72,59,69,216,117,32,72,139,69,232,72,139, 80,8,72,139,69,240,72,137,80,8,72,139,125,232,190,16,0,0,0,232,105,223,255,255,235,27,72,139,69,232,72,137,69,240,72,139,69,240,72,139,64,8,72,137,69,232,72,131,125,232,0,117,184,72,139,69,248,72,139,64,8,72,139,64,8,72,133,192,117,76,72,139,69,248,72, 139,64,8,72,139,16,72,139,69,208,72,137,80,8,72,139,69,248,72,139,120,8,190,16,0,0,0,232,22,223,255,255,72,139,125,248,232,117,250,255,255,235,28,72,139,69,208,72,139,16,72,139,125,216,72,141,53,48,69,2,0,184,0,0,0,0,232,174,188,0,0,201,195,85,72,137, 229,201,195,85,72,137,229,72,131,236,80,72,137,125,200,72,137,117,192,72,199,69,240,0,0,0,0,72,139,69,200,72,139,64,8,72,133,192,117,13,72,199,69,184,0,0,0,0,233,197,0,0,0,72,139,69,200,72,139,64,8,72,139,0,72,59,69,192,117,17,72,139,69,200,72,139,64, 8,72,137,69,184,233,163,0,0,0,72,139,69,200,72,139,64,8,72,139,16,72,139,5,192,153,4,0,72,57,194,15,133,128,0,0,0,72,139,69,200,72,139,64,8,72,137,69,232,199,69,252,0,0,0,0,72,139,69,232,72,139,64,8,72,137,69,224,235,88,72,139,69,224,72,139,0,72,139, 0,72,59,69,192,117,60,72,131,125,240,0,116,42,131,125,252,0,117,36,232,72,255,255,255,72,139,69,200,72,139,48,72,141,61,114,68,2,0,184,0,0,0,0,232,178,181,0,0,199,69,252,1,0,0,0,72,139,69,224,72,139,0,72,137,69,240,72,139,69,224,72,139,64,8,72,137,69, 224,72,131,125,224,0,117,161,72,139,69,240,72,137,69,184,72,139,69,184,201,195,85,72,137,229,72,137,125,232,72,139,5,18,153,4,0,72,137,69,248,72,139,5,7,153,4,0,72,137,69,248,235,35,72,139,69,248,72,139,64,8,72,59,69,232,117,9,199,69,228,1,0,0,0,235, 37,72,139,69,248,72,139,64,16,72,137,69,248,72,131,125,248,0,117,214,72,139,69,232,72,137,5,228,152,4,0,199,69,228,0,0,0,0,139,69,228,201,195,85,72,137,229,72,131,236,32,72,137,125,232,191,24,0,0,0,232,127,219,255,255,72,137,69,248,72,141,5,207,78,4, 0,72,139,80,8,72,139,69,248,72,137,16,72,139,21,141,152,4,0,72,139,69,248,72,137,80,16,72,139,21,150,152,4,0,72,139,69,248,72,137,80,8,72,199,5,131,152,4,0,0,0,0,0,72,139,69,248,72,137,5,96,152,4,0,72,141,21,137,78,4,0,72,139,69,232,72,137,66,8,201,195, 85,72,137,229,72,131,236,32,72,137,125,232,72,139,5,60,152,4,0,72,133,192,116,17,72,141,5,96,78,4,0,72,139,64,8,72,59,69,232,116,19,72,141,61,81,67,2,0,184,0,0,0,0,232,96,188,0,0,235,69,72,139,5,12,152,4,0,72,137,69,248,72,139,69,248,72,139,16,72,141, 5,42,78,4,0,72,137,80,8,72,139,69,248,72,139,64,16,72,137,5,231,151,4,0,72,139,125,248,190,24,0,0,0,232,162,220,255,255,72,139,69,232,72,137,5,222,151,4,0,201,195,85,72,137,229,72,139,5,209,151,4,0,72,133,192,116,39,72,141,61,21,252,1,0,232,102,192,255, 255,72,137,198,72,139,61,182,151,4,0,72,141,21,23,238,1,0,184,0,0,0,0,232,153,204,255,255,72,199,5,154,151,4,0,0,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,0,72,139,64,56,72,139,125,248,255,208,201,195,85,72,137,229, 72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,0,72,139,64,72,243,15,16,69,244,72,139,125,248,255,208,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,0,72,139,64,64,72,139,117,240,72,139,125, 248,255,208,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,0,72,139,64,80,72,139,117,240,72,139,125,248,255,208,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139, 69,248,72,139,0,72,139,64,88,72,139,77,224,139,85,236,72,139,125,248,72,141,53,110,76,4,0,255,208,201,195,85,72,137,229,232,2,195,255,255,232,168,229,255,255,232,1,209,255,255,232,253,210,255,255,232,41,59,251,255,201,195,85,72,137,229,199,5,197,150, 4,0,2,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,191,32,0,0,0,232,70,217,255,255,72,137,69,248,72,139,85,248,72,184,0,0,0,0,0,0,240,191,72,137,2,72,139,85,248,72,139,69,232,72,137,66,8,72,139,85,224,72,139,69,248,72,137,80, 16,72,139,69,248,72,199,64,24,0,0,0,0,72,139,69,248,201,195,85,72,137,229,72,137,125,232,72,139,69,232,242,15,16,8,102,15,87,192,102,15,46,200,115,2,235,111,72,141,5,207,164,4,0,72,139,0,72,57,69,232,117,20,72,139,69,232,72,139,80,24,72,141,5,183,164, 4,0,72,137,16,235,58,72,141,5,171,164,4,0,72,139,0,72,137,69,248,235,12,72,139,69,248,72,139,64,24,72,137,69,248,72,139,69,248,72,139,64,24,72,59,69,232,117,230,72,139,69,232,72,139,80,24,72,139,69,248,72,137,80,24,72,139,85,232,72,184,0,0,0,0,0,0,240, 191,72,137,2,201,195,85,72,137,229,72,131,236,32,72,137,125,232,242,15,17,69,224,72,141,5,101,164,4,0,242,15,16,0,102,15,46,69,224,119,2,235,14,72,141,5,81,164,4,0,72,139,0,72,137,69,224,72,139,125,232,232,55,255,255,255,72,139,85,232,72,139,69,224,72, 137,2,72,141,5,23,164,4,0,72,139,0,72,133,192,15,132,138,0,0,0,72,141,5,4,164,4,0,72,139,0,242,15,16,8,242,15,16,69,224,102,15,46,193,114,113,72,141,5,235,163,4,0,72,139,0,72,137,69,248,72,141,5,221,163,4,0,72,139,0,72,139,64,24,72,137,69,240,235,70, 72,131,125,240,0,116,17,72,139,69,240,242,15,16,0,102,15,46,69,224,119,2,235,26,72,139,85,248,72,139,69,232,72,137,66,24,72,139,85,232,72,139,69,240,72,137,66,24,235,61,72,139,69,240,72,137,69,248,72,139,69,248,72,139,64,24,72,137,69,240,72,131,125,248, 0,117,179,235,32,72,141,5,122,163,4,0,72,139,16,72,139,69,232,72,137,80,24,72,141,21,104,163,4,0,72,139,69,232,72,137,2,201,195,85,72,137,229,72,131,236,16,72,137,125,248,242,15,17,69,240,242,15,16,5,230,85,4,0,102,15,40,200,242,15,89,77,240,72,141,5, 78,163,4,0,242,15,16,0,242,15,88,193,72,139,125,248,232,192,254,255,255,201,195,85,72,137,229,72,141,5,48,163,4,0,72,139,0,72,137,69,248,242,15,16,69,248,201,195,85,72,137,229,72,141,5,23,163,4,0,72,139,0,72,137,69,248,242,15,16,69,248,201,195,85,72, 137,229,242,15,17,69,248,72,141,5,249,162,4,0,242,15,16,0,102,15,40,200,242,15,92,77,248,242,15,16,5,108,85,4,0,102,15,40,209,242,15,94,208,102,15,40,194,201,195,85,72,137,229,242,15,17,69,248,242,15,16,5,77,85,4,0,102,15,40,200,242,15,89,77,248,72,141, 5,181,162,4,0,242,15,16,0,242,15,88,193,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,140,253,255,255,72,139,125,248,190,32,0,0,0,232,121,216,255,255,201,195,85,72,137,229,72,131,236,16,199,69,252,0,0,0,0,235,69,199,69,248,0,0, 0,0,235,51,139,85,252,139,69,248,137,193,137,210,72,137,208,72,193,224,3,72,1,208,72,1,200,72,141,20,133,0,0,0,0,72,141,5,174,147,4,0,72,141,4,2,199,0,0,0,0,0,255,69,248,131,125,248,8,118,199,255,69,252,131,125,252,9,118,181,232,147,66,0,0,242,15,17, 5,237,148,4,0,199,5,243,148,4,0,0,0,0,0,139,5,237,148,4,0,137,5,227,148,4,0,139,5,221,148,4,0,137,5,211,148,4,0,201,195,85,72,137,229,83,72,131,236,56,199,69,236,0,0,0,0,233,174,1,0,0,199,69,228,0,0,0,0,199,69,232,0,0,0,0,235,58,139,85,236,139,69,232, 137,193,137,210,72,137,208,72,193,224,3,72,1,208,72,1,200,72,141,20,133,0,0,0,0,72,141,5,22,147,4,0,72,141,4,2,139,0,133,192,116,7,199,69,228,1,0,0,0,255,69,232,131,125,232,8,118,192,131,125,228,0,15,132,81,1,0,0,139,69,236,137,194,72,137,208,72,193, 224,3,72,1,208,72,141,20,133,0,0,0,0,72,141,5,240,146,4,0,72,141,4,2,139,8,139,69,236,137,194,72,137,208,72,193,224,3,72,1,208,72,141,20,133,0,0,0,0,72,141,5,200,146,4,0,72,141,4,2,139,56,139,69,236,137,194,72,137,208,72,193,224,3,72,1,208,72,141,20, 133,0,0,0,0,72,141,5,160,146,4,0,72,141,4,2,68,139,0,139,69,236,137,194,72,137,208,72,193,224,3,72,1,208,72,141,20,133,0,0,0,0,72,141,5,119,146,4,0,72,141,4,2,68,139,8,139,69,236,137,194,72,137,208,72,193,224,3,72,1,208,72,141,20,133,0,0,0,0,72,141,5, 78,146,4,0,72,141,4,2,68,139,16,139,69,236,137,194,72,137,208,72,193,224,3,72,1,208,72,141,20,133,0,0,0,0,72,141,5,37,146,4,0,72,141,4,2,68,139,24,139,69,236,137,194,72,137,208,72,193,224,3,72,1,208,72,141,20,133,0,0,0,0,72,141,5,252,145,4,0,72,141,4, 2,139,24,139,69,236,137,194,72,137,208,72,193,224,3,72,1,208,72,141,20,133,0,0,0,0,72,141,5,212,145,4,0,72,141,4,2,139,16,139,117,236,137,76,36,24,137,124,36,16,68,137,68,36,8,68,137,12,36,69,137,209,69,137,216,137,217,72,141,61,171,60,2,0,184,0,0,0, 0,232,191,173,0,0,255,69,236,131,125,236,9,15,134,72,254,255,255,139,13,6,147,4,0,139,21,252,146,4,0,139,53,242,146,4,0,72,141,61,163,60,2,0,184,0,0,0,0,232,143,173,0,0,72,131,196,56,91,201,195,85,72,137,229,72,131,236,48,137,125,220,139,5,213,146,4, 0,137,69,244,232,87,64,0,0,242,15,17,69,232,242,15,16,13,172,146,4,0,242,15,16,69,232,102,15,40,208,242,15,92,209,102,15,40,202,242,15,16,5,243,97,2,0,242,15,89,193,242,15,44,192,137,69,240,199,69,248,8,0,0,0,235,127,139,69,248,72,152,72,141,20,133,0, 0,0,0,72,141,5,67,82,4,0,72,141,4,2,139,0,59,69,240,127,93,139,117,244,139,125,248,72,99,207,72,99,214,72,137,208,72,193,224,3,72,1,208,72,1,200,72,141,20,133,0,0,0,0,72,141,5,208,144,4,0,72,141,4,2,139,0,68,141,64,1,72,99,207,72,99,214,72,137,208,72, 193,224,3,72,1,208,72,1,200,72,141,20,133,0,0,0,0,72,141,5,164,144,4,0,72,141,4,2,68,137,0,235,13,255,77,248,131,125,248,0,15,137,119,255,255,255,72,139,69,232,72,137,5,235,145,4,0,139,69,220,137,5,246,145,4,0,139,69,244,201,195,85,72,137,229,72,131, 236,32,139,5,75,144,4,0,186,20,0,0,0,131,248,20,15,79,194,137,69,248,139,5,51,144,4,0,255,200,137,69,244,72,141,61,195,59,2,0,184,0,0,0,0,232,91,172,0,0,72,141,61,203,59,2,0,184,0,0,0,0,232,74,172,0,0,199,69,240,0,0,0,0,233,191,0,0,0,131,125,244,0,121, 4,131,69,244,20,139,69,244,72,152,72,141,20,197,0,0,0,0,72,141,5,134,145,4,0,72,141,4,2,139,0,137,69,236,131,125,236,0,120,6,131,125,236,4,126,7,199,69,236,0,0,0,0,139,69,236,72,152,72,141,20,197,0,0,0,0,72,141,5,178,70,4,0,72,141,4,2,72,139,48,139,13, 53,145,4,0,139,69,244,72,152,72,141,20,197,0,0,0,0,72,141,5,49,145,4,0,72,141,4,2,139,0,137,202,41,194,137,208,242,15,42,200,139,5,195,80,4,0,242,15,42,192,242,15,89,200,72,141,5,56,158,4,0,243,15,16,0,243,15,90,192,102,15,40,209,242,15,94,208,102,15, 40,194,72,141,61,29,59,2,0,184,1,0,0,0,232,133,171,0,0,255,77,244,255,69,240,139,69,240,59,69,248,15,140,53,255,255,255,201,195,85,72,137,229,72,131,236,16,137,125,252,139,5,34,143,4,0,139,13,172,144,4,0,72,152,72,141,20,197,0,0,0,0,72,141,5,171,144, 4,0,72,141,4,2,137,8,139,5,255,142,4,0,72,152,72,141,20,197,0,0,0,0,72,141,5,146,144,4,0,72,1,194,139,69,252,137,2,139,5,228,142,4,0,255,192,137,5,220,142,4,0,139,5,210,142,4,0,255,192,137,5,202,142,4,0,139,5,196,142,4,0,131,248,20,117,10,199,5,181,142, 4,0,0,0,0,0,131,125,252,0,116,53,139,5,233,144,4,0,133,192,117,43,139,21,47,144,4,0,139,5,221,144,4,0,57,194,124,27,72,141,61,99,58,2,0,184,0,0,0,0,232,164,75,0,0,199,5,186,144,4,0,1,0,0,0,72,141,5,63,157,4,0,243,15,16,0,243,15,90,200,139,5,173,79,4, 0,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,242,15,44,208,139,5,219,143,4,0,141,4,2,137,5,134,144,4,0,201,195,85,72,137,229,72,131,236,32,139,5,194,143,4,0,139,21,56,142,4,0,41,208,133,192,15,136,139,1,0,0,139,5,92,144,4,0,133,192,116,45, 139,5,162,143,4,0,139,21,80,144,4,0,41,208,133,192,126,27,72,141,61,227,57,2,0,184,0,0,0,0,232,21,75,0,0,199,5,43,144,4,0,0,0,0,0,139,5,45,144,4,0,133,192,15,132,132,0,0,0,72,141,117,232,72,141,125,236,232,181,24,0,0,243,15,16,69,236,232,168,190,0,0, 243,15,90,200,242,15,16,5,194,94,2,0,242,15,88,193,242,15,44,192,137,69,244,243,15,16,69,232,232,135,190,0,0,243,15,90,200,242,15,16,5,161,94,2,0,242,15,88,193,242,15,44,192,137,69,240,243,15,16,69,236,243,15,90,192,102,15,46,5,181,96,2,0,15,151,192, 15,182,192,137,69,252,243,15,16,77,232,243,15,16,5,39,94,2,0,15,46,200,15,147,192,15,182,192,137,69,248,235,26,199,69,240,0,0,0,0,139,69,240,137,69,244,199,69,248,0,0,0,0,139,69,248,137,69,252,139,5,133,143,4,0,57,69,252,117,33,139,5,126,143,4,0,57,69, 248,117,22,139,5,119,143,4,0,57,69,244,117,11,139,5,112,143,4,0,57,69,240,116,68,139,69,248,139,77,252,139,85,240,139,117,244,65,137,192,72,141,61,240,56,2,0,184,0,0,0,0,232,19,74,0,0,139,69,252,137,5,54,143,4,0,139,69,248,137,5,49,143,4,0,139,69,244, 137,5,44,143,4,0,139,69,240,137,5,39,143,4,0,72,141,5,148,155,4,0,243,15,16,0,243,15,90,200,139,5,2,78,4,0,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,242,15,44,208,139,5,48,142,4,0,141,4,2,137,5,163,140,4,0,201,195,85,72,137,229,72,131,236, 16,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,122,2,116,2,235,15,190,0,0,0,0,191,0,0,0,0,232,77,23,0,0,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,15,182,192,137,5,152,142,4,0,199,5,158,142,4,0,255,255,255,255,139,5,152,142,4,0,137, 5,142,142,4,0,139,5,136,142,4,0,137,5,126,142,4,0,139,5,120,142,4,0,137,5,110,142,4,0,201,195,85,72,137,229,72,131,236,16,137,125,252,139,69,252,137,5,180,77,4,0,131,125,252,0,117,26,232,39,59,0,0,242,15,17,5,89,142,4,0,232,113,247,255,255,242,15,17, 5,84,142,4,0,131,125,252,2,117,21,139,5,136,77,4,0,131,248,2,116,10,199,5,233,139,4,0,2,0,0,0,131,125,252,2,116,28,139,5,109,77,4,0,131,248,2,117,17,72,141,61,201,55,2,0,184,0,0,0,0,232,237,167,0,0,139,5,241,76,4,0,242,15,42,200,242,15,16,5,221,94,2, 0,242,15,89,200,72,141,5,94,154,4,0,243,15,16,0,243,15,90,192,102,15,40,209,242,15,94,208,102,15,40,194,72,141,5,55,154,4,0,242,15,17,0,201,195,85,72,137,229,72,131,236,32,242,15,17,69,232,199,69,252,136,19,0,0,235,100,72,141,5,244,153,4,0,72,139,0,72, 137,69,240,72,139,69,240,72,139,16,72,141,5,247,153,4,0,72,137,16,72,141,5,213,153,4,0,72,139,56,232,219,244,255,255,232,218,219,255,255,72,139,69,240,72,139,80,16,72,139,69,240,72,139,120,8,255,210,255,77,252,131,125,252,255,117,12,199,69,252,136,19, 0,0,232,166,80,0,0,139,5,19,139,4,0,133,192,117,77,72,141,5,144,153,4,0,72,139,0,72,133,192,116,29,72,141,5,129,153,4,0,72,139,0,242,15,16,8,242,15,16,69,232,102,15,46,193,15,135,112,255,255,255,72,141,21,124,153,4,0,72,139,69,232,72,137,2,232,186,235, 250,255,139,5,66,140,4,0,255,192,137,5,58,140,4,0,201,195,85,72,137,229,72,131,236,32,199,69,252,0,0,0,0,139,5,219,75,4,0,242,15,42,200,242,15,16,5,199,93,2,0,242,15,89,200,72,141,5,72,153,4,0,243,15,16,0,243,15,90,192,102,15,40,209,242,15,94,208,102, 15,40,194,72,141,5,33,153,4,0,242,15,17,0,232,167,4,0,0,232,133,246,255,255,72,141,5,252,152,4,0,139,0,131,248,99,127,31,72,141,5,22,153,4,0,139,0,141,80,3,133,192,15,72,194,193,248,2,137,194,72,141,5,216,152,4,0,137,16,72,141,5,207,152,4,0,139,0,131, 248,99,127,15,72,141,5,193,152,4,0,199,0,100,0,0,0,235,29,72,141,5,178,152,4,0,139,0,61,136,19,0,0,126,13,72,141,5,162,152,4,0,199,0,136,19,0,0,232,169,185,1,0,233,47,2,0,0,199,69,248,0,0,0,0,191,0,0,0,0,232,135,248,255,255,139,5,115,75,4,0,133,192,15, 132,184,0,0,0,232,31,4,0,0,232,240,18,0,0,137,69,244,232,0,4,0,0,131,125,244,0,116,12,199,69,252,0,0,0,0,233,232,0,0,0,255,69,252,139,69,252,131,224,31,133,192,15,133,215,0,0,0,139,5,48,75,4,0,131,248,1,116,22,72,141,61,188,53,2,0,184,0,0,0,0,232,157, 173,0,0,233,205,1,0,0,131,125,252,32,117,18,232,136,56,0,0,242,15,17,5,106,137,4,0,233,158,0,0,0,232,118,56,0,0,102,15,40,200,242,15,16,5,84,137,4,0,242,15,92,200,242,15,16,5,0,90,2,0,102,15,46,200,119,2,235,121,72,141,61,129,53,2,0,184,0,0,0,0,232,93, 165,0,0,232,70,16,0,0,191,0,0,0,0,232,240,252,255,255,233,58,255,255,255,232,44,56,0,0,102,15,40,200,242,15,16,5,90,139,4,0,242,15,92,200,242,15,16,5,214,89,2,0,102,15,40,209,242,15,89,208,242,15,17,85,232,242,15,16,5,65,139,4,0,232,131,244,255,255,242, 15,16,77,232,102,15,46,200,119,2,235,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,72,141,5,136,151,4,0,139,0,242,15,42,200,242,15,16,5,234,91,2,0,242,15,89,193,102,15,40,200,102,15,87,192,232,95,184,1,0,191,1,0,0,0,232,61,247,255,255,131,125,244,0,116, 31,72,141,5,50,151,4,0,242,15,16,8,72,141,5,47,151,4,0,242,15,16,0,242,15,88,193,232,241,252,255,255,131,125,244,1,117,7,199,69,248,1,0,0,0,191,2,0,0,0,232,1,247,255,255,232,14,184,1,0,232,230,77,0,0,133,192,116,27,131,125,248,0,117,14,139,5,197,137, 4,0,255,192,137,5,189,137,4,0,199,69,248,1,0,0,0,191,3,0,0,0,232,206,246,255,255,131,125,248,0,117,95,232,205,249,255,255,232,71,19,0,0,232,100,2,0,0,72,141,5,164,150,4,0,72,139,0,72,133,192,116,16,72,141,5,149,150,4,0,72,139,0,255,208,133,192,117,20, 131,125,244,2,116,14,72,141,5,135,150,4,0,139,56,232,189,57,0,0,232,26,2,0,0,191,5,0,0,0,232,119,246,255,255,139,5,83,137,4,0,255,192,137,5,75,137,4,0,139,5,197,135,4,0,133,192,15,132,195,253,255,255,232,1,2,0,0,201,195,85,72,137,229,232,228,1,0,0,72, 141,5,102,150,4,0,139,0,242,15,42,200,242,15,16,5,200,90,2,0,242,15,89,193,102,15,40,200,102,15,87,192,232,61,183,1,0,191,1,0,0,0,232,27,246,255,255,72,141,5,22,150,4,0,242,15,16,8,72,141,5,19,150,4,0,242,15,16,0,242,15,88,193,232,213,251,255,255,191, 2,0,0,0,232,242,245,255,255,232,255,182,1,0,191,3,0,0,0,232,227,245,255,255,232,205,76,0,0,191,5,0,0,0,232,212,245,255,255,232,217,248,255,255,191,0,0,0,0,232,197,245,255,255,232,107,1,0,0,201,195,85,72,137,229,72,131,236,16,232,189,182,1,0,235,119,72, 141,5,170,149,4,0,72,139,0,72,137,69,248,191,1,0,0,0,232,83,202,1,0,72,141,5,146,149,4,0,242,15,16,0,102,15,46,69,248,122,2,116,2,235,46,232,21,1,0,0,232,102,76,0,0,72,141,5,114,149,4,0,242,15,16,8,72,141,5,111,149,4,0,242,15,16,0,242,15,88,193,232,49, 251,255,255,232,254,0,0,0,72,141,5,62,149,4,0,72,139,0,72,133,192,116,12,72,141,5,47,149,4,0,72,139,0,255,208,139,5,148,134,4,0,133,192,15,132,123,255,255,255,201,195,85,72,137,229,235,54,139,5,14,72,4,0,131,248,2,117,7,232,84,255,255,255,235,5,232,173, 251,255,255,139,5,103,134,4,0,131,248,2,117,20,199,5,88,134,4,0,0,0,0,0,232,103,13,0,0,232,12,14,0,0,139,5,72,134,4,0,131,248,1,117,191,184,0,0,0,0,201,195,85,72,137,229,139,5,98,71,4,0,242,15,42,200,242,15,16,5,78,89,2,0,242,15,89,200,72,141,5,207,148, 4,0,243,15,16,0,243,15,90,192,102,15,40,209,242,15,94,208,102,15,40,194,72,141,5,168,148,4,0,242,15,17,0,235,31,72,141,5,147,148,4,0,242,15,16,8,72,141,5,144,148,4,0,242,15,16,0,242,15,88,193,232,82,250,255,255,139,5,213,133,4,0,131,248,1,117,214,184, 0,0,0,0,201,195,85,72,137,229,72,141,61,102,71,4,0,232,173,200,1,0,201,195,85,72,137,229,72,141,61,84,71,4,0,232,167,200,1,0,201,195,85,72,137,229,72,141,61,66,71,4,0,232,143,200,1,0,201,195,85,72,137,229,199,5,133,133,4,0,1,0,0,0,201,195,85,72,137,229, 139,5,225,135,4,0,133,192,116,49,139,5,99,71,4,0,133,192,126,10,139,5,237,135,4,0,133,192,127,20,139,5,83,71,4,0,133,192,126,19,139,5,249,135,4,0,133,192,126,9,199,69,252,1,0,0,0,235,7,199,69,252,0,0,0,0,139,69,252,201,195,85,72,137,229,72,137,125,232, 72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,139,21,10,71,4,0,72,139,69,232,137,16,199,69,252,0,0,0,0,235,91,139,69,252,72,152,72,193,224,2,72,137,193,72,3,77,224,139,69,252,72,152,72,141,20,133,0,0,0,0,72,141,5,91,135,4,0,72, 141,4,2,139,0,137,1,139,69,252,72,152,72,193,224,2,72,137,193,72,3,77,216,139,69,252,72,152,72,141,20,133,0,0,0,0,72,141,5,63,135,4,0,72,141,4,2,139,0,137,1,255,69,252,131,125,252,3,126,159,139,21,152,70,4,0,72,139,69,208,137,16,199,69,252,0,0,0,0,235, 91,139,69,252,72,152,72,193,224,2,72,137,193,72,3,77,200,139,69,252,72,152,72,141,20,133,0,0,0,0,72,141,5,5,135,4,0,72,141,4,2,139,0,137,1,139,69,252,72,152,72,193,224,2,72,137,193,72,3,77,192,139,69,252,72,152,72,141,20,133,0,0,0,0,72,141,5,233,134, 4,0,72,141,4,2,139,0,137,1,255,69,252,131,125,252,3,126,159,139,21,226,134,4,0,72,139,69,16,137,16,139,21,218,134,4,0,72,139,69,24,137,16,139,21,210,134,4,0,72,139,69,32,137,16,201,195,85,72,137,229,137,125,236,72,137,117,224,72,137,85,216,137,77,212, 76,137,69,200,76,137,77,192,139,69,236,137,5,219,69,4,0,199,69,252,0,0,0,0,235,87,139,85,252,139,69,252,72,152,72,193,224,2,72,3,69,224,139,8,72,99,194,72,141,20,133,0,0,0,0,72,141,5,50,134,4,0,72,141,4,2,137,8,139,85,252,139,69,252,72,152,72,193,224, 2,72,3,69,216,139,8,72,99,194,72,141,20,133,0,0,0,0,72,141,5,24,134,4,0,72,141,4,2,137,8,255,69,252,131,125,252,3,126,163,139,69,212,137,5,112,69,4,0,199,69,252,0,0,0,0,235,87,139,85,252,139,69,252,72,152,72,193,224,2,72,3,69,200,139,8,72,99,194,72,141, 20,133,0,0,0,0,72,141,5,227,133,4,0,72,141,4,2,137,8,139,85,252,139,69,252,72,152,72,193,224,2,72,3,69,192,139,8,72,99,194,72,141,20,133,0,0,0,0,72,141,5,201,133,4,0,72,141,4,2,137,8,255,69,252,131,125,252,3,126,163,139,69,16,137,5,193,133,4,0,139,69, 24,137,5,188,133,4,0,139,69,32,137,5,183,133,4,0,201,195,85,72,137,229,139,5,67,133,4,0,133,192,117,10,199,5,53,133,4,0,1,0,0,0,201,195,85,72,137,229,72,131,236,64,137,125,236,137,117,232,137,85,228,131,125,236,0,116,14,139,69,236,72,152,72,193,224,8, 137,69,200,235,7,199,69,200,0,2,0,0,139,69,200,137,69,248,131,125,232,0,116,14,139,69,232,72,152,72,193,224,8,137,69,204,235,7,199,69,204,0,2,0,0,139,85,204,137,85,244,72,141,5,73,145,4,0,72,139,0,72,133,192,116,64,72,141,5,42,145,4,0,139,0,133,192,116, 24,72,141,5,29,145,4,0,139,0,72,152,72,137,194,72,193,226,8,72,137,85,208,235,8,72,199,69,208,0,2,0,0,72,141,5,13,145,4,0,72,139,56,72,139,117,208,232,202,198,255,255,72,141,5,2,145,4,0,72,139,0,72,133,192,116,64,72,141,5,223,144,4,0,139,0,133,192,116, 24,72,141,5,210,144,4,0,139,0,72,152,72,137,194,72,193,226,8,72,137,85,216,235,8,72,199,69,216,0,2,0,0,72,141,5,198,144,4,0,72,139,56,72,139,117,216,232,123,198,255,255,72,141,21,155,144,4,0,139,69,236,137,2,72,141,21,147,144,4,0,139,69,232,137,2,243, 15,42,69,228,72,141,5,122,144,4,0,243,15,17,0,72,141,5,123,144,4,0,139,0,243,15,42,200,72,141,5,98,144,4,0,243,15,16,0,243,15,89,193,243,15,90,200,242,15,16,5,210,84,2,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,44,208,72,141,5,51,144,4,0,137, 16,72,141,5,42,144,4,0,139,0,61,191,0,0,0,127,13,72,141,5,26,144,4,0,199,0,192,0,0,0,139,69,248,72,99,248,232,246,195,255,255,72,137,194,72,141,5,23,144,4,0,72,137,16,72,199,192,255,255,255,255,72,131,248,255,116,35,72,199,193,255,255,255,255,139,69, 248,72,99,208,72,141,5,243,143,4,0,72,139,56,190,0,0,0,0,232,98,194,1,0,235,26,139,69,248,72,99,208,72,141,5,215,143,4,0,72,139,56,190,0,0,0,0,232,160,0,0,0,139,69,244,72,99,248,232,148,195,255,255,72,137,194,72,141,5,189,143,4,0,72,137,16,72,199,192, 255,255,255,255,72,131,248,255,116,35,72,199,193,255,255,255,255,139,69,244,72,99,208,72,141,5,153,143,4,0,72,139,56,190,0,0,0,0,232,0,194,1,0,235,26,139,69,244,72,99,208,72,141,5,125,143,4,0,72,139,56,190,0,0,0,0,232,62,0,0,0,72,141,5,145,151,4,0,139, 0,133,192,116,35,72,141,5,72,143,4,0,139,16,72,141,5,59,143,4,0,139,48,72,141,61,226,44,2,0,184,0,0,0,0,232,150,156,0,0,232,17,188,251,255,137,199,232,46,188,251,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,72,199, 193,255,255,255,255,72,139,85,232,139,117,244,72,139,125,248,232,124,193,1,0,201,195,85,72,137,229,72,129,236,96,13,0,0,137,189,252,242,255,255,72,137,181,240,242,255,255,137,149,236,242,255,255,72,137,141,224,242,255,255,68,137,133,220,242,255,255,76, 137,141,208,242,255,255,72,139,69,24,72,137,133,200,242,255,255,72,139,5,97,45,4,0,72,139,16,72,137,85,248,49,210,199,133,104,243,255,255,2,0,0,0,199,133,84,243,255,255,0,0,0,0,199,133,80,243,255,255,0,0,0,0,199,133,76,243,255,255,0,0,0,0,199,133,72, 243,255,255,0,0,0,0,72,141,133,72,243,255,255,72,141,149,76,243,255,255,72,141,141,80,243,255,255,72,141,181,112,243,255,255,72,141,189,84,243,255,255,76,141,149,176,249,255,255,199,68,36,8,80,0,0,0,199,4,36,20,0,0,0,73,137,193,73,137,208,72,137,242, 72,137,254,76,137,215,232,150,10,0,0,131,125,32,0,127,7,199,69,32,68,172,0,0,131,125,40,0,127,7,199,69,40,50,0,0,0,232,85,252,255,255,131,189,252,242,255,255,255,15,133,173,0,0,0,131,189,236,242,255,255,255,117,90,139,133,84,243,255,255,133,192,126,53, 199,133,236,242,255,255,1,0,0,0,72,139,133,224,242,255,255,139,149,104,243,255,255,137,16,199,133,252,242,255,255,1,0,0,0,72,139,133,240,242,255,255,199,0,0,0,0,0,233,220,1,0,0,199,133,236,242,255,255,0,0,0,0,139,133,236,242,255,255,137,133,252,242,255, 255,233,193,1,0,0,199,133,108,243,255,255,0,0,0,0,235,36,139,133,108,243,255,255,72,152,72,193,224,2,72,137,194,72,3,149,240,242,255,255,139,133,108,243,255,255,137,2,255,133,108,243,255,255,131,189,108,243,255,255,3,126,211,139,133,236,242,255,255,137, 133,252,242,255,255,233,119,1,0,0,131,189,236,242,255,255,255,117,79,139,133,252,242,255,255,137,133,236,242,255,255,199,133,108,243,255,255,0,0,0,0,235,36,139,133,108,243,255,255,72,152,72,193,224,2,72,137,194,72,3,149,224,242,255,255,139,133,104,243, 255,255,137,2,255,133,108,243,255,255,139,133,108,243,255,255,59,133,252,242,255,255,124,206,233,31,1,0,0,139,133,236,242,255,255,59,133,252,242,255,255,15,142,130,0,0,0,139,133,252,242,255,255,137,133,108,243,255,255,235,85,131,189,108,243,255,255,0, 117,15,72,139,133,240,242,255,255,199,0,0,0,0,0,235,55,139,133,108,243,255,255,72,152,72,193,224,2,72,137,193,72,3,141,240,242,255,255,72,139,149,240,242,255,255,72,131,234,4,139,133,108,243,255,255,72,152,72,193,224,2,72,141,4,2,139,0,255,192,137,1, 255,133,108,243,255,255,139,133,108,243,255,255,59,133,236,242,255,255,124,157,139,133,236,242,255,255,137,133,252,242,255,255,233,139,0,0,0,139,133,236,242,255,255,59,133,252,242,255,255,125,125,139,133,236,242,255,255,137,133,108,243,255,255,235,85, 131,189,108,243,255,255,0,117,17,72,139,149,224,242,255,255,139,133,104,243,255,255,137,2,235,53,139,133,108,243,255,255,72,152,72,193,224,2,72,137,193,72,3,141,224,242,255,255,72,139,149,224,242,255,255,72,131,234,4,139,133,108,243,255,255,72,152,72, 193,224,2,72,141,4,2,139,0,137,1,255,133,108,243,255,255,139,133,108,243,255,255,59,133,252,242,255,255,124,157,139,133,236,242,255,255,137,133,252,242,255,255,131,189,220,242,255,255,255,15,133,161,0,0,0,131,125,16,255,117,84,139,133,80,243,255,255, 133,192,126,50,199,69,16,1,0,0,0,72,139,133,200,242,255,255,139,149,104,243,255,255,137,16,199,133,220,242,255,255,1,0,0,0,72,139,133,208,242,255,255,199,0,0,0,0,0,233,186,1,0,0,199,133,220,242,255,255,0,0,0,0,139,133,220,242,255,255,137,69,16,233,162, 1,0,0,199,133,108,243,255,255,0,0,0,0,235,36,139,133,108,243,255,255,72,152,72,193,224,2,72,137,194,72,3,149,208,242,255,255,139,133,108,243,255,255,137,2,255,133,108,243,255,255,131,189,108,243,255,255,3,126,211,139,69,16,137,133,220,242,255,255,233, 91,1,0,0,131,125,16,255,117,76,139,133,220,242,255,255,137,69,16,199,133,108,243,255,255,0,0,0,0,235,36,139,133,108,243,255,255,72,152,72,193,224,2,72,137,194,72,3,149,200,242,255,255,139,133,104,243,255,255,137,2,255,133,108,243,255,255,139,133,108, 243,255,255,59,133,220,242,255,255,124,206,233,9,1,0,0,139,69,16,59,133,220,242,255,255,126,124,139,133,220,242,255,255,137,133,108,243,255,255,235,85,131,189,108,243,255,255,0,117,15,72,139,133,208,242,255,255,199,0,0,0,0,0,235,55,139,133,108,243,255, 255,72,152,72,193,224,2,72,137,193,72,3,141,208,242,255,255,72,139,149,208,242,255,255,72,131,234,4,139,133,108,243,255,255,72,152,72,193,224,2,72,141,4,2,139,0,255,192,137,1,255,133,108,243,255,255,139,133,108,243,255,255,59,69,16,124,160,139,69,16, 137,133,220,242,255,255,233,130,0,0,0,139,69,16,59,133,220,242,255,255,125,119,139,69,16,137,133,108,243,255,255,235,85,131,189,108,243,255,255,0,117,17,72,139,149,200,242,255,255,139,133,104,243,255,255,137,2,235,53,139,133,108,243,255,255,72,152,72, 193,224,2,72,137,193,72,3,141,200,242,255,255,72,139,149,200,242,255,255,72,131,234,4,139,133,108,243,255,255,72,152,72,193,224,2,72,141,4,2,139,0,137,1,255,133,108,243,255,255,139,133,108,243,255,255,59,133,220,242,255,255,124,157,139,69,16,137,133, 220,242,255,255,199,133,100,243,255,255,0,0,0,0,139,133,100,243,255,255,137,133,92,243,255,255,139,133,92,243,255,255,137,133,108,243,255,255,233,138,0,0,0,139,133,108,243,255,255,72,152,72,193,224,2,72,3,133,224,242,255,255,139,0,133,192,126,107,139, 141,92,243,255,255,139,133,108,243,255,255,72,152,72,193,224,2,72,3,133,224,242,255,255,139,16,72,99,193,137,148,133,16,243,255,255,139,141,92,243,255,255,139,133,108,243,255,255,72,152,72,193,224,2,72,3,133,240,242,255,255,139,16,72,99,193,137,148,133, 48,243,255,255,139,133,108,243,255,255,72,152,72,193,224,2,72,3,133,224,242,255,255,139,0,1,133,100,243,255,255,255,133,92,243,255,255,255,133,108,243,255,255,139,133,108,243,255,255,59,133,252,242,255,255,15,140,100,255,255,255,199,133,96,243,255,255, 0,0,0,0,139,133,96,243,255,255,137,133,88,243,255,255,139,133,88,243,255,255,137,133,108,243,255,255,233,138,0,0,0,139,133,108,243,255,255,72,152,72,193,224,2,72,3,133,200,242,255,255,139,0,133,192,126,107,139,141,88,243,255,255,139,133,108,243,255,255, 72,152,72,193,224,2,72,3,133,200,242,255,255,139,16,72,99,193,137,148,133,0,243,255,255,139,141,88,243,255,255,139,133,108,243,255,255,72,152,72,193,224,2,72,3,133,208,242,255,255,139,16,72,99,193,137,148,133,32,243,255,255,139,133,108,243,255,255,72, 152,72,193,224,2,72,3,133,200,242,255,255,139,0,1,133,96,243,255,255,255,133,88,243,255,255,255,133,108,243,255,255,139,133,108,243,255,255,59,133,220,242,255,255,15,140,100,255,255,255,139,69,40,105,208,232,3,0,0,72,141,5,58,136,4,0,137,16,191,0,0,0, 0,232,35,234,255,255,139,133,100,243,255,255,137,5,42,124,4,0,139,133,96,243,255,255,137,5,34,124,4,0,72,141,149,0,243,255,255,72,141,141,32,243,255,255,139,181,88,243,255,255,72,141,189,16,243,255,255,76,141,149,48,243,255,255,68,139,157,92,243,255, 255,139,69,48,137,68,36,16,139,69,40,137,68,36,8,139,69,32,137,4,36,73,137,209,73,137,200,137,241,72,137,250,76,137,214,68,137,223,232,249,244,255,255,72,139,5,108,38,4,0,72,139,85,248,72,51,16,116,5,232,68,186,1,0,201,195,85,72,137,229,72,141,5,197, 135,4,0,139,0,133,192,15,133,147,0,0,0,232,79,243,255,255,133,192,15,132,134,0,0,0,139,5,180,58,4,0,131,248,9,117,12,184,0,0,0,0,232,171,19,0,0,235,23,139,53,157,58,4,0,72,141,61,62,37,2,0,184,0,0,0,0,232,194,148,0,0,72,141,5,81,135,4,0,199,0,0,0,0,0, 72,141,5,68,135,4,0,139,16,72,141,5,55,135,4,0,137,16,199,5,99,58,4,0,255,255,255,255,191,0,0,0,0,232,49,236,255,255,199,5,199,122,4,0,0,0,0,0,199,5,25,123,4,0,0,0,0,0,72,141,61,6,37,2,0,184,0,0,0,0,232,76,53,0,0,201,195,85,72,137,229,72,129,236,144, 0,0,0,199,69,232,0,0,0,0,72,141,85,160,72,141,77,176,72,141,117,248,72,141,125,192,76,141,85,208,76,141,93,252,72,141,69,236,72,137,68,36,16,72,141,69,240,72,137,68,36,8,72,141,69,244,72,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,76,137,214, 76,137,223,232,175,242,255,255,139,85,244,139,53,170,122,4,0,139,61,160,122,4,0,232,248,244,255,255,139,69,252,133,192,117,22,139,69,248,133,192,117,15,191,0,0,0,0,232,131,235,255,255,233,211,0,0,0,139,5,156,57,4,0,131,248,9,117,19,139,85,244,139,117, 248,139,125,252,232,127,18,0,0,137,69,232,235,27,139,5,126,57,4,0,133,192,116,17,72,141,61,82,36,2,0,184,0,0,0,0,232,163,147,0,0,131,125,232,0,116,42,199,5,213,121,4,0,0,0,0,0,191,0,0,0,0,232,43,235,255,255,199,5,73,57,4,0,255,255,255,255,199,5,19,122, 4,0,0,0,0,0,235,62,199,5,171,121,4,0,1,0,0,0,139,69,236,133,192,116,9,199,69,152,2,0,0,0,235,7,199,69,152,1,0,0,0,139,125,152,232,236,234,255,255,139,5,10,57,4,0,137,5,8,57,4,0,139,69,236,137,5,211,121,4,0,131,125,232,0,117,11,139,5,239,56,4,0,137,69, 156,235,7,199,69,156,0,0,0,0,139,117,156,72,141,61,212,35,2,0,184,0,0,0,0,232,235,51,0,0,201,195,85,72,137,229,72,131,236,48,139,5,47,121,4,0,133,192,15,132,44,1,0,0,199,69,252,0,0,0,0,72,141,5,117,133,4,0,139,0,193,224,6,137,69,248,139,5,15,121,4,0, 137,69,244,235,100,139,69,252,72,152,72,193,224,2,72,137,194,72,141,5,95,133,4,0,72,139,0,72,141,4,2,139,0,137,69,240,243,15,16,69,240,15,46,69,244,119,2,235,8,139,69,240,137,69,244,235,45,243,15,16,5,118,71,2,0,243,15,16,77,240,15,87,193,15,46,69,244, 119,2,235,21,243,15,16,5,94,71,2,0,243,15,16,77,240,15,87,193,243,15,17,69,244,255,69,252,139,69,252,59,69,248,124,148,139,69,244,137,5,149,120,4,0,199,69,252,0,0,0,0,72,141,5,227,132,4,0,139,0,193,224,6,137,69,248,139,5,125,120,4,0,137,69,244,235,100, 139,69,252,72,152,72,193,224,2,72,137,194,72,141,5,209,132,4,0,72,139,0,72,141,4,2,139,0,137,69,236,243,15,16,69,236,15,46,69,244,119,2,235,8,139,69,236,137,69,244,235,45,243,15,16,5,224,70,2,0,243,15,16,77,236,15,87,193,15,46,69,244,119,2,235,21,243, 15,16,5,200,70,2,0,243,15,16,77,236,15,87,193,243,15,17,69,244,255,69,252,139,69,252,59,69,248,124,148,139,69,244,137,5,3,120,4,0,139,5,133,55,4,0,131,248,9,117,15,184,0,0,0,0,232,139,16,0,0,137,69,220,235,24,72,141,61,121,34,2,0,184,0,0,0,0,232,154, 145,0,0,199,69,220,0,0,0,0,139,69,220,201,195,85,72,137,229,72,141,5,17,132,4,0,139,0,137,69,252,243,15,16,69,252,201,195,85,72,137,229,72,141,5,2,132,4,0,139,0,201,195,85,72,137,229,72,141,5,239,131,4,0,139,0,201,195,85,72,137,229,72,137,125,248,72, 137,117,240,72,131,125,248,0,116,36,199,5,114,119,4,0,1,0,0,0,139,21,112,119,4,0,72,139,69,248,137,16,139,21,104,119,4,0,72,139,69,240,137,16,235,10,199,5,78,119,4,0,0,0,0,0,184,0,0,0,0,137,5,75,119,4,0,139,5,69,119,4,0,137,5,59,119,4,0,201,195,85,72, 137,229,201,195,85,72,137,229,72,131,236,80,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,76,137,77,192,232,185,241,255,255,72,139,69,192,199,0,0,0,0,0,139,5,138,54,4,0,131,248,9,117,52,72,139,85,200,72,139,77,208,72,139,117, 216,72,139,125,224,76,139,85,232,139,69,24,137,4,36,68,139,77,16,73,137,208,72,137,242,72,137,254,76,137,215,232,118,15,0,0,233,162,0,0,0,72,139,69,208,199,0,3,0,0,0,72,139,69,208,139,16,72,139,69,224,137,16,199,69,252,0,0,0,0,235,115,139,85,252,255, 194,72,199,198,255,255,255,255,139,69,252,15,175,69,24,72,152,72,137,199,72,3,125,232,65,137,208,72,141,13,39,33,2,0,72,137,242,190,0,0,0,0,184,0,0,0,0,232,94,181,1,0,139,85,252,255,194,72,199,198,255,255,255,255,139,69,252,15,175,69,24,72,152,72,137, 199,72,3,125,216,65,137,208,72,141,13,0,33,2,0,72,137,242,190,0,0,0,0,184,0,0,0,0,232,38,181,1,0,255,69,252,131,125,252,2,126,135,72,139,69,200,199,0,0,0,0,0,201,195,85,72,137,229,72,129,236,192,12,0,0,72,139,5,31,33,4,0,72,139,16,72,137,85,248,49,210, 199,133,108,243,255,255,0,0,0,0,199,133,104,243,255,255,0,0,0,0,199,133,96,243,255,255,0,0,0,0,199,133,92,243,255,255,0,0,0,0,72,141,133,92,243,255,255,72,141,149,96,243,255,255,72,141,141,104,243,255,255,72,141,181,112,243,255,255,72,141,189,108,243, 255,255,76,141,149,176,249,255,255,199,68,36,8,80,0,0,0,199,4,36,20,0,0,0,73,137,193,73,137,208,72,137,242,72,137,254,76,137,215,232,94,254,255,255,139,133,108,243,255,255,133,192,117,19,72,141,61,74,32,2,0,184,0,0,0,0,232,60,143,0,0,235,117,72,141,61, 84,32,2,0,184,0,0,0,0,232,41,143,0,0,199,133,100,243,255,255,0,0,0,0,235,74,139,149,100,243,255,255,137,208,193,224,2,1,208,193,224,4,72,152,72,141,149,176,249,255,255,72,1,194,139,5,193,52,4,0,131,248,3,15,149,192,15,182,192,137,198,3,181,100,243,255, 255,72,141,61,25,32,2,0,184,0,0,0,0,232,217,142,0,0,255,133,100,243,255,255,139,133,108,243,255,255,57,133,100,243,255,255,124,168,139,133,104,243,255,255,133,192,117,19,72,141,61,241,31,2,0,184,0,0,0,0,232,170,142,0,0,235,117,72,141,61,252,31,2,0,184, 0,0,0,0,232,151,142,0,0,199,133,100,243,255,255,0,0,0,0,235,74,139,149,100,243,255,255,137,208,193,224,2,1,208,193,224,4,72,152,72,141,149,112,243,255,255,72,1,194,139,5,47,52,4,0,131,248,3,15,149,192,15,182,192,137,198,3,181,100,243,255,255,72,141,61, 135,31,2,0,184,0,0,0,0,232,71,142,0,0,255,133,100,243,255,255,139,133,104,243,255,255,57,133,100,243,255,255,124,168,139,53,243,51,4,0,72,141,61,151,31,2,0,184,0,0,0,0,232,28,142,0,0,72,139,5,95,31,4,0,72,139,85,248,72,51,16,116,5,232,55,179,1,0,201, 195,85,72,137,229,83,72,129,236,104,31,0,0,72,137,189,136,225,255,255,243,15,17,133,132,225,255,255,72,139,5,45,31,4,0,72,139,16,72,137,85,232,49,210,199,133,232,225,255,255,0,0,0,0,199,133,228,225,255,255,0,0,0,0,199,133,224,225,255,255,0,0,0,0,199, 133,220,225,255,255,0,0,0,0,72,141,133,220,225,255,255,72,141,149,224,225,255,255,72,141,141,228,225,255,255,72,141,181,96,243,255,255,72,141,189,232,225,255,255,76,141,149,160,249,255,255,199,68,36,8,80,0,0,0,199,4,36,20,0,0,0,73,137,193,73,137,208, 72,137,242,72,137,254,76,137,215,232,108,252,255,255,72,141,61,224,30,2,0,232,194,49,0,0,199,133,216,225,255,255,0,0,0,0,235,51,139,149,216,225,255,255,137,208,193,224,2,1,208,193,224,4,72,152,72,141,181,160,249,255,255,72,1,198,72,141,61,220,30,2,0, 184,0,0,0,0,232,2,46,0,0,255,133,216,225,255,255,139,133,232,225,255,255,57,133,216,225,255,255,124,191,72,141,61,215,30,2,0,232,105,49,0,0,199,133,216,225,255,255,0,0,0,0,235,51,139,149,216,225,255,255,137,208,193,224,2,1,208,193,224,4,72,152,72,141, 181,96,243,255,255,72,1,198,72,141,61,219,30,2,0,184,0,0,0,0,232,169,45,0,0,255,133,216,225,255,255,139,133,228,225,255,255,57,133,216,225,255,255,124,191,72,141,149,144,225,255,255,72,141,141,160,225,255,255,72,141,181,56,226,255,255,72,141,189,176, 225,255,255,76,141,149,192,225,255,255,76,141,157,60,226,255,255,72,141,133,236,225,255,255,72,137,68,36,16,72,141,133,240,225,255,255,72,137,68,36,8,72,141,133,244,225,255,255,72,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,76,137,214,76,137, 223,232,241,234,255,255,139,133,60,226,255,255,131,248,1,127,11,139,133,56,226,255,255,131,248,1,126,11,184,0,0,128,63,137,133,132,225,255,255,139,133,60,226,255,255,133,192,126,24,139,133,192,225,255,255,133,192,120,14,139,157,192,225,255,255,137,157, 60,225,255,255,235,10,199,133,60,225,255,255,0,0,0,0,139,133,60,225,255,255,137,133,52,226,255,255,139,133,60,226,255,255,131,248,1,126,24,139,133,196,225,255,255,133,192,120,14,139,149,196,225,255,255,137,149,64,225,255,255,235,10,199,133,64,225,255, 255,0,0,0,0,139,157,64,225,255,255,137,157,48,226,255,255,139,133,60,226,255,255,131,248,2,126,24,139,133,200,225,255,255,133,192,120,14,139,133,200,225,255,255,137,133,68,225,255,255,235,10,199,133,68,225,255,255,0,0,0,0,139,149,68,225,255,255,137,149, 44,226,255,255,139,133,60,226,255,255,131,248,3,126,24,139,133,204,225,255,255,133,192,120,14,139,157,204,225,255,255,137,157,72,225,255,255,235,10,199,133,72,225,255,255,0,0,0,0,139,133,72,225,255,255,137,133,40,226,255,255,139,133,60,226,255,255,133, 192,126,14,139,149,176,225,255,255,137,149,76,225,255,255,235,10,199,133,76,225,255,255,0,0,0,0,139,157,76,225,255,255,137,157,36,226,255,255,139,133,60,226,255,255,131,248,1,126,14,139,133,180,225,255,255,137,133,80,225,255,255,235,10,199,133,80,225, 255,255,0,0,0,0,139,149,80,225,255,255,137,149,32,226,255,255,139,133,60,226,255,255,131,248,2,126,14,139,157,184,225,255,255,137,157,84,225,255,255,235,10,199,133,84,225,255,255,0,0,0,0,139,133,84,225,255,255,137,133,28,226,255,255,139,133,60,226,255, 255,131,248,3,126,14,139,149,188,225,255,255,137,149,88,225,255,255,235,10,199,133,88,225,255,255,0,0,0,0,139,157,88,225,255,255,137,157,24,226,255,255,139,133,56,226,255,255,133,192,126,24,139,133,160,225,255,255,133,192,120,14,139,133,160,225,255,255, 137,133,92,225,255,255,235,10,199,133,92,225,255,255,0,0,0,0,139,149,92,225,255,255,137,149,20,226,255,255,139,133,56,226,255,255,131,248,1,126,24,139,133,164,225,255,255,133,192,120,14,139,157,164,225,255,255,137,157,96,225,255,255,235,10,199,133,96, 225,255,255,0,0,0,0,139,133,96,225,255,255,137,133,16,226,255,255,139,133,56,226,255,255,131,248,2,126,24,139,133,168,225,255,255,133,192,120,14,139,149,168,225,255,255,137,149,100,225,255,255,235,10,199,133,100,225,255,255,0,0,0,0,139,157,100,225,255, 255,137,157,12,226,255,255,139,133,56,226,255,255,131,248,3,126,24,139,133,172,225,255,255,133,192,120,14,139,133,172,225,255,255,137,133,104,225,255,255,235,10,199,133,104,225,255,255,0,0,0,0,139,149,104,225,255,255,137,149,8,226,255,255,139,133,56, 226,255,255,133,192,126,14,139,157,144,225,255,255,137,157,108,225,255,255,235,10,199,133,108,225,255,255,0,0,0,0,139,133,108,225,255,255,137,133,4,226,255,255,139,133,56,226,255,255,131,248,1,126,14,139,149,148,225,255,255,137,149,112,225,255,255,235, 10,199,133,112,225,255,255,0,0,0,0,139,157,112,225,255,255,137,157,0,226,255,255,139,133,56,226,255,255,131,248,2,126,14,139,133,152,225,255,255,137,133,116,225,255,255,235,10,199,133,116,225,255,255,0,0,0,0,139,149,116,225,255,255,137,149,252,225,255, 255,139,133,56,226,255,255,131,248,3,126,14,139,157,156,225,255,255,137,157,120,225,255,255,235,10,199,133,120,225,255,255,0,0,0,0,139,133,120,225,255,255,137,133,248,225,255,255,15,87,192,15,46,133,132,225,255,255,15,149,192,15,154,194,9,208,15,182, 192,137,133,124,225,255,255,139,133,220,225,255,255,133,192,116,14,139,149,236,225,255,255,137,149,128,225,255,255,235,10,199,133,128,225,255,255,255,255,255,255,139,133,224,225,255,255,139,149,240,225,255,255,139,141,244,225,255,255,139,181,48,226,255, 255,139,189,52,226,255,255,76,141,149,64,226,255,255,139,157,124,225,255,255,137,156,36,144,0,0,0,139,157,128,225,255,255,137,156,36,136,0,0,0,137,132,36,128,0,0,0,137,84,36,120,137,76,36,112,139,133,248,225,255,255,137,68,36,104,139,133,252,225,255, 255,137,68,36,96,139,133,0,226,255,255,137,68,36,88,139,133,4,226,255,255,137,68,36,80,139,133,8,226,255,255,137,68,36,72,139,133,12,226,255,255,137,68,36,64,139,133,16,226,255,255,137,68,36,56,139,133,20,226,255,255,137,68,36,48,139,133,24,226,255,255, 137,68,36,40,139,133,28,226,255,255,137,68,36,32,139,133,32,226,255,255,137,68,36,24,139,133,36,226,255,255,137,68,36,16,139,133,40,226,255,255,137,68,36,8,139,133,44,226,255,255,137,4,36,65,137,241,65,137,248,72,141,13,249,25,2,0,186,32,17,0,0,190,0, 0,0,0,76,137,215,184,0,0,0,0,232,226,172,1,0,191,0,0,0,0,232,96,4,1,0,72,141,149,64,226,255,255,72,141,53,155,249,255,255,72,141,61,235,121,4,0,232,130,1,1,0,72,139,5,215,24,4,0,72,139,85,232,72,51,16,116,5,232,175,172,1,0,72,129,196,104,31,0,0,91,201, 195,85,72,137,229,83,72,129,236,24,1,0,0,72,137,189,40,255,255,255,72,137,181,32,255,255,255,137,149,28,255,255,255,72,137,141,16,255,255,255,72,139,149,16,255,255,255,139,181,28,255,255,255,191,16,0,0,0,232,244,21,255,255,137,69,188,72,139,149,16,255, 255,255,139,181,28,255,255,255,191,17,0,0,0,232,218,21,255,255,137,69,184,72,139,149,16,255,255,255,139,181,28,255,255,255,191,18,0,0,0,232,192,21,255,255,137,69,180,199,69,216,0,0,0,0,233,156,0,0,0,139,93,216,72,139,149,16,255,255,255,139,181,28,255, 255,255,139,125,216,232,153,21,255,255,137,194,72,99,195,137,148,133,96,255,255,255,139,93,216,139,125,216,131,199,4,72,139,149,16,255,255,255,139,181,28,255,255,255,232,114,21,255,255,137,194,72,99,195,137,148,133,80,255,255,255,139,93,216,139,125,216, 131,199,8,72,139,149,16,255,255,255,139,181,28,255,255,255,232,75,21,255,255,137,194,72,99,195,137,148,133,64,255,255,255,139,93,216,139,125,216,131,199,12,72,139,149,16,255,255,255,139,181,28,255,255,255,232,36,21,255,255,137,194,72,99,195,137,148,133, 48,255,255,255,255,69,216,131,125,216,3,15,142,90,255,255,255,199,69,216,0,0,0,0,199,69,212,0,0,0,0,235,72,139,69,216,72,152,139,132,133,80,255,255,255,133,192,116,53,139,77,212,139,69,216,72,152,139,148,133,96,255,255,255,72,99,193,137,148,133,96,255, 255,255,139,77,212,139,69,216,72,152,139,148,133,80,255,255,255,72,99,193,137,148,133,80,255,255,255,255,69,212,255,69,216,131,125,216,3,126,178,199,69,216,0,0,0,0,199,69,208,0,0,0,0,235,72,139,69,216,72,152,139,132,133,48,255,255,255,133,192,116,53, 139,77,208,139,69,216,72,152,139,148,133,64,255,255,255,72,99,193,137,148,133,64,255,255,255,139,77,208,139,69,216,72,152,139,148,133,48,255,255,255,72,99,193,137,148,133,48,255,255,255,255,69,208,255,69,216,131,125,216,3,126,178,131,125,180,0,121,7, 199,69,180,0,0,0,0,139,5,29,108,4,0,133,192,117,11,131,125,180,0,117,5,232,94,240,255,255,184,0,0,0,0,131,125,180,0,15,73,69,180,72,141,149,64,255,255,255,139,77,208,72,141,181,80,255,255,255,139,125,212,76,141,149,96,255,255,255,68,139,93,212,137,68, 36,32,139,69,184,137,68,36,24,139,69,188,137,68,36,16,72,141,133,48,255,255,255,72,137,68,36,8,139,69,208,137,4,36,73,137,209,65,137,200,72,137,241,137,250,76,137,214,68,137,223,232,174,232,255,255,139,5,162,107,4,0,133,192,117,13,131,125,180,0,117,7, 232,141,240,255,255,235,5,232,245,209,255,255,72,129,196,24,1,0,0,91,201,195,85,72,137,229,139,5,160,42,4,0,131,248,9,117,7,232,233,244,255,255,235,17,72,141,61,156,21,2,0,184,0,0,0,0,232,189,132,0,0,232,252,151,1,0,201,195,85,72,137,229,72,131,236,64, 72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224,76,137,69,216,76,137,77,208,72,139,85,208,72,139,77,216,72,139,117,224,72,139,125,232,76,139,85,240,76,139,93,248,139,69,24,137,68,36,8,139,69,16,137,4,36,73,137,209,73,137,200,72,137,241,72,137, 250,76,137,214,76,137,223,232,97,243,255,255,201,195,85,72,137,229,72,131,236,16,137,125,252,131,125,252,0,127,7,199,69,252,1,0,0,0,139,125,252,232,69,201,250,255,137,193,184,1,0,0,0,211,224,59,69,252,116,40,139,125,252,232,47,201,250,255,137,193,184, 1,0,0,0,211,224,137,69,252,139,117,252,72,141,61,142,22,2,0,184,0,0,0,0,232,2,132,0,0,139,69,252,137,5,187,41,4,0,201,195,85,72,137,229,72,131,236,16,137,125,252,139,69,252,137,5,169,41,4,0,72,141,5,174,126,4,0,139,0,133,192,116,23,139,53,150,41,4,0, 72,141,61,122,22,2,0,184,0,0,0,0,232,191,131,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243,15,16,69,228,243,15,44,192,137,69,252,131,125,252,0,116,127,139,5,90,41,4,0,57,69,252,117,16,232,225,225,255,255,133,192,117,92,232, 25,239,255,255,235,85,232,104,238,255,255,139,69,252,137,5,55,41,4,0,199,5,57,41,4,0,1,0,0,0,139,5,51,41,4,0,137,5,41,41,4,0,199,5,195,105,4,0,0,0,0,0,139,5,189,105,4,0,137,5,151,105,4,0,199,5,189,105,4,0,2,0,0,0,139,5,183,105,4,0,137,5,145,105,4,0,232, 194,238,255,255,15,87,192,191,0,0,0,0,232,24,245,255,255,235,14,232,109,225,255,255,133,192,116,5,232,251,237,255,255,201,195,85,72,137,229,72,131,236,16,137,125,252,131,125,252,0,116,16,232,76,225,255,255,133,192,117,21,232,132,238,255,255,235,14,232, 60,225,255,255,133,192,116,5,232,202,237,255,255,201,195,85,72,137,229,83,72,131,236,40,72,137,125,216,199,69,236,0,0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,25,72,199,194,255,255,255,255,72,139,125,216,72,141,53,104,21,2,0,232,222,167,1,0, 235,16,72,139,125,216,72,141,53,86,21,2,0,232,225,0,0,0,72,139,125,216,232,235,169,1,0,72,199,195,255,255,255,255,72,139,125,216,232,219,169,1,0,72,137,199,72,3,125,216,65,184,9,0,0,0,72,141,13,39,21,2,0,72,137,218,190,0,0,0,0,184,0,0,0,0,232,123,167, 1,0,255,69,236,72,199,192,255,255,255,255,72,131,248,255,116,25,72,199,194,255,255,255,255,72,139,125,216,72,141,53,255,20,2,0,232,96,167,1,0,235,16,72,139,125,216,72,141,53,237,20,2,0,232,67,0,0,0,131,125,236,1,127,54,72,199,192,255,255,255,255,72,131, 248,255,116,25,72,199,194,255,255,255,255,72,139,125,216,72,141,53,197,20,2,0,232,42,167,1,0,235,16,72,139,125,216,72,141,53,179,20,2,0,232,45,0,0,0,72,131,196,40,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255, 255,255,72,139,117,240,72,139,125,248,232,231,166,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,199,166,1,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137, 117,224,137,85,220,72,137,77,208,72,139,85,208,139,117,220,191,0,0,0,0,232,70,16,255,255,72,137,69,248,72,141,61,43,20,2,0,232,169,141,255,255,72,59,69,248,117,5,232,222,236,255,255,201,195,85,72,137,229,137,125,252,137,117,248,137,85,244,184,0,0,0,0, 201,195,85,72,137,229,184,0,0,0,0,201,195,85,72,137,229,184,0,0,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224,76,137,69,216,68,137,77,212,72,199,194,255,255,255,255,72,139,125,248,72,141,13,197,19,2, 0,190,0,0,0,0,184,0,0,0,0,232,3,166,1,0,72,199,194,255,255,255,255,72,139,125,232,72,141,13,164,19,2,0,190,0,0,0,0,184,0,0,0,0,232,226,165,1,0,72,139,69,224,199,0,1,0,0,0,72,139,69,224,139,16,72,139,69,240,137,16,72,139,69,216,199,0,0,0,0,0,201,195,85, 72,137,229,201,195,85,72,137,229,201,195,85,72,137,229,72,129,236,192,9,0,0,72,137,189,88,246,255,255,72,137,181,80,246,255,255,137,149,76,246,255,255,72,139,5,174,17,4,0,72,139,16,72,137,85,248,49,210,199,133,12,247,255,255,0,0,0,0,139,133,76,246,255, 255,137,133,8,247,255,255,72,141,61,32,19,2,0,232,101,166,1,0,72,137,133,248,246,255,255,72,141,5,229,122,4,0,72,139,0,72,139,8,72,141,189,0,251,255,255,72,141,21,254,18,2,0,190,232,3,0,0,184,0,0,0,0,232,66,167,1,0,72,139,141,248,246,255,255,72,141,189, 16,247,255,255,72,141,21,245,18,2,0,190,232,3,0,0,184,0,0,0,0,232,30,167,1,0,72,141,181,96,246,255,255,72,141,189,16,247,255,255,232,29,167,1,0,133,192,117,38,72,139,141,88,246,255,255,72,141,189,240,254,255,255,72,141,21,234,18,2,0,190,0,1,0,0,184,0, 0,0,0,232,227,166,1,0,235,46,72,139,133,88,246,255,255,72,141,141,0,251,255,255,72,141,189,240,254,255,255,73,137,192,72,141,21,234,18,2,0,190,0,1,0,0,184,0,0,0,0,232,179,166,1,0,72,141,189,240,254,255,255,72,141,53,177,190,1,0,232,242,165,1,0,72,137, 133,240,246,255,255,235,79,139,149,12,247,255,255,139,133,76,246,255,255,41,208,72,99,208,139,133,12,247,255,255,72,152,72,137,199,72,3,189,80,246,255,255,72,139,141,240,246,255,255,190,1,0,0,0,232,49,165,1,0,137,133,4,247,255,255,131,189,4,247,255,255, 0,126,26,139,133,4,247,255,255,1,133,12,247,255,255,139,133,12,247,255,255,59,133,76,246,255,255,124,163,72,139,189,240,246,255,255,232,116,165,1,0,131,189,12,247,255,255,0,127,12,199,133,72,246,255,255,0,0,0,0,235,110,139,133,12,247,255,255,59,133,76, 246,255,255,124,14,139,133,76,246,255,255,255,200,137,133,12,247,255,255,139,133,12,247,255,255,72,152,72,3,133,80,246,255,255,198,0,0,72,139,149,80,246,255,255,72,255,202,139,133,12,247,255,255,72,152,72,141,4,2,15,182,0,60,10,117,25,72,139,149,80,246, 255,255,72,255,202,139,133,12,247,255,255,72,152,72,141,4,2,198,0,0,199,133,72,246,255,255,1,0,0,0,139,133,72,246,255,255,72,139,21,174,15,4,0,72,139,77,248,72,51,10,116,5,232,134,163,1,0,201,195,85,72,137,229,201,195,85,72,137,229,201,195,85,72,137, 229,72,129,236,0,4,0,0,72,137,189,8,252,255,255,72,137,181,0,252,255,255,72,139,5,114,15,4,0,72,139,16,72,137,85,248,49,210,72,139,133,0,252,255,255,72,139,141,8,252,255,255,72,141,189,16,252,255,255,73,137,192,72,141,21,138,17,2,0,190,232,3,0,0,184, 0,0,0,0,232,43,165,1,0,72,141,189,16,252,255,255,232,109,165,1,0,72,139,5,40,15,4,0,72,139,85,248,72,51,16,116,5,232,0,163,1,0,201,195,85,72,137,229,201,195,85,72,137,229,65,84,83,72,129,236,112,5,0,0,72,139,5,253,14,4,0,72,139,16,72,137,85,232,49,210, 199,133,136,251,255,255,0,0,0,0,199,133,132,251,255,255,0,0,0,0,199,133,128,251,255,255,0,0,0,0,232,247,252,255,255,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,51,17,2,0,232,229,252,255,255,133,192,116,46,72,141,149,124,251,255,255,72,141,189, 160,251,255,255,72,141,53,156,183,1,0,184,0,0,0,0,232,146,164,1,0,133,192,126,11,139,189,124,251,255,255,232,70,249,255,255,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,245,16,2,0,232,155,252,255,255,133,192,116,61,72,141,189,160,251,255,255,72, 141,53,229,183,1,0,232,102,164,1,0,133,192,116,23,72,141,189,160,251,255,255,72,141,53,211,16,2,0,232,79,164,1,0,133,192,117,15,199,133,156,251,255,255,0,0,0,0,233,209,0,0,0,199,133,140,251,255,255,0,0,0,0,199,133,156,251,255,255,0,0,0,0,233,152,0,0, 0,139,133,140,251,255,255,255,192,72,141,125,144,65,137,192,72,141,13,145,16,2,0,186,80,0,0,0,190,0,0,0,0,184,0,0,0,0,232,203,161,1,0,72,141,181,160,251,255,255,72,141,125,144,186,232,3,0,0,232,2,252,255,255,133,192,116,98,139,133,140,251,255,255,72, 152,72,193,224,2,72,141,141,80,251,255,255,72,1,193,139,133,140,251,255,255,72,152,72,193,224,2,72,141,149,96,251,255,255,72,1,194,72,141,189,160,251,255,255,72,141,53,55,16,2,0,184,0,0,0,0,232,138,163,1,0,131,248,1,126,25,255,133,156,251,255,255,255, 133,140,251,255,255,131,189,140,251,255,255,3,15,142,91,255,255,255,131,189,156,251,255,255,0,117,10,199,133,156,251,255,255,255,255,255,255,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,239,15,2,0,232,113,251,255,255,133,192,116,61,72,141,189,160, 251,255,255,72,141,53,187,182,1,0,232,60,163,1,0,133,192,116,23,72,141,189,160,251,255,255,72,141,53,169,15,2,0,232,37,163,1,0,133,192,117,15,199,133,152,251,255,255,0,0,0,0,233,209,0,0,0,199,133,140,251,255,255,0,0,0,0,199,133,152,251,255,255,0,0,0, 0,233,152,0,0,0,139,133,140,251,255,255,255,192,72,141,125,144,65,137,192,72,141,13,133,15,2,0,186,80,0,0,0,190,0,0,0,0,184,0,0,0,0,232,161,160,1,0,72,141,181,160,251,255,255,72,141,125,144,186,232,3,0,0,232,216,250,255,255,133,192,116,98,139,133,140, 251,255,255,72,152,72,193,224,2,72,141,141,48,251,255,255,72,1,193,139,133,140,251,255,255,72,152,72,193,224,2,72,141,149,64,251,255,255,72,1,194,72,141,189,160,251,255,255,72,141,53,13,15,2,0,184,0,0,0,0,232,96,162,1,0,131,248,1,126,25,255,133,152,251, 255,255,255,133,140,251,255,255,131,189,140,251,255,255,3,15,142,91,255,255,255,131,189,152,251,255,255,0,117,10,199,133,152,251,255,255,255,255,255,255,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,104,171,1,0,232,71,250,255,255,133,192,116,31, 72,141,149,136,251,255,255,72,141,189,160,251,255,255,72,141,53,254,180,1,0,184,0,0,0,0,232,244,161,1,0,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,168,14,2,0,232,12,250,255,255,133,192,116,31,72,141,149,132,251,255,255,72,141,189,160,251,255, 255,72,141,53,195,180,1,0,184,0,0,0,0,232,185,161,1,0,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,118,14,2,0,232,209,249,255,255,133,192,116,31,72,141,149,128,251,255,255,72,141,189,160,251,255,255,72,141,53,136,180,1,0,184,0,0,0,0,232,126,161, 1,0,139,133,128,251,255,255,139,149,132,251,255,255,139,141,136,251,255,255,72,141,181,64,251,255,255,139,189,152,251,255,255,76,141,149,80,251,255,255,68,139,157,156,251,255,255,72,141,157,96,251,255,255,68,139,165,156,251,255,255,137,68,36,32,137,84, 36,24,137,76,36,16,72,141,133,48,251,255,255,72,137,68,36,8,139,133,152,251,255,255,137,4,36,73,137,241,65,137,248,76,137,209,68,137,218,72,137,222,68,137,231,232,105,221,255,255,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,209,13,2,0,232,35,249, 255,255,133,192,116,61,72,141,189,160,251,255,255,72,141,53,109,180,1,0,232,238,160,1,0,133,192,116,23,72,141,189,160,251,255,255,72,141,53,91,13,2,0,232,215,160,1,0,133,192,117,15,199,133,148,251,255,255,0,0,0,0,233,167,0,0,0,199,133,140,251,255,255, 0,0,0,0,199,133,148,251,255,255,0,0,0,0,233,129,0,0,0,139,133,140,251,255,255,255,192,72,141,125,144,65,137,192,72,141,13,101,13,2,0,186,80,0,0,0,190,0,0,0,0,184,0,0,0,0,232,83,158,1,0,72,141,181,160,251,255,255,72,141,125,144,186,232,3,0,0,232,138,248, 255,255,133,192,116,75,139,133,140,251,255,255,72,152,72,193,224,2,72,141,149,240,250,255,255,72,1,194,72,141,189,160,251,255,255,72,141,53,50,179,1,0,184,0,0,0,0,232,40,160,1,0,133,192,126,25,255,133,148,251,255,255,255,133,140,251,255,255,131,189,140, 251,255,255,15,15,142,114,255,255,255,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,230,12,2,0,232,35,248,255,255,133,192,116,61,72,141,189,160,251,255,255,72,141,53,109,179,1,0,232,238,159,1,0,133,192,116,23,72,141,189,160,251,255,255,72,141,53, 91,12,2,0,232,215,159,1,0,133,192,117,15,199,133,144,251,255,255,0,0,0,0,233,167,0,0,0,199,133,140,251,255,255,0,0,0,0,199,133,144,251,255,255,0,0,0,0,233,129,0,0,0,139,133,140,251,255,255,255,192,72,141,125,144,65,137,192,72,141,13,123,12,2,0,186,80, 0,0,0,190,0,0,0,0,184,0,0,0,0,232,83,157,1,0,72,141,181,160,251,255,255,72,141,125,144,186,232,3,0,0,232,138,247,255,255,133,192,116,75,139,133,140,251,255,255,72,152,72,193,224,2,72,141,149,176,250,255,255,72,1,194,72,141,189,160,251,255,255,72,141, 53,50,178,1,0,184,0,0,0,0,232,40,159,1,0,133,192,126,25,255,133,144,251,255,255,255,133,140,251,255,255,131,189,140,251,255,255,15,15,142,114,255,255,255,72,141,141,176,250,255,255,139,149,144,251,255,255,72,141,181,240,250,255,255,139,189,148,251,255, 255,65,184,0,0,0,0,232,0,139,1,0,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,216,11,2,0,232,254,246,255,255,133,192,116,33,72,141,149,116,251,255,255,72,141,189,160,251,255,255,72,141,53,181,177,1,0,184,0,0,0,0,232,171,158,1,0,235,10,199,133,116, 251,255,255,255,255,255,127,199,133,140,251,255,255,0,0,0,0,235,108,139,133,140,251,255,255,255,192,72,141,125,144,65,137,192,72,141,13,136,11,2,0,186,80,0,0,0,190,0,0,0,0,184,0,0,0,0,232,77,156,1,0,72,141,181,160,251,255,255,72,141,125,144,186,232,3, 0,0,232,132,246,255,255,133,192,116,55,72,141,5,237,113,4,0,72,139,56,72,141,181,160,251,255,255,232,109,90,0,0,72,137,194,72,141,5,212,113,4,0,72,137,16,255,133,140,251,255,255,139,133,116,251,255,255,57,133,140,251,255,255,124,134,72,141,181,160,251, 255,255,186,232,3,0,0,72,141,61,24,11,2,0,232,49,246,255,255,133,192,116,31,72,141,189,160,251,255,255,72,141,21,235,30,4,0,72,141,53,232,176,1,0,184,0,0,0,0,232,222,157,1,0,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,234,10,2,0,232,246,245,255, 255,133,192,116,31,72,141,189,160,251,255,255,72,141,21,64,113,4,0,72,141,53,173,176,1,0,184,0,0,0,0,232,163,157,1,0,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,183,10,2,0,232,187,245,255,255,133,192,116,33,72,141,149,116,251,255,255,72,141,189, 160,251,255,255,72,141,53,114,176,1,0,184,0,0,0,0,232,104,157,1,0,235,10,199,133,116,251,255,255,255,255,255,127,199,133,140,251,255,255,0,0,0,0,235,108,139,133,140,251,255,255,255,192,72,141,125,144,65,137,192,72,141,13,106,10,2,0,186,80,0,0,0,190,0, 0,0,0,184,0,0,0,0,232,10,155,1,0,72,141,181,160,251,255,255,72,141,125,144,186,232,3,0,0,232,65,245,255,255,133,192,116,55,72,141,5,154,112,4,0,72,139,56,72,141,181,160,251,255,255,232,42,89,0,0,72,137,194,72,141,5,129,112,4,0,72,137,16,255,133,140,251, 255,255,139,133,116,251,255,255,57,133,140,251,255,255,124,134,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,253,9,2,0,232,238,244,255,255,133,192,116,31,72,141,189,160,251,255,255,72,141,21,24,104,4,0,72,141,53,165,175,1,0,184,0,0,0,0,232,155,156, 1,0,72,141,181,160,251,255,255,186,232,3,0,0,72,141,61,203,9,2,0,232,179,244,255,255,133,192,116,42,72,141,189,160,251,255,255,72,141,53,253,175,1,0,232,126,156,1,0,133,192,116,19,72,141,189,160,251,255,255,232,110,129,255,255,72,137,5,249,15,4,0,232, 123,104,0,0,72,141,5,181,103,4,0,139,0,133,192,116,15,72,141,5,120,27,4,0,199,0,0,0,0,0,235,13,72,141,5,105,27,4,0,199,0,1,0,0,0,72,139,5,36,6,4,0,72,139,85,232,72,51,16,116,5,232,252,153,1,0,72,129,196,112,5,0,0,91,65,92,201,195,85,72,137,229,72,129, 236,32,9,0,0,72,137,189,40,247,255,255,72,139,5,241,5,4,0,72,139,16,72,137,85,248,49,210,232,75,246,255,255,72,141,5,88,26,4,0,139,0,72,141,189,16,252,255,255,65,137,192,72,141,13,197,174,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,149,153,1,0,72,141, 181,16,252,255,255,72,141,61,28,8,2,0,232,16,246,255,255,72,141,149,176,247,255,255,72,141,141,192,247,255,255,72,141,181,24,248,255,255,72,141,189,208,247,255,255,76,141,149,224,247,255,255,76,141,157,28,248,255,255,72,141,133,8,248,255,255,72,137,68, 36,16,72,141,133,12,248,255,255,72,137,68,36,8,72,141,133,16,248,255,255,72,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,76,137,214,76,137,223,232,150,210,255,255,139,133,28,248,255,255,133,192,127,16,72,141,5,186,7,2,0,72,137,133,0,247,255,255, 235,14,72,141,21,98,8,2,0,72,137,149,0,247,255,255,72,139,181,0,247,255,255,72,141,61,137,7,2,0,232,113,245,255,255,199,133,20,248,255,255,0,0,0,0,233,140,0,0,0,139,133,20,248,255,255,255,192,72,141,189,16,252,255,255,65,137,192,72,141,13,109,7,2,0,186, 232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,167,152,1,0,139,133,20,248,255,255,72,152,139,148,133,208,247,255,255,139,133,20,248,255,255,72,152,139,132,133,224,247,255,255,72,141,189,32,248,255,255,65,137,209,65,137,192,72,141,13,52,7,2,0,186,232,3,0,0,190, 0,0,0,0,184,0,0,0,0,232,97,152,1,0,72,141,181,32,248,255,255,72,141,189,16,252,255,255,232,220,244,255,255,255,133,20,248,255,255,139,133,28,248,255,255,57,133,20,248,255,255,15,140,98,255,255,255,139,133,24,248,255,255,133,192,127,16,72,141,5,210,6, 2,0,72,137,133,8,247,255,255,235,14,72,141,21,122,7,2,0,72,137,149,8,247,255,255,72,139,181,8,247,255,255,72,141,61,197,6,2,0,232,137,244,255,255,199,133,20,248,255,255,0,0,0,0,233,140,0,0,0,139,133,20,248,255,255,255,192,72,141,189,16,252,255,255,65, 137,192,72,141,13,163,6,2,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,191,151,1,0,139,133,20,248,255,255,72,152,139,148,133,176,247,255,255,139,133,20,248,255,255,72,152,139,132,133,192,247,255,255,72,141,189,32,248,255,255,65,137,209,65,137,192,72,141, 13,76,6,2,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,121,151,1,0,72,141,181,32,248,255,255,72,141,189,16,252,255,255,232,244,243,255,255,255,133,20,248,255,255,139,133,24,248,255,255,57,133,20,248,255,255,15,140,98,255,255,255,139,133,12,248,255,255, 72,141,189,16,252,255,255,65,137,192,72,141,13,83,172,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,35,151,1,0,72,141,181,16,252,255,255,72,141,61,248,5,2,0,232,158,243,255,255,139,133,16,248,255,255,72,141,189,16,252,255,255,65,137,192,72,141,13,21, 172,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,229,150,1,0,72,141,181,16,252,255,255,72,141,61,63,162,1,0,232,96,243,255,255,139,133,8,248,255,255,72,141,189,16,252,255,255,65,137,192,72,141,13,215,171,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232, 167,150,1,0,72,141,181,16,252,255,255,72,141,61,133,5,2,0,232,34,243,255,255,72,141,141,48,247,255,255,72,141,149,0,248,255,255,72,141,181,112,247,255,255,72,141,189,4,248,255,255,232,147,132,1,0,139,133,4,248,255,255,133,192,127,16,72,141,5,15,5,2,0, 72,137,133,16,247,255,255,235,14,72,141,21,183,5,2,0,72,137,149,16,247,255,255,72,139,181,16,247,255,255,72,141,61,50,5,2,0,232,198,242,255,255,199,133,20,248,255,255,0,0,0,0,235,122,139,133,20,248,255,255,255,192,72,141,189,16,252,255,255,65,137,192, 72,141,13,17,5,2,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,255,149,1,0,139,133,20,248,255,255,72,152,139,132,133,112,247,255,255,72,141,189,32,248,255,255,65,137,192,72,141,13,251,170,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,203,149,1,0,72,141, 181,32,248,255,255,72,141,189,16,252,255,255,232,70,242,255,255,255,133,20,248,255,255,139,133,4,248,255,255,57,133,20,248,255,255,15,140,116,255,255,255,139,133,0,248,255,255,133,192,127,16,72,141,5,60,4,2,0,72,137,133,24,247,255,255,235,14,72,141,21, 228,4,2,0,72,137,149,24,247,255,255,72,139,181,24,247,255,255,72,141,61,116,4,2,0,232,243,241,255,255,199,133,20,248,255,255,0,0,0,0,235,122,139,133,20,248,255,255,255,192,72,141,189,16,252,255,255,65,137,192,72,141,13,84,4,2,0,186,232,3,0,0,190,0,0, 0,0,184,0,0,0,0,232,44,149,1,0,139,133,20,248,255,255,72,152,139,132,133,48,247,255,255,72,141,189,32,248,255,255,65,137,192,72,141,13,40,170,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,248,148,1,0,72,141,181,32,248,255,255,72,141,189,16,252,255,255, 232,115,241,255,255,255,133,20,248,255,255,139,133,0,248,255,255,57,133,20,248,255,255,15,140,116,255,255,255,199,133,20,248,255,255,0,0,0,0,72,141,5,124,106,4,0,72,139,56,139,181,20,248,255,255,232,36,84,0,0,72,137,133,248,247,255,255,72,131,189,248, 247,255,255,0,116,72,139,133,20,248,255,255,255,192,72,141,189,16,252,255,255,65,137,192,72,141,13,171,3,2,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,112,148,1,0,72,139,181,248,247,255,255,72,141,189,16,252,255,255,232,235,240,255,255,255,133,20,248, 255,255,235,146,139,133,20,248,255,255,72,141,189,16,252,255,255,65,137,192,72,141,13,90,169,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,42,148,1,0,72,141,181,16,252,255,255,72,141,61,61,3,2,0,232,165,240,255,255,72,141,5,40,23,4,0,139,0,72,141,189, 16,252,255,255,65,137,192,72,141,13,25,169,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,233,147,1,0,72,141,181,16,252,255,255,72,141,61,9,3,2,0,232,100,240,255,255,72,141,5,119,105,4,0,139,0,72,141,189,16,252,255,255,65,137,192,72,141,13,216,168,1,0, 186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,168,147,1,0,72,141,181,16,252,255,255,72,141,61,213,2,2,0,232,35,240,255,255,199,133,20,248,255,255,0,0,0,0,72,141,5,52,105,4,0,72,139,56,139,181,20,248,255,255,232,236,82,0,0,72,137,133,240,247,255,255,72,131, 189,240,247,255,255,0,116,72,139,133,20,248,255,255,255,192,72,141,189,16,252,255,255,65,137,192,72,141,13,152,2,2,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,56,147,1,0,72,139,181,240,247,255,255,72,141,189,16,252,255,255,232,179,239,255,255,255,133, 20,248,255,255,235,146,139,133,20,248,255,255,72,141,189,16,252,255,255,65,137,192,72,141,13,34,168,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,242,146,1,0,72,141,181,16,252,255,255,72,141,61,39,2,2,0,232,109,239,255,255,72,141,5,96,96,4,0,139,0,72, 141,189,16,252,255,255,65,137,192,72,141,13,225,167,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,177,146,1,0,72,141,181,16,252,255,255,72,141,61,249,1,2,0,232,44,239,255,255,72,139,5,87,8,4,0,72,133,192,116,19,72,139,5,75,8,4,0,72,139,0,72,137,133,32, 247,255,255,235,14,72,141,5,104,167,1,0,72,137,133,32,247,255,255,72,139,181,32,247,255,255,72,141,61,194,1,2,0,232,236,238,255,255,232,97,239,255,255,72,139,5,114,254,3,0,72,139,85,248,72,51,16,116,5,232,74,146,1,0,201,195,85,72,137,229,72,131,236,16, 72,141,125,240,190,0,0,0,0,232,58,147,1,0,72,139,5,173,83,4,0,72,133,192,117,32,139,5,170,83,4,0,133,192,117,22,72,139,69,240,72,137,5,147,83,4,0,72,139,69,248,72,137,5,144,83,4,0,72,139,85,240,72,139,5,125,83,4,0,72,137,209,72,41,193,72,137,200,242, 72,15,42,208,139,85,248,139,5,110,83,4,0,137,209,41,193,137,200,242,15,42,200,242,15,16,5,172,35,2,0,242,15,89,193,242,15,88,194,201,195,85,72,137,229,72,129,236,192,1,0,0,137,189,76,254,255,255,137,181,72,254,255,255,199,69,248,0,0,0,0,72,199,69,208, 0,0,0,0,72,141,5,241,18,4,0,139,0,133,192,117,14,139,133,76,254,255,255,137,133,64,254,255,255,235,10,199,133,64,254,255,255,0,0,0,0,139,133,64,254,255,255,137,69,216,131,189,72,254,255,255,0,15,132,133,1,0,0,72,141,189,208,254,255,255,190,128,0,0,0, 232,176,145,1,0,72,141,189,80,255,255,255,190,128,0,0,0,232,159,145,1,0,72,141,189,80,254,255,255,190,128,0,0,0,232,142,145,1,0,72,139,5,207,82,4,0,72,137,69,232,139,5,189,82,4,0,137,69,252,235,55,72,139,69,232,139,0,137,69,244,139,69,244,72,152,72,193, 232,5,72,137,198,139,148,133,80,255,255,255,139,77,244,131,225,31,184,1,0,0,0,211,224,9,208,137,132,181,80,255,255,255,72,131,69,232,24,255,77,252,131,125,252,255,117,192,139,5,130,82,4,0,141,120,1,72,141,69,208,72,141,141,80,254,255,255,72,141,149,208, 254,255,255,72,141,181,80,255,255,255,73,137,192,232,130,146,1,0,199,69,252,0,0,0,0,233,172,0,0,0,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,194,72,139,5,45,82,4,0,72,141,4,2,139,56,72,141,181,80,255,255,255,232,201,0,0,0,133, 192,116,118,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,194,72,139,5,250,81,4,0,72,141,4,2,72,139,72,8,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,194,72,139,5,213,81,4,0,72,141,4,2,139,48,139,69,252, 72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,194,72,139,5,178,81,4,0,72,141,4,2,72,139,120,16,255,209,199,69,248,1,0,0,0,255,69,252,139,5,144,81,4,0,57,69,252,15,140,69,255,255,255,139,69,248,137,133,68,254,255,255,235,42,72,141,69,208, 73,137,192,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,191,0,0,0,0,232,144,145,1,0,199,133,68,254,255,255,0,0,0,0,139,133,68,254,255,255,201,195,85,72,137,229,137,125,252,72,137,117,240,139,69,252,72,152,72,137,194,72,193,234,5,72,139,69,240,139,20,144,139,77, 252,131,225,31,184,1,0,0,0,211,224,33,208,201,195,85,72,137,229,72,131,236,16,137,125,252,139,125,252,190,1,0,0,0,232,161,253,255,255,201,195,85,72,137,229,72,131,236,32,137,125,236,72,137,117,224,199,69,252,0,0,0,0,72,139,69,224,72,137,69,240,72,141, 69,240,72,141,120,8,186,4,0,0,0,190,0,0,0,0,232,118,144,1,0,72,141,117,240,139,125,236,186,0,0,0,0,232,13,145,1,0,133,192,121,12,72,141,61,128,254,1,0,232,103,144,1,0,201,195,85,72,137,229,72,131,236,16,137,125,252,139,5,144,80,4,0,133,192,117,52,199, 5,130,80,4,0,1,0,0,0,72,139,5,11,251,3,0,72,139,56,139,85,252,72,141,53,80,254,1,0,184,0,0,0,0,232,152,143,1,0,191,1,0,0,0,232,14,29,0,0,235,10,191,1,0,0,0,232,224,142,1,0,201,195,85,72,137,229,72,131,236,16,137,125,252,72,139,5,202,250,3,0,72,139,8, 186,26,0,0,0,190,1,0,0,0,72,141,61,23,254,1,0,232,127,143,1,0,201,195,85,72,137,229,72,131,236,32,137,125,236,72,199,69,240,0,0,0,0,199,69,248,48,117,0,0,72,141,69,240,73,137,192,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,191,1,0,0,0,232,33,144,1,0,201,195, 85,72,137,229,83,72,131,236,88,137,125,188,139,77,188,199,69,172,131,222,27,67,139,69,172,247,233,193,250,18,137,200,193,248,31,137,209,41,193,137,200,137,69,236,139,77,188,199,69,172,131,222,27,67,139,69,172,247,233,193,250,18,137,200,193,248,31,137, 211,41,195,137,216,105,192,64,66,15,0,137,202,41,194,137,208,137,69,188,72,199,69,192,0,0,0,0,199,69,200,0,0,0,0,139,69,236,72,152,72,137,69,208,139,69,188,137,69,216,131,125,188,0,116,19,72,141,53,20,255,255,255,191,14,0,0,0,232,93,254,255,255,235,15, 190,1,0,0,0,191,14,0,0,0,232,76,254,255,255,72,141,117,192,186,0,0,0,0,191,0,0,0,0,232,122,143,1,0,72,131,196,88,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,232,94,141,1,0,139,0,137,69,252,139,125,252,232,169,143,1,0,72,137,193,72,139,5,147, 249,3,0,72,139,56,139,69,252,72,139,85,232,65,137,192,72,141,53,251,252,1,0,184,0,0,0,0,232,25,142,1,0,201,195,85,72,137,229,72,131,236,48,137,125,236,72,137,117,224,72,137,85,216,139,5,210,78,4,0,137,69,252,139,69,252,72,99,208,72,137,208,72,1,192,72, 1,208,72,193,224,3,137,69,248,139,69,248,72,152,72,141,80,24,139,69,248,72,99,240,72,139,61,171,78,4,0,232,61,143,255,255,72,137,5,159,78,4,0,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,194,72,139,5,130,78,4,0,72,141,4,2,72, 137,69,240,72,139,85,240,139,69,236,137,2,72,139,85,240,72,139,69,224,72,137,66,8,72,139,85,240,72,139,69,216,72,137,66,16,139,69,252,255,192,137,5,70,78,4,0,139,5,80,78,4,0,57,69,236,124,11,139,69,236,255,192,137,5,64,78,4,0,201,195,85,72,137,229,72, 131,236,48,137,125,220,139,5,29,78,4,0,137,69,252,139,69,252,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,137,69,244,139,69,252,137,69,248,72,139,5,255,77,4,0,72,137,69,232,235,113,72,139,69,232,139,0,59,69,220,117,97,235,39,72,139,85,232,72,131, 194,24,72,139,77,232,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,139,66,16,72,137,65,16,72,131,69,232,24,255,77,248,131,125,248,255,117,208,139,69,244,72,152,72,141,80,232,139,69,244,72,99,240,72,139,61,166,77,4,0,232,56,142,255,255,72,137,5,154,77, 4,0,139,69,252,255,200,137,5,135,77,4,0,235,34,72,131,69,232,24,255,77,248,131,125,248,255,117,134,139,117,220,72,141,61,133,251,1,0,184,0,0,0,0,232,153,102,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,137,77,212, 191,48,0,0,0,232,237,140,255,255,72,137,69,248,72,139,69,248,199,64,12,0,0,0,0,72,139,69,248,139,80,12,72,139,69,248,137,80,8,72,139,85,248,72,139,69,232,72,137,66,16,72,139,85,248,72,139,69,224,72,137,66,32,72,139,85,248,72,139,69,216,72,137,66,40,72, 139,85,248,139,69,212,137,66,24,191,0,16,0,0,232,137,140,1,0,72,137,194,72,139,69,248,72,137,16,72,139,69,248,72,139,0,72,133,192,117,17,72,141,61,23,251,1,0,184,0,0,0,0,232,231,109,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248, 72,139,69,248,72,139,56,232,234,139,1,0,72,139,125,248,190,48,0,0,0,232,57,142,255,255,201,195,85,72,137,229,72,129,236,80,16,0,0,72,137,189,184,239,255,255,72,139,5,253,246,3,0,72,139,16,72,137,85,248,49,210,72,141,133,240,239,255,255,72,137,133,208, 239,255,255,199,133,228,239,255,255,1,0,0,0,72,139,133,184,239,255,255,139,64,8,137,133,224,239,255,255,72,139,133,184,239,255,255,139,64,12,137,133,220,239,255,255,72,139,133,184,239,255,255,72,139,0,72,137,133,200,239,255,255,139,133,220,239,255,255, 137,133,232,239,255,255,233,67,1,0,0,139,133,232,239,255,255,72,152,72,3,133,200,239,255,255,15,182,16,72,139,133,208,239,255,255,136,16,72,139,133,208,239,255,255,15,182,0,136,133,239,239,255,255,72,255,133,208,239,255,255,128,189,239,239,255,255,59, 15,133,231,0,0,0,131,189,232,239,255,255,0,116,33,72,139,149,200,239,255,255,72,255,202,139,133,232,239,255,255,72,152,72,141,4,2,15,182,0,60,92,15,132,189,0,0,0,139,133,232,239,255,255,255,192,37,255,15,0,0,137,133,220,239,255,255,72,139,149,208,239, 255,255,72,141,133,240,239,255,255,72,137,209,72,41,193,72,137,200,72,137,194,72,139,61,149,75,4,0,72,141,181,240,239,255,255,232,3,251,254,255,72,141,5,86,87,4,0,139,0,131,224,2,133,192,116,65,72,139,149,208,239,255,255,72,141,133,240,239,255,255,72, 137,209,72,41,193,72,137,200,72,137,194,72,141,181,240,239,255,255,191,2,0,0,0,232,6,140,1,0,186,1,0,0,0,72,141,53,132,249,1,0,191,2,0,0,0,232,240,139,1,0,72,139,149,184,239,255,255,139,133,224,239,255,255,137,66,8,72,139,149,184,239,255,255,139,133, 220,239,255,255,137,66,12,199,133,180,239,255,255,1,0,0,0,235,70,199,133,228,239,255,255,0,0,0,0,139,133,232,239,255,255,255,192,37,255,15,0,0,137,133,232,239,255,255,131,189,228,239,255,255,0,15,133,176,254,255,255,139,133,232,239,255,255,59,133,224, 239,255,255,15,133,158,254,255,255,199,133,180,239,255,255,0,0,0,0,139,133,180,239,255,255,72,139,21,33,245,3,0,72,139,77,248,72,51,10,116,5,232,249,136,1,0,201,195,85,72,137,229,72,129,236,48,16,0,0,72,137,189,216,239,255,255,137,181,212,239,255,255, 72,139,5,242,244,3,0,72,139,16,72,137,85,248,49,210,72,141,181,240,239,255,255,139,189,212,239,255,255,185,0,0,0,0,186,0,16,0,0,232,123,138,1,0,137,133,236,239,255,255,131,189,236,239,255,255,0,121,39,72,141,61,147,248,1,0,232,255,250,255,255,139,189, 212,239,255,255,232,249,251,255,255,139,189,212,239,255,255,232,69,3,0,0,233,204,0,0,0,131,189,236,239,255,255,0,15,142,191,0,0,0,139,133,236,239,255,255,72,152,198,132,5,240,239,255,255,0,139,133,236,239,255,255,255,200,72,152,15,182,132,5,240,239,255, 255,60,10,15,133,149,0,0,0,72,141,189,240,239,255,255,190,59,0,0,0,232,87,138,1,0,72,137,133,224,239,255,255,72,131,189,224,239,255,255,0,116,10,72,139,133,224,239,255,255,198,0,0,72,141,189,240,239,255,255,232,66,138,1,0,72,137,194,72,139,61,182,73, 4,0,72,141,181,240,239,255,255,232,36,249,254,255,232,55,151,255,255,72,139,133,216,239,255,255,72,139,64,40,72,133,192,116,33,72,139,133,216,239,255,255,72,139,80,40,72,139,53,131,73,4,0,72,139,133,216,239,255,255,72,139,120,16,255,210,235,17,72,141, 61,182,247,1,0,184,0,0,0,0,232,110,106,0,0,72,139,5,196,243,3,0,72,139,85,248,72,51,16,116,5,232,156,135,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,137,117,228,72,139,69,232,139,64,24,133,192,116,17,139,117,228,72,139,125,232,232,125,254, 255,255,233,48,2,0,0,72,139,69,232,139,80,8,72,139,69,232,139,64,12,57,194,125,14,72,139,69,232,139,64,12,255,200,137,69,224,235,7,199,69,224,0,16,0,0,139,69,224,137,69,252,72,139,69,232,139,64,8,59,69,252,117,69,72,139,5,81,243,3,0,72,139,8,186,29,0, 0,0,190,1,0,0,0,72,141,61,44,247,1,0,232,6,136,1,0,72,139,69,232,199,64,12,0,0,0,0,72,139,69,232,139,80,12,72,139,69,232,137,80,8,199,69,252,0,16,0,0,233,178,1,0,0,72,139,69,232,139,80,8,139,69,252,41,208,76,99,192,72,139,69,232,72,139,16,72,139,69,232, 139,64,8,72,152,72,141,52,2,139,125,228,185,0,0,0,0,76,137,194,232,134,136,1,0,137,69,248,131,125,248,0,121,92,72,141,61,164,246,1,0,232,16,249,255,255,72,139,5,92,72,4,0,72,57,69,232,117,15,191,1,0,0,0,232,216,20,0,0,233,78,1,0,0,72,139,69,232,72,139, 64,32,72,133,192,116,18,72,139,69,232,72,139,80,32,72,139,69,232,72,139,120,16,255,210,139,125,228,232,210,249,255,255,139,125,228,232,33,1,0,0,233,26,1,0,0,131,125,248,0,117,127,72,139,5,6,72,4,0,72,57,69,232,117,42,72,139,5,97,242,3,0,72,139,8,186, 12,0,0,0,190,1,0,0,0,72,141,61,90,246,1,0,232,22,135,1,0,232,56,191,255,255,233,221,0,0,0,139,117,228,72,141,61,78,246,1,0,184,0,0,0,0,232,216,96,0,0,72,139,69,232,72,139,64,32,72,133,192,116,18,72,139,69,232,72,139,80,32,72,139,69,232,72,139,120,16, 255,210,139,125,228,232,77,249,255,255,139,125,228,232,156,0,0,0,233,149,0,0,0,72,139,69,232,139,64,8,137,194,3,85,248,72,139,69,232,137,80,8,72,139,69,232,139,64,8,61,255,15,0,0,126,103,72,139,69,232,199,64,8,0,0,0,0,235,90,232,229,148,255,255,72,139, 69,232,72,139,64,40,72,133,192,116,27,72,139,69,232,72,139,80,40,72,139,53,55,71,4,0,72,139,69,232,72,139,120,16,255,210,235,27,72,139,61,36,71,4,0,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,232,182,15,255,255,72,139,69,232,139,80,8,72,139,69,232,139,64,12, 57,194,116,13,72,139,125,232,232,71,250,255,255,133,192,117,153,201,195,85,72,137,229,72,131,236,16,137,125,252,139,125,252,232,144,133,1,0,201,195,85,72,137,229,72,131,236,48,137,125,220,139,69,220,72,99,240,72,139,61,218,70,4,0,232,205,134,1,0,72,137, 69,232,72,131,125,232,0,15,133,152,0,0,0,139,5,204,70,4,0,139,21,194,70,4,0,41,208,137,69,252,199,69,248,0,0,0,0,139,69,252,76,99,192,139,5,174,70,4,0,72,152,72,137,194,72,139,5,150,70,4,0,72,1,194,139,69,248,72,152,72,141,52,2,139,61,104,70,4,0,185, 0,0,0,0,76,137,194,232,129,134,1,0,137,69,244,131,125,244,0,121,24,72,141,61,235,244,1,0,232,238,133,1,0,191,1,0,0,0,232,212,18,0,0,235,168,139,69,244,1,69,248,139,69,248,59,69,252,125,2,235,152,199,5,72,70,4,0,0,0,0,0,139,5,66,70,4,0,137,5,56,70,4,0, 235,20,139,69,220,137,5,53,70,4,0,72,139,69,232,72,137,5,26,70,4,0,201,195,85,72,137,229,83,72,129,236,248,0,0,0,72,137,181,72,255,255,255,72,137,149,80,255,255,255,72,137,141,88,255,255,255,76,137,133,96,255,255,255,76,137,141,104,255,255,255,15,182, 192,72,137,133,0,255,255,255,72,139,149,0,255,255,255,72,141,4,149,0,0,0,0,72,141,29,59,0,0,0,72,137,157,0,255,255,255,72,41,133,0,255,255,255,72,141,69,239,72,139,149,0,255,255,255,255,226,15,41,120,241,15,41,112,225,15,41,104,209,15,41,96,193,15,41, 88,177,15,41,80,161,15,41,72,145,15,41,64,129,72,137,189,8,255,255,255,72,141,5,76,89,4,0,139,0,133,192,15,133,219,2,0,0,72,139,5,111,69,4,0,72,133,192,117,103,191,0,32,0,0,232,206,132,1,0,72,137,5,89,69,4,0,72,139,5,82,69,4,0,72,133,192,117,42,72,139, 5,158,239,3,0,72,139,8,186,33,0,0,0,190,1,0,0,0,72,141,61,202,243,1,0,232,83,132,1,0,191,1,0,0,0,232,159,17,0,0,199,5,41,69,4,0,0,32,0,0,199,5,27,69,4,0,0,0,0,0,139,5,21,69,4,0,137,5,11,69,4,0,139,5,13,69,4,0,141,144,0,240,255,255,139,5,249,68,4,0,57, 194,125,17,139,5,247,68,4,0,141,184,0,32,0,0,232,234,253,255,255,72,141,133,16,255,255,255,199,0,8,0,0,0,72,141,133,16,255,255,255,199,64,4,48,0,0,0,72,141,133,16,255,255,255,72,141,93,16,72,137,88,8,72,141,133,16,255,255,255,72,141,149,64,255,255,255, 72,137,80,16,72,199,193,255,255,255,255,139,21,163,68,4,0,139,5,149,68,4,0,137,211,41,195,137,216,72,99,240,139,5,134,68,4,0,72,152,72,137,194,72,139,5,114,68,4,0,72,141,60,2,72,141,133,16,255,255,255,72,139,149,8,255,255,255,73,137,193,73,137,208,186, 0,0,0,0,232,164,130,1,0,137,133,60,255,255,255,131,189,60,255,255,255,0,121,37,72,139,5,146,238,3,0,72,139,8,186,55,0,0,0,190,1,0,0,0,72,141,61,230,242,1,0,232,71,131,1,0,233,129,1,0,0,139,5,38,68,4,0,139,21,24,68,4,0,41,208,59,133,60,255,255,255,15, 143,14,1,0,0,139,5,12,68,4,0,141,80,1,184,0,32,0,0,129,189,60,255,255,255,0,32,0,0,15,77,133,60,255,255,255,141,4,2,137,133,40,255,255,255,139,189,40,255,255,255,232,221,252,255,255,72,141,133,16,255,255,255,199,0,8,0,0,0,72,141,133,16,255,255,255,199, 64,4,48,0,0,0,72,141,133,16,255,255,255,72,141,85,16,72,137,80,8,72,141,133,16,255,255,255,72,141,157,64,255,255,255,72,137,88,16,72,199,193,255,255,255,255,139,21,150,67,4,0,139,5,136,67,4,0,137,211,41,195,137,216,72,99,240,139,5,121,67,4,0,72,152,72, 137,194,72,139,5,101,67,4,0,72,141,60,2,72,141,133,16,255,255,255,72,139,149,8,255,255,255,73,137,193,73,137,208,186,0,0,0,0,232,151,129,1,0,137,133,44,255,255,255,139,133,44,255,255,255,59,133,60,255,255,255,116,17,72,141,61,32,242,1,0,184,0,0,0,0,232, 17,100,0,0,139,5,40,67,4,0,139,21,26,67,4,0,41,208,59,133,60,255,255,255,127,20,139,5,18,67,4,0,139,21,4,67,4,0,41,208,137,133,60,255,255,255,72,141,5,169,78,4,0,139,0,131,224,1,132,192,116,37,72,139,5,53,237,3,0,72,139,48,139,5,220,66,4,0,72,152,72, 137,194,72,139,5,200,66,4,0,72,141,60,2,232,199,129,1,0,139,5,193,66,4,0,3,133,60,255,255,255,137,5,181,66,4,0,139,5,191,66,4,0,3,133,60,255,255,255,137,5,179,66,4,0,72,129,196,248,0,0,0,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,117, 248,72,141,61,106,227,1,0,184,0,0,0,0,232,88,252,255,255,201,195,85,72,137,229,83,72,131,236,40,139,5,103,66,4,0,139,21,101,66,4,0,41,208,137,69,236,199,69,232,0,0,0,0,131,125,236,0,126,50,139,69,236,76,99,192,139,5,71,66,4,0,72,152,72,137,194,72,139, 5,47,66,4,0,72,141,52,2,139,61,9,66,4,0,185,0,0,0,0,76,137,194,232,34,130,1,0,137,69,232,131,125,232,0,121,27,72,141,61,12,241,1,0,232,143,129,1,0,191,1,0,0,0,232,117,14,0,0,233,26,1,0,0,131,125,232,0,117,12,199,69,220,0,0,0,0,233,15,1,0,0,139,5,228, 65,4,0,139,21,226,65,4,0,41,208,59,69,232,127,27,199,5,209,65,4,0,0,0,0,0,139,5,203,65,4,0,137,5,193,65,4,0,233,218,0,0,0,131,125,232,0,15,132,208,0,0,0,139,5,176,65,4,0,3,69,232,137,5,167,65,4,0,139,5,165,65,4,0,137,194,193,250,2,139,5,150,65,4,0,57, 194,15,141,168,0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,67,72,199,193,255,255,255,255,139,21,112,65,4,0,139,5,110,65,4,0,137,211,41,195,137,216,76,99,192,139,5,95,65,4,0,72,152,72,137,194,72,139,5,71,65,4,0,72,141,52,2,72,139,61,60,65,4,0, 76,137,194,232,82,127,1,0,235,58,139,21,52,65,4,0,139,5,50,65,4,0,137,209,41,193,137,200,72,99,200,139,5,35,65,4,0,72,152,72,137,194,72,139,5,11,65,4,0,72,141,52,2,72,139,61,0,65,4,0,72,137,202,232,47,0,0,0,139,5,250,64,4,0,139,21,248,64,4,0,41,208,137, 5,236,64,4,0,199,5,230,64,4,0,0,0,0,0,199,69,220,1,0,0,0,139,69,220,72,131,196,40,91,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,72,139,117,240,72,139,125,248,232,187,126,1, 0,201,195,85,72,137,229,72,137,125,248,199,5,157,64,4,0,0,0,0,0,201,195,85,72,137,229,72,131,236,32,139,5,145,64,4,0,5,0,2,0,0,137,69,252,139,69,252,5,0,1,0,0,61,0,4,0,0,126,7,199,69,252,255,255,255,127,139,5,105,64,4,0,133,192,116,12,199,69,236,0,0, 0,0,233,186,0,0,0,72,139,5,54,64,4,0,72,133,192,117,12,199,69,236,0,0,0,0,233,162,0,0,0,139,5,63,64,4,0,61,255,3,0,0,126,41,72,141,61,46,239,1,0,232,131,253,255,255,199,5,34,64,4,0,0,0,0,0,199,5,20,64,4,0,1,0,0,0,199,69,236,1,0,0,0,235,108,72,139,5,232, 63,4,0,72,133,192,116,84,72,139,5,220,63,4,0,72,137,69,240,72,139,69,240,72,139,64,24,72,137,5,201,63,4,0,72,139,69,240,72,139,80,16,72,139,69,240,72,139,112,8,72,139,69,240,72,139,0,72,137,199,255,210,72,139,125,240,190,32,0,0,0,232,24,129,255,255,139, 5,185,63,4,0,59,69,252,125,5,233,106,255,255,255,232,36,253,255,255,199,69,236,1,0,0,0,139,69,236,201,195,85,72,137,229,72,131,236,16,72,141,5,67,83,4,0,139,0,133,192,116,9,199,69,252,0,0,0,0,235,68,232,245,252,255,255,133,192,116,9,199,69,252,1,0,0, 0,235,50,139,21,88,63,4,0,139,5,86,63,4,0,57,194,126,9,199,69,252,0,0,0,0,235,25,232,177,254,255,255,133,192,116,9,199,69,252,1,0,0,0,235,7,199,69,252,0,0,0,0,139,69,252,201,195,85,72,137,229,137,125,252,139,5,42,63,4,0,3,69,252,137,5,33,63,4,0,201,195, 85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,72,139,5,228,62,4,0,72,133,192,117,13,72,141,5,216,62,4,0,72,137,69,248,235,80,72,139,5,203,62,4,0,72,137,69,240,235,29,72,139,69,240,72,139,0,72,59,69,232,15,132,134,0,0,0,72,139, 69,240,72,139,64,24,72,137,69,240,72,139,69,240,72,139,64,24,72,133,192,117,214,72,139,69,240,72,139,0,72,59,69,232,116,96,72,139,69,240,72,131,192,24,72,137,69,248,191,32,0,0,0,232,253,125,255,255,72,137,69,240,72,139,69,240,72,199,64,24,0,0,0,0,72, 139,85,240,72,139,69,232,72,137,2,72,139,85,240,72,139,69,224,72,137,66,8,72,139,85,240,72,139,69,216,72,137,66,16,72,139,69,240,72,199,64,24,0,0,0,0,72,139,85,248,72,139,69,240,72,137,2,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,5,25, 62,4,0,72,133,192,15,132,131,0,0,0,72,139,5,9,62,4,0,72,139,0,72,59,69,232,117,30,72,139,61,249,61,4,0,190,32,0,0,0,232,104,127,255,255,72,199,5,228,61,4,0,0,0,0,0,235,85,72,139,5,219,61,4,0,72,137,69,248,235,53,72,139,69,240,72,139,0,72,59,69,232,117, 32,72,139,69,240,72,139,80,24,72,139,69,248,72,137,80,24,72,139,125,240,190,32,0,0,0,232,35,127,255,255,235,27,72,139,69,240,72,137,69,248,72,139,69,248,72,139,64,24,72,137,69,240,72,131,125,240,0,117,184,201,195,85,72,137,229,72,131,236,16,190,1,0,0, 0,191,0,0,0,0,232,234,233,255,255,133,192,117,9,232,237,253,255,255,133,192,116,9,199,69,252,1,0,0,0,235,7,199,69,252,0,0,0,0,139,69,252,201,195,85,72,137,229,72,129,236,112,30,0,0,72,137,189,184,225,255,255,72,139,5,145,231,3,0,72,139,16,72,137,85,248, 49,210,199,133,36,228,255,255,16,0,0,0,199,133,32,228,255,255,0,0,0,0,199,133,28,228,255,255,24,21,0,0,199,133,24,228,255,255,255,255,255,255,191,0,0,0,0,232,131,124,255,255,72,137,5,215,60,4,0,199,5,197,60,4,0,0,0,0,0,232,196,234,254,255,72,137,5,209, 60,4,0,72,141,53,139,236,255,255,191,1,0,0,0,232,0,125,1,0,72,141,53,248,235,255,255,191,2,0,0,0,232,239,124,1,0,72,141,53,231,235,255,255,191,3,0,0,0,232,222,124,1,0,72,141,53,214,235,255,255,191,4,0,0,0,232,205,124,1,0,72,141,53,197,235,255,255,191, 6,0,0,0,232,188,124,1,0,190,1,0,0,0,191,8,0,0,0,232,173,124,1,0,190,1,0,0,0,191,13,0,0,0,232,158,124,1,0,190,1,0,0,0,191,14,0,0,0,232,143,124,1,0,72,141,5,44,80,4,0,139,0,133,192,15,132,21,1,0,0,72,141,189,48,228,255,255,190,232,3,0,0,232,113,123,1,0, 72,133,192,117,24,72,141,189,48,228,255,255,186,2,0,0,0,72,141,53,5,144,1,0,232,156,123,1,0,199,133,192,225,255,255,2,0,0,0,72,141,189,48,228,255,255,232,112,97,255,255,72,137,133,200,225,255,255,199,133,20,228,255,255,0,0,0,0,235,108,139,133,20,228, 255,255,72,152,72,193,224,4,72,137,194,72,141,133,192,225,255,255,72,1,208,72,131,192,16,199,0,1,0,0,0,139,133,20,228,255,255,72,152,72,193,224,4,72,137,194,72,141,133,192,225,255,255,72,1,208,72,141,72,16,139,133,20,228,255,255,72,152,72,141,20,133, 0,0,0,0,72,141,5,144,250,3,0,72,141,4,2,139,0,243,15,42,192,243,15,17,65,8,255,133,20,228,255,255,131,189,20,228,255,255,20,126,139,72,141,133,192,225,255,255,72,5,96,1,0,0,199,0,1,0,0,0,72,141,133,192,225,255,255,72,141,144,96,1,0,0,184,0,0,0,0,137, 66,8,72,141,141,192,225,255,255,186,23,0,0,0,190,0,0,0,0,191,0,0,0,0,232,106,20,0,0,233,136,5,0,0,72,141,5,242,78,4,0,139,0,133,192,15,132,251,0,0,0,186,0,0,0,0,190,1,0,0,0,191,2,0,0,0,232,98,123,1,0,137,5,250,58,4,0,139,5,244,58,4,0,133,192,121,12,72, 141,61,39,234,1,0,232,157,235,255,255,198,133,209,247,255,255,2,72,141,61,27,234,1,0,232,37,122,1,0,72,137,133,232,227,255,255,72,131,189,232,227,255,255,0,117,42,72,139,5,45,229,3,0,72,139,8,186,51,0,0,0,190,1,0,0,0,72,141,61,249,233,1,0,232,226,121, 1,0,191,1,0,0,0,232,126,121,1,0,72,139,133,232,227,255,255,139,64,20,72,99,208,72,139,133,232,227,255,255,72,139,64,24,72,139,48,72,141,133,208,247,255,255,72,141,120,4,185,12,0,0,0,232,154,120,1,0,72,141,5,51,78,4,0,139,0,15,183,248,232,205,6,0,0,102, 137,133,210,247,255,255,72,141,181,208,247,255,255,139,61,65,58,4,0,186,16,0,0,0,232,245,120,1,0,133,192,15,137,146,4,0,0,72,141,61,176,233,1,0,232,220,234,255,255,191,1,0,0,0,232,1,121,1,0,186,0,0,0,0,190,1,0,0,0,191,2,0,0,0,232,103,122,1,0,137,133, 24,228,255,255,131,189,24,228,255,255,0,121,12,72,141,61,45,233,1,0,232,163,234,255,255,199,133,16,228,255,255,1,0,0,0,72,141,141,16,228,255,255,139,189,24,228,255,255,65,184,4,0,0,0,186,1,0,0,0,190,6,0,0,0,232,240,121,1,0,133,192,121,17,72,141,61,87, 233,1,0,184,0,0,0,0,232,203,82,0,0,198,69,209,2,199,69,212,0,0,0,0,139,133,28,228,255,255,15,183,248,232,8,6,0,0,102,137,69,210,233,152,0,0,0,232,170,119,1,0,139,0,137,133,12,228,255,255,131,189,32,228,255,255,20,15,159,192,255,133,32,228,255,255,132, 192,117,9,131,189,12,228,255,255,48,116,86,72,141,61,124,5,2,0,232,249,120,1,0,72,139,5,190,227,3,0,72,139,8,186,44,0,0,0,190,1,0,0,0,72,141,61,2,233,1,0,232,115,120,1,0,72,139,5,158,227,3,0,72,139,8,186,56,0,0,0,190,1,0,0,0,72,141,61,18,233,1,0,232, 83,120,1,0,191,1,0,0,0,232,239,119,1,0,255,133,28,228,255,255,139,133,28,228,255,255,15,183,248,232,107,5,0,0,102,137,69,210,72,141,117,208,139,189,24,228,255,255,186,16,0,0,0,232,129,119,1,0,133,192,15,136,76,255,255,255,72,141,5,192,76,4,0,139,0,133, 192,116,33,72,139,5,51,227,3,0,72,139,56,139,149,28,228,255,255,72,141,53,228,232,1,0,184,0,0,0,0,232,189,119,1,0,72,141,5,106,76,4,0,72,139,0,72,133,192,15,133,25,2,0,0,72,141,61,143,228,1,0,232,212,119,1,0,72,137,133,224,227,255,255,72,141,189,144, 227,255,255,186,80,0,0,0,190,0,0,0,0,232,255,119,1,0,72,141,5,166,232,1,0,72,137,133,144,227,255,255,72,141,5,184,232,1,0,72,137,133,152,227,255,255,72,141,5,202,232,1,0,72,137,133,160,227,255,255,72,141,5,244,232,1,0,72,137,133,168,227,255,255,72,141, 5,46,233,1,0,72,137,133,176,227,255,255,72,141,5,80,233,1,0,72,137,133,184,227,255,255,72,141,5,121,233,1,0,72,137,133,192,227,255,255,72,139,133,184,225,255,255,72,141,189,208,251,255,255,73,137,192,72,141,13,104,233,1,0,186,0,4,0,0,190,0,0,0,0,184, 0,0,0,0,232,39,118,1,0,199,133,56,227,255,255,1,0,0,0,72,141,141,48,227,255,255,72,141,189,208,251,255,255,186,0,0,0,0,190,0,16,0,0,232,26,119,1,0,72,139,133,48,227,255,255,72,133,192,116,41,72,139,133,80,227,255,255,72,139,48,72,141,189,208,247,255, 255,186,0,4,0,0,232,235,117,1,0,72,141,133,208,247,255,255,72,137,133,144,227,255,255,72,139,133,224,227,255,255,72,141,189,208,243,255,255,73,137,192,72,141,13,243,232,1,0,186,0,4,0,0,190,0,0,0,0,184,0,0,0,0,232,159,117,1,0,72,141,133,208,243,255,255, 72,137,133,152,227,255,255,199,133,8,228,255,255,0,0,0,0,235,94,72,141,5,38,75,4,0,139,0,133,192,116,43,139,133,8,228,255,255,72,152,72,139,148,197,144,227,255,255,72,139,5,137,225,3,0,72,139,56,72,141,53,196,232,1,0,184,0,0,0,0,232,25,118,1,0,139,133, 8,228,255,255,72,152,72,139,188,197,144,227,255,255,72,141,181,192,225,255,255,232,83,119,1,0,133,192,121,15,255,133,8,228,255,255,131,189,8,228,255,255,9,126,153,139,133,8,228,255,255,72,152,72,139,140,197,144,227,255,255,72,139,149,184,225,255,255, 72,141,189,48,228,255,255,139,133,28,228,255,255,137,4,36,73,137,209,73,137,200,72,141,13,108,232,1,0,186,160,15,0,0,190,0,0,0,0,184,0,0,0,0,232,214,116,1,0,72,141,21,79,74,4,0,72,141,133,48,228,255,255,72,137,2,72,141,5,102,74,4,0,139,0,133,192,116, 25,72,139,5,217,224,3,0,72,139,48,72,141,5,39,74,4,0,72,139,56,232,119,117,1,0,232,96,117,1,0,137,133,44,228,255,255,131,189,44,228,255,255,0,121,72,232,98,116,1,0,139,0,133,192,116,14,72,141,61,23,232,1,0,232,208,117,1,0,235,32,72,139,5,147,224,3,0, 72,139,8,186,20,0,0,0,190,1,0,0,0,72,141,61,2,232,1,0,232,72,117,1,0,199,133,180,225,255,255,1,0,0,0,233,82,2,0,0,131,189,44,228,255,255,0,117,81,232,73,117,1,0,137,199,232,26,118,1,0,72,141,5,167,73,4,0,72,139,8,65,184,0,0,0,0,72,141,21,215,231,1,0, 72,141,53,211,231,1,0,72,141,61,207,231,1,0,184,0,0,0,0,232,149,116,1,0,72,141,61,198,231,1,0,232,79,117,1,0,191,1,0,0,0,232,19,116,1,0,72,141,5,58,245,3,0,139,0,133,192,116,78,199,133,4,228,255,255,2,0,0,0,199,133,144,227,255,255,80,0,0,0,232,121,117, 1,0,72,137,199,72,141,149,144,227,255,255,139,181,4,228,255,255,232,106,117,1,0,137,133,0,228,255,255,131,189,0,228,255,255,0,116,17,72,141,61,112,231,1,0,184,0,0,0,0,232,100,78,0,0,72,141,5,35,73,4,0,139,0,133,192,15,133,189,0,0,0,72,141,5,254,72,4, 0,139,0,133,192,15,133,172,0,0,0,72,141,5,13,73,4,0,139,0,133,192,116,32,72,139,5,128,223,3,0,72,139,8,186,35,0,0,0,190,1,0,0,0,72,141,61,76,231,1,0,232,53,116,1,0,139,189,24,228,255,255,190,5,0,0,0,232,79,116,1,0,133,192,121,12,72,141,61,80,231,1,0, 232,140,229,255,255,72,141,149,36,228,255,255,72,141,117,208,139,189,24,228,255,255,232,57,115,1,0,137,5,183,52,4,0,139,5,177,52,4,0,133,192,121,12,72,141,61,37,231,1,0,232,90,229,255,255,72,141,5,142,72,4,0,139,0,133,192,116,32,72,139,5,1,223,3,0,72, 139,8,186,14,0,0,0,190,1,0,0,0,72,141,61,255,230,1,0,232,182,115,1,0,72,141,5,85,72,4,0,139,0,133,192,15,133,180,0,0,0,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,191,0,0,0,0,232,213,230,255,255,72,137,5,79,52,4,0,72,139,21,72,52,4,0,72,141,53,237,234,255,255, 139,61,47,52,4,0,232,43,229,255,255,72,141,189,208,247,255,255,232,102,202,255,255,72,141,189,208,251,255,255,232,110,96,1,0,232,244,68,0,0,232,86,69,0,0,232,22,71,0,0,72,141,149,208,247,255,255,72,141,5,157,244,3,0,72,137,68,36,16,72,141,5,45,244,3, 0,72,137,68,36,8,72,141,133,208,251,255,255,72,137,4,36,73,137,209,76,141,5,100,230,1,0,185,0,0,0,0,186,43,0,0,0,190,0,0,0,0,72,141,61,85,230,1,0,184,0,0,0,0,232,179,237,255,255,199,133,180,225,255,255,0,0,0,0,139,133,180,225,255,255,72,139,21,4,222, 3,0,72,139,77,248,72,51,10,116,5,232,220,113,1,0,201,195,85,72,137,229,102,137,125,252,15,183,69,252,193,224,8,137,194,15,183,69,252,102,193,232,8,9,208,15,183,192,201,195,85,72,137,229,72,131,236,16,137,125,252,139,5,63,51,4,0,133,192,117,124,199,5, 49,51,4,0,1,0,0,0,72,139,5,182,221,3,0,72,139,8,186,17,0,0,0,190,1,0,0,0,72,141,61,247,229,1,0,232,107,114,1,0,232,52,183,255,255,72,139,5,145,221,3,0,72,139,8,186,16,0,0,0,190,1,0,0,0,72,141,61,228,229,1,0,232,70,114,1,0,232,153,95,1,0,72,139,5,108, 221,3,0,72,139,8,186,10,0,0,0,190,1,0,0,0,72,141,61,208,229,1,0,232,33,114,1,0,139,125,252,232,191,113,1,0,191,1,0,0,0,232,67,113,1,0,85,72,137,229,72,131,236,16,72,137,125,248,72,141,61,177,229,1,0,184,0,0,0,0,232,180,236,255,255,72,141,5,145,70,4,0, 139,0,133,192,117,22,139,61,157,50,4,0,232,173,235,255,255,139,61,146,50,4,0,232,75,228,255,255,191,0,0,0,0,232,27,255,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,230,87,255,255,72,137,69,248,72,139,5,157,50,4,0,72,137, 69,240,235,34,72,139,69,240,72,139,64,8,72,59,69,248,117,9,199,69,228,1,0,0,0,235,25,72,139,69,240,72,139,0,72,137,69,240,72,131,125,240,0,117,215,199,69,228,0,0,0,0,139,69,228,201,195,85,72,137,229,72,131,236,32,72,137,125,232,191,16,0,0,0,232,169,113, 255,255,72,137,69,248,72,139,125,232,232,125,87,255,255,72,137,194,72,139,69,248,72,137,80,8,72,139,21,45,50,4,0,72,139,69,248,72,137,16,72,139,69,248,72,137,5,27,50,4,0,201,195,85,72,137,229,83,72,129,236,40,16,0,0,72,137,189,248,239,255,255,72,137, 181,240,239,255,255,72,139,5,40,220,3,0,72,139,16,72,137,85,232,49,210,72,199,133,0,240,255,255,0,0,0,0,199,133,36,240,255,255,0,0,0,0,72,139,189,240,239,255,255,190,47,0,0,0,232,37,114,1,0,72,137,133,24,240,255,255,72,131,189,24,240,255,255,0,116,9, 72,255,133,24,240,255,255,235,14,72,139,133,240,239,255,255,72,137,133,24,240,255,255,72,139,189,240,239,255,255,232,216,254,255,255,133,192,116,39,72,139,181,240,239,255,255,72,141,61,75,228,1,0,184,0,0,0,0,232,95,74,0,0,199,133,236,239,255,255,1,0, 0,0,233,140,5,0,0,199,133,40,240,255,255,0,0,0,0,72,139,133,24,240,255,255,72,137,133,16,240,255,255,233,138,1,0,0,72,139,133,16,240,255,255,15,182,0,136,133,47,240,255,255,128,189,47,240,255,255,47,126,9,128,189,47,240,255,255,57,126,45,128,189,47,240, 255,255,64,126,9,128,189,47,240,255,255,90,126,27,128,189,47,240,255,255,96,126,9,128,189,47,240,255,255,122,126,9,128,189,47,240,255,255,95,117,34,139,133,40,240,255,255,72,99,208,15,182,133,47,240,255,255,136,132,21,0,252,255,255,255,133,40,240,255, 255,233,8,1,0,0,128,189,47,240,255,255,126,15,133,141,0,0,0,72,139,133,16,240,255,255,72,255,192,15,182,0,132,192,117,124,72,199,192,255,255,255,255,72,131,248,255,116,39,72,199,194,255,255,255,255,139,133,40,240,255,255,72,152,72,141,189,0,252,255,255, 72,1,199,72,141,53,108,227,1,0,232,174,110,1,0,235,30,139,133,40,240,255,255,72,152,72,141,189,0,252,255,255,72,1,199,72,141,53,76,227,1,0,232,179,4,0,0,139,133,40,240,255,255,72,152,72,141,189,0,252,255,255,72,1,199,232,159,112,1,0,137,194,139,133,40, 240,255,255,141,4,2,137,133,40,240,255,255,235,110,15,190,149,47,240,255,255,72,199,198,255,255,255,255,139,133,40,240,255,255,72,152,72,141,189,0,252,255,255,72,1,199,65,137,208,72,141,13,250,226,1,0,72,137,242,190,0,0,0,0,184,0,0,0,0,232,22,110,1,0, 139,133,40,240,255,255,72,152,72,141,189,0,252,255,255,72,1,199,232,57,112,1,0,137,194,139,133,40,240,255,255,141,4,2,137,133,40,240,255,255,199,133,36,240,255,255,1,0,0,0,72,139,133,16,240,255,255,72,255,192,72,137,133,16,240,255,255,129,189,40,240, 255,255,224,3,0,0,127,18,72,139,133,16,240,255,255,15,182,0,132,192,15,133,88,254,255,255,139,133,40,240,255,255,72,152,198,132,5,0,252,255,255,0,131,189,36,240,255,255,0,15,132,129,0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,51,72,199,195,255, 255,255,255,72,141,189,0,252,255,255,232,178,111,1,0,72,141,80,1,72,141,133,0,252,255,255,72,141,120,6,72,141,181,0,252,255,255,72,137,217,232,72,109,1,0,235,39,72,141,189,0,252,255,255,232,134,111,1,0,72,141,80,1,72,141,133,0,252,255,255,72,141,120, 6,72,141,181,0,252,255,255,232,142,3,0,0,72,141,189,0,252,255,255,186,6,0,0,0,72,141,53,247,225,1,0,232,93,110,1,0,235,24,72,141,189,0,252,255,255,186,232,3,0,0,72,141,53,228,225,1,0,232,11,109,1,0,72,141,133,16,240,255,255,72,141,141,32,244,255,255, 72,139,181,240,239,255,255,72,139,189,248,239,255,255,199,4,36,1,0,0,0,65,185,232,3,0,0,73,137,192,72,141,21,228,237,3,0,232,89,111,251,255,137,133,32,240,255,255,131,189,32,240,255,255,0,15,137,91,1,0,0,72,141,133,16,240,255,255,72,141,141,32,244,255, 255,72,139,181,240,239,255,255,72,139,189,248,239,255,255,199,4,36,1,0,0,0,65,185,232,3,0,0,73,137,192,72,141,21,160,237,3,0,232,14,111,251,255,137,133,32,240,255,255,131,189,32,240,255,255,0,15,137,16,1,0,0,72,139,181,240,239,255,255,72,141,189,16,248, 255,255,186,232,3,0,0,232,151,110,1,0,198,133,246,251,255,255,0,72,141,189,16,248,255,255,186,232,3,0,0,72,141,53,195,206,1,0,232,62,108,1,0,72,141,189,16,248,255,255,232,96,110,1,0,72,137,194,184,232,3,0,0,72,137,193,72,41,209,72,137,202,72,139,181, 24,240,255,255,72,141,189,16,248,255,255,185,232,3,0,0,232,21,108,1,0,198,133,247,251,255,255,0,72,141,133,16,240,255,255,72,141,141,32,244,255,255,72,141,181,16,248,255,255,72,139,189,248,239,255,255,199,4,36,1,0,0,0,65,185,232,3,0,0,73,137,192,72,141, 21,219,236,3,0,232,80,110,251,255,137,133,32,240,255,255,131,189,32,240,255,255,0,121,86,72,141,133,16,240,255,255,72,141,141,32,244,255,255,72,141,181,16,248,255,255,72,139,189,248,239,255,255,199,4,36,1,0,0,0,65,185,232,3,0,0,73,137,192,72,141,21,155, 236,3,0,232,9,110,251,255,137,133,32,240,255,255,131,189,32,240,255,255,0,121,15,199,133,236,239,255,255,0,0,0,0,233,107,1,0,0,139,189,32,240,255,255,232,186,107,1,0,72,141,189,32,244,255,255,232,112,82,255,255,72,137,199,232,71,80,255,255,72,141,181, 32,244,255,255,72,141,189,16,248,255,255,186,232,3,0,0,232,104,109,1,0,198,133,246,251,255,255,0,72,141,189,16,248,255,255,186,232,3,0,0,72,141,53,148,205,1,0,232,15,107,1,0,72,141,189,16,248,255,255,232,49,109,1,0,72,137,194,184,232,3,0,0,72,137,193, 72,41,209,72,137,202,72,139,181,16,240,255,255,72,141,189,16,248,255,255,185,232,3,0,0,232,230,106,1,0,198,133,247,251,255,255,0,72,141,189,16,248,255,255,190,10,0,0,0,232,64,107,1,0,72,137,133,8,240,255,255,72,131,189,8,240,255,255,0,117,56,232,36,107, 1,0,72,141,181,16,248,255,255,72,137,194,72,141,61,206,118,1,0,184,0,0,0,0,232,91,69,0,0,72,141,61,134,223,3,0,232,134,79,255,255,199,133,236,239,255,255,0,0,0,0,235,127,72,141,181,0,252,255,255,72,139,189,8,240,255,255,232,234,106,1,0,72,137,133,0,240, 255,255,72,131,189,0,240,255,255,0,117,48,72,141,181,0,252,255,255,72,141,61,35,223,1,0,184,0,0,0,0,232,7,69,0,0,72,141,61,50,223,3,0,232,50,79,255,255,199,133,236,239,255,255,0,0,0,0,235,43,72,139,133,0,240,255,255,255,208,72,141,61,17,223,3,0,232,17, 79,255,255,72,139,189,240,239,255,255,232,134,249,255,255,199,133,236,239,255,255,1,0,0,0,139,133,236,239,255,255,72,139,21,1,214,3,0,72,139,77,232,72,51,10,116,5,232,217,105,1,0,72,129,196,40,16,0,0,91,201,195,85,72,137,229,72,131,236,16,72,137,125, 248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,183,105,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,72,139,117,240,72,139,125,248,232,101, 105,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,141,5,42,223,3,0,72,137,69,248,72,139,69,248,72,139,0,72,59,69,232,116,79,72,139,69,248,72,139,64,8,72,133,192,116,14,72,139,69,248,72,139,64,8,72,137,69,248,235,216,191,16,0,0,0,232,121,106, 255,255,72,137,194,72,139,69,248,72,137,80,8,72,139,69,248,72,139,80,8,72,139,69,232,72,137,2,72,139,69,248,72,139,64,8,72,199,64,8,0,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,232,65,99,251,255,137,69,252,199,69,248,0,0, 0,0,72,141,5,162,222,3,0,72,137,69,240,235,38,72,139,69,240,72,139,0,72,139,117,224,72,139,125,232,255,208,137,69,248,131,125,248,0,117,19,72,139,69,240,72,139,64,8,72,137,69,240,72,131,125,240,0,117,211,139,125,252,232,25,99,251,255,139,69,248,201,195, 85,72,137,229,72,129,236,176,4,0,0,72,137,189,104,251,255,255,72,137,181,96,251,255,255,72,139,5,154,212,3,0,72,139,16,72,137,85,248,49,210,72,139,141,104,251,255,255,72,141,189,16,252,255,255,76,141,5,116,233,3,0,72,141,21,96,221,1,0,190,232,3,0,0,184, 0,0,0,0,232,86,106,1,0,72,141,181,16,252,255,255,72,141,189,16,252,255,255,232,33,34,0,0,72,141,181,112,251,255,255,72,141,189,16,252,255,255,232,66,106,1,0,133,192,121,62,72,139,141,104,251,255,255,72,141,189,16,252,255,255,76,141,5,38,233,3,0,72,141, 21,11,221,1,0,190,232,3,0,0,184,0,0,0,0,232,1,106,1,0,72,141,181,16,252,255,255,72,141,189,16,252,255,255,232,204,33,0,0,72,141,189,16,252,255,255,190,10,0,0,0,232,87,104,1,0,72,137,133,0,252,255,255,72,131,189,0,252,255,255,0,117,86,232,59,104,1,0,72, 141,181,16,252,255,255,72,137,194,72,141,61,229,115,1,0,184,0,0,0,0,232,114,66,0,0,232,27,104,1,0,72,137,193,72,139,5,181,211,3,0,72,139,56,72,141,149,16,252,255,255,72,141,53,140,220,1,0,184,0,0,0,0,232,62,104,1,0,199,133,92,251,255,255,1,0,0,0,235, 48,72,139,189,0,252,255,255,72,141,53,130,220,1,0,232,227,103,1,0,72,137,133,8,252,255,255,72,139,189,96,251,255,255,72,139,133,8,252,255,255,255,208,137,133,92,251,255,255,139,133,92,251,255,255,72,139,21,73,211,3,0,72,139,77,248,72,51,10,116,5,232, 33,103,1,0,201,195,85,72,137,229,72,141,5,142,52,4,0,72,139,0,201,195,85,72,137,229,72,141,5,118,52,4,0,72,139,0,201,195,85,72,137,229,72,141,5,6,41,4,0,201,195,85,72,137,229,72,141,5,57,52,4,0,201,195,85,72,137,229,72,141,5,180,230,3,0,201,195,85,72, 137,229,72,141,5,23,52,4,0,201,195,85,72,137,229,72,141,5,30,52,4,0,201,195,85,72,137,229,72,141,5,245,51,4,0,201,195,85,72,137,229,72,141,5,16,52,4,0,201,195,85,72,137,229,137,125,236,199,69,252,0,0,0,0,72,141,5,1,233,3,0,72,137,69,240,235,33,72,139, 69,240,72,131,192,24,139,0,59,69,236,126,10,72,139,69,240,72,137,69,224,235,25,255,69,252,72,131,69,240,24,131,125,252,4,118,217,72,141,5,69,233,3,0,72,137,69,224,72,139,69,224,201,195,85,72,137,229,72,131,236,16,137,125,252,139,125,252,232,154,255,255, 255,139,0,201,195,85,72,137,229,72,131,236,16,137,125,252,139,125,252,232,131,255,255,255,139,64,12,201,195,85,72,137,229,72,131,236,16,137,125,252,139,125,252,232,107,255,255,255,139,64,16,201,195,85,72,137,229,72,131,236,16,137,125,252,139,125,252, 232,83,255,255,255,139,64,20,201,195,85,72,137,229,83,72,129,236,40,4,0,0,72,137,189,232,251,255,255,72,137,181,224,251,255,255,72,139,5,235,209,3,0,72,139,16,72,137,85,232,49,210,72,141,133,240,251,255,255,72,141,141,0,252,255,255,72,139,181,224,251, 255,255,72,139,189,232,251,255,255,199,4,36,0,0,0,0,65,185,232,3,0,0,73,137,192,72,141,21,127,122,1,0,232,23,45,0,0,137,133,252,251,255,255,131,189,252,251,255,255,0,120,56,139,189,252,251,255,255,232,220,101,1,0,72,141,189,0,252,255,255,232,146,76,255, 255,72,137,195,72,139,189,240,251,255,255,232,131,76,255,255,72,137,198,72,137,218,191,0,0,0,0,232,99,54,255,255,235,24,72,139,181,224,251,255,255,72,141,61,83,127,1,0,184,0,0,0,0,232,195,67,0,0,72,139,5,68,209,3,0,72,139,85,232,72,51,16,116,5,232,28, 101,1,0,72,129,196,40,4,0,0,91,201,195,85,72,137,229,83,72,131,236,104,72,137,125,184,72,137,117,176,137,85,172,72,137,77,160,72,139,85,160,139,117,172,191,0,0,0,0,232,158,206,254,255,72,139,0,72,137,69,208,139,69,172,131,232,2,137,69,156,199,69,152, 86,85,85,85,139,69,152,247,109,156,137,209,139,69,156,193,248,31,137,202,41,194,137,208,137,69,228,72,139,85,160,139,117,172,191,1,0,0,0,232,224,205,254,255,243,15,44,208,72,141,5,61,58,4,0,137,16,139,85,228,137,208,1,192,1,208,131,192,2,59,69,172,116, 17,72,141,61,211,217,1,0,184,0,0,0,0,232,56,71,0,0,199,69,236,0,0,0,0,233,117,1,0,0,199,69,224,0,0,0,0,139,69,236,137,194,72,137,208,72,1,192,72,1,208,72,141,20,197,0,0,0,0,72,141,5,189,230,3,0,72,141,4,2,139,64,8,137,69,220,139,69,236,137,194,72,137, 208,72,1,192,72,1,208,72,141,20,197,0,0,0,0,72,141,5,150,230,3,0,72,141,4,2,139,64,4,137,69,216,199,69,232,1,0,0,0,235,83,139,85,232,137,208,1,192,1,208,141,120,4,72,139,85,160,139,117,172,232,134,205,254,255,72,137,194,139,69,220,72,152,72,57,194,127, 43,139,85,232,255,194,137,208,1,192,141,60,16,72,139,85,160,139,117,172,232,97,205,254,255,72,137,194,139,69,216,72,152,72,57,194,127,6,139,69,232,137,69,224,255,69,232,139,69,232,59,69,228,124,165,139,93,236,139,85,224,137,208,1,192,1,208,141,120,2, 72,139,85,160,139,117,172,232,40,205,254,255,137,193,137,218,72,137,208,72,1,192,72,1,208,72,141,20,197,0,0,0,0,72,141,5,241,229,3,0,72,141,4,2,137,72,12,139,93,236,139,85,224,255,194,137,208,1,192,141,60,16,72,139,85,160,139,117,172,232,234,204,254, 255,137,193,137,218,72,137,208,72,1,192,72,1,208,72,141,20,197,0,0,0,0,72,141,5,195,229,3,0,72,141,4,2,137,8,139,93,236,139,85,224,137,208,1,192,1,208,141,120,4,72,139,85,160,139,117,172,232,173,204,254,255,137,193,137,218,72,137,208,72,1,192,72,1,208, 72,141,20,197,0,0,0,0,72,141,5,134,229,3,0,72,141,4,2,137,72,4,255,69,236,131,125,236,5,15,134,129,254,255,255,72,141,5,147,56,4,0,72,139,0,72,137,69,200,235,58,72,139,69,200,72,139,112,8,191,0,0,0,0,232,200,249,255,255,133,192,117,25,72,139,69,200,72, 139,112,8,72,141,61,26,216,1,0,184,0,0,0,0,232,129,61,0,0,72,139,69,200,72,139,0,72,137,69,200,72,131,125,200,0,117,191,72,139,5,146,36,4,0,72,137,69,200,235,28,72,139,69,200,72,139,112,8,72,139,125,208,232,143,252,255,255,72,139,69,200,72,139,0,72,137, 69,200,72,131,125,200,0,117,221,72,139,61,98,36,4,0,232,117,33,0,0,72,199,5,82,36,4,0,0,0,0,0,72,139,5,83,36,4,0,72,137,69,200,235,86,232,228,209,254,255,72,137,69,192,72,139,69,200,72,139,120,8,232,105,100,1,0,72,137,194,72,139,69,200,72,139,112,8,72, 139,125,192,232,77,211,254,255,72,139,125,192,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,232,97,236,254,255,72,139,125,192,232,217,209,254,255,72,139,69,200,72,139,0,72,137,69,200,72,131,125,200,0,117,163,72,139,61,233,35,4,0,232,244,32,0,0,72,199,5,217,35, 4,0,0,0,0,0,72,131,196,104,91,201,195,85,72,137,229,72,131,236,48,137,125,236,72,137,117,224,72,141,5,72,47,4,0,199,0,0,0,0,0,72,141,5,39,51,4,0,199,0,0,0,0,0,232,90,137,255,255,72,139,69,224,72,139,56,232,34,2,0,0,199,69,248,0,0,0,0,139,69,248,137,69, 252,235,42,139,69,252,72,152,72,193,224,3,72,3,69,224,72,139,56,72,141,53,230,214,1,0,232,147,99,1,0,133,192,117,7,199,69,248,1,0,0,0,255,69,252,139,69,252,59,69,236,124,206,131,125,248,0,117,5,232,82,190,255,255,131,125,248,0,117,5,232,221,43,0,0,72, 139,117,224,72,131,198,8,139,125,236,255,207,232,100,3,0,0,133,192,116,12,199,69,220,1,0,0,0,233,201,0,0,0,232,117,20,0,0,72,141,5,179,54,4,0,139,0,133,192,117,10,139,5,15,35,4,0,133,192,116,48,72,139,21,204,214,3,0,72,139,5,21,205,3,0,72,139,56,76,141, 5,44,226,3,0,72,141,13,28,226,3,0,72,141,53,90,214,1,0,184,0,0,0,0,232,151,97,1,0,139,5,213,34,4,0,133,192,116,9,199,69,220,0,0,0,0,235,106,72,141,5,65,54,4,0,72,139,0,72,139,56,232,28,229,255,255,133,192,116,9,199,69,220,1,0,0,0,235,75,72,141,5,38,46, 4,0,139,0,133,192,116,24,72,141,53,29,50,4,0,72,141,61,22,46,4,0,232,223,247,255,255,137,69,220,235,38,139,5,146,34,4,0,133,192,116,10,232,217,152,255,255,137,69,220,235,18,232,175,78,1,0,232,196,166,255,255,232,119,152,255,255,137,69,220,139,69,220, 201,195,85,72,137,229,83,72,131,236,56,72,137,125,216,72,137,117,208,137,85,204,72,137,77,192,199,69,236,0,0,0,0,235,80,72,139,69,192,15,182,0,132,192,116,77,139,69,236,72,152,72,193,224,2,72,137,195,72,3,93,208,72,141,117,224,72,139,125,192,186,10,0, 0,0,232,83,98,1,0,137,3,72,139,69,224,72,59,69,192,116,31,255,69,236,72,139,69,224,72,133,192,116,19,72,139,69,224,72,255,192,72,137,69,192,139,69,236,59,69,204,124,168,72,139,85,216,139,69,236,137,2,72,131,196,56,91,201,195,85,72,137,229,137,125,236, 72,137,117,224,199,69,252,0,0,0,0,131,125,236,0,121,9,199,69,220,255,255,255,255,235,44,131,125,236,0,117,23,199,69,220,0,0,0,0,235,29,72,139,69,224,139,0,1,69,252,72,131,69,224,4,255,77,236,131,125,236,255,117,233,139,69,252,137,69,220,139,69,220,201, 195,85,72,137,229,72,129,236,144,8,0,0,72,137,189,120,247,255,255,72,139,5,117,203,3,0,72,139,16,72,137,85,248,49,210,72,139,181,120,247,255,255,72,141,189,16,252,255,255,186,232,3,0,0,232,122,97,1,0,198,69,247,0,72,141,189,16,252,255,255,190,47,0,0, 0,232,107,97,1,0,72,137,133,16,248,255,255,72,131,189,16,248,255,255,0,15,132,153,0,0,0,72,139,133,16,248,255,255,198,0,0,72,141,189,16,252,255,255,190,47,0,0,0,232,59,97,1,0,72,137,133,16,248,255,255,72,131,189,16,248,255,255,0,116,83,72,139,149,16, 248,255,255,72,141,133,16,252,255,255,72,137,209,72,41,193,72,137,200,72,137,194,72,141,181,16,252,255,255,72,141,189,32,248,255,255,185,232,3,0,0,232,202,94,1,0,72,139,149,16,248,255,255,72,141,133,16,252,255,255,72,137,209,72,41,193,72,137,200,198, 132,5,32,248,255,255,0,235,50,72,141,189,32,248,255,255,186,3,0,0,0,72,141,53,196,223,1,0,232,183,95,1,0,235,24,72,141,189,32,248,255,255,186,2,0,0,0,72,141,53,6,116,1,0,232,157,95,1,0,72,141,181,32,248,255,255,72,141,189,16,252,255,255,186,202,3,0,0, 232,135,96,1,0,198,69,218,0,72,141,189,16,252,255,255,186,232,3,0,0,72,141,53,123,223,1,0,232,49,94,1,0,72,141,181,128,247,255,255,72,141,189,16,252,255,255,232,52,96,1,0,133,192,120,27,72,141,189,16,252,255,255,232,48,69,255,255,72,137,194,72,141,5, 136,51,4,0,72,137,16,235,25,72,141,189,32,248,255,255,232,21,69,255,255,72,137,194,72,141,5,109,51,4,0,72,137,16,72,139,5,243,201,3,0,72,139,85,248,72,51,16,116,5,232,203,93,1,0,201,195,85,72,137,229,72,129,236,32,4,0,0,137,189,252,251,255,255,72,137, 181,240,251,255,255,72,139,5,196,201,3,0,72,139,16,72,137,85,248,49,210,233,89,16,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,222,222,1,0,232,174,95,1,0,133,192,117,71,131,189,252,251,255,255,1,126,62,72,139,133,240,251,255,255,72,131,192,8,72, 139,56,72,141,21,114,31,4,0,72,141,53,115,114,1,0,184,0,0,0,0,232,105,95,1,0,133,192,126,20,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,248,15,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,131,222,1,0,232,77,95,1,0,133,192,117,81, 131,189,252,251,255,255,1,126,72,72,139,133,240,251,255,255,72,131,192,8,72,139,8,186,4,0,0,0,72,141,53,64,31,4,0,72,141,61,97,223,3,0,232,163,252,255,255,139,5,86,223,3,0,133,192,15,132,77,15,0,0,131,173,252,251,255,255,2,72,131,133,240,251,255,255, 16,233,141,15,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,36,222,1,0,232,226,94,1,0,133,192,117,81,131,189,252,251,255,255,1,126,72,72,139,133,240,251,255,255,72,131,192,8,72,139,8,186,4,0,0,0,72,141,53,229,30,4,0,72,141,61,250,222,3,0,232,56, 252,255,255,139,5,239,222,3,0,133,192,15,132,226,14,0,0,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,34,15,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,198,221,1,0,232,119,94,1,0,133,192,117,119,131,189,252,251,255,255,1,126,110, 72,139,133,240,251,255,255,72,131,192,8,72,139,8,186,4,0,0,0,72,141,53,106,30,4,0,72,141,61,139,222,3,0,232,205,251,255,255,72,139,133,240,251,255,255,72,131,192,8,72,139,8,186,4,0,0,0,72,141,53,84,30,4,0,72,141,61,105,222,3,0,232,167,251,255,255,139, 5,94,222,3,0,133,192,15,132,81,14,0,0,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,145,14,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,63,221,1,0,232,230,93,1,0,133,192,116,35,72,139,133,240,251,255,255,72,139,56,72,141,53,47,221, 1,0,232,204,93,1,0,133,192,117,54,131,189,252,251,255,255,1,126,45,72,139,133,240,251,255,255,72,131,192,8,72,139,56,232,204,91,1,0,137,5,144,29,4,0,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,39,14,0,0,72,139,133,240,251,255,255,72,139, 56,72,141,53,233,220,1,0,232,124,93,1,0,133,192,117,29,199,5,92,29,4,0,1,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,240,13,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,188,220,1,0,232,69,93,1,0,133,192,117,46,72,139,133,240, 251,255,255,72,131,192,8,72,139,56,232,78,91,1,0,137,199,232,119,177,255,255,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,168,13,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,127,220,1,0,232,253,92,1,0,133,192,117,77,131,189,252,251, 255,255,1,126,68,72,139,133,240,251,255,255,72,131,192,8,72,139,56,232,247,90,1,0,102,15,40,200,242,15,16,5,35,234,1,0,242,15,89,193,242,15,44,208,72,141,5,220,39,4,0,137,16,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,65,13,0,0,72,139, 133,240,251,255,255,72,139,56,72,141,53,36,220,1,0,232,150,92,1,0,133,192,117,39,199,5,198,220,3,0,0,0,0,0,199,5,196,220,3,0,0,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,0,13,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,234, 219,1,0,232,85,92,1,0,133,192,117,39,199,5,129,220,3,0,0,0,0,0,199,5,127,220,3,0,0,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,191,12,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,176,219,1,0,232,20,92,1,0,133,192,116,26,72,139, 133,240,251,255,255,72,139,56,72,141,53,159,219,1,0,232,250,91,1,0,133,192,117,63,199,5,42,220,3,0,0,0,0,0,139,5,36,220,3,0,137,5,26,220,3,0,199,5,28,220,3,0,0,0,0,0,139,5,22,220,3,0,137,5,12,220,3,0,255,141,252,251,255,255,72,131,133,240,251,255,255, 8,233,76,12,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,79,219,1,0,232,161,91,1,0,133,192,117,29,199,5,201,218,3,0,0,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,21,12,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,34,219, 1,0,232,106,91,1,0,133,192,117,29,199,5,142,218,3,0,0,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,222,11,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,246,218,1,0,232,51,91,1,0,133,192,117,41,199,5,87,218,3,0,0,0,0,0,139,5,81, 218,3,0,137,5,79,218,3,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,155,11,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,187,218,1,0,232,240,90,1,0,133,192,117,72,72,139,133,240,251,255,255,72,131,192,8,72,139,8,186,16,0,0,0,72,141, 53,28,218,3,0,72,141,61,1,218,3,0,232,79,248,255,255,139,5,246,217,3,0,133,192,15,132,249,10,0,0,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,57,11,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,100,218,1,0,232,142,90,1,0,133,192,117, 81,131,189,252,251,255,255,1,126,72,72,139,133,240,251,255,255,72,131,192,8,72,139,8,186,16,0,0,0,72,141,53,241,217,3,0,72,141,61,146,217,3,0,232,228,247,255,255,139,5,135,217,3,0,133,192,15,132,142,10,0,0,131,173,252,251,255,255,2,72,131,133,240,251, 255,255,16,233,206,10,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,5,218,1,0,232,35,90,1,0,133,192,117,119,131,189,252,251,255,255,1,126,110,72,139,133,240,251,255,255,72,131,192,8,72,139,8,186,16,0,0,0,72,141,53,70,217,3,0,72,141,61,43,217,3,0, 232,121,247,255,255,72,139,133,240,251,255,255,72,131,192,8,72,139,8,186,16,0,0,0,72,141,53,96,217,3,0,72,141,61,1,217,3,0,232,83,247,255,255,139,5,246,216,3,0,133,192,15,132,253,9,0,0,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,61,10, 0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,125,217,1,0,232,146,89,1,0,133,192,117,71,131,189,252,251,255,255,1,126,62,72,139,133,240,251,255,255,72,131,192,8,72,139,48,72,141,5,2,45,4,0,72,139,56,232,137,21,0,0,72,137,194,72,141,5,240,44,4,0, 72,137,16,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,220,9,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,34,217,1,0,232,49,89,1,0,133,192,117,32,72,141,5,16,218,3,0,199,0,0,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255, 8,233,162,9,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,27,122,1,0,232,247,88,1,0,133,192,117,32,72,141,5,214,217,3,0,199,0,1,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,104,9,0,0,72,139,133,240,251,255,255,72,139,56,72,141, 53,186,216,1,0,232,189,88,1,0,133,192,117,62,72,139,133,240,251,255,255,72,131,192,8,72,139,48,72,141,5,46,44,4,0,72,139,56,232,189,20,0,0,72,137,194,72,141,5,28,44,4,0,72,137,16,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,16,9,0,0,72, 139,133,240,251,255,255,72,139,56,72,141,53,108,216,1,0,232,101,88,1,0,133,192,117,62,131,189,252,251,255,255,1,126,53,72,139,133,240,251,255,255,72,131,192,8,72,139,48,72,139,61,21,24,4,0,232,95,20,0,0,72,137,5,9,24,4,0,131,173,252,251,255,255,2,72, 131,133,240,251,255,255,16,233,184,8,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,58,121,1,0,232,13,88,1,0,133,192,117,71,131,189,252,251,255,255,1,126,62,72,139,133,240,251,255,255,72,131,192,8,72,139,48,72,141,5,109,43,4,0,72,139,56,232,4,20, 0,0,72,137,194,72,141,5,91,43,4,0,72,137,16,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,87,8,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,190,215,1,0,232,172,87,1,0,133,192,116,26,72,139,133,240,251,255,255,72,139,56,72,141,53,175, 215,1,0,232,146,87,1,0,133,192,117,66,131,189,252,251,255,255,1,126,57,72,139,133,240,251,255,255,72,131,192,8,72,139,56,232,146,85,1,0,137,199,232,242,238,255,255,137,194,72,141,5,196,34,4,0,137,16,131,173,252,251,255,255,2,72,131,133,240,251,255,255, 16,233,225,7,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,89,215,1,0,232,54,87,1,0,133,192,116,26,72,139,133,240,251,255,255,72,139,56,72,141,53,74,215,1,0,232,28,87,1,0,133,192,117,67,131,189,252,251,255,255,1,126,58,72,139,133,240,251,255,255, 72,131,192,8,72,139,48,186,99,0,0,0,72,141,61,191,214,3,0,232,8,87,1,0,198,5,22,215,3,0,0,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,106,7,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,247,214,1,0,232,191,86,1,0,133,192,117,67,131, 189,252,251,255,255,1,126,58,72,139,133,240,251,255,255,72,131,192,8,72,139,48,186,9,0,0,0,72,141,61,198,214,3,0,232,171,86,1,0,198,5,195,214,3,0,0,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,13,7,0,0,72,139,133,240,251,255,255,72,139, 56,72,141,53,167,214,1,0,232,98,86,1,0,133,192,117,40,72,141,5,209,41,4,0,139,0,141,80,1,72,141,5,197,41,4,0,137,16,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,203,6,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,110,214,1,0,232,32,86, 1,0,133,192,117,29,199,5,244,21,4,0,1,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,148,6,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,64,214,1,0,232,233,85,1,0,133,192,117,71,131,189,252,251,255,255,1,126,62,72,139,133,240,251, 255,255,72,131,192,8,72,139,56,72,141,21,37,33,4,0,72,141,53,174,104,1,0,184,0,0,0,0,232,164,85,1,0,133,192,126,20,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,51,6,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,226,213,1,0,232,136, 85,1,0,133,192,117,32,72,141,5,239,40,4,0,199,0,1,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,249,5,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,180,213,1,0,232,78,85,1,0,133,192,117,50,72,141,5,177,40,4,0,199,0,1,0,0,0,72,141, 5,164,40,4,0,139,16,72,141,5,215,40,4,0,137,16,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,173,5,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,111,213,1,0,232,2,85,1,0,133,192,117,71,131,189,252,251,255,255,1,126,62,72,139,133,240,251, 255,255,72,131,192,8,72,139,56,72,141,21,58,40,4,0,72,141,53,199,103,1,0,184,0,0,0,0,232,189,84,1,0,133,192,126,20,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,76,5,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,23,213,1,0,232,161, 84,1,0,133,192,117,32,72,141,5,64,40,4,0,199,0,1,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,18,5,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,229,212,1,0,232,103,84,1,0,133,192,117,53,131,189,252,251,255,255,1,126,44,72,139, 133,240,251,255,255,72,131,192,8,72,139,16,72,141,5,151,39,4,0,72,137,16,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,195,4,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,158,212,1,0,232,24,84,1,0,133,192,117,67,131,189,252,251,255, 255,1,126,58,72,139,133,240,251,255,255,72,131,192,8,72,139,48,72,139,61,208,19,4,0,186,1,0,0,0,232,225,14,0,0,72,137,5,191,19,4,0,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,102,4,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,71, 212,1,0,232,187,83,1,0,133,192,117,29,199,5,159,19,4,0,1,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,47,4,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,25,212,1,0,232,132,83,1,0,133,192,117,73,131,189,252,251,255,255,1,126,64, 72,141,5,214,30,4,0,199,0,1,0,0,0,72,139,133,240,251,255,255,72,131,192,8,72,139,48,186,231,3,0,0,72,141,61,186,30,4,0,232,99,83,1,0,72,131,133,240,251,255,255,16,131,173,252,251,255,255,2,233,204,3,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53, 192,211,1,0,232,33,83,1,0,133,192,117,73,131,189,252,251,255,255,1,126,64,72,141,5,95,34,4,0,199,0,1,0,0,0,72,139,133,240,251,255,255,72,131,192,8,72,139,48,186,231,3,0,0,72,141,61,87,34,4,0,232,0,83,1,0,72,131,133,240,251,255,255,16,131,173,252,251, 255,255,2,233,105,3,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,105,211,1,0,232,190,82,1,0,133,192,117,60,199,5,166,18,4,0,1,0,0,0,72,141,5,23,38,4,0,199,0,1,0,0,0,72,141,5,10,38,4,0,139,16,72,141,5,61,38,4,0,137,16,255,141,252,251,255,255,72, 131,133,240,251,255,255,8,233,19,3,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,26,211,1,0,232,104,82,1,0,133,192,117,32,72,141,5,199,37,4,0,199,0,1,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,217,2,0,0,72,139,133,240,251,255, 255,72,139,56,72,141,53,237,210,1,0,232,46,82,1,0,133,192,116,26,72,139,133,240,251,255,255,72,139,56,72,141,53,215,210,1,0,232,20,82,1,0,133,192,117,29,199,5,48,209,3,0,1,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,136,2,0,0,72,139, 133,240,251,255,255,72,139,56,72,141,53,170,210,1,0,232,221,81,1,0,133,192,117,29,199,5,249,208,3,0,0,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,81,2,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,120,210,1,0,232,166,81,1,0,133, 192,117,29,199,5,198,208,3,0,1,0,0,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,233,26,2,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,74,210,1,0,232,111,81,1,0,133,192,116,26,72,139,133,240,251,255,255,72,139,56,72,141,53,60,210,1,0,232, 85,81,1,0,133,192,117,72,72,139,133,240,251,255,255,72,131,192,8,72,139,8,186,4,0,0,0,72,141,53,49,17,4,0,72,141,61,106,209,3,0,232,180,238,255,255,139,5,95,209,3,0,133,192,15,132,94,1,0,0,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,158, 1,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,230,209,1,0,232,243,80,1,0,133,192,116,26,72,139,133,240,251,255,255,72,139,56,72,141,53,217,209,1,0,232,217,80,1,0,133,192,117,72,72,139,133,240,251,255,255,72,131,192,8,72,139,8,186,4,0,0,0,72,141, 53,197,16,4,0,72,141,61,242,208,3,0,232,56,238,255,255,139,5,231,208,3,0,133,192,15,132,226,0,0,0,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,233,34,1,0,0,72,139,133,240,251,255,255,72,139,56,72,141,53,132,209,1,0,232,119,80,1,0,133,192,116, 26,72,139,133,240,251,255,255,72,139,56,72,141,53,116,209,1,0,232,93,80,1,0,133,192,117,112,131,189,252,251,255,255,1,126,103,72,139,133,240,251,255,255,72,131,192,8,72,139,8,186,4,0,0,0,72,141,53,48,16,4,0,72,141,61,105,208,3,0,232,179,237,255,255,72, 139,133,240,251,255,255,72,131,192,8,72,139,8,186,4,0,0,0,72,141,53,26,16,4,0,72,141,61,71,208,3,0,232,141,237,255,255,139,5,60,208,3,0,133,192,116,59,131,173,252,251,255,255,2,72,131,133,240,251,255,255,16,235,126,72,139,133,240,251,255,255,72,139,56, 72,141,53,38,195,1,0,232,211,79,1,0,133,192,117,16,255,141,252,251,255,255,72,131,133,240,251,255,255,8,235,84,199,133,8,252,255,255,0,0,0,0,235,51,72,139,5,166,185,3,0,72,139,48,139,133,8,252,255,255,137,192,72,141,20,197,0,0,0,0,72,141,5,92,195,3,0, 72,141,4,2,72,139,56,232,48,78,1,0,255,133,8,252,255,255,131,189,8,252,255,255,52,118,196,199,133,236,251,255,255,1,0,0,0,235,120,131,189,252,251,255,255,0,126,21,72,139,133,240,251,255,255,72,139,0,15,182,0,60,45,15,132,137,239,255,255,72,141,5,168, 26,4,0,139,0,133,192,117,58,72,141,5,155,26,4,0,199,0,10,0,0,0,235,43,72,139,133,240,251,255,255,72,139,48,72,139,61,242,14,4,0,232,60,11,0,0,72,137,5,230,14,4,0,255,141,252,251,255,255,72,131,133,240,251,255,255,8,131,189,252,251,255,255,0,127,204,199, 133,236,251,255,255,0,0,0,0,139,133,236,251,255,255,72,139,21,216,184,3,0,72,139,77,248,72,51,10,116,5,232,176,76,1,0,201,195,85,72,137,229,184,64,0,0,0,201,195,85,72,137,229,83,72,129,236,24,5,0,0,72,139,5,170,184,3,0,72,139,16,72,137,85,232,49,210, 199,133,220,251,255,255,0,0,0,0,199,133,216,251,255,255,0,0,0,0,72,141,5,246,33,4,0,72,139,0,72,139,48,72,141,189,0,252,255,255,186,202,3,0,0,232,149,78,1,0,198,69,202,0,72,141,189,0,252,255,255,186,232,3,0,0,72,141,53,130,207,1,0,232,63,76,1,0,72,141, 189,0,252,255,255,232,249,11,0,0,72,141,5,176,33,4,0,72,139,0,72,139,48,72,141,189,0,252,255,255,186,202,3,0,0,232,79,78,1,0,198,69,202,0,72,141,189,0,252,255,255,186,232,3,0,0,72,141,53,67,207,1,0,232,249,75,1,0,72,141,5,158,33,4,0,72,139,56,72,141, 181,0,252,255,255,232,38,10,0,0,72,137,194,72,141,5,133,33,4,0,72,137,16,139,5,188,13,4,0,133,192,15,133,178,0,0,0,199,133,252,251,255,255,0,0,0,0,235,63,139,141,252,251,255,255,72,99,193,72,141,20,133,0,0,0,0,72,141,5,192,13,4,0,72,141,4,2,139,0,141, 112,255,72,99,193,72,141,20,133,0,0,0,0,72,141,5,165,13,4,0,72,141,4,2,137,48,255,133,252,251,255,255,139,5,211,205,3,0,57,133,252,251,255,255,124,179,199,133,252,251,255,255,0,0,0,0,235,63,139,141,252,251,255,255,72,99,193,72,141,20,133,0,0,0,0,72,141, 5,119,13,4,0,72,141,4,2,139,0,141,112,255,72,99,193,72,141,20,133,0,0,0,0,72,141,5,92,13,4,0,72,141,4,2,137,48,255,133,252,251,255,255,139,5,126,205,3,0,57,133,252,251,255,255,124,179,199,133,252,251,255,255,0,0,0,0,235,63,139,141,252,251,255,255,72, 99,193,72,141,20,133,0,0,0,0,72,141,5,94,204,3,0,72,141,4,2,139,0,141,112,255,72,99,193,72,141,20,133,0,0,0,0,72,141,5,67,204,3,0,72,141,4,2,137,48,255,133,252,251,255,255,139,5,29,204,3,0,57,133,252,251,255,255,124,179,199,133,252,251,255,255,0,0,0, 0,235,63,139,141,252,251,255,255,72,99,193,72,141,20,133,0,0,0,0,72,141,5,69,204,3,0,72,141,4,2,139,0,141,112,255,72,99,193,72,141,20,133,0,0,0,0,72,141,5,42,204,3,0,72,141,4,2,137,48,255,133,252,251,255,255,139,5,192,203,3,0,57,133,252,251,255,255,124, 179,139,5,114,12,4,0,133,192,116,5,232,59,160,255,255,72,141,149,144,251,255,255,72,141,141,160,251,255,255,72,141,181,244,251,255,255,72,141,189,176,251,255,255,76,141,149,192,251,255,255,76,141,157,248,251,255,255,72,141,133,224,251,255,255,72,137, 68,36,16,72,141,133,228,251,255,255,72,137,68,36,8,72,141,133,232,251,255,255,72,137,4,36,73,137,209,73,137,200,72,137,241,72,137,250,76,137,214,76,137,223,232,93,131,255,255,139,5,79,204,3,0,133,192,120,91,139,5,69,204,3,0,137,133,240,251,255,255,199, 133,252,251,255,255,0,0,0,0,235,51,139,141,252,251,255,255,139,133,252,251,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5,238,11,4,0,72,141,4,2,139,16,72,99,193,137,148,133,176,251,255,255,255,133,252,251,255,255,139,133,252,251,255,255,59,133,240,251, 255,255,124,191,235,12,139,133,248,251,255,255,137,133,240,251,255,255,139,5,214,203,3,0,133,192,120,89,139,5,204,203,3,0,137,133,248,251,255,255,199,133,252,251,255,255,0,0,0,0,235,51,139,141,252,251,255,255,139,133,252,251,255,255,72,152,72,141,20, 133,0,0,0,0,72,141,5,93,11,4,0,72,141,4,2,139,16,72,99,193,137,148,133,192,251,255,255,255,133,252,251,255,255,139,133,248,251,255,255,57,133,252,251,255,255,124,191,139,5,127,203,3,0,133,192,120,91,139,5,117,203,3,0,137,133,236,251,255,255,199,133,252, 251,255,255,0,0,0,0,235,51,139,141,252,251,255,255,139,133,252,251,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5,42,11,4,0,72,141,4,2,139,16,72,99,193,137,148,133,144,251,255,255,255,133,252,251,255,255,139,133,252,251,255,255,59,133,236,251,255,255, 124,191,235,12,139,133,244,251,255,255,137,133,236,251,255,255,139,5,6,203,3,0,133,192,120,89,139,5,252,202,3,0,137,133,244,251,255,255,199,133,252,251,255,255,0,0,0,0,235,51,139,141,252,251,255,255,139,133,252,251,255,255,72,152,72,141,20,133,0,0,0, 0,72,141,5,153,10,4,0,72,141,4,2,139,16,72,99,193,137,148,133,160,251,255,255,255,133,252,251,255,255,139,133,244,251,255,255,57,133,252,251,255,255,124,191,72,141,141,16,251,255,255,72,141,149,216,251,255,255,72,141,181,80,251,255,255,72,141,189,220, 251,255,255,232,60,54,1,0,139,5,122,201,3,0,133,192,120,118,139,149,220,251,255,255,139,53,106,201,3,0,72,141,61,97,203,1,0,184,0,0,0,0,232,203,34,0,0,139,5,83,201,3,0,137,133,220,251,255,255,199,133,252,251,255,255,0,0,0,0,235,51,139,141,252,251,255, 255,139,133,252,251,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5,56,201,3,0,72,141,4,2,139,16,72,99,193,137,148,133,80,251,255,255,255,133,252,251,255,255,139,133,220,251,255,255,57,133,252,251,255,255,124,191,139,5,246,200,3,0,133,192,120,89,139,5, 236,200,3,0,137,133,216,251,255,255,199,133,252,251,255,255,0,0,0,0,235,51,139,141,252,251,255,255,139,133,252,251,255,255,72,152,72,141,20,133,0,0,0,0,72,141,5,21,201,3,0,72,141,4,2,139,16,72,99,193,137,148,133,16,251,255,255,255,133,252,251,255,255, 139,133,216,251,255,255,57,133,252,251,255,255,124,191,139,5,75,9,4,0,133,192,116,12,139,5,65,9,4,0,137,133,228,251,255,255,139,5,49,9,4,0,133,192,116,12,139,5,39,9,4,0,137,133,232,251,255,255,139,5,35,9,4,0,133,192,116,12,139,5,25,9,4,0,137,133,224, 251,255,255,139,133,224,251,255,255,139,149,228,251,255,255,139,141,232,251,255,255,139,181,244,251,255,255,139,189,248,251,255,255,76,141,133,160,251,255,255,76,141,149,176,251,255,255,68,139,157,240,251,255,255,72,141,157,192,251,255,255,137,68,36, 32,137,84,36,24,137,76,36,16,72,141,133,144,251,255,255,72,137,68,36,8,139,133,236,251,255,255,137,4,36,77,137,193,65,137,240,76,137,209,68,137,218,72,137,222,232,2,133,255,255,139,149,216,251,255,255,139,189,220,251,255,255,72,141,141,16,251,255,255, 72,141,181,80,251,255,255,65,184,0,0,0,0,232,153,52,1,0,72,139,5,124,178,3,0,72,139,85,232,72,51,16,116,5,232,84,70,1,0,72,129,196,24,5,0,0,91,201,195,85,72,137,229,72,129,236,240,3,0,0,72,139,5,82,178,3,0,72,139,16,72,137,85,248,49,210,72,139,5,66,178, 3,0,72,139,85,248,72,51,16,116,5,232,26,70,1,0,201,195,85,72,137,229,72,137,125,232,72,137,117,224,235,14,72,139,85,224,15,182,69,255,136,2,72,255,69,224,72,139,69,232,15,182,0,136,69,255,128,125,255,0,15,149,192,72,255,69,232,132,192,117,217,72,139, 69,224,198,0,0,201,195,85,72,137,229,72,137,125,232,72,137,117,224,235,14,72,139,85,224,15,182,69,255,136,2,72,255,69,224,72,139,69,232,15,182,0,136,69,255,128,125,255,0,15,149,192,72,255,69,232,132,192,117,217,72,139,69,224,198,0,0,201,195,85,72,137, 229,72,137,125,248,72,139,69,248,15,182,0,60,47,116,11,72,139,69,248,15,182,0,60,126,117,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,72,137,229,65,85,65,84,83,72,131,236,56,72,137,125,200,72,137,117,192,137,85,188,72,139,125,200, 232,124,71,1,0,72,131,248,1,117,11,72,139,69,200,15,182,0,60,126,116,29,72,139,125,200,186,2,0,0,0,72,141,53,161,200,1,0,232,92,71,1,0,133,192,15,133,18,1,0,0,72,141,61,197,178,1,0,232,10,70,1,0,72,137,69,216,72,131,125,216,0,15,132,70,1,0,0,72,199,192, 255,255,255,255,72,131,248,255,116,28,72,199,193,255,255,255,255,139,69,188,72,99,208,72,139,117,216,72,139,125,192,232,240,68,1,0,235,19,139,69,188,72,99,208,72,139,117,216,72,139,125,192,232,21,1,0,0,72,139,85,192,72,255,202,139,69,188,72,152,72,141, 4,2,198,0,0,72,139,125,192,232,219,70,1,0,72,199,192,255,255,255,255,72,131,248,255,116,73,72,139,125,192,232,197,70,1,0,73,199,197,255,255,255,255,139,69,188,72,99,216,72,139,125,192,232,175,70,1,0,72,41,195,76,139,101,200,73,255,196,72,139,125,192, 232,156,70,1,0,72,137,199,72,3,125,192,76,137,233,72,137,218,76,137,230,232,107,68,1,0,235,52,139,69,188,72,99,216,72,139,125,192,232,118,70,1,0,72,41,195,76,139,101,200,73,255,196,72,139,125,192,232,99,70,1,0,72,137,199,72,3,125,192,72,137,218,76,137, 230,232,111,0,0,0,72,139,85,192,72,255,202,139,69,188,72,152,72,141,4,2,198,0,0,235,79,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,193,255,255,255,255,139,69,188,72,99,208,72,139,117,200,72,139,125,192,232,249,67,1,0,235,19,139,69,188,72, 99,208,72,139,117,200,72,139,125,192,232,30,0,0,0,72,139,85,192,72,255,202,139,69,188,72,152,72,141,4,2,198,0,0,72,131,196,56,91,65,92,65,93,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72, 139,85,232,72,139,117,240,72,139,125,248,232,154,67,1,0,201,195,85,72,137,229,72,137,125,232,72,137,117,224,72,137,85,216,136,77,212,199,69,252,0,0,0,0,235,25,139,69,252,72,137,194,72,3,85,232,139,69,252,72,3,69,216,15,182,0,136,2,255,69,252,139,85,252, 72,139,69,224,72,255,200,72,57,194,115,29,139,69,252,72,3,69,216,15,182,0,132,192,116,15,139,69,252,72,3,69,216,15,182,0,58,69,212,117,187,139,69,252,72,3,69,232,198,0,0,131,125,252,0,116,30,139,69,252,72,3,69,216,15,182,0,132,192,116,16,139,69,252,72, 3,69,216,72,255,192,72,137,69,200,235,8,72,199,69,200,0,0,0,0,72,139,69,200,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,191,16,0,0,0,232,13,68,255,255,72,137,69,240,72,139,69,240,72,199,0,0,0,0,0,72,139,125,224,232,226, 68,1,0,72,141,120,1,232,236,67,255,255,72,137,194,72,139,69,240,72,137,80,8,72,199,192,255,255,255,255,72,131,248,255,116,26,72,199,194,255,255,255,255,72,139,69,240,72,139,120,8,72,139,117,224,232,129,66,1,0,235,17,72,139,69,240,72,139,120,8,72,139, 117,224,232,133,0,0,0,72,139,69,240,72,139,112,8,72,139,69,240,72,139,120,8,232,115,252,255,255,72,131,125,232,0,117,10,72,139,69,240,72,137,69,208,235,89,72,139,69,232,72,137,69,248,131,125,220,0,117,31,72,139,69,248,72,139,120,8,72,139,117,224,232, 69,68,1,0,133,192,117,10,72,139,69,232,72,137,69,208,235,44,72,139,69,248,72,139,0,72,133,192,116,13,72,139,69,248,72,139,0,72,137,69,248,235,194,72,139,85,248,72,139,69,240,72,137,2,72,139,69,232,72,137,69,208,72,139,69,208,201,195,85,72,137,229,72, 131,236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,197,65,1,0,201,195,85,72,137,229,72,129,236,32,4,0,0,72,137,189,232,251,255,255,72,137,181,224,251,255,255,72,139,5,177,173,3,0,72,139,16,72,137,85, 248,49,210,72,139,133,232,251,255,255,72,137,133,0,252,255,255,72,139,133,232,251,255,255,72,137,133,248,251,255,255,72,139,133,224,251,255,255,72,137,133,8,252,255,255,72,139,149,8,252,255,255,72,141,189,16,252,255,255,185,58,0,0,0,190,232,3,0,0,232, 199,253,255,255,72,137,133,8,252,255,255,15,182,133,16,252,255,255,132,192,116,31,72,141,181,16,252,255,255,72,139,189,0,252,255,255,186,0,0,0,0,232,58,254,255,255,72,137,133,0,252,255,255,72,131,189,8,252,255,255,0,117,168,72,139,133,0,252,255,255,72, 139,21,24,173,3,0,72,139,77,248,72,51,10,116,5,232,240,64,1,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,137,69,248,235,63,72,139,69,248,72,139,0,72,137,69,240,72,139,69,248,72,139,120,8,232,244,66,1,0,72,141,112,1,72,139,69, 248,72,139,120,8,232,234,67,255,255,72,139,125,248,190,16,0,0,0,232,220,67,255,255,72,139,69,240,72,137,69,248,72,131,125,248,0,117,186,201,195,85,72,137,229,72,137,125,232,137,117,228,199,69,252,0,0,0,0,72,139,69,232,72,137,69,240,235,14,255,69,252, 72,139,69,240,72,139,0,72,137,69,240,139,69,252,59,69,228,125,7,72,131,125,240,0,117,227,72,131,125,240,0,116,14,72,139,69,240,72,139,64,8,72,137,69,216,235,8,72,199,69,216,0,0,0,0,72,139,69,216,201,195,85,72,137,229,72,129,236,0,4,0,0,72,137,189,8,252, 255,255,72,139,5,53,172,3,0,72,139,16,72,137,85,248,49,210,72,141,5,205,21,4,0,72,139,56,232,21,255,255,255,72,141,181,16,252,255,255,186,232,3,0,0,72,141,61,114,195,1,0,232,130,250,255,255,72,141,181,16,252,255,255,186,0,0,0,0,191,0,0,0,0,232,242,252, 255,255,72,137,194,72,141,5,141,21,4,0,72,137,16,72,141,5,131,21,4,0,72,139,56,186,0,0,0,0,72,141,53,65,195,1,0,232,202,252,255,255,72,137,194,72,141,5,101,21,4,0,72,137,16,72,141,5,91,21,4,0,72,139,56,72,139,181,8,252,255,255,186,0,0,0,0,232,162,252, 255,255,72,137,194,72,141,5,61,21,4,0,72,137,16,72,139,5,139,171,3,0,72,139,85,248,72,51,16,116,5,232,99,63,1,0,201,195,85,72,137,229,83,72,129,236,216,4,0,0,72,137,189,88,251,255,255,72,137,181,80,251,255,255,72,137,149,72,251,255,255,72,137,141,64, 251,255,255,76,137,133,56,251,255,255,68,137,141,52,251,255,255,72,139,5,62,171,3,0,72,139,16,72,137,85,232,49,210,72,139,189,88,251,255,255,232,67,65,1,0,72,137,195,72,139,189,80,251,255,255,232,52,65,1,0,72,1,195,72,139,189,72,251,255,255,232,37,65, 1,0,72,141,4,3,72,141,80,4,139,133,52,251,255,255,72,57,194,118,15,199,133,44,251,255,255,255,255,255,255,233,209,2,0,0,72,141,181,0,252,255,255,72,139,189,88,251,255,255,186,232,3,0,0,232,78,249,255,255,72,199,192,255,255,255,255,72,131,248,255,116, 28,72,199,194,255,255,255,255,72,141,181,0,252,255,255,72,139,189,64,251,255,255,232,156,62,1,0,235,19,72,141,181,0,252,255,255,72,139,189,64,251,255,255,232,158,252,255,255,72,139,133,64,251,255,255,15,182,0,132,192,116,93,72,139,157,64,251,255,255, 72,255,203,72,139,189,64,251,255,255,232,139,64,1,0,72,141,4,3,15,182,0,60,47,116,60,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,194,255,255,255,255,72,139,189,64,251,255,255,72,141,53,176,160,1,0,232,43,62,1,0,235,19,72,139,189,64,251,255, 255,72,141,53,155,160,1,0,232,55,2,0,0,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,194,255,255,255,255,72,139,181,80,251,255,255,72,139,189,64,251,255,255,232,239,61,1,0,235,19,72,139,181,80,251,255,255,72,139,189,64,251,255,255,232,251,1, 0,0,72,199,192,255,255,255,255,72,131,248,255,116,28,72,199,194,255,255,255,255,72,139,181,72,251,255,255,72,139,189,64,251,255,255,232,179,61,1,0,235,19,72,139,181,72,251,255,255,72,139,189,64,251,255,255,232,191,1,0,0,72,139,181,64,251,255,255,72,139, 189,64,251,255,255,232,109,247,255,255,72,139,189,64,251,255,255,190,0,0,0,0,184,0,0,0,0,232,185,62,1,0,137,133,252,251,255,255,131,189,252,251,255,255,0,15,136,47,1,0,0,72,141,181,96,251,255,255,139,189,252,251,255,255,232,52,62,1,0,133,192,120,34,15, 183,133,100,251,255,255,15,183,192,37,0,240,0,0,61,0,64,0,0,116,12,199,133,48,251,255,255,1,0,0,0,235,10,199,133,48,251,255,255,0,0,0,0,139,141,48,251,255,255,137,141,248,251,255,255,131,189,248,251,255,255,0,117,63,72,141,5,160,18,4,0,139,0,133,192, 116,24,72,139,181,64,251,255,255,72,141,61,140,192,1,0,184,0,0,0,0,232,176,23,0,0,139,189,252,251,255,255,232,59,61,1,0,199,133,252,251,255,255,255,255,255,255,233,190,0,0,0,72,141,5,97,18,4,0,139,0,133,192,116,24,72,139,181,64,251,255,255,72,141,61, 112,192,1,0,184,0,0,0,0,232,113,23,0,0,72,139,181,64,251,255,255,72,139,189,64,251,255,255,232,180,246,255,255,72,139,189,64,251,255,255,190,47,0,0,0,232,195,62,1,0,72,137,133,240,251,255,255,72,131,189,240,251,255,255,0,116,32,72,139,133,240,251,255, 255,198,0,0,72,139,149,240,251,255,255,72,255,194,72,139,133,56,251,255,255,72,137,16,235,17,72,139,149,56,251,255,255,72,139,133,64,251,255,255,72,137,2,139,133,252,251,255,255,137,133,44,251,255,255,235,47,72,141,5,200,17,4,0,139,0,133,192,116,24,72, 139,181,64,251,255,255,72,141,61,238,191,1,0,184,0,0,0,0,232,216,22,0,0,199,133,44,251,255,255,255,255,255,255,139,133,44,251,255,255,72,139,21,11,168,3,0,72,139,77,232,72,51,10,116,5,232,227,59,1,0,72,129,196,216,4,0,0,91,201,195,85,72,137,229,72,131, 236,16,72,137,125,248,72,137,117,240,72,199,194,255,255,255,255,72,139,117,240,72,139,125,248,232,187,59,1,0,201,195,85,72,137,229,72,129,236,80,4,0,0,72,137,189,248,251,255,255,72,137,181,240,251,255,255,72,137,149,232,251,255,255,72,137,141,224,251, 255,255,68,137,133,220,251,255,255,68,137,141,216,251,255,255,72,139,69,16,72,137,133,208,251,255,255,72,139,5,134,167,3,0,72,139,16,72,137,85,248,49,210,72,139,189,248,251,255,255,232,187,245,255,255,133,192,15,132,3,1,0,0,72,139,189,248,251,255,255, 190,47,0,0,0,232,132,61,1,0,72,137,133,0,252,255,255,72,131,189,0,252,255,255,0,117,15,199,133,204,251,255,255,0,0,0,0,233,220,0,0,0,72,139,133,0,252,255,255,137,194,72,139,133,248,251,255,255,137,209,41,193,137,200,137,133,12,252,255,255,129,189,12, 252,255,255,231,3,0,0,126,10,199,133,12,252,255,255,231,3,0,0,139,133,12,252,255,255,72,99,208,72,139,181,248,251,255,255,72,141,189,16,252,255,255,185,232,3,0,0,232,227,58,1,0,139,133,12,252,255,255,72,152,198,132,5,16,252,255,255,0,72,139,149,248,251, 255,255,72,255,194,139,133,12,252,255,255,72,152,76,141,28,2,139,149,220,251,255,255,72,139,141,224,251,255,255,72,139,181,232,251,255,255,72,139,189,240,251,255,255,76,141,149,16,252,255,255,139,133,216,251,255,255,137,4,36,65,137,209,73,137,200,72, 137,241,72,137,250,76,137,222,76,137,215,232,2,251,255,255,137,194,72,139,133,208,251,255,255,137,16,199,133,204,251,255,255,1,0,0,0,235,10,199,133,204,251,255,255,0,0,0,0,139,133,204,251,255,255,72,139,21,79,166,3,0,72,139,77,248,72,51,10,116,5,232, 39,58,1,0,201,195,85,72,137,229,72,131,236,80,72,137,125,232,72,137,117,224,72,137,85,216,72,137,77,208,76,137,69,200,68,137,77,196,199,69,252,255,255,255,255,139,85,196,72,139,77,200,72,139,117,208,72,139,125,216,76,139,85,224,72,141,69,252,72,137,4, 36,68,139,77,16,65,137,208,72,137,242,72,137,254,76,137,215,232,27,254,255,255,133,192,116,11,139,69,252,137,69,192,233,65,1,0,0,139,85,196,72,139,77,200,72,139,117,208,72,139,125,216,76,139,85,224,76,139,93,232,139,69,16,137,4,36,65,137,209,73,137,200, 72,137,241,72,137,250,76,137,214,76,137,223,232,42,250,255,255,137,69,252,139,69,252,133,192,120,11,139,69,252,137,69,192,233,248,0,0,0,72,139,69,24,72,137,69,240,235,88,72,139,69,240,76,139,88,8,139,85,196,72,139,77,200,72,139,117,208,72,139,125,216, 76,139,85,224,139,69,16,137,4,36,65,137,209,73,137,200,72,137,241,72,137,250,76,137,214,76,137,223,232,211,249,255,255,137,69,252,139,69,252,133,192,120,11,139,69,252,137,69,192,233,161,0,0,0,72,139,69,240,72,139,0,72,137,69,240,72,131,125,240,0,117, 161,139,5,25,188,3,0,133,192,116,108,72,141,5,190,14,4,0,72,139,0,72,137,69,240,235,85,72,139,69,240,76,139,88,8,139,85,196,72,139,77,200,72,139,117,208,72,139,125,216,76,139,85,224,139,69,16,137,4,36,65,137,209,73,137,200,72,137,241,72,137,250,76,137, 214,76,137,223,232,90,249,255,255,137,69,252,139,69,252,133,192,120,8,139,69,252,137,69,192,235,43,72,139,69,240,72,139,0,72,137,69,240,72,131,125,240,0,117,164,72,139,69,208,198,0,0,72,139,85,200,72,139,69,208,72,137,2,199,69,192,255,255,255,255,139, 69,192,201,195,85,72,137,229,72,131,236,64,72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224,76,137,69,216,68,137,77,212,72,141,5,12,14,4,0,72,139,0,139,85,212,72,139,77,216,72,139,117,224,72,139,125,232,76,139,85,240,76,139,93,248,72,137,68, 36,8,139,69,16,137,4,36,65,137,209,73,137,200,72,137,241,72,137,250,76,137,214,76,137,223,232,241,253,255,255,201,195,85,72,137,229,72,131,236,16,137,125,252,139,125,252,232,103,56,1,0,201,195,85,72,137,229,83,72,129,236,56,8,0,0,72,137,189,232,247,255, 255,72,137,181,224,247,255,255,72,139,5,248,163,3,0,72,139,16,72,137,85,232,49,210,72,139,133,224,247,255,255,15,182,0,132,192,116,16,72,139,133,224,247,255,255,72,137,133,216,247,255,255,235,14,72,141,21,160,187,1,0,72,137,149,216,247,255,255,72,139, 133,216,247,255,255,72,137,133,248,247,255,255,72,139,181,232,247,255,255,72,141,189,0,252,255,255,186,222,3,0,0,232,195,57,1,0,198,69,222,0,72,141,189,0,252,255,255,232,167,57,1,0,72,131,248,3,118,69,72,141,189,0,252,255,255,232,149,57,1,0,72,137,194, 72,141,133,0,252,255,255,72,1,208,72,141,120,253,72,141,53,221,93,1,0,232,108,57,1,0,133,192,117,24,72,141,189,0,252,255,255,232,104,57,1,0,72,131,232,3,198,132,5,0,252,255,255,0,72,141,189,0,252,255,255,186,232,3,0,0,72,141,53,12,187,1,0,232,22,55,1, 0,72,141,5,187,12,4,0,72,139,0,72,141,149,0,248,255,255,72,141,141,16,248,255,255,72,141,181,0,252,255,255,72,139,189,224,247,255,255,72,137,68,36,8,199,4,36,0,0,0,0,65,185,232,3,0,0,73,137,208,72,141,21,184,75,1,0,232,164,252,255,255,137,133,12,248, 255,255,131,189,12,248,255,255,0,15,137,255,0,0,0,72,141,189,0,252,255,255,186,6,0,0,0,72,141,53,164,186,1,0,232,220,55,1,0,72,139,181,232,247,255,255,72,141,189,0,252,255,255,185,232,3,0,0,186,222,3,0,0,232,147,54,1,0,198,69,231,0,72,141,5,40,12,4,0, 72,139,0,72,141,149,0,248,255,255,72,141,141,16,248,255,255,72,141,181,0,252,255,255,72,139,189,224,247,255,255,72,137,68,36,8,199,4,36,0,0,0,0,65,185,232,3,0,0,73,137,208,72,141,21,37,75,1,0,232,17,252,255,255,137,133,12,248,255,255,131,189,12,248,255, 255,0,121,112,72,141,5,210,11,4,0,72,139,0,72,141,149,0,248,255,255,72,141,141,16,248,255,255,72,139,181,232,247,255,255,72,139,189,224,247,255,255,72,137,68,36,8,199,4,36,0,0,0,0,65,185,232,3,0,0,73,137,208,72,141,21,207,74,1,0,232,187,251,255,255,137, 133,12,248,255,255,131,189,12,248,255,255,0,121,26,72,139,181,232,247,255,255,72,141,61,205,185,1,0,184,0,0,0,0,232,137,16,0,0,235,54,139,189,12,248,255,255,232,18,54,1,0,72,141,189,16,248,255,255,232,200,28,255,255,72,137,195,72,139,189,0,248,255,255, 232,185,28,255,255,72,137,198,72,137,218,191,0,0,0,0,232,153,6,255,255,72,139,5,148,161,3,0,72,139,85,232,72,51,16,116,5,232,108,53,1,0,72,129,196,56,8,0,0,91,201,195,85,72,137,229,83,72,129,236,104,39,0,0,72,139,5,105,161,3,0,72,139,16,72,137,85,232, 49,210,72,141,61,241,162,1,0,232,54,54,1,0,72,137,133,232,247,255,255,199,133,0,248,255,255,1,0,0,0,199,133,12,248,255,255,1,0,0,0,235,26,139,133,12,248,255,255,72,152,72,199,132,197,160,216,255,255,0,0,0,0,255,133,12,248,255,255,129,189,12,248,255,255, 230,3,0,0,126,218,198,133,0,252,255,255,0,72,131,189,232,247,255,255,0,116,16,72,139,141,232,247,255,255,72,137,141,144,216,255,255,235,14,72,141,5,113,74,1,0,72,137,133,144,216,255,255,72,141,189,0,252,255,255,185,232,3,0,0,186,222,3,0,0,72,139,181, 144,216,255,255,232,189,52,1,0,72,141,189,0,252,255,255,186,232,3,0,0,72,141,53,30,151,1,0,232,153,52,1,0,72,141,189,0,252,255,255,186,232,3,0,0,72,141,53,181,184,1,0,232,129,52,1,0,72,141,189,0,252,255,255,72,141,53,131,78,1,0,232,34,53,1,0,72,137,133, 248,247,255,255,72,131,189,248,247,255,255,0,117,15,199,133,156,216,255,255,1,0,0,0,233,100,2,0,0,72,141,181,0,252,255,255,72,141,61,119,184,1,0,184,0,0,0,0,232,0,15,0,0,72,141,5,203,73,1,0,72,137,133,160,216,255,255,199,133,12,248,255,255,1,0,0,0,233, 191,0,0,0,72,141,149,16,248,255,255,72,139,189,248,247,255,255,72,141,53,84,184,1,0,184,0,0,0,0,232,216,52,1,0,133,192,15,136,168,0,0,0,198,133,247,251,255,255,0,139,157,12,248,255,255,72,141,189,16,248,255,255,232,7,54,1,0,72,141,120,1,232,2,53,1,0, 72,137,194,72,99,195,72,137,148,197,160,216,255,255,72,99,195,72,139,132,197,160,216,255,255,72,133,192,15,132,112,1,0,0,72,199,192,255,255,255,255,72,131,248,255,116,37,72,199,194,255,255,255,255,139,133,12,248,255,255,72,152,72,139,188,197,160,216, 255,255,72,141,181,16,248,255,255,232,132,51,1,0,235,28,139,133,12,248,255,255,72,152,72,139,188,197,160,216,255,255,72,141,181,16,248,255,255,232,125,241,255,255,255,133,12,248,255,255,129,189,12,248,255,255,230,3,0,0,15,142,49,255,255,255,129,189,12, 248,255,255,230,3,0,0,126,32,72,139,5,83,159,3,0,72,139,8,186,42,0,0,0,190,1,0,0,0,72,141,61,127,183,1,0,232,8,52,1,0,139,133,12,248,255,255,72,152,72,199,132,197,160,216,255,255,0,0,0,0,139,133,12,248,255,255,137,133,4,248,255,255,72,139,189,248,247, 255,255,232,148,51,1,0,72,141,5,135,8,4,0,139,0,133,192,116,110,131,189,4,248,255,255,0,116,84,72,141,61,92,183,1,0,184,0,0,0,0,232,149,13,0,0,199,133,12,248,255,255,1,0,0,0,235,39,139,133,12,248,255,255,72,152,72,139,180,197,160,216,255,255,72,141,61, 92,149,1,0,184,0,0,0,0,232,104,13,0,0,255,133,12,248,255,255,139,133,12,248,255,255,59,133,4,248,255,255,124,203,235,17,72,141,61,38,183,1,0,184,0,0,0,0,232,65,13,0,0,72,141,133,160,216,255,255,72,141,112,8,139,189,4,248,255,255,255,207,232,144,212,255, 255,133,192,116,19,72,141,61,20,183,1,0,184,0,0,0,0,232,20,13,0,0,235,10,199,133,0,248,255,255,0,0,0,0,199,133,12,248,255,255,1,0,0,0,235,48,139,133,12,248,255,255,72,152,72,139,132,197,160,216,255,255,72,133,192,116,21,139,133,12,248,255,255,72,152, 72,139,188,197,160,216,255,255,232,224,50,1,0,255,133,12,248,255,255,129,189,12,248,255,255,230,3,0,0,126,196,139,149,0,248,255,255,137,149,156,216,255,255,139,133,156,216,255,255,72,139,21,241,157,3,0,72,139,77,232,72,51,10,116,5,232,201,49,1,0,72,129, 196,104,39,0,0,91,201,195,85,72,137,229,72,129,236,96,31,0,0,199,69,248,0,0,0,0,199,69,244,0,0,0,0,72,141,5,89,167,3,0,72,139,0,72,139,56,232,200,51,1,0,137,69,240,199,69,236,0,0,0,0,129,125,240,232,3,0,0,126,35,72,141,5,52,167,3,0,72,139,0,72,139,48, 72,141,61,78,182,1,0,184,0,0,0,0,232,51,12,0,0,233,111,1,0,0,199,69,252,0,0,0,0,233,49,1,0,0,72,141,5,5,167,3,0,72,139,0,72,139,16,139,69,252,72,152,72,141,4,2,15,182,0,15,190,192,137,69,232,131,125,244,0,117,44,131,125,232,0,15,132,255,0,0,0,139,125, 232,232,46,1,0,0,133,192,15,133,239,0,0,0,139,69,252,137,69,248,199,69,244,1,0,0,0,233,221,0,0,0,131,125,232,0,116,16,139,125,232,232,6,1,0,0,133,192,15,132,199,0,0,0,139,85,248,139,69,252,41,208,255,192,72,99,248,232,17,50,1,0,72,137,69,224,72,131,125, 224,0,15,132,219,0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,54,72,199,193,255,255,255,255,139,85,248,139,69,252,41,208,76,99,192,72,141,5,94,166,3,0,72,139,0,72,139,16,139,69,248,72,152,72,141,52,2,72,139,125,224,76,137,194,232,161,48,1,0,235, 45,139,85,248,139,69,252,41,208,72,99,200,72,141,5,47,166,3,0,72,139,0,72,139,16,139,69,248,72,152,72,141,52,2,72,139,125,224,72,137,202,232,172,236,255,255,139,85,248,139,69,252,41,208,72,152,72,3,69,224,198,0,0,139,69,236,72,99,208,72,139,69,224,72, 137,132,213,160,224,255,255,255,69,236,129,125,236,231,3,0,0,127,24,199,69,244,0,0,0,0,255,69,252,139,69,240,255,192,59,69,252,15,143,193,254,255,255,72,141,181,160,224,255,255,139,125,236,232,59,210,255,255,133,192,116,17,72,141,61,243,180,1,0,184,0, 0,0,0,232,191,10,0,0,201,195,85,72,137,229,72,131,236,16,137,125,252,139,125,252,190,0,64,0,0,232,2,0,0,0,201,195,85,72,137,229,72,131,236,32,137,125,252,72,137,117,240,139,125,252,232,68,0,0,0,133,192,116,36,139,69,252,72,139,21,192,155,3,0,72,152,139, 68,130,60,137,192,72,35,69,240,72,133,192,15,149,192,15,182,192,137,69,236,235,23,72,139,117,240,139,125,252,232,100,47,1,0,133,192,15,149,192,15,182,192,137,69,236,139,69,236,201,195,85,72,137,229,137,125,252,139,69,252,131,224,128,133,192,15,148,192, 15,182,192,201,195,85,72,137,229,72,129,236,16,4,0,0,72,137,189,248,251,255,255,72,139,5,98,155,3,0,72,139,16,72,137,85,248,49,210,72,139,133,248,251,255,255,72,139,0,72,137,133,0,252,255,255,72,139,133,0,252,255,255,15,182,0,60,43,116,26,72,139,181, 0,252,255,255,72,141,61,44,180,1,0,184,0,0,0,0,232,197,17,0,0,235,7,72,255,133,0,252,255,255,199,133,12,252,255,255,0,0,0,0,233,66,1,0,0,72,139,133,0,252,255,255,15,182,0,132,192,15,132,64,1,0,0,72,139,133,0,252,255,255,15,182,0,60,43,15,133,247,0,0, 0,72,139,133,0,252,255,255,72,255,192,15,182,0,60,95,117,28,139,133,12,252,255,255,72,152,198,132,5,16,252,255,255,32,72,255,133,0,252,255,255,233,228,0,0,0,72,139,133,0,252,255,255,72,255,192,15,182,0,60,43,117,28,139,133,12,252,255,255,72,152,198,132, 5,16,252,255,255,43,72,255,133,0,252,255,255,233,183,0,0,0,72,139,133,0,252,255,255,72,255,192,15,182,0,60,99,117,28,139,133,12,252,255,255,72,152,198,132,5,16,252,255,255,44,72,255,133,0,252,255,255,233,138,0,0,0,72,139,133,0,252,255,255,72,255,192, 15,182,0,60,115,117,25,139,133,12,252,255,255,72,152,198,132,5,16,252,255,255,59,72,255,133,0,252,255,255,235,96,72,139,133,0,252,255,255,72,255,192,15,182,0,60,100,117,25,139,133,12,252,255,255,72,152,198,132,5,16,252,255,255,36,72,255,133,0,252,255, 255,235,54,139,141,12,252,255,255,72,139,133,0,252,255,255,15,182,16,72,99,193,136,148,5,16,252,255,255,235,26,139,141,12,252,255,255,72,139,133,0,252,255,255,15,182,16,72,99,193,136,148,5,16,252,255,255,255,133,12,252,255,255,72,255,133,0,252,255,255, 129,189,12,252,255,255,230,3,0,0,15,142,174,254,255,255,139,133,12,252,255,255,72,152,198,132,5,16,252,255,255,0,72,141,189,16,252,255,255,232,170,20,255,255,72,139,21,149,153,3,0,72,139,77,248,72,51,10,116,5,232,109,45,1,0,201,195,85,72,137,229,72,131, 236,16,72,141,61,139,178,1,0,232,144,172,255,255,72,141,5,10,3,4,0,72,139,0,72,137,69,240,199,69,252,0,0,0,0,235,39,72,139,69,240,72,139,112,8,72,141,61,115,178,1,0,184,0,0,0,0,232,217,168,255,255,72,139,69,240,72,139,0,72,137,69,240,255,69,252,72,131, 125,240,0,117,210,72,141,61,109,178,1,0,232,63,172,255,255,201,195,85,72,137,229,72,131,236,16,72,141,61,36,178,1,0,232,41,172,255,255,72,141,5,171,2,4,0,72,139,0,72,137,69,240,199,69,252,0,0,0,0,235,39,72,139,69,240,72,139,112,8,72,141,61,12,178,1,0, 184,0,0,0,0,232,114,168,255,255,72,139,69,240,72,139,0,72,137,69,240,255,69,252,72,131,125,240,0,117,210,72,141,61,46,178,1,0,232,216,171,255,255,201,195,85,72,137,229,72,129,236,0,4,0,0,72,137,189,8,252,255,255,72,139,5,158,152,3,0,72,139,16,72,137, 85,248,49,210,232,11,255,255,255,72,141,5,17,2,4,0,139,0,139,21,121,175,3,0,72,141,189,16,252,255,255,65,137,193,65,137,208,72,141,13,255,177,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,57,44,1,0,72,141,149,16,252,255,255,72,141,53,148,255,255,255, 72,141,61,76,249,3,0,232,227,128,0,0,72,139,5,56,152,3,0,72,139,85,248,72,51,16,116,5,232,16,44,1,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,141,5,170,1,4,0,72,139,56,232,250,234,255,255,72,141,5,155, 1,4,0,72,199,0,0,0,0,0,72,139,85,208,139,117,220,191,0,0,0,0,232,86,149,254,255,137,5,213,174,3,0,72,139,85,208,139,117,220,191,1,0,0,0,232,63,149,254,255,137,194,72,141,5,75,1,4,0,137,16,199,69,252,0,0,0,0,235,82,139,125,252,131,199,2,72,139,85,208, 139,117,220,232,65,149,254,255,72,137,199,232,35,252,255,255,72,137,69,240,72,139,69,240,72,139,0,15,182,0,132,192,116,35,72,139,69,240,72,139,48,72,141,5,30,1,4,0,72,139,56,232,165,233,255,255,72,137,194,72,141,5,12,1,4,0,72,137,16,255,69,252,139,69, 220,131,232,2,59,69,252,127,163,201,195,85,72,137,229,72,131,236,16,72,141,5,234,160,3,0,72,139,0,72,139,48,72,141,61,235,176,1,0,184,0,0,0,0,232,203,166,255,255,72,141,61,244,176,1,0,232,70,170,255,255,72,141,5,176,0,4,0,72,139,0,72,137,69,240,199,69, 252,0,0,0,0,235,39,72,139,69,240,72,139,112,8,72,141,61,233,176,1,0,184,0,0,0,0,232,143,166,255,255,72,139,69,240,72,139,0,72,137,69,240,255,69,252,72,131,125,240,0,117,210,201,195,85,72,137,229,72,129,236,0,4,0,0,72,137,189,8,252,255,255,72,139,5,199, 150,3,0,72,139,16,72,137,85,248,49,210,232,96,255,255,255,72,141,5,82,160,3,0,72,139,0,72,139,16,72,141,5,13,248,3,0,139,0,72,141,189,16,252,255,255,73,137,209,65,137,192,72,141,13,159,176,1,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,91,42,1,0,72,141, 149,16,252,255,255,72,141,53,141,255,255,255,72,141,61,110,247,3,0,232,5,127,0,0,72,139,5,90,150,3,0,72,139,85,248,72,51,16,116,5,232,50,42,1,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,141,5,188,255, 3,0,72,139,56,232,28,233,255,255,72,141,5,173,255,3,0,72,199,0,0,0,0,0,72,139,85,208,139,117,220,191,0,0,0,0,232,120,147,254,255,137,194,72,141,5,100,247,3,0,137,16,72,139,85,208,139,117,220,191,1,0,0,0,232,132,147,254,255,72,137,199,232,102,250,255, 255,72,137,194,72,141,5,119,159,3,0,72,137,16,199,69,252,0,0,0,0,235,82,139,125,252,131,199,2,72,139,85,208,139,117,220,232,84,147,254,255,72,137,199,232,54,250,255,255,72,137,69,240,72,139,69,240,72,139,0,15,182,0,132,192,116,35,72,139,69,240,72,139, 48,72,141,5,33,255,3,0,72,139,56,232,184,231,255,255,72,137,194,72,141,5,15,255,3,0,72,137,16,255,69,252,139,69,220,131,232,2,59,69,252,127,163,201,195,85,72,137,229,72,137,125,232,72,137,117,224,72,137,85,216,199,69,252,0,0,0,0,199,69,248,0,0,0,0,235, 91,139,69,252,72,152,72,3,69,224,15,182,0,15,190,192,137,69,244,131,125,244,92,116,18,131,125,244,123,116,12,131,125,244,125,116,6,131,125,244,59,117,13,139,69,248,72,3,69,232,198,0,92,255,69,248,139,69,248,72,137,194,72,3,85,232,139,69,252,72,152,72, 3,69,224,15,182,0,136,2,131,125,244,0,116,15,255,69,252,255,69,248,139,69,248,72,59,69,216,114,156,139,69,248,72,59,69,216,115,12,139,69,248,72,3,69,232,198,0,0,235,17,72,139,69,232,72,255,200,72,139,85,216,72,1,208,198,0,0,72,139,69,232,201,195,85,72, 137,229,72,129,236,0,4,0,0,72,137,189,8,252,255,255,72,139,5,163,148,3,0,72,139,16,72,137,85,248,49,210,72,141,5,67,254,3,0,72,139,0,72,133,192,116,21,72,141,5,52,254,3,0,72,139,0,72,139,189,8,252,255,255,255,208,235,81,72,141,5,39,254,3,0,139,0,133, 192,116,24,72,139,5,106,148,3,0,72,139,48,72,139,189,8,252,255,255,232,11,41,1,0,235,44,72,139,181,8,252,255,255,72,141,189,16,252,255,255,186,232,3,0,0,232,205,254,255,255,72,137,198,72,141,61,103,174,1,0,184,0,0,0,0,232,189,163,255,255,72,139,5,30, 148,3,0,72,139,85,248,72,51,16,116,5,232,246,39,1,0,201,195,85,72,137,229,72,129,236,0,4,0,0,72,137,189,8,252,255,255,72,139,5,245,147,3,0,72,139,16,72,137,85,248,49,210,198,69,247,0,72,141,5,145,253,3,0,72,139,0,72,133,192,116,57,72,139,141,8,252,255, 255,72,141,189,16,252,255,255,72,141,21,21,174,1,0,190,231,3,0,0,184,0,0,0,0,232,165,41,1,0,72,141,5,94,253,3,0,72,139,0,72,141,189,16,252,255,255,255,208,235,93,72,141,5,81,253,3,0,139,0,133,192,116,36,72,139,5,148,147,3,0,72,139,56,72,139,149,8,252, 255,255,72,141,53,204,173,1,0,184,0,0,0,0,232,29,40,1,0,235,44,72,139,181,8,252,255,255,72,141,189,16,252,255,255,186,232,3,0,0,232,235,253,255,255,72,137,198,72,141,61,168,173,1,0,184,0,0,0,0,232,219,162,255,255,72,139,5,60,147,3,0,72,139,85,248,72, 51,16,116,5,232,20,39,1,0,201,195,85,72,137,229,72,129,236,0,4,0,0,137,189,12,252,255,255,72,137,181,0,252,255,255,72,139,5,13,147,3,0,72,139,16,72,137,85,248,49,210,198,69,247,0,72,141,5,169,252,3,0,72,139,0,72,133,192,116,66,72,139,133,0,252,255,255, 139,141,12,252,255,255,72,141,189,16,252,255,255,73,137,192,72,141,21,71,173,1,0,190,231,3,0,0,184,0,0,0,0,232,180,40,1,0,72,141,5,109,252,3,0,72,139,0,72,141,189,16,252,255,255,255,208,235,108,72,141,5,96,252,3,0,139,0,133,192,116,42,72,139,5,163,146, 3,0,72,139,56,72,139,141,0,252,255,255,139,149,12,252,255,255,72,141,53,248,172,1,0,184,0,0,0,0,232,38,39,1,0,235,53,72,139,181,0,252,255,255,72,141,189,16,252,255,255,186,232,3,0,0,232,244,252,255,255,139,181,12,252,255,255,131,198,4,72,137,194,72,141, 61,209,172,1,0,184,0,0,0,0,232,219,161,255,255,72,139,5,60,146,3,0,72,139,85,248,72,51,16,116,5,232,20,38,1,0,201,195,85,72,137,229,72,129,236,240,7,0,0,72,137,189,24,248,255,255,72,139,5,19,146,3,0,72,139,16,72,137,85,248,49,210,198,69,247,0,72,141, 5,175,251,3,0,72,139,0,72,133,192,116,57,72,139,141,24,248,255,255,72,141,189,16,252,255,255,72,141,21,128,172,1,0,190,231,3,0,0,184,0,0,0,0,232,195,39,1,0,72,141,5,124,251,3,0,72,139,0,72,141,189,16,252,255,255,255,208,235,93,72,141,5,111,251,3,0,139, 0,133,192,116,36,72,139,5,178,145,3,0,72,139,56,72,139,149,24,248,255,255,72,141,53,55,172,1,0,184,0,0,0,0,232,59,38,1,0,235,44,72,139,181,24,248,255,255,72,141,189,32,248,255,255,186,232,3,0,0,232,9,252,255,255,72,137,198,72,141,61,163,171,1,0,184,0, 0,0,0,232,249,160,255,255,72,139,5,90,145,3,0,72,139,85,248,72,51,16,116,5,232,50,37,1,0,201,195,85,72,137,229,72,129,236,16,5,0,0,72,137,181,88,255,255,255,72,137,149,96,255,255,255,72,137,141,104,255,255,255,76,137,133,112,255,255,255,76,137,141,120, 255,255,255,15,182,192,72,137,133,240,250,255,255,72,139,149,240,250,255,255,72,141,4,149,0,0,0,0,72,141,21,59,0,0,0,72,137,149,240,250,255,255,72,41,133,240,250,255,255,72,141,69,255,72,139,149,240,250,255,255,255,226,15,41,120,241,15,41,112,225,15, 41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72,145,15,41,64,129,72,137,189,248,250,255,255,72,139,5,179,144,3,0,72,139,16,72,137,149,72,255,255,255,49,210,72,141,133,64,251,255,255,199,0,8,0,0,0,72,141,133,64,251,255,255,199,64,4,48,0,0,0, 72,141,133,64,251,255,255,72,141,85,16,72,137,80,8,72,141,133,64,251,255,255,72,141,149,80,255,255,255,72,137,80,16,72,141,141,64,251,255,255,72,139,149,248,250,255,255,72,141,189,96,251,255,255,190,231,3,0,0,232,150,38,1,0,72,141,189,96,251,255,255, 186,232,3,0,0,72,141,53,19,148,1,0,232,32,36,1,0,72,141,189,96,251,255,255,232,108,251,255,255,72,139,5,33,144,3,0,72,139,149,72,255,255,255,72,51,16,116,5,232,246,35,1,0,201,195,85,72,137,229,72,129,236,16,5,0,0,72,137,181,88,255,255,255,72,137,149, 96,255,255,255,72,137,141,104,255,255,255,76,137,133,112,255,255,255,76,137,141,120,255,255,255,15,182,192,72,137,133,240,250,255,255,72,139,149,240,250,255,255,72,141,4,149,0,0,0,0,72,141,21,59,0,0,0,72,137,149,240,250,255,255,72,41,133,240,250,255, 255,72,141,69,255,72,139,149,240,250,255,255,255,226,15,41,120,241,15,41,112,225,15,41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72,145,15,41,64,129,72,137,189,248,250,255,255,72,139,5,119,143,3,0,72,139,16,72,137,149,72,255,255,255,49,210, 72,141,133,64,251,255,255,199,0,8,0,0,0,72,141,133,64,251,255,255,199,64,4,48,0,0,0,72,141,133,64,251,255,255,72,141,85,16,72,137,80,8,72,141,133,64,251,255,255,72,141,149,80,255,255,255,72,137,80,16,72,141,141,64,251,255,255,72,139,149,248,250,255,255, 72,141,189,96,251,255,255,190,231,3,0,0,232,90,37,1,0,72,141,189,96,251,255,255,232,72,250,255,255,72,139,5,253,142,3,0,72,139,149,72,255,255,255,72,51,16,116,5,232,210,34,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,61,226,67,1,0,232, 22,250,255,255,72,139,125,248,232,13,250,255,255,201,195,85,72,137,229,72,129,236,16,4,0,0,137,189,252,251,255,255,72,137,181,240,251,255,255,72,139,5,168,142,3,0,72,139,16,72,137,85,248,49,210,199,133,12,252,255,255,0,0,0,0,235,57,139,133,12,252,255, 255,72,152,72,193,224,4,72,137,199,72,3,189,240,251,255,255,72,141,181,16,252,255,255,186,232,3,0,0,232,97,140,254,255,72,141,189,16,252,255,255,232,118,255,255,255,255,133,12,252,255,255,139,133,12,252,255,255,59,133,252,251,255,255,124,185,72,139,5, 69,142,3,0,72,139,85,248,72,51,16,116,5,232,29,34,1,0,201,195,85,72,137,229,72,131,196,128,243,15,17,69,140,72,139,5,33,142,3,0,72,139,16,72,137,85,248,49,210,199,69,144,1,0,0,0,139,69,140,137,69,152,72,141,117,144,191,1,0,0,0,232,54,255,255,255,72,139, 5,246,141,3,0,72,139,85,248,72,51,16,116,5,232,206,33,1,0,201,195,85,72,137,229,72,141,5,139,247,3,0,72,139,0,72,133,192,116,21,72,141,5,124,247,3,0,72,139,0,72,141,61,156,145,1,0,255,208,235,52,72,141,5,111,247,3,0,139,0,133,192,116,22,72,139,5,178, 141,3,0,72,139,48,191,10,0,0,0,232,79,34,1,0,235,17,72,141,61,100,54,1,0,184,0,0,0,0,232,64,252,255,255,201,195,85,72,137,229,72,129,236,16,5,0,0,72,137,181,88,255,255,255,72,137,149,96,255,255,255,72,137,141,104,255,255,255,76,137,133,112,255,255,255, 76,137,141,120,255,255,255,15,182,192,72,137,133,240,250,255,255,72,139,149,240,250,255,255,72,141,4,149,0,0,0,0,72,141,21,59,0,0,0,72,137,149,240,250,255,255,72,41,133,240,250,255,255,72,141,69,255,72,139,149,240,250,255,255,255,226,15,41,120,241,15, 41,112,225,15,41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72,145,15,41,64,129,72,137,189,248,250,255,255,72,139,5,241,140,3,0,72,139,16,72,137,149,72,255,255,255,49,210,72,141,133,64,251,255,255,199,0,8,0,0,0,72,141,133,64,251,255,255,199, 64,4,48,0,0,0,72,141,133,64,251,255,255,72,141,85,16,72,137,80,8,72,141,133,64,251,255,255,72,141,149,80,255,255,255,72,137,80,16,72,141,141,64,251,255,255,72,139,149,248,250,255,255,72,141,189,96,251,255,255,190,231,3,0,0,232,212,34,1,0,72,141,189,96, 251,255,255,232,112,248,255,255,232,147,254,255,255,72,139,5,114,140,3,0,72,139,149,72,255,255,255,72,51,16,116,5,232,71,32,1,0,201,195,85,72,137,229,72,129,236,32,5,0,0,137,189,252,250,255,255,72,137,149,96,255,255,255,72,137,141,104,255,255,255,76, 137,133,112,255,255,255,76,137,141,120,255,255,255,15,182,192,72,137,133,232,250,255,255,72,139,149,232,250,255,255,72,141,4,149,0,0,0,0,72,141,21,59,0,0,0,72,137,149,232,250,255,255,72,41,133,232,250,255,255,72,141,69,255,72,139,149,232,250,255,255, 255,226,15,41,120,241,15,41,112,225,15,41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72,145,15,41,64,129,72,137,181,240,250,255,255,72,139,5,201,139,3,0,72,139,16,72,137,149,72,255,255,255,49,210,72,141,5,62,245,3,0,139,0,57,133,252,250,255, 255,127,114,72,141,133,64,251,255,255,199,0,16,0,0,0,72,141,133,64,251,255,255,199,64,4,48,0,0,0,72,141,133,64,251,255,255,72,141,85,16,72,137,80,8,72,141,133,64,251,255,255,72,141,149,80,255,255,255,72,137,80,16,72,141,141,64,251,255,255,72,139,149, 240,250,255,255,72,141,189,96,251,255,255,190,231,3,0,0,232,155,33,1,0,72,141,181,96,251,255,255,139,189,252,250,255,255,232,19,248,255,255,232,84,253,255,255,72,139,5,51,139,3,0,72,139,149,72,255,255,255,72,51,16,116,5,232,8,31,1,0,201,195,85,72,137, 229,72,129,236,32,5,0,0,72,137,189,248,250,255,255,72,137,149,96,255,255,255,72,137,141,104,255,255,255,76,137,133,112,255,255,255,76,137,141,120,255,255,255,15,182,192,72,137,133,232,250,255,255,72,139,149,232,250,255,255,72,141,4,149,0,0,0,0,72,141, 21,59,0,0,0,72,137,149,232,250,255,255,72,41,133,232,250,255,255,72,141,69,255,72,139,149,232,250,255,255,255,226,15,41,120,241,15,41,112,225,15,41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72,145,15,41,64,129,72,137,181,240,250,255,255,72, 139,5,137,138,3,0,72,139,16,72,137,149,72,255,255,255,49,210,72,141,133,64,251,255,255,199,0,16,0,0,0,72,141,133,64,251,255,255,199,64,4,48,0,0,0,72,141,133,64,251,255,255,72,141,85,16,72,137,80,8,72,141,133,64,251,255,255,72,141,149,80,255,255,255,72, 137,80,16,72,141,141,64,251,255,255,72,139,149,240,250,255,255,72,141,189,96,251,255,255,190,231,3,0,0,232,108,32,1,0,72,141,189,96,251,255,255,232,8,246,255,255,232,43,252,255,255,72,139,133,248,250,255,255,72,137,5,99,224,3,0,139,5,85,224,3,0,133,192, 117,32,72,141,53,178,164,1,0,191,0,0,0,0,184,0,0,0,0,232,132,253,255,255,199,5,49,224,3,0,1,0,0,0,72,139,5,210,137,3,0,72,139,149,72,255,255,255,72,51,16,116,5,232,167,29,1,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,5,12,224,3,0,72,133, 192,117,19,72,141,61,157,164,1,0,184,0,0,0,0,232,76,248,255,255,235,53,72,141,61,161,164,1,0,184,0,0,0,0,232,57,248,255,255,72,141,53,244,223,3,0,72,141,61,21,128,1,0,184,0,0,0,0,232,33,248,255,255,72,139,61,196,223,3,0,232,3,140,251,255,201,195,85,72, 137,229,72,129,236,16,5,0,0,72,137,181,88,255,255,255,72,137,149,96,255,255,255,72,137,141,104,255,255,255,76,137,133,112,255,255,255,76,137,141,120,255,255,255,15,182,192,72,137,133,240,250,255,255,72,139,149,240,250,255,255,72,141,4,149,0,0,0,0,72, 141,21,59,0,0,0,72,137,149,240,250,255,255,72,41,133,240,250,255,255,72,141,69,255,72,139,149,240,250,255,255,255,226,15,41,120,241,15,41,112,225,15,41,104,209,15,41,96,193,15,41,88,177,15,41,80,161,15,41,72,145,15,41,64,129,72,137,189,248,250,255,255, 72,139,5,198,136,3,0,72,139,16,72,137,149,72,255,255,255,49,210,72,141,133,64,251,255,255,199,0,8,0,0,0,72,141,133,64,251,255,255,199,64,4,48,0,0,0,72,141,133,64,251,255,255,72,141,85,16,72,137,80,8,72,141,133,64,251,255,255,72,141,149,80,255,255,255, 72,137,80,16,72,141,141,64,251,255,255,72,139,149,248,250,255,255,72,141,189,96,251,255,255,190,231,3,0,0,232,169,30,1,0,72,141,189,96,251,255,255,232,39,246,255,255,232,104,250,255,255,72,139,5,71,136,3,0,72,139,149,72,255,255,255,72,51,16,116,5,232, 28,28,1,0,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,69,248,72,137,5,149,223,3,0,72,139,69,240,72,137,5,146,223,3,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,137,5,113,223,3,0,232,176,27,1,0,139,56,232,1,30,1, 0,72,137,5,102,223,3,0,201,195,85,72,137,229,72,139,5,81,223,3,0,15,182,0,132,192,116,33,72,139,21,75,223,3,0,72,139,53,60,223,3,0,72,141,61,220,39,1,0,184,0,0,0,0,232,43,250,255,255,235,24,72,139,53,42,223,3,0,72,141,61,67,126,1,0,184,0,0,0,0,232,17, 250,255,255,72,141,61,190,162,1,0,232,172,154,255,255,201,195,85,72,137,229,72,137,125,248,72,139,69,248,15,182,0,15,182,192,137,194,72,141,5,104,173,1,0,72,141,4,2,15,182,0,15,190,192,255,192,201,195,85,72,137,229,72,137,125,216,137,117,212,72,137,85, 200,137,77,196,139,69,196,72,152,72,3,69,200,72,137,69,232,199,69,244,0,0,0,0,233,255,0,0,0,72,139,69,200,15,182,0,15,182,192,72,99,208,72,141,5,27,173,1,0,72,141,4,2,15,182,0,15,190,192,137,69,248,131,125,196,255,117,17,72,139,69,200,15,182,0,132,192, 15,132,215,0,0,0,235,19,139,69,248,72,152,72,3,69,200,72,59,69,232,15,131,194,0,0,0,199,69,252,0,0,0,0,139,69,248,137,69,192,131,125,192,1,116,70,131,125,192,1,127,8,131,125,192,0,116,79,235,94,131,125,192,2,116,29,131,125,192,3,116,2,235,80,72,139,69, 200,15,182,0,15,182,192,1,69,252,72,255,69,200,193,101,252,6,72,139,69,200,15,182,0,15,182,192,1,69,252,72,255,69,200,193,101,252,6,72,139,69,200,15,182,0,15,182,192,1,69,252,72,255,69,200,193,101,252,6,72,139,69,200,15,182,0,15,182,192,1,69,252,72,255, 69,200,139,69,248,72,152,72,141,20,133,0,0,0,0,72,141,5,49,172,1,0,72,141,4,2,139,0,41,69,252,139,69,244,72,152,72,193,224,2,72,137,194,72,3,85,216,139,69,252,137,2,255,69,244,139,69,212,255,200,59,69,244,15,143,243,254,255,255,139,69,244,72,152,72,193, 224,2,72,3,69,216,199,0,0,0,0,0,139,69,244,201,195,85,72,137,229,72,137,125,232,137,117,228,72,137,85,216,137,77,212,199,69,248,0,0,0,0,139,69,228,72,152,72,3,69,232,72,137,69,240,233,118,1,0,0,139,69,248,72,152,72,193,224,2,72,3,69,216,139,0,137,69, 252,131,125,252,127,119,41,72,139,69,232,72,59,69,240,114,11,139,69,248,137,69,204,233,145,1,0,0,139,69,252,137,194,72,139,69,232,136,16,72,255,69,232,233,50,1,0,0,129,125,252,255,7,0,0,119,71,72,139,69,240,72,255,200,72,59,69,232,119,11,139,69,248,137, 69,204,233,92,1,0,0,139,69,252,193,232,6,131,200,192,137,194,72,139,69,232,136,16,72,255,69,232,139,69,252,131,224,63,131,200,128,137,194,72,139,69,232,136,16,72,255,69,232,233,226,0,0,0,129,125,252,255,255,0,0,119,93,72,139,69,240,72,131,232,2,72,59, 69,232,119,11,139,69,248,137,69,204,233,11,1,0,0,139,69,252,193,232,12,131,200,224,137,194,72,139,69,232,136,16,72,255,69,232,139,69,252,193,232,6,131,224,63,131,200,128,137,194,72,139,69,232,136,16,72,255,69,232,139,69,252,131,224,63,131,200,128,137, 194,72,139,69,232,136,16,72,255,69,232,235,124,129,125,252,255,255,16,0,119,115,72,139,69,240,72,131,232,3,72,59,69,232,119,11,139,69,248,137,69,204,233,165,0,0,0,139,69,252,193,232,18,131,200,240,137,194,72,139,69,232,136,16,72,255,69,232,139,69,252, 193,232,12,131,224,63,131,200,128,137,194,72,139,69,232,136,16,72,255,69,232,139,69,252,193,232,6,131,224,63,131,200,128,137,194,72,139,69,232,136,16,72,255,69,232,139,69,252,131,224,63,131,200,128,137,194,72,139,69,232,136,16,72,255,69,232,255,69,248, 131,125,212,0,121,23,139,69,248,72,152,72,193,224,2,72,3,69,216,139,0,133,192,15,149,69,211,235,10,139,69,248,59,69,212,15,156,69,211,128,125,211,0,15,133,89,254,255,255,72,139,69,232,72,59,69,240,115,7,72,139,69,232,198,0,0,139,69,248,137,69,204,139, 69,204,201,195,85,72,137,229,137,125,252,131,125,252,127,119,9,199,69,248,1,0,0,0,235,61,129,125,252,255,7,0,0,119,9,199,69,248,2,0,0,0,235,43,129,125,252,255,255,0,0,119,9,199,69,248,3,0,0,0,235,25,129,125,252,255,255,31,0,119,9,199,69,248,4,0,0,0,235, 7,199,69,248,0,0,0,0,139,69,248,201,195,85,72,137,229,72,137,125,248,137,117,244,131,125,244,127,119,23,139,69,244,137,194,72,139,69,248,136,16,199,69,240,1,0,0,0,233,235,0,0,0,129,125,244,255,7,0,0,119,47,139,69,244,193,232,6,131,200,192,137,194,72, 139,69,248,136,16,72,139,85,248,72,255,194,139,69,244,131,224,63,131,200,128,136,2,199,69,240,2,0,0,0,233,179,0,0,0,129,125,244,255,255,0,0,119,66,139,69,244,193,232,12,131,200,224,137,194,72,139,69,248,136,16,72,139,85,248,72,255,194,139,69,244,193, 232,6,131,224,63,131,200,128,136,2,72,139,85,248,72,131,194,2,139,69,244,131,224,63,131,200,128,136,2,199,69,240,3,0,0,0,235,104,129,125,244,255,255,16,0,119,88,139,69,244,193,232,18,131,200,240,137,194,72,139,69,248,136,16,72,139,85,248,72,255,194,139, 69,244,193,232,12,131,224,63,131,200,128,136,2,72,139,85,248,72,131,194,2,139,69,244,193,232,6,131,224,63,131,200,128,136,2,72,139,85,248,72,131,194,3,139,69,244,131,224,63,131,200,128,136,2,199,69,240,4,0,0,0,235,7,199,69,240,0,0,0,0,139,69,240,201, 195,85,72,137,229,72,131,236,32,72,137,125,232,137,117,228,139,117,228,72,139,125,232,232,205,254,255,255,137,69,252,139,69,252,72,152,72,3,69,232,198,0,0,139,69,252,201,195,85,72,137,229,72,137,125,232,137,117,228,199,69,252,0,0,0,0,235,96,255,69,252, 139,69,252,72,152,72,3,69,232,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,63,255,69,252,139,69,252,72,152,72,3,69,232,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,33,255,69,252,139,69,252,72,152,72,3,69,232,15,182,0,15,190,192,37,192,0,0,0, 61,128,0,0,0,117,3,255,69,252,255,77,228,131,125,228,0,126,16,139,69,252,72,152,72,3,69,232,15,182,0,132,192,117,138,139,69,252,201,195,85,72,137,229,72,137,125,232,137,117,228,199,69,252,0,0,0,0,199,69,248,0,0,0,0,235,96,255,69,248,139,69,248,72,152, 72,3,69,232,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,63,255,69,248,139,69,248,72,152,72,3,69,232,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,33,255,69,248,139,69,248,72,152,72,3,69,232,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117, 3,255,69,248,255,69,252,139,69,248,59,69,228,125,16,139,69,248,72,152,72,3,69,232,15,182,0,132,192,117,136,139,69,252,201,195,85,72,137,229,72,137,125,232,72,137,117,224,199,69,252,0,0,0,0,199,69,248,0,0,0,0,193,101,252,6,72,139,69,224,139,16,72,99,194, 72,3,69,232,15,182,0,15,182,192,1,69,252,255,194,72,139,69,224,137,16,255,69,248,72,139,69,224,139,0,72,152,72,3,69,232,15,182,0,132,192,116,30,72,139,69,224,139,0,72,152,72,3,69,232,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,116,170,139,69,248,255, 200,72,152,72,141,20,133,0,0,0,0,72,141,5,176,166,1,0,72,141,4,2,139,0,41,69,252,139,69,252,201,195,85,72,137,229,72,131,236,32,72,137,125,232,199,69,252,0,0,0,0,199,69,248,0,0,0,0,235,3,255,69,252,72,141,117,248,72,139,125,232,232,64,255,255,255,133, 192,117,236,139,69,252,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,69,240,139,0,141,80,1,72,139,69,240,137,16,72,139,69,240,139,0,72,152,72,3,69,248,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,105,72,139,69,240,139,0,141,80,1,72, 139,69,240,137,16,72,139,69,240,139,0,72,152,72,3,69,248,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,60,72,139,69,240,139,0,141,80,1,72,139,69,240,137,16,72,139,69,240,139,0,72,152,72,3,69,248,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,15, 72,139,69,240,139,0,141,80,1,72,139,69,240,137,16,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,139,69,240,139,0,141,80,255,72,139,69,240,137,16,72,139,69,240,139,0,72,152,72,3,69,248,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,105,72, 139,69,240,139,0,141,80,255,72,139,69,240,137,16,72,139,69,240,139,0,72,152,72,3,69,248,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,60,72,139,69,240,139,0,141,80,255,72,139,69,240,137,16,72,139,69,240,139,0,72,152,72,3,69,248,15,182,0,15,190,192, 37,192,0,0,0,61,128,0,0,0,117,15,72,139,69,240,139,0,141,80,255,72,139,69,240,137,16,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,0,72,141,80,1,72,139,69,248,72,137,16,72,139,69,248,72,139,0,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0, 117,104,72,139,69,248,72,139,0,72,141,80,1,72,139,69,248,72,137,16,72,139,69,248,72,139,0,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,61,72,139,69,248,72,139,0,72,141,80,1,72,139,69,248,72,137,16,72,139,69,248,72,139,0,15,182,0,15,190,192,37,192, 0,0,0,61,128,0,0,0,117,18,72,139,69,248,72,139,0,72,141,80,1,72,139,69,248,72,137,16,201,195,85,72,137,229,72,137,125,248,72,139,69,248,72,139,0,72,141,80,255,72,139,69,248,72,137,16,72,139,69,248,72,139,0,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0, 0,117,104,72,139,69,248,72,139,0,72,141,80,255,72,139,69,248,72,137,16,72,139,69,248,72,139,0,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,61,72,139,69,248,72,139,0,72,141,80,255,72,139,69,248,72,137,16,72,139,69,248,72,139,0,15,182,0,15,190,192, 37,192,0,0,0,61,128,0,0,0,117,18,72,139,69,248,72,139,0,72,141,80,255,72,139,69,248,72,137,16,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,243,15,16,77,252,243,15,16,5,121,162,1,0,15,46,193,115,2,235,10,15,87,192,243,15,17,69,248,235,83,243,15, 16,69,252,15,46,5,96,162,1,0,119,2,235,20,243,15,16,5,84,162,1,0,232,184,255,255,255,243,15,17,69,248,235,47,243,15,90,77,252,242,15,16,5,239,161,1,0,242,15,89,193,232,48,18,1,0,102,15,40,200,242,15,16,5,226,161,1,0,242,15,89,193,242,15,90,192,243,15, 17,69,248,243,15,16,69,248,201,195,85,72,137,229,72,131,236,32,243,15,17,69,252,15,87,201,243,15,16,69,252,15,46,193,119,2,235,49,243,15,90,77,252,242,15,16,5,173,161,1,0,242,15,89,193,232,98,18,1,0,102,15,40,200,242,15,16,5,160,161,1,0,242,15,89,193, 242,15,90,192,243,15,17,69,248,235,13,243,15,16,5,185,161,1,0,243,15,17,69,248,139,69,248,137,69,236,243,15,16,69,236,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,15,87,192,15,46,69,236,115,2,235,10,15,87,192,243,15,17,69,228,235,88,243,15,90, 69,236,232,1,18,1,0,102,15,40,200,242,15,16,5,103,161,1,0,242,15,89,200,242,15,16,5,59,161,1,0,242,15,88,193,242,15,90,192,243,15,17,69,252,15,87,192,15,46,69,252,118,2,235,12,243,15,16,69,252,243,15,17,69,232,235,8,15,87,192,243,15,17,69,232,243,15, 16,69,232,243,15,17,69,228,243,15,16,69,228,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,15,87,192,15,46,69,236,115,2,235,10,15,87,192,243,15,17,69,228,235,88,243,15,90,69,236,232,128,17,1,0,102,15,40,200,242,15,16,5,214,160,1,0,242,15,89,200, 242,15,16,5,186,160,1,0,242,15,88,193,242,15,90,192,243,15,17,69,252,15,87,192,15,46,69,252,118,2,235,12,243,15,16,69,252,243,15,17,69,232,235,8,15,87,192,243,15,17,69,232,243,15,16,69,232,243,15,17,69,228,243,15,16,69,228,201,195,85,72,137,229,72,131, 236,16,243,15,17,69,252,15,87,192,15,46,69,252,115,2,235,10,15,87,192,243,15,17,69,248,235,67,243,15,16,69,252,15,46,5,131,160,1,0,119,2,235,8,184,0,128,89,68,137,69,252,243,15,90,77,252,242,15,16,5,54,160,1,0,242,15,92,200,242,15,16,5,66,160,1,0,242, 15,89,193,232,75,16,1,0,242,15,90,192,243,15,17,69,248,243,15,16,69,248,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,15,87,192,15,46,69,252,115,2,235,10,15,87,192,243,15,17,69,248,235,67,243,15,16,69,252,15,46,5,19,160,1,0,119,2,235,8,184,0,128, 242,67,137,69,252,243,15,90,77,252,242,15,16,5,202,159,1,0,242,15,92,200,242,15,16,5,198,159,1,0,242,15,89,193,232,223,15,1,0,242,15,90,192,243,15,17,69,248,243,15,16,69,248,201,195,85,72,137,229,72,131,236,16,72,139,61,198,210,3,0,232,85,45,255,255, 72,137,69,248,72,139,125,248,72,141,53,210,130,3,0,232,111,30,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,232,241,252,255,255,72,139,69,248,72,139,120,24,232,5,32,255,255,201,195,85,72,137, 229,72,131,236,16,72,139,61,118,210,3,0,232,253,44,255,255,72,137,69,248,72,139,125,248,72,141,53,122,130,3,0,232,23,30,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,232,30,253,255,255,72,139, 69,248,72,139,120,24,232,173,31,255,255,201,195,85,72,137,229,72,131,236,16,72,139,61,38,210,3,0,232,165,44,255,255,72,137,69,248,72,139,125,248,72,141,53,34,130,3,0,232,191,29,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248, 243,15,17,69,244,243,15,16,69,244,232,174,253,255,255,72,139,69,248,72,139,120,24,232,85,31,255,255,201,195,85,72,137,229,72,131,236,16,72,139,61,214,209,3,0,232,77,44,255,255,72,137,69,248,72,139,125,248,72,141,53,202,129,3,0,232,103,29,255,255,72,139, 69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,232,213,252,255,255,72,139,69,248,72,139,120,24,232,253,30,255,255,201,195,85,72,137,229,72,131,236,16,72,139,61,134,209,3,0,232,245,43,255,255,72,137,69,248, 72,139,125,248,72,141,53,114,129,3,0,232,15,29,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,232,127,253,255,255,72,139,69,248,72,139,120,24,232,165,30,255,255,201,195,85,72,137,229,72,131, 236,16,72,139,61,54,209,3,0,232,157,43,255,255,72,137,69,248,72,139,125,248,72,141,53,26,129,3,0,232,183,28,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,232,147,253,255,255,72,139,69,248,72, 139,120,24,232,77,30,255,255,201,195,85,72,137,229,72,131,236,16,72,141,61,96,148,1,0,232,55,244,254,255,72,137,69,248,72,141,61,93,148,1,0,232,39,244,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,172,253,255,255, 184,0,0,0,0,232,93,226,254,255,72,137,5,112,208,3,0,72,141,53,194,253,255,255,72,139,61,98,208,3,0,232,209,239,254,255,72,139,61,86,208,3,0,72,139,117,248,232,134,240,254,255,72,141,61,2,148,1,0,232,199,243,254,255,72,137,199,65,185,0,0,0,0,65,184,0, 0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,164,253,255,255,184,0,0,0,0,232,253,225,254,255,72,137,5,24,208,3,0,72,141,53,186,253,255,255,72,139,61,10,208,3,0,232,113,239,254,255,72,139,61,254,207,3,0,72,139,117,248,232,38,240,254,255,72,141,61,167,147, 1,0,232,103,243,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,244,253,255,255,184,0,0,0,0,232,157,225,254,255,72,137,5,200,207,3,0,72,141,53,10,254,255,255,72,139,61,186,207,3,0,232,17,239,254,255,72,139,61,174,207, 3,0,72,139,117,248,232,198,239,254,255,72,141,61,79,147,1,0,232,7,243,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,60,253,255,255,184,0,0,0,0,232,61,225,254,255,72,137,5,96,207,3,0,72,141,53,82,253,255,255,72,139, 61,82,207,3,0,232,177,238,254,255,72,139,61,70,207,3,0,72,139,117,248,232,102,239,254,255,72,141,61,247,146,1,0,232,167,242,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,140,253,255,255,184,0,0,0,0,232,221,224,254, 255,72,137,5,16,207,3,0,72,141,53,162,253,255,255,72,139,61,2,207,3,0,232,81,238,254,255,72,139,61,246,206,3,0,72,139,117,248,232,6,239,254,255,72,141,61,159,146,1,0,232,71,242,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0, 72,141,53,132,253,255,255,184,0,0,0,0,232,125,224,254,255,72,137,5,184,206,3,0,72,141,53,154,253,255,255,72,139,61,170,206,3,0,232,241,237,254,255,72,139,61,158,206,3,0,72,139,117,248,232,166,238,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125, 232,243,15,17,69,228,72,139,125,232,232,229,40,255,255,72,137,69,248,72,139,125,248,72,141,53,98,126,3,0,232,255,25,255,255,72,139,117,248,72,131,198,52,72,139,125,248,232,123,21,255,255,72,139,85,248,184,0,0,0,0,137,66,48,72,139,85,248,139,69,228,137, 66,52,72,139,69,248,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,44,206,3,0,243,15,16,69,252,232,135,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,243,15,88, 193,72,139,69,248,72,139,120,24,232,71,27,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,243,15,88,193,72,139,69,248,72,139,120, 24,232,7,27,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,163,205,3,0,243,15,16,69,252,232,246,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,40,209, 243,15,92,208,15,40,194,72,139,69,248,72,139,120,24,232,176,26,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,40,209,243,15, 92,208,15,40,194,72,139,69,248,72,139,120,24,232,106,26,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,14,205,3,0,243,15,16,69,252,232,89,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72, 48,72,139,69,248,243,15,16,64,52,243,15,89,193,72,139,69,248,72,139,120,24,232,25,26,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16, 64,52,243,15,89,193,72,139,69,248,72,139,120,24,232,217,25,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,133,204,3,0,243,15,16,69,252,232,200,253,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15, 16,72,52,15,87,192,15,46,200,117,4,122,2,235,32,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,40,209,243,15,94,208,243,15,17,85,244,235,8,15,87,192,243,15,17,69,244,72,139,69,248,72,139,120,24,243,15,16,69,244,232,92,25,255,255,201,195, 85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,52,15,87,192,15,46,200,117,4,122,2,235,32,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,40,209,243,15,94,208,243, 15,17,85,240,235,8,15,87,192,243,15,17,69,240,72,139,69,248,72,139,120,24,243,15,16,69,240,232,240,24,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,164,203,3,0,243,15,16,69,252,232,223,252,255,255,201,195,85,72,137,229,72,131, 236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,15,87,192,15,46,200,119,2,235,30,72,139,69,248,243,15,16,72,52,72,139,69,248,243,15,16,64,48,232,216,8,1,0,243,15,17,69,244,235,8,15,87,192,243,15,17,69,244,72,139,69,248,72,139,120,24,243,15,16,69, 244,232,119,24,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,15,87,192,15,46,200,119,2,235,30,72,139,69,248,243,15,16,72,52,72,139,69,248,243,15,16,64,48,232, 112,8,1,0,243,15,17,69,240,235,8,15,87,192,243,15,17,69,240,72,139,69,248,72,139,120,24,243,15,16,69,240,232,15,24,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,203,202,3,0,243,15,16,69,252,232,254,251,255,255,201,195,85,72,137, 229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,200,119,2,235,16,72,139,69,248,243,15,16,64,48,243,15,17,69,244,235,14,72,139,69,248,243,15,16,64,52,243,15,17,69,244,72,139,69,248,72,139,120,24,243,15, 16,69,244,232,152,23,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,200,119,2,235,16,72,139,69,248,243,15,16,64,48,243,15, 17,69,240,235,14,72,139,69,248,243,15,16,64,52,243,15,17,69,240,72,139,69,248,72,139,120,24,243,15,16,69,240,232,50,23,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,246,201,3,0,243,15,16,69,252,232,33,251,255,255,201,195,85,72, 137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,193,119,2,235,16,72,139,69,248,243,15,16,64,48,243,15,17,69,244,235,14,72,139,69,248,243,15,16,64,52,243,15,17,69,244,72,139,69,248,72,139,120,24,243, 15,16,69,244,232,187,22,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,193,119,2,235,16,72,139,69,248,243,15,16,64,48,243, 15,17,69,240,235,14,72,139,69,248,243,15,16,64,52,243,15,17,69,240,72,139,69,248,72,139,120,24,243,15,16,69,240,232,85,22,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,125,232,232,71,35,255,255,72,137,69,248,72,139, 125,248,72,141,53,196,120,3,0,232,97,20,255,255,72,139,117,248,72,131,198,52,72,139,125,248,232,221,15,255,255,72,139,85,248,184,0,0,0,0,137,66,48,72,139,85,248,139,69,228,137,66,52,72,139,69,248,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72, 139,61,198,200,3,0,243,15,16,69,252,232,135,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,200,122,2,116,2,235,15,243,15,16,5,211,147,1,0,243,15,17,69,244,235,8,15,87,192, 243,15,17,69,244,72,139,69,248,72,139,120,24,243,15,16,69,244,232,136,21,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46, 200,122,2,116,2,235,15,243,15,16,5,114,147,1,0,243,15,17,69,240,235,8,15,87,192,243,15,17,69,240,72,139,69,248,72,139,120,24,243,15,16,69,240,232,39,21,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,251,199,3,0,243,15,16,69,252, 232,180,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,200,117,4,122,2,235,15,243,15,16,5,0,147,1,0,243,15,17,69,244,235,8,15,87,192,243,15,17,69,244,72,139,69,248,72,139, 120,24,243,15,16,69,244,232,181,20,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,200,117,4,122,2,235,15,243,15,16,5,159, 146,1,0,243,15,17,69,240,235,8,15,87,192,243,15,17,69,240,72,139,69,248,72,139,120,24,243,15,16,69,240,232,84,20,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,48,199,3,0,243,15,16,69,252,232,225,253,255,255,201,195,85,72,137, 229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,200,119,2,235,15,243,15,16,5,47,146,1,0,243,15,17,69,244,235,8,15,87,192,243,15,17,69,244,72,139,69,248,72,139,120,24,243,15,16,69,244,232,228,19,255,255, 201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,200,119,2,235,15,243,15,16,5,208,145,1,0,243,15,17,69,240,235,8,15,87,192,243,15, 17,69,240,72,139,69,248,72,139,120,24,243,15,16,69,240,232,133,19,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,105,198,3,0,243,15,16,69,252,232,18,253,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248, 243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,193,119,2,235,15,243,15,16,5,96,145,1,0,243,15,17,69,244,235,8,15,87,192,243,15,17,69,244,72,139,69,248,72,139,120,24,243,15,16,69,244,232,21,19,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125, 248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,193,119,2,235,15,243,15,16,5,1,145,1,0,243,15,17,69,240,235,8,15,87,192,243,15,17,69,240,72,139,69,248,72,139,120,24,243,15,16,69, 240,232,182,18,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,162,197,3,0,243,15,16,69,252,232,67,252,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46, 200,115,2,235,15,243,15,16,5,145,144,1,0,243,15,17,69,244,235,8,15,87,192,243,15,17,69,244,72,139,69,248,72,139,120,24,243,15,16,69,244,232,70,18,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137, 66,48,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,200,115,2,235,15,243,15,16,5,50,144,1,0,243,15,17,69,240,235,8,15,87,192,243,15,17,69,240,72,139,69,248,72,139,120,24,243,15,16,69,240,232,231,17,255,255,201,195,85,72,137,229,72, 131,236,16,243,15,17,69,252,72,139,61,219,196,3,0,243,15,16,69,252,232,116,251,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15,46,193,115,2,235,15,243,15,16,5,194,143,1,0,243,15, 17,69,244,235,8,15,87,192,243,15,17,69,244,72,139,69,248,72,139,120,24,243,15,16,69,244,232,119,17,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,72,139,69, 248,243,15,16,64,52,15,46,193,115,2,235,15,243,15,16,5,99,143,1,0,243,15,17,69,240,235,8,15,87,192,243,15,17,69,240,72,139,69,248,72,139,120,24,243,15,16,69,240,232,24,17,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72, 139,125,232,232,10,30,255,255,72,137,69,248,72,139,125,248,72,141,53,135,115,3,0,232,36,15,255,255,72,139,117,248,72,131,198,52,72,139,125,248,232,160,10,255,255,72,139,85,248,184,0,0,0,0,137,66,48,72,139,85,248,139,69,228,137,66,52,72,139,69,248,201, 195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,185,195,3,0,243,15,16,69,252,232,135,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,64,48,243,15,44,208,72,139,69,248,243,15,16,64,52,243,15,44,192,33, 208,243,15,42,192,72,139,69,248,72,139,120,24,232,98,16,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,64,48,243,15,44,208,72,139,69,248,243,15,16,64,52,243,15,44, 192,33,208,243,15,42,192,72,139,69,248,72,139,120,24,232,24,16,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,28,195,3,0,243,15,16,69,252,232,226,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243, 15,16,64,48,243,15,44,192,133,192,116,26,72,139,69,248,243,15,16,64,52,243,15,44,192,133,192,116,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,243,15,42,69,244,72,139,69,248,72,139,120,24,232,166,15,255,255,201,195,85,72,137,229,72,131,236,16,72,137, 125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,64,48,243,15,44,192,133,192,116,26,72,139,69,248,243,15,16,64,52,243,15,44,192,133,192,116,9,199,69,240,1,0,0,0,235,7,199,69,240,0,0,0,0,243,15,42,69,240,72,139,69,248, 72,139,120,24,232,69,15,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,81,194,3,0,243,15,16,69,252,232,15,254,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,64,48,243,15,44,208,72,139,69,248, 243,15,16,64,52,243,15,44,192,9,208,243,15,42,192,72,139,69,248,72,139,120,24,232,234,14,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,64,48,243,15,44,208,72,139, 69,248,243,15,16,64,52,243,15,44,192,9,208,243,15,42,192,72,139,69,248,72,139,120,24,232,160,14,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,180,193,3,0,243,15,16,69,252,232,106,253,255,255,201,195,85,72,137,229,72,131,236,16, 72,137,125,248,72,139,69,248,243,15,16,64,48,243,15,44,192,133,192,117,17,72,139,69,248,243,15,16,64,52,243,15,44,192,133,192,116,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,243,15,42,69,244,72,139,69,248,72,139,120,24,232,46,14,255,255,201,195,85, 72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,64,48,243,15,44,192,133,192,117,17,72,139,69,248,243,15,16,64,52,243,15,44,192,133,192,116,9,199,69,240,1,0,0,0,235,7,199,69,240,0,0,0, 0,243,15,42,69,240,72,139,69,248,72,139,120,24,232,205,13,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,233,192,3,0,243,15,16,69,252,232,151,252,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15, 16,64,48,243,15,44,208,72,139,69,248,243,15,16,64,52,243,15,44,200,137,208,211,224,243,15,42,192,72,139,69,248,72,139,120,24,232,112,13,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72, 139,69,248,243,15,16,64,48,243,15,44,208,72,139,69,248,243,15,16,64,52,243,15,44,200,137,208,211,224,243,15,42,192,72,139,69,248,72,139,120,24,232,36,13,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,72,192,3,0,243,15,16,69,252, 232,238,251,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,64,48,243,15,44,208,72,139,69,248,243,15,16,64,52,243,15,44,200,137,208,211,248,243,15,42,192,72,139,69,248,72,139,120,24,232,199,12,255,255,201,195,85,72, 137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,64,48,243,15,44,208,72,139,69,248,243,15,16,64,52,243,15,44,200,137,208,211,248,243,15,42,192,72,139,69,248,72,139,120,24,232,123,12,255, 255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,167,191,3,0,243,15,16,69,252,232,69,251,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,243,15,16,64,52,243,15,44,192,137,69,252,72,139,69,232,243,15,16,64,48, 243,15,44,192,137,69,224,131,125,252,0,116,8,139,69,252,137,69,228,235,7,199,69,228,1,0,0,0,139,85,224,137,208,193,250,31,247,125,228,137,208,243,15,42,192,72,139,69,232,72,139,120,24,232,250,11,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125, 232,243,15,17,69,228,72,139,69,232,243,15,16,64,52,243,15,44,192,137,69,252,72,139,85,232,139,69,228,137,66,48,72,139,69,232,243,15,16,64,48,243,15,44,192,137,69,220,131,125,252,0,116,8,139,69,252,137,69,224,235,7,199,69,224,1,0,0,0,139,85,220,137,208, 193,250,31,247,125,224,137,208,243,15,42,192,72,139,69,232,72,139,120,24,232,138,11,255,255,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,72,139,61,190,190,3,0,243,15,16,69,252,232,84,250,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125, 232,72,139,69,232,243,15,16,64,52,243,15,44,192,137,69,252,131,125,252,0,121,5,247,93,252,235,13,131,125,252,0,117,7,199,69,252,1,0,0,0,72,139,69,232,243,15,16,64,48,243,15,44,208,137,208,193,250,31,247,125,252,137,85,248,131,125,248,0,121,6,139,69,252, 1,69,248,243,15,42,69,248,72,139,69,232,72,139,120,24,232,254,10,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,139,85,244,137,80,48,72,139,125,248,232,112,255,255,255,201,195,85,72,137,229,72,131,236,16,243, 15,17,69,252,72,139,61,20,190,3,0,243,15,16,69,252,232,162,249,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,243,15,16,64,48,243,15,44,192,137,69,252,72,139,69,232,243,15,16,64,52,243,15,44,192,137,69,248,131,125,248,0,121, 5,247,93,248,235,13,131,125,248,0,117,7,199,69,248,1,0,0,0,131,125,252,0,121,8,139,69,248,255,200,41,69,252,139,85,252,137,208,193,250,31,247,125,248,137,69,244,243,15,42,69,244,72,139,69,232,72,139,120,24,232,68,10,255,255,201,195,85,72,137,229,72,131, 236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,139,85,244,137,80,48,72,139,125,248,232,104,255,255,255,201,195,85,72,137,229,72,131,236,16,72,139,61,103,189,3,0,232,22,23,255,255,72,137,69,248,72,139,125,248,72,141,53,147,108,3,0,232,48,8,255,255, 72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,232,169,250,0,0,72,139,69,248,72,139,120,24,232,198,9,255,255,201,195,85,72,137,229,72,131,236,16,72,139,61,23,189,3,0,232,190,22,255,255,72,137,69,248, 72,139,125,248,72,141,53,59,108,3,0,232,216,7,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,232,203,248,0,0,72,139,69,248,72,139,120,24,232,110,9,255,255,201,195,85,72,137,229,72,131,236,16, 72,139,61,199,188,3,0,232,102,22,255,255,72,137,69,248,72,139,125,248,72,141,53,227,107,3,0,232,128,7,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243,15,16,69,228,232,115,248,0,0,243,15,17,69,252,15,87,192, 15,46,69,252,117,4,122,2,235,25,243,15,16,69,228,232,221,249,0,0,15,40,200,243,15,94,77,252,243,15,17,77,224,235,8,15,87,192,243,15,17,69,224,243,15,16,77,224,243,15,17,77,248,72,139,69,232,72,139,120,24,243,15,16,69,248,232,212,8,255,255,201,195,85, 72,137,229,72,131,236,16,72,139,61,53,188,3,0,232,204,21,255,255,72,137,69,248,72,139,125,248,72,141,53,73,107,3,0,232,230,6,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,232,157,247,0,0,72, 139,69,248,72,139,120,24,232,124,8,255,255,201,195,85,72,137,229,72,131,236,16,72,139,61,229,187,3,0,232,116,21,255,255,72,137,69,248,72,139,117,248,72,131,198,48,72,139,125,248,232,26,2,255,255,72,139,85,248,184,0,0,0,0,137,66,48,72,139,125,248,72,141, 53,212,106,3,0,232,113,6,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,232,243,15,17,69,228,15,87,192,15,46,69,228,117,23,122,21,72,139,69,232,243,15,16,72,48,15,87,192,15,46,200,117,4,122,2,235,35,72,139,69,232,243,15,16,64,48, 139,69,228,15,40,200,137,69,220,243,15,16,69,220,232,240,246,0,0,243,15,17,69,224,235,8,15,87,192,243,15,17,69,224,243,15,16,69,224,243,15,17,69,252,72,139,69,232,72,139,120,24,243,15,16,69,252,232,183,7,255,255,201,195,85,72,137,229,72,131,236,16,72, 139,61,40,187,3,0,232,175,20,255,255,72,137,69,248,72,139,125,248,72,141,53,44,106,3,0,232,201,5,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,15,87,201,243,15,16,69,228,15,46,193,119,2,235,12,243,15,81,69, 228,243,15,17,69,224,235,8,15,87,192,243,15,17,69,224,243,15,16,69,224,243,15,17,69,252,72,139,69,232,72,139,120,24,243,15,16,69,252,232,55,7,255,255,201,195,85,72,137,229,72,131,236,16,72,139,61,176,186,3,0,232,47,20,255,255,72,137,69,248,72,139,125, 248,72,141,53,172,105,3,0,232,73,5,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,15,87,201,243,15,16,69,228,15,46,193,119,2,235,17,243,15,16,69,228,232,225,246,0,0,243,15,17,69,224,235,13,243,15,16,5,184,136, 1,0,243,15,17,69,224,243,15,16,69,224,243,15,17,69,252,72,139,69,232,72,139,120,24,243,15,16,69,252,232,173,6,255,255,201,195,85,72,137,229,72,131,236,16,72,139,61,46,186,3,0,232,165,19,255,255,72,137,69,248,72,139,125,248,72,141,53,34,105,3,0,232,191, 4,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243,15,90,69,228,102,15,46,5,81,136,1,0,119,2,235,8,184,74,172,174,66,137,69,228,243,15,16,69,228,232,195,245,0,0,243,15,17,69,252,72,139,69,232,72,139,120,24, 243,15,16,69,252,232,50,6,255,255,201,195,85,72,137,229,72,131,236,16,72,139,61,187,185,3,0,232,42,19,255,255,72,137,69,248,72,139,125,248,72,141,53,167,104,3,0,232,68,4,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15, 17,69,244,243,15,16,5,227,135,1,0,243,15,16,77,244,15,84,193,72,139,69,248,72,139,120,24,232,212,5,255,255,201,195,85,72,137,229,72,131,236,16,72,139,61,101,185,3,0,232,204,18,255,255,72,137,69,248,72,139,125,248,72,141,53,73,104,3,0,232,230,3,255,255, 72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,243,15,90,69,244,242,15,17,69,232,243,15,90,69,244,232,11,245,0,0,242,15,16,77,232,242,15,92,200,102,15,40,193,242,15,90,192,72,139,69,248,72,139,120,24,232,97,5,255,255, 201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,243,15,17,77,232,72,139,61,240,184,3,0,232,79,18,255,255,72,137,69,248,72,139,117,248,72,131,198,52,72,139,125,248,232,245,254,254,255,72,139,117,248,72,131,198,56,72,139,125,248,232,228,254,254,255, 72,139,125,248,72,141,53,170,103,3,0,232,71,3,255,255,72,139,85,248,139,69,236,137,66,52,72,139,85,248,139,69,232,137,66,56,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,52,15, 46,193,119,2,235,16,72,139,69,248,243,15,16,64,52,243,15,17,69,240,235,65,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,56,15,46,200,119,2,235,16,72,139,69,248,243,15,16,64,56,243,15,17,69,244,235,14,72,139,69,248,243,15,16,64,48,243,15,17, 69,244,243,15,16,69,244,243,15,17,69,240,72,139,69,248,72,139,120,24,243,15,16,69,240,232,105,4,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,72,48,72,139,69,248, 243,15,16,64,52,15,46,193,119,2,235,16,72,139,69,248,243,15,16,64,52,243,15,17,69,236,235,65,72,139,69,248,243,15,16,72,48,72,139,69,248,243,15,16,64,56,15,46,200,119,2,235,16,72,139,69,248,243,15,16,64,56,243,15,17,69,240,235,14,72,139,69,248,243,15, 16,64,48,243,15,17,69,240,243,15,16,69,240,243,15,17,69,236,72,139,69,248,72,139,120,24,243,15,16,69,236,232,208,3,255,255,201,195,85,72,137,229,83,72,131,236,24,72,141,29,95,254,255,255,72,141,61,18,122,1,0,232,178,217,254,255,72,137,199,199,68,36,8, 0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,221,199,254,255,72,137,5,32,183,3,0,72,141,53,8,255,255,255,72,139,61,18,183,3,0,232,81,213,254,255,72,141,53,107,254,255,255,72,139,61,255,182, 3,0,232,10,213,254,255,72,131,196,24,91,201,195,85,72,137,229,83,72,131,236,56,72,141,61,153,121,1,0,232,52,217,254,255,72,137,69,232,72,141,61,147,121,1,0,232,36,217,254,255,72,137,69,224,72,141,61,143,121,1,0,232,20,217,254,255,72,137,69,216,72,141, 29,115,231,255,255,72,141,61,4,83,1,0,232,253,216,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,48,199,254,255,72,137,5,115,181,3,0,72,141,53,76,231,255,255,72,139,61,101,181,3,0, 232,112,212,254,255,72,141,53,106,231,255,255,72,139,61,82,181,3,0,232,145,212,254,255,72,139,61,70,181,3,0,72,139,117,232,232,70,213,254,255,72,141,29,135,231,255,255,72,141,61,39,60,1,0,232,128,216,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0, 65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,179,198,254,255,72,137,5,254,180,3,0,72,141,53,96,231,255,255,72,139,61,240,180,3,0,232,243,211,254,255,72,141,53,132,231,255,255,72,139,61,221,180,3,0,232,20,212,254,255,72,139,61,209, 180,3,0,72,139,117,232,232,201,212,254,255,72,141,29,167,231,255,255,72,141,61,12,82,1,0,232,3,216,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,54,198,254,255,72,137,5,137,180,3, 0,72,141,53,128,231,255,255,72,139,61,123,180,3,0,232,118,211,254,255,72,141,53,158,231,255,255,72,139,61,104,180,3,0,232,151,211,254,255,72,139,61,92,180,3,0,72,139,117,232,232,76,212,254,255,72,141,29,187,231,255,255,72,141,61,233,82,1,0,232,134,215, 254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,185,197,254,255,72,137,5,20,180,3,0,72,141,53,148,231,255,255,72,139,61,6,180,3,0,232,249,210,254,255,72,141,53,222,231,255,255,72,139, 61,243,179,3,0,232,26,211,254,255,72,139,61,231,179,3,0,72,139,117,232,232,207,211,254,255,72,141,29,39,232,255,255,72,141,61,137,119,1,0,232,9,215,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222, 184,0,0,0,0,232,60,197,254,255,72,137,5,159,179,3,0,72,141,53,0,232,255,255,72,139,61,145,179,3,0,232,124,210,254,255,72,141,53,70,232,255,255,72,139,61,126,179,3,0,232,157,210,254,255,72,139,61,114,179,3,0,72,139,117,232,232,82,211,254,255,72,141,29, 139,232,255,255,72,141,61,27,82,1,0,232,140,214,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,191,196,254,255,72,137,5,42,179,3,0,72,141,53,100,232,255,255,72,139,61,28,179,3,0,232, 255,209,254,255,72,141,53,168,232,255,255,72,139,61,9,179,3,0,232,32,210,254,255,72,139,61,253,178,3,0,72,139,117,232,232,213,210,254,255,72,141,29,235,232,255,255,72,141,61,147,118,1,0,232,15,214,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65, 184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,66,196,254,255,72,137,5,181,178,3,0,72,141,53,196,232,255,255,72,139,61,167,178,3,0,232,130,209,254,255,72,141,53,8,233,255,255,72,139,61,148,178,3,0,232,163,209,254,255,72,139,61,136,178, 3,0,72,139,117,232,232,88,210,254,255,72,141,29,166,233,255,255,72,141,61,26,118,1,0,232,146,213,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,197,195,254,255,72,137,5,64,178,3,0, 72,141,53,127,233,255,255,72,139,61,50,178,3,0,232,5,209,254,255,72,141,53,190,233,255,255,72,139,61,31,178,3,0,232,38,209,254,255,72,139,61,19,178,3,0,72,139,117,224,232,219,209,254,255,72,141,29,252,233,255,255,72,141,61,160,117,1,0,232,21,213,254, 255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,72,195,254,255,72,137,5,203,177,3,0,72,141,53,213,233,255,255,72,139,61,189,177,3,0,232,136,208,254,255,72,141,53,20,234,255,255,72,139, 61,170,177,3,0,232,169,208,254,255,72,139,61,158,177,3,0,72,139,117,224,232,94,209,254,255,72,141,29,82,234,255,255,72,141,61,38,117,1,0,232,152,212,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222, 184,0,0,0,0,232,203,194,254,255,72,137,5,86,177,3,0,72,141,53,43,234,255,255,72,139,61,72,177,3,0,232,11,208,254,255,72,141,53,104,234,255,255,72,139,61,53,177,3,0,232,44,208,254,255,72,139,61,41,177,3,0,72,139,117,224,232,225,208,254,255,72,141,29,164, 234,255,255,72,141,61,171,116,1,0,232,27,212,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,78,194,254,255,72,137,5,225,176,3,0,72,141,53,125,234,255,255,72,139,61,211,176,3,0,232, 142,207,254,255,72,141,53,186,234,255,255,72,139,61,192,176,3,0,232,175,207,254,255,72,139,61,180,176,3,0,72,139,117,224,232,100,208,254,255,72,141,29,246,234,255,255,72,141,61,48,116,1,0,232,158,211,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0, 65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,209,193,254,255,72,137,5,108,176,3,0,72,141,53,207,234,255,255,72,139,61,94,176,3,0,232,17,207,254,255,72,141,53,12,235,255,255,72,139,61,75,176,3,0,232,50,207,254,255,72,139,61,63,176, 3,0,72,139,117,224,232,231,207,254,255,72,141,29,72,235,255,255,72,141,61,182,115,1,0,232,33,211,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,84,193,254,255,72,137,5,247,175,3,0, 72,141,53,33,235,255,255,72,139,61,233,175,3,0,232,148,206,254,255,72,141,53,94,235,255,255,72,139,61,214,175,3,0,232,181,206,254,255,72,139,61,202,175,3,0,72,139,117,224,232,106,207,254,255,72,141,29,245,235,255,255,72,141,61,60,115,1,0,232,164,210, 254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,215,192,254,255,72,137,5,130,175,3,0,72,141,53,206,235,255,255,72,139,61,116,175,3,0,232,23,206,254,255,72,141,53,246,235,255,255,72, 139,61,97,175,3,0,232,56,206,254,255,72,139,61,85,175,3,0,72,139,117,224,232,237,206,254,255,72,141,29,29,236,255,255,72,141,61,193,114,1,0,232,39,210,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222, 184,0,0,0,0,232,90,192,254,255,72,137,5,13,175,3,0,72,141,53,246,235,255,255,72,139,61,255,174,3,0,232,154,205,254,255,72,141,53,53,236,255,255,72,139,61,236,174,3,0,232,187,205,254,255,72,139,61,224,174,3,0,72,139,117,224,232,112,206,254,255,72,141, 29,115,236,255,255,72,141,61,71,114,1,0,232,170,209,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,221,191,254,255,72,137,5,152,174,3,0,72,141,53,76,236,255,255,72,139,61,138,174, 3,0,232,29,205,254,255,72,141,53,116,236,255,255,72,139,61,119,174,3,0,232,62,205,254,255,72,139,61,107,174,3,0,72,139,117,224,232,243,205,254,255,72,141,29,155,236,255,255,72,141,61,204,113,1,0,232,45,209,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6, 0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,96,191,254,255,72,137,5,35,174,3,0,72,141,53,116,236,255,255,72,139,61,21,174,3,0,232,160,204,254,255,72,141,53,179,236,255,255,72,139,61,2,174,3,0,232,193,204,254,255,72,139,61, 246,173,3,0,72,139,117,224,232,118,205,254,255,72,141,29,241,236,255,255,72,141,61,82,113,1,0,232,176,208,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,227,190,254,255,72,137,5,174, 173,3,0,72,141,53,202,236,255,255,72,139,61,160,173,3,0,232,35,204,254,255,72,141,53,244,236,255,255,72,139,61,141,173,3,0,232,68,204,254,255,72,139,61,129,173,3,0,72,139,117,224,232,249,204,254,255,72,141,29,29,237,255,255,72,141,61,216,112,1,0,232, 51,208,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,102,190,254,255,72,137,5,57,173,3,0,72,141,53,246,236,255,255,72,139,61,43,173,3,0,232,166,203,254,255,72,141,53,32,237,255,255, 72,139,61,24,173,3,0,232,199,203,254,255,72,139,61,12,173,3,0,72,139,117,224,232,124,204,254,255,72,141,29,73,237,255,255,72,141,61,94,112,1,0,232,182,207,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137, 222,184,0,0,0,0,232,233,189,254,255,72,137,5,196,172,3,0,72,141,53,34,237,255,255,72,139,61,182,172,3,0,232,41,203,254,255,72,141,53,112,237,255,255,72,139,61,163,172,3,0,232,74,203,254,255,72,139,61,151,172,3,0,72,139,117,224,232,255,203,254,255,72, 141,29,189,237,255,255,72,141,61,227,111,1,0,232,57,207,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,108,189,254,255,72,137,5,79,172,3,0,72,141,53,150,237,255,255,72,139,61,65,172, 3,0,232,172,202,254,255,72,141,53,239,237,255,255,72,139,61,46,172,3,0,232,205,202,254,255,72,139,61,34,172,3,0,72,139,117,224,232,130,203,254,255,72,141,29,242,237,255,255,72,141,61,106,111,1,0,232,188,206,254,255,72,137,199,199,4,36,0,0,0,0,65,185, 6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,239,188,254,255,72,137,5,218,171,3,0,72,141,53,203,237,255,255,72,139,61,204,171,3,0,232,47,202,254,255,72,141,53,44,238,255,255,72,139,61,185,171,3,0,232,80,202,254,255,72,139, 61,173,171,3,0,72,139,117,224,232,5,203,254,255,72,141,61,248,110,1,0,232,70,206,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,10,238,255,255,184,0,0,0,0,232,124,188,254,255,72,137,5,111,171,3,0,72,141,53,32,238, 255,255,72,139,61,97,171,3,0,232,240,201,254,255,72,139,61,85,171,3,0,72,139,117,216,232,165,202,254,255,72,141,61,156,110,1,0,232,230,205,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,2,238,255,255,184,0,0,0,0,232, 28,188,254,255,72,137,5,23,171,3,0,72,141,53,24,238,255,255,72,139,61,9,171,3,0,232,144,201,254,255,72,139,61,253,170,3,0,72,139,117,216,232,69,202,254,255,72,141,61,64,110,1,0,232,134,205,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0, 186,0,0,0,0,72,141,53,250,237,255,255,184,0,0,0,0,232,188,187,254,255,72,137,5,191,170,3,0,72,141,53,16,238,255,255,72,139,61,177,170,3,0,232,48,201,254,255,72,139,61,165,170,3,0,72,139,117,216,232,229,201,254,255,72,141,61,228,109,1,0,232,38,205,254, 255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,52,238,255,255,184,0,0,0,0,232,92,187,254,255,72,137,5,103,170,3,0,72,141,53,74,238,255,255,72,139,61,89,170,3,0,232,208,200,254,255,72,139,61,77,170,3,0,72,139,117,216,232, 133,201,254,255,72,141,61,137,109,1,0,232,198,204,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,44,238,255,255,184,0,0,0,0,232,252,186,254,255,72,137,5,15,170,3,0,72,141,53,95,238,255,255,72,139,61,1,170,3,0,232, 112,200,254,255,72,139,61,245,169,3,0,72,139,117,216,232,37,201,254,255,72,141,61,47,109,1,0,232,102,204,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,145,238,255,255,184,0,0,0,0,232,156,186,254,255,72,137,5,183, 169,3,0,72,141,53,167,238,255,255,72,139,61,169,169,3,0,232,16,200,254,255,72,139,61,157,169,3,0,72,139,117,216,232,197,200,254,255,72,141,61,38,25,1,0,232,6,204,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,177, 238,255,255,184,0,0,0,0,232,60,186,254,255,72,137,5,95,169,3,0,72,141,53,199,238,255,255,72,139,61,81,169,3,0,232,176,199,254,255,72,139,61,69,169,3,0,72,139,117,216,232,101,200,254,255,72,141,61,116,108,1,0,232,166,203,254,255,72,137,199,65,185,0,0, 0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,219,238,255,255,184,0,0,0,0,232,220,185,254,255,72,137,5,7,169,3,0,72,141,53,241,238,255,255,72,139,61,249,168,3,0,232,80,199,254,255,72,139,61,237,168,3,0,72,139,117,216,232,5,200,254,255,72,141, 61,24,108,1,0,232,70,203,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,246,238,255,255,184,0,0,0,0,232,124,185,254,255,72,137,5,175,168,3,0,72,141,53,12,239,255,255,72,139,61,161,168,3,0,232,240,198,254,255,72,139, 61,149,168,3,0,72,139,117,216,232,165,199,254,255,72,141,61,188,107,1,0,232,230,202,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,244,238,255,255,184,0,0,0,0,232,28,185,254,255,72,137,5,87,168,3,0,72,141,53,10,239, 255,255,72,139,61,73,168,3,0,232,144,198,254,255,72,139,61,61,168,3,0,72,139,117,216,232,69,199,254,255,232,191,240,255,255,72,131,196,56,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,36,168,3,0,232,123,1,255,255,72,137,69,248,72, 139,85,248,139,69,236,137,66,48,72,139,125,248,72,141,53,238,86,3,0,232,139,242,254,255,72,139,117,248,72,131,198,48,72,139,125,248,232,7,238,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,64,48,243,15, 44,192,243,15,42,192,72,139,69,248,72,139,120,24,232,14,244,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,64,48,243,15,44,192,243,15,42,192,72,139,69,248,72,139, 120,24,232,211,243,254,255,201,195,85,72,137,229,83,72,131,236,24,72,141,29,59,255,255,255,72,141,61,148,106,1,0,232,181,201,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,232,183, 254,255,72,137,5,51,167,3,0,72,141,61,88,106,1,0,232,117,201,254,255,72,137,198,72,141,61,229,254,255,255,185,0,0,0,0,186,6,0,0,0,184,0,0,0,0,232,230,188,254,255,72,141,53,24,255,255,255,72,139,61,251,166,3,0,232,254,196,254,255,72,141,53,49,255,255, 255,72,139,61,232,166,3,0,232,31,197,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,61,204,166,3,0,232,27,0,255,255,72,137,69,248,72,139,85,248,139,69,228,137,66,48,72,139,125,248,72,141,53,142,85, 3,0,232,43,241,254,255,72,139,117,248,72,131,198,48,72,139,125,248,232,167,236,254,255,72,139,85,248,72,141,5,181,174,3,0,72,137,16,72,139,69,248,201,195,85,72,137,229,72,131,236,16,243,15,17,69,252,243,15,16,69,252,191,0,0,0,0,232,132,255,255,255,201, 195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,64,48,72,139,69,248,72,139,120,24,232,138,242,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16, 64,48,72,139,69,248,72,139,120,24,232,87,242,254,255,201,195,85,72,137,229,83,72,131,236,24,72,141,29,27,255,255,255,72,141,61,38,69,1,0,232,57,200,254,255,72,137,199,199,4,36,0,0,0,0,65,185,1,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222, 184,0,0,0,0,232,108,182,254,255,72,137,5,191,165,3,0,72,141,61,4,68,1,0,232,249,199,254,255,72,137,198,72,141,61,37,255,255,255,185,0,0,0,0,186,6,0,0,0,184,0,0,0,0,232,106,187,254,255,72,141,53,40,255,255,255,72,139,61,135,165,3,0,232,130,195,254,255, 72,141,53,57,255,255,255,72,139,61,116,165,3,0,232,163,195,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,61,89,165,3,0,232,160,254,254,255,72,137,69,248,72,139,85,248,72,139,69,224,72,137,66,48,72,139, 125,248,72,141,53,49,84,3,0,232,174,239,254,255,72,139,117,248,72,131,198,48,72,139,125,248,232,246,235,254,255,72,139,85,248,72,141,5,56,173,3,0,72,137,16,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,112,48,72, 139,69,248,72,139,120,24,232,165,241,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,85,248,72,139,69,240,72,137,66,48,72,139,69,248,72,139,112,48,72,139,69,248,72,139,120,24,232,114,241,254,255,201,195,85,72,137,229, 72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,85,248,72,139,69,240,72,137,66,48,72,139,69,248,72,139,112,48,72,139,69,248,72,139,120,24,232,56,241,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240, 137,85,236,72,137,77,224,131,125,236,0,117,11,72,139,125,248,232,74,255,255,255,235,50,72,139,69,224,139,0,131,248,2,117,19,72,139,69,224,72,139,112,8,72,139,125,248,232,79,255,255,255,235,20,72,139,77,224,139,85,236,72,139,117,240,72,139,125,248,232, 108,255,255,255,201,195,85,72,137,229,83,72,131,236,24,72,141,29,163,254,255,255,72,141,61,196,69,1,0,232,69,198,254,255,72,137,199,199,4,36,0,0,0,0,65,185,2,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,120,180,254,255,72, 137,5,211,163,3,0,72,141,53,189,254,255,255,72,139,61,197,163,3,0,232,184,193,254,255,72,141,53,205,254,255,255,72,139,61,178,163,3,0,232,243,193,254,255,72,141,53,237,254,255,255,72,139,61,159,163,3,0,232,20,194,254,255,72,131,196,24,91,201,195,85,72, 137,229,72,131,236,32,72,137,125,232,72,139,61,136,163,3,0,232,199,252,254,255,72,137,69,248,72,139,125,248,72,141,53,132,82,3,0,232,225,237,254,255,72,139,85,248,72,141,5,124,171,3,0,72,137,16,72,139,69,248,201,195,85,72,137,229,191,0,0,0,0,232,178, 255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,24,232,103,238,254,255,201,195,85,72,137,229,83,72,131,236,8,72,141,29,133,255,255,255,72,141,61,177,108,1,0,232,74,197,254,255,72,137,199,65,185,0,0,0,0,65,184,0, 0,0,0,185,48,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,132,179,254,255,72,137,5,231,162,3,0,72,141,61,252,65,1,0,232,17,197,254,255,72,137,198,72,141,61,118,255,255,255,186,0,0,0,0,184,0,0,0,0,232,135,184,254,255,72,141,53,112,255,255,255,72,139,61, 180,162,3,0,232,159,192,254,255,72,141,53,93,255,255,255,72,139,61,161,162,3,0,232,192,192,254,255,72,141,53,74,255,255,255,72,139,61,142,162,3,0,232,199,192,254,255,72,141,53,55,255,255,255,72,139,61,123,162,3,0,232,206,192,254,255,72,141,53,36,255, 255,255,72,139,61,104,162,3,0,232,213,192,254,255,72,131,196,8,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,48,72,139,64,8,72,133,192,116,17,72,139,69,248,72,139,64,48,72,139,120,8,232,38,4,255,255,201,195,85,72,137,229, 72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,64,48,72,139,64,8,72,133,192,116,22,72,139,69,248,72,139,64,48,72,139,120,8,243,15,16,69,244,232,11,4,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139, 69,248,72,139,64,48,72,139,64,8,72,133,192,116,21,72,139,69,248,72,139,64,48,72,139,120,8,72,139,117,240,232,35,4,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,64,48,72,139,64,8,72,133,192,116,21,72,139, 69,248,72,139,64,48,72,139,120,8,72,139,117,240,232,196,3,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,64,48,72,139,64,8,72,133,192,116,28,72,139,69,248,72,139,64,48,72,139,120, 8,72,139,77,224,139,85,236,72,139,117,240,232,204,3,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,64,48,72,139,64,8,72,133,192,116,28,72,139,69,248,72,139,64,48,72,139,120,8,72, 139,77,224,139,85,236,72,139,117,240,232,217,199,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,235,160,3,0,232,34,250,254,255,72,137,69,248,72,139,69,232,72,139,0,15,182,0,132,192,117,17,72,139,117,248,72,131,198,48,72,139,125, 248,232,134,231,254,255,72,139,85,248,72,139,69,232,72,137,66,48,72,139,69,248,201,195,85,72,137,229,83,72,131,236,24,72,141,29,163,255,255,255,72,141,61,18,13,1,0,232,195,194,254,255,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,56,0, 0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,246,176,254,255,72,137,5,97,160,3,0,72,141,61,130,63,1,0,232,131,194,254,255,72,137,198,72,141,61,77,255,255,255,185,0,0,0,0,186,7,0,0,0,184,0,0,0,0,232,244,181,254,255,72,141,53,204,253,255,255,72,139,61,41, 160,3,0,232,12,190,254,255,72,141,53,233,253,255,255,72,139,61,22,160,3,0,232,45,190,254,255,72,141,53,16,254,255,255,72,139,61,3,160,3,0,232,52,190,254,255,72,141,53,53,254,255,255,72,139,61,240,159,3,0,232,237,189,254,255,72,141,53,90,254,255,255,72, 139,61,221,159,3,0,232,40,190,254,255,72,141,53,141,254,255,255,72,139,61,202,159,3,0,232,47,190,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,24,232,210,234,254,255,201,195,85,72,137,229,72,131, 236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,120,24,243,15,16,69,244,232,174,235,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,120,24,72,139,117,240,232,4,236,254,255,201,195,85,72,137,229, 72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,120,24,72,139,117,240,232,214,234,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,120,24,72,139,77,224,139,85,236, 72,139,117,240,232,39,236,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,120,24,72,139,77,224,139,85,236,72,139,117,240,232,123,236,254,255,201,195,85,72,137,229,72,131,236,32,72, 137,125,232,72,139,61,203,158,3,0,232,250,247,254,255,72,137,69,248,72,139,85,248,72,139,69,232,72,137,66,48,72,139,125,248,72,139,117,232,232,156,251,254,255,72,139,125,248,190,0,0,0,0,232,253,232,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236, 16,72,137,125,248,72,139,69,248,72,139,112,48,72,139,125,248,232,111,252,254,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,207,255,255,255,76,141,37,127,255,255,255,72,141,61,210,21,1,0,232,119,192,254,255,72,137,199,199,4,36,0,0,0,0,65, 185,7,0,0,0,65,184,8,0,0,0,185,56,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,172,174,254,255,72,137,5,31,158,3,0,72,141,61,44,243,0,0,232,57,192,254,255,72,137,198,72,141,61,43,255,255,255,185,0,0,0,0,186,7,0,0,0,184,0,0,0,0,232,170,179,254,255,72,141, 53,40,254,255,255,72,139,61,231,157,3,0,232,194,187,254,255,72,141,53,48,254,255,255,72,139,61,212,157,3,0,232,227,187,254,255,72,141,53,66,254,255,255,72,139,61,193,157,3,0,232,234,187,254,255,72,141,53,82,254,255,255,72,139,61,174,157,3,0,232,163,187, 254,255,72,141,53,98,254,255,255,72,139,61,155,157,3,0,232,222,187,254,255,72,141,53,128,254,255,255,72,139,61,136,157,3,0,232,229,187,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,139, 64,48,131,248,1,117,32,72,139,69,248,243,15,16,64,56,15,46,69,244,117,17,122,15,72,139,69,248,72,139,120,64,232,100,232,254,255,235,18,72,139,69,248,72,139,120,72,243,15,16,69,244,232,81,233,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248, 72,137,117,240,72,139,69,248,139,64,48,131,248,2,117,29,72,139,69,248,72,139,64,56,72,59,69,240,117,15,72,139,69,248,72,139,120,64,232,23,232,254,255,235,17,72,139,69,248,72,139,120,72,72,139,117,240,232,126,233,254,255,201,195,85,72,137,229,72,131,236, 32,72,137,125,232,243,15,17,69,228,72,139,69,232,139,64,48,131,248,1,117,72,72,139,69,232,72,139,64,56,137,69,252,72,139,69,232,72,139,64,64,72,137,69,240,235,38,72,139,69,240,243,15,16,0,15,46,69,228,122,2,116,2,235,15,72,139,69,240,72,139,120,8,232, 173,231,254,255,235,32,72,131,69,240,16,255,77,252,131,125,252,255,117,209,72,139,69,232,72,139,120,72,243,15,16,69,228,232,140,232,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,139,69,232,139,64,48,131,248,2,117,67,72, 139,69,232,72,139,64,56,137,69,252,72,139,69,232,72,139,64,64,72,137,69,240,235,33,72,139,69,240,72,139,0,72,59,69,224,117,15,72,139,69,240,72,139,120,8,232,58,231,254,255,235,31,72,131,69,240,16,255,77,252,131,125,252,255,117,214,72,139,69,232,72,139, 120,72,72,139,117,224,232,147,232,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,56,72,137,198,72,193,230,4,72,139,69,248,72,139,120,64,232,3,218,254,255,201,195,85,72,137,229,72,131,236,80,72,137,125,200,137,117,196, 72,137,85,184,131,125,196,0,117,30,199,69,196,1,0,0,0,199,69,208,1,0,0,0,184,0,0,0,0,137,69,216,72,141,69,208,72,137,69,184,131,125,196,1,15,133,180,0,0,0,72,139,61,136,155,3,0,232,175,244,254,255,72,137,69,240,72,139,77,240,72,139,85,184,72,139,2,72, 137,65,48,72,139,66,8,72,137,65,56,72,139,125,240,72,141,53,85,74,3,0,232,178,229,254,255,72,137,194,72,139,69,240,72,137,80,64,72,139,69,184,139,0,131,248,1,117,46,72,139,117,240,72,131,198,56,72,139,125,240,232,24,225,254,255,72,139,125,240,72,141, 53,222,73,3,0,232,123,229,254,255,72,137,194,72,139,69,240,72,137,80,72,235,44,72,139,117,240,72,131,198,56,72,139,125,240,232,182,225,254,255,72,139,125,240,72,141,53,208,73,3,0,232,77,229,254,255,72,137,194,72,139,69,240,72,137,80,72,72,139,69,240, 72,137,69,176,233,245,0,0,0,72,139,61,220,154,3,0,232,251,243,254,255,72,137,69,224,139,69,196,72,99,208,72,139,69,224,72,137,80,56,139,69,196,72,152,72,137,199,72,193,231,4,232,233,214,254,255,72,137,194,72,139,69,224,72,137,80,64,72,139,69,184,139, 16,72,139,69,224,137,80,48,199,69,252,0,0,0,0,72,139,69,224,72,139,64,64,72,137,69,232,235,110,72,139,125,224,72,141,53,108,73,3,0,232,201,228,254,255,72,137,194,72,139,69,232,72,137,80,8,72,139,69,184,139,16,72,139,69,224,137,80,48,72,139,69,224,139, 64,48,131,248,1,117,25,72,139,85,184,139,117,196,139,125,252,232,104,62,254,255,72,139,69,232,243,15,17,0,235,25,72,139,85,184,139,117,196,139,125,252,232,206,62,254,255,72,137,194,72,139,69,232,72,137,16,255,69,252,72,131,69,232,16,139,69,252,59,69, 196,124,138,72,139,125,224,72,141,53,182,72,3,0,232,83,228,254,255,72,137,194,72,139,69,224,72,137,80,72,72,139,69,224,72,137,69,176,72,139,69,176,201,195,85,72,137,229,83,72,131,236,8,72,141,61,61,23,1,0,232,233,187,254,255,72,137,199,65,185,0,0,0,0, 65,184,0,0,0,0,185,80,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,33,170,254,255,72,137,5,156,153,3,0,72,141,53,19,252,255,255,72,139,61,142,153,3,0,232,149,183,254,255,72,141,53,81,252,255,255,72,139,61,123,153,3,0,232,156,183,254,255,72,141,29,117, 253,255,255,72,141,61,213,22,1,0,232,129,187,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,80,0,0,0,72,137,218,190,0,0,0,0,184,0,0,0,0,232,187,169,254,255,72,137,5,62,153,3,0,72,141,53,74,252,255,255,72,139,61,48,153,3,0,232,47,183,254,255,72, 141,53,176,252,255,255,72,139,61,29,153,3,0,232,54,183,254,255,72,141,61,118,22,1,0,232,34,187,254,255,72,137,198,72,141,61,42,253,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,147,174,254,255,72,141,61,227,91,1,0,232,248,186,254,255,72,137,198,72, 141,61,0,253,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,105,174,254,255,72,131,196,8,91,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,69,232,139,64,48,131,248,2,15,133,132,0,0,0,72,139,69,232, 72,139,64,56,137,69,252,72,139,69,232,72,139,64,64,72,137,69,240,235,98,72,139,69,240,72,139,0,72,59,69,224,117,80,131,125,220,0,126,47,72,139,69,208,139,0,131,248,2,117,36,72,139,77,208,72,131,193,16,139,85,220,255,202,72,139,69,208,72,139,112,8,72, 139,69,240,72,139,120,8,232,200,229,254,255,235,65,72,139,69,240,72,139,120,8,72,139,77,208,139,85,220,190,0,0,0,0,232,40,229,254,255,235,38,72,131,69,240,16,255,77,252,131,125,252,255,117,149,72,139,69,232,72,139,120,72,72,139,77,208,139,85,220,72,139, 117,224,232,133,229,254,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,69,232,139,64,48,131,248,1,15,133,206,0,0,0,131,125,220,0,15,132,131,2,0,0,72,139,69,208,139,0,131,248,1,15,133,91,2,0,0,72, 139,125,208,232,127,58,254,255,243,15,17,69,248,72,139,69,232,72,139,64,56,137,69,252,72,139,69,232,72,139,64,64,72,137,69,240,235,124,72,139,69,240,243,15,16,0,15,46,69,248,122,2,116,2,235,101,131,125,220,1,126,59,72,139,69,208,72,131,192,16,139,0,131, 248,2,117,44,72,139,77,208,72,131,193,32,139,85,220,131,234,2,72,139,69,208,72,131,192,16,72,139,112,8,72,139,69,240,72,139,120,8,232,206,228,254,255,233,250,1,0,0,72,139,77,208,72,131,193,16,139,85,220,255,202,72,139,69,240,72,139,120,8,190,0,0,0,0, 232,37,228,254,255,233,214,1,0,0,72,131,69,240,16,255,77,252,131,125,252,255,15,133,119,255,255,255,233,166,1,0,0,131,125,220,1,15,142,149,0,0,0,72,139,69,232,72,139,64,56,137,69,252,72,139,69,232,72,139,64,64,72,137,69,240,235,110,72,139,69,240,72,139, 16,72,141,5,226,69,3,0,72,57,194,117,86,131,125,220,0,126,50,72,139,69,208,139,0,131,248,2,117,39,72,139,77,208,72,131,193,16,139,85,220,255,202,72,139,69,208,72,139,112,8,72,139,69,240,72,139,120,8,232,37,228,254,255,233,81,1,0,0,72,139,69,240,72,139, 120,8,72,139,77,208,139,85,220,190,0,0,0,0,232,130,227,254,255,233,51,1,0,0,72,131,69,240,16,255,77,252,131,125,252,255,117,137,233,7,1,0,0,131,125,220,0,117,81,72,139,69,232,72,139,64,56,137,69,252,72,139,69,232,72,139,64,64,72,137,69,240,235,42,72, 139,69,240,72,139,16,72,141,5,39,69,3,0,72,57,194,117,18,72,139,69,240,72,139,120,8,232,58,225,254,255,233,220,0,0,0,72,131,69,240,16,255,77,252,131,125,252,255,117,205,233,176,0,0,0,72,139,69,208,139,0,131,248,1,117,84,72,139,69,232,72,139,64,56,137, 69,252,72,139,69,232,72,139,64,64,72,137,69,240,235,48,72,139,69,240,72,139,16,72,141,5,139,68,3,0,72,57,194,117,24,72,139,69,208,243,15,16,64,8,72,139,69,240,72,139,120,8,232,214,225,254,255,235,122,72,131,69,240,16,255,77,252,131,125,252,255,117,199, 235,81,72,139,69,232,72,139,64,56,137,69,252,72,139,69,232,72,139,64,64,72,137,69,240,235,47,72,139,69,240,72,139,16,72,141,5,87,68,3,0,72,57,194,117,23,72,139,69,208,72,139,112,8,72,139,69,240,72,139,120,8,232,252,225,254,255,235,39,72,131,69,240,16, 255,77,252,131,125,252,255,117,200,72,139,69,232,72,139,120,72,72,139,77,208,139,85,220,190,0,0,0,0,232,74,226,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,56,72,137,198,72,193,230,4,72,139,69,248,72,139,120,64,232, 67,211,254,255,201,195,85,72,137,229,72,131,236,80,72,137,125,200,137,117,196,72,137,85,184,72,139,61,6,149,3,0,232,29,238,254,255,72,137,69,232,131,125,196,0,117,30,199,69,196,1,0,0,0,199,69,208,1,0,0,0,184,0,0,0,0,137,69,216,72,141,69,208,72,137,69, 184,72,139,69,184,139,16,72,139,69,232,137,80,48,139,69,196,72,99,208,72,139,69,232,72,137,80,56,139,69,196,72,152,72,137,199,72,193,231,4,232,218,208,254,255,72,137,194,72,139,69,232,72,137,80,64,199,69,252,0,0,0,0,72,139,69,232,72,139,64,64,72,137, 69,240,235,97,72,139,125,232,72,141,53,138,67,3,0,232,199,222,254,255,72,137,194,72,139,69,240,72,137,80,8,72,139,69,232,139,64,48,131,248,1,117,25,72,139,85,184,139,117,196,139,125,252,232,115,56,254,255,72,139,69,240,243,15,17,0,235,25,72,139,85,184, 139,117,196,139,125,252,232,217,56,254,255,72,137,194,72,139,69,240,72,137,16,255,69,252,72,131,69,240,16,139,69,252,59,69,196,124,151,131,125,196,1,117,53,72,139,69,184,139,0,131,248,1,117,22,72,139,69,232,72,139,64,64,72,137,198,72,139,125,232,232, 214,217,254,255,235,20,72,139,69,232,72,139,64,64,72,137,198,72,139,125,232,232,140,218,254,255,72,139,125,232,72,141,53,230,66,3,0,232,35,222,254,255,72,137,194,72,139,69,232,72,137,80,72,72,139,69,232,201,195,85,72,137,229,65,84,83,72,131,236,16,72, 141,29,108,254,255,255,76,141,37,143,254,255,255,72,141,61,160,86,1,0,232,177,181,254,255,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,80,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,230,163,254,255,72,137,5,113,147,3,0,72,141,53,106, 251,255,255,72,139,61,99,147,3,0,232,142,177,254,255,72,141,53,146,250,255,255,72,139,61,80,147,3,0,232,149,177,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,196,128,72,137,125,152,137,117,148,72,137,85,136,72,139,61,48,147,3,0,232,63,236, 254,255,72,137,69,232,199,69,248,0,0,0,0,131,125,148,0,117,60,72,141,69,160,72,137,69,136,199,69,148,2,0,0,0,199,69,160,1,0,0,0,184,0,0,0,0,137,69,168,72,141,69,160,72,131,192,16,199,0,1,0,0,0,72,141,69,160,72,141,80,16,184,0,0,0,0,137,66,8,139,69,148, 72,99,208,72,139,69,232,72,137,80,48,139,69,148,72,152,72,137,199,72,193,231,4,232,228,206,254,255,72,137,194,72,139,69,232,72,137,80,56,72,139,69,232,72,139,64,56,72,137,69,216,139,69,148,72,152,72,137,199,72,193,231,4,232,188,206,254,255,72,137,194, 72,139,69,232,72,137,80,80,139,69,148,137,69,244,72,139,69,136,72,137,69,224,235,37,72,139,69,224,139,0,131,248,2,117,21,72,139,69,224,72,139,64,8,72,139,0,15,182,0,60,112,117,3,255,69,248,72,131,69,224,16,255,77,244,131,125,244,255,117,210,139,69,248, 72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,199,232,88,206,254,255,72,137,194,72,139,69,232,72,137,80,72,72,139,69,232,72,139,64,72,72,137,69,200,139,69,248,72,99,208,72,139,69,232,72,137,80,64,199,69,244,0,0,0,0,72,139,69,232,72,139,64, 56,72,137,69,208,72,139,69,136,72,137,69,224,233,63,1,0,0,72,139,69,224,139,0,131,248,1,117,54,72,139,77,208,72,139,85,224,72,139,2,72,137,1,72,139,66,8,72,137,65,8,131,125,244,0,15,132,7,1,0,0,72,139,117,208,72,131,198,8,72,139,125,232,232,129,215,254, 255,233,241,0,0,0,72,139,69,224,139,0,131,248,2,15,133,226,0,0,0,72,139,69,224,72,139,64,8,72,139,0,15,182,0,136,69,255,128,125,255,115,117,57,72,139,69,208,199,0,2,0,0,0,72,139,85,208,72,141,5,50,64,3,0,72,137,66,8,131,125,244,0,15,132,168,0,0,0,72, 139,117,208,72,131,198,8,72,139,125,232,232,238,215,254,255,233,146,0,0,0,128,125,255,112,117,57,72,139,69,208,199,0,3,0,0,0,72,139,85,208,72,139,69,200,72,137,66,8,72,139,125,200,232,242,132,253,255,131,125,244,0,116,13,72,139,125,232,72,139,117,200, 232,26,214,254,255,72,131,69,200,24,235,83,128,125,255,102,116,32,72,139,69,224,72,139,64,8,72,139,16,72,139,125,232,72,141,53,233,83,1,0,184,0,0,0,0,232,193,172,255,255,72,139,69,208,199,0,1,0,0,0,72,139,85,208,184,0,0,0,0,137,66,8,131,125,244,0,116, 17,72,139,117,208,72,131,198,8,72,139,125,232,232,139,214,254,255,255,69,244,72,131,69,224,16,72,131,69,208,16,139,69,244,59,69,148,15,140,181,254,255,255,72,139,125,232,72,141,53,152,63,3,0,232,213,218,254,255,72,139,69,232,201,195,85,72,137,229,72, 131,236,48,72,137,125,216,199,69,248,0,0,0,0,72,139,69,216,72,139,64,48,72,193,224,4,137,69,244,72,139,69,216,72,139,64,64,137,69,252,72,139,69,216,72,139,64,72,72,137,69,232,235,49,72,139,125,232,190,1,0,0,0,232,113,129,253,255,133,192,117,26,72,139, 125,216,72,141,53,62,83,1,0,184,0,0,0,0,232,3,172,255,255,233,242,0,0,0,72,131,69,232,24,255,77,252,131,125,252,255,117,198,72,139,69,216,72,139,64,80,72,133,192,117,54,72,139,69,216,72,139,64,64,72,133,192,116,17,72,141,61,23,83,1,0,184,0,0,0,0,232, 155,165,255,255,139,69,244,72,99,248,232,7,204,254,255,72,137,69,224,199,69,248,1,0,0,0,235,24,72,139,69,216,72,139,64,80,72,137,69,224,72,139,69,216,72,199,64,80,0,0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,193,255,255,255,255,139, 69,244,72,99,208,72,139,69,216,72,139,112,56,72,139,125,224,232,82,202,0,0,235,23,139,69,244,72,99,208,72,139,69,216,72,139,112,56,72,139,125,224,232,71,0,0,0,72,139,69,216,72,139,64,48,137,194,72,139,69,216,72,139,120,24,72,139,77,224,72,141,53,92,62, 3,0,232,77,220,254,255,131,125,248,0,116,17,139,69,244,72,99,240,72,139,125,224,232,91,205,254,255,235,12,72,139,85,216,72,139,69,224,72,137,66,80,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255, 255,72,139,85,232,72,139,117,240,72,139,125,248,232,198,201,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,64,56,139,0,131,248,3,117,87,72,139,69,248,72,139,120,72,232,131,129,253,255,72,139,69,248,72,139,72, 72,72,139,85,240,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,139,66,16,72,137,65,16,72,139,69,240,72,139,64,16,72,133,192,116,16,72,139,69,240,72,139,80,16,139,66,12,255,192,137,66,12,72,139,125,248,232,3,254,255,255,235,21,72,139,125,248,72,141,53, 217,81,1,0,184,0,0,0,0,232,81,170,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,64,56,139,0,131,248,1,117,25,72,139,69,248,72,139,80,56,139,69,244,137,66,8,72,139,125,248,232,179,253,255,255,235,21,72, 139,125,248,72,141,53,162,81,1,0,184,0,0,0,0,232,1,170,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,64,56,139,0,131,248,2,117,27,72,139,69,248,72,139,80,56,72,139,69,240,72,137,66,8,72,139,125,248,232, 98,253,255,255,235,21,72,139,125,248,72,141,53,104,81,1,0,184,0,0,0,0,232,176,169,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,125,248,72,139,77,224,139,85,236,190,0,0,0,0,232,244,212,254,255, 201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,139,69,220,255,192,72,152,72,137,199,72,193,231,4,232,163,201,254,255,72,137,69,240,199,69,252,0,0,0,0,235,54,72,139,85,240,72,131,194,16,139,69,252,72,152,72, 193,224,4,72,141,12,2,139,69,252,72,152,72,193,224,4,72,137,194,72,3,85,208,72,139,2,72,137,1,72,139,66,8,72,137,65,8,255,69,252,139,69,252,59,69,220,124,194,72,139,69,240,199,0,2,0,0,0,72,139,85,240,72,139,69,224,72,137,66,8,139,85,220,255,194,72,139, 125,232,72,139,77,240,190,0,0,0,0,232,80,212,254,255,139,69,220,255,192,72,152,72,137,198,72,193,230,4,72,139,125,240,232,8,203,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,72,139,64,72,72,137,69,240,72,139,69,232,72,139,64, 64,137,69,252,235,14,72,139,125,240,232,106,127,253,255,72,131,69,240,24,255,77,252,131,125,252,255,117,233,72,139,69,232,72,139,64,48,72,137,198,72,193,230,4,72,139,69,232,72,139,120,56,232,174,202,254,255,72,139,69,232,72,139,64,48,72,137,198,72,193, 230,4,72,139,69,232,72,139,120,80,232,146,202,254,255,72,139,69,232,72,139,64,64,72,137,194,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,198,72,139,69,232,72,139,120,72,232,106,202,254,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,80, 255,255,255,76,141,37,236,248,255,255,72,141,61,205,79,1,0,232,48,174,254,255,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,88,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,101,156,254,255,72,137,5,248,139,3,0,72,141,53,100,251,255,255, 72,139,61,234,139,3,0,232,165,169,254,255,72,141,53,218,252,255,255,72,139,61,215,139,3,0,232,172,169,254,255,72,141,53,84,253,255,255,72,139,61,196,139,3,0,232,179,169,254,255,72,141,53,145,253,255,255,72,139,61,177,139,3,0,232,186,169,254,255,72,141, 53,207,253,255,255,72,139,61,158,139,3,0,232,193,169,254,255,72,141,53,234,253,255,255,72,139,61,139,139,3,0,232,200,169,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,112,72,137,125,168,137,117,164,72,137,85,152,72,139,61,107,139,3, 0,232,114,228,254,255,72,137,69,232,131,125,164,0,117,60,72,141,69,176,72,137,69,152,199,69,164,2,0,0,0,199,69,176,1,0,0,0,184,0,0,0,0,137,69,184,72,141,69,176,72,131,192,16,199,0,1,0,0,0,72,141,69,176,72,141,80,16,184,0,0,0,0,137,66,8,139,69,164,72, 99,208,72,139,69,232,72,137,80,48,139,69,164,72,152,72,137,199,72,193,231,4,232,30,199,254,255,72,137,194,72,139,69,232,72,137,80,56,199,69,248,0,0,0,0,72,139,69,152,72,137,69,224,72,139,69,232,72,139,64,56,72,137,69,216,233,0,1,0,0,72,139,69,224,139, 0,137,69,244,131,125,244,2,15,133,187,0,0,0,72,139,69,224,72,139,64,8,72,139,0,15,182,0,136,69,255,128,125,255,115,117,42,72,139,69,216,199,0,2,0,0,0,72,139,125,232,72,141,53,79,57,3,0,232,204,212,254,255,72,137,194,72,139,69,216,72,137,80,8,233,159, 0,0,0,128,125,255,112,117,39,72,139,69,216,199,0,3,0,0,0,72,139,125,232,72,141,53,223,56,3,0,232,156,212,254,255,72,137,194,72,139,69,216,72,137,80,8,235,114,128,125,255,102,116,32,72,139,69,224,72,139,64,8,72,139,16,72,139,125,232,72,141,53,212,77,1, 0,184,0,0,0,0,232,255,165,255,255,72,139,69,216,199,0,1,0,0,0,72,139,125,232,72,141,53,178,56,3,0,232,79,212,254,255,72,137,194,72,139,69,216,72,137,80,8,235,37,72,139,69,216,199,0,1,0,0,0,72,139,125,232,72,141,53,139,56,3,0,232,40,212,254,255,72,137, 194,72,139,69,216,72,137,80,8,72,131,69,216,16,72,131,69,224,16,255,69,248,139,69,248,59,69,164,15,140,244,254,255,255,72,139,69,232,201,195,85,72,137,229,72,131,236,64,72,137,125,216,72,137,117,208,137,85,204,72,137,77,192,139,69,204,72,99,208,72,139, 69,216,72,139,64,48,72,57,194,126,11,72,139,69,216,72,139,64,48,137,69,204,139,69,204,137,69,252,72,139,69,216,72,139,80,56,139,69,252,72,152,72,193,224,4,72,141,4,2,72,137,69,232,139,69,252,72,152,72,193,224,4,72,3,69,192,72,137,69,240,235,123,72,139, 69,232,139,0,137,69,248,72,139,69,240,139,0,59,69,248,116,23,72,139,125,216,72,141,53,238,76,1,0,184,0,0,0,0,232,4,165,255,255,235,80,131,125,248,1,117,24,72,139,69,240,243,15,16,64,8,72,139,69,232,72,139,120,8,232,20,213,254,255,235,50,131,125,248,2, 117,23,72,139,69,240,72,139,112,8,72,139,69,232,72,139,120,8,232,112,213,254,255,235,21,72,139,69,240,72,139,112,8,72,139,69,232,72,139,120,8,232,78,212,254,255,72,131,109,232,16,72,131,109,240,16,255,77,252,131,125,252,255,15,133,110,255,255,255,201, 195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,139,69,220,255,192,72,152,72,137,199,72,193,231,4,232,188,196,254,255,72,137,69,240,199,69,252,0,0,0,0,235,54,72,139,85,240,72,131,194,16,139,69,252,72,152,72,193, 224,4,72,141,12,2,139,69,252,72,152,72,193,224,4,72,137,194,72,3,85,208,72,139,2,72,137,1,72,139,66,8,72,137,65,8,255,69,252,139,69,252,59,69,220,124,194,72,139,69,240,199,0,2,0,0,0,72,139,85,240,72,139,69,224,72,137,66,8,139,85,220,255,194,72,139,77, 240,72,139,125,232,190,0,0,0,0,232,99,254,255,255,139,69,220,255,192,72,152,72,137,198,72,193,230,4,72,139,125,240,232,33,198,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,48,72,137,198,72,193,230,4,72,139,69,248, 72,139,120,56,232,247,197,254,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,196,255,255,255,76,141,37,70,252,255,255,72,141,61,138,75,1,0,232,189,169,254,255,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,64,0,0,0,72,137, 218,76,137,230,184,0,0,0,0,232,242,151,254,255,72,137,5,141,135,3,0,72,141,53,194,253,255,255,72,139,61,127,135,3,0,232,154,165,254,255,72,141,53,170,254,255,255,72,139,61,108,135,3,0,232,161,165,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72, 131,236,112,72,137,125,168,137,117,164,72,137,85,152,72,139,61,76,135,3,0,232,75,224,254,255,72,137,69,232,131,125,164,0,117,66,72,141,69,176,72,137,69,152,199,69,164,2,0,0,0,199,69,176,2,0,0,0,72,141,5,240,53,3,0,72,137,69,184,72,141,69,176,72,131,192, 16,199,0,2,0,0,0,72,141,69,176,72,141,80,16,72,141,5,207,53,3,0,72,137,66,8,139,69,164,72,99,208,72,139,69,232,72,137,80,48,139,69,164,72,152,72,137,199,72,193,231,4,232,241,194,254,255,72,137,194,72,139,69,232,72,137,80,56,199,69,248,0,0,0,0,72,139, 69,152,72,137,69,224,72,139,69,232,72,139,64,56,72,137,69,216,233,158,1,0,0,72,139,69,224,139,0,137,69,244,131,125,244,2,117,19,72,139,69,224,72,139,64,8,72,139,0,15,182,0,136,69,255,235,16,131,125,244,1,117,6,198,69,255,102,235,4,198,69,255,0,128,125, 255,112,117,42,72,139,69,216,199,0,3,0,0,0,72,139,125,232,72,141,53,212,52,3,0,232,145,208,254,255,72,137,194,72,139,69,216,72,137,80,8,233,47,1,0,0,128,125,255,102,117,42,72,139,69,216,199,0,1,0,0,0,72,139,125,232,72,141,53,196,52,3,0,232,97,208,254, 255,72,137,194,72,139,69,216,72,137,80,8,233,255,0,0,0,128,125,255,98,117,42,72,139,69,216,199,0,0,0,0,0,72,139,125,232,72,141,53,212,52,3,0,232,49,208,254,255,72,137,194,72,139,69,216,72,137,80,8,233,207,0,0,0,128,125,255,108,117,42,72,139,69,216,199, 0,4,0,0,0,72,139,125,232,72,141,53,196,52,3,0,232,1,208,254,255,72,137,194,72,139,69,216,72,137,80,8,233,159,0,0,0,128,125,255,115,117,39,72,139,69,216,199,0,2,0,0,0,72,139,125,232,72,141,53,84,52,3,0,232,209,207,254,255,72,137,194,72,139,69,216,72,137, 80,8,235,114,128,125,255,97,117,39,72,139,69,216,199,0,5,0,0,0,72,139,125,232,72,141,53,39,52,3,0,232,164,207,254,255,72,137,194,72,139,69,216,72,137,80,8,235,69,72,139,69,224,72,139,64,8,72,139,16,72,139,125,232,72,141,53,20,73,1,0,184,0,0,0,0,232,13, 161,255,255,72,139,69,216,199,0,1,0,0,0,72,139,125,232,72,141,53,192,51,3,0,232,93,207,254,255,72,137,194,72,139,69,216,72,137,80,8,72,131,69,216,16,72,131,69,224,16,255,69,248,139,69,248,59,69,164,15,140,86,254,255,255,72,139,69,232,201,195,85,72,137, 229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,69,232,72,139,64,48,137,69,252,72,139,69,232,72,139,80,56,139,69,252,72,152,72,193,224,4,72,141,4,2,72,137,69,240,233,255,0,0,0,72,139,69,240,139,0,131,248,1,117,53,131,125, 220,0,116,16,72,139,125,208,232,87,39,254,255,243,15,17,69,196,235,8,15,87,192,243,15,17,69,196,72,139,69,240,72,139,120,8,243,15,16,69,196,232,124,208,254,255,233,191,0,0,0,72,139,69,240,139,0,133,192,117,18,72,139,69,240,72,139,120,8,232,95,207,254, 255,233,163,0,0,0,72,139,69,240,139,0,131,248,2,117,51,131,125,220,0,116,15,72,139,125,208,232,73,39,254,255,72,137,69,200,235,11,72,141,5,238,50,3,0,72,137,69,200,72,139,69,240,72,139,120,8,72,139,117,200,232,152,208,254,255,235,101,72,139,69,240,139, 0,131,248,3,117,63,131,125,220,0,116,11,72,139,69,208,139,0,131,248,3,116,23,72,139,125,232,72,141,53,219,71,1,0,184,0,0,0,0,232,190,159,255,255,235,50,72,139,69,208,72,139,112,8,72,139,69,240,72,139,120,8,232,67,207,254,255,235,27,72,139,69,240,72,139, 120,8,72,139,77,208,139,85,220,72,141,53,183,50,3,0,232,168,208,254,255,72,131,109,240,16,255,77,252,131,125,252,255,15,133,239,254,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,69,232,72,139, 64,48,137,69,252,72,139,69,232,72,139,80,56,139,69,252,72,152,72,193,224,4,72,141,4,2,72,137,69,240,235,83,72,139,69,240,139,0,133,192,117,15,72,139,69,240,72,139,120,8,232,79,206,254,255,235,58,72,139,69,240,139,0,131,248,5,117,26,72,139,69,240,72,139, 120,8,72,139,77,208,139,85,220,72,139,117,224,232,160,208,254,255,235,21,72,139,125,232,72,141,53,24,71,1,0,184,0,0,0,0,232,230,158,255,255,72,131,109,240,16,255,77,252,131,125,252,255,117,159,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139, 125,248,185,0,0,0,0,186,0,0,0,0,190,0,0,0,0,232,233,253,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,199,69,240,3,0,0,0,72,139,69,224,72,137,69,248,72,141,77,240,72,139,125,232,186,1,0,0,0,190,0,0,0,0,232,177,253,255,255, 201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,199,69,240,1,0,0,0,139,69,228,137,69,248,72,141,77,240,72,139,125,232,186,1,0,0,0,190,0,0,0,0,232,122,253,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,199, 69,240,2,0,0,0,72,139,69,224,72,137,69,248,72,141,77,240,72,139,125,232,186,1,0,0,0,190,0,0,0,0,232,66,253,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,48,72,137,198,72,193,230,4,72,139,69,248,72,139,120,56,232,34, 192,254,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,196,255,255,255,76,141,37,152,250,255,255,72,141,61,231,31,1,0,232,232,163,254,255,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,64,0,0,0,72,137,218,76,137,230,184,0, 0,0,0,232,29,146,254,255,72,137,5,192,129,3,0,72,141,61,177,31,1,0,232,170,163,254,255,72,137,198,72,141,61,68,250,255,255,185,0,0,0,0,186,10,0,0,0,184,0,0,0,0,232,27,151,254,255,72,141,53,142,252,255,255,72,139,61,136,129,3,0,232,155,159,254,255,72, 141,53,110,254,255,255,72,139,61,117,129,3,0,232,32,159,254,255,72,141,53,129,254,255,255,72,139,61,98,129,3,0,232,39,159,254,255,72,141,53,166,254,255,255,72,139,61,79,129,3,0,232,46,159,254,255,72,141,53,202,254,255,255,72,139,61,60,129,3,0,232,53, 159,254,255,72,141,53,130,253,255,255,72,139,61,41,129,3,0,232,86,159,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,15,129,3,0,232,6,218,254,255,72,137,69,248,72,139,117,248,72,131,198,48,72,139,125,248, 232,172,198,254,255,72,139,125,248,190,0,0,0,0,232,17,203,254,255,72,139,85,248,139,69,236,137,66,48,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,72,48,15,87,192,15,46,200,117,4,122,2,235,13,72,139,69,248,72, 139,120,24,232,150,203,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,243,15,16,72,48,15,87,192,15,46,200,117,4,122,2,235,17,72,139,69,248,72,139,120,24,72,139,117,240,232,205,203,254,255,201,195,85,72,137,229, 72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,243,15,16,72,48,15,87,192,15,46,200,117,4,122,2,235,18,72,139,69,248,72,139,120,24,243,15,16,69,244,232,37,204,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139, 69,248,243,15,16,72,48,15,87,192,15,46,200,117,4,122,2,235,17,72,139,69,248,72,139,120,24,72,139,117,240,232,102,204,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,243,15,16,72,48,15,87, 192,15,46,200,117,4,122,2,235,24,72,139,69,248,72,139,120,24,72,139,77,224,139,85,236,72,139,117,240,232,151,204,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,243,15,16,72,48,15,87,192, 15,46,200,117,4,122,2,235,24,72,139,69,248,72,139,120,24,72,139,77,224,139,85,236,72,139,117,240,232,214,204,254,255,201,195,85,72,137,229,83,72,131,236,24,72,141,29,62,254,255,255,72,141,61,112,67,1,0,232,67,161,254,255,72,137,199,199,4,36,0,0,0,0,65, 185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,118,143,254,255,72,137,5,33,127,3,0,72,141,53,67,254,255,255,72,139,61,19,127,3,0,232,182,156,254,255,72,141,53,96,254,255,255,72,139,61,0,127,3,0,232,189,156,254,255,72,141, 53,133,254,255,255,72,139,61,237,126,3,0,232,196,156,254,255,72,141,53,172,254,255,255,72,139,61,218,126,3,0,232,203,156,254,255,72,141,53,209,254,255,255,72,139,61,199,126,3,0,232,210,156,254,255,72,141,53,4,255,255,255,72,139,61,180,126,3,0,232,217, 156,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,156,126,3,0,232,139,215,254,255,72,137,69,248,72,139,117,248,72,131,198,56,72,139,125,248,232,49,196,254,255,72,139,125,248,72,141,53,247,44,3,0,232,148,200,254, 255,72,139,125,248,72,141,53,231,44,3,0,232,132,200,254,255,72,137,194,72,139,69,248,72,137,80,48,72,139,85,248,139,69,236,137,66,56,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,243,15,16,64,56,15,46, 69,244,119,2,235,20,72,139,69,248,72,139,120,24,243,15,16,69,244,232,249,201,254,255,235,18,72,139,69,248,72,139,120,48,243,15,16,69,244,232,229,201,254,255,201,195,85,72,137,229,83,72,131,236,24,72,141,29,61,255,255,255,72,141,61,251,65,1,0,232,199, 159,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,250,141,254,255,72,137,5,173,125,3,0,72,141,53,95,255,255,255,72,139,61,159,125,3,0,232,110,155,254,255,72,131,196,24,91,201,195, 85,72,137,229,83,72,131,236,24,72,139,61,139,125,3,0,232,114,214,254,255,72,137,69,232,72,141,61,142,65,1,0,232,84,159,254,255,72,137,195,72,141,61,172,70,1,0,232,69,159,254,255,72,139,117,232,72,139,125,232,72,137,217,72,137,194,232,111,187,254,255, 72,139,125,232,72,141,53,1,44,3,0,232,94,199,254,255,72,139,69,232,199,64,48,0,0,0,0,72,139,69,232,72,131,196,24,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,199,64,48,1,0,0,0,72,139,69,248,199,64,52,255,255,255,255,235,30,72,139, 69,248,139,64,52,141,80,255,72,139,69,248,137,80,52,72,139,69,248,72,139,120,24,232,201,199,254,255,72,139,69,248,139,64,48,133,192,116,11,72,139,69,248,139,64,52,133,192,117,204,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,15, 87,192,15,46,69,244,119,2,235,8,184,0,0,0,0,137,69,244,72,139,69,248,199,64,48,1,0,0,0,243,15,16,69,244,243,15,44,208,72,139,69,248,137,80,52,235,30,72,139,69,248,139,64,52,141,80,255,72,139,69,248,137,80,52,72,139,69,248,72,139,120,24,232,82,199,254, 255,72,139,69,248,139,64,48,133,192,116,11,72,139,69,248,139,64,52,133,192,117,204,201,195,85,72,137,229,72,137,125,248,72,139,69,248,199,64,48,0,0,0,0,201,195,85,72,137,229,72,141,61,86,64,1,0,232,22,158,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0, 0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,125,254,255,255,184,0,0,0,0,232,76,140,254,255,72,137,5,7,124,3,0,72,141,53,210,254,255,255,72,139,61,249,123,3,0,232,140,153,254,255,72,141,53,25,255,255,255,72,139,61,230,123,3,0,232,173,153,254,255,72,141,61, 237,63,1,0,232,179,157,254,255,72,141,53,113,255,255,255,72,139,61,199,123,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,48,147,254,255,201,195,85,72,137,229,72,131,236,48,72,137,125,216,199,69,252,0,0,0,0,199,69,248,0,0,0,0,72,139,69,216,72,139,64,48,72, 133,192,15,132,11,1,0,0,72,139,69,216,199,64,56,0,0,0,0,72,139,69,216,72,139,64,48,72,139,0,72,137,69,240,233,221,0,0,0,131,125,248,0,117,23,72,139,69,240,15,182,0,60,37,117,12,199,69,248,1,0,0,0,233,188,0,0,0,131,125,248,0,15,132,178,0,0,0,72,139,69, 240,15,182,0,15,190,240,72,141,61,80,63,1,0,232,4,184,0,0,72,133,192,15,133,147,0,0,0,72,139,69,240,15,182,0,60,115,117,27,72,139,69,216,199,64,56,2,0,0,0,72,139,69,216,199,64,60,0,0,0,0,233,128,0,0,0,72,139,69,240,15,182,0,15,190,240,72,141,61,25,63, 1,0,232,191,183,0,0,72,133,192,116,24,72,139,69,216,199,64,56,1,0,0,0,72,139,69,216,199,64,60,0,0,0,0,235,77,72,139,69,240,15,182,0,15,190,240,72,141,61,236,62,1,0,232,140,183,0,0,72,133,192,116,24,72,139,69,216,199,64,56,1,0,0,0,72,139,69,216,199,64, 60,1,0,0,0,235,26,199,69,248,0,0,0,0,72,255,69,240,72,139,69,240,15,182,0,132,192,15,133,20,255,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,112,122,3,0,232,79,211,254,255,72,137,69,248,72,131,125,232,0,116,14,72,139,69,232,72, 139,0,15,182,0,132,192,117,16,72,141,61,126,62,1,0,232,28,156,254,255,72,137,69,232,72,139,125,248,72,141,53,199,40,3,0,232,68,196,254,255,72,139,85,248,72,139,69,232,72,137,66,48,72,139,69,248,199,64,56,0,0,0,0,72,139,69,248,199,64,60,0,0,0,0,72,139, 125,248,232,76,254,255,255,72,139,69,248,201,195,85,72,137,229,72,129,236,240,7,0,0,72,137,189,24,248,255,255,243,15,17,133,20,248,255,255,72,139,5,168,32,3,0,72,139,16,72,137,85,248,49,210,72,139,133,24,248,255,255,139,64,56,131,248,1,117,126,72,139, 133,24,248,255,255,139,64,60,133,192,116,61,243,15,16,133,20,248,255,255,243,15,44,208,72,139,133,24,248,255,255,72,139,64,48,72,139,8,72,141,189,16,252,255,255,65,137,208,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,42,180,0,0,233,144,0,0,0,243,15,90,133, 20,248,255,255,72,139,133,24,248,255,255,72,139,64,48,72,139,8,72,141,189,16,252,255,255,186,232,3,0,0,190,0,0,0,0,184,1,0,0,0,232,244,179,0,0,235,93,243,15,90,133,20,248,255,255,72,141,189,32,248,255,255,72,141,13,36,235,0,0,186,232,3,0,0,190,0,0,0, 0,184,1,0,0,0,232,200,179,0,0,72,139,133,24,248,255,255,72,139,64,48,72,139,8,72,141,133,32,248,255,255,72,141,189,16,252,255,255,73,137,192,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,149,179,0,0,15,182,133,16,252,255,255,132,192,116,31,72,141,189,16, 252,255,255,232,172,154,254,255,72,137,198,72,139,133,24,248,255,255,72,139,120,24,232,18,197,254,255,72,139,5,132,31,3,0,72,139,85,248,72,51,16,116,5,232,92,179,0,0,201,195,85,72,137,229,72,129,236,0,4,0,0,72,137,189,8,252,255,255,72,137,181,0,252,255, 255,72,139,5,84,31,3,0,72,139,16,72,137,85,248,49,210,72,139,133,8,252,255,255,139,64,56,131,248,2,117,56,72,139,133,0,252,255,255,72,139,16,72,139,133,8,252,255,255,72,139,64,48,72,139,8,72,141,189,16,252,255,255,73,137,208,186,232,3,0,0,190,0,0,0,0, 184,0,0,0,0,232,230,178,0,0,235,47,72,139,133,8,252,255,255,72,139,64,48,72,139,8,72,141,189,16,252,255,255,65,184,0,0,0,0,186,232,3,0,0,190,0,0,0,0,184,0,0,0,0,232,181,178,0,0,15,182,133,16,252,255,255,132,192,116,31,72,141,189,16,252,255,255,232,204, 153,254,255,72,137,198,72,139,133,8,252,255,255,72,139,120,24,232,50,196,254,255,72,139,5,164,30,3,0,72,139,85,248,72,51,16,116,5,232,124,178,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,85,240,72,137,80, 48,72,139,125,248,232,236,251,255,255,201,195,85,72,137,229,83,72,131,236,24,72,141,29,18,253,255,255,72,141,61,204,59,1,0,232,95,153,254,255,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,64,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232, 146,135,254,255,72,137,5,85,119,3,0,72,141,53,77,253,255,255,72,139,61,71,119,3,0,232,6,149,254,255,72,141,53,143,254,255,255,72,139,61,52,119,3,0,232,13,149,254,255,72,141,61,224,195,0,0,232,249,152,254,255,72,141,53,80,255,255,255,72,139,61,21,119, 3,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,112,142,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,234,118,3,0,232,193,207,254,255,72,137,69,248,72,139,85,248,139,69,236,137,66,60,72,139,85,248,184, 0,0,0,0,137,66,56,72,139,125,248,72,141,53,40,37,3,0,232,197,192,254,255,72,139,125,248,72,141,53,24,37,3,0,232,181,192,254,255,72,137,194,72,139,69,248,72,137,80,48,72,139,117,248,72,131,198,60,72,139,125,248,232,38,188,254,255,72,139,69,248,201,195, 85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,64,56,72,139,69,248,72,139,120,48,232,53,194,254,255,72,139,69,248,243,15,16,64,60,72,139,69,248,72,139,120,24,232,31,194,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243, 15,17,69,244,72,139,69,248,139,85,244,137,80,56,72,139,125,248,232,162,255,255,255,201,195,85,72,137,229,83,72,131,236,24,72,141,29,27,255,255,255,72,141,61,89,58,1,0,232,219,151,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,64, 0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,14,134,254,255,72,137,5,217,117,3,0,72,141,61,30,58,1,0,232,155,151,254,255,72,137,198,72,141,61,197,254,255,255,185,0,0,0,0,186,6,0,0,0,184,0,0,0,0,232,12,139,254,255,72,141,53,31,255,255,255,72,139,61,161, 117,3,0,232,36,147,254,255,72,141,53,70,255,255,255,72,139,61,142,117,3,0,232,69,147,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,118,117,3,0,232,69,206,254,255,72,137,69,248,72,139,85,248,139,69,236,137,66, 48,72,139,125,248,72,141,53,184,35,3,0,232,85,191,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,243,15,16,64,48,72,139,69,248,72,139,120,24,232,241,192,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248, 243,15,17,69,244,72,139,69,248,243,15,16,64,48,15,46,69,244,117,4,122,2,235,32,72,139,85,248,139,69,244,137,66,48,72,139,69,248,243,15,16,64,48,72,139,69,248,72,139,120,24,232,171,192,254,255,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139, 85,248,139,69,244,137,66,48,201,195,85,72,137,229,83,72,131,236,24,72,141,29,48,255,255,255,72,141,61,253,56,1,0,232,116,150,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,167,132, 254,255,72,137,5,122,116,3,0,72,141,53,38,255,255,255,72,139,61,108,116,3,0,232,231,145,254,255,72,141,53,55,255,255,255,72,139,61,89,116,3,0,232,8,146,254,255,72,141,61,245,192,0,0,232,14,150,254,255,72,141,53,94,255,255,255,72,139,61,58,116,3,0,65, 184,0,0,0,0,185,6,0,0,0,72,137,194,184,0,0,0,0,232,133,139,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,53,24,116,3,0,72,139,125,232,232,241,210,254,255,72,137,69,248,72,131,125,248,0,117,52,72,139,61,253,115,3,0, 232,188,204,254,255,72,137,69,248,72,139,85,248,184,0,0,0,0,137,66,12,72,139,69,248,199,64,8,0,0,0,0,72,139,125,248,72,139,117,232,232,83,208,254,255,72,139,69,248,139,64,8,141,80,1,72,139,69,248,137,80,8,72,139,69,248,72,131,192,12,201,195,85,72,137, 229,72,131,236,32,72,137,125,232,72,139,53,162,115,3,0,72,139,125,232,232,123,210,254,255,72,137,69,248,72,131,125,248,0,116,52,72,139,69,248,139,64,8,141,80,255,72,139,69,248,137,80,8,72,139,69,248,139,64,8,133,192,117,41,72,139,125,248,72,139,117,232, 232,236,208,254,255,72,139,125,248,232,141,204,254,255,235,17,72,141,61,148,55,1,0,184,0,0,0,0,232,148,144,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,139,53,48,115,3,0,72,139,125,232,232,9,210,254,255,72,137,69,248,72, 131,125,248,0,117,9,199,69,220,1,0,0,0,235,20,72,139,69,248,139,80,12,72,139,69,224,137,16,199,69,220,0,0,0,0,139,69,220,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,53,226,114,3,0,72,139,125,232,232,187,209,254,255,72,137, 69,248,72,131,125,248,0,117,9,199,69,224,1,0,0,0,235,17,72,139,85,248,139,69,228,137,66,12,199,69,224,0,0,0,0,139,69,224,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,148,114,3,0,232,91,203,254,255,72,137,69,248,72,139,85,248,72,139,69, 232,72,137,66,48,72,139,125,232,232,83,254,255,255,72,137,194,72,139,69,248,72,137,80,56,72,139,125,248,72,141,53,184,32,3,0,232,85,188,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,56,243,15,16,0,72, 139,69,248,72,139,120,24,232,238,189,254,255,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,80,56,139,69,244,137,2,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,48,232,76,254,255,255,201,195,85, 72,137,229,65,84,83,72,131,236,16,72,141,29,211,255,255,255,76,141,37,55,255,255,255,72,141,61,46,54,1,0,232,144,147,254,255,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185,64,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,197,129,254,255, 72,137,5,160,113,3,0,72,141,61,246,53,1,0,232,82,147,254,255,72,137,198,72,141,61,227,254,255,255,185,0,0,0,0,186,7,0,0,0,184,0,0,0,0,232,195,134,254,255,72,141,53,26,255,255,255,72,139,61,104,113,3,0,232,219,142,254,255,72,141,53,46,255,255,255,72,139, 61,85,113,3,0,232,252,142,254,255,72,141,61,160,53,1,0,232,2,147,254,255,72,137,199,65,185,0,0,0,0,65,184,1,0,0,0,185,16,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,58,129,254,255,72,137,5,29,113,3,0,72,131,196,16,91,65,92,201,195,85,72,137,229,232, 240,200,255,255,232,103,202,255,255,232,86,204,255,255,232,76,205,255,255,232,206,207,255,255,232,12,210,255,255,232,165,214,255,255,232,200,220,255,255,232,68,228,255,255,232,178,232,255,255,232,130,238,255,255,232,43,241,255,255,232,162,242,255,255, 232,90,244,255,255,232,0,249,255,255,232,127,250,255,255,232,225,251,255,255,232,183,254,255,255,201,195,85,72,137,229,72,129,236,48,20,0,0,72,137,189,232,235,255,255,72,137,181,224,235,255,255,72,137,149,216,235,255,255,72,139,5,53,23,3,0,72,139,16, 72,137,85,248,49,210,72,139,5,141,112,3,0,72,137,133,248,235,255,255,235,50,72,139,133,248,235,255,255,72,139,64,16,72,59,133,224,235,255,255,117,12,72,139,189,224,235,255,255,232,100,2,0,0,72,139,133,248,235,255,255,72,139,64,32,72,137,133,248,235,255, 255,72,131,189,248,235,255,255,0,117,196,72,139,189,216,235,255,255,232,238,172,0,0,72,131,192,50,72,61,160,15,0,0,118,46,72,141,61,112,52,1,0,184,0,0,0,0,232,90,141,255,255,72,139,181,216,235,255,255,72,141,61,73,13,1,0,184,0,0,0,0,232,66,141,255,255, 233,127,1,0,0,72,139,61,243,111,3,0,232,170,200,254,255,72,137,133,248,235,255,255,72,139,133,248,235,255,255,72,141,125,160,73,137,192,72,141,13,55,52,1,0,186,80,0,0,0,190,0,0,0,0,184,0,0,0,0,232,62,170,0,0,72,141,125,160,232,99,145,254,255,72,137,133, 240,235,255,255,72,139,189,248,235,255,255,72,139,181,240,235,255,255,232,22,204,254,255,72,139,149,248,235,255,255,72,139,133,232,235,255,255,72,137,66,8,72,139,149,248,235,255,255,72,139,133,240,235,255,255,72,137,66,24,72,139,149,248,235,255,255,72, 139,133,224,235,255,255,72,137,66,16,72,139,21,102,111,3,0,72,139,133,248,235,255,255,72,137,80,32,72,139,133,248,235,255,255,72,137,5,77,111,3,0,72,139,189,216,235,255,255,190,37,0,0,0,232,220,171,0,0,72,131,192,2,72,137,133,8,236,255,255,72,139,149, 8,236,255,255,72,139,133,216,235,255,255,72,137,209,72,41,193,72,137,200,72,137,133,0,236,255,255,72,139,149,0,236,255,255,72,139,181,216,235,255,255,72,141,189,176,251,255,255,185,232,3,0,0,232,138,169,0,0,72,139,133,0,236,255,255,198,132,5,176,251, 255,255,0,72,139,133,240,235,255,255,72,139,0,72,141,141,176,251,255,255,72,141,189,16,236,255,255,73,137,192,186,160,15,0,0,190,0,0,0,0,184,0,0,0,0,232,46,169,0,0,184,160,15,0,0,72,43,133,0,236,255,255,72,137,194,72,139,181,8,236,255,255,72,141,189, 16,236,255,255,185,160,15,0,0,232,31,169,0,0,72,141,189,16,236,255,255,232,58,40,255,255,72,139,5,20,21,3,0,72,139,85,248,72,51,16,116,5,232,236,168,0,0,201,195,85,72,137,229,72,137,125,232,72,139,5,93,110,3,0,72,59,69,232,117,17,72,139,69,232,72,139, 64,32,72,137,5,72,110,3,0,235,68,72,139,5,63,110,3,0,72,137,69,248,235,36,72,139,69,240,72,59,69,232,117,18,72,139,69,240,72,139,80,32,72,139,69,248,72,137,80,32,235,27,72,139,69,240,72,137,69,248,72,139,69,248,72,139,64,32,72,137,69,240,72,131,125,240, 0,117,201,201,195,85,72,137,229,72,131,236,32,72,137,125,232,199,69,252,1,0,0,0,235,104,199,69,252,0,0,0,0,72,139,5,221,109,3,0,72,137,69,240,235,77,72,139,69,240,72,139,64,16,72,59,69,232,117,51,72,139,117,240,72,141,61,39,50,1,0,184,0,0,0,0,232,228, 35,255,255,72,139,69,240,72,199,64,8,0,0,0,0,72,139,125,240,232,51,255,255,255,199,69,252,1,0,0,0,235,19,72,139,69,240,72,139,64,32,72,137,69,240,72,131,125,240,0,117,172,131,125,252,0,117,146,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139, 69,248,72,139,120,16,232,98,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,223,254,255,255,72,139,125,248,232,99,198,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224, 72,139,5,42,109,3,0,72,133,192,117,12,232,52,23,254,255,72,137,5,25,109,3,0,72,139,61,18,109,3,0,72,139,85,224,139,117,236,232,178,35,254,255,72,139,61,255,108,3,0,232,146,42,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,21,229,108, 3,0,72,139,69,248,72,139,64,16,72,137,198,72,139,69,248,72,139,64,8,72,137,199,232,86,67,252,255,72,139,61,195,108,3,0,232,13,23,254,255,72,199,5,179,108,3,0,0,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137, 77,224,72,139,69,248,72,139,64,8,72,133,192,116,24,72,139,69,248,72,139,120,8,72,139,77,224,139,85,236,72,139,117,240,232,190,146,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,112,24,72,139,125,248,232,197,201,254,255, 201,195,85,72,137,229,83,72,131,236,8,72,141,29,209,255,255,255,72,141,61,179,48,1,0,232,214,141,254,255,72,137,199,65,185,0,0,0,0,65,184,1,0,0,0,185,40,0,0,0,72,137,218,190,0,0,0,0,184,0,0,0,0,232,16,124,254,255,72,137,5,251,107,3,0,72,141,53,83,255, 255,255,72,139,61,237,107,3,0,232,210,137,254,255,72,141,61,141,212,0,0,232,138,141,254,255,72,141,53,125,254,255,255,72,139,61,206,107,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,7,131,254,255,72,141,61,99,227,0,0,232,94,141,254,255,72,141,53,113,254, 255,255,72,139,61,162,107,3,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,213,130,254,255,72,141,61,17,48,1,0,232,44,141,254,255,72,141,53,143,254,255,255,72,139,61,112,107,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,169,130,254,255,72,141, 61,233,47,1,0,232,0,141,254,255,72,141,53,216,253,255,255,72,139,61,68,107,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,125,130,254,255,72,131,196,8,91,201,195,85,72,137,229,72,131,236,80,72,139,5,188,17,3,0,72,139,16,72,137,85,248,49,210,72,139,61,36, 107,3,0,232,195,195,254,255,72,137,69,184,72,139,69,184,72,141,125,192,73,137,192,72,141,13,138,47,1,0,186,50,0,0,0,190,0,0,0,0,184,0,0,0,0,232,93,165,0,0,72,141,125,192,232,130,140,254,255,72,137,194,72,139,69,184,72,137,80,48,72,139,69,184,72,139,112, 48,72,139,125,184,232,51,199,254,255,72,139,125,184,72,141,53,21,25,3,0,232,146,180,254,255,72,139,69,184,72,139,21,61,17,3,0,72,139,77,248,72,51,10,116,5,232,21,165,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,131,125,224, 0,116,25,72,139,69,224,72,139,0,72,133,192,116,13,72,139,69,224,72,139,0,72,137,69,216,235,11,72,141,5,208,241,0,0,72,137,69,216,72,139,69,216,72,137,69,248,72,139,69,232,72,139,64,48,72,139,48,72,139,85,248,72,141,61,210,46,1,0,184,0,0,0,0,232,98,32, 255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,72,141,53,153,25,3,0,232,127,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139,69,248,72,139,120,24,72,139,117,240,232,16,182,254,255,201,195, 85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,112,48,72,139,125,248,232,73,199,254,255,201,195,85,72,137,229,83,72,131,236,8,72,141,29,209,255,255,255,72,141,61,105,46,1,0,232,90,139,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0, 185,56,0,0,0,72,137,218,72,141,53,99,254,255,255,184,0,0,0,0,232,146,121,254,255,72,137,5,149,105,3,0,72,141,53,78,255,255,255,72,139,61,135,105,3,0,232,210,134,254,255,72,141,53,214,254,255,255,72,139,61,116,105,3,0,232,13,135,254,255,72,141,61,188, 18,1,0,232,249,138,254,255,72,141,53,58,255,255,255,72,139,61,85,105,3,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,112,128,254,255,72,131,196,8,91,201,195,85,72,137,229,72,131,236,80,72,139,5,175,15,3,0,72,139,16,72,137,85,248,49,210,72,139, 61,31,105,3,0,232,182,193,254,255,72,137,69,184,72,139,69,184,72,141,125,192,73,137,192,72,141,13,125,45,1,0,186,50,0,0,0,190,0,0,0,0,184,0,0,0,0,232,80,163,0,0,72,141,125,192,232,117,138,254,255,72,137,194,72,139,69,184,72,137,80,56,232,16,110,250,255, 72,137,194,72,139,69,184,72,137,80,48,72,139,69,184,72,139,112,56,72,139,125,184,232,22,197,254,255,72,139,125,184,72,141,53,248,22,3,0,232,117,178,254,255,72,139,69,184,72,139,21,32,15,3,0,72,139,77,248,72,51,10,116,5,232,248,162,0,0,201,195,85,72,137, 229,72,131,236,48,72,137,125,232,72,137,117,224,72,131,125,224,0,116,25,72,139,69,224,72,139,0,72,133,192,116,13,72,139,69,224,72,139,0,72,137,69,216,235,11,72,141,5,179,239,0,0,72,137,69,216,72,139,69,216,72,137,69,248,72,139,69,232,72,139,64,56,72, 139,48,72,139,85,248,72,141,61,217,44,1,0,184,0,0,0,0,232,69,30,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,72,141,53,124,23,3,0,232,127,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,137,117,240,72,139, 69,248,72,139,120,24,72,139,117,240,232,243,179,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,112,56,72,139,125,248,232,44,197,254,255,201,195,85,72,137,229,83,72,131,236,8,72,141,29,209,255,255,255,72,141,61,112,44, 1,0,232,61,137,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,64,0,0,0,72,137,218,72,141,53,83,254,255,255,184,0,0,0,0,232,117,119,254,255,72,137,5,128,103,3,0,72,141,53,78,255,255,255,72,139,61,114,103,3,0,232,181,132,254,255,72,141,53,214,254, 255,255,72,139,61,95,103,3,0,232,240,132,254,255,72,141,61,159,16,1,0,232,220,136,254,255,72,141,53,58,255,255,255,72,139,61,64,103,3,0,65,184,0,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,83,126,254,255,72,131,196,8,91,201,195,85,72,137,229,72,131, 236,16,72,139,61,50,103,3,0,232,169,191,254,255,72,137,69,248,72,139,125,248,72,141,53,38,21,3,0,232,195,176,254,255,72,139,53,250,102,3,0,72,139,125,248,232,68,195,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69, 244,72,139,69,248,72,139,120,24,243,15,16,69,244,232,78,178,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,179,102,3,0,72,139,125,248,232,1,196,254,255,201,195,85,72,137,229,72,131,236,16,72,139,61,185,102,3,0,232,40,191,254,255, 72,137,69,248,72,139,125,248,72,141,53,165,20,3,0,232,66,176,254,255,72,139,53,129,102,3,0,72,139,125,248,232,195,194,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248,72,139,120,24,243,15,16,69,244, 232,205,177,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,58,102,3,0,72,139,125,248,232,128,195,254,255,201,195,85,72,137,229,72,131,236,16,72,139,61,64,102,3,0,232,167,190,254,255,72,137,69,248,72,139,125,248,72,141,53,36,20,3, 0,232,193,175,254,255,72,137,194,72,139,69,248,72,137,80,48,72,139,125,248,72,141,53,41,20,3,0,232,166,175,254,255,72,137,194,72,139,69,248,72,137,80,56,72,139,53,226,101,3,0,72,139,125,248,232,28,194,254,255,72,139,69,248,201,195,85,72,137,229,72,131, 236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,85,224,139,117,236,191,1,0,0,0,232,174,9,254,255,72,137,198,72,139,69,248,72,139,120,56,232,138,177,254,255,72,139,85,224,139,117,236,191,0,0,0,0,232,14,9,254,255,72,139,69,248,72,139, 120,48,232,243,176,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,104,101,3,0,72,139,125,248,232,166,194,254,255,201,195,85,72,137,229,83,72,131,236,8,72,141,29,119,254,255,255,72,141,61,84,7,1,0,232,183,134,254,255,72,137,199,65, 185,0,0,0,0,65,184,8,0,0,0,185,48,0,0,0,72,137,218,72,141,53,234,253,255,255,184,0,0,0,0,232,239,116,254,255,72,137,5,26,101,3,0,72,141,53,16,254,255,255,72,139,61,12,101,3,0,232,99,130,254,255,72,141,61,62,199,0,0,232,105,134,254,255,72,137,5,220,100, 3,0,72,141,29,144,254,255,255,72,141,61,140,41,1,0,232,79,134,254,255,72,137,199,65,185,0,0,0,0,65,184,8,0,0,0,185,48,0,0,0,72,137,218,72,141,53,3,254,255,255,184,0,0,0,0,232,135,116,254,255,72,137,5,186,100,3,0,72,141,53,41,254,255,255,72,139,61,172, 100,3,0,232,251,129,254,255,72,141,61,219,198,0,0,232,1,134,254,255,72,137,5,124,100,3,0,72,141,61,139,6,1,0,232,238,133,254,255,72,137,198,72,139,61,126,100,3,0,232,146,130,254,255,72,141,29,231,254,255,255,72,141,61,15,41,1,0,232,204,133,254,255,72, 137,199,65,185,0,0,0,0,65,184,8,0,0,0,185,64,0,0,0,72,137,218,72,141,53,1,254,255,255,184,0,0,0,0,232,4,116,254,255,72,137,5,63,100,3,0,72,141,53,77,254,255,255,72,139,61,49,100,3,0,232,172,129,254,255,72,141,61,95,198,0,0,232,126,133,254,255,72,137, 5,1,100,3,0,72,141,61,8,6,1,0,232,107,133,254,255,72,137,198,72,139,61,3,100,3,0,232,15,130,254,255,72,131,196,8,91,201,195,85,72,137,229,232,90,247,255,255,232,209,249,255,255,232,233,251,255,255,232,106,254,255,255,201,195,85,72,137,229,72,131,236, 80,72,137,125,200,137,117,196,72,137,85,184,72,139,61,203,99,3,0,232,42,188,254,255,72,137,69,240,131,125,196,0,117,28,72,141,61,211,200,0,0,232,6,133,254,255,72,137,194,72,139,69,240,72,137,80,48,233,232,0,0,0,131,125,196,1,117,92,72,139,69,184,139, 0,131,248,2,117,81,72,139,85,184,139,117,196,191,0,0,0,0,232,97,7,254,255,72,137,69,232,72,139,69,232,72,139,56,72,141,53,8,40,1,0,232,189,159,0,0,133,192,117,20,72,139,69,240,72,141,21,136,18,3,0,72,137,80,48,233,151,0,0,0,72,139,85,240,72,139,69,232, 72,137,66,48,233,134,0,0,0,232,5,13,254,255,72,137,69,216,72,139,85,184,139,117,196,72,139,125,216,232,137,25,254,255,72,141,85,252,72,141,117,224,72,139,125,216,232,196,22,254,255,139,69,252,255,192,72,99,208,139,69,252,72,99,240,72,139,125,224,232, 100,159,254,255,72,137,69,224,139,69,252,72,152,72,137,194,72,139,69,224,72,141,4,2,198,0,0,72,139,125,224,232,51,132,254,255,72,137,194,72,139,69,240,72,137,80,48,139,69,252,255,192,72,99,240,72,139,125,224,232,42,160,254,255,72,139,125,216,232,191, 12,254,255,72,139,69,240,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,48,72,139,0,15,182,0,132,192,116,13,72,141,5,44,39,1,0,72,137,69,240,235,11,72,141,5,152,177,0,0,72,137,69,240,72,139,69,248,72,139,64,48,72,139,48,72, 139,85,240,72,141,61,8,39,1,0,184,0,0,0,0,232,90,119,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,72,139,69,248,72,139,64,48,72,139,0,15,182,0,132,192,116,13,72,141,5,208,38,1,0,72,137,69,232,235,11,72,141,5,60,177,0,0,72, 137,69,232,72,139,69,248,72,139,64,48,72,139,48,72,139,85,232,72,141,61,181,38,1,0,184,0,0,0,0,232,254,118,255,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,243,15,17,69,244,243,15,90,69,244,242,15,17,69,224,72,139,69,248,72,139,64,48,72,139, 0,15,182,0,132,192,116,13,72,141,5,105,38,1,0,72,137,69,232,235,11,72,141,5,213,176,0,0,72,137,69,232,72,139,69,248,72,139,64,48,72,139,48,242,15,16,69,224,72,139,85,232,72,141,61,88,38,1,0,184,1,0,0,0,232,146,118,255,255,201,195,85,72,137,229,72,131, 236,80,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,131,125,220,0,116,44,72,139,69,208,139,0,131,248,2,116,33,72,139,69,232,72,139,64,48,72,139,48,72,141,61,195,165,0,0,184,0,0,0,0,232,136,119,255,255,233,144,0,0,0,131,125,220,1,126,16,72,141, 5,140,15,3,0,72,139,0,72,137,69,184,235,44,131,125,220,1,117,16,72,141,5,54,15,3,0,72,139,0,72,137,69,192,235,14,72,141,5,70,15,3,0,72,139,0,72,137,69,192,72,139,69,192,72,137,69,184,72,139,69,232,72,139,64,48,72,139,0,15,182,0,132,192,116,13,72,141, 5,141,37,1,0,72,137,69,200,235,11,72,141,5,249,175,0,0,72,137,69,200,72,139,69,232,72,139,64,48,72,139,48,72,139,77,184,72,139,85,200,72,141,61,132,37,1,0,184,0,0,0,0,232,243,118,255,255,72,139,117,208,139,125,220,232,46,120,255,255,232,10,121,255,255, 201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,69,224,72,139,0,72,137,69,192,72,139,69,232,72,139,64,48,72,139,0,15,182,0,132,192,116,13,72,141,5,10,37,1,0,72,137,69,200,235,11,72,141,5,118,175,0,0,72, 137,69,200,72,139,69,232,72,139,64,48,72,139,48,72,139,77,192,72,139,85,200,72,141,61,1,37,1,0,184,0,0,0,0,232,112,118,255,255,72,139,117,208,139,125,220,232,171,119,255,255,232,135,120,255,255,201,195,85,72,137,229,83,72,131,236,24,72,141,29,46,252, 255,255,72,141,61,42,197,0,0,232,93,129,254,255,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,144,111,254,255,72,137,5,211,95,3,0,72,141,53,26,253,255,255,72,139,61,197,95,3,0,232,208,124, 254,255,72,141,53,187,253,255,255,72,139,61,178,95,3,0,232,241,124,254,255,72,141,53,76,253,255,255,72,139,61,159,95,3,0,232,196,124,254,255,72,141,53,1,254,255,255,72,139,61,140,95,3,0,232,255,124,254,255,72,141,53,218,254,255,255,72,139,61,121,95,3, 0,232,6,125,254,255,72,131,196,24,91,201,195,85,72,137,229,232,65,255,255,255,201,195,85,72,137,229,137,125,236,72,137,117,224,72,137,85,216,199,69,252,0,0,0,0,235,49,139,69,252,72,152,72,193,224,4,72,137,193,72,3,77,216,139,69,252,72,152,72,193,224, 4,72,137,194,72,3,85,224,72,139,2,72,137,1,72,139,66,8,72,137,65,8,255,69,252,139,69,252,59,69,236,124,199,201,195,85,72,137,229,72,137,125,248,72,141,5,8,111,3,0,72,139,16,72,139,69,248,72,137,16,72,139,69,248,199,64,12,0,0,0,0,72,139,69,248,139,80, 12,72,139,69,248,137,80,8,72,139,69,248,72,199,64,16,0,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,199,69,252,0,0,0,0,235,83,72,139,69,232,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1,139,0,131, 248,3,117,41,72,139,69,232,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1,72,139,120,8,232,101,80,253,255,255,69,252,72,139,69,232,139,64,8,59,69,252,127,161,72,139,69,232,72,139,64,16,72,133,192,116,40,72, 139,69,232,139,64,8,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,137,198,72,139,69,232,72,139,120,16,232,143,155,254,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,125,232,232,53,255, 255,255,139,69,220,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,137,199,232,93,153,254,255,72,137,194,72,139,69,232,72,137,80,16,72,139,69,232,72,139,64,16,72,133,192,117,33,72,139,69,232,199,64,8,0,0,0,0,72,141,61,134,34,1,0,184,0,0,0, 0,232,116,118,255,255,233,62,1,0,0,72,139,69,232,139,85,220,137,80,8,72,139,69,232,199,64,12,0,0,0,0,199,69,252,0,0,0,0,233,17,1,0,0,72,139,69,232,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,1,193,139,69,252,72, 152,72,193,224,4,72,137,194,72,3,85,208,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,139,69,232,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1,139,0,131,248,3,15,133,166,0,0,0,72,139,69,232,139,64,12,141,80, 1,72,139,69,232,137,80,12,72,139,69,232,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1,72,141,112,16,72,139,69,232,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1, 72,139,120,8,232,99,78,253,255,72,139,69,232,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,52,1,72,139,69,232,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1,72,131,192, 16,72,137,70,8,255,69,252,139,69,252,59,69,220,15,140,227,254,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,125,232,232,128,253,255,255,139,69,220,255,192,72,99,208,72,137,208,72,193,224,2,72, 1,208,72,193,224,3,72,137,199,232,166,151,254,255,72,137,194,72,139,69,232,72,137,80,16,72,139,69,232,72,139,64,16,72,133,192,117,33,72,139,69,232,199,64,8,0,0,0,0,72,141,61,207,32,1,0,184,0,0,0,0,232,189,116,255,255,233,110,1,0,0,139,85,220,255,194, 72,139,69,232,137,80,8,72,139,69,232,199,64,12,0,0,0,0,72,139,69,232,72,139,64,16,199,0,2,0,0,0,72,139,69,232,72,139,80,16,72,139,69,224,72,137,66,8,199,69,252,0,0,0,0,233,33,1,0,0,72,139,69,232,72,139,64,16,72,141,72,40,139,69,252,72,99,208,72,137,208, 72,193,224,2,72,1,208,72,193,224,3,72,1,193,139,69,252,72,152,72,193,224,4,72,137,194,72,3,85,208,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,139,69,232,72,139,64,16,72,141,72,40,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72, 141,4,1,139,0,131,248,3,15,133,174,0,0,0,72,139,69,232,139,64,12,141,80,1,72,139,69,232,137,80,12,72,139,69,232,72,139,64,16,72,141,72,40,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1,72,141,112,16,72,139,69,232,72,139, 64,16,72,141,72,40,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1,72,139,120,8,232,124,76,253,255,72,139,69,232,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,52,1,72,139,69,232,72, 139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1,72,131,192,16,72,137,70,8,255,69,252,139,69,252,59,69,220,15,140,211,254,255,255,201,195,85,72,137,229,72,137,125,232,72,137,117,224,199,69,252,0,0,0,0,235,65,139, 69,252,72,152,72,193,224,4,72,137,193,72,3,77,224,72,139,69,232,72,139,112,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,20,6,72,139,2,72,137,1,72,139,66,8,72,137,65,8,255,69,252,72,139,69,232,139,64,8,59,69,252,127,179, 201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,141,5,21,106,3,0,72,139,16,72,139,69,224,72,137,16,72,139,69,232,139,80,8,72,139,69,224,137,80,8,72,139,69,232,139,80,12,72,139,69,224,137,80,12,72,139,69,224,139,64,8,72,99,208,72, 137,208,72,193,224,2,72,1,208,72,193,224,3,72,137,199,232,60,149,254,255,72,137,194,72,139,69,224,72,137,80,16,72,139,69,224,72,139,64,16,72,133,192,117,33,72,139,69,224,199,64,8,0,0,0,0,72,141,61,101,30,1,0,184,0,0,0,0,232,83,114,255,255,233,44,1,0, 0,199,69,252,0,0,0,0,233,16,1,0,0,72,139,69,224,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,1,193,72,139,69,232,72,139,112,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,20,6,72,139, 2,72,137,1,72,139,66,8,72,137,65,8,72,139,69,224,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1,139,0,131,248,3,15,133,149,0,0,0,72,139,69,224,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1, 208,72,193,224,3,72,141,4,1,72,141,112,16,72,139,69,224,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1,72,139,120,8,232,88,74,253,255,72,139,69,224,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2, 72,1,208,72,193,224,3,72,141,52,1,72,139,69,224,72,139,72,16,139,69,252,72,99,208,72,137,208,72,193,224,2,72,1,208,72,193,224,3,72,141,4,1,72,131,192,16,72,137,70,8,255,69,252,72,139,69,232,139,64,8,59,69,252,15,143,224,254,255,255,201,195,85,72,137, 229,72,141,61,55,29,1,0,232,166,121,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,24,0,0,0,186,0,0,0,0,190,0,0,0,0,184,0,0,0,0,232,222,103,254,255,72,137,194,72,141,5,38,104,3,0,72,137,16,72,141,53,240,249,255,255,72,141,5,21,104,3,0,72,139,56, 232,125,117,254,255,72,141,53,143,251,255,255,72,141,5,255,103,3,0,72,139,56,232,129,117,254,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,72,141,5,227,103,3,0,72,139,56,232,47,176,254,255,72,137,69,248,72,139,125,248, 72,131,199,48,232,171,248,255,255,72,139,125,248,72,131,199,48,72,139,77,216,139,85,228,190,0,0,0,0,232,125,249,255,255,72,139,125,248,72,141,53,230,5,3,0,232,35,161,254,255,72,139,117,248,72,131,198,48,72,139,125,248,185,0,0,0,0,186,0,0,0,0,232,9,149, 254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,96,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,139,5,154,253,2,0,72,139,16,72,137,85,248,49,210,72,139,69,200,139,64,56,3,69,188,137,69,240,131,125,240,99,127,62,139,69,240,72,152,72, 193,224,4,72,131,192,15,72,131,192,15,72,193,232,4,72,193,224,4,72,41,196,72,137,101,168,72,139,69,168,72,131,192,15,72,193,232,4,72,193,224,4,72,137,69,168,72,139,69,168,72,137,69,160,235,21,139,69,240,72,152,72,137,199,72,193,231,4,232,92,146,254,255, 72,137,69,160,72,139,85,160,72,137,85,232,72,139,85,232,72,139,117,176,139,125,188,232,105,247,255,255,72,139,69,200,139,64,60,133,192,116,80,72,139,125,200,72,131,199,48,72,141,117,208,232,139,252,255,255,139,69,188,72,152,72,193,224,4,72,137,198,72, 3,117,232,72,141,125,208,232,14,252,255,255,72,139,69,200,72,139,120,24,72,139,77,232,139,85,240,72,141,53,208,4,3,0,232,193,162,254,255,72,141,125,208,232,163,247,255,255,235,56,139,69,188,72,152,72,193,224,4,72,137,198,72,3,117,232,72,139,125,200,72, 131,199,48,232,203,251,255,255,72,139,69,200,72,139,120,24,72,139,77,232,139,85,240,72,141,53,141,4,3,0,232,126,162,254,255,131,125,240,99,126,21,139,69,240,72,152,72,137,198,72,193,230,4,72,139,125,232,232,134,147,254,255,72,139,5,94,252,2,0,72,139, 85,248,72,51,16,116,5,232,54,144,0,0,201,195,85,72,137,229,72,131,236,96,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,139,5,48,252,2,0,72,139,16,72,137,85,248,49,210,72,139,69,200,139,64,56,3,69,188,255,192,137,69,240,131,125,240,99,127, 62,139,69,240,72,152,72,193,224,4,72,131,192,15,72,131,192,15,72,193,232,4,72,193,224,4,72,41,196,72,137,101,168,72,139,69,168,72,131,192,15,72,193,232,4,72,193,224,4,72,137,69,168,72,139,69,168,72,137,69,160,235,21,139,69,240,72,152,72,137,199,72,193, 231,4,232,240,144,254,255,72,137,69,160,72,139,85,160,72,137,85,232,72,139,69,232,199,0,2,0,0,0,72,139,85,232,72,139,69,192,72,137,66,8,72,139,85,232,72,131,194,16,72,139,117,176,139,125,188,232,227,245,255,255,72,139,69,200,139,64,60,133,192,116,85, 72,139,125,200,72,131,199,48,72,141,117,208,232,5,251,255,255,72,139,85,232,72,131,194,16,139,69,188,72,152,72,193,224,4,72,141,52,2,72,141,125,208,232,131,250,255,255,72,139,69,200,72,139,120,24,72,139,77,232,139,85,240,72,141,53,69,3,3,0,232,54,161, 254,255,72,141,125,208,232,24,246,255,255,235,61,72,139,85,232,72,131,194,16,139,69,188,72,152,72,193,224,4,72,141,52,2,72,139,125,200,72,131,199,48,232,59,250,255,255,72,139,69,200,72,139,120,24,72,139,77,232,139,85,240,72,141,53,253,2,3,0,232,238,160, 254,255,131,125,240,99,126,21,139,69,240,72,152,72,137,198,72,193,230,4,72,139,125,232,232,246,145,254,255,72,139,5,206,250,2,0,72,139,85,248,72,51,16,116,5,232,166,142,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,72,131,199, 48,232,142,245,255,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,211,255,255,255,76,141,37,85,252,255,255,72,141,61,40,25,1,0,232,140,117,254,255,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,72,0,0,0,72,137,218,76,137,230, 184,0,0,0,0,232,193,99,254,255,72,137,194,72,141,5,17,100,3,0,72,137,16,72,141,53,135,252,255,255,72,141,5,0,100,3,0,72,139,56,232,96,113,254,255,72,141,53,219,253,255,255,72,141,5,234,99,3,0,72,139,56,232,100,113,254,255,72,141,5,219,99,3,0,72,139,56, 72,141,53,17,2,3,0,232,197,113,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,72,141,5,185,99,3,0,72,139,56,232,245,171,254,255,72,137,69,248,72,139,125,248,72,131,199,48,232,113,244,255,255, 72,139,125,248,72,131,199,48,72,139,77,216,139,85,228,190,0,0,0,0,232,67,245,255,255,72,139,125,248,72,141,53,172,1,3,0,232,233,156,254,255,72,139,117,248,72,131,198,48,72,139,125,248,185,0,0,0,0,186,0,0,0,0,232,207,144,254,255,72,139,69,248,201,195, 85,72,137,229,72,131,236,96,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,139,5,96,249,2,0,72,139,16,72,137,85,248,49,210,72,139,69,200,139,64,56,3,69,188,137,69,240,131,125,240,99,127,62,139,69,240,72,152,72,193,224,4,72,131,192,15,72,131, 192,15,72,193,232,4,72,193,224,4,72,41,196,72,137,101,168,72,139,69,168,72,131,192,15,72,193,232,4,72,193,224,4,72,137,69,168,72,139,69,168,72,137,69,160,235,21,139,69,240,72,152,72,137,199,72,193,231,4,232,34,142,254,255,72,137,69,160,72,139,85,160, 72,137,85,232,72,139,69,200,139,64,56,72,152,72,193,224,4,72,137,194,72,3,85,232,72,139,117,176,139,125,188,232,31,243,255,255,72,139,69,200,139,64,60,133,192,116,68,72,139,125,200,72,131,199,48,72,141,117,208,232,65,248,255,255,72,139,117,232,72,141, 125,208,232,208,247,255,255,72,139,69,200,72,139,120,24,72,139,77,232,139,85,240,72,141,53,146,0,3,0,232,131,158,254,255,72,141,125,208,232,101,243,255,255,235,44,72,139,125,200,72,131,199,48,72,139,117,232,232,153,247,255,255,72,139,69,200,72,139,120, 24,72,139,77,232,139,85,240,72,141,53,91,0,3,0,232,76,158,254,255,131,125,240,99,126,21,139,69,240,72,152,72,137,198,72,193,230,4,72,139,125,232,232,84,143,254,255,72,139,5,44,248,2,0,72,139,85,248,72,51,16,116,5,232,4,140,0,0,201,195,85,72,137,229,72, 131,236,96,72,137,125,200,72,137,117,192,137,85,188,72,137,77,176,72,139,5,254,247,2,0,72,139,16,72,137,85,248,49,210,72,139,69,200,139,64,56,3,69,188,255,192,137,69,240,131,125,240,99,127,62,139,69,240,72,152,72,193,224,4,72,131,192,15,72,131,192,15, 72,193,232,4,72,193,224,4,72,41,196,72,137,101,168,72,139,69,168,72,131,192,15,72,193,232,4,72,193,224,4,72,137,69,168,72,139,69,168,72,137,69,160,235,21,139,69,240,72,152,72,137,199,72,193,231,4,232,190,140,254,255,72,137,69,160,72,139,85,160,72,137, 85,232,72,139,69,200,139,64,56,72,152,72,193,224,4,72,3,69,232,199,0,2,0,0,0,72,139,69,200,139,64,56,72,152,72,193,224,4,72,137,194,72,3,85,232,72,139,69,192,72,137,66,8,72,139,69,200,139,64,56,72,152,72,193,224,4,72,3,69,232,72,141,80,16,72,139,117, 176,139,125,188,232,135,241,255,255,72,139,69,200,139,64,60,133,192,116,68,72,139,125,200,72,131,199,48,72,141,117,208,232,169,246,255,255,72,139,117,232,72,141,125,208,232,56,246,255,255,72,139,69,200,72,139,120,24,72,139,77,232,139,85,240,72,141,53, 250,254,2,0,232,235,156,254,255,72,141,125,208,232,205,241,255,255,235,44,72,139,125,200,72,131,199,48,72,139,117,232,232,1,246,255,255,72,139,69,200,72,139,120,24,72,139,77,232,139,85,240,72,141,53,195,254,2,0,232,180,156,254,255,131,125,240,99,126, 21,139,69,240,72,152,72,137,198,72,193,230,4,72,139,125,232,232,188,141,254,255,72,139,5,148,246,2,0,72,139,85,248,72,51,16,116,5,232,108,138,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,72,131,199,48,232,84,241,255,255,201,195, 85,72,137,229,65,84,83,72,131,236,16,72,141,29,211,255,255,255,76,141,37,85,252,255,255,72,141,61,250,20,1,0,232,82,113,254,255,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,72,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,135,95,254,255, 72,137,194,72,141,5,231,95,3,0,72,137,16,72,141,53,135,252,255,255,72,141,5,214,95,3,0,72,139,56,232,38,109,254,255,72,141,53,211,253,255,255,72,141,5,192,95,3,0,72,139,56,232,42,109,254,255,72,141,5,177,95,3,0,72,139,56,72,141,53,215,253,2,0,232,139, 109,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,141,5,141,95,3,0,72,139,56,232,193,167,254,255,72,137,69,248,72,139,125,248,72,141,53,158,253,2,0,232,219,152,254,255,72,137,194,72,139,69,248,72,137,80,56,72, 139,125,248,72,141,53,131,253,2,0,232,192,152,254,255,72,137,194,72,139,69,248,72,137,80,64,72,139,125,248,72,141,53,104,253,2,0,232,165,152,254,255,72,137,194,72,139,69,248,72,137,80,72,72,139,117,248,72,131,198,48,72,139,125,248,232,22,148,254,255, 72,139,85,248,139,69,236,137,66,48,72,139,69,248,201,195,85,72,137,229,83,72,131,236,56,72,137,125,216,72,137,117,208,137,85,204,72,137,77,192,72,139,69,216,243,15,16,64,48,243,15,44,192,137,69,236,131,125,236,0,121,7,199,69,236,0,0,0,0,139,69,204,59, 69,236,124,77,139,69,236,72,152,72,193,224,4,72,137,193,72,3,77,192,139,85,236,139,69,204,137,195,41,211,137,218,72,139,69,216,72,139,120,64,72,141,53,207,252,2,0,232,192,154,254,255,72,139,69,216,72,139,120,56,72,139,77,192,139,85,236,72,141,53,180, 252,2,0,232,165,154,254,255,235,27,72,139,69,216,72,139,120,72,72,139,77,192,139,85,204,72,141,53,151,252,2,0,232,136,154,254,255,72,131,196,56,91,201,195,85,72,137,229,72,131,236,64,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,5,101, 244,2,0,72,139,16,72,137,85,248,49,210,139,69,220,255,192,131,248,99,127,64,139,69,220,255,192,72,152,72,193,224,4,72,131,192,15,72,131,192,15,72,193,232,4,72,193,224,4,72,41,196,72,137,101,200,72,139,69,200,72,131,192,15,72,193,232,4,72,193,224,4,72, 137,69,200,72,139,69,200,72,137,69,192,235,23,139,69,220,255,192,72,152,72,137,199,72,193,231,4,232,44,137,254,255,72,137,69,192,72,139,85,192,72,137,85,240,72,139,69,240,199,0,2,0,0,0,72,139,85,240,72,139,69,224,72,137,66,8,72,139,85,240,72,131,194, 16,72,139,117,208,139,125,220,232,31,238,255,255,139,85,220,255,194,72,139,77,240,72,139,125,232,72,141,53,189,251,2,0,232,129,254,255,255,139,69,220,255,192,131,248,99,126,23,139,69,220,255,192,72,152,72,137,198,72,193,230,4,72,139,125,240,232,176,138, 254,255,72,139,5,136,243,2,0,72,139,85,248,72,51,16,116,5,232,96,135,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,167,253,255,255,72,141,61,31,18,1,0,232,106,110,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,80,0,0,0,186, 0,0,0,0,72,137,222,184,0,0,0,0,232,157,92,254,255,72,137,194,72,141,5,5,93,3,0,72,137,16,72,141,53,236,253,255,255,72,141,5,244,92,3,0,72,139,56,232,60,106,254,255,72,141,53,130,254,255,255,72,141,5,222,92,3,0,72,139,56,232,64,106,254,255,72,141,5,207, 92,3,0,72,139,56,72,141,53,237,250,2,0,232,161,106,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,16,72,141,5,178,92,3,0,72,139,56,232,222,164,254,255,72,137,69,248,72,139,125,248,72,141,53,187,250,2,0,232,248,149,254,255,72,139,69,248,201, 195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,131,125,236,0,126,11,72,139,69,224,139,0,131,248,2,116,29,72,139,69,248,72,139,120,24,72,139,77,224,139,85,236,72,141,53,114,250,2,0,232,99,152,254,255,235,34,72,139, 77,224,72,131,193,16,139,85,236,255,202,72,139,69,224,72,139,112,8,72,139,69,248,72,139,120,24,232,196,152,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,120,24,72,139,77,224,139, 85,236,72,139,117,240,232,147,152,254,255,201,195,85,72,137,229,72,141,61,204,16,1,0,232,12,109,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,5,255,255,255,184,0,0,0,0,232,66,91,254,255,72,137,194,72,141,5,178,91, 3,0,72,137,16,72,141,53,24,255,255,255,72,141,5,161,91,3,0,72,139,56,232,225,104,254,255,72,141,53,107,255,255,255,72,141,5,139,91,3,0,72,139,56,232,229,104,254,255,72,141,5,124,91,3,0,72,139,56,72,141,53,146,249,2,0,232,70,105,254,255,201,195,85,72, 137,229,72,131,236,16,72,141,5,68,91,3,0,72,139,56,232,136,163,254,255,72,137,69,248,72,139,125,248,72,141,53,5,249,2,0,232,162,148,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,243,15, 42,69,236,72,139,69,248,72,139,120,24,232,55,150,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,243,15,42,77,236,243,15,16,5,59,20,1,0,243,15,88,193,72,139,69,248,72,139,120,24,232,0,150,254,255,201, 195,85,72,137,229,72,141,61,184,15,1,0,232,238,107,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,61,255,255,255,184,0,0,0,0,232,36,90,254,255,72,137,194,72,141,5,124,90,3,0,72,137,16,72,141,53,80,255,255,255,72,141, 5,107,90,3,0,72,139,56,232,195,103,254,255,72,141,53,101,255,255,255,72,141,5,85,90,3,0,72,139,56,232,199,103,254,255,72,141,5,70,90,3,0,72,139,56,72,141,53,116,248,2,0,232,40,104,254,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117, 224,137,85,220,72,137,77,208,131,125,220,0,116,11,72,139,69,208,139,0,131,248,2,116,34,72,139,85,208,139,117,220,72,139,125,224,232,248,241,255,255,72,137,194,72,141,5,19,81,3,0,72,137,16,233,41,1,0,0,72,139,69,208,72,139,64,8,72,137,69,248,72,141,61, 24,220,0,0,232,17,107,254,255,72,59,69,248,117,40,72,139,85,208,72,131,194,16,139,117,220,255,206,72,139,125,224,232,178,241,255,255,72,137,194,72,141,5,205,80,3,0,72,137,16,233,227,0,0,0,72,141,61,173,14,1,0,232,215,106,254,255,72,59,69,248,117,40,72, 139,85,208,72,131,194,16,139,117,220,255,206,72,139,125,224,232,178,245,255,255,72,137,194,72,141,5,147,80,3,0,72,137,16,233,169,0,0,0,72,141,61,123,14,1,0,232,157,106,254,255,72,59,69,248,117,37,72,139,85,208,139,117,220,191,1,0,0,0,232,148,236,253, 255,232,178,249,255,255,72,137,194,72,141,5,89,80,3,0,72,137,16,235,114,72,141,61,74,14,1,0,232,102,106,254,255,72,59,69,248,117,20,232,116,252,255,255,72,137,194,72,141,5,51,80,3,0,72,137,16,235,76,72,141,61,41,14,1,0,232,64,106,254,255,72,59,69,248, 117,20,232,164,253,255,255,72,137,194,72,141,5,13,80,3,0,72,137,16,235,38,72,139,69,248,72,139,48,72,141,61,3,14,1,0,184,0,0,0,0,232,120,97,255,255,72,141,5,233,79,3,0,72,199,0,0,0,0,0,72,141,5,219,79,3,0,72,139,0,201,195,85,72,137,229,232,53,240,255, 255,232,53,244,255,255,232,106,248,255,255,232,86,251,255,255,232,187,252,255,255,232,212,253,255,255,72,141,61,88,254,255,255,185,0,0,0,0,186,10,0,0,0,72,141,53,180,246,2,0,184,0,0,0,0,232,63,93,254,255,201,195,85,72,137,229,72,131,236,16,72,139,61, 105,72,3,0,232,168,160,254,255,72,137,69,248,72,139,125,248,72,141,53,37,246,2,0,232,194,145,254,255,72,137,194,72,139,69,248,72,137,80,48,72,139,125,248,72,141,53,10,246,2,0,232,167,145,254,255,72,137,194,72,139,69,248,72,137,80,56,72,139,53,19,72,3, 0,72,139,125,248,232,29,164,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,85,224,139,117,236,191,1,0,0,0,232,48,235,253,255,15,40,200,243,15,16,5,65,17,1,0,243,15,88,193,72,139, 69,248,72,139,120,56,232,6,147,254,255,72,139,85,224,139,117,236,191,0,0,0,0,232,3,235,253,255,72,139,69,248,72,139,120,48,232,232,146,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,141,71,3,0,72,139,125,248,232,155,164,254,255, 201,195,85,72,137,229,72,131,236,16,72,139,61,139,71,3,0,232,194,159,254,255,72,137,69,248,72,139,125,248,72,141,53,63,245,2,0,232,220,144,254,255,72,137,194,72,139,69,248,72,137,80,48,72,139,125,248,72,141,53,36,245,2,0,232,193,144,254,255,72,137,194, 72,139,69,248,72,137,80,56,72,139,53,53,71,3,0,72,139,125,248,232,55,163,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,19,71,3,0,72,139,125,248,232,25,164,254,255,201,195,85,72,137,229,83,72,131,236,24,72,141,29,80, 255,255,255,72,141,61,57,12,1,0,232,42,104,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,8,0,0,0,185,64,0,0,0,72,137,218,72,141,53,87,254,255,255,184,0,0,0,0,232,91,86,254,255,72,137,5,190,70,3,0,72,141,53,163,254,255,255,72,139,61,176,70, 3,0,232,3,100,254,255,72,141,61,235,11,1,0,232,213,103,254,255,72,137,198,72,139,61,149,70,3,0,232,121,100,254,255,72,141,61,213,11,1,0,232,186,103,254,255,72,137,5,109,70,3,0,72,141,29,72,255,255,255,72,141,61,195,11,1,0,232,160,103,254,255,72,137,199, 199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,8,0,0,0,185,64,0,0,0,72,137,218,72,141,53,179,254,255,255,184,0,0,0,0,232,209,85,254,255,72,137,5,60,70,3,0,72,141,53,25,254,255,255,72,139,61,46,70,3,0,232,121,99,254,255,72,141,61,97,11,1,0,232,75,103,254,255, 72,137,198,72,139,61,19,70,3,0,232,239,99,254,255,72,141,61,91,11,1,0,232,48,103,254,255,72,137,5,235,69,3,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,48,137,125,220,137,117,216,72,139,5,199,69,3,0,72,139,64,8,72,133,192,116,83,199,69,224,1,0, 0,0,243,15,42,69,216,243,15,17,69,232,72,141,69,224,72,131,192,16,199,0,1,0,0,0,72,141,69,224,72,141,80,16,139,69,220,255,192,243,15,42,192,243,15,17,66,8,72,139,5,130,69,3,0,72,139,120,8,72,141,77,224,186,2,0,0,0,190,0,0,0,0,232,9,167,254,255,201,195, 85,72,137,229,72,131,236,48,137,125,220,137,117,216,72,139,5,92,69,3,0,72,139,64,8,72,133,192,116,83,199,69,224,1,0,0,0,243,15,42,69,216,243,15,17,69,232,72,141,69,224,72,131,192,16,199,0,1,0,0,0,72,141,69,224,72,141,80,16,139,69,220,255,192,243,15,42, 192,243,15,17,66,8,72,139,5,23,69,3,0,72,139,120,8,72,141,77,224,186,2,0,0,0,190,0,0,0,0,232,150,166,254,255,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,10,69,3,0,232,49,157,254,255,72,137,69,248,72,139,85,248,139,69,236,137,66,48, 72,139,125,248,72,141,53,164,242,2,0,232,65,142,254,255,72,137,194,72,139,69,248,72,137,80,56,72,139,125,248,72,141,53,137,242,2,0,232,38,142,254,255,72,137,194,72,139,69,248,72,137,80,64,15,87,192,15,46,69,236,122,2,116,2,235,27,72,139,125,248,72,141, 53,97,242,2,0,232,254,141,254,255,72,137,194,72,139,69,248,72,137,80,72,72,139,53,138,68,3,0,72,139,125,248,232,116,160,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85,208,139, 117,220,191,0,0,0,0,232,135,231,253,255,243,15,17,69,252,72,139,85,208,139,117,220,191,1,0,0,0,232,113,231,253,255,243,15,17,69,248,72,139,85,208,139,117,220,191,2,0,0,0,232,91,231,253,255,243,15,17,69,244,72,139,69,232,243,15,16,72,48,15,87,192,15,46, 200,117,4,122,2,235,55,72,139,69,232,243,15,16,64,48,15,46,69,244,117,94,122,92,72,139,69,232,72,139,120,64,243,15,16,69,248,232,16,143,254,255,72,139,69,232,72,139,120,56,243,15,16,69,252,232,254,142,254,255,235,54,72,139,69,232,72,139,120,72,243,15, 16,69,244,232,234,142,254,255,72,139,69,232,72,139,120,64,243,15,16,69,248,232,216,142,254,255,72,139,69,232,72,139,120,56,243,15,16,69,252,232,198,142,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,139,67,3,0,72,139,125,248,232, 121,160,254,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,208,255,255,255,76,141,37,81,254,255,255,72,141,61,181,8,1,0,232,129,100,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,8,0,0,0,185,80,0,0,0,72,137,218,76,137,230,184,0, 0,0,0,232,182,82,254,255,72,137,5,49,67,3,0,72,141,53,167,254,255,255,72,139,61,35,67,3,0,232,94,96,254,255,72,141,61,70,8,1,0,232,48,100,254,255,72,137,198,72,139,61,8,67,3,0,232,212,96,254,255,72,141,61,80,8,1,0,232,21,100,254,255,72,137,5,232,66,3, 0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,64,137,125,204,137,117,200,137,85,196,137,77,192,72,139,5,196,66,3,0,72,139,64,8,72,133,192,116,123,199,69,208,1,0,0,0,243,15,42,69,196,243,15,17,69,216,72,141,69,208,72,131,192,16,199,0,1,0,0, 0,72,141,69,208,72,131,192,16,243,15,42,69,192,243,15,17,64,8,72,141,69,208,72,131,192,32,199,0,1,0,0,0,72,141,69,208,72,141,80,32,139,69,204,193,224,4,3,69,200,255,192,243,15,42,192,243,15,17,66,8,72,139,5,89,66,3,0,72,139,120,8,72,141,77,208,186,3, 0,0,0,72,141,53,101,240,2,0,232,190,163,254,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,137,117,228,72,137,85,216,72,139,61,60,66,3,0,232,83,154,254,255,72,137,69,240,131,125,228,0,117,9,199,69,252,255,255,255,255,235,24,72,139,85,216,139, 117,228,191,0,0,0,0,232,47,229,253,255,243,15,44,192,137,69,252,72,139,85,216,139,117,228,191,1,0,0,0,232,23,229,253,255,243,15,44,192,137,69,248,243,15,42,69,248,72,139,69,240,243,15,17,64,48,243,15,42,69,252,72,139,69,240,243,15,17,64,52,72,139,125, 240,72,141,53,117,239,2,0,232,18,139,254,255,72,137,194,72,139,69,240,72,137,80,56,131,125,248,0,117,73,72,139,69,240,243,15,16,72,52,15,87,192,15,46,193,119,2,235,27,72,139,125,240,72,141,53,65,239,2,0,232,222,138,254,255,72,137,194,72,139,69,240,72, 137,80,64,72,139,125,240,72,141,53,38,239,2,0,232,195,138,254,255,72,137,194,72,139,69,240,72,137,80,72,72,139,53,95,65,3,0,72,139,125,240,232,57,157,254,255,72,139,69,240,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72, 137,77,208,72,139,85,208,139,117,220,191,0,0,0,0,232,76,228,253,255,243,15,17,69,252,72,139,85,208,139,117,220,191,1,0,0,0,232,54,228,253,255,243,15,17,69,248,72,139,85,208,139,117,220,191,2,0,0,0,232,32,228,253,255,243,15,17,69,244,72,139,69,232,243, 15,16,72,52,15,87,192,15,46,200,115,2,235,25,72,139,69,232,243,15,16,64,52,15,46,69,252,15,133,136,0,0,0,15,138,130,0,0,0,72,139,69,232,243,15,16,72,48,15,87,192,15,46,200,119,2,235,17,72,139,69,232,243,15,16,64,48,15,46,69,244,117,96,122,94,72,139,69, 232,243,15,16,72,48,15,87,192,15,46,200,122,2,116,2,235,18,72,139,69,232,72,139,120,72,243,15,16,69,244,232,150,139,254,255,72,139,69,232,243,15,16,72,52,15,87,192,15,46,193,119,2,235,18,72,139,69,232,72,139,120,64,243,15,16,69,252,232,113,139,254,255, 72,139,69,232,72,139,120,56,243,15,16,69,248,232,95,139,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,52,64,3,0,72,139,125,248,232,18,157,254,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,208,255,255,255,76,141,37, 194,253,255,255,72,141,61,93,5,1,0,232,26,97,254,255,72,137,199,199,4,36,0,0,0,0,65,185,10,0,0,0,65,184,8,0,0,0,185,80,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,79,79,254,255,72,137,5,218,63,3,0,72,141,53,123,254,255,255,72,139,61,204,63,3,0,232,247, 92,254,255,72,141,61,223,4,1,0,232,201,96,254,255,72,137,198,72,139,61,177,63,3,0,232,109,93,254,255,72,141,61,247,4,1,0,232,174,96,254,255,72,137,5,145,63,3,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,64,137,125,204,137,117,200,137,85, 196,137,77,192,72,139,5,109,63,3,0,72,139,64,8,72,133,192,116,123,199,69,208,1,0,0,0,243,15,42,69,196,243,15,17,69,216,72,141,69,208,72,131,192,16,199,0,1,0,0,0,72,141,69,208,72,131,192,16,243,15,42,69,192,243,15,17,64,8,72,141,69,208,72,131,192,32,199, 0,1,0,0,0,72,141,69,208,72,141,80,32,139,69,204,193,224,4,3,69,200,255,192,243,15,42,192,243,15,17,66,8,72,139,5,2,63,3,0,72,139,120,8,72,141,77,208,186,3,0,0,0,72,141,53,254,236,2,0,232,87,160,254,255,201,195,85,72,137,229,72,131,236,32,243,15,17,69, 236,72,139,61,235,62,3,0,232,242,150,254,255,72,137,69,248,72,139,85,248,139,69,236,137,66,48,72,139,125,248,72,141,53,101,236,2,0,232,2,136,254,255,72,137,194,72,139,69,248,72,137,80,56,15,87,192,15,46,69,236,122,2,116,2,235,27,72,139,125,248,72,141, 53,61,236,2,0,232,218,135,254,255,72,137,194,72,139,69,248,72,137,80,64,72,139,53,134,62,3,0,72,139,125,248,232,80,154,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85,208,139, 117,220,191,0,0,0,0,232,99,225,253,255,243,15,17,69,252,72,139,85,208,139,117,220,191,1,0,0,0,232,77,225,253,255,243,15,17,69,248,72,139,69,232,243,15,16,72,48,15,87,192,15,46,200,117,4,122,2,235,37,72,139,69,232,243,15,16,64,48,15,46,69,248,117,58,122, 56,72,139,69,232,72,139,120,56,243,15,16,69,252,232,2,137,254,255,235,36,72,139,69,232,72,139,120,64,243,15,16,69,248,232,238,136,254,255,72,139,69,232,72,139,120,56,243,15,16,69,252,232,220,136,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125, 248,72,139,53,193,61,3,0,72,139,125,248,232,143,154,254,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,208,255,255,255,76,141,37,166,254,255,255,72,141,61,231,2,1,0,232,151,94,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,8,0, 0,0,185,72,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,204,76,254,255,72,137,5,103,61,3,0,72,141,53,225,254,255,255,72,139,61,89,61,3,0,232,116,90,254,255,72,141,61,92,2,1,0,232,70,94,254,255,72,137,198,72,139,61,62,61,3,0,232,234,90,254,255,72,141,61, 129,2,1,0,232,43,94,254,255,72,137,5,30,61,3,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,48,137,125,220,137,117,216,137,85,212,72,139,5,253,60,3,0,72,139,64,8,72,133,192,116,95,199,69,224,1,0,0,0,139,69,212,255,192,243,15,42,192,243,15, 17,69,232,72,141,69,224,72,131,192,16,199,0,1,0,0,0,72,141,69,224,72,141,80,16,139,69,220,193,224,4,3,69,216,255,192,243,15,42,192,243,15,17,66,8,72,139,5,174,60,3,0,72,139,120,8,72,141,77,224,186,2,0,0,0,72,141,53,154,234,2,0,232,243,157,254,255,201, 195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,151,60,3,0,232,142,148,254,255,72,137,69,248,72,139,85,248,139,69,236,137,66,48,72,139,125,248,72,141,53,1,234,2,0,232,158,133,254,255,72,137,194,72,139,69,248,72,137,80,56,15,87,192,15,46,69, 236,122,2,116,2,235,27,72,139,125,248,72,141,53,217,233,2,0,232,118,133,254,255,72,137,194,72,139,69,248,72,137,80,64,72,139,53,50,60,3,0,72,139,125,248,232,236,151,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224, 137,85,220,72,137,77,208,72,139,85,208,139,117,220,191,0,0,0,0,232,255,222,253,255,243,15,17,69,252,72,139,85,208,139,117,220,191,1,0,0,0,232,233,222,253,255,243,15,17,69,248,72,139,69,232,243,15,16,72,48,15,87,192,15,46,200,117,4,122,2,235,37,72,139, 69,232,243,15,16,64,48,15,46,69,248,117,58,122,56,72,139,69,232,72,139,120,56,243,15,16,69,252,232,158,134,254,255,235,36,72,139,69,232,72,139,120,64,243,15,16,69,248,232,138,134,254,255,72,139,69,232,72,139,120,56,243,15,16,69,252,232,120,134,254,255, 201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,109,59,3,0,72,139,125,248,232,43,152,254,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,208,255,255,255,76,141,37,166,254,255,255,72,141,61,144,0,1,0,232,51,92,254,255,72,137,199, 199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,8,0,0,0,185,72,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,104,74,254,255,72,137,5,19,59,3,0,72,141,53,225,254,255,255,72,139,61,5,59,3,0,232,16,88,254,255,72,141,61,248,255,0,0,232,226,91,254,255,72,137,198,72, 139,61,234,58,3,0,232,134,88,254,255,72,141,61,43,0,1,0,232,199,91,254,255,72,137,5,202,58,3,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,48,137,125,220,137,117,216,137,85,212,72,139,5,169,58,3,0,72,139,64,8,72,133,192,116,91,199,69,224, 1,0,0,0,243,15,42,69,212,243,15,17,69,232,72,141,69,224,72,131,192,16,199,0,1,0,0,0,72,141,69,224,72,141,80,16,139,69,220,193,224,4,3,69,216,255,192,243,15,42,192,243,15,17,66,8,72,139,5,94,58,3,0,72,139,120,8,72,141,77,224,186,2,0,0,0,72,141,53,58,232, 2,0,232,147,155,254,255,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,71,58,3,0,232,46,146,254,255,72,137,69,248,72,139,85,248,139,69,236,137,66,48,72,139,125,248,72,141,53,161,231,2,0,232,62,131,254,255,72,137,194,72,139,69,248,72,137, 80,56,15,87,192,15,46,69,236,122,2,116,2,235,27,72,139,125,248,72,141,53,121,231,2,0,232,22,131,254,255,72,137,194,72,139,69,248,72,137,80,64,72,139,53,226,57,3,0,72,139,125,248,232,140,149,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72, 137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85,208,139,117,220,191,0,0,0,0,232,159,220,253,255,243,15,17,69,252,72,139,85,208,139,117,220,191,1,0,0,0,232,137,220,253,255,243,15,17,69,248,72,139,69,232,243,15,16,72,48,15,87,192,15,46,200, 117,4,122,2,235,37,72,139,69,232,243,15,16,64,48,15,46,69,248,117,58,122,56,72,139,69,232,72,139,120,56,243,15,16,69,252,232,62,132,254,255,235,36,72,139,69,232,72,139,120,64,243,15,16,69,248,232,42,132,254,255,72,139,69,232,72,139,120,56,243,15,16,69, 252,232,24,132,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,29,57,3,0,72,139,125,248,232,203,149,254,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,208,255,255,255,76,141,37,166,254,255,255,72,141,61,63,254,0,0,232, 211,89,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,8,0,0,0,185,72,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,8,72,254,255,72,137,5,195,56,3,0,72,141,53,225,254,255,255,72,139,61,181,56,3,0,232,176,85,254,255,72,141,61,152,253,0,0,232,130, 89,254,255,72,137,198,72,139,61,154,56,3,0,232,38,86,254,255,72,141,61,219,253,0,0,232,103,89,254,255,72,137,5,122,56,3,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,48,137,125,220,137,117,216,137,85,212,72,139,5,89,56,3,0,72,139,64,8,72, 133,192,116,91,199,69,224,1,0,0,0,243,15,42,69,212,243,15,17,69,232,72,141,69,224,72,131,192,16,199,0,1,0,0,0,72,141,69,224,72,141,80,16,139,69,220,193,224,4,3,69,216,255,192,243,15,42,192,243,15,17,66,8,72,139,5,14,56,3,0,72,139,120,8,72,141,77,224, 186,2,0,0,0,72,141,53,218,229,2,0,232,51,153,254,255,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,247,55,3,0,232,206,143,254,255,72,137,69,248,72,139,85,248,139,69,236,137,66,48,72,139,125,248,72,141,53,65,229,2,0,232,222,128,254,255, 72,137,194,72,139,69,248,72,137,80,56,72,139,125,248,72,141,53,38,229,2,0,232,195,128,254,255,72,137,194,72,139,69,248,72,137,80,64,15,87,192,15,46,69,236,122,2,116,2,235,27,72,139,125,248,72,141,53,254,228,2,0,232,155,128,254,255,72,137,194,72,139,69, 248,72,137,80,72,72,139,53,119,55,3,0,72,139,125,248,232,17,147,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85,208,139,117,220,191,0,0,0,0,232,36,218,253,255,243,15,17,69,252, 72,139,85,208,139,117,220,191,1,0,0,0,232,14,218,253,255,243,15,17,69,248,72,139,85,208,139,117,220,191,2,0,0,0,232,248,217,253,255,243,15,17,69,244,72,139,69,232,243,15,16,72,48,15,87,192,15,46,200,117,4,122,2,235,55,72,139,69,232,243,15,16,64,48,15, 46,69,244,117,94,122,92,72,139,69,232,72,139,120,64,243,15,16,69,252,232,173,129,254,255,72,139,69,232,72,139,120,56,243,15,16,69,248,232,155,129,254,255,235,54,72,139,69,232,72,139,120,72,243,15,16,69,244,232,135,129,254,255,72,139,69,232,72,139,120, 64,243,15,16,69,252,232,117,129,254,255,72,139,69,232,72,139,120,56,243,15,16,69,248,232,99,129,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,120,54,3,0,72,139,125,248,232,22,147,254,255,201,195,85,72,137,229,65,84,83,72,131,236, 16,72,141,29,208,255,255,255,76,141,37,81,254,255,255,72,141,61,155,251,0,0,232,30,87,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,8,0,0,0,185,80,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,83,69,254,255,72,137,5,30,54,3,0,72,141,53,167, 254,255,255,72,139,61,16,54,3,0,232,251,82,254,255,72,141,61,227,250,0,0,232,205,86,254,255,72,137,198,72,139,61,245,53,3,0,232,113,83,254,255,72,141,61,59,251,0,0,232,178,86,254,255,72,137,5,213,53,3,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72, 131,236,64,137,125,204,137,117,200,137,85,196,137,77,192,72,139,5,177,53,3,0,72,139,64,8,72,133,192,116,123,199,69,208,1,0,0,0,243,15,42,69,196,243,15,17,69,216,72,141,69,208,72,131,192,16,199,0,1,0,0,0,72,141,69,208,72,131,192,16,243,15,42,69,192,243, 15,17,64,8,72,141,69,208,72,131,192,32,199,0,1,0,0,0,72,141,69,208,72,141,80,32,139,69,204,193,224,4,3,69,200,255,192,243,15,42,192,243,15,17,66,8,72,139,5,70,53,3,0,72,139,120,8,72,141,77,208,186,3,0,0,0,72,141,53,2,227,2,0,232,91,150,254,255,201,195, 85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,47,53,3,0,232,246,140,254,255,72,137,69,248,72,139,125,248,72,141,53,115,226,2,0,232,16,126,254,255,72,137,194,72,139,69,248,72,137,80,48,72,139,125,248,72,141,53,88,226,2,0,232,245,125,254,255,72, 137,194,72,139,69,248,72,137,80,56,72,139,53,225,52,3,0,72,139,125,248,232,107,144,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85,208,139,117,220,191,0,0,0,0,232,126,215,253, 255,243,15,17,69,252,72,139,85,208,139,117,220,191,1,0,0,0,232,104,215,253,255,243,15,17,69,248,72,139,69,232,72,139,120,56,243,15,16,69,248,232,67,127,254,255,72,139,69,232,72,139,120,48,243,15,16,69,252,232,49,127,254,255,201,195,85,72,137,229,72,131, 236,16,72,137,125,248,72,139,53,86,52,3,0,72,139,125,248,232,228,144,254,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,208,255,255,255,76,141,37,247,254,255,255,72,141,61,130,249,0,0,232,236,84,254,255,72,137,199,199,4,36,0,0,0,0,65,185, 6,0,0,0,65,184,8,0,0,0,185,64,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,33,67,254,255,72,137,5,252,51,3,0,72,141,53,27,255,255,255,72,139,61,238,51,3,0,232,201,80,254,255,72,141,61,177,248,0,0,232,155,84,254,255,72,137,198,72,139,61,211,51,3,0,232, 63,81,254,255,72,141,61,32,249,0,0,232,128,84,254,255,72,137,5,179,51,3,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,64,242,15,17,69,200,72,139,5,150,51,3,0,72,139,64,8,72,133,192,15,132,195,0,0,0,243,15,16,5,253,50,3,0,243,15,90,200,242, 15,16,69,200,242,15,92,193,242,15,90,192,243,15,17,69,248,243,15,16,13,219,50,3,0,243,15,16,5,75,252,0,0,243,15,88,193,243,15,17,5,199,50,3,0,243,15,16,5,191,50,3,0,15,46,5,20,254,0,0,122,2,116,2,235,28,199,69,208,1,0,0,0,184,0,0,128,63,137,69,216,184, 0,0,0,0,137,5,152,50,3,0,235,15,199,69,208,1,0,0,0,184,0,0,0,0,137,69,216,72,141,69,208,72,131,192,16,199,0,1,0,0,0,72,141,69,208,72,141,80,16,139,69,248,137,66,8,72,139,5,236,50,3,0,72,139,120,8,72,141,77,208,186,2,0,0,0,72,141,53,152,224,2,0,232,241, 147,254,255,242,15,90,69,200,243,15,17,5,66,50,3,0,201,195,85,72,137,229,72,131,236,16,72,139,61,205,50,3,0,232,132,138,254,255,72,137,69,248,72,139,125,248,72,141,53,1,224,2,0,232,158,123,254,255,72,137,194,72,139,69,248,72,137,80,48,72,139,125,248, 72,141,53,230,223,2,0,232,131,123,254,255,72,137,194,72,139,69,248,72,137,80,56,72,139,53,127,50,3,0,72,139,125,248,232,249,141,254,255,72,139,125,248,72,141,53,203,247,0,0,184,0,0,0,0,232,233,76,255,255,72,139,69,248,201,195,85,72,137,229,72,131,236, 48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,72,139,85,208,139,117,220,191,0,0,0,0,232,247,212,253,255,243,15,17,69,252,72,139,85,208,139,117,220,191,1,0,0,0,232,225,212,253,255,243,15,17,69,248,72,139,69,232,72,139,120,56,243,15,16,69,252, 232,188,124,254,255,72,139,69,232,72,139,120,48,243,15,16,69,248,232,170,124,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,53,223,49,3,0,72,139,125,248,232,93,142,254,255,201,195,85,72,137,229,83,72,131,236,24,72,141,29,210,255,255, 255,72,141,61,66,247,0,0,232,110,82,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,8,0,0,0,185,64,0,0,0,72,137,218,72,141,53,191,254,255,255,184,0,0,0,0,232,159,64,254,255,72,137,5,138,49,3,0,72,141,53,32,255,255,255,72,139,61,124,49,3,0,232, 71,78,254,255,72,141,61,47,246,0,0,232,25,82,254,255,72,137,198,72,139,61,97,49,3,0,232,189,78,254,255,72,141,61,225,246,0,0,232,254,81,254,255,72,137,5,65,49,3,0,72,131,196,24,91,201,195,85,72,137,229,72,131,236,48,137,125,220,137,117,216,72,139,5,37, 49,3,0,72,139,64,8,72,133,192,116,81,199,69,224,1,0,0,0,243,15,42,69,220,243,15,17,69,232,72,141,69,224,72,131,192,16,199,0,1,0,0,0,72,141,69,224,72,131,192,16,243,15,42,69,216,243,15,17,64,8,72,139,5,228,48,3,0,72,139,120,8,72,141,77,224,186,2,0,0,0, 72,141,53,128,222,2,0,232,217,145,254,255,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,197,48,3,0,232,116,136,254,255,72,137,69,248,15,87,192,15,46,69,236,115,2,235,8,184,0,0,128,63,137,69,236,72,139,85,248,139,69,236,137,66,48,72,139, 117,248,72,131,198,48,72,139,125,248,232,253,116,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,243,15,44,240,72,139,69,248,243,15,16,72,48,243,15,16,5,45,249,0,0,15,40,209,243,15,92,208,15, 40,194,243,15,44,248,232,84,87,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,95,255,255,255,72,141,61,197,245,0,0,232,210,80,254,255,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137, 222,184,0,0,0,0,232,253,62,254,255,72,137,5,240,47,3,0,72,141,53,97,255,255,255,72,139,61,226,47,3,0,232,113,76,254,255,72,141,61,141,244,0,0,232,119,80,254,255,72,137,198,72,139,61,199,47,3,0,232,27,77,254,255,72,131,196,24,91,201,195,85,72,137,229, 72,131,236,32,243,15,17,69,236,72,139,61,175,47,3,0,232,86,135,254,255,72,137,69,248,72,139,85,248,184,0,0,0,0,137,66,48,243,15,16,5,90,248,0,0,15,46,69,236,119,2,235,8,184,0,0,128,63,137,69,236,72,139,85,248,139,69,236,137,66,52,72,139,117,248,72,131, 198,48,72,139,125,248,232,206,115,254,255,72,139,117,248,72,131,198,52,72,139,125,248,232,189,115,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,243,15,16,72,52,243,15,16,5,246,247,0,0,15,40,209, 243,15,92,208,15,40,194,243,15,44,192,137,69,252,131,125,252,0,121,7,199,69,252,0,0,0,0,72,139,69,232,243,15,16,64,48,243,15,44,200,243,15,16,69,228,243,15,44,208,139,117,252,131,230,15,139,69,252,137,199,193,255,4,232,120,81,0,0,201,195,85,72,137,229, 83,72,131,236,24,72,141,29,18,255,255,255,72,141,61,98,244,0,0,232,103,79,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,154,61,254,255,72,137,5,149,46,3,0,72,141,53,62,255,255,255, 72,139,61,135,46,3,0,232,14,75,254,255,72,141,61,42,243,0,0,232,20,79,254,255,72,137,198,72,139,61,108,46,3,0,232,184,75,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,243,15,17,77,232,72,139,61,79,46,3,0,232,238,133,254, 255,72,137,69,248,72,139,85,248,139,69,236,137,66,48,15,87,192,15,46,69,232,115,2,235,8,184,0,0,128,63,137,69,232,72,139,85,248,139,69,232,137,66,52,72,139,117,248,72,131,198,48,72,139,125,248,232,109,114,254,255,72,139,117,248,72,131,198,52,72,139,125, 248,232,92,114,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,243,15,16,72,52,243,15,16,5,149,246,0,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,252,131,125,252,0,121,7,199,69,252,0, 0,0,0,243,15,16,69,228,243,15,44,200,72,139,69,232,243,15,16,64,48,243,15,44,208,139,117,252,131,230,15,139,69,252,137,199,193,255,4,232,231,80,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,20,255,255,255,72,141,61,9,243,0,0,232,6,78,254,255,72, 137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,49,60,254,255,72,137,5,52,45,3,0,72,141,53,54,255,255,255,72,139,61,38,45,3,0,232,165,73,254,255,72,141,61,193,241,0,0,232, 171,77,254,255,72,137,198,72,139,61,11,45,3,0,232,79,74,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,243,44,3,0,232,138,132,254,255,72,137,69,248,15,87,192,15,46,69,236,115,2,235,8,184,0,0,128,63,137,69,236, 72,139,85,248,139,69,236,137,66,48,72,139,117,248,72,131,198,48,72,139,125,248,232,19,113,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,243,15,16,72,48,243,15,16,5,76,245,0,0,15,40,209,243,15, 92,208,15,40,194,243,15,44,192,137,69,252,243,15,16,77,228,243,15,16,5,46,245,0,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,248,131,125,252,0,121,7,199,69,252,0,0,0,0,131,125,248,0,121,9,199,69,248,0,0,0,0,235,13,131,125,248,127,126,7,199, 69,248,127,0,0,0,139,117,252,131,230,15,139,69,252,137,199,193,255,4,139,85,248,232,71,80,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,13,255,255,255,72,141,61,160,241,0,0,232,150,76,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0, 0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,201,58,254,255,72,137,5,212,43,3,0,72,141,53,23,255,255,255,72,139,61,198,43,3,0,232,61,72,254,255,72,141,61,89,240,0,0,232,67,76,254,255,72,137,198,72,139,61,171,43,3,0,232,231,72,254,255,72, 131,196,24,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,147,43,3,0,232,34,131,254,255,72,137,69,248,15,87,192,15,46,69,236,115,2,235,8,184,0,0,128,63,137,69,236,72,139,85,248,139,69,236,137,66,48,72,139,117,248,72,131,198,48,72,139, 125,248,232,171,111,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,243,15,16,72,48,243,15,16,5,228,243,0,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,252,243,15,16,69,228,243,15,44, 192,5,0,32,0,0,137,69,248,131,125,252,0,121,7,199,69,252,0,0,0,0,139,117,252,131,230,15,139,69,252,137,199,193,255,4,139,85,248,232,177,79,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,54,255,255,255,72,141,61,104,240,0,0,232,87,75,254,255,72, 137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,138,57,254,255,72,137,5,157,42,3,0,72,141,53,64,255,255,255,72,139,61,143,42,3,0,232,254,70,254,255,72,141,61,26,239,0,0,232,4,75,254,255,72,137, 198,72,139,61,116,42,3,0,232,168,71,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,92,42,3,0,232,227,129,254,255,72,137,69,248,15,87,192,15,46,69,236,115,2,235,8,184,0,0,128,63,137,69,236,72,139,85,248,139,69, 236,137,66,48,72,139,117,248,72,131,198,48,72,139,125,248,232,108,110,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,69,232,243,15,16,72,48,243,15,16,5,165,242,0,0,15,40,209,243,15,92,208,15,40,194,243, 15,44,192,137,69,252,131,125,252,0,121,7,199,69,252,0,0,0,0,243,15,16,69,228,243,15,44,208,139,117,252,131,230,15,139,69,252,137,199,193,255,4,232,44,79,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,65,255,255,255,72,141,61,60,239,0,0,232,35,74, 254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,86,56,254,255,72,137,5,113,41,3,0,72,141,53,75,255,255,255,72,139,61,99,41,3,0,232,202,69,254,255,72,141,61,230,237,0,0,232,208,73,254, 255,72,137,198,72,139,61,72,41,3,0,232,116,70,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,72,139,61,48,41,3,0,232,175,128,254,255,72,137,69,248,15,87,192,15,46,69,236,115,2,235,8,184,0,0,128,63,137,69,236,72,139,85,248, 139,69,236,137,66,48,72,139,85,248,184,0,0,0,0,137,66,52,72,139,117,248,72,131,198,52,72,139,125,248,232,44,109,254,255,72,139,117,248,72,131,198,48,72,139,125,248,232,27,109,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243, 15,17,69,228,72,139,69,232,243,15,16,72,48,243,15,16,5,84,241,0,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,252,131,125,252,0,121,7,199,69,252,0,0,0,0,243,15,16,69,228,243,15,44,200,72,139,69,232,243,15,16,64,52,243,15,44,208,139,117,252, 131,230,15,139,69,252,137,199,193,255,4,232,119,78,0,0,201,195,85,72,137,229,83,72,131,236,24,72,141,29,23,255,255,255,72,141,61,231,237,0,0,232,197,72,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137, 222,184,0,0,0,0,232,248,54,254,255,72,137,5,27,40,3,0,72,141,53,62,255,255,255,72,139,61,13,40,3,0,232,108,68,254,255,72,141,61,136,236,0,0,232,114,72,254,255,72,137,198,72,139,61,242,39,3,0,232,22,69,254,255,72,131,196,24,91,201,195,85,72,137,229,72, 131,236,32,243,15,17,69,236,243,15,17,77,232,72,139,61,213,39,3,0,232,76,127,254,255,72,137,69,248,72,139,85,248,139,69,236,137,66,48,72,139,85,248,139,69,232,137,66,52,72,139,117,248,72,131,198,48,72,139,125,248,232,222,107,254,255,72,139,117,248,72, 131,198,52,72,139,125,248,232,205,107,254,255,72,139,125,248,72,141,53,147,212,2,0,232,48,112,254,255,72,137,194,72,139,69,248,72,137,80,56,72,139,125,248,72,141,53,120,212,2,0,232,21,112,254,255,72,137,194,72,139,69,248,72,137,80,64,72,139,69,248,72, 199,64,72,0,0,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,139,64,24,72,137,69,248,72,139,69,248,72,139,120,64,15,87,192,232,148,113,254,255,72,139,69,216,243,15,16,64,16,72,139,69,248,72,139,120,56,232,126,113, 254,255,72,139,69,248,72,139,64,72,72,59,69,216,117,18,72,139,69,216,72,139,80,8,72,139,69,248,72,137,80,72,235,69,72,139,69,248,72,139,64,72,72,137,69,240,235,36,72,139,69,232,72,59,69,216,117,18,72,139,69,232,72,139,80,8,72,139,69,240,72,137,80,8,235, 27,72,139,69,232,72,137,69,240,72,139,69,240,72,139,64,8,72,137,69,232,72,131,125,232,0,117,201,72,139,69,216,72,139,56,232,132,138,254,255,72,139,125,216,190,32,0,0,0,232,18,99,254,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,243,15,17,69, 228,72,139,69,232,243,15,16,72,48,15,87,192,15,46,200,122,6,15,132,195,0,0,0,72,139,69,232,243,15,16,64,48,72,139,69,232,72,139,120,64,232,191,112,254,255,72,139,69,232,72,139,120,56,243,15,16,69,228,232,173,112,254,255,191,32,0,0,0,232,194,96,254,255, 72,137,69,248,72,139,69,232,72,139,80,72,72,139,69,248,72,137,80,8,72,139,85,232,72,139,69,248,72,137,66,72,72,139,85,248,139,69,228,137,66,16,72,139,85,248,72,139,69,232,72,137,66,24,72,141,53,170,254,255,255,72,139,125,248,232,28,135,254,255,72,137, 194,72,139,69,248,72,137,16,72,139,69,232,243,15,16,72,52,15,87,192,15,46,200,115,2,235,20,72,139,69,232,243,15,16,64,52,243,15,90,192,242,15,17,69,216,235,9,102,15,87,192,242,15,17,69,216,72,139,69,248,72,139,56,242,15,16,69,216,232,189,136,254,255, 201,195,85,72,137,229,72,131,236,32,72,137,125,232,235,80,72,139,69,232,72,139,120,64,15,87,192,232,242,111,254,255,72,139,69,248,243,15,16,64,16,72,139,69,232,72,139,120,56,232,220,111,254,255,72,139,69,248,72,139,80,8,72,139,69,232,72,137,80,72,72, 139,69,248,72,139,56,232,55,137,254,255,72,139,125,248,190,32,0,0,0,232,197,97,254,255,72,139,69,232,72,139,64,72,72,137,69,248,72,131,125,248,0,117,157,201,195,85,72,137,229,72,131,236,32,72,137,125,232,235,42,72,139,69,248,72,139,80,8,72,139,69,232, 72,137,80,72,72,139,69,248,72,139,56,232,234,136,254,255,72,139,125,248,190,32,0,0,0,232,120,97,254,255,72,139,69,232,72,139,64,72,72,137,69,248,72,131,125,248,0,117,195,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,161,255,255,255,76,141,37, 219,252,255,255,72,141,61,90,234,0,0,232,43,69,254,255,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,80,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,88,51,254,255,72,137,5,131,36,3,0,72,141,53,237,253,255,255,72,139, 61,117,36,3,0,232,204,64,254,255,72,141,61,82,97,0,0,232,210,68,254,255,72,141,53,187,254,255,255,72,139,61,86,36,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,79,58,254,255,72,141,61,237,235,0,0,232,166,68,254,255,72,141,53,2,255,255,255,72,139,61,42,36, 3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,35,58,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,16,72,139,61,8,36,3,0,232,119,123,254,255,72,137,69,248,72,139,117,248,72,131,198,48,72,139,125,248,232,29,104,254,255,72,139,125,248,72, 141,53,227,208,2,0,232,128,108,254,255,72,137,194,72,139,69,248,72,137,80,56,72,139,125,248,72,141,53,200,208,2,0,232,101,108,254,255,72,137,194,72,139,69,248,72,137,80,64,72,139,69,248,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69, 228,72,139,69,232,243,15,16,72,48,15,87,192,15,46,200,122,2,116,40,72,139,69,232,243,15,16,64,48,72,139,69,232,72,139,120,64,232,222,109,254,255,72,139,69,232,72,139,120,56,243,15,16,69,228,232,204,109,254,255,201,195,85,72,137,229,72,141,61,245,232, 0,0,232,186,67,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,72,0,0,0,186,0,0,0,0,72,141,53,29,255,255,255,184,0,0,0,0,232,240,49,254,255,72,137,5,35,35,3,0,72,141,53,106,255,255,255,72,139,61,21,35,3,0,232,100,63,254,255,201,195,85,72,137,229, 72,131,236,48,243,15,17,69,220,243,15,17,77,216,243,15,16,69,220,243,15,44,192,137,69,248,72,139,61,241,34,3,0,232,88,122,254,255,72,137,69,240,131,125,248,0,127,7,199,69,248,1,0,0,0,72,139,85,240,139,69,248,137,66,48,139,69,248,72,152,72,137,199,72, 193,231,4,232,61,93,254,255,72,137,194,72,139,69,240,72,137,80,56,72,139,69,240,72,139,64,56,72,137,69,232,139,69,248,137,69,252,235,47,72,139,69,232,72,199,64,8,0,0,0,0,72,139,69,232,199,64,4,0,0,0,0,72,139,69,232,139,64,4,243,15,42,192,72,139,69,232, 243,15,17,0,72,131,69,232,16,255,77,252,131,125,252,255,117,200,72,139,85,240,184,0,0,0,0,137,66,64,15,87,192,15,46,69,216,15,149,192,15,154,194,9,208,15,182,208,72,139,69,240,137,80,96,72,139,117,240,72,131,198,64,72,139,125,240,232,90,102,254,255,72, 139,125,240,72,141,53,32,207,2,0,232,189,106,254,255,72,139,125,240,72,141,53,16,207,2,0,232,173,106,254,255,72,137,194,72,139,69,240,72,137,80,72,72,139,125,240,72,141,53,245,206,2,0,232,146,106,254,255,72,137,194,72,139,69,240,72,137,80,80,72,139,69, 240,72,199,64,88,0,0,0,0,72,139,69,240,201,195,85,72,137,229,72,131,236,112,72,137,125,200,243,15,17,69,196,199,69,240,0,0,0,0,199,69,236,0,0,0,0,72,139,69,200,243,15,16,72,64,15,87,192,15,46,200,119,5,233,166,2,0,0,72,139,69,200,72,139,64,56,72,137, 69,224,199,69,252,0,0,0,0,72,199,69,208,0,0,0,0,72,139,69,208,72,137,69,216,199,69,244,255,255,255,255,139,69,244,137,69,248,235,114,72,139,69,224,139,64,4,133,192,116,43,72,139,69,224,72,139,80,8,139,69,248,72,57,194,115,27,72,139,69,224,72,137,69,216, 72,139,69,224,72,139,64,8,137,69,248,139,69,252,137,69,240,235,52,72,139,69,224,139,64,4,133,192,117,41,72,139,69,224,72,139,80,8,139,69,244,72,57,194,115,25,72,139,69,224,72,137,69,208,72,139,69,224,72,139,64,8,137,69,244,139,69,252,137,69,236,72,131, 69,224,16,255,69,252,72,139,69,200,139,64,48,59,69,252,127,130,72,131,125,208,0,15,132,178,0,0,0,72,139,69,200,243,15,16,64,64,72,139,69,200,72,139,120,80,232,51,107,254,255,72,139,85,208,139,69,196,137,2,72,139,69,208,243,15,16,0,72,139,69,200,72,139, 120,72,232,21,107,254,255,139,69,236,255,192,137,192,72,137,69,168,72,131,125,168,0,120,13,243,72,15,42,69,168,243,15,17,69,180,235,34,72,139,69,168,72,209,232,72,139,85,168,131,226,1,72,9,208,243,72,15,42,192,15,40,200,243,15,88,200,243,15,17,77,180, 72,139,69,200,72,139,120,24,243,15,16,69,180,232,194,106,254,255,72,139,69,208,199,64,4,1,0,0,0,72,139,69,200,72,139,80,88,72,139,69,208,72,137,80,8,72,255,194,72,139,69,200,72,137,80,88,233,96,2,0,0,72,131,125,216,0,15,132,85,2,0,0,72,139,69,200,139, 64,96,133,192,15,132,70,2,0,0,72,139,69,200,72,139,120,80,15,87,192,232,109,106,254,255,72,139,69,216,243,15,16,0,72,139,69,200,72,139,120,72,232,88,106,254,255,139,69,240,255,192,137,192,72,137,69,160,72,131,125,160,0,120,13,243,72,15,42,69,160,243, 15,17,69,184,235,34,72,139,69,160,72,209,232,72,139,85,160,131,226,1,72,9,208,243,72,15,42,192,15,40,200,243,15,88,200,243,15,17,77,184,72,139,69,200,72,139,120,24,243,15,16,69,184,232,5,106,254,255,72,139,69,200,243,15,16,64,64,72,139,69,200,72,139, 120,80,232,239,105,254,255,72,139,85,216,139,69,196,137,2,72,139,69,216,243,15,16,0,72,139,69,200,72,139,120,72,232,209,105,254,255,139,69,240,255,192,137,192,72,137,69,152,72,131,125,152,0,120,13,243,72,15,42,69,152,243,15,17,69,188,235,34,72,139,69, 152,72,209,232,72,139,85,152,131,226,1,72,9,208,243,72,15,42,192,15,40,200,243,15,88,200,243,15,17,77,188,72,139,69,200,72,139,120,24,243,15,16,69,188,232,126,105,254,255,72,139,69,200,72,139,80,88,72,139,69,216,72,137,80,8,72,255,194,72,139,69,200,72, 137,80,88,233,39,1,0,0,72,139,69,200,72,139,64,56,72,137,69,224,199,69,252,0,0,0,0,72,199,69,216,0,0,0,0,199,69,248,255,255,255,255,235,78,72,139,69,224,139,64,4,133,192,116,59,72,139,69,224,243,15,16,0,15,46,69,196,122,2,116,2,235,41,72,139,69,224,72, 139,80,8,139,69,248,72,57,194,115,25,72,139,69,224,72,137,69,216,72,139,69,224,72,139,64,8,137,69,248,139,69,252,137,69,240,72,131,69,224,16,255,69,252,72,139,69,200,139,64,48,59,69,252,127,166,72,131,125,216,0,15,132,158,0,0,0,72,139,69,216,199,64,4, 0,0,0,0,72,139,69,200,72,139,80,88,72,139,69,216,72,137,80,8,72,255,194,72,139,69,200,72,137,80,88,72,139,69,200,72,139,120,80,15,87,192,232,159,104,254,255,72,139,69,216,243,15,16,0,72,139,69,200,72,139,120,72,232,138,104,254,255,139,69,240,255,192, 137,192,72,137,69,144,72,131,125,144,0,120,13,243,72,15,42,69,144,243,15,17,69,192,235,34,72,139,69,144,72,209,232,72,139,85,144,131,226,1,72,9,208,243,72,15,42,192,15,40,200,243,15,88,200,243,15,17,77,192,72,139,69,200,72,139,120,24,243,15,16,69,192, 232,55,104,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,199,69,252,0,0,0,0,72,139,69,232,72,139,64,56,72,137,69,240,235,116,72,139,69,240,139,64,4,133,192,116,97,72,139,69,232,72,139,120,80,15,87,192,232,249,103,254,255,72,139,69,240,243, 15,16,0,72,139,69,232,72,139,120,72,232,228,103,254,255,139,69,252,255,192,243,15,42,192,72,139,69,232,72,139,120,24,232,206,103,254,255,72,139,69,240,199,64,4,0,0,0,0,72,139,69,232,72,139,80,88,72,139,69,240,72,137,80,8,72,255,194,72,139,69,232,72,137, 80,88,255,69,252,72,131,69,240,16,72,139,69,232,139,64,48,59,69,252,127,128,201,195,85,72,137,229,72,137,125,232,72,139,69,232,72,139,64,56,72,137,69,240,72,139,69,232,139,64,48,137,69,252,235,28,72,139,69,240,72,199,64,8,0,0,0,0,72,139,69,240,199,64, 4,0,0,0,0,72,131,69,240,16,255,77,252,131,125,252,255,117,219,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,64,48,72,152,72,137,198,72,193,230,4,72,139,69,248,72,139,120,56,232,53,89,254,255,201,195,85,72,137,229,65,84,83,72,131, 236,16,72,141,29,195,255,255,255,76,141,37,147,249,255,255,72,141,61,64,226,0,0,232,251,60,254,255,72,137,199,199,68,36,8,0,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,104,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,40,43,254,255,72,137, 5,99,28,3,0,72,141,53,129,250,255,255,72,139,61,85,28,3,0,232,156,56,254,255,72,141,61,34,89,0,0,232,162,60,254,255,72,141,53,102,254,255,255,72,139,61,54,28,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,31,50,254,255,72,141,61,189,227,0,0,232,118,60,254, 255,72,141,53,221,254,255,255,72,139,61,10,28,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,243,49,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,16,72,139,61,232,27,3,0,232,71,115,254,255,72,137,69,248,72,139,85,248,184,0,0,0,0,137,66, 48,72,139,117,248,72,131,198,48,72,139,125,248,232,225,95,254,255,72,139,125,248,72,141,53,167,200,2,0,232,68,100,254,255,72,139,69,248,72,199,64,56,0,0,0,0,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,216,243,15,17,69,212,72,139,69,216, 243,15,16,72,48,15,87,192,15,46,200,117,4,122,2,235,121,191,16,0,0,0,232,229,85,254,255,72,137,69,248,72,139,69,248,72,199,0,0,0,0,0,72,139,85,248,139,69,212,137,66,8,72,139,69,216,72,139,64,56,72,133,192,117,17,72,139,85,216,72,139,69,248,72,137,66, 56,233,232,0,0,0,72,139,69,216,72,139,64,56,72,137,69,240,235,8,72,139,69,232,72,137,69,240,72,139,69,240,72,139,0,72,137,69,232,72,131,125,232,0,117,230,72,139,85,240,72,139,69,248,72,137,2,233,176,0,0,0,72,139,69,216,72,139,64,56,72,133,192,15,132, 159,0,0,0,72,139,69,216,72,139,64,56,243,15,16,64,8,15,46,69,212,122,2,116,2,235,47,72,139,69,216,72,139,64,56,72,137,69,248,72,139,69,216,72,139,64,56,72,139,16,72,139,69,216,72,137,80,56,72,139,125,248,190,16,0,0,0,232,21,87,254,255,235,89,72,139,69, 216,72,139,64,56,72,137,69,240,235,57,72,139,69,232,243,15,16,64,8,15,46,69,212,122,2,116,2,235,30,72,139,69,232,72,139,16,72,139,69,240,72,137,16,72,139,125,232,190,16,0,0,0,232,214,86,254,255,235,26,72,139,69,232,72,137,69,240,72,139,69,240,72,139, 0,72,137,69,232,72,131,125,232,0,117,181,201,195,85,72,137,229,72,131,236,32,72,137,125,232,235,51,72,139,69,248,243,15,16,64,8,72,139,69,232,72,139,120,24,232,129,100,254,255,72,139,69,248,72,139,16,72,139,69,232,72,137,80,56,72,139,125,248,190,16,0, 0,0,232,119,86,254,255,72,139,69,232,72,139,64,56,72,137,69,248,72,131,125,248,0,117,186,201,195,85,72,137,229,72,131,236,32,72,137,125,232,235,29,72,139,69,248,72,139,16,72,139,69,232,72,137,80,56,72,139,125,248,190,16,0,0,0,232,55,86,254,255,72,139, 69,232,72,139,64,56,72,137,69,248,72,131,125,248,0,117,208,201,195,85,72,137,229,83,72,131,236,8,72,141,29,176,255,255,255,72,141,61,61,223,0,0,232,243,57,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,64,0,0,0,72,137,218,72,141,53,136,253,255, 255,184,0,0,0,0,232,43,40,254,255,72,137,5,110,25,3,0,72,141,53,199,253,255,255,72,139,61,96,25,3,0,232,159,53,254,255,72,141,61,243,222,0,0,232,165,57,254,255,72,141,53,249,254,255,255,72,139,61,65,25,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,34,47, 254,255,72,141,61,192,224,0,0,232,121,57,254,255,72,141,53,35,255,255,255,72,139,61,21,25,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,246,46,254,255,72,131,196,8,91,201,195,85,72,137,229,232,3,209,255,255,232,186,230,255,255,232,153,212,255,255,232,251, 215,255,255,232,121,218,255,255,232,216,220,255,255,232,51,223,255,255,232,227,225,255,255,232,16,228,255,255,232,46,232,255,255,232,148,233,255,255,232,240,234,255,255,232,91,236,255,255,232,149,237,255,255,232,196,238,255,255,232,29,240,255,255,232, 169,243,255,255,232,42,245,255,255,232,207,251,255,255,232,219,254,255,255,201,195,85,72,137,229,139,5,204,212,2,0,105,192,135,71,251,25,5,255,20,237,55,137,5,187,212,2,0,139,5,181,212,2,0,37,255,255,255,127,201,195,85,72,137,229,72,131,236,32,243,15, 17,69,236,72,139,61,94,24,3,0,232,181,111,254,255,72,137,69,248,72,139,85,248,139,69,236,137,66,48,232,172,255,255,255,137,194,72,139,69,248,137,80,52,72,139,117,248,72,131,198,48,72,139,125,248,232,67,92,254,255,72,139,125,248,72,141,53,9,197,2,0,232, 166,96,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,139,69,232,243,15,16,64,48,243,15,44,192,137,69,252,184,1,0,0,0,131,125,252,0,15,79,69,252,137,69,244,72,139,69,232,139,64,52,137,69,240,139,69,240,105,192,241,125,48, 28,5,23,169,157,49,137,69,240,72,139,85,232,139,69,240,137,66,52,242,15,42,69,244,242,15,17,69,216,139,69,240,72,137,69,208,72,131,125,208,0,120,13,242,72,15,42,69,208,242,15,17,69,224,235,35,72,139,69,208,72,209,232,72,139,85,208,131,226,1,72,9,208, 242,72,15,42,192,102,15,40,200,242,15,88,200,242,15,17,77,224,242,15,16,77,216,242,15,89,77,224,242,15,16,5,195,227,0,0,242,15,89,193,242,15,44,192,137,69,248,139,69,248,59,69,244,124,8,139,69,244,255,200,137,69,248,243,15,42,69,248,72,139,69,232,72, 139,120,24,232,140,97,254,255,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,243,15,17,77,240,243,15,16,69,244,243,72,15,44,192,137,194,72,139,69,248,137,80,52,201,195,85,72,137,229,83,72,131,236,24,72,141,29,147,254,255,255,72,141,61,155,220, 0,0,232,71,55,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,122,37,254,255,72,137,5,197,22,3,0,72,141,53,168,254,255,255,72,139,61,183,22,3,0,232,186,50,254,255,72,141,61,79,220, 0,0,232,244,54,254,255,72,141,53,99,255,255,255,72,139,61,152,22,3,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,107,44,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,16,72,139,61,114,22,3,0,232,193,109,254,255,72,137,69,248,72,139, 125,248,72,141,53,126,195,2,0,232,219,94,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,5,248,36,3,0,139,0,133,192,117,13,72,139,69,248,72,139,120,24,232,114,95,254,255,201,195,85,72,137,229,72,141,61,16,114,0,0,232,97, 54,254,255,72,137,199,65,185,0,0,0,0,65,184,8,0,0,0,185,48,0,0,0,186,0,0,0,0,72,141,53,122,255,255,255,184,0,0,0,0,232,151,36,254,255,72,137,5,234,21,3,0,72,141,61,211,113,0,0,232,36,54,254,255,72,141,53,132,255,255,255,72,139,61,208,21,3,0,185,0,0,0, 0,72,137,194,184,0,0,0,0,232,161,43,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,177,21,3,0,232,248,108,254,255,72,137,69,248,232,140,25,250,255,72,137,194,72,139,69,248,72,137,80,56,72,139,85,248,72,139,69,232,72,137,66,48,72, 139,69,232,72,139,0,15,182,0,132,192,116,17,72,139,69,248,72,139,120,56,72,139,117,232,232,120,112,254,255,72,139,69,248,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,48,72,139,0,15,182,0,132,192,116,21,72,139,69,248,72,139, 112,48,72,139,69,248,72,139,120,56,232,67,113,254,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,185,255,255,255,76,141,37,85,255,255,255,72,141,61,171,218,0,0,232,75,53,254,255,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,8,0,0,0,185, 64,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,128,35,254,255,72,137,5,219,20,3,0,72,131,196,16,91,65,92,201,195,85,72,137,229,72,129,236,32,2,0,0,72,137,189,232,253,255,255,243,15,17,133,228,253,255,255,72,139,5,225,185,2,0,72,139,16,72,137,85,248,49, 210,243,15,16,133,228,253,255,255,243,15,44,192,137,133,252,253,255,255,72,139,133,232,253,255,255,139,64,52,133,192,117,41,72,139,133,232,253,255,255,139,112,48,72,141,61,27,218,0,0,184,0,0,0,0,232,53,201,254,255,72,139,133,232,253,255,255,199,64,52, 1,0,0,0,72,139,133,232,253,255,255,139,80,48,139,133,252,253,255,255,72,141,189,0,254,255,255,65,137,193,65,137,208,72,141,13,235,217,0,0,186,244,1,0,0,190,0,0,0,0,184,0,0,0,0,232,55,77,0,0,72,141,189,0,254,255,255,232,106,204,254,255,72,139,5,68,185, 2,0,72,139,85,248,72,51,16,116,5,232,28,77,0,0,201,195,85,72,137,229,72,131,236,32,243,15,17,69,236,243,15,16,69,236,243,15,44,192,137,69,252,72,139,61,236,19,3,0,232,43,107,254,255,72,137,69,240,131,125,252,0,117,7,199,69,252,1,0,0,0,72,139,85,240,139, 69,252,137,66,48,72,139,69,240,199,64,52,0,0,0,0,72,139,69,240,201,195,85,72,137,229,83,72,131,236,24,72,141,29,159,255,255,255,72,141,61,97,217,0,0,232,213,51,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0, 72,137,222,184,0,0,0,0,232,8,34,254,255,72,137,5,107,19,3,0,72,141,53,138,254,255,255,72,139,61,93,19,3,0,232,124,47,254,255,72,131,196,24,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,72,131,199,48,232,164,78,0,0,201,195,85,72, 137,229,72,131,236,96,72,137,125,200,72,141,125,208,232,141,78,0,0,72,139,85,208,72,139,69,216,72,1,194,72,139,69,200,72,139,64,48,72,41,194,72,139,69,200,72,139,64,56,72,137,209,72,41,193,72,137,200,72,105,192,232,3,0,0,72,137,194,72,193,234,2,199,69, 168,195,245,40,92,199,69,172,143,194,245,40,72,139,69,168,72,247,226,72,137,209,72,193,233,2,72,137,77,192,72,131,125,192,0,120,13,243,72,15,42,69,192,243,15,17,69,188,235,34,72,139,69,192,72,209,232,72,139,85,192,131,226,1,72,9,208,243,72,15,42,192, 15,40,200,243,15,88,200,243,15,17,77,188,243,15,16,69,188,243,15,17,69,252,72,139,69,200,72,139,120,24,243,15,16,69,252,232,176,92,254,255,201,195,85,72,137,229,83,72,131,236,24,72,139,61,112,18,3,0,232,167,105,254,255,72,137,69,232,72,141,61,118,175, 0,0,232,137,50,254,255,72,137,198,72,139,125,232,232,185,90,254,255,72,141,61,171,212,0,0,232,113,50,254,255,72,137,195,72,141,61,201,217,0,0,232,98,50,254,255,72,139,117,232,72,139,125,232,72,137,217,72,137,194,232,140,78,254,255,72,139,125,232,232, 191,254,255,255,72,139,69,232,72,131,196,24,91,201,195,85,72,137,229,72,141,61,190,215,0,0,232,43,50,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,80,0,0,0,186,0,0,0,0,72,141,53,93,255,255,255,184,0,0,0,0,232,97,32,254,255,72,137,5,204,17,3,0, 72,141,53,108,254,255,255,72,139,61,190,17,3,0,232,161,45,254,255,72,141,61,21,212,0,0,232,219,49,254,255,72,141,53,104,254,255,255,72,139,61,159,17,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,88,39,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125, 248,232,56,184,254,255,72,139,69,248,242,15,17,64,48,201,195,85,72,137,229,72,131,236,16,72,137,125,248,232,28,184,254,255,102,15,40,200,72,139,69,248,242,15,16,64,48,242,15,92,200,242,15,16,5,197,217,0,0,242,15,89,193,242,15,90,192,72,139,69,248,72, 139,120,24,232,94,91,254,255,201,195,85,72,137,229,83,72,131,236,24,72,139,61,38,17,3,0,232,85,104,254,255,72,137,69,232,72,141,61,36,174,0,0,232,55,49,254,255,72,137,198,72,139,125,232,232,103,89,254,255,72,141,61,89,211,0,0,232,31,49,254,255,72,137, 195,72,141,61,119,216,0,0,232,16,49,254,255,72,139,117,232,72,139,125,232,72,137,217,72,137,194,232,58,77,254,255,72,139,125,232,232,59,255,255,255,72,139,69,232,72,131,196,24,91,201,195,85,72,137,229,72,141,61,116,214,0,0,232,217,48,254,255,72,137,199, 65,185,0,0,0,0,65,184,0,0,0,0,185,56,0,0,0,186,0,0,0,0,72,141,53,93,255,255,255,184,0,0,0,0,232,15,31,254,255,72,137,5,130,16,3,0,72,141,53,232,254,255,255,72,139,61,116,16,3,0,232,79,44,254,255,72,141,61,195,210,0,0,232,137,48,254,255,72,141,53,229, 254,255,255,72,139,61,85,16,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,6,38,254,255,201,195,85,72,137,229,232,251,248,255,255,232,232,249,255,255,232,228,250,255,255,232,94,252,255,255,232,15,254,255,255,232,92,255,255,255,201,195,85,72,137,229,72,131, 236,32,243,15,17,69,236,72,139,61,33,16,3,0,232,56,103,254,255,72,137,69,248,72,139,125,248,72,141,53,181,188,2,0,232,82,88,254,255,72,139,69,248,199,64,48,255,255,255,255,15,87,192,15,46,69,236,117,4,122,2,235,9,199,69,232,2,0,0,0,235,7,199,69,232,1, 0,0,0,72,139,69,248,139,85,232,137,80,52,72,139,69,248,201,195,85,72,137,229,72,131,236,96,72,137,125,184,72,137,117,176,243,15,17,69,172,72,139,5,180,180,2,0,72,139,16,72,137,85,248,49,210,243,15,16,69,172,243,15,44,192,137,69,216,72,139,69,184,139, 64,48,133,192,120,22,72,141,61,61,213,0,0,184,0,0,0,0,232,251,38,255,255,233,113,1,0,0,72,139,69,184,139,112,52,186,0,0,0,0,191,2,0,0,0,232,94,74,0,0,137,69,220,131,125,220,0,121,17,72,141,61,42,185,0,0,232,160,186,254,255,233,65,1,0,0,198,69,225,2,72, 139,69,176,72,139,56,232,38,73,0,0,72,137,69,200,72,131,125,200,0,117,22,72,141,61,6,213,0,0,184,0,0,0,0,232,216,34,255,255,233,16,1,0,0,199,69,212,1,0,0,0,72,141,77,212,139,125,220,65,184,4,0,0,0,186,32,0,0,0,190,255,255,0,0,232,192,73,0,0,133,192,121, 17,72,141,61,212,212,0,0,184,0,0,0,0,232,155,34,255,255,72,139,69,184,139,64,52,131,248,1,117,56,199,69,212,1,0,0,0,72,141,77,212,139,125,220,65,184,4,0,0,0,186,1,0,0,0,190,6,0,0,0,232,124,73,0,0,133,192,121,17,72,141,61,227,184,0,0,184,0,0,0,0,232,87, 34,255,255,72,139,69,200,139,64,20,72,99,208,72,139,69,200,72,139,64,24,72,139,48,72,141,69,224,72,141,120,4,185,12,0,0,0,232,66,71,0,0,139,69,216,15,183,248,232,121,0,0,0,102,137,69,226,139,117,216,72,141,61,98,212,0,0,184,0,0,0,0,232,13,34,255,255, 72,141,117,224,139,125,220,186,16,0,0,0,232,152,71,0,0,133,192,121,22,72,141,61,87,184,0,0,232,131,185,254,255,139,125,220,232,215,193,254,255,235,31,72,139,85,184,139,69,220,137,66,48,72,139,69,184,72,139,120,24,243,15,16,5,74,214,0,0,232,27,88,254, 255,72,139,5,6,179,2,0,72,139,85,248,72,51,16,116,5,232,222,70,0,0,201,195,85,72,137,229,102,137,125,252,15,183,69,252,193,224,8,137,194,15,183,69,252,102,193,232,8,9,208,15,183,192,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139, 64,48,133,192,120,39,72,139,69,248,139,120,48,232,92,193,254,255,72,139,69,248,199,64,48,255,255,255,255,72,139,69,248,72,139,120,24,15,87,192,232,166,87,254,255,201,195,85,72,137,229,72,131,236,112,72,137,125,168,72,137,117,160,137,85,156,72,137,77, 144,72,139,69,168,139,64,48,133,192,15,136,188,1,0,0,232,239,181,253,255,72,137,69,232,72,139,85,144,139,117,156,72,139,125,232,232,115,194,253,255,199,69,176,4,0,0,0,199,69,184,0,0,0,0,72,141,85,176,72,139,125,232,190,1,0,0,0,232,83,194,253,255,72,141, 85,252,72,141,117,224,72,139,125,232,232,142,191,253,255,72,139,69,224,72,137,69,216,199,69,248,0,0,0,0,233,56,1,0,0,232,171,179,254,255,242,15,17,69,208,139,69,252,43,69,248,72,99,208,72,139,69,168,139,120,48,72,139,117,216,185,0,0,0,0,232,164,71,0, 0,137,69,244,232,128,179,254,255,242,15,17,69,200,242,15,16,69,200,242,15,92,69,208,102,15,46,5,235,216,0,0,15,151,192,15,182,192,137,69,240,131,125,240,0,117,25,242,15,16,13,164,12,3,0,102,15,87,192,102,15,46,200,117,7,122,5,233,157,0,0,0,242,15,16, 13,147,12,3,0,242,15,16,5,147,214,0,0,242,15,88,200,242,15,16,69,200,102,15,46,193,119,2,235,84,242,15,16,69,200,102,15,40,200,242,15,92,77,208,242,15,16,5,92,12,3,0,242,15,88,200,242,15,16,5,192,212,0,0,242,15,89,193,242,15,44,240,72,141,61,105,210, 0,0,184,0,0,0,0,232,253,31,255,255,184,0,0,0,0,72,137,5,43,12,3,0,72,139,69,200,72,137,5,40,12,3,0,235,40,131,125,240,0,116,34,242,15,16,69,200,102,15,40,200,242,15,92,77,208,242,15,16,5,2,12,3,0,242,15,88,193,242,15,17,5,246,11,3,0,131,125,244,0,127, 23,72,141,61,41,210,0,0,232,65,183,254,255,72,139,125,168,232,21,254,255,255,235,27,139,69,244,1,69,248,139,69,244,72,152,72,1,69,216,139,69,252,57,69,248,15,140,188,254,255,255,139,69,252,72,99,240,72,139,125,224,232,224,71,254,255,72,139,125,232,232, 117,180,253,255,235,17,72,141,61,229,209,0,0,184,0,0,0,0,232,27,35,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,182,253,255,255,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,215,255,255,255,76,141,37,60,251,255, 255,72,141,61,154,209,0,0,232,115,43,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,56,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,168,25,254,255,72,137,5,51,11,3,0,72,141,61,51,105,0,0,232,53,43,254,255,72,141,53,80,251,255,255, 72,139,61,25,11,3,0,65,185,0,0,0,0,65,184,1,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,166,32,254,255,72,141,61,195,109,0,0,232,253,42,254,255,72,141,53,18,253,255,255,72,139,61,225,10,3,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,122,32,254,255,72,141, 61,32,117,0,0,232,209,42,254,255,72,141,53,38,253,255,255,72,139,61,181,10,3,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,72,32,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,64,68,141, 80,255,72,139,69,248,137,80,68,72,139,69,248,139,64,68,243,15,42,192,72,139,69,248,72,139,120,56,232,109,84,254,255,201,195,85,72,137,229,83,72,129,236,56,64,0,0,72,137,189,200,191,255,255,72,137,181,192,191,255,255,72,139,133,200,191,255,255,72,137, 69,216,72,139,189,192,191,255,255,232,128,201,253,255,137,69,232,72,139,189,192,191,255,255,232,129,201,253,255,72,137,69,208,199,69,236,0,0,0,0,233,97,1,0,0,139,69,236,137,69,228,235,3,255,69,228,139,69,228,59,69,232,125,40,139,69,228,72,152,72,193, 224,4,72,3,69,208,139,0,131,248,5,116,20,139,69,228,72,152,72,193,224,4,72,3,69,208,139,0,131,248,4,117,205,139,69,228,59,69,236,15,142,18,1,0,0,139,69,236,137,69,224,235,69,139,69,224,72,152,72,193,224,4,72,3,69,208,139,0,131,248,8,116,20,139,69,224, 72,152,72,193,224,4,72,3,69,208,139,0,131,248,9,117,26,72,139,125,216,72,141,53,219,207,0,0,184,0,0,0,0,232,97,35,255,255,233,200,0,0,0,255,69,224,139,69,224,59,69,228,124,179,139,69,236,72,152,72,193,224,4,72,3,69,208,139,0,131,248,1,117,91,139,69,236, 255,192,59,69,228,125,48,139,69,236,72,152,72,193,224,4,72,137,193,72,3,77,208,139,85,236,139,69,228,137,195,41,211,137,218,72,139,69,216,72,139,120,48,190,0,0,0,0,232,35,84,254,255,235,111,139,69,236,72,152,72,193,224,4,72,3,69,208,243,15,16,64,8,72, 139,69,216,72,139,120,48,232,18,83,254,255,235,78,139,69,236,72,152,72,193,224,4,72,3,69,208,139,0,131,248,2,117,58,139,69,236,72,152,72,193,224,4,72,3,69,208,72,141,72,16,139,85,236,139,69,228,41,208,141,80,255,139,69,236,72,152,72,193,224,4,72,3,69, 208,72,139,112,8,72,139,69,216,72,139,120,48,232,55,84,254,255,139,69,228,255,192,137,69,236,139,69,236,59,69,232,15,140,147,254,255,255,72,129,196,56,64,0,0,91,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,69,232,139,120,64,186,0,0,0,0,190, 0,0,0,0,232,132,65,0,0,137,69,252,131,125,252,0,121,19,72,141,61,219,206,0,0,184,0,0,0,0,232,16,28,255,255,235,126,72,139,69,232,72,139,64,48,72,133,192,116,13,72,141,5,231,253,255,255,72,137,69,224,235,8,72,199,69,224,0,0,0,0,72,141,53,155,253,255,255, 72,139,125,232,185,0,0,0,0,72,139,85,224,232,60,181,254,255,72,137,69,240,72,141,5,94,185,254,255,72,137,198,72,139,85,240,139,125,252,232,152,179,254,255,72,139,69,232,139,64,68,141,80,1,72,139,69,232,137,80,68,72,139,69,232,139,64,68,243,15,42,192, 72,139,69,232,72,139,120,56,232,232,81,254,255,201,195,85,72,137,229,72,131,196,128,72,137,125,168,243,15,17,69,164,243,15,17,77,160,72,139,5,187,172,2,0,72,139,16,72,137,85,248,49,210,243,15,16,69,164,243,15,44,192,137,69,216,15,87,192,15,46,69,160, 15,149,192,15,154,194,9,208,15,182,192,137,69,212,72,139,69,168,72,139,56,72,141,53,20,206,0,0,232,140,66,0,0,133,192,15,148,192,15,182,192,137,69,208,131,125,212,0,116,9,199,69,140,2,0,0,0,235,7,199,69,140,1,0,0,0,186,0,0,0,0,139,117,140,191,2,0,0,0, 232,65,66,0,0,137,69,220,131,125,220,0,121,25,72,141,61,13,177,0,0,232,131,178,254,255,72,199,69,144,0,0,0,0,233,41,2,0,0,198,69,225,2,199,69,228,0,0,0,0,199,69,204,1,0,0,0,72,141,77,204,139,125,220,65,184,4,0,0,0,186,4,0,0,0,190,255,255,0,0,232,193, 65,0,0,133,192,121,17,72,141,61,136,205,0,0,184,0,0,0,0,232,156,26,255,255,199,69,204,1,0,0,0,72,141,77,204,139,125,220,65,184,4,0,0,0,186,32,0,0,0,190,255,255,0,0,232,137,65,0,0,133,192,121,17,72,141,61,157,204,0,0,184,0,0,0,0,232,100,26,255,255,131, 125,212,0,117,56,199,69,204,1,0,0,0,72,141,77,204,139,125,220,65,184,4,0,0,0,186,1,0,0,0,190,6,0,0,0,232,75,65,0,0,133,192,121,17,72,141,61,178,176,0,0,184,0,0,0,0,232,38,26,255,255,139,69,216,15,183,248,232,111,248,255,255,102,137,69,226,72,141,117, 224,139,125,220,186,16,0,0,0,232,138,63,0,0,133,192,121,33,72,141,61,255,204,0,0,232,141,177,254,255,139,125,220,232,225,185,254,255,72,199,69,144,0,0,0,0,233,43,1,0,0,72,139,61,44,6,3,0,232,59,93,254,255,72,137,69,192,131,125,208,0,116,14,72,139,69, 192,72,199,64,48,0,0,0,0,235,27,72,139,125,192,72,141,53,36,179,2,0,232,65,78,254,255,72,137,194,72,139,69,192,72,137,80,48,131,125,212,0,116,99,72,139,69,192,72,139,64,48,72,133,192,116,13,72,141,13,117,251,255,255,72,137,77,152,235,8,72,199,69,152, 0,0,0,0,72,141,53,41,251,255,255,72,139,125,192,185,1,0,0,0,72,139,85,152,232,202,178,254,255,72,137,69,184,72,141,5,236,182,254,255,72,137,198,72,139,85,184,139,125,220,232,38,177,254,255,72,139,69,192,72,199,64,56,0,0,0,0,235,92,139,125,220,190,5,0, 0,0,232,118,63,0,0,133,192,121,29,72,141,61,119,178,0,0,232,179,176,254,255,139,125,220,232,7,185,254,255,199,69,220,255,255,255,255,235,46,72,141,53,184,252,255,255,72,139,85,192,139,125,220,232,215,176,254,255,72,139,125,192,72,141,53,223,177,2,0,232, 124,77,254,255,72,137,194,72,139,69,192,72,137,80,56,72,139,85,192,139,69,220,137,66,64,72,139,69,192,199,64,68,0,0,0,0,72,139,85,192,139,69,212,137,66,72,72,139,69,192,72,137,69,144,72,139,69,144,72,139,21,245,169,2,0,72,139,77,248,72,51,10,116,5,232, 205,61,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,64,64,133,192,120,24,72,139,69,248,139,120,64,232,20,177,254,255,72,139,69,248,139,120,64,232,95,184,254,255,201,195,85,72,137,229,65,84,83,72,131,236,32,72,141,29,189,255, 255,255,76,141,37,195,252,255,255,72,141,61,90,203,0,0,232,157,36,254,255,72,137,199,199,68,36,16,0,0,0,0,199,68,36,8,7,0,0,0,199,4,36,6,0,0,0,65,185,6,0,0,0,65,184,8,0,0,0,185,80,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,194,18,254,255,72,137,5,85, 4,3,0,72,131,196,32,91,65,92,201,195,85,72,137,229,232,177,248,255,255,232,130,255,255,255,201,195,85,72,137,229,72,131,236,32,72,199,69,240,0,0,0,0,72,139,61,45,4,3,0,232,52,91,254,255,72,137,69,232,232,147,172,253,255,72,137,194,72,139,69,232,72,137, 80,56,72,141,53,25,4,0,0,72,139,125,232,232,193,100,254,255,72,137,194,72,139,69,232,72,137,80,72,72,139,125,232,72,141,53,230,176,2,0,232,35,76,254,255,72,139,125,232,72,141,53,182,176,2,0,232,19,76,254,255,72,137,194,72,139,69,232,72,137,80,48,72,139, 69,232,199,64,64,255,255,255,127,72,139,85,232,184,0,0,128,63,137,66,80,72,139,85,232,184,0,0,0,0,72,137,66,88,72,139,85,232,184,0,0,0,0,137,66,96,232,66,7,250,255,72,137,194,72,139,69,232,72,137,80,112,72,139,69,232,199,64,120,0,0,0,0,72,139,69,232, 201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,199,64,64,0,0,0,0,72,139,69,248,72,139,64,72,72,133,192,116,13,72,139,69,248,72,139,120,72,232,98,100,254,255,72,139,69,248,186,0,0,0,0,72,137,80,88,72,139,69,248,199,64,120,1,0,0,0,201, 195,85,72,137,229,72,131,236,80,72,137,125,184,137,117,180,137,85,176,72,199,69,224,0,0,0,0,72,139,69,184,72,139,64,56,72,137,199,232,76,194,253,255,137,69,252,72,139,69,184,139,64,64,137,69,244,72,139,69,184,72,139,64,56,72,137,199,232,63,194,253,255, 72,137,69,216,139,69,244,72,152,72,193,224,4,72,3,69,216,72,137,69,208,139,69,244,59,69,252,15,141,82,2,0,0,235,39,72,139,69,208,139,0,131,248,4,117,8,72,199,69,224,0,0,0,0,255,69,244,72,131,69,208,16,139,69,244,59,69,252,15,141,41,2,0,0,72,139,69,208, 139,0,131,248,4,116,206,72,139,69,208,139,0,131,248,5,116,195,72,131,125,224,0,15,133,195,0,0,0,72,139,69,208,139,0,131,248,1,15,133,180,0,0,0,72,139,69,208,72,131,192,16,72,137,69,200,139,69,244,255,192,137,69,240,235,8,255,69,240,72,131,69,200,16,139, 69,240,59,69,252,125,11,72,139,69,200,139,0,131,248,1,116,229,72,139,85,184,139,69,240,137,66,64,131,125,176,0,116,76,72,139,69,208,243,15,16,72,8,72,139,69,184,243,15,16,64,80,243,15,89,193,72,139,69,184,243,15,17,64,96,72,139,69,184,243,15,16,64,96, 243,15,90,192,72,139,69,184,72,139,120,72,232,160,100,254,255,232,240,100,254,255,72,139,69,184,242,15,17,64,88,233,145,1,0,0,139,85,244,139,69,240,137,193,41,209,137,202,72,139,69,184,72,139,120,24,72,139,77,208,190,0,0,0,0,232,176,76,254,255,233,106, 1,0,0,72,139,69,208,72,131,192,16,72,137,69,200,139,69,244,255,192,137,69,240,235,8,255,69,240,72,131,69,200,16,139,69,240,59,69,252,125,22,72,139,69,200,139,0,131,248,1,116,229,72,139,69,200,139,0,131,248,2,116,218,72,139,85,184,139,69,240,137,66,64, 139,85,244,139,69,240,41,208,137,69,248,72,131,125,224,0,117,107,72,139,69,208,139,0,131,248,2,15,133,62,254,255,255,72,139,69,208,72,139,64,8,72,139,64,8,72,137,69,224,72,131,125,224,0,117,37,72,139,69,208,72,139,64,8,72,139,16,72,139,125,184,72,141, 53,241,199,0,0,184,0,0,0,0,232,239,26,255,255,233,2,254,255,255,72,131,69,208,16,255,69,244,255,77,248,131,125,248,0,117,15,72,139,85,184,139,69,240,137,66,64,233,226,253,255,255,72,139,69,184,139,64,120,137,69,236,72,139,69,184,199,64,120,0,0,0,0,131, 125,180,0,117,77,72,139,69,208,139,0,131,248,1,117,25,72,139,77,208,139,85,248,72,139,125,224,72,141,53,186,173,2,0,232,102,37,254,255,235,41,72,139,69,208,139,0,131,248,2,117,30,72,139,77,208,72,131,193,16,139,85,248,255,202,72,139,69,208,72,139,112, 8,72,139,125,224,232,59,37,254,255,72,139,69,184,139,64,120,133,192,117,52,72,139,85,184,139,69,236,137,66,120,233,96,253,255,255,72,139,69,184,199,64,64,255,255,255,127,72,139,69,184,72,139,120,48,232,93,73,254,255,72,139,85,184,184,0,0,0,0,72,137,66, 88,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,15,149,192,15,154,194,9,208,15,182,240,72,139,125,248,186,0,0,0,0,232,238,252,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232, 140,252,255,255,72,139,125,248,186,1,0,0,0,190,0,0,0,0,232,196,252,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,186,0,0,0,0,72,137,80,88,72,139,125,248,186,1,0,0,0,190,0,0,0,0,232,150,252,255,255,201,195,85,72,137,229,72,131, 236,48,72,137,125,232,72,137,117,224,137,85,220,72,137,77,208,199,69,240,4,0,0,0,199,69,248,0,0,0,0,72,139,69,232,72,139,64,56,72,137,199,72,139,85,208,139,117,220,232,150,180,253,255,72,139,69,232,72,139,64,56,72,137,199,72,141,85,240,190,1,0,0,0,232, 125,180,253,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,69,248,72,139,64,56,72,137,199,72,139,85,224,139,117,236,232,77,180,253,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125, 248,232,173,251,255,255,72,139,69,248,72,139,64,56,72,137,199,232,216,168,253,255,201,195,85,72,137,229,72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,139,125,248,232,185,255,255,255,72,139,77,224,139,85,236,72,139,117,240,72, 139,125,248,232,30,255,255,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,137,85,216,199,69,252,0,0,0,0,72,139,69,216,72,139,56,72,141,53,155,197,0,0,232,178,57,0,0,133,192,117,9,199,69,252,1,0,0,0,235,42,72,139,69,216,72,139, 0,15,182,0,132,192,116,28,72,139,69,216,72,139,16,72,139,125,232,72,141,53,57,117,0,0,184,0,0,0,0,232,77,24,255,255,72,139,69,232,72,139,80,112,72,139,69,224,72,139,48,72,139,69,232,72,139,64,56,72,137,199,139,77,252,232,127,203,253,255,133,192,116,28, 72,139,69,224,72,139,16,72,139,125,232,72,141,53,47,197,0,0,184,0,0,0,0,232,11,24,255,255,72,139,69,232,199,64,64,255,255,255,127,72,139,69,232,199,64,120,1,0,0,0,201,195,85,72,137,229,72,129,236,32,4,0,0,72,137,189,248,251,255,255,72,137,181,240,251, 255,255,72,137,149,232,251,255,255,72,139,5,236,162,2,0,72,139,16,72,137,85,248,49,210,199,133,12,252,255,255,0,0,0,0,72,139,133,240,251,255,255,72,139,48,72,139,133,248,251,255,255,72,139,120,112,72,141,149,16,252,255,255,185,232,3,0,0,232,116,3,250, 255,72,139,133,232,251,255,255,72,139,56,72,141,53,148,196,0,0,232,171,56,0,0,133,192,117,12,199,133,12,252,255,255,1,0,0,0,235,51,72,139,133,232,251,255,255,72,139,0,15,182,0,132,192,116,34,72,139,133,232,251,255,255,72,139,16,72,139,189,248,251,255, 255,72,141,53,38,116,0,0,184,0,0,0,0,232,58,23,255,255,72,139,133,248,251,255,255,72,139,64,56,72,137,199,139,141,12,252,255,255,72,141,181,16,252,255,255,72,141,21,8,75,0,0,232,109,204,253,255,133,192,116,34,72,139,133,240,251,255,255,72,139,16,72,139, 189,248,251,255,255,72,141,53,15,117,0,0,184,0,0,0,0,232,237,22,255,255,72,139,5,6,162,2,0,72,139,85,248,72,51,16,116,5,232,222,53,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,61,243,195,0,0,184,0,0,0,0,232,143,16,255,255,72,139,69,248, 72,139,64,56,72,137,199,232,103,187,253,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,243,15,90,77,228,242,15,16,5,209,200,0,0,102,15,46,193,119,2,235,10,184,8,229,60,30,137,69,228,235,25,243,15,90,69,228,102,15,46,5,186,200, 0,0,119,2,235,8,184,236,120,173,96,137,69,228,243,15,16,5,174,196,0,0,243,15,94,69,228,243,15,17,69,252,72,139,69,232,242,15,16,72,88,102,15,87,192,102,15,46,200,117,4,122,2,235,117,72,139,69,232,242,15,16,64,88,232,110,95,254,255,242,15,90,192,243,15, 17,69,248,72,139,69,232,243,15,16,64,96,243,15,92,69,248,243,15,17,69,244,15,87,192,15,46,69,244,119,2,235,8,184,0,0,0,0,137,69,244,72,139,69,232,243,15,16,72,80,243,15,16,69,252,15,40,208,243,15,94,209,15,40,202,243,15,16,69,244,243,15,89,193,243,15, 17,69,244,243,15,90,69,244,72,139,69,232,72,139,120,72,232,153,94,254,255,72,139,85,232,139,69,252,137,66,80,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,56,72,137,199,232,119,164,253,255,72,139,69,248,72,139,64,72,72,133, 192,116,13,72,139,69,248,72,139,120,72,232,35,95,254,255,201,195,85,72,137,229,72,131,236,32,72,199,69,240,0,0,0,0,72,139,61,157,251,2,0,232,156,82,254,255,72,137,69,232,232,251,163,253,255,72,137,194,72,139,69,232,72,137,80,56,72,139,125,232,72,141, 53,105,168,2,0,232,166,67,254,255,72,139,125,232,72,141,53,57,168,2,0,232,150,67,254,255,72,137,194,72,139,69,232,72,137,80,48,72,139,69,232,199,64,64,255,255,255,127,72,139,69,232,199,64,120,0,0,0,0,72,139,85,232,184,0,0,128,63,137,66,80,72,139,85,232, 184,0,0,0,0,72,137,66,88,72,139,85,232,184,0,0,0,0,137,66,96,72,139,69,232,72,199,64,72,0,0,0,0,232,174,254,249,255,72,137,194,72,139,69,232,72,137,80,112,72,139,69,232,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,69,200,72,139,64,56,72, 137,199,232,28,186,253,255,137,69,252,72,139,69,200,139,64,64,137,69,244,72,139,69,200,72,139,64,56,72,137,199,232,15,186,253,255,72,137,69,232,139,69,244,72,152,72,193,224,4,72,3,69,232,72,137,69,224,235,8,255,69,244,72,131,69,224,16,139,69,244,59,69, 252,125,22,72,139,69,224,139,0,131,248,4,116,229,72,139,69,224,139,0,131,248,5,116,218,139,69,244,137,69,240,72,139,69,224,72,137,69,216,235,8,255,69,240,72,131,69,216,16,139,69,240,59,69,252,125,22,72,139,69,216,139,0,131,248,4,116,11,72,139,69,216, 139,0,131,248,5,117,218,139,69,240,59,69,244,126,99,72,139,85,200,139,69,240,137,66,64,72,139,69,224,139,0,131,248,2,117,42,72,139,77,224,72,131,193,16,139,85,244,139,69,240,41,208,141,80,255,72,139,69,224,72,139,112,8,72,139,69,200,72,139,120,24,232, 118,69,254,255,235,60,139,85,244,139,69,240,137,193,41,209,137,202,72,139,69,200,72,139,120,24,72,139,77,224,190,0,0,0,0,232,205,68,254,255,235,24,72,139,69,200,199,64,64,255,255,255,127,72,139,69,200,72,139,120,48,232,194,66,254,255,201,195,85,72,137, 229,72,137,125,248,72,139,69,248,199,64,64,0,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,64,56,72,137,199,232,65,162,253,255,201,195,85,72,137,229,83,72,131,236,8,72,141,29,156,253,255,255,72,141,61,171,192,0,0,232,114, 25,254,255,72,137,199,65,185,0,0,0,0,65,184,0,0,0,0,185,128,0,0,0,72,137,218,72,141,53,18,245,255,255,184,0,0,0,0,232,170,7,254,255,72,137,5,69,249,2,0,72,141,61,118,192,0,0,232,55,25,254,255,72,141,53,181,245,255,255,72,139,61,43,249,2,0,185,0,0,0,0, 72,137,194,184,0,0,0,0,232,180,14,254,255,72,141,61,241,133,0,0,232,11,25,254,255,72,141,53,181,248,255,255,72,139,61,255,248,2,0,65,184,0,0,0,0,185,6,0,0,0,72,137,194,184,0,0,0,0,232,130,14,254,255,72,141,61,192,67,0,0,232,217,24,254,255,72,141,53,188, 249,255,255,72,139,61,205,248,2,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,80,14,254,255,72,141,61,238,191,0,0,232,167,24,254,255,72,141,53,99,249,255,255,72,139,61,155,248,2,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,36,14,254,255,72,141, 61,128,128,0,0,232,123,24,254,255,72,141,53,176,248,255,255,72,139,61,111,248,2,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,242,13,254,255,72,141,61,82,128,0,0,232,73,24,254,255,72,141,53,213,248,255,255,72,139,61,61,248,2,0,65,184,0,0,0, 0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,192,13,254,255,72,141,61,30,137,0,0,232,23,24,254,255,72,141,53,76,248,255,255,72,139,61,11,248,2,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,142,13,254,255,72,141,61,50,191,0,0,232,229,23,254,255, 72,141,53,254,248,255,255,72,139,61,217,247,2,0,65,185,0,0,0,0,65,184,7,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,86,13,254,255,72,141,61,166,63,0,0,232,173,23,254,255,72,141,53,133,249,255,255,72,139,61,161,247,2,0,65,185,0,0,0,0,65,184,7,0,0,0,185, 2,0,0,0,72,137,194,184,0,0,0,0,232,30,13,254,255,72,141,61,66,91,0,0,232,117,23,254,255,72,141,53,106,250,255,255,72,139,61,105,247,2,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184,0,0,0,0,232,236,12,254,255,72,141,61,153,190,0,0,232,67,23,254,255,72,141, 53,103,250,255,255,72,139,61,55,247,2,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,186,12,254,255,72,141,53,250,246,255,255,72,139,61,17,247,2,0,232,196,18,254,255,72,141,29,87,253,255,255,72,141,61,83,190,0,0,232,247,22,254,255,72,137,199, 65,185,0,0,0,0,65,184,0,0,0,0,185,128,0,0,0,72,137,218,72,141,53,47,251,255,255,184,0,0,0,0,232,47,5,254,255,72,137,5,210,246,2,0,72,141,61,251,189,0,0,232,188,22,254,255,72,141,53,244,252,255,255,72,139,61,184,246,2,0,185,0,0,0,0,72,137,194,184,0,0, 0,0,232,57,12,254,255,72,141,61,119,65,0,0,232,144,22,254,255,72,141,53,115,247,255,255,72,139,61,140,246,2,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,7,12,254,255,72,141,61,165,189,0,0,232,94,22,254,255,72,141,53,26,247,255,255,72,139, 61,90,246,2,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,219,11,254,255,72,141,61,55,126,0,0,232,50,22,254,255,72,141,53,103,246,255,255,72,139,61,46,246,2,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,169,11,254,255,72,141,61,9,126,0,0,232,0, 22,254,255,72,141,53,140,246,255,255,72,139,61,252,245,2,0,65,184,0,0,0,0,185,10,0,0,0,72,137,194,184,0,0,0,0,232,119,11,254,255,72,141,61,213,134,0,0,232,206,21,254,255,72,141,53,3,246,255,255,72,139,61,202,245,2,0,65,184,0,0,0,0,185,10,0,0,0,72,137, 194,184,0,0,0,0,232,69,11,254,255,72,141,61,233,188,0,0,232,156,21,254,255,72,141,53,181,246,255,255,72,139,61,152,245,2,0,65,185,0,0,0,0,65,184,7,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,13,11,254,255,72,141,61,93,61,0,0,232,100,21,254,255,72,141, 53,60,247,255,255,72,139,61,96,245,2,0,65,185,0,0,0,0,65,184,7,0,0,0,185,2,0,0,0,72,137,194,184,0,0,0,0,232,213,10,254,255,72,141,61,249,88,0,0,232,44,21,254,255,72,141,53,33,248,255,255,72,139,61,40,245,2,0,65,184,0,0,0,0,185,7,0,0,0,72,137,194,184, 0,0,0,0,232,163,10,254,255,72,141,53,13,250,255,255,72,139,61,2,245,2,0,232,173,16,254,255,72,131,196,8,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,242,15,16,64,56,72,139,69,248,72,139,120,48,232,117,87,254,255,201,195,85,72,137, 229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,48,232,199,85,254,255,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,119,2,235,8,184,0,0,0,0,137,69,244,243,15,90,69,244,72,139,69,248,242,15,17,64,56,201,195,85, 72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,243,15,16,69,244,72,139,125,248,232,177,255,255,255,72,139,125,248,232,105,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,24,232,57,61,254,255,201,195,85, 72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,48,232,150,87,254,255,201,195,85,72,137,229,83,72,131,236,40,243,15,17,69,220,72,139,61,26,244,2,0,232,17,75,254,255,72,137,69,232,243,15,16,69,220,72,139,125,232,232,68,255,255,255,72, 141,53,151,255,255,255,72,139,125,232,232,160,84,254,255,72,137,194,72,139,69,232,72,137,80,48,72,141,61,49,187,0,0,232,202,19,254,255,72,137,198,72,139,125,232,232,250,59,254,255,72,141,61,233,54,0,0,232,178,19,254,255,72,137,195,72,141,61,144,144,0, 0,232,163,19,254,255,72,139,117,232,72,139,125,232,72,137,217,72,137,194,232,205,47,254,255,72,139,69,232,72,131,196,40,91,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,59,255,255,255,76,141,37,79,255,255,255,72,141,61,206,186,0,0,232,96,19, 254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,64,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,149,1,254,255,72,137,5,64,243,2,0,72,141,61,150,186,0,0,232,34,19,254,255,72,137,198,72,141,61,251,254,255,255,185,0,0,0,0,186,6,0,0, 0,184,0,0,0,0,232,147,6,254,255,72,141,53,17,254,255,255,72,139,61,8,243,2,0,232,171,14,254,255,72,141,61,101,47,0,0,232,229,18,254,255,72,141,53,22,254,255,255,72,139,61,233,242,2,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,98,8,254,255,72,141,61,240,53, 0,0,232,185,18,254,255,72,141,53,5,254,255,255,72,139,61,189,242,2,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,48,8,254,255,72,141,53,15,254,255,255,72,139,61,151,242,2,0,232,110,14,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72, 131,236,16,72,137,125,248,72,139,69,248,199,64,64,0,0,0,0,72,139,69,248,72,139,120,24,232,82,59,254,255,72,139,69,248,139,64,64,133,192,117,22,72,139,69,248,242,15,16,64,56,72,139,69,248,72,139,120,48,232,221,84,254,255,201,195,85,72,137,229,72,131,236, 16,72,137,125,248,243,15,17,69,244,15,87,192,15,46,69,244,117,4,122,2,235,11,72,139,125,248,232,146,255,255,255,235,13,72,139,69,248,72,139,120,48,232,18,83,254,255,72,139,69,248,199,64,64,1,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72, 139,125,248,243,15,16,5,255,185,0,0,232,160,255,255,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,15,87,192,232,134,255,255,255,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,243,15,16,5,201,185,0,0,15,46,69,244,119,2,235, 8,184,0,0,128,63,137,69,244,243,15,90,69,244,72,139,69,248,242,15,17,64,56,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,48,232,221,84,254,255,201,195,85,72,137,229,83,72,131,236,40,243,15,17,69,220,72,139,61,105,241,2,0, 232,88,72,254,255,72,137,69,232,243,15,16,69,220,72,139,125,232,232,132,255,255,255,72,139,69,232,199,64,64,0,0,0,0,72,141,53,175,254,255,255,72,139,125,232,232,220,81,254,255,72,137,194,72,139,69,232,72,137,80,48,72,141,61,109,184,0,0,232,6,17,254,255, 72,137,198,72,139,125,232,232,54,57,254,255,72,141,61,37,52,0,0,232,238,16,254,255,72,137,195,72,141,61,204,141,0,0,232,223,16,254,255,72,139,117,232,72,139,125,232,72,137,217,72,137,194,232,9,45,254,255,72,139,69,232,72,131,196,40,91,201,195,85,72,137, 229,65,84,83,72,131,236,16,72,141,29,48,255,255,255,76,141,37,68,255,255,255,72,141,61,25,184,0,0,232,156,16,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,72,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,209,254,253,255,72,137,5, 132,240,2,0,72,141,53,118,254,255,255,72,139,61,118,240,2,0,232,17,12,254,255,72,141,61,203,44,0,0,232,75,16,254,255,72,141,53,118,254,255,255,72,139,61,87,240,2,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,200,5,254,255,72,141,61,86,51,0,0,232,31,16,254, 255,72,141,53,100,254,255,255,72,139,61,43,240,2,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,150,5,254,255,72,141,53,194,253,255,255,72,139,61,5,240,2,0,232,212,11,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,32,72,137, 125,232,232,204,82,254,255,242,15,17,69,248,72,139,69,232,242,15,16,64,56,232,210,82,254,255,102,15,40,200,242,15,16,5,135,185,0,0,102,15,87,193,242,15,17,69,240,242,15,16,77,240,242,15,16,5,193,187,0,0,102,15,46,193,119,2,235,27,72,139,69,232,243,15, 16,64,64,72,139,69,232,72,139,120,24,232,121,57,254,255,233,202,0,0,0,72,139,69,232,243,15,16,64,80,243,15,90,216,72,139,69,232,242,15,16,80,96,72,139,69,232,242,15,16,72,72,242,15,16,69,248,242,15,92,193,242,15,89,208,72,139,69,232,243,15,16,72,64,72, 139,69,232,243,15,16,64,80,15,40,225,243,15,92,224,15,40,196,243,15,90,192,242,15,89,194,242,15,88,195,242,15,90,192,72,139,69,232,72,139,120,24,232,15,57,254,255,72,139,69,232,243,15,16,72,88,15,87,192,15,46,193,115,2,235,12,72,139,85,232,184,0,0,160, 65,137,66,88,72,139,69,232,243,15,16,64,88,243,15,90,192,102,15,46,69,240,118,2,235,20,72,139,69,232,243,15,16,64,88,243,15,90,192,242,15,17,69,224,235,10,242,15,16,69,240,242,15,17,69,224,72,139,69,232,72,139,120,48,242,15,16,69,224,232,85,81,254,255, 201,195,85,72,137,229,72,131,236,48,72,137,125,232,243,15,17,69,228,232,146,81,254,255,242,15,17,69,248,72,139,69,232,139,64,84,133,192,15,132,121,1,0,0,72,139,69,232,242,15,16,72,104,102,15,87,192,102,15,46,200,15,134,98,1,0,0,72,139,69,232,242,15,16, 72,56,242,15,16,69,248,102,15,46,193,119,2,235,16,72,139,69,232,139,80,64,72,139,69,232,137,80,80,235,97,72,139,69,232,243,15,16,64,80,243,15,90,216,72,139,69,232,242,15,16,80,96,72,139,69,232,242,15,16,72,72,242,15,16,69,248,242,15,92,193,242,15,89, 208,72,139,69,232,243,15,16,72,64,72,139,69,232,243,15,16,64,80,15,40,225,243,15,92,224,15,40,196,243,15,90,192,242,15,89,194,242,15,88,195,242,15,90,192,72,139,69,232,243,15,17,64,80,72,139,85,232,72,139,69,248,72,137,66,72,72,139,69,232,242,15,16,64, 104,232,18,81,254,255,72,139,69,232,242,15,17,64,56,72,139,85,232,139,69,228,137,66,64,72,139,125,232,232,205,253,255,255,72,139,69,232,199,64,84,0,0,0,0,72,139,69,232,242,15,16,64,56,102,15,40,200,242,15,92,77,248,242,15,16,5,183,181,0,0,242,15,94,193, 72,139,69,232,242,15,17,64,96,72,139,69,232,243,15,16,72,88,15,87,192,15,46,193,115,2,235,12,72,139,85,232,184,0,0,160,65,137,66,88,72,139,69,232,243,15,16,64,88,243,15,90,200,72,139,69,232,242,15,16,64,104,102,15,46,200,119,2,235,16,72,139,69,232,242, 15,16,64,104,242,15,17,69,216,235,18,72,139,69,232,243,15,16,64,88,243,15,90,192,242,15,17,69,216,72,139,69,232,72,139,120,48,242,15,16,69,216,232,178,79,254,255,235,55,72,139,69,232,72,139,120,48,232,16,78,254,255,72,139,85,232,139,69,228,137,66,80, 72,139,69,232,139,80,80,72,139,69,232,137,80,64,72,139,69,232,72,139,120,24,243,15,16,69,228,232,206,54,254,255,72,139,69,232,199,64,84,0,0,0,0,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,243,15,90,69,244,72,139,69,248,242,15,17,64,104,72,139, 69,248,199,64,84,1,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,139,80,80,72,139,69,248,137,80,64,72,139,69,248,72,139,120,48,232,138,77,254,255,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,139,69,248, 72,139,120,48,232,106,77,254,255,72,139,85,248,139,69,244,137,66,80,72,139,69,248,139,80,80,72,139,69,248,137,80,64,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,120,48,232,150,79,254,255,201,195,85,72,137,229,83,72,131,236, 40,243,15,17,69,220,243,15,17,77,216,72,139,61,37,236,2,0,232,12,67,254,255,72,137,69,232,72,139,85,232,139,69,220,137,66,80,72,139,69,232,139,80,80,72,139,69,232,137,80,64,72,139,69,232,199,64,84,0,0,0,0,72,139,85,232,72,184,0,0,0,0,0,0,240,63,72,137, 66,96,72,141,53,225,251,255,255,72,139,125,232,232,116,76,254,255,72,137,194,72,139,69,232,72,137,80,48,232,165,78,254,255,72,139,69,232,242,15,17,64,72,72,139,69,232,72,139,80,72,72,139,69,232,72,137,80,56,72,139,85,232,139,69,216,137,66,88,72,141,61, 99,136,0,0,232,118,11,254,255,72,137,198,72,139,125,232,232,166,51,254,255,72,141,61,149,46,0,0,232,94,11,254,255,72,137,195,72,141,61,60,136,0,0,232,79,11,254,255,72,139,117,232,72,139,125,232,72,137,217,72,137,194,232,121,39,254,255,72,139,117,232, 72,131,198,88,72,139,125,232,232,244,46,254,255,72,139,69,232,72,131,196,40,91,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,214,254,255,255,76,141,37,234,254,255,255,72,141,61,126,178,0,0,232,251,10,254,255,72,137,199,199,68,36,8,0,0,0,0,199, 4,36,6,0,0,0,65,185,6,0,0,0,65,184,0,0,0,0,185,112,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,40,249,253,255,72,137,5,227,234,2,0,72,141,61,236,45,0,0,232,181,10,254,255,72,141,53,237,253,255,255,72,139,61,201,234,2,0,65,184,0,0,0,0,185,1,0,0,0,72,137, 194,184,0,0,0,0,232,44,0,254,255,72,141,61,3,39,0,0,232,131,10,254,255,72,141,53,227,253,255,255,72,139,61,151,234,2,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,0,0,254,255,72,141,61,62,53,0,0,232,87,10,254,255,72,141,53,224,253,255,255,72,139,61,107,234, 2,0,65,184,0,0,0,0,185,1,0,0,0,72,137,194,184,0,0,0,0,232,206,255,253,255,72,141,53,130,251,255,255,72,139,61,69,234,2,0,232,12,6,254,255,72,131,196,16,91,65,92,201,195,85,72,137,229,72,131,236,16,72,137,125,248,232,4,77,254,255,72,139,69,248,242,15, 17,64,48,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,69,248,242,15,16,64,48,232,248,76,254,255,242,15,90,192,72,139,69,248,72,139,120,24,232,206,51,254,255,201,195,85,72,137,229,83,72,131,236,40,243,15,17,69,220,72,139,61,225,233,2,0,232, 192,64,254,255,72,137,69,232,72,139,125,232,232,144,255,255,255,72,141,61,134,134,0,0,232,153,9,254,255,72,137,198,72,139,125,232,232,201,49,254,255,72,141,61,187,171,0,0,232,129,9,254,255,72,137,195,72,141,61,217,176,0,0,232,114,9,254,255,72,139,117, 232,72,139,125,232,72,137,217,72,137,194,232,156,37,254,255,72,139,69,232,72,131,196,40,91,201,195,85,72,137,229,83,72,131,236,24,72,141,29,120,255,255,255,72,141,61,194,176,0,0,232,56,9,254,255,72,137,199,199,4,36,0,0,0,0,65,185,6,0,0,0,65,184,0,0,0, 0,185,56,0,0,0,186,0,0,0,0,72,137,222,184,0,0,0,0,232,107,247,253,255,72,137,5,46,233,2,0,72,141,53,232,254,255,255,72,139,61,32,233,2,0,232,171,4,254,255,72,141,61,31,171,0,0,232,229,8,254,255,72,141,53,229,254,255,255,72,139,61,1,233,2,0,185,0,0,0, 0,72,137,194,184,0,0,0,0,232,98,254,253,255,72,131,196,24,91,201,195,85,72,137,229,72,129,236,208,0,0,0,72,137,189,72,255,255,255,137,181,68,255,255,255,72,137,149,56,255,255,255,72,139,5,138,141,2,0,72,139,16,72,137,85,248,49,210,72,139,61,186,232,2, 0,232,145,63,254,255,72,137,69,136,199,69,152,0,0,0,0,131,189,68,255,255,255,0,15,132,151,0,0,0,72,139,149,56,255,255,255,72,131,234,16,139,133,68,255,255,255,72,152,72,193,224,4,72,141,4,2,139,0,131,248,1,116,76,72,139,149,56,255,255,255,72,131,234, 16,139,133,68,255,255,255,72,152,72,193,224,4,72,141,60,2,72,141,117,160,186,79,0,0,0,232,7,139,253,255,72,141,85,160,72,139,125,136,72,141,53,163,175,0,0,184,0,0,0,0,232,217,1,255,255,184,0,0,0,0,137,69,144,235,33,72,139,149,56,255,255,255,72,131,234, 16,139,133,68,255,255,255,72,152,72,193,224,4,72,141,4,2,139,64,8,137,69,144,255,141,68,255,255,255,235,8,184,0,0,0,0,137,69,144,131,189,68,255,255,255,0,117,45,72,141,133,80,255,255,255,72,137,133,56,255,255,255,199,133,68,255,255,255,1,0,0,0,199,133, 80,255,255,255,1,0,0,0,184,0,0,0,0,137,133,88,255,255,255,72,139,85,136,139,133,68,255,255,255,137,66,48,139,133,68,255,255,255,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,199,232,138,33,254,255,72,137,194,72,139,69,136,72,137,80,64,72, 139,69,136,72,139,64,64,72,137,133,120,255,255,255,139,133,68,255,255,255,137,69,148,72,139,133,56,255,255,255,72,137,69,128,235,37,72,139,69,128,139,0,131,248,2,117,21,72,139,69,128,72,139,64,8,72,139,0,15,182,0,60,112,117,3,255,69,152,72,131,69,128, 16,255,77,148,131,125,148,255,117,210,139,69,152,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,199,232,17,33,254,255,72,137,194,72,139,69,136,72,137,80,72,72,139,69,136,72,139,64,72,72,137,133,104,255,255,255,72,139,85,136,139,69,152,137, 66,52,199,69,148,0,0,0,0,72,139,133,120,255,255,255,72,137,133,112,255,255,255,72,139,133,56,255,255,255,72,137,69,128,233,228,1,0,0,72,139,69,128,139,0,131,248,1,117,90,72,139,141,112,255,255,255,72,139,85,128,72,139,2,72,137,1,72,139,66,8,72,137,65, 8,72,139,125,136,72,141,53,20,147,2,0,232,177,46,254,255,72,137,194,72,139,133,112,255,255,255,72,137,80,16,131,125,148,0,15,132,136,1,0,0,72,139,181,112,255,255,255,72,131,198,8,72,139,125,136,232,18,42,254,255,233,111,1,0,0,72,139,69,128,139,0,131, 248,2,15,133,96,1,0,0,72,139,69,128,72,139,64,8,72,139,0,15,182,0,136,69,159,128,125,159,115,117,96,72,139,133,112,255,255,255,199,0,2,0,0,0,72,139,149,112,255,255,255,72,141,5,189,146,2,0,72,137,66,8,72,139,125,136,72,141,53,174,146,2,0,232,43,46,254, 255,72,137,194,72,139,133,112,255,255,255,72,137,80,16,131,125,148,0,15,132,2,1,0,0,72,139,181,112,255,255,255,72,131,198,8,72,139,125,136,232,88,42,254,255,233,233,0,0,0,128,125,159,112,117,105,72,139,133,112,255,255,255,199,0,3,0,0,0,72,139,149,112, 255,255,255,72,139,133,104,255,255,255,72,137,66,8,72,139,189,104,255,255,255,232,80,215,252,255,72,139,125,136,72,141,53,252,145,2,0,232,185,45,254,255,72,137,194,72,139,133,112,255,255,255,72,137,80,16,131,125,148,0,116,16,72,139,125,136,72,139,181, 104,255,255,255,232,87,40,254,255,72,131,133,104,255,255,255,24,235,122,128,125,159,102,116,32,72,139,69,128,72,139,64,8,72,139,16,72,139,125,136,72,141,53,228,172,0,0,184,0,0,0,0,232,251,254,254,255,72,139,133,112,255,255,255,199,0,1,0,0,0,72,139,149, 112,255,255,255,184,0,0,0,0,137,66,8,72,139,125,136,72,141,53,156,145,2,0,232,57,45,254,255,72,137,194,72,139,133,112,255,255,255,72,137,80,16,131,125,148,0,116,20,72,139,181,112,255,255,255,72,131,198,8,72,139,125,136,232,158,40,254,255,255,69,148,72, 131,69,128,16,72,131,133,112,255,255,255,24,139,69,148,59,133,68,255,255,255,15,140,13,254,255,255,72,139,117,136,72,131,198,56,72,139,125,136,232,110,40,254,255,72,139,69,136,72,199,64,80,0,0,0,0,72,139,85,136,139,69,144,137,66,56,72,139,69,136,72,139, 21,118,137,2,0,72,139,77,248,72,51,10,116,5,232,78,29,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,139,69,216,72,139,64,16,72,137,69,240,72,139,69,216,72,139,64,24,72,137,69,232,72,139,69,240,139,64,52,137,69,252,235,14,72,139,125,232,232, 224,212,252,255,72,131,69,232,24,255,77,252,131,125,252,255,117,233,72,139,69,240,139,64,52,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,198,72,139,69,216,72,139,120,24,232,25,32,254,255,72,139,69,216,72,139,56,232,113,71,254,255,72,139, 69,240,139,64,48,255,200,72,152,72,193,224,3,72,141,112,40,72,139,125,216,232,241,31,254,255,201,195,85,72,137,229,72,131,236,64,72,137,125,200,72,139,69,200,72,139,64,16,72,137,69,240,72,139,69,240,72,139,64,80,72,59,69,200,117,18,72,139,69,200,72,139, 80,8,72,139,69,240,72,137,80,80,235,69,72,139,69,240,72,139,64,80,72,137,69,232,235,36,72,139,69,224,72,59,69,200,117,18,72,139,69,224,72,139,80,8,72,139,69,232,72,137,80,8,235,27,72,139,69,224,72,137,69,232,72,139,69,232,72,139,64,8,72,137,69,224,72, 131,125,224,0,117,201,72,139,69,240,139,64,48,137,69,252,72,139,69,240,72,139,64,64,72,141,72,232,72,139,69,240,139,64,48,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,141,4,1,72,137,69,216,72,139,69,200,72,131,192,32,72,141,80,248,72,139,69, 240,139,64,48,72,152,72,193,224,3,72,141,4,2,72,137,69,208,233,148,0,0,0,72,139,69,216,139,0,137,69,196,131,125,196,2,116,37,131,125,196,3,116,53,131,125,196,1,116,2,235,109,72,139,69,208,243,15,16,0,72,139,69,216,72,139,120,16,232,210,44,254,255,235, 86,72,139,69,208,72,139,48,72,139,69,216,72,139,120,16,232,53,45,254,255,235,64,72,139,69,208,72,139,56,190,1,0,0,0,232,208,209,252,255,133,192,116,22,72,139,69,208,72,139,48,72,139,69,216,72,139,120,16,232,255,43,254,255,235,21,72,139,125,240,72,141, 53,72,170,0,0,184,0,0,0,0,232,76,252,254,255,72,131,109,216,24,72,131,109,208,8,255,77,252,131,125,252,255,15,133,95,255,255,255,72,139,125,200,232,230,253,255,255,201,195,85,72,137,229,72,131,236,112,72,137,125,184,72,137,117,176,137,85,172,72,137,77, 160,72,139,69,184,139,64,48,255,200,72,152,72,193,224,3,72,141,120,40,232,72,28,254,255,72,137,69,240,72,139,69,184,139,64,48,137,69,248,72,139,69,184,139,64,52,72,99,208,72,137,208,72,1,192,72,1,208,72,193,224,3,72,137,199,232,27,28,254,255,72,137,194, 72,139,69,240,72,137,80,24,139,69,172,59,69,248,126,72,139,69,248,72,152,72,193,224,4,72,3,69,160,139,0,131,248,1,117,25,139,69,248,72,152,72,193,224,4,72,3,69,160,139,80,8,72,139,69,184,137,80,56,235,21,72,139,125,184,72,141,53,139,169,0,0,184,0,0,0, 0,232,121,251,254,255,139,69,248,137,69,172,199,69,252,0,0,0,0,72,139,69,184,72,139,64,72,72,137,69,232,72,139,69,184,72,139,64,64,72,137,69,216,72,139,69,160,72,137,69,208,233,201,0,0,0,72,139,69,216,139,0,137,69,148,131,125,148,2,116,40,131,125,148, 3,116,56,131,125,148,1,116,5,233,156,0,0,0,72,139,125,208,232,6,130,253,255,72,139,69,216,243,15,17,64,8,233,133,0,0,0,72,139,125,208,232,61,130,253,255,72,137,194,72,139,69,216,72,137,80,8,235,111,72,139,125,232,232,196,209,252,255,72,139,69,208,139, 0,131,248,3,116,23,72,139,125,184,72,141,53,9,169,0,0,184,0,0,0,0,232,209,250,254,255,235,63,72,139,69,208,72,139,80,8,72,139,77,232,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,139,66,16,72,137,65,16,72,139,69,232,72,139,64,16,72,133,192,116,16,72,139, 69,232,72,139,80,16,139,66,12,255,192,137,66,12,72,131,69,232,24,255,69,252,72,131,69,216,24,72,131,69,208,16,139,69,252,59,69,172,15,140,43,255,255,255,199,69,252,0,0,0,0,72,139,69,184,72,139,64,72,72,137,69,232,72,139,69,240,72,139,64,24,72,137,69, 224,72,139,69,184,72,139,64,64,72,137,69,216,72,139,69,240,72,131,192,32,72,137,69,200,235,121,72,139,69,216,139,0,131,248,3,117,82,72,139,69,232,72,139,64,16,72,133,192,116,16,72,139,69,232,72,139,80,16,139,66,12,255,192,137,66,12,72,139,85,200,72,139, 69,224,72,137,2,72,139,77,224,72,139,85,232,72,139,2,72,137,1,72,139,66,8,72,137,65,8,72,139,66,16,72,137,65,16,72,131,69,224,24,72,131,69,232,24,235,15,72,139,69,216,72,139,80,8,72,139,69,200,72,137,16,255,69,252,72,131,69,216,24,72,131,69,200,8,139, 69,252,59,69,248,15,140,123,255,255,255,72,139,69,184,72,139,80,80,72,139,69,240,72,137,80,8,72,139,85,184,72,139,69,240,72,137,66,80,72,139,85,240,72,139,69,184,72,137,66,16,72,141,53,215,251,255,255,72,139,125,240,232,105,64,254,255,72,137,194,72,139, 69,240,72,137,16,72,139,69,184,243,15,16,72,56,15,87,192,15,46,200,115,2,235,20,72,139,69,184,243,15,16,64,56,243,15,90,192,242,15,17,69,152,235,9,102,15,87,192,242,15,17,69,152,72,139,69,240,72,139,56,242,15,16,69,152,232,10,66,254,255,201,195,85,72, 137,229,72,131,236,16,72,137,125,248,235,13,72,139,69,248,72,139,120,80,232,102,251,255,255,72,139,69,248,72,139,64,80,72,133,192,117,230,201,195,85,72,137,229,72,131,236,32,72,137,125,232,235,25,72,139,69,248,72,139,80,8,72,139,69,232,72,137,80,80,72, 139,125,248,232,152,250,255,255,72,139,69,232,72,139,64,80,72,137,69,248,72,131,125,248,0,117,212,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,178,255,255,255,76,141,37,32,246,255,255,72,141,61,233,166,0,0,232,210,254,253,255,72,137,199,199, 4,36,0,0,0,0,65,185,10,0,0,0,65,184,0,0,0,0,185,88,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,7,237,253,255,72,137,5,210,222,2,0,72,141,53,65,252,255,255,72,139,61,196,222,2,0,232,175,250,253,255,72,141,61,207,163,0,0,232,129,254,253,255,72,141,53,29, 255,255,255,72,139,61,165,222,2,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,254,243,253,255,72,141,61,156,165,0,0,232,85,254,253,255,72,141,53,27,255,255,255,72,139,61,121,222,2,0,185,0,0,0,0,72,137,194,184,0,0,0,0,232,210,243,253,255,72,131,196,16,91,65, 92,201,195,85,72,137,229,232,158,234,255,255,232,93,237,255,255,232,249,242,255,255,232,192,244,255,255,232,24,255,255,255,201,195,85,72,137,229,72,131,236,48,137,125,252,137,117,248,137,85,244,137,77,240,72,141,5,20,154,2,0,72,139,0,72,133,192,15,132, 167,0,0,0,72,141,5,1,154,2,0,72,139,0,72,137,69,216,131,125,240,127,127,20,184,0,0,0,0,131,125,240,0,137,194,15,73,85,240,137,85,224,235,7,199,69,224,127,0,0,0,131,125,244,127,127,20,184,0,0,0,0,131,125,244,0,137,194,15,73,85,244,137,85,228,235,7,199, 69,228,127,0,0,0,129,125,252,255,15,0,0,127,23,184,0,0,0,0,131,125,252,0,15,73,69,252,137,194,193,226,4,137,85,232,235,7,199,69,232,240,255,0,0,131,125,248,15,127,20,184,0,0,0,0,131,125,248,0,137,194,15,73,85,248,137,85,236,235,7,199,69,236,15,0,0,0, 139,125,232,11,125,236,139,85,224,139,117,228,255,85,216,201,195,85,72,137,229,72,131,236,48,137,125,252,137,117,248,137,85,244,137,77,240,72,141,5,76,153,2,0,72,139,0,72,133,192,15,132,167,0,0,0,72,141,5,57,153,2,0,72,139,0,72,137,69,216,131,125,240, 127,127,20,184,0,0,0,0,131,125,240,0,137,194,15,73,85,240,137,85,224,235,7,199,69,224,127,0,0,0,131,125,244,127,127,20,184,0,0,0,0,131,125,244,0,137,194,15,73,85,244,137,85,228,235,7,199,69,228,127,0,0,0,129,125,252,255,15,0,0,127,23,184,0,0,0,0,131, 125,252,0,15,73,69,252,137,194,193,226,4,137,85,232,235,7,199,69,232,240,255,0,0,131,125,248,15,127,20,184,0,0,0,0,131,125,248,0,137,194,15,73,85,248,137,85,236,235,7,199,69,236,15,0,0,0,139,125,232,11,125,236,139,85,224,139,117,228,255,85,216,201,195, 85,72,137,229,72,131,236,32,137,125,252,137,117,248,137,85,244,72,141,5,135,152,2,0,72,139,0,72,133,192,15,132,131,0,0,0,72,141,5,116,152,2,0,72,139,0,72,137,69,224,131,125,244,127,127,20,184,0,0,0,0,131,125,244,0,137,194,15,73,85,244,137,85,232,235, 7,199,69,232,127,0,0,0,129,125,252,255,15,0,0,127,23,184,0,0,0,0,131,125,252,0,15,73,69,252,137,194,193,226,4,137,85,236,235,7,199,69,236,240,255,0,0,131,125,248,15,127,20,184,0,0,0,0,131,125,248,0,137,194,15,73,85,248,137,85,240,235,7,199,69,240,15, 0,0,0,139,125,236,11,125,240,139,117,232,255,85,224,201,195,85,72,137,229,72,131,236,32,137,125,252,137,117,248,137,85,244,72,141,5,230,151,2,0,72,139,0,72,133,192,15,132,137,0,0,0,72,141,5,211,151,2,0,72,139,0,72,137,69,224,129,125,244,255,63,0,0,127, 23,184,0,0,0,0,131,125,244,0,15,73,69,244,45,0,32,0,0,137,69,232,235,7,199,69,232,255,31,0,0,129,125,252,255,15,0,0,127,23,184,0,0,0,0,131,125,252,0,15,73,69,252,137,194,193,226,4,137,85,236,235,7,199,69,236,240,255,0,0,131,125,248,15,127,20,184,0,0, 0,0,131,125,248,0,137,194,15,73,85,248,137,85,240,235,7,199,69,240,15,0,0,0,139,125,236,11,125,240,139,117,232,255,85,224,201,195,85,72,137,229,72,131,236,32,137,125,252,137,117,248,137,85,244,72,141,5,63,151,2,0,72,139,0,72,133,192,15,132,131,0,0,0, 72,141,5,44,151,2,0,72,139,0,72,137,69,224,131,125,244,127,127,20,184,0,0,0,0,131,125,244,0,137,194,15,73,85,244,137,85,232,235,7,199,69,232,127,0,0,0,129,125,252,255,15,0,0,127,23,184,0,0,0,0,131,125,252,0,15,73,69,252,137,194,193,226,4,137,85,236,235, 7,199,69,236,240,255,0,0,131,125,248,15,127,20,184,0,0,0,0,131,125,248,0,137,194,15,73,85,248,137,85,240,235,7,199,69,240,15,0,0,0,139,125,236,11,125,240,139,117,232,255,85,224,201,195,85,72,137,229,72,131,236,48,137,125,252,137,117,248,137,85,244,137, 77,240,72,141,5,155,150,2,0,72,139,0,72,133,192,15,132,167,0,0,0,72,141,5,136,150,2,0,72,139,0,72,137,69,216,131,125,240,127,127,20,184,0,0,0,0,131,125,240,0,137,194,15,73,85,240,137,85,224,235,7,199,69,224,127,0,0,0,131,125,244,127,127,20,184,0,0,0, 0,131,125,244,0,137,194,15,73,85,244,137,85,228,235,7,199,69,228,127,0,0,0,129,125,252,255,15,0,0,127,23,184,0,0,0,0,131,125,252,0,15,73,69,252,137,194,193,226,4,137,85,232,235,7,199,69,232,240,255,0,0,131,125,248,15,127,20,184,0,0,0,0,131,125,248,0, 137,194,15,73,85,248,137,85,236,235,7,199,69,236,15,0,0,0,139,125,232,11,125,236,139,85,224,139,117,228,255,85,216,201,195,85,72,137,229,72,131,236,32,137,125,252,137,117,248,72,141,5,217,149,2,0,72,139,0,72,133,192,116,95,72,141,5,202,149,2,0,72,139, 0,72,137,69,232,129,125,248,255,0,0,0,127,20,184,0,0,0,0,131,125,248,0,137,194,15,73,85,248,137,85,240,235,7,199,69,240,255,0,0,0,129,125,252,255,15,0,0,127,20,184,0,0,0,0,131,125,252,0,137,194,15,73,85,252,137,85,244,235,7,199,69,244,255,15,0,0,139, 117,240,139,125,244,255,85,232,201,195,85,72,137,229,72,137,125,248,201,195,85,72,137,229,201,195,85,72,137,229,72,137,125,248,72,137,117,240,72,137,85,232,72,137,77,224,201,195,85,72,137,229,137,125,252,72,137,117,240,137,85,236,72,137,77,224,68,137, 69,220,201,195,85,72,137,229,201,195,85,72,137,229,201,195,85,72,137,229,201,195,85,72,137,229,201,195,85,72,137,229,242,15,17,69,248,242,15,17,77,240,201,195,85,72,137,229,72,137,125,248,243,15,17,69,244,201,195,85,72,137,229,72,137,125,248,243,15,17, 69,244,201,195,85,72,137,229,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,5,108,148,2,0,72,139,0,72,133,192,116,23,72,141,5,93,148,2,0,72,139,16,72,139,69,248,72,139,64,48,72,139,56, 255,210,201,195,85,72,137,229,72,131,236,16,72,137,125,248,243,15,17,69,244,72,141,5,59,148,2,0,72,139,0,72,133,192,116,28,72,141,5,44,148,2,0,72,139,16,72,139,69,248,72,139,64,48,72,139,56,243,15,16,69,244,255,210,201,195,85,72,137,229,72,131,236,16, 72,137,125,248,72,137,117,240,72,141,5,6,148,2,0,72,139,0,72,133,192,116,30,72,141,5,247,147,2,0,72,139,16,72,139,69,240,72,139,48,72,139,69,248,72,139,64,48,72,139,56,255,210,201,195,85,72,137,229,72,137,125,248,72,137,117,240,201,195,85,72,137,229, 72,131,236,32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,141,5,186,147,2,0,72,139,0,72,133,192,116,30,72,141,5,171,147,2,0,72,139,8,72,139,69,248,72,139,64,48,72,139,56,72,139,85,224,139,117,236,255,209,201,195,85,72,137,229,72,131,236, 32,72,137,125,248,72,137,117,240,137,85,236,72,137,77,224,72,141,5,124,147,2,0,72,139,0,72,133,192,116,38,72,141,5,109,147,2,0,76,139,0,72,139,69,240,72,139,48,72,139,69,248,72,139,64,48,72,139,56,72,139,77,224,139,85,236,65,255,208,201,195,85,72,137, 229,72,131,236,16,72,137,125,248,72,139,69,248,72,139,112,48,72,139,125,248,232,230,50,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,61,58,215,2,0,232,9,46,254,255,72,137,69,248,72,139,85,248,72,139,69,232,72,137,66,48,72,139,125, 248,72,139,117,232,232,171,49,254,255,72,139,69,248,201,195,85,72,137,229,65,84,83,72,131,236,16,72,141,29,148,255,255,255,76,141,37,172,255,255,255,72,141,61,207,158,0,0,232,179,246,253,255,72,137,199,199,4,36,0,0,0,0,65,185,7,0,0,0,65,184,0,0,0,0,185, 56,0,0,0,72,137,218,76,137,230,184,0,0,0,0,232,232,228,253,255,72,137,5,187,214,2,0,72,141,53,245,253,255,255,72,139,61,173,214,2,0,232,40,242,253,255,72,141,53,22,254,255,255,72,139,61,154,214,2,0,232,73,242,253,255,72,141,53,65,254,255,255,72,139,61, 135,214,2,0,232,80,242,253,255,72,141,53,109,254,255,255,72,139,61,116,214,2,0,232,9,242,253,255,72,141,53,104,254,255,255,72,139,61,97,214,2,0,232,68,242,253,255,72,141,53,155,254,255,255,72,139,61,78,214,2,0,232,75,242,253,255,72,131,196,16,91,65,92, 201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,241,245,253,255,72,139,64,8,72,137,69,248,72,139,69,248,201,195,85,72,137,229,72,139,21,202,145,2,0,72,141,5,115,228,2,0,72,137,16,72,141,5,17,220,2,0,72,199,0,0,0,0,0,72,141,5,11, 220,2,0,72,199,0,0,0,0,0,72,141,5,93,142,2,0,199,0,64,0,0,0,72,141,5,4,220,2,0,199,0,0,0,0,0,72,141,5,59,228,2,0,199,0,0,0,0,0,72,141,5,110,145,2,0,199,0,0,0,0,0,72,141,5,213,219,2,0,199,0,0,0,0,0,72,141,5,228,227,2,0,199,0,0,0,0,0,72,141,5,207,227,2, 0,199,0,0,0,0,0,72,141,5,190,227,2,0,199,0,1,0,0,0,72,141,5,109,143,2,0,199,0,0,0,0,0,72,141,5,108,143,2,0,199,0,0,0,0,0,72,141,5,91,143,2,0,199,0,0,0,0,0,72,141,21,62,219,2,0,184,0,0,0,0,72,137,2,184,0,0,0,0,232,154,53,254,255,184,0,0,0,0,232,40,254, 255,255,191,9,0,0,0,232,167,100,254,255,72,141,5,129,227,2,0,72,199,0,0,0,0,0,201,195,85,72,137,229,72,141,5,109,227,2,0,72,139,56,232,189,204,254,255,72,141,5,94,227,2,0,72,199,0,0,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,141,5,66, 227,2,0,72,139,56,72,139,117,248,186,0,0,0,0,232,148,202,254,255,72,137,194,72,141,5,39,227,2,0,72,137,16,201,195,85,72,137,229,72,131,196,128,137,125,188,137,117,184,137,85,180,137,77,176,139,69,176,137,5,189,212,2,0,199,69,208,0,0,0,0,139,69,208,137, 69,240,139,69,188,137,69,224,139,69,184,137,69,192,72,141,85,208,72,141,77,224,72,141,117,240,199,68,36,32,1,0,0,0,199,68,36,24,255,255,255,255,139,69,180,137,68,36,16,72,141,69,192,72,137,68,36,8,199,4,36,1,0,0,0,73,137,209,65,184,1,0,0,0,186,1,0,0, 0,191,1,0,0,0,232,91,75,254,255,191,2,0,0,0,232,79,63,254,255,232,64,83,254,255,184,0,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,137,117,224,72,141,5,28,218,2,0,139,0,72,152,72,193,224,8,72,137,69,248,72,141,5,13,218,2,0,139,0,72,152, 72,193,224,8,72,137,69,240,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,193,255,255,255,255,72,141,5,242,217,2,0,72,139,56,72,139,85,248,72,139,117,232,232,82,12,0,0,235,23,72,141,5,217,217,2,0,72,139,56,72,139,85,248,72,139,117,232,232,220, 0,0,0,72,199,192,255,255,255,255,72,131,248,255,116,33,72,199,193,255,255,255,255,72,141,5,182,217,2,0,72,139,56,72,139,85,240,190,0,0,0,0,232,25,12,0,0,235,24,72,141,5,156,217,2,0,72,139,56,72,139,85,240,190,0,0,0,0,232,106,0,0,0,72,141,5,84,217,2,0, 242,15,16,8,72,141,5,81,217,2,0,242,15,16,0,242,15,88,193,232,19,63,254,255,72,199,192,255,255,255,255,72,131,248,255,116,32,72,199,193,255,255,255,255,72,141,5,81,217,2,0,72,139,48,72,139,85,240,72,139,125,224,232,169,11,0,0,235,23,72,141,5,56,217,2, 0,72,139,48,72,139,85,240,72,139,125,224,232,51,0,0,0,184,0,0,0,0,201,195,85,72,137,229,72,131,236,32,72,137,125,248,137,117,244,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,139,117,244,72,139,125,248,232,107,11,0,0,201,195,85,72,137,229,72, 131,236,32,72,137,125,248,72,137,117,240,72,137,85,232,72,199,193,255,255,255,255,72,139,85,232,72,139,117,240,72,139,125,248,232,49,11,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,199,69,252,0,0,0,0,233,109,1,0,0,199,69,248, 0,0,0,0,72,141,5,149,216,2,0,72,139,0,72,137,69,232,235,87,199,69,244,0,0,0,0,72,139,69,232,72,137,69,224,235,48,72,139,69,216,15,183,0,152,243,15,42,200,243,15,16,5,83,158,0,0,243,15,89,193,72,139,69,224,243,15,17,0,72,131,69,216,2,255,69,244,72,129, 69,224,0,1,0,0,72,141,5,52,216,2,0,139,0,57,69,244,124,194,255,69,248,72,131,69,232,4,131,125,248,63,126,163,72,199,192,255,255,255,255,72,131,248,255,116,47,72,199,193,255,255,255,255,72,141,5,8,216,2,0,139,0,72,152,72,137,194,72,193,226,8,72,141,5, 10,216,2,0,72,139,56,190,0,0,0,0,232,113,10,0,0,235,38,72,141,5,224,215,2,0,139,0,72,152,72,137,194,72,193,226,8,72,141,5,226,215,2,0,72,139,56,190,0,0,0,0,232,180,254,255,255,72,141,5,158,215,2,0,242,15,16,8,72,141,5,155,215,2,0,242,15,16,0,242,15,88, 193,232,93,61,254,255,199,69,248,0,0,0,0,72,141,5,168,215,2,0,72,139,0,72,137,69,232,235,88,199,69,244,0,0,0,0,72,139,69,232,72,137,69,224,235,49,72,139,69,224,243,15,16,8,243,15,16,5,94,157,0,0,243,15,89,193,243,15,44,192,137,194,72,139,69,208,102,137, 16,72,131,69,208,2,255,69,244,72,129,69,224,0,1,0,0,72,141,5,66,215,2,0,139,0,57,69,244,124,193,255,69,248,72,131,69,232,4,131,125,248,63,126,162,255,69,252,139,5,48,209,2,0,57,69,252,15,140,132,254,255,255,184,0,0,0,0,201,195,85,72,137,229,72,131,236, 48,72,137,125,216,72,137,117,208,199,69,252,0,0,0,0,233,68,1,0,0,199,69,248,0,0,0,0,72,141,5,246,214,2,0,72,139,0,72,137,69,232,235,67,199,69,244,0,0,0,0,72,139,69,232,72,137,69,224,235,28,72,139,69,216,139,16,72,139,69,224,137,16,72,131,69,216,4,255, 69,244,72,129,69,224,0,1,0,0,72,141,5,169,214,2,0,139,0,57,69,244,124,214,255,69,248,72,131,69,232,4,131,125,248,63,126,183,72,199,192,255,255,255,255,72,131,248,255,116,47,72,199,193,255,255,255,255,72,141,5,125,214,2,0,139,0,72,152,72,137,194,72,193, 226,8,72,141,5,127,214,2,0,72,139,56,190,0,0,0,0,232,230,8,0,0,235,38,72,141,5,85,214,2,0,139,0,72,152,72,137,194,72,193,226,8,72,141,5,87,214,2,0,72,139,56,190,0,0,0,0,232,41,253,255,255,72,141,5,19,214,2,0,242,15,16,8,72,141,5,16,214,2,0,242,15,16, 0,242,15,88,193,232,210,59,254,255,199,69,248,0,0,0,0,72,141,5,29,214,2,0,72,139,0,72,137,69,232,235,67,199,69,244,0,0,0,0,72,139,69,232,72,137,69,224,235,28,72,139,69,224,139,16,72,139,69,208,137,16,72,131,69,208,4,255,69,244,72,129,69,224,0,1,0,0,72, 141,5,204,213,2,0,139,0,57,69,244,124,214,255,69,248,72,131,69,232,4,131,125,248,63,126,183,255,69,252,139,5,186,207,2,0,57,69,252,15,140,173,254,255,255,184,0,0,0,0,201,195,85,72,137,229,72,131,236,48,72,137,125,216,72,137,117,208,199,69,252,0,0,0,0, 233,84,1,0,0,199,69,248,0,0,0,0,72,141,5,128,213,2,0,72,139,0,72,137,69,232,235,75,199,69,244,0,0,0,0,72,139,69,232,72,137,69,224,235,36,72,139,69,216,242,15,16,0,242,15,90,192,72,139,69,224,243,15,17,0,72,131,69,216,8,255,69,244,72,129,69,224,0,1,0, 0,72,141,5,43,213,2,0,139,0,57,69,244,124,206,255,69,248,72,131,69,232,4,131,125,248,63,126,175,72,199,192,255,255,255,255,72,131,248,255,116,47,72,199,193,255,255,255,255,72,141,5,255,212,2,0,139,0,72,152,72,137,194,72,193,226,8,72,141,5,1,213,2,0,72, 139,56,190,0,0,0,0,232,104,7,0,0,235,38,72,141,5,215,212,2,0,139,0,72,152,72,137,194,72,193,226,8,72,141,5,217,212,2,0,72,139,56,190,0,0,0,0,232,171,251,255,255,72,141,5,149,212,2,0,242,15,16,8,72,141,5,146,212,2,0,242,15,16,0,242,15,88,193,232,84,58, 254,255,199,69,248,0,0,0,0,72,141,5,159,212,2,0,72,139,0,72,137,69,232,235,75,199,69,244,0,0,0,0,72,139,69,232,72,137,69,224,235,36,72,139,69,224,243,15,16,0,243,15,90,192,72,139,69,208,242,15,17,0,72,131,69,208,8,255,69,244,72,129,69,224,0,1,0,0,72, 141,5,70,212,2,0,139,0,57,69,244,124,206,255,69,248,72,131,69,232,4,131,125,248,63,126,175,255,69,252,139,5,52,206,2,0,57,69,252,15,140,157,254,255,255,184,0,0,0,0,201,195,85,72,137,229,199,5,62,208,2,0,0,0,0,0,72,141,5,47,206,2,0,72,137,5,40,208,2,0, 184,32,0,0,0,201,195,85,72,137,229,243,15,17,69,252,72,139,5,17,208,2,0,199,0,1,0,0,0,72,139,21,4,208,2,0,139,69,252,137,66,8,72,139,5,247,207,2,0,72,131,192,16,72,137,5,236,207,2,0,139,5,238,207,2,0,255,192,137,5,230,207,2,0,201,195,85,72,137,229,72, 131,236,32,72,137,125,232,72,139,125,232,232,93,237,253,255,72,137,69,248,72,139,5,188,207,2,0,199,0,2,0,0,0,72,139,21,175,207,2,0,72,139,69,248,72,137,66,8,72,139,5,160,207,2,0,72,131,192,16,72,137,5,149,207,2,0,139,5,151,207,2,0,255,192,137,5,143,207, 2,0,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,0,247,255,255,72,137,69,248,72,131,125,248,0,117,9,199,69,228,255,255,255,255,235,36,139,21,94,207,2,0,72,139,125,248,72,141,13,75,205,2,0,72,141,53,212,121,2,0,232,45,45,254,255, 199,69,228,0,0,0,0,139,69,228,201,195,85,72,137,229,83,72,131,236,56,72,137,125,216,72,137,117,208,72,139,125,216,232,169,246,255,255,72,137,69,232,72,131,125,232,0,117,9,199,69,204,255,255,255,255,235,43,139,29,7,207,2,0,72,139,125,208,232,140,236,253, 255,72,137,198,72,139,125,232,72,141,13,232,204,2,0,137,218,232,34,241,253,255,199,69,204,0,0,0,0,139,69,204,72,131,196,56,91,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,81,236,253,255,72,137,199,232,54,245,255,255,201,195,85, 72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,173,35,254,255,201,195,85,72,137,229,72,131,236,48,72,137,125,232,72,137,117,224,72,139,125,232,232,17,246,255,255,72,137,69,248,72,131,125,248,0,116,30,72,139,125,224,232,3,236,253,255,72,137, 198,72,139,125,248,232,40,44,254,255,199,69,220,0,0,0,0,235,7,199,69,220,255,255,255,255,139,69,220,201,195,85,72,137,229,72,131,236,32,72,137,125,232,243,15,17,69,228,72,139,125,232,232,194,245,255,255,72,137,69,248,72,131,125,248,0,116,23,72,139,125, 248,243,15,16,69,228,232,144,43,254,255,199,69,224,0,0,0,0,235,7,199,69,224,255,255,255,255,139,69,224,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,127,245,255,255,72,137,69,248,72,131,125,248,0,116,18,72,139,125,248,232,51,43, 254,255,199,69,228,0,0,0,0,235,7,199,69,228,255,255,255,255,139,69,228,201,195,85,72,137,229,184,64,0,0,0,201,195,85,72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,54,245,255,255,72,133,192,15,149,192,15,182,192,201,195,85,72,137,229,72,131, 236,16,137,125,252,137,117,248,137,85,244,131,125,252,0,121,9,199,69,240,255,255,255,255,235,74,131,125,248,0,120,6,131,125,248,127,126,9,199,69,240,255,255,255,255,235,53,131,125,244,0,120,6,131,125,244,127,126,9,199,69,240,255,255,255,255,235,32,139, 117,252,131,230,15,139,69,252,137,199,193,255,4,139,77,244,139,85,248,232,201,134,255,255,199,69,240,0,0,0,0,139,69,240,201,195,85,72,137,229,72,131,236,16,137,125,252,137,117,248,137,85,244,131,125,252,0,121,9,199,69,240,255,255,255,255,235,74,131,125, 248,0,120,6,131,125,248,127,126,9,199,69,240,255,255,255,255,235,53,131,125,244,0,120,6,131,125,244,127,126,9,199,69,240,255,255,255,255,235,32,139,117,252,131,230,15,139,69,252,137,199,193,255,4,139,77,244,139,85,248,232,193,137,255,255,199,69,240,0, 0,0,0,139,69,240,201,195,85,72,137,229,72,131,236,16,137,125,252,137,117,248,131,125,252,0,121,9,199,69,244,255,255,255,255,235,50,131,125,248,0,120,6,131,125,248,127,126,9,199,69,244,255,255,255,255,235,29,139,117,252,131,230,15,139,69,252,137,199,193, 255,4,139,85,248,232,240,139,255,255,199,69,244,0,0,0,0,139,69,244,201,195,85,72,137,229,72,131,236,16,137,125,252,137,117,248,131,125,252,0,121,9,199,69,244,255,255,255,255,235,62,129,125,248,0,224,255,255,124,9,129,125,248,255,31,0,0,126,9,199,69,244, 255,255,255,255,235,35,139,85,248,129,194,0,32,0,0,139,117,252,131,230,15,139,69,252,137,199,193,255,4,232,244,141,255,255,199,69,244,0,0,0,0,139,69,244,201,195,85,72,137,229,72,131,236,16,137,125,252,137,117,248,131,125,252,0,121,9,199,69,244,255,255, 255,255,235,50,131,125,248,0,120,6,131,125,248,127,126,9,199,69,244,255,255,255,255,235,29,139,117,252,131,230,15,139,69,252,137,199,193,255,4,139,85,248,232,0,144,255,255,199,69,244,0,0,0,0,139,69,244,201,195,85,72,137,229,72,131,236,16,137,125,252, 137,117,248,137,85,244,131,125,252,0,121,9,199,69,240,255,255,255,255,235,74,131,125,248,0,120,6,131,125,248,127,126,9,199,69,240,255,255,255,255,235,53,131,125,244,0,120,6,131,125,244,127,126,9,199,69,240,255,255,255,255,235,32,139,117,252,131,230,15, 139,69,252,137,199,193,255,4,139,77,244,139,85,248,232,70,146,255,255,199,69,240,0,0,0,0,139,69,240,201,195,85,72,137,229,72,131,236,16,137,125,252,137,117,248,131,125,252,0,120,9,129,125,252,255,15,0,0,126,9,199,69,244,255,255,255,255,235,47,131,125, 248,0,120,9,129,125,248,255,0,0,0,126,9,199,69,244,255,255,255,255,235,23,139,117,248,139,125,252,184,0,0,0,0,232,108,129,255,255,199,69,244,0,0,0,0,139,69,244,201,195,85,72,137,229,72,131,236,16,137,125,252,137,117,248,131,125,252,0,120,9,129,125,252, 255,15,0,0,126,9,199,69,244,255,255,255,255,235,44,131,125,248,0,120,6,131,125,248,127,126,9,199,69,244,255,255,255,255,235,23,139,117,248,139,125,252,184,0,0,0,0,232,136,129,255,255,199,69,244,0,0,0,0,139,69,244,201,195,85,72,137,229,72,131,236,16,137, 125,252,137,117,248,131,125,252,0,120,9,129,125,252,255,15,0,0,126,9,199,69,244,255,255,255,255,235,47,131,125,248,0,120,9,129,125,248,255,0,0,0,126,9,199,69,244,255,255,255,255,235,23,139,117,248,139,125,252,184,0,0,0,0,232,237,149,255,255,199,69,244, 0,0,0,0,139,69,244,201,195,85,72,137,229,83,72,131,236,24,72,137,125,232,72,137,117,224,72,139,125,224,232,183,231,253,255,72,137,195,72,139,125,232,232,171,231,253,255,72,137,198,72,137,218,191,0,0,0,0,232,139,209,253,255,72,131,196,24,91,201,195,85, 72,137,229,72,131,236,16,72,137,125,248,72,139,125,248,232,250,30,254,255,201,195,85,72,137,229,72,131,236,32,72,137,125,232,72,139,125,232,232,242,37,254,255,232,191,203,249,255,137,69,252,72,139,125,232,232,82,38,254,255,139,69,252,201,195,255,37,94, 108,2,0,255,37,96,108,2,0,255,37,98,108,2,0,255,37,100,108,2,0,255,37,102,108,2,0,255,37,104,108,2,0,255,37,106,108,2,0,255,37,108,108,2,0,255,37,110,108,2,0,255,37,112,108,2,0,255,37,114,108,2,0,255,37,116,108,2,0,255,37,118,108,2,0,255,37,120,108,2, 0,255,37,122,108,2,0,255,37,124,108,2,0,255,37,126,108,2,0,255,37,128,108,2,0,255,37,130,108,2,0,255,37,132,108,2,0,255,37,134,108,2,0,255,37,136,108,2,0,255,37,138,108,2,0,255,37,140,108,2,0,255,37,142,108,2,0,255,37,144,108,2,0,255,37,146,108,2,0,255, 37,148,108,2,0,255,37,150,108,2,0,255,37,152,108,2,0,255,37,154,108,2,0,255,37,156,108,2,0,255,37,158,108,2,0,255,37,160,108,2,0,255,37,162,108,2,0,255,37,164,108,2,0,255,37,166,108,2,0,255,37,168,108,2,0,255,37,170,108,2,0,255,37,172,108,2,0,255,37, 174,108,2,0,255,37,176,108,2,0,255,37,178,108,2,0,255,37,180,108,2,0,255,37,182,108,2,0,255,37,184,108,2,0,255,37,186,108,2,0,255,37,188,108,2,0,255,37,190,108,2,0,255,37,192,108,2,0,255,37,194,108,2,0,255,37,196,108,2,0,255,37,198,108,2,0,255,37,200, 108,2,0,255,37,202,108,2,0,255,37,204,108,2,0,255,37,206,108,2,0,255,37,208,108,2,0,255,37,210,108,2,0,255,37,212,108,2,0,255,37,214,108,2,0,255,37,216,108,2,0,255,37,218,108,2,0,255,37,220,108,2,0,255,37,222,108,2,0,255,37,224,108,2,0,255,37,226,108, 2,0,255,37,228,108,2,0,255,37,230,108,2,0,255,37,232,108,2,0,255,37,234,108,2,0,255,37,236,108,2,0,255,37,238,108,2,0,255,37,240,108,2,0,255,37,242,108,2,0,255,37,244,108,2,0,255,37,246,108,2,0,255,37,248,108,2,0,255,37,250,108,2,0,255,37,252,108,2,0, 255,37,254,108,2,0,255,37,0,109,2,0,255,37,2,109,2,0,255,37,4,109,2,0,255,37,6,109,2,0,255,37,8,109,2,0,255,37,10,109,2,0,255,37,12,109,2,0,255,37,14,109,2,0,255,37,16,109,2,0,255,37,18,109,2,0,255,37,20,109,2,0,255,37,22,109,2,0,255,37,24,109,2,0,255, 37,26,109,2,0,255,37,28,109,2,0,255,37,30,109,2,0,255,37,32,109,2,0,255,37,34,109,2,0,255,37,36,109,2,0,255,37,38,109,2,0,255,37,40,109,2,0,255,37,42,109,2,0,255,37,44,109,2,0,255,37,46,109,2,0,255,37,48,109,2,0,255,37,50,109,2,0,255,37,52,109,2,0,255, 37,54,109,2,0,255,37,56,109,2,0,255,37,58,109,2,0,0,0,43,126,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116,115,32,105,103,110,111,114,101,100,0,43,126,0,115,105,103,98,105,110,111,112,115,0,45,126,58,32,101,120,116,114,97,32,97,114,103,117, 109,101,110,116,115,32,105,103,110,111,114,101,100,0,45,126,0,42,126,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116,115,32,105,103,110,111,114,101,100,0,42,126,0,47,126,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116,115,32,105, 103,110,111,114,101,100,0,47,126,0,109,97,120,126,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116,115,32,105,103,110,111,114,101,100,0,109,97,120,126,0,109,105,110,126,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116,115,32,105,103, 110,111,114,101,100,0,109,105,110,126,0,0,0,0,0,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,114,101,100,114,97,119,0,116,97,98,119,114,105,116,101,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97,121,0,0,0,0,0,0,37,115,58, 32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,119,114,105,116,101,126,0,116,97,98,119,114,105,116,101,126,0,115,116,111,112,0,115,116,97,114,116,0,116,97,98,112,108,97,121,126,58,32,37,115,58,32,110,111,32,115,117,99,104, 32,97,114,114,97,121,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,112,108,97,121,126,0,116,97,98,112,108,97,121,126,0,0,0,0,0,0,0,0,116,97,98,114,101,97,100,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32, 97,114,114,97,121,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,114,101,97,100,126,0,116,97,98,114,101,97,100,126,0,116,97,98,114,101,97,100,52,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97, 121,0,0,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,114,101,97,100,52,126,0,116,97,98,114,101,97,100,52,126,0,0,0,0,0,116,97,98,111,115,99,52,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97, 121,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,111,115,99,52,126,0,0,37,115,58,32,110,117,109,98,101,114,32,111,102,32,112,111,105,110,116,115,32,40,37,100,41,32,110,111,116,32,97,32,112,111,119,101,114,32, 111,102,32,50,32,112,108,117,115,32,116,104,114,101,101,0,116,97,98,111,115,99,52,126,0,116,97,98,115,101,110,100,95,100,115,112,0,116,97,98,115,101,110,100,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97,121,0,37,115,58,32,98,97,100, 32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,115,101,110,100,126,0,116,97,98,115,101,110,100,126,0,0,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,114,101,99,101,105,118,101,126,0,116,97,98,114, 101,99,101,105,118,101,126,0,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97,121,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,114,101,97,100,0,116,97,98,114,101,97,100,0,37,115,58,32,98,97,100,32,116, 101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,114,101,97,100,52,0,116,97,98,114,101,97,100,52,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,119,114,105,116,101,0,116,97,98,119,114,105,116,101,0,115,105, 103,126,0,108,105,110,101,126,0,118,108,105,110,101,126,0,115,110,97,112,115,104,111,116,126,0,118,115,110,97,112,115,104,111,116,126,0,101,110,118,58,32,99,111,117,108,100,110,39,116,32,97,108,108,111,99,97,116,101,32,98,117,102,102,101,114,0,101,110, 118,126,58,32,111,117,116,32,111,102,32,109,101,109,111,114,121,0,101,110,118,126,0,116,104,114,101,115,104,111,108,100,126,0,100,97,99,126,58,32,98,97,100,32,118,101,99,116,111,114,32,115,105,122,101,0,100,97,99,126,0,97,100,99,126,95,100,97,99,126, 0,97,100,99,126,58,32,98,97,100,32,118,101,99,116,111,114,32,115,105,122,101,0,97,100,99,126,0,0,0,0,0,0,100,101,108,119,114,105,116,101,126,0,0,0,0,0,0,0,100,101,108,114,101,97,100,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,100,101,108,119, 114,105,116,101,126,0,100,101,108,114,101,97,100,126,0,118,100,126,0,118,100,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,100,101,108,119,114,105,116,101,126,0,102,102,116,126,0,105,102,102,116,126,0,102,102,116,58,32,109,105,110,105,109,117,109, 32,52,32,112,111,105,110,116,115,0,114,102,102,116,126,0,114,105,102,102,116,126,0,102,114,97,109,112,58,32,109,105,110,105,109,117,109,32,52,32,112,111,105,110,116,115,0,102,114,97,109,112,126,0,0,0,0,108,111,97,100,95,114,101,103,105,115,116,101,114, 115,58,105,108,108,101,103,97,108,32,116,114,97,110,115,102,111,114,109,32,100,105,114,101,99,116,105,111,110,10,0,0,0,0,0,108,111,97,100,95,114,101,103,105,115,116,101,114,115,58,105,108,108,101,103,97,108,32,105,110,112,117,116,32,102,111,114,109,10, 0,0,0,0,0,0,108,111,97,100,95,114,101,103,105,115,116,101,114,115,58,105,108,108,101,103,97,108,32,105,110,112,117,116,32,115,99,97,108,101,10,0,114,101,97,108,61,48,32,97,110,100,32,105,109,97,103,32,62,32,48,10,0,114,101,97,108,61,48,32,97,110,100, 32,105,109,97,103,32,60,32,48,10,0,114,101,97,108,61,48,32,97,110,100,32,105,109,97,103,61,48,10,0,0,0,0,0,0,0,0,115,116,111,114,101,95,114,101,103,105,115,116,101,114,115,58,105,108,108,101,103,97,108,32,111,117,116,112,117,116,32,102,111,114,109,10, 0,0,0,0,115,116,111,114,101,95,114,101,103,105,115,116,101,114,115,58,105,108,108,101,103,97,108,32,111,117,116,112,117,116,32,115,99,97,108,101,10,0,104,105,112,126,0,108,111,112,126,0,102,116,50,0,98,112,126,0,98,105,113,117,97,100,126,0,115,97,109, 112,104,111,108,100,126,0,114,101,115,101,116,0,114,112,111,108,101,126,0,114,122,101,114,111,126,0,114,122,101,114,111,95,114,101,118,126,0,99,112,111,108,101,126,0,99,122,101,114,111,126,0,99,122,101,114,111,95,114,101,118,126,0,0,0,0,0,0,0,115,105, 103,115,101,110,100,32,37,115,58,32,117,110,101,120,112,101,99,116,101,100,32,118,101,99,116,111,114,32,115,105,122,101,0,115,101,110,100,126,0,115,126,0,0,0,0,0,114,101,99,101,105,118,101,126,32,37,115,58,32,118,101,99,116,111,114,32,115,105,122,101, 32,109,105,115,109,97,116,99,104,0,114,101,99,101,105,118,101,126,32,37,115,58,32,110,111,32,109,97,116,99,104,105,110,103,32,115,101,110,100,0,114,101,99,101,105,118,101,126,0,114,126,0,0,0,0,0,115,105,103,99,97,116,99,104,32,37,115,58,32,117,110,101, 120,112,101,99,116,101,100,32,118,101,99,116,111,114,32,115,105,122,101,0,99,97,116,99,104,126,0,116,104,114,111,119,126,0,0,0,0,0,0,0,116,104,114,111,119,126,32,37,115,58,32,118,101,99,116,111,114,32,115,105,122,101,32,109,105,115,109,97,116,99,104, 0,116,104,114,111,119,126,32,37,115,58,32,110,111,32,109,97,116,99,104,105,110,103,32,99,97,116,99,104,0,99,108,105,112,126,0,114,115,113,114,116,126,0,113,56,95,114,115,113,114,116,126,0,115,113,114,116,126,0,113,56,95,115,113,114,116,126,0,119,114, 97,112,126,0,109,116,111,102,126,0,102,116,111,109,126,0,100,98,116,111,114,109,115,126,0,114,109,115,116,111,100,98,126,0,100,98,116,111,112,111,119,126,0,112,111,119,116,111,100,98,126,0,112,111,119,126,0,101,120,112,126,0,108,111,103,126,0,97,98,115, 126,0,97,99,111,117,115,116,105,99,115,126,46,112,100,0,37,115,58,0,37,45,56,46,53,103,0,112,114,105,110,116,126,0,98,97,110,103,126,0,0,0,0,0,0,102,116,49,0,0,0,0,0,0,0,0,112,104,97,115,111,114,126,0,0,0,0,0,0,99,111,115,126,58,32,117,110,101,120,112, 101,99,116,101,100,32,109,97,99,104,105,110,101,32,97,108,105,103,110,109,101,110,116,0,99,111,115,126,0,111,115,99,126,0,0,0,0,0,0,0,118,99,102,126,0,110,111,105,115,101,126,0,110,111,116,104,105,110,103,32,116,111,32,98,101,32,100,111,110,101,0,98, 97,100,32,100,111,119,110,115,97,109,112,108,105,110,103,32,102,97,99,116,111,114,0,98,97,100,32,117,112,115,97,109,112,108,105,110,103,32,102,97,99,116,111,114,0,46,115,110,100,0,100,110,115,46,0,82,73,70,70,0,87,65,86,69,0,70,79,82,77,0,65,73,70,70, 0,102,109,116,32,0,0,0,0,0,0,67,79,77,77,0,83,83,78,68,0,0,115,107,105,112,0,110,102,114,97,109,101,115,0,98,121,116,101,115,0,110,111,114,109,97,108,105,122,101,0,119,97,118,101,0,110,101,120,116,115,116,101,112,0,97,105,102,102,0,98,105,103,0,108,105, 116,116,108,101,0,0,0,114,97,116,101,0,46,97,105,102,0,46,65,73,70,0,46,97,105,102,102,0,46,65,73,70,70,0,46,83,78,68,0,46,97,117,0,46,65,85,0,65,73,70,70,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,102,105,108,101,32,102,111,114,109, 97,116,32,117,110,97,118,97,105,108,97,98,108,101,0,0,0,0,0,87,65,86,69,32,102,105,108,101,32,102,111,114,99,101,100,32,116,111,32,108,105,116,116,108,101,32,101,110,100,105,97,110,0,0,0,0,0,0,0,65,73,70,70,32,102,105,108,101,32,102,111,114,99,101,100, 32,116,111,32,98,105,103,32,101,110,100,105,97,110,0,80,100,32,0,46,119,97,118,0,115,111,117,110,100,102,105,108,101,114,95,119,114,105,116,101,58,32,37,108,100,32,111,117,116,32,111,102,32,37,108,100,32,98,121,116,101,115,32,119,114,105,116,116,101, 110,0,37,115,58,32,37,115,0,114,97,119,0,0,0,0,0,0,0,0,109,97,120,115,105,122,101,0,37,115,58,32,110,111,32,115,117,99,104,32,116,97,98,108,101,0,0,0,0,0,0,115,111,117,110,100,102,105,108,101,114,95,114,101,97,100,58,32,97,114,114,97,121,115,32,104,97, 118,101,32,100,105,102,102,101,114,101,110,116,32,108,101,110,103,116,104,115,59,32,114,101,115,105,122,105,110,103,46,46,46,0,117,110,107,110,111,119,110,32,111,114,32,98,97,100,32,104,101,97,100,101,114,32,102,111,114,109,97,116,0,115,111,117,110,100, 102,105,108,101,114,95,114,101,97,100,58,32,37,115,58,32,37,115,0,108,115,101,101,107,32,102,97,105,108,101,100,0,0,0,115,111,117,110,100,102,105,108,101,114,95,114,101,97,100,58,32,116,114,117,110,99,97,116,101,100,32,116,111,32,37,108,100,32,101,108, 101,109,101,110,116,115,0,114,101,115,105,122,101,32,102,97,105,108,101,100,0,114,98,0,0,0,0,0,117,115,97,103,101,58,32,114,101,97,100,32,91,102,108,97,103,115,93,32,102,105,108,101,110,97,109,101,32,116,97,98,108,101,110,97,109,101,46,46,46,0,0,0,0, 0,0,0,102,108,97,103,115,58,32,45,115,107,105,112,32,60,110,62,32,45,110,102,114,97,109,101,115,32,60,110,62,32,45,114,101,115,105,122,101,32,45,109,97,120,115,105,122,101,32,60,110,62,32,46,46,46,0,0,45,114,97,119,32,60,104,101,97,100,101,114,98,121, 116,101,115,62,32,60,99,104,97,110,110,101,108,115,62,32,60,98,121,116,101,115,112,101,114,115,97,109,112,62,32,60,101,110,100,105,97,110,32,40,98,44,32,108,44,32,111,114,32,110,41,62,46,0,0,0,0,0,115,111,117,110,100,102,105,108,101,114,95,119,114,105, 116,101,58,32,110,111,32,115,97,109,112,108,101,115,32,97,116,32,111,110,115,101,116,32,37,108,100,0,37,115,58,32,37,115,10,0,0,0,0,0,0,0,37,115,58,32,110,111,114,109,97,108,105,122,105,110,103,32,109,97,120,32,97,109,112,108,105,116,117,100,101,32,37, 102,32,116,111,32,49,0,37,115,58,32,98,105,103,103,101,115,116,32,97,109,112,108,105,116,117,100,101,32,61,32,37,102,0,0,0,0,0,0,0,0,117,115,97,103,101,58,32,119,114,105,116,101,32,91,102,108,97,103,115,93,32,102,105,108,101,110,97,109,101,32,116,97, 98,108,101,110,97,109,101,46,46,46,0,0,0,0,0,0,102,108,97,103,115,58,32,45,115,107,105,112,32,60,110,62,32,45,110,102,114,97,109,101,115,32,60,110,62,32,45,98,121,116,101,115,32,60,110,62,32,45,119,97,118,101,32,45,97,105,102,102,32,45,110,101,120,116, 115,116,101,112,32,46,46,46,0,45,98,105,103,32,45,108,105,116,116,108,101,32,45,110,111,114,109,97,108,105,122,101,0,0,0,0,0,0,40,100,101,102,97,117,108,116,115,32,116,111,32,97,32,49,54,45,98,105,116,32,119,97,118,101,32,102,105,108,101,41,46,0,115, 111,117,110,100,102,105,108,101,114,0,0,0,0,0,0,119,114,105,116,101,0,115,105,103,110,97,108,0,100,115,112,58,32,37,115,58,32,37,115,0,0,0,0,0,0,114,101,97,100,115,102,58,32,115,116,97,114,116,32,114,101,113,117,101,115,116,101,100,32,119,105,116,104, 32,110,111,32,112,114,105,111,114,32,39,111,112,101,110,39,0,0,0,0,101,110,100,105,97,110,110,101,115,115,32,110,101,105,116,104,101,114,32,39,98,39,32,110,111,114,32,39,108,39,0,115,116,97,116,101,32,37,100,0,102,105,102,111,32,104,101,97,100,32,37, 100,0,102,105,102,111,32,116,97,105,108,32,37,100,0,102,105,102,111,32,115,105,122,101,32,37,100,0,102,100,32,37,100,0,101,111,102,32,37,100,0,114,101,97,100,115,102,95,102,114,101,101,58,32,106,111,105,110,32,102,97,105,108,101,100,0,114,101,97,100, 115,102,126,0,0,0,0,100,115,112,0,111,112,101,110,0,0,0,0,0,0,0,0,119,114,105,116,101,115,102,58,32,115,116,97,114,116,32,114,101,113,117,101,115,116,101,100,32,119,105,116,104,32,110,111,32,112,114,105,111,114,32,39,111,112,101,110,39,0,0,0,119,114, 105,116,101,115,102,126,58,32,117,115,97,103,101,58,32,111,112,101,110,32,91,45,98,121,116,101,115,32,91,50,51,52,93,93,32,91,45,119,97,118,101,44,45,110,101,120,116,115,116,101,112,44,45,97,105,102,102,93,32,46,46,46,0,0,0,0,0,0,0,0,46,46,46,32,91,45, 98,105,103,44,45,108,105,116,116,108,101,93,32,91,45,114,97,116,101,32,35,35,35,35,93,32,102,105,108,101,110,97,109,101,0,0,0,0,0,0,0,0,110,111,114,109,97,108,105,122,101,47,111,110,115,101,116,47,110,102,114,97,109,101,115,32,97,114,103,117,109,101, 110,116,32,116,111,32,119,114,105,116,101,115,102,126,58,32,105,103,110,111,114,101,100,0,0,0,101,120,116,114,97,32,97,114,103,117,109,101,110,116,40,115,41,32,116,111,32,119,114,105,116,101,115,102,126,58,32,105,103,110,111,114,101,100,0,119,114,105, 116,101,115,102,95,102,114,101,101,58,32,106,111,105,110,32,102,97,105,108,101,100,0,119,114,105,116,101,115,102,126,0,0,0,0,0,0,0,98,108,111,99,107,126,58,32,118,101,99,116,111,114,32,115,105,122,101,32,110,111,116,32,97,32,112,111,119,101,114,32,111, 102,32,50,0,0,0,0,98,108,111,99,107,126,58,32,111,118,101,114,108,97,112,32,110,111,116,32,97,32,112,111,119,101,114,32,111,102,32,50,0,0,0,0,0,0,0,0,98,108,111,99,107,126,58,32,100,111,119,110,115,97,109,112,108,105,110,103,32,110,111,116,32,97,32,112, 111,119,101,114,32,111,102,32,50,0,0,0,98,108,111,99,107,126,58,32,117,112,115,97,109,112,108,105,110,103,32,110,111,116,32,97,32,112,111,119,101,114,32,111,102,32,50,0,0,0,0,0,98,97,110,103,32,116,111,32,98,108,111,99,107,126,32,111,114,32,111,110,45, 115,116,97,116,101,32,115,119,105,116,99,104,126,32,104,97,115,32,110,111,32,101,102,102,101,99,116,0,98,108,111,99,107,126,0,115,119,105,116,99,104,126,0,115,101,116,0,0,0,0,0,115,105,103,110,97,108,95,102,114,101,101,32,51,0,115,105,103,110,97,108, 95,102,114,101,101,32,52,0,102,114,101,101,32,37,108,120,58,32,37,100,0,115,105,103,110,97,108,95,102,114,101,101,0,115,105,103,110,97,108,95,102,114,101,101,32,50,0,115,105,103,110,97,108,32,98,117,102,102,101,114,32,116,111,111,32,108,97,114,103,101, 0,110,101,119,32,37,108,120,58,32,37,100,0,115,105,103,110,97,108,95,115,101,116,98,111,114,114,111,119,101,100,0,115,105,103,110,97,108,95,115,101,116,98,111,114,114,111,119,101,100,32,50,0,117,103,101,110,95,115,116,97,114,116,0,117,103,101,110,95, 115,116,97,114,116,95,103,114,97,112,104,46,46,46,0,37,115,32,45,62,32,37,115,58,32,37,100,45,62,37,100,0,0,115,105,103,110,97,108,32,111,117,116,108,101,116,32,99,111,110,110,101,99,116,32,116,111,32,110,111,110,115,105,103,110,97,108,32,105,110,108, 101,116,32,40,105,103,110,111,114,101,100,41,0,0,0,0,0,0,117,103,101,110,95,99,111,110,110,101,99,116,32,37,115,32,37,115,32,37,100,32,37,100,32,40,37,100,32,37,100,41,0,100,111,105,116,32,37,115,32,37,100,32,37,100,0,112,117,116,32,37,115,32,37,100, 0,112,117,116,32,37,115,32,37,100,32,40,37,108,120,41,0,112,117,116,32,37,115,32,37,100,32,40,37,108,120,32,37,108,120,41,0,112,117,116,32,37,115,32,37,100,32,40,37,108,120,32,37,108,120,32,37,108,120,32,46,46,46,41,0,0,0,0,0,0,0,0,37,115,58,32,105,110, 99,111,109,112,97,116,105,98,108,101,32,115,105,103,110,97,108,32,105,110,112,117,116,115,0,117,103,101,110,95,100,111,110,101,95,103,114,97,112,104,46,46,46,0,117,103,101,110,58,32,37,115,0,0,0,0,0,0,46,46,46,32,111,117,116,32,37,100,32,116,111,32,37, 115,44,32,105,110,100,101,120,32,37,100,44,32,105,110,108,101,116,32,37,100,0,0,0,0,99,111,110,102,108,105,99,116,105,110,103,32,98,108,111,99,107,126,32,111,98,106,101,99,116,115,32,105,110,32,115,97,109,101,32,112,97,103,101,0,115,101,116,32,37,108, 120,45,62,37,108,120,0,114,101,98,108,111,99,107,32,37,100,44,32,115,119,105,116,99,104,101,100,32,37,100,0,0,0,0,68,83,80,32,108,111,111,112,32,100,101,116,101,99,116,101,100,32,40,115,111,109,101,32,116,105,108,100,101,32,111,98,106,101,99,116,115, 32,110,111,116,32,115,99,104,101,100,117,108,101,100,41,0,111,111,112,115,44,32,98,101,108,97,116,101,100,108,121,32,115,101,116,32,37,108,120,45,62,37,108,120,0,99,104,97,105,110,32,37,108,120,0,46,46,46,32,117,103,101,110,95,100,111,110,101,95,103, 114,97,112,104,32,100,111,110,101,46,0,117,103,101,110,95,99,117,114,114,101,110,116,99,111,110,116,101,120,116,0,117,103,101,110,95,103,101,116,105,111,115,105,103,0,115,97,109,112,108,101,114,97,116,101,126,0,0,0,0,0,0,60,45,57,57,0,45,53,48,0,45,51, 48,0,45,50,48,0,45,49,50,0,45,54,0,45,50,0,45,48,100,66,0,43,50,0,43,54,0,62,43,49,50,0,37,100,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,76,65,66,69,76,32,45,116,101,120,116,32,123,37,115,125,32,10, 0,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,76,65,66,69,76,32,37,100,32,37,100,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,76,65,66,69,76,32,45,102,111,110,116,32,123, 123,37,115,125,32,45,37,100,32,37,115,125,10,0,0,0,0,0,46,0,95,102,108,111,97,116,0,0,0,0,0,0,0,95,102,108,111,97,116,95,97,114,114,97,121,0,0,0,0,0,97,114,114,97,121,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116, 101,32,37,115,0,122,0,0,0,0,0,0,97,114,114,97,121,58,32,116,101,109,112,108,97,116,101,32,37,115,32,104,97,115,32,110,111,32,39,122,39,32,102,105,101,108,100,0,0,0,0,0,97,114,114,97,121,58,32,116,101,109,112,108,97,116,101,32,37,115,44,32,39,122,39,32, 102,105,101,108,100,32,105,115,32,110,111,116,32,97,110,32,97,114,114,97,121,0,0,0,98,111,117,110,100,115,0,102,102,102,102,0,0,0,0,0,97,114,114,97,121,32,37,115,58,32,111,110,108,121,32,39,102,108,111,97,116,39,32,116,121,112,101,32,117,110,100,101, 114,115,116,111,111,100,0,112,100,45,95,102,108,111,97,116,95,97,114,114,97,121,0,97,114,114,97,121,58,32,110,111,32,116,101,109,112,108,97,116,101,32,111,102,32,116,121,112,101,32,37,115,0,115,116,121,108,101,0,108,105,110,101,119,105,100,116,104,0, 35,65,0,112,100,116,107,95,97,114,114,97,121,95,100,105,97,108,111,103,32,37,37,115,32,97,114,114,97,121,37,100,32,49,48,48,32,51,32,49,10,0,0,112,100,116,107,95,97,114,114,97,121,95,100,105,97,108,111,103,32,37,37,115,32,92,37,115,32,37,100,32,37,100, 32,48,10,0,0,0,0,0,0,112,100,116,107,95,97,114,114,97,121,95,100,105,97,108,111,103,32,37,37,115,32,37,115,32,37,100,32,37,100,32,48,10,0,99,97,110,39,116,32,102,105,110,100,32,97,114,114,97,121,10,0,0,0,0,0,101,114,114,111,114,32,105,110,32,103,97,114, 114,97,121,95,97,114,114,97,121,118,105,101,119,108,105,115,116,95,110,101,119,40,41,0,0,0,0,0,112,100,116,107,95,97,114,114,97,121,95,108,105,115,116,118,105,101,119,95,110,101,119,32,37,37,115,32,37,115,32,37,100,10,0,0,0,0,0,0,46,37,115,65,114,114, 97,121,87,105,110,100,111,119,46,108,98,32,105,110,115,101,114,116,32,37,100,32,123,37,100,41,32,37,103,125,10,0,0,0,112,100,116,107,95,97,114,114,97,121,95,108,105,115,116,118,105,101,119,95,115,101,116,112,97,103,101,32,37,115,32,37,100,10,0,0,0,0, 0,0,46,37,115,65,114,114,97,121,87,105,110,100,111,119,46,108,98,32,100,101,108,101,116,101,32,48,32,37,100,10,0,46,37,115,65,114,114,97,121,87,105,110,100,111,119,46,108,98,32,121,118,105,101,119,32,37,100,10,0,0,0,0,0,0,112,100,116,107,95,97,114,114, 97,121,95,108,105,115,116,118,105,101,119,95,99,108,111,115,101,87,105,110,100,111,119,32,37,115,10,0,0,0,0,0,99,97,110,39,116,32,115,97,118,101,32,97,114,114,97,121,115,32,111,102,32,116,121,112,101,32,37,115,32,121,101,116,0,0,115,115,115,105,115,105, 59,0,0,0,0,0,0,0,119,97,114,110,105,110,103,58,32,73,39,109,32,115,97,118,105,110,103,32,97,110,32,97,114,114,97,121,32,119,105,116,104,32,37,100,32,112,111,105,110,116,115,33,10,0,115,105,0,0,0,0,0,0,0,0,112,100,116,107,95,97,114,114,97,121,95,108,105, 115,116,118,105,101,119,95,102,105,108,108,112,97,103,101,32,37,115,10,0,103,97,114,114,97,121,95,116,101,109,112,108,97,116,101,0,0,0,0,0,0,0,0,37,115,58,32,110,101,101,100,115,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,39,121,39,32, 102,105,101,108,100,0,37,115,58,32,104,97,115,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,102,105,101,108,100,0,0,119,97,114,110,105,110,103,58,32,101,120,116,101,114,110,32,117,115,105,110,103,32,103,97,114,114,97,121,95,103,101,116,102,108, 111,97,116,97,114,114,97,121,40,41,32,119,111,110,39,116,32,119,111,114,107,32,105,110,32,54,52,45,98,105,116,32,118,101,114,115,105,111,110,0,0,0,0,0,0,0,119,97,114,110,105,110,103,58,32,97,114,114,97,121,32,37,115,58,32,99,108,101,97,114,105,110,103, 32,115,97,118,101,45,105,110,45,112,97,116,99,104,32,102,108,97,103,0,37,115,58,32,114,111,117,110,110,100,105,110,103,32,116,111,32,37,100,32,112,111,105,110,116,115,0,0,0,0,0,0,0,115,105,110,101,115,117,109,58,32,37,115,58,32,110,101,101,100,32,110, 117,109,98,101,114,32,111,102,32,112,111,105,110,116,115,32,97,110,100,32,112,97,114,116,105,97,108,32,115,116,114,101,110,103,116,104,115,0,0,0,0,0,0,0,0,102,102,102,0,121,116,105,99,107,115,0,0,114,0,37,115,58,32,99,97,110,39,116,32,111,112,101,110, 0,37,108,102,0,0,0,0,0,0,0,0,37,115,58,32,114,101,97,100,32,37,100,32,101,108,101,109,101,110,116,115,32,105,110,116,111,32,116,97,98,108,101,32,111,102,32,115,105,122,101,32,37,100,0,0,0,37,115,58,32,99,97,110,39,116,32,99,114,101,97,116,101,0,37,103, 10,0,37,115,58,32,119,114,105,116,101,32,101,114,114,111,114,0,0,0,0,0,0,0,103,97,114,114,97,121,32,37,115,58,32,116,101,109,112,108,97,116,101,32,37,115,44,32,108,101,110,103,116,104,32,37,100,0,99,111,110,115,116,0,120,108,97,98,101,108,0,121,108,97, 98,101,108,0,114,101,110,97,109,101,0,0,0,0,114,101,115,105,122,101,0,0,0,0,0,0,0,115,105,110,101,115,117,109,0,99,111,115,105,110,101,115,117,109,0,0,0,0,0,0,0,97,114,114,97,121,118,105,101,119,108,105,115,116,110,101,119,0,97,114,114,97,121,118,105, 101,119,108,105,115,116,102,105,108,108,112,97,103,101,0,97,114,114,97,121,118,105,101,119,99,108,111,115,101,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,85,84,32,45,102,105,108,108,32,35, 37,54,46,54,120,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66,65,83,69,10, 0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,111,118,97,108,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66,85,84,10,0,0,0,0,0,0,46,120,37,108,120,46,99, 32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,97,110,99,104,111,114,32,119,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32, 45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,91,108,105,115,116,32,37,108,120,76,65,66,69,76,32,108,97,98,101,108,32,116,101,120,116,93,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32, 37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,108,120,79,85,84,37,100,32,111,117,116,108,101,116,93,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100, 32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,108,120,73,78,37,100,32,105,110,108,101,116,93,10,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,66,65,83,69,32,37,100,32,37,100,32,37,100, 32,37,100,10,0,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,66,85,84,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,79,85,84,37,100,32,37,100,32,37,100, 32,37,100,32,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,73,78,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,66,65,83,69,10,0,46,120,37,108,120, 46,99,32,100,101,108,101,116,101,32,37,108,120,66,85,84,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,76,65,66,69,76,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32, 45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,101,120,116,32,123,37,115,125,32,10,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0, 0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,37,108,120,79,85,84,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114, 101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,37,108,120,73,78,37,100,10,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,32,45,111,117,116, 108,105,110,101,32,35,37,54,46,54,120,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,85,84,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,10,0,0,0,46,120,37,108,120,46,99,32,105,116,101, 109,99,111,110,102,105,103,117,114,101,32,37,108,120,76,65,66,69,76,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,0,115,115,105,105,115,105,105,105,105,115,115,115,105,105,105,105,105,105,105,0,0,0,0,0,112,100,116,107,95,105,101,109,103,117,105, 95,100,105,97,108,111,103,32,37,37,115,32,124,98,97,110,103,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,58,45,45,45,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32, 115,105,122,101,58,32,48,32,48,32,101,109,112,116,121,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,102,108,97,115,104,45,116,105,109,101,40,109,115,41,40,109,115,41,58,45,45,45,45,45,45,45,45,45,32,37,100,32,105,110,116,114,114,112, 116,58,32,37,100,32,104,111,108,100,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,101,109,112,116,121,32,101,109,112,116,121,32,37,100,32,37,100,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115, 32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,10,0,104,101,108,118,101,116,105,99,97,0,0,0,0,0,0,0,99,108,105, 99,107,0,0,0,0,0,0,0,0,102,108,97,115,104,116,105,109,101,0,0,108,97,98,101,108,95,112,111,115,0,0,0,0,0,0,0,58,58,112,100,95,109,101,110,117,115,58,58,117,112,100,97,116,101,95,119,105,110,100,111,119,95,109,101,110,117,10,0,99,97,110,118,97,115,95, 103,101,116,101,110,118,0,116,95,99,97,110,118,97,115,101,110,118,105,114,111,110,109,101,110,116,0,0,0,80,100,0,100,114,97,119,108,105,110,101,0,35,88,0,0,103,114,97,112,104,37,100,0,103,114,97,112,104,0,0,0,112,100,45,0,32,40,0,32,0,41,0,0,112,100, 116,107,95,99,97,110,118,97,115,95,114,101,102,108,101,99,116,116,105,116,108,101,32,46,120,37,108,120,32,123,37,115,125,32,123,37,115,125,32,123,37,115,125,32,37,100,10,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101, 32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,102,102,56,48,56,48,32,45,116,97,103,115,32,71,79,80,10,0,46,120,37,108,120,46,99,32,100, 101,108,101,116,101,32,71,79,80,10,0,99,97,110,118,97,115,95,109,97,112,0,0,0,0,112,100,116,107,95,99,97,110,118,97,115,95,103,101,116,115,99,114,111,108,108,32,46,120,37,108,120,46,99,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,97,108, 108,10,0,103,108,105,115,116,95,109,101,110,117,95,111,112,101,110,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,37,100,32,45,116,97,103,115,32,91, 108,105,115,116,32,108,37,108,120,32,99,111,114,100,93,10,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,108,37,108,120,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,0,0,0,0,0,99,97,110,118,97,115,95,114,101,115,116,111,114,101, 58,32,111,117,116,32,111,102,32,99,111,110,116,101,120,116,0,0,99,97,110,118,97,115,95,114,101,115,116,111,114,101,58,32,119,97,115,110,39,116,32,97,32,99,97,110,118,97,115,0,108,111,97,100,98,97,110,103,0,0,37,100,120,37,100,43,37,100,43,37,100,0,99, 97,110,118,97,115,95,114,101,108,111,99,97,116,101,0,47,83,85,66,80,65,84,67,72,47,0,0,0,0,0,0,0,37,115,37,100,0,0,0,0,0,112,100,116,107,95,112,100,95,100,115,112,32,79,78,10,0,112,100,116,107,95,112,100,95,100,115,112,32,79,70,70,10,0,100,115,112,32, 115,116,97,116,101,32,37,100,0,0,0,0,0,0,0,0,45,115,116,100,112,97,116,104,0,45,108,105,98,0,45,115,116,100,108,105,98,0,0,0,0,0,0,100,101,99,108,97,114,101,58,32,37,115,58,32,117,110,107,110,111,119,110,32,100,101,99,108,97,114,97,116,105,111,110,0, 0,114,101,115,116,111,114,101,0,0,115,121,109,98,111,108,97,116,111,109,0,116,101,120,116,0,0,0,0,0,0,0,0,98,110,103,0,116,111,103,103,108,101,0,118,115,108,105,100,101,114,0,104,115,108,105,100,101,114,0,104,100,105,97,108,0,118,100,105,97,108,0,104, 114,97,100,105,111,0,118,114,97,100,105,111,0,118,117,109,101,116,101,114,0,109,121,99,110,118,0,110,117,109,98,111,120,0,0,0,0,0,115,101,116,98,111,117,110,100,115,0,114,101,108,111,99,97,116,101,0,118,105,115,0,0,0,109,97,112,0,100,105,114,116,121, 0,0,112,97,103,101,0,0,0,0,0,0,100,101,99,108,97,114,101,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,108,37,108,120,32,45,102,105,108,108,32,98,108,117,101,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99, 111,110,102,105,103,117,114,101,32,108,37,108,120,32,45,102,105,108,108,32,98,108,97,99,107,10,0,103,108,105,115,116,95,115,101,108,101,99,116,0,103,108,105,115,116,95,100,101,115,101,108,101,99,116,0,0,0,0,0,112,100,116,107,95,117,110,100,111,109,101, 110,117,32,46,120,37,108,120,32,37,115,32,110,111,10,0,112,100,116,107,95,117,110,100,111,109,101,110,117,32,110,111,98,111,100,121,32,110,111,32,110,111,10,0,102,111,111,0,99,97,110,118,97,115,95,117,110,100,111,32,49,0,99,97,110,118,97,115,95,117,110, 100,111,32,50,0,112,100,116,107,95,117,110,100,111,109,101,110,117,32,46,120,37,108,120,32,110,111,32,37,115,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,108,37,108,120,10,0,99,111,110,110,101,99,116,0,0,0,0,101,100,105,116,111,114,0,0, 0,0,0,0,0,108,101,102,116,95,112,116,114,0,97,114,114,111,119,0,115,98,95,118,95,100,111,117,98,108,101,95,97,114,114,111,119,0,112,108,117,115,0,104,97,110,100,50,0,99,105,114,99,108,101,0,88,95,99,117,114,115,111,114,0,99,97,110,118,97,115,95,115,101, 116,99,117,114,115,111,114,0,46,120,37,108,120,32,99,111,110,102,105,103,117,114,101,32,45,99,117,114,115,111,114,32,37,115,10,0,109,101,110,117,45,111,112,101,110,0,0,0,0,0,0,0,112,100,116,107,95,99,97,110,118,97,115,95,112,111,112,117,112,32,46,120, 37,108,120,32,37,100,32,37,100,32,37,100,32,37,100,10,0,46,120,37,108,120,0,112,100,116,107,95,99,97,110,118,97,115,95,114,97,105,115,101,32,46,120,37,108,120,10,0,0,0,0,0,112,100,116,107,95,99,97,110,118,97,115,95,110,101,119,32,46,120,37,108,120,32, 37,100,32,37,100,32,43,37,100,43,37,100,32,37,100,10,0,112,100,116,107,95,99,97,110,118,97,115,95,115,101,116,112,97,114,101,110,116,115,32,46,120,37,108,120,0,32,46,120,37,108,120,0,0,0,100,101,115,116,114,111,121,32,46,120,37,108,120,10,0,0,0,0,0,112, 100,116,107,95,99,97,110,118,97,115,95,100,105,97,108,111,103,32,37,37,115,32,37,103,32,37,103,32,37,100,32,37,103,32,37,103,32,37,103,32,37,103,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,46,112,100,0,105,110,116,114,111,46,112,100,0,0,46,120,37, 108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,37,100,32,45,116,97,103,115,32,120,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110, 103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,120,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,120,10,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,120,32,37,100,32,37,100,32,37,100,32,37,100,10,0, 0,0,99,97,110,39,116,32,99,111,110,110,101,99,116,32,115,105,103,110,97,108,32,111,117,116,108,101,116,32,116,111,32,99,111,110,116,114,111,108,32,105,110,108,101,116,0,0,0,0,112,100,116,107,95,99,104,101,99,107,32,46,120,37,108,120,32,123,68,105,115, 99,97,114,100,32,99,104,97,110,103,101,115,32,116,111,32,39,37,115,39,63,125,32,123,46,120,37,108,120,32,100,105,114,116,121,32,48,59,10,125,32,110,111,10,0,109,111,116,105,111,110,0,0,0,0,0,0,0,66,97,99,107,83,112,97,99,101,0,84,97,98,0,82,101,116,117, 114,110,0,69,115,99,97,112,101,0,83,112,97,99,101,0,68,101,108,101,116,101,0,63,0,107,101,121,99,111,100,101,32,37,100,58,32,100,114,111,112,112,101,100,0,35,107,101,121,0,35,107,101,121,117,112,0,35,107,101,121,110,97,109,101,0,0,0,0,68,111,119,110, 0,76,101,102,116,0,82,105,103,104,116,0,116,121,112,105,110,103,0,67,111,110,116,114,111,108,0,101,95,109,111,116,105,111,110,102,110,0,46,120,37,108,120,46,99,32,112,111,115,116,115,99,114,105,112,116,32,45,102,105,108,101,32,37,115,10,0,0,0,0,46,120, 37,108,120,46,99,32,112,111,115,116,115,99,114,105,112,116,32,45,102,105,108,101,32,120,46,112,115,10,0,0,112,100,116,107,95,99,97,110,118,97,115,95,109,101,110,117,99,108,111,115,101,32,46,120,37,108,120,32,123,46,120,37,108,120,32,109,101,110,117,99, 108,111,115,101,32,51,59,10,125,10,0,0,0,0,0,0,112,100,116,107,95,99,104,101,99,107,32,46,112,100,119,105,110,100,111,119,32,123,114,101,97,108,108,121,32,113,117,105,116,63,125,32,123,112,100,32,113,117,105,116,125,32,121,101,115,10,0,0,0,0,0,0,112, 100,116,107,95,99,97,110,118,97,115,95,109,101,110,117,99,108,111,115,101,32,46,120,37,108,120,32,123,46,120,37,108,120,32,109,101,110,117,99,108,111,115,101,32,50,59,10,125,10,0,0,0,0,0,0,112,100,116,107,95,99,97,110,118,97,115,95,109,101,110,117,99, 108,111,115,101,32,46,120,37,108,120,32,123,46,120,37,108,120,32,109,101,110,117,99,108,111,115,101,32,49,59,10,125,10,0,112,100,116,107,95,99,97,110,118,97,115,95,100,111,102,111,110,116,32,37,37,115,32,37,100,10,0,112,100,116,107,95,99,111,117,108, 100,110,111,116,102,105,110,100,32,46,120,37,108,120,10,0,0,46,46,46,32,115,111,114,114,121,44,32,73,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,104,101,32,115,111,117,114,99,101,32,111,102,32,116,104,97,116,32,101,114,114,111,114,46,0, 99,108,105,112,98,111,97,114,100,32,99,108,101,97,114,10,0,99,108,105,112,98,111,97,114,100,32,97,112,112,101,110,100,32,123,37,46,42,115,125,10,0,100,105,115,99,111,110,110,101,99,116,0,99,117,116,0,112,100,116,107,95,112,97,115,116,101,116,101,120, 116,10,0,112,97,115,116,101,0,100,117,112,108,105,99,97,116,101,0,63,63,63,0,0,0,0,0,0,0,37,115,32,37,100,32,37,100,32,37,100,32,37,100,32,40,37,115,45,62,37,115,41,32,99,111,110,110,101,99,116,105,111,110,32,102,97,105,108,101,100,0,98,101,115,116,32, 118,101,114,116,105,99,97,108,32,100,105,115,116,97,110,99,101,32,37,100,0,112,100,116,107,95,112,100,95,116,101,120,116,101,100,105,116,111,114,32,123,37,46,42,115,125,10,0,0,112,100,116,107,95,99,97,110,118,97,115,95,101,100,105,116,109,111,100,101, 32,46,120,37,108,120,32,37,100,10,0,109,111,117,115,101,0,109,111,117,115,101,117,112,0,0,0,0,0,109,101,110,117,99,108,111,115,101,0,99,111,112,121,0,115,101,108,101,99,116,97,108,108,0,114,101,115,101,108,101,99,116,0,117,110,100,111,0,114,101,100,111, 0,116,105,100,121,0,116,101,120,116,101,100,105,116,111,114,0,0,112,114,105,110,116,0,109,101,110,117,102,111,110,116,0,102,111,110,116,0,102,105,110,100,0,102,105,110,100,97,103,97,105,110,0,102,105,110,100,112,97,114,101,110,116,0,100,111,110,101,45, 112,111,112,117,112,0,100,111,110,101,99,97,110,118,97,115,100,105,97,108,111,103,0,97,114,114,97,121,100,105,97,108,111,103,0,103,114,97,112,104,37,108,120,0,103,114,97,112,104,58,32,101,109,112,116,121,32,98,111,117,110,100,115,32,114,101,99,116,97, 110,103,108,101,0,0,0,0,0,0,103,114,97,112,104,95,120,108,97,98,101,108,58,32,110,111,32,121,32,118,97,108,117,101,32,103,105,118,101,110,0,0,103,114,97,112,104,95,121,108,97,98,101,108,58,32,110,111,32,120,32,118,97,108,117,101,32,103,105,118,101,110, 0,103,108,105,115,116,95,112,105,120,101,108,115,116,111,120,0,0,0,100,114,97,119,32,105,116,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,112,111,108,121,103,111,110,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32, 37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,32,103,114,97,112,104,93,32,45,102,105,108,108,32,35,99,48,99,48,99,48,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,115,10,0,0,0,0,46,120,37,108, 120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,32,103,114, 97,112,104,93,10,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,97,110,99,104,111,114,32,110,119,32,32,32,32,32,32,32,32,32,32,32,32,32,45,102,111,110,116, 32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,32,108,97,98,101,108,32,103,114,97,112,104,93,10,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32, 37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,32,103,114,97,112,104,93,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,32,32,32,32,32,32,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125, 32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,32,108,97,98,101,108,32,103,114,97,112,104,93,10,0,0,0,0,0,0,98,108,97,99,107,0,46,120,37,108,120,46,99,32,105,116,101,109,99, 111,110,102,105,103,117,114,101,32,37,115,82,32,45,102,105,108,108,32,37,115,10,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,103,114,97,112,104,37,108,120,32,45,102,105,108,108,32,37,115,10,0,0,0,0,0,0,0, 0,120,116,105,99,107,115,0,0,0,0,109,101,110,117,97,114,114,97,121,0,115,111,114,116,0,103,117,105,99,111,110,110,101,99,116,0,115,105,103,110,111,102,102,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108, 120,66,85,84,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,10,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32, 37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66,65,83,69,37,100,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45, 102,105,108,108,32,35,37,54,46,54,120,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66,85,84,37,100,10,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,66,65,83,69,37,100,32,37, 100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,66,85,84,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,66, 65,83,69,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,66,85,84,37,100,10,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,79,85,84,37,100,10,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109, 99,111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,37,100,32,45,111,117,116, 108,105,110,101,32,35,37,54,46,54,120,10,0,0,0,0,0,104,100,108,0,0,0,0,0,0,0,0,111,98,106,0,0,0,0,115,115,105,105,115,105,105,105,105,115,115,115,105,105,105,105,105,105,105,105,0,0,0,0,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111, 103,32,37,37,115,32,124,104,114,97,100,105,111,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,58,45,45,45,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,115,105,122,101, 58,32,48,32,48,32,101,109,112,116,121,32,32,32,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,32,48,46,48,32,101,109,112,116,121,32,48,46,48,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,110,101,119,45,111,110,108, 121,32,110,101,119,38,111,108,100,32,37,100,32,37,100,32,110,117,109,98,101,114,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32, 32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,10,0,0,0,0,0,0,0,0,100,101,108,116,97,0,112,111,115,0,99,111,108,111,114,0,115,101,110,100,0,0,0,0,105,110,105,116,0,110,117,109,98,101,114,0,115,105,110,103,108,101, 95,99,104,97,110,103,101,0,100,111,117,98,108,101,95,99,104,97,110,103,101,0,114,100,98,0,114,97,100,105,111,98,117,116,0,114,97,100,105,111,98,117,116,116,111,110,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,75,78, 79,66,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,75,78,79,66,32,45,119,105,100,116,104,32,55,10,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111, 110,102,105,103,117,114,101,32,37,108,120,75,78,79,66,32,45,119,105,100,116,104,32,51,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,51,32,45,102,105,108,108, 32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,75,78,79,66,10,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,75,78,79,66,10,0,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,73,78,37,100, 10,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,75,78,79,66,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,104,115,108,0,0,0,0,0,0,0,0,115,115,105,105,115,105,105,102,102,105,105,115,115,115,105, 105,105,105,105,105,105,105,105,0,59,0,0,0,0,0,0,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,104,115,108,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111, 110,115,40,112,105,120,41,40,112,105,120,41,58,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,119,105,100,116,104,58,32,37,100,32,37,100,32,104,101,105,103,104,116,58,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,45,111,117,116, 112,117,116,45,114,97,110,103,101,58,45,45,45,45,45,45,45,45,45,45,45,32,37,103,32,108,101,102,116,58,32,37,103,32,114,105,103,104,116,58,32,37,103,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,108,105,110,32,108,111,103,32,37,100,32,37,100,32,101, 109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100, 32,37,100,32,37,100,10,0,114,97,110,103,101,0,0,0,0,0,0,0,108,111,103,0,108,105,110,0,0,0,0,0,0,115,116,101,97,100,121,0,118,105,110,108,101,116,95,103,101,116,105,116,0,104,111,108,100,0,118,111,117,116,108,101,116,95,103,101,116,105,116,0,118,111,117, 116,108,101,116,95,100,115,112,112,114,111,108,111,103,0,118,111,117,116,108,101,116,95,100,115,112,101,112,105,108,111,103,0,108,105,110,101,97,114,0,111,117,116,108,101,116,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110, 103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,82,69,67,84,10,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114, 101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66,65,83,69,10,0,101,109,112,116,121,0,0,0,0,0,0,0,46,120,37,108,120, 46,99,32,99,111,111,114,100,115,32,37,108,120,82,69,67,84,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,82,69,67,84,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102, 105,103,117,114,101,32,37,108,120,82,69,67,84,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,10,0,0,0,0,0,115,115,105,105,115,105,105,105,115,115,115,105,105,105,105,105,105,105,0,0,0,0,0,0,112,100, 116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,99,110,118,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,115,101,108,101,99,116,97,98,108,101,95,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41, 58,45,45,45,45,45,45,32,37,100,32,37,100,32,115,105,122,101,58,32,48,46,48,32,48,46,48,32,101,109,112,116,121,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,118,105,115,105,98,108,101,95,114,101,99,116,97,110,103,108,101,40,112,105,120,41,40, 112,105,120,41,58,45,45,45,45,45,45,32,37,100,32,119,105,100,116,104,58,32,37,100,32,104,101,105,103,104,116,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,101,109,112,116,121,32,101,109,112,116,121,32,37,100,32,37,100,32,101,109,112,116, 121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32, 37,100,10,0,109,121,95,99,97,110,118,97,115,0,0,0,0,0,0,0,118,105,115,95,115,105,122,101,0,0,0,0,0,0,0,103,101,116,95,112,111,115,0,37,103,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,78,85,77, 66,69,82,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,101,120,116,32,123,37,115,125,32,10,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,112,111,108,121,103,111,110,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100, 32,37,100,32,37,100,32,37,100,32,37,100,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66,65,83,69,49,10,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116, 101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66,65,83,69,50,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101, 120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,97,110,99,104,111,114,32,119,32,32,32,32,32,32,32,32,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116, 97,103,115,32,91,108,105,115,116,32,37,108,120,76,65,66,69,76,32,108,97,98,101,108,32,116,101,120,116,93,10,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125, 32,45,97,110,99,104,111,114,32,119,32,32,32,32,32,32,32,32,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,78,85,77,66,69,82,10,0,0,0,0,0,0,0,0,46,120, 37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,66,65,83,69,49,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,66,65,83, 69,50,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,78,85,77,66,69,82,32,37,100,32,37,100,10,0,0,0,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32, 37,108,120,66,65,83,69,49,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,66,65,83,69,50,10,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,78,85,77,66,69,82,10,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105, 116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,78,85,77,66,69,82,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101, 109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,49,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,50,32,45,102,105,108,108, 32,35,37,54,46,54,120,10,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,49,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,10,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111, 110,102,105,103,117,114,101,32,37,108,120,78,85,77,66,69,82,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,0,115,115,105,105,115,105,105,102,102,105,105,115,115,115,105,105,105,105,105,105,105,102,105,0,0,0,0,0,0,0,0,112,100,116,107,95,105,101, 109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,110,98,120,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,100,105,103,105,116,115,41,40,112,105,120,41,58,45,45,45,45,45,45,45,32, 37,100,32,37,100,32,119,105,100,116,104,58,32,37,100,32,37,100,32,104,101,105,103,104,116,58,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,45,111,117,116,112,117,116,45,114,97,110,103,101,58,45,45,45,45,45,45,45,45,45,45,45,32, 37,103,32,109,105,110,58,32,37,103,32,109,97,120,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,108,105,110,32,108,111,103,32,37,100,32,37,100,32,108,111,103,45,104,101,105,103,104,116,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32, 37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,10,0,109,121,95,110,117,109,98,111,120,0,0,0, 0,0,0,100,105,97,108,111,103,0,0,0,0,0,0,115,105,122,101,0,0,0,0,114,101,99,101,105,118,101,0,108,97,98,101,108,0,0,0,108,97,98,101,108,95,102,111,110,116,0,0,0,0,0,0,108,111,103,95,104,101,105,103,104,116,0,110,117,109,98,111,120,50,0,0,108,105,110, 101,32,119,97,115,58,0,37,115,58,32,110,111,32,115,117,99,104,32,116,101,109,112,108,97,116,101,0,115,116,111,112,112,105,110,103,32,101,97,114,108,121,58,32,116,121,112,101,32,37,100,0,0,99,97,110,118,97,115,95,114,101,97,100,58,32,37,115,58,32,110, 111,32,115,117,99,104,32,116,101,109,112,108,97,116,101,0,99,111,117,108,100,110,39,116,32,99,114,101,97,116,101,32,115,99,97,108,97,114,32,34,37,115,34,0,100,97,116,97,0,0,0,0,0,0,37,115,58,32,102,105,108,101,32,97,112,112,97,114,101,110,116,108,121, 32,111,102,32,119,114,111,110,103,32,116,121,112,101,0,101,120,116,114,97,32,105,116,101,109,115,32,105,103,110,111,114,101,100,0,116,101,109,112,108,97,116,101,0,98,97,100,32,116,101,109,112,108,97,116,101,32,104,101,97,100,101,114,0,0,0,0,0,0,37,115, 58,32,116,101,109,112,108,97,116,101,32,110,111,116,32,102,111,117,110,100,32,105,110,32,99,117,114,114,101,110,116,32,112,97,116,99,104,0,37,115,58,32,116,101,109,112,108,97,116,101,32,100,111,101,115,110,39,116,32,109,97,116,99,104,32,99,117,114,114, 101,110,116,32,111,110,101,0,0,0,0,113,108,105,115,116,95,114,101,97,100,58,32,117,110,107,110,111,119,110,32,102,108,97,103,58,32,37,115,0,114,101,97,100,32,102,97,105,108,101,100,0,0,0,0,0,0,100,97,116,97,95,112,114,111,112,101,114,116,105,101,115, 58,32,115,99,97,108,97,114,32,100,105,115,97,112,112,101,97,114,101,100,0,112,114,111,112,101,114,116,105,101,115,32,100,105,97,108,111,103,0,0,0,99,111,117,108,100,110,39,116,32,117,112,100,97,116,101,32,112,114,111,112,101,114,116,105,101,115,32,40, 112,101,114,104,97,112,115,32,97,32,102,111,114,109,97,116,32,112,114,111,98,108,101,109,63,41,0,0,100,97,116,97,95,112,114,111,112,101,114,116,105,101,115,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,111,108,100,32,101,108,101,109,101,110, 116,0,0,0,0,0,0,100,97,116,97,95,112,114,111,112,101,114,116,105,101,115,58,32,99,97,110,39,116,32,114,101,105,110,115,101,114,116,0,99,97,110,118,97,115,95,119,114,105,116,101,115,99,97,108,97,114,0,99,97,110,118,97,115,95,97,100,100,116,101,109,112, 108,97,116,101,115,102,111,114,115,99,97,108,97,114,0,115,59,0,0,0,99,97,110,118,97,115,95,119,114,105,116,101,0,115,115,115,59,0,0,37,115,58,32,119,114,105,116,101,32,102,97,105,108,101,100,0,40,115,117,98,112,97,116,99,104,41,0,99,97,110,118,97,115, 0,35,78,0,115,115,105,105,105,105,115,105,59,0,115,115,105,105,105,105,105,59,0,0,0,0,115,115,105,105,105,105,59,0,99,111,111,114,100,115,0,115,115,102,102,102,102,102,102,102,102,102,59,0,115,115,102,102,102,102,102,102,102,59,0,99,97,110,118,97,115, 95,115,97,118,101,116,101,109,112,108,97,116,101,115,116,111,0,0,0,0,0,0,0,0,115,115,115,0,115,115,0,115,97,118,101,100,32,116,111,58,32,37,115,47,37,115,0,112,100,116,107,95,99,97,110,118,97,115,95,115,97,118,101,97,115,32,46,120,37,108,120,32,34,37, 115,34,32,34,37,115,34,10,0,85,110,116,105,116,108,101,100,0,0,0,0,0,0,46,109,120,116,0,0,0,0,109,101,114,103,101,102,105,108,101,0,115,97,118,101,116,111,102,105,108,101,0,0,0,0,0,0,0,0,109,101,110,117,115,97,118,101,0,109,101,110,117,115,97,118,101, 97,115,0,0,0,0,0,0,0,46,120,37,108,120,46,116,37,108,120,0,0,109,115,103,0,97,116,111,109,0,0,0,0,112,100,116,107,95,116,101,120,116,95,110,101,119,32,46,120,37,108,120,46,99,32,123,37,115,32,37,115,32,116,101,120,116,125,32,37,102,32,37,102,32,123,37, 46,42,115,125,32,37,100,32,37,115,10,0,0,112,100,116,107,95,116,101,120,116,95,115,101,116,32,46,120,37,108,120,46,99,32,37,115,32,123,37,46,42,115,125,10,0,46,120,37,108,120,46,99,32,115,101,108,101,99,116,32,102,114,111,109,32,37,115,32,37,100,10,0, 46,120,37,108,120,46,99,32,115,101,108,101,99,116,32,116,111,32,37,115,32,37,100,10,0,46,120,37,108,120,46,99,32,102,111,99,117,115,32,34,34,10,0,46,120,37,108,120,46,99,32,115,101,108,101,99,116,32,99,108,101,97,114,10,0,46,120,37,108,120,46,99,32,105, 99,117,114,115,111,114,32,37,115,32,37,100,10,0,46,120,37,108,120,46,99,32,102,111,99,117,115,32,37,115,10,0,103,108,105,115,116,95,102,105,110,100,114,116,101,120,116,0,0,0,0,46,120,37,108,120,46,99,32,109,111,118,101,32,37,115,32,37,100,32,37,100,10, 0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,115,32,45,102,105,108,108,32,37,115,10,0,112,100,116,107,95,116,101,120,116,95,101,100,105,116,105,110,103,32,46,120,37,108,120,32,37,115,32,49,10,0,112,100,116,107, 95,116,101,120,116,95,101,100,105,116,105,110,103,32,46,120,37,108,120,32,123,125,32,48,10,0,0,0,0,85,112,0,0,0,0,119,97,114,110,105,110,103,58,32,119,111,114,100,95,114,101,115,116,111,114,101,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116, 115,0,0,115,99,97,108,97,114,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32, 37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,45,119,105,100,116,104,32,48,32,45,102,105,108,108,32,98,108,117,101,32,45,116,97,103,115,32,115,101,108,101,99,116,37,108,120,10,0,46, 120,37,108,120,46,99,32,100,101,108,101,116,101,32,115,101,108,101,99,116,37,108,120,10,0,115,101,108,101,99,116,0,100,101,115,101,108,101,99,116,0,100,105,115,112,108,97,99,101,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116, 97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,115,99,97,108,97,114,37,108,120,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,115,99,97,108,97,114,37,108,120,10,0,0,0,0,0,0,0,115,99,97,108,97,114,0,0,0, 0,112,100,116,107,95,100,97,116,97,95,100,105,97,108,111,103,32,37,37,115,32,123,0,125,10,0,0,0,0,0,0,0,97,114,114,97,121,0,0,0,97,114,114,97,121,32,108,97,99,107,115,32,101,108,101,109,101,110,116,32,116,101,109,112,108,97,116,101,32,111,114,32,110, 97,109,101,0,37,115,58,32,110,111,32,115,117,99,104,32,116,121,112,101,0,116,101,109,112,108,97,116,101,95,102,105,110,100,95,102,105,101,108,100,0,37,115,46,37,115,58,32,110,111,116,32,97,32,110,117,109,98,101,114,0,37,115,46,37,115,58,32,110,111,32, 115,117,99,104,32,102,105,101,108,100,0,37,115,46,37,115,58,32,110,111,116,32,97,32,115,121,109,98,111,108,0,97,100,100,32,101,108,101,109,101,110,116,115,46,46,46,0,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,115,99,97,108,97,114,0, 116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,97,114,114,97,121,0,0,0,0,0,99,111,110,102,111,114,109,105,110,103,32,116,101,109,112,108,97,116,101,32,39,37,115,39,32,116,111,32,110,101,119,32,115,116,114,117,99,116,117,114,101,0,46,46, 46,32,37,100,0,116,101,109,112,108,97,116,101,95,102,105,110,100,99,97,110,118,97,115,0,37,115,58,32,116,101,109,112,108,97,116,101,32,109,105,115,109,97,116,99,104,0,0,115,116,114,117,99,116,0,0,0,0,0,0,116,101,109,112,108,97,116,101,32,37,115,58,32, 119,97,114,110,105,110,103,58,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,46,0,0,0,119,97,114,110,105,110,103,32,45,45,32,39,116,101,109,112,108,97,116,101,39,32,40,37,115,41,32,105,115,32,111,98,115,111,108,101,116,101,59,32,114,101,112, 108,97,99,101,32,119,105,116,104,32,39,115,116,114,117,99,116,39,0,40,37,108,102,58,37,108,102,41,40,37,108,102,58,37,108,102,41,40,37,108,102,41,0,112,97,114,115,101,32,101,114,114,111,114,58,32,37,115,0,0,0,115,121,109,98,111,108,105,99,32,100,97,116, 97,32,102,105,101,108,100,32,117,115,101,100,32,97,115,32,110,117,109,98,101,114,0,0,0,0,0,0,110,117,109,101,114,105,99,32,100,97,116,97,32,102,105,101,108,100,32,117,115,101,100,32,97,115,32,115,121,109,98,111,108,0,0,0,0,0,0,0,97,116,116,101,109,112, 116,32,116,111,32,115,101,116,32,99,111,110,115,116,97,110,116,32,111,114,32,115,121,109,98,111,108,105,99,32,100,97,116,97,32,102,105,101,108,100,32,116,111,32,97,32,110,117,109,98,101,114,0,45,118,0,45,120,0,0,0,0,0,0,0,0,103,108,111,98,97,108,32,118, 105,115,47,105,110,118,105,115,32,102,111,114,32,97,32,116,101,109,112,108,97,116,101,32,119,105,116,104,32,118,97,114,105,97,98,108,101,32,118,105,115,105,98,105,108,105,116,121,0,35,37,50,46,50,120,37,50,46,50,120,37,50,46,50,120,0,46,120,37,108,120, 46,99,32,99,114,101,97,116,101,32,112,111,108,121,103,111,110,92,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,92,10,0,37,100,32,37,100,92,10,0,45,119,105,100,116,104,32,37,102,92,10,0,45,102,105,108,108,32,37,115,32,45,111, 117,116,108,105,110,101,32,37,115,92,10,0,45,102,105,108,108,32,37,115,92,10,0,45,115,109,111,111,116,104,32,49,92,10,0,45,116,97,103,115,32,99,117,114,118,101,37,108,120,10,0,0,0,0,0,0,119,97,114,110,105,110,103,58,32,99,117,114,118,101,115,32,110,101, 101,100,32,97,116,32,108,101,97,115,116,32,116,119,111,32,112,111,105,110,116,115,32,116,111,32,98,101,32,103,114,97,112,104,101,100,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,99,117,114,118,101,37,108,120,10,0,99,117,114,118,101,95,109, 111,116,105,111,110,58,32,115,99,97,108,97,114,32,100,105,115,97,112,112,101,97,114,101,100,0,0,0,0,0,0,0,0,100,114,97,119,112,111,108,121,103,111,110,0,100,114,97,119,99,117,114,118,101,0,102,105,108,108,101,100,112,111,108,121,103,111,110,0,102,105, 108,108,101,100,99,117,114,118,101,0,121,0,119,0,99,117,114,118,101,0,0,0,0,45,118,115,0,45,121,0,45,119,0,112,108,111,116,58,32,110,101,101,100,115,32,97,110,32,97,114,114,97,121,32,102,105,101,108,100,0,112,108,111,116,58,32,37,115,58,32,110,111,32, 115,117,99,104,32,102,105,101,108,100,0,112,108,111,116,58,32,37,115,58,32,110,111,116,32,97,110,32,97,114,114,97,121,0,112,108,111,116,58,32,37,115,58,32,110,111,32,115,117,99,104,32,116,101,109,112,108,97,116,101,0,0,0,0,0,112,108,111,116,58,32,37, 115,58,32,110,111,32,99,97,110,118,97,115,32,102,111,114,32,116,104,105,115,32,116,101,109,112,108,97,116,101,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102, 105,108,108,32,98,108,97,99,107,32,45,119,105,100,116,104,32,48,32,32,45,116,97,103,115,32,91,108,105,115,116,32,112,108,111,116,37,108,120,32,97,114,114,97,121,93,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,112,111,108,121,103,111,110,32, 92,10,0,37,100,32,37,102,32,92,10,0,0,0,0,0,0,0,32,45,119,105,100,116,104,32,49,32,45,102,105,108,108,32,37,115,32,45,111,117,116,108,105,110,101,32,37,115,92,10,0,45,116,97,103,115,32,91,108,105,115,116,32,112,108,111,116,37,108,120,32,97,114,114,97, 121,93,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,92,10,0,48,32,48,32,48,32,48,32,92,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,112,108,111,116,37,108,120,10,0,112,108,111,116,0,100,114,97,119,110,117, 109,98,101,114,95,115,101,108,101,99,116,32,37,100,0,100,114,97,119,110,117,109,98,101,114,95,97,99,116,105,118,97,116,101,32,37,100,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,97,110,99,104,111,114, 32,110,119,32,45,102,105,108,108,32,37,115,32,45,116,101,120,116,32,123,37,115,125,0,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,0,0,0,32,45,116,97,103,115,32,91,108,105,115,116,32,100,114,97,119,110,117,109,98,101,114,37,108, 120,32,108,97,98,101,108,93,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,100,114,97,119,110,117,109,98,101,114,37,108,120,10,0,0,0,0,0,0,0,0,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,58,32,115,99,97,108,97,114,32, 100,105,115,97,112,112,101,97,114,101,100,0,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,58,32,115,121,109,98,111,108,0,0,0,0,37,108,103,0,100,114,97,119,110,117,109,98,101,114,0,100,114,97,119,115,121,109,98,111,108,0,0,0,0,99,111, 109,109,101,110,116,0,101,100,105,116,109,111,100,101,0,0,0,46,46,46,32,99,111,117,108,100,110,39,116,32,99,114,101,97,116,101,0,0,46,46,46,32,100,105,100,110,39,116,32,114,101,116,117,114,110,32,97,32,112,97,116,99,104,97,98,108,101,32,111,98,106,101, 99,116,0,0,0,0,117,110,97,98,108,101,32,116,111,32,99,114,101,97,116,101,32,115,116,117,98,32,111,98,106,101,99,116,32,105,110,32,99,108,111,115,101,100,32,99,97,110,118,97,115,33,0,0,0,0,0,118,100,108,0,0,0,0,0,0,0,118,117,0,99,110,118,0,110,98,120, 0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,115,82,32,45,119,105,100,116,104,32,53,10,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,115,82,32,45,119,105,100,116, 104,32,49,10,0,0,0,0,0,117,110,97,98,108,101,32,116,111,32,99,114,101,97,116,101,32,115,116,117,98,32,109,101,115,115,97,103,101,32,105,110,32,99,108,111,115,101,100,32,99,97,110,118,97,115,33,0,45,0,0,0,0,0,0,0,37,115,58,32,97,116,111,109,32,119,105, 116,104,32,115,97,109,101,32,115,101,110,100,47,114,101,99,101,105,118,101,32,110,97,109,101,32,40,105,110,102,105,110,105,116,101,32,108,111,111,112,41,0,0,0,0,103,97,116,111,109,95,108,105,115,116,58,32,110,101,101,100,32,102,108,111,97,116,32,111, 114,32,115,121,109,98,111,108,0,103,97,116,111,109,95,107,101,121,0,37,115,46,46,46,0,46,120,37,108,120,46,99,32,109,111,118,101,32,37,108,120,46,108,32,37,100,32,37,100,10,0,0,0,0,0,0,112,100,116,107,95,116,101,120,116,95,110,101,119,32,46,120,37,108, 120,46,99,32,123,37,108,120,46,108,32,108,97,98,101,108,32,116,101,120,116,125,32,37,102,32,37,102,32,123,37,115,125,32,37,100,32,37,115,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,46,108,10,0,0,0,0,0,0,0,0,112,100,116,107,95, 103,97,116,111,109,95,100,105,97,108,111,103,32,37,37,115,32,37,100,32,37,103,32,37,103,32,37,100,32,123,37,115,125,32,123,37,115,125,32,123,37,115,125,10,0,98,108,117,101,0,0,0,0,102,102,102,102,102,0,115,97,118,101,116,111,0,0,0,0,115,115,105,105,0, 0,0,0,0,0,102,108,111,97,116,97,116,111,109,0,105,110,116,97,116,111,109,0,115,115,105,105,105,102,102,102,115,115,115,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32, 37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,111,37,100,32,111,117,116,108,101,116,93,10,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,115,111,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,0,0,0,0,46,120,37,108,120, 46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,105,37,100,32,105,110,108,101,116,93,10,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100, 115,32,37,115,105,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,34,34,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100, 32,45,100,97,115,104,32,37,115,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,82,32,111,98,106,93,10,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,115,82,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37, 100,32,37,100,32,37,100,32,37,100,10,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,115,82,32,45,100,97,115,104,32,37,115,10,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110, 101,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,82,32,109,115,103,93,10,0,0,0,0,0,46,120,37,108,120,46, 99,32,99,111,111,114,100,115,32,37,115,82,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105, 110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,82,32,97,116,111,109,93,10,0,0,46,120,37,108,120,46,99,32,99,111,111, 114,100,115,32,37,115,82,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,115,111,37,100,10,0,46,120,37,108,120,46,99, 32,100,101,108,101,116,101,32,37,115,105,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,115,82,10,0,112,100,0,0,0,0,0,0,0,0,109,101,115,115,97,103,101,0,0,0,0,0,97,100,100,0,97,100,100,50,0,97,100,100,99,111,109,109,97,0,97,100, 100,115,101,109,105,0,97,100,100,100,111,108,108,97,114,0,97,100,100,100,111,108,108,115,121,109,0,109,101,115,115,114,101,115,112,111,110,100,101,114,0,103,97,116,111,109,0,112,97,114,97,109,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110, 102,105,103,117,114,101,32,37,108,120,88,49,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,88,50,32,45,102,105,108,108,32,35,37,54,46,54,120,10, 0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,88,49,10,0,0, 0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,88,50,10,0,0,0,0,0,46, 120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,88,49,32,45,119,105,100,116,104,32,37,100,10,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,88,49,32,37,100,32,37,100,32,37,100,32,37,100,10, 0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,88,50,32,45,119,105,100,116,104,32,37,100,10,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,88,50,32,37,100,32,37,100,32,37, 100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,88,49,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,88,50,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,76,65,66,69, 76,10,0,0,0,0,0,0,0,0,115,115,105,105,115,105,105,115,115,115,105,105,105,105,105,105,105,102,102,0,0,0,0,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,116,103,108,124,32,32,32,32,32,32,32,32,32,32,32,32,32, 45,45,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,58,45,45,45,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,115,105,122,101,58,32,48,32,48,32,101,109,112,116,121,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45, 45,45,45,45,45,45,45,110,111,110,45,122,101,114,111,45,118,97,108,117,101,58,45,45,45,45,45,45,45,45,45,45,45,32,37,103,32,118,97,108,117,101,58,32,48,46,48,32,101,109,112,116,121,32,37,103,32,32,32,32,32,32,32,32,32,32,32,32,32,45,49,32,108,105,110, 32,108,111,103,32,37,100,32,37,100,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32, 32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,10,0,0,0,0,110,111,110,122,101,114,111,0,0,0,103,115,116,117,98,95,100,105,115,0,103,115,116,117,98,95,99,117,116,111,102,102,0,103,112,111,105,110,116,101,114,95,99,111,112,121,0,112,111,105, 110,116,101,114,58,32,108,105,115,116,32,39,37,115,39,32,110,111,116,32,102,111,117,110,100,0,0,0,0,0,0,0,112,116,114,111,98,106,95,110,101,120,116,58,32,110,111,32,99,117,114,114,101,110,116,32,112,111,105,110,116,101,114,0,112,116,114,111,98,106,95, 110,101,120,116,58,32,108,105,115,116,115,32,111,110,108,121,44,32,110,111,116,32,97,114,114,97,121,115,0,112,116,114,111,98,106,95,110,101,120,116,58,32,115,116,97,108,101,32,112,111,105,110,116,101,114,0,0,112,116,114,111,98,106,95,118,110,101,120, 116,58,32,110,101,120,116,45,115,101,108,101,99,116,101,100,32,111,110,108,121,32,119,111,114,107,115,32,102,111,114,32,97,32,118,105,115,105,98,108,101,32,119,105,110,100,111,119,0,112,116,114,111,98,106,95,98,97,110,103,58,32,101,109,112,116,121,32, 112,111,105,110,116,101,114,0,115,101,110,100,45,119,105,110,100,111,119,58,32,110,111,32,109,101,115,115,97,103,101,63,0,112,111,105,110,116,101,114,95,114,101,119,105,110,100,58,32,101,109,112,116,121,32,112,111,105,110,116,101,114,0,0,0,112,111,105, 110,116,101,114,95,114,101,119,105,110,100,58,32,115,111,114,114,121,44,32,117,110,97,118,97,105,108,97,98,108,101,32,102,111,114,32,97,114,114,97,121,115,0,112,111,105,110,116,101,114,0,116,114,97,118,101,114,115,101,0,110,101,120,116,0,118,110,101, 120,116,0,115,101,110,100,45,119,105,110,100,111,119,0,0,0,103,101,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,103,101,116,58,32,115,116,97,108,101,32,111,114,32,101,109,112,116,121,32,112, 111,105,110,116,101,114,0,0,0,0,0,0,103,101,116,58,32,37,115,46,37,115,32,105,115,32,110,111,116,32,97,32,110,117,109,98,101,114,32,111,114,32,115,121,109,98,111,108,0,103,101,116,58,32,37,115,46,37,115,58,32,110,111,32,115,117,99,104,32,102,105,101, 108,100,0,103,101,116,0,45,115,121,109,98,111,108,0,0,0,0,0,0,115,101,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,115,101,116,58,32,101,109,112,116,121,32,112,111,105,110,116,101,114,0,0,0, 0,0,0,0,115,101,116,32,37,115,58,32,103,111,116,32,119,114,111,110,103,32,116,101,109,112,108,97,116,101,32,40,37,115,41,0,116,121,112,101,32,109,105,115,109,97,116,99,104,32,111,114,32,110,111,32,102,105,101,108,100,32,115,112,101,99,105,102,105,101, 100,0,0,0,0,0,101,108,101,109,101,110,116,58,32,101,109,112,116,121,32,112,111,105,110,116,101,114,0,0,101,108,101,109,101,110,116,32,37,115,58,32,103,111,116,32,119,114,111,110,103,32,116,101,109,112,108,97,116,101,32,40,37,115,41,0,0,0,0,0,101,108, 101,109,101,110,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,0,0,0,0,0,101,108,101,109,101,110,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,97,114,114,97,121,32,102,105,101, 108,100,32,37,115,0,0,0,101,108,101,109,101,110,116,58,32,102,105,101,108,100,32,37,115,32,110,111,116,32,111,102,32,116,121,112,101,32,97,114,114,97,121,0,0,0,0,0,101,108,101,109,101,110,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32, 102,105,101,108,100,32,116,101,109,112,108,97,116,101,32,37,115,0,101,108,101,109,101,110,116,0,0,0,0,0,0,0,0,103,101,116,115,105,122,101,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,0,0,0,0,0,103, 101,116,115,105,122,101,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,97,114,114,97,121,32,102,105,101,108,100,32,37,115,0,0,0,103,101,116,115,105,122,101,58,32,102,105,101,108,100,32,37,115,32,110,111,116,32,111,102,32,116,121,112,101,32, 97,114,114,97,121,0,0,0,0,0,103,101,116,115,105,122,101,32,37,115,58,32,103,111,116,32,119,114,111,110,103,32,116,101,109,112,108,97,116,101,32,40,37,115,41,0,103,101,116,115,105,122,101,0,115,101,116,115,105,122,101,58,32,101,109,112,116,121,32,112, 111,105,110,116,101,114,0,0,0,0,0,0,115,101,116,115,105,122,101,32,37,115,58,32,103,111,116,32,119,114,111,110,103,32,116,101,109,112,108,97,116,101,32,40,37,115,41,0,0,0,0,0,115,101,116,115,105,122,101,58,32,99,111,117,108,100,110,39,116,32,102,105, 110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,0,0,0,0,0,115,101,116,115,105,122,101,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,97,114,114,97,121,32,102,105,101,108,100,32,37,115,0,0,0,115,101,116,115,105,122,101,58,32,102,105,101, 108,100,32,37,115,32,110,111,116,32,111,102,32,116,121,112,101,32,97,114,114,97,121,0,115,101,116,115,105,122,101,95,103,112,111,105,110,116,101,114,0,115,101,116,115,105,122,101,0,0,0,0,97,112,112,101,110,100,58,32,99,111,117,108,100,110,39,116,32,102, 105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,97,112,112,101,110,100,58,32,110,111,32,99,117,114,114,101,110,116,32,112,111,105,110,116,101,114,0,0,0,0,97,112,112,101,110,100,58,32,108,105,115,116,115,32,111,110,108,121,44,32,110,111,116, 32,97,114,114,97,121,115,0,97,112,112,101,110,100,58,32,115,116,97,108,101,32,112,111,105,110,116,101,114,0,37,115,58,32,99,111,117,108,100,110,39,116,32,99,114,101,97,116,101,32,115,99,97,108,97,114,0,97,112,112,101,110,100,0,0,115,117,98,108,105,115, 116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,0,0,0,0,0,115,117,98,108,105,115,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,102,105,101,108,100,32,37,115,0,115,117,98,108,105, 115,116,58,32,102,105,101,108,100,32,37,115,32,110,111,116,32,111,102,32,116,121,112,101,32,108,105,115,116,0,115,117,98,108,105,115,116,0,0,0,0,0,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,118,114,97,100, 105,111,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,58,45,45,45,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,115,105,122,101,58,32,48,32,48,32,101,109,112,116,121, 32,32,32,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,32,48,46,48,32,101,109,112,116,121,32,48,46,48,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,110,101,119,45,111,110,108,121,32,110,101,119,38,111,108,100,32, 37,100,32,37,100,32,110,117,109,98,101,114,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32, 32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,10,0,0,0,0,0,0,0,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,118,115,108,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,100,105,109,101, 110,115,105,111,110,115,40,112,105,120,41,40,112,105,120,41,58,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,119,105,100,116,104,58,32,37,100,32,37,100,32,104,101,105,103,104,116,58,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45, 45,111,117,116,112,117,116,45,114,97,110,103,101,58,45,45,45,45,45,45,45,45,45,45,45,32,37,103,32,98,111,116,116,111,109,58,32,37,103,32,116,111,112,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,108,105,110,32,108,111,103,32,37,100,32, 37,100,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32, 32,32,37,100,32,37,100,32,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,82,67,79,86,69,82,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,80,76,69,68, 32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,80,76,69,68,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101, 97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,82,76,69,68,37,100,10,0,46,120,37,108,120,46,99,32,99,114,101,97, 116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,97,110,99,104,111,114,32,119,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115, 125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,83,67,65,76,69,37,100,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,97,110, 99,104,111,114,32,119,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,83,67,65,76,69,37,100,10,0, 0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,32,45,116,97,103, 115,32,37,108,120,82,67,79,86,69,82,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97, 103,115,32,37,108,120,80,76,69,68,10,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,108,120,79,85,84,37,100,32,111,117, 116,108,101,116,93,120,10,0,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,82,76,69,68,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,83,67,65,76,69,37, 100,32,37,100,32,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,82,76,69,68,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,83,67,65,76,69,37,100,10,0,46,120,37,108,120,46,99,32,100,101, 108,101,116,101,32,37,108,120,80,76,69,68,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,82,67,79,86,69,82,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,82,76,69,68,37, 100,32,45,119,105,100,116,104,32,37,100,10,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,83,67,65,76,69,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,102,111,110,116,32,123,123,37,115,125, 32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,82,67,79,86,69,82,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,111,117,116, 108,105,110,101,32,35,37,54,46,54,120,10,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,80,76,69,68,32,45,119,105,100,116,104,32,37,100,10,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99, 111,110,102,105,103,117,114,101,32,37,108,120,83,67,65,76,69,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,115,115,105,105,115,105,105,115,115,105,105,105,105,105,105,105,105,0,0,0,0,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101, 32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,97,110,99,104,111,114,32,119,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,102,111,110,116,32,123,123,37,115,125,32,45, 37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,83,67,65,76,69,37,100,10,0,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,118,117,124,32,32,32,32,32,32,32, 32,32,32,32,32,32,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,40,112,105,120,41,58,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,119,105,100,116,104,58,32,37,100,32,37,100,32,104,101,105,103,104,116,58,32,32,32, 32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,32,48,46,48,32,101,109,112,116,121,32,48,46,48,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,110,111,95,115,99,97,108,101,32,115,99,97,108,101,32,37,100,32,37,100,32, 101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37, 100,32,37,100,32,37,100,10,0,110,111,115,110,100,110,111,0,0,0,116,105,109,101,115,0,115,99,97,108,101,0,44,0,40,112,111,105,110,116,101,114,41,0,43,0,42,0,36,37,100,0,97,116,111,109,95,115,116,114,105,110,103,0,0,0,0,0,98,105,110,98,117,102,95,97,100, 100,109,101,115,115,97,103,101,58,32,111,117,116,32,111,102,32,115,112,97,99,101,0,98,105,110,98,117,102,95,97,100,100,109,101,115,115,118,58,32,111,110,108,121,32,37,100,32,97,108,108,111,119,101,100,0,98,105,110,98,117,102,95,97,100,100,98,105,110, 98,117,102,0,0,0,0,0,36,0,36,37,100,58,32,110,111,116,32,101,110,111,117,103,104,32,97,114,103,117,109,101,110,116,115,32,115,117,112,112,108,105,101,100,0,0,0,0,0,0,36,37,100,58,32,115,121,109,98,111,108,32,110,101,101,100,101,100,32,97,115,32,109,101, 115,115,97,103,101,32,100,101,115,116,105,110,97,116,105,111,110,0,0,0,0,0,0,0,36,37,115,58,32,110,111,116,32,101,110,111,117,103,104,32,97,114,103,117,109,101,110,116,115,32,115,117,112,112,108,105,101,100,0,37,115,58,32,110,111,32,115,117,99,104,32, 111,98,106,101,99,116,0,0,0,36,37,100,58,32,97,114,103,117,109,101,110,116,32,110,117,109,98,101,114,32,111,117,116,32,111,102,32,114,97,110,103,101,0,0,0,0,0,0,0,37,115,58,32,97,114,103,117,109,101,110,116,32,110,117,109,98,101,114,32,111,117,116,32, 111,102,32,114,97,110,103,101,0,98,97,100,32,105,116,101,109,32,105,110,32,98,105,110,98,117,102,0,47,0,111,112,101,110,58,32,0,108,115,101,101,107,58,32,0,114,101,97,100,32,40,37,100,32,37,108,100,41,32,45,62,32,37,100,10,0,0,0,0,118,50,0,109,97,120, 0,115,115,59,0,37,115,0,0,0,0,118,112,97,116,99,104,101,114,0,116,111,111,32,109,97,110,121,32,101,109,98,101,100,100,101,100,32,112,97,116,99,104,101,115,0,0,0,0,0,0,0,0,115,115,102,102,102,102,102,59,0,35,80,0,104,105,100,100,101,110,0,110,101,119, 111,98,106,0,112,97,116,99,104,101,114,0,112,0,0,0,0,0,0,0,115,115,102,102,115,115,59,0,110,101,119,101,120,0,116,114,105,103,103,101,114,0,116,0,0,0,102,0,116,97,98,108,101,0,84,65,66,76,69,0,0,0,0,0,0,98,117,116,116,111,110,0,0,0,0,0,115,115,102,102, 115,59,0,0,0,0,0,0,0,0,102,108,111,110,117,109,0,0,0,115,115,102,102,59,0,115,108,105,100,101,114,0,0,0,0,0,0,0,118,115,108,0,115,115,102,102,115,102,102,102,102,102,102,115,115,115,102,102,102,102,102,102,102,102,102,59,0,0,0,0,0,0,0,0,116,103,108,0, 105,110,108,101,116,0,105,110,108,101,116,126,0,0,0,0,0,0,0,0,111,117,116,108,101,116,126,0,117,115,101,114,0,0,0,0,0,117,115,108,105,100,101,114,0,102,97,115,116,101,110,0,115,115,102,102,102,102,59,0,112,111,112,0,115,115,102,102,102,59,0,115,115,102, 102,102,102,102,102,59,0,115,115,115,102,102,102,102,102,102,102,102,59,0,97,0,108,0,97,110,121,116,104,105,110,103,0,0,0,0,0,0,98,0,102,108,111,97,116,0,108,105,115,116,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,99,121,99,108,101,126,0,0,0,37,115,58,32,110,111, 32,109,101,116,104,111,100,32,102,111,114,32,39,37,115,39,0,0,99,108,97,115,115,32,37,115,58,32,115,111,114,114,121,58,32,111,110,108,121,32,37,100,32,97,114,103,115,32,116,121,112,101,99,104,101,99,107,101,100,59,32,117,115,101,32,65,95,71,73,77,77, 69,0,0,99,108,97,115,115,32,37,115,58,32,115,111,114,114,121,58,32,111,110,108,121,32,37,100,32,99,114,101,97,116,105,111,110,32,97,114,103,115,32,97,108,108,111,119,101,100,0,0,119,97,114,110,105,110,103,58,32,115,105,103,110,97,108,32,109,101,116,104, 111,100,32,111,118,101,114,114,105,100,101,115,32,99,108,97,115,115,95,109,97,105,110,115,105,103,110,97,108,105,110,0,37,115,95,97,108,105,97,115,101,100,0,0,119,97,114,110,105,110,103,58,32,99,108,97,115,115,32,39,37,115,39,32,111,118,101,114,119,114, 105,116,116,101,110,59,32,111,108,100,32,111,110,101,32,114,101,110,97,109,101,100,32,39,37,115,39,0,0,0,119,97,114,110,105,110,103,58,32,111,108,100,32,109,101,116,104,111,100,32,39,37,115,39,32,102,111,114,32,99,108,97,115,115,32,39,37,115,39,32,114, 101,110,97,109,101,100,32,39,37,115,39,0,0,0,0,37,115,95,37,115,58,32,111,110,108,121,32,53,32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,116,121,112,101,99,104,101,99,107,97,98,108,101,59,32,117,115,101,32,65,95,71,73,77,77,69,0,0,99,108,97, 115,115,95,97,100,100,109,101,116,104,111,100,58,32,37,115,95,37,115,58,32,98,97,100,32,97,114,103,117,109,101,110,116,32,116,121,112,101,115,10,0,0,0,0,0,37,115,58,32,102,108,111,97,116,32,117,110,101,120,112,101,99,116,101,100,32,102,111,114,32,115, 105,103,110,97,108,32,105,110,112,117,116,0,0,0,119,97,114,110,105,110,103,58,32,37,115,58,32,102,108,111,97,116,32,109,101,116,104,111,100,32,111,118,101,114,119,114,105,116,116,101,110,0,0,0,115,97,118,101,32,102,117,110,99,116,105,111,110,32,99,97, 108,108,101,100,32,98,117,116,32,110,111,116,32,100,101,102,105,110,101,100,0,0,0,0,109,97,120,105,109,117,109,32,111,98,106,101,99,116,32,108,111,97,100,105,110,103,32,100,101,112,116,104,32,37,100,32,114,101,97,99,104,101,100,0,46,112,97,116,0,0,0, 0,37,115,58,32,99,97,110,39,116,32,108,111,97,100,32,97,98,115,116,114,97,99,116,105,111,110,32,119,105,116,104,105,110,32,105,116,115,101,108,102,10,0,0,0,0,0,0,0,115,121,109,98,111,108,0,0,0,0,0,0,111,98,106,101,99,116,109,97,107,101,114,0,99,108,97, 115,115,109,97,107,101,114,0,0,0,0,0,0,66,97,100,32,97,114,103,117,109,101,110,116,115,32,102,111,114,32,109,101,115,115,97,103,101,32,39,37,115,39,32,116,111,32,111,98,106,101,99,116,32,39,37,115,39,0,112,100,95,118,109,101,115,115,58,32,111,110,108, 121,32,49,48,32,97,108,108,111,119,101,100,0,112,100,95,102,111,114,119,97,114,100,109,101,115,115,0,0,37,115,58,32,110,111,32,109,101,116,104,111,100,32,102,111,114,32,109,101,115,115,97,103,101,32,39,37,115,39,0,0,102,105,108,101,32,102,111,114,109, 97,116,32,110,101,119,101,114,32,116,104,97,110,32,116,104,105,115,32,118,101,114,115,105,111,110,32,111,102,32,80,100,32,40,116,114,121,105,110,103,32,97,110,121,119,97,121,46,46,46,41,0,37,115,58,32,117,110,107,110,111,119,110,32,109,101,115,115,97, 103,101,32,37,115,32,0,0,0,0,0,102,105,108,101,110,97,109,101,0,0,0,0,0,0,113,117,105,116,0,118,101,114,105,102,121,113,117,105,116,0,109,101,116,101,114,115,0,107,101,121,0,97,117,100,105,111,115,116,97,116,117,115,0,102,105,110,100,101,114,114,111, 114,0,97,117,100,105,111,45,112,114,111,112,101,114,116,105,101,115,0,97,117,100,105,111,45,100,105,97,108,111,103,0,97,117,100,105,111,45,115,101,116,97,112,105,0,109,105,100,105,45,115,101,116,97,112,105,0,109,105,100,105,45,112,114,111,112,101,114, 116,105,101,115,0,109,105,100,105,45,100,105,97,108,111,103,0,115,116,97,114,116,45,112,97,116,104,45,100,105,97,108,111,103,0,112,97,116,104,45,100,105,97,108,111,103,0,115,116,97,114,116,45,115,116,97,114,116,117,112,45,100,105,97,108,111,103,0,115, 116,97,114,116,117,112,45,100,105,97,108,111,103,0,112,105,110,103,0,115,97,118,101,45,112,114,101,102,101,114,101,110,99,101,115,0,118,101,114,115,105,111,110,0,112,101,114,102,0,112,100,58,32,103,101,116,98,121,116,101,115,40,41,32,102,97,105,108,101, 100,32,45,45,32,111,117,116,32,111,102,32,109,101,109,111,114,121,0,0,112,100,58,32,114,101,115,105,122,101,98,121,116,101,115,40,41,32,102,97,105,108,101,100,32,45,45,32,111,117,116,32,111,102,32,109,101,109,111,114,121,0,0,0,0,0,0,0,105,110,108,101, 116,58,32,101,120,112,101,99,116,101,100,32,39,37,115,39,32,98,117,116,32,103,111,116,32,39,37,115,39,0,0,0,0,0,0,115,116,97,99,107,32,111,118,101,114,102,108,111,119,0,105,110,108,101,116,95,103,101,116,115,105,103,110,97,108,105,110,100,101,120,0,0, 0,0,0,0,112,100,95,110,101,119,58,32,97,112,112,97,114,101,110,116,108,121,32,99,97,108,108,101,100,32,98,101,102,111,114,101,32,115,101,116,117,112,32,114,111,117,116,105,110,101,0,98,105,110,100,108,105,115,116,0,37,115,58,32,99,111,117,108,100,110, 39,116,32,117,110,98,105,110,100,0,119,97,114,110,105,110,103,58,32,37,115,58,32,109,117,108,116,105,112,108,121,32,100,101,102,105,110,101,100,0,103,115,116,97,99,107,95,112,111,112,0,0,0,0,37,50,100,32,37,56,100,32,37,56,100,32,37,56,100,32,37,56,100, 32,37,56,100,32,37,56,100,32,37,56,100,32,37,56,100,0,0,0,0,0,100,115,112,32,37,100,44,32,112,111,108,108,103,117,105,32,37,100,44,32,110,111,116,104,105,110,103,32,37,100,0,117,110,107,110,111,119,110,0,65,68,67,32,98,108,111,99,107,101,100,0,68,65, 67,32,98,108,111,99,107,101,100,0,65,47,68,47,65,32,115,121,110,99,0,100,97,116,97,32,108,97,116,101,0,97,117,100,105,111,32,73,47,79,32,101,114,114,111,114,32,104,105,115,116,111,114,121,58,0,115,101,99,111,110,100,115,32,97,103,111,9,101,114,114,111, 114,32,116,121,112,101,0,37,57,46,50,102,9,37,115,0,112,100,116,107,95,112,100,95,100,105,111,32,49,10,0,112,100,116,107,95,112,100,95,100,105,111,32,48,10,0,112,100,116,107,95,112,100,95,109,101,116,101,114,115,32,37,100,32,37,100,32,37,100,32,37,100, 10,0,0,115,111,114,114,121,44,32,99,97,110,39,116,32,116,117,114,110,32,111,102,102,32,99,97,108,108,98,97,99,107,115,32,121,101,116,59,32,114,101,115,116,97,114,116,32,80,100,0,109,95,112,111,108,108,105,110,103,115,99,104,101,100,117,108,101,114,10, 0,0,0,0,0,97,117,100,105,111,32,73,47,79,32,115,116,117,99,107,46,46,46,32,99,108,111,115,105,110,103,32,97,117,100,105,111,10,0,0,0,0,0,0,0,105,110,112,117,116,32,99,104,97,110,110,101,108,115,32,61,32,37,100,44,32,111,117,116,112,117,116,32,99,104, 97,110,110,101,108,115,32,61,32,37,100,0,0,0,0,0,0,0,115,121,115,95,99,108,111,115,101,95,97,117,100,105,111,58,32,117,110,107,110,111,119,110,32,65,80,73,32,37,100,0,115,101,116,32,112,100,95,119,104,105,99,104,97,112,105,32,48,10,0,117,110,107,110, 111,119,110,32,97,117,100,105,111,32,65,80,73,32,115,112,101,99,105,102,105,101,100,0,115,101,116,32,112,100,95,119,104,105,99,104,97,112,105,32,37,100,10,0,117,110,107,110,111,119,110,32,65,80,73,0,105,110,112,117,116,32,100,101,118,105,99,101,32,35, 37,100,0,111,117,116,112,117,116,32,100,101,118,105,99,101,32,35,37,100,0,110,111,32,97,117,100,105,111,32,105,110,112,117,116,32,100,101,118,105,99,101,115,32,102,111,117,110,100,0,97,117,100,105,111,32,105,110,112,117,116,32,100,101,118,105,99,101, 115,58,0,37,100,46,32,37,115,0,110,111,32,97,117,100,105,111,32,111,117,116,112,117,116,32,100,101,118,105,99,101,115,32,102,111,117,110,100,0,97,117,100,105,111,32,111,117,116,112,117,116,32,100,101,118,105,99,101,115,58,0,65,80,73,32,110,117,109,98, 101,114,32,37,100,10,0,0,0,103,108,111,98,97,108,32,97,117,100,105,111,95,105,110,100,101,118,108,105,115,116,59,32,115,101,116,32,97,117,100,105,111,95,105,110,100,101,118,108,105,115,116,32,123,125,10,0,108,97,112,112,101,110,100,32,97,117,100,105, 111,95,105,110,100,101,118,108,105,115,116,32,123,37,115,125,10,0,0,0,103,108,111,98,97,108,32,97,117,100,105,111,95,111,117,116,100,101,118,108,105,115,116,59,32,115,101,116,32,97,117,100,105,111,95,111,117,116,100,101,118,108,105,115,116,32,123,125, 10,0,0,0,0,0,0,0,108,97,112,112,101,110,100,32,97,117,100,105,111,95,111,117,116,100,101,118,108,105,115,116,32,123,37,115,125,10,0,0,112,100,116,107,95,97,117,100,105,111,95,100,105,97,108,111,103,32,37,37,115,32,37,100,32,37,100,32,37,100,32,37,100, 32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,119,97,114,110,105,110,103,58,32,97,100,106,117,115,116,105,110,103,32, 98,108,111,99,107,115,105,122,101,32,116,111,32,112,111,119,101,114,32,111,102,32,50,58,32,37,100,0,115,121,115,95,97,117,100,105,111,97,112,105,32,37,100,0,123,32,0,123,100,117,109,109,121,32,37,100,125,32,0,125,0,123,125,0,114,101,115,116,97,114,116, 0,78,79,78,69,0,72,79,77,69,0,37,115,47,46,46,47,111,114,103,46,112,117,114,101,100,97,116,97,46,112,100,0,0,0,0,0,0,37,115,47,76,105,98,114,97,114,121,47,80,114,101,102,101,114,101,110,99,101,115,47,111,114,103,46,112,117,114,101,100,97,116,97,46,112, 100,46,112,108,105,115,116,0,0,0,0,100,101,102,97,117,108,116,115,32,114,101,97,100,32,111,114,103,46,112,117,114,101,100,97,116,97,46,112,100,32,37,115,32,50,62,32,47,100,101,118,47,110,117,108,108,10,0,0,100,101,102,97,117,108,116,115,32,114,101,97, 100,32,37,115,32,37,115,32,50,62,32,47,100,101,118,47,110,117,108,108,10,0,0,0,0,0,0,0,100,101,102,97,117,108,116,115,32,119,114,105,116,101,32,111,114,103,46,112,117,114,101,100,97,116,97,46,112,100,32,37,115,32,34,37,115,34,32,50,62,32,47,100,101,118, 47,110,117,108,108,10,0,97,117,100,105,111,97,112,105,0,0,0,0,110,111,97,117,100,105,111,105,110,0,0,0,84,114,117,101,0,97,117,100,105,111,105,110,100,101,118,37,100,0,37,100,32,37,100,0,110,111,97,117,100,105,111,111,117,116,0,97,117,100,105,111,111, 117,116,100,101,118,37,100,0,0,0,0,0,0,97,117,100,105,111,98,117,102,0,99,97,108,108,98,97,99,107,0,110,111,109,105,100,105,105,110,0,109,105,100,105,105,110,100,101,118,37,100,0,110,111,109,105,100,105,111,117,116,0,109,105,100,105,111,117,116,100,101, 118,37,100,0,110,112,97,116,104,0,112,97,116,104,37,100,0,115,116,97,110,100,97,114,100,112,97,116,104,0,118,101,114,98,111,115,101,0,110,108,111,97,100,108,105,98,0,108,111,97,100,108,105,98,37,100,0,100,101,102,101,97,116,114,116,0,102,108,97,103,115, 0,70,97,108,115,101,0,0,0,0,0,0,115,105,103,97,99,116,105,111,110,0,80,100,58,32,115,105,103,110,97,108,32,37,100,10,0,80,100,58,32,115,121,115,116,101,109,32,99,97,108,108,32,116,105,109,101,100,32,111,117,116,10,0,37,115,58,32,37,115,32,40,37,100,41, 10,0,0,0,0,0,0,0,0,119,97,114,110,105,110,103,58,32,37,100,32,114,101,109,111,118,101,100,32,102,114,111,109,32,112,111,108,108,32,108,105,115,116,32,98,117,116,32,110,111,116,32,102,111,117,110,100,0,116,95,115,111,99,107,101,116,114,101,99,101,105, 118,101,114,0,10,0,114,101,99,118,0,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,103,101,116,117,100,112,0,112,100,58,32,100,114,111,112,112,101,100,32,109,101,115,115,97,103,101,32,102,114,111,109,32,103,117,105,10,0,112,100,58,32,101,120, 105,116,105,110,103,10,0,69,79,70,32,111,110,32,115,111,99,107,101,116,32,37,100,10,0,112,100,32,111,117,116,112,117,116,32,112,105,112,101,0,0,0,0,0,0,80,100,58,32,99,111,117,108,100,110,39,116,32,97,108,108,111,99,97,116,101,32,71,85,73,32,98,117,102, 102,101,114,10,0,0,0,0,0,0,0,80,100,58,32,98,117,102,102,101,114,32,115,112,97,99,101,32,119,97,115,110,39,116,32,115,117,102,102,105,99,105,101,110,116,32,102,111,114,32,108,111,110,103,32,71,85,73,32,115,116,114,105,110,103,10,0,115,121,115,95,118, 103,117,105,0,0,0,0,112,100,45,116,111,45,103,117,105,32,115,111,99,107,101,116,0,112,100,116,107,95,112,105,110,103,10,0,0,0,115,111,99,107,101,116,0,108,111,99,97,108,104,111,115,116,0,0,0,0,0,0,108,111,99,97,108,104,111,115,116,32,110,111,116,32,102, 111,117,110,100,32,40,105,110,101,116,32,112,114,111,116,111,99,111,108,32,110,111,116,32,105,110,115,116,97,108,108,101,100,63,41,10,0,99,111,110,110,101,99,116,105,110,103,32,115,116,114,101,97,109,32,115,111,99,107,101,116,0,0,0,0,115,101,116,115, 111,99,107,111,112,116,32,40,84,67,80,95,78,79,68,69,76,65,89,41,32,102,97,105,108,101,100,10,0,0,0,0,0,0,0,0,80,100,32,110,101,101,100,115,32,121,111,117,114,32,109,97,99,104,105,110,101,32,116,111,32,98,101,32,99,111,110,102,105,103,117,114,101,100, 32,119,105,116,104,10,0,0,0,0,39,110,101,116,119,111,114,107,105,110,103,39,32,116,117,114,110,101,100,32,111,110,32,40,115,101,101,32,80,100,39,115,32,104,116,109,108,32,100,111,99,32,102,111,114,32,100,101,116,97,105,108,115,46,41,10,0,112,111,114, 116,32,37,100,10,0,0,0,0,0,0,0,40,100,105,100,32,110,111,116,32,102,105,110,100,32,97,110,32,101,109,98,101,100,100,101,100,32,119,105,115,104,41,0,40,100,105,100,32,110,111,116,32,102,105,110,100,32,97,32,104,111,109,101,32,100,105,114,101,99,116,111, 114,121,41,0,47,65,112,112,108,105,99,97,116,105,111,110,115,47,85,116,105,108,105,116,105,101,115,47,87,105,115,104,46,97,112,112,47,67,111,110,116,101,110,116,115,47,77,97,99,79,83,47,87,105,115,104,0,0,0,0,47,65,112,112,108,105,99,97,116,105,111,110, 115,47,85,116,105,108,105,116,105,101,115,47,87,105,115,104,32,83,104,101,108,108,46,97,112,112,47,67,111,110,116,101,110,116,115,47,77,97,99,79,83,47,87,105,115,104,32,83,104,101,108,108,0,0,0,0,0,0,0,0,47,65,112,112,108,105,99,97,116,105,111,110,115, 47,87,105,115,104,46,97,112,112,47,67,111,110,116,101,110,116,115,47,77,97,99,79,83,47,87,105,115,104,0,0,0,0,0,0,47,65,112,112,108,105,99,97,116,105,111,110,115,47,87,105,115,104,32,83,104,101,108,108,46,97,112,112,47,67,111,110,116,101,110,116,115, 47,77,97,99,79,83,47,87,105,115,104,32,83,104,101,108,108,0,47,117,115,114,47,98,105,110,47,119,105,115,104,0,37,115,47,46,46,47,77,97,99,79,83,47,80,100,42,0,0,0,0,37,115,47,65,112,112,108,105,99,97,116,105,111,110,115,47,87,105,115,104,46,97,112,112, 47,67,111,110,116,101,110,116,115,47,77,97,99,79,83,47,87,105,115,104,0,84,114,121,105,110,103,32,87,105,115,104,32,97,116,32,34,37,115,34,10,0,34,37,115,34,32,37,115,47,116,99,108,47,47,112,100,45,103,117,105,46,116,99,108,32,37,100,10,0,115,121,115, 95,115,116,97,114,116,103,117,105,0,115,121,115,95,115,116,97,114,116,103,117,105,32,102,97,105,108,101,100,10,0,45,99,0,115,104,0,47,98,105,110,47,115,104,0,112,100,58,32,101,120,101,99,0,0,119,97,114,110,105,110,103,58,32,104,105,103,104,32,112,114, 105,111,114,105,116,121,32,115,99,104,101,100,117,108,105,110,103,32,102,97,105,108,101,100,10,0,0,0,0,0,0,0,87,97,105,116,105,110,103,32,102,111,114,32,99,111,110,110,101,99,116,105,111,110,32,114,101,113,117,101,115,116,46,46,46,32,10,0,108,105,115, 116,101,110,0,97,99,99,101,112,116,0,46,46,46,32,99,111,110,110,101,99,116,101,100,10,0,116,101,115,116,52,0,0,112,100,116,107,95,112,100,95,115,116,97,114,116,117,112,32,37,100,32,37,100,32,37,100,32,123,37,115,125,32,37,115,32,37,115,32,123,37,115, 125,32,37,115,10,0,99,108,111,115,105,110,103,32,97,117,100,105,111,46,46,46,10,0,99,108,111,115,105,110,103,32,77,73,68,73,46,46,46,10,0,46,46,46,32,100,111,110,101,46,10,0,101,120,105,116,10,0,0,0,0,0,0,0,0,37,115,58,32,97,108,114,101,97,100,121,32, 108,111,97,100,101,100,0,95,116,105,108,100,101,0,48,120,37,48,50,120,0,115,101,116,117,112,95,0,95,115,101,116,117,112,0,0,108,111,97,100,95,111,98,106,101,99,116,58,32,83,121,109,98,111,108,32,34,37,115,34,32,110,111,116,32,102,111,117,110,100,0,37, 115,37,115,0,100,108,111,112,101,110,32,102,97,105,108,101,100,32,102,111,114,32,37,115,58,32,37,115,10,0,112,100,95,101,120,116,101,114,110,95,115,99,104,101,100,0,0,0,0,0,0,0,80,100,45,48,46,52,51,46,48,32,40,34,116,101,115,116,52,34,41,0,103,108,111, 98,95,105,110,105,116,102,114,111,109,103,117,105,0,37,115,58,32,99,97,110,39,116,32,108,111,97,100,32,108,105,98,114,97,114,121,0,45,110,111,112,114,101,102,115,0,37,115,32,99,111,109,112,105,108,101,100,32,37,115,32,37,115,10,0,117,115,97,103,101,58, 32,112,100,32,91,45,102,108,97,103,115,93,32,91,102,105,108,101,93,46,46,46,10,0,10,97,117,100,105,111,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,102,108,97,103,115,58,10,0,0,0,0,0,0,45,114,32,60,110,62,32,32,32,32,32,32,32,32,32,32,32,45, 45,32,115,112,101,99,105,102,121,32,115,97,109,112,108,101,32,114,97,116,101,10,0,0,0,0,0,0,0,0,45,97,117,100,105,111,105,110,100,101,118,32,46,46,46,32,32,45,45,32,97,117,100,105,111,32,105,110,32,100,101,118,105,99,101,115,59,32,101,46,103,46,44,32, 34,49,44,51,34,32,102,111,114,32,102,105,114,115,116,32,97,110,100,32,116,104,105,114,100,10,0,0,45,97,117,100,105,111,111,117,116,100,101,118,32,46,46,46,32,45,45,32,97,117,100,105,111,32,111,117,116,32,100,101,118,105,99,101,115,32,40,115,97,109,101, 41,10,0,0,0,45,97,117,100,105,111,100,101,118,32,46,46,46,32,32,32,32,45,45,32,115,112,101,99,105,102,121,32,105,110,112,117,116,32,97,110,100,32,111,117,116,112,117,116,32,116,111,103,101,116,104,101,114,10,0,0,45,105,110,99,104,97,110,110,101,108,115, 32,46,46,46,32,32,45,45,32,97,117,100,105,111,32,105,110,112,117,116,32,99,104,97,110,110,101,108,115,32,40,98,121,32,100,101,118,105,99,101,44,32,108,105,107,101,32,34,50,34,32,111,114,32,34,49,54,44,56,34,41,10,0,0,0,0,0,0,0,45,111,117,116,99,104,97, 110,110,101,108,115,32,46,46,46,32,45,45,32,110,117,109,98,101,114,32,111,102,32,97,117,100,105,111,32,111,117,116,32,99,104,97,110,110,101,108,115,32,40,115,97,109,101,41,10,0,0,0,0,0,0,0,0,45,99,104,97,110,110,101,108,115,32,46,46,46,32,32,32,32,45, 45,32,115,112,101,99,105,102,121,32,98,111,116,104,32,105,110,112,117,116,32,97,110,100,32,111,117,116,112,117,116,32,99,104,97,110,110,101,108,115,10,0,0,0,0,0,45,97,117,100,105,111,98,117,102,32,60,110,62,32,32,32,32,45,45,32,115,112,101,99,105,102, 121,32,115,105,122,101,32,111,102,32,97,117,100,105,111,32,98,117,102,102,101,114,32,105,110,32,109,115,101,99,10,0,0,0,0,0,0,0,45,98,108,111,99,107,115,105,122,101,32,60,110,62,32,32,32,45,45,32,115,112,101,99,105,102,121,32,97,117,100,105,111,32,73, 47,79,32,98,108,111,99,107,32,115,105,122,101,32,105,110,32,115,97,109,112,108,101,32,102,114,97,109,101,115,10,0,0,0,0,0,0,45,115,108,101,101,112,103,114,97,105,110,32,60,110,62,32,32,45,45,32,115,112,101,99,105,102,121,32,110,117,109,98,101,114,32, 111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,115,108,101,101,112,32,119,104,101,110,32,105,100,108,101,10,0,0,45,110,111,100,97,99,32,32,32,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,97,117,100,105, 111,32,111,117,116,112,117,116,10,0,0,0,0,0,0,45,110,111,97,100,99,32,32,32,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,97,117,100,105,111,32,105,110,112,117,116,10,0,0,0,0,0,0,0,45,110,111,97,117,100,105,111,32,32,32,32,32,32, 32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,97,117,100,105,111,32,105,110,112,117,116,32,97,110,100,32,111,117,116,112,117,116,32,40,45,110,111,115,111,117,110,100,32,105,115,32,115,121,110,111,110,121,109,41,32,10,0,0,0,0,0,45,108,105,115,116, 100,101,118,32,32,32,32,32,32,32,32,32,45,45,32,108,105,115,116,32,97,117,100,105,111,32,97,110,100,32,77,73,68,73,32,100,101,118,105,99,101,115,10,0,0,0,0,0,0,0,0,32,32,32,32,32,32,40,100,101,102,97,117,108,116,32,97,117,100,105,111,32,65,80,73,32,102, 111,114,32,116,104,105,115,32,112,108,97,116,102,111,114,109,58,32,32,0,100,117,109,109,121,32,97,117,100,105,111,0,41,10,10,0,10,77,73,68,73,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,102,108,97,103,115,58,10,0,0,0,0,0,0,0,45,109,105,100, 105,105,110,100,101,118,32,46,46,46,32,32,32,45,45,32,109,105,100,105,32,105,110,32,100,101,118,105,99,101,32,108,105,115,116,59,32,101,46,103,46,44,32,34,49,44,51,34,32,102,111,114,32,102,105,114,115,116,32,97,110,100,32,116,104,105,114,100,10,0,0,0, 0,0,0,0,45,109,105,100,105,111,117,116,100,101,118,32,46,46,46,32,32,45,45,32,109,105,100,105,32,111,117,116,32,100,101,118,105,99,101,32,108,105,115,116,44,32,115,97,109,101,32,102,111,114,109,97,116,10,0,0,45,109,105,100,105,100,101,118,32,46,46,46, 32,32,32,32,32,45,45,32,115,112,101,99,105,102,121,32,45,109,105,100,105,111,117,116,100,101,118,32,97,110,100,32,45,109,105,100,105,105,110,100,101,118,32,116,111,103,101,116,104,101,114,10,0,0,0,0,0,0,0,0,45,110,111,109,105,100,105,105,110,32,32,32, 32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,77,73,68,73,32,105,110,112,117,116,10,0,0,0,0,0,0,0,0,45,110,111,109,105,100,105,111,117,116,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,77,73,68,73,32,111,117,116,112,117, 116,10,0,0,0,0,0,0,0,45,110,111,109,105,100,105,32,32,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,77,73,68,73,32,105,110,112,117,116,32,97,110,100,32,111,117,116,112,117,116,10,0,10,111,116,104,101,114,32,102,108,97,103,115,58, 10,0,0,0,0,0,0,45,112,97,116,104,32,60,112,97,116,104,62,32,32,32,32,32,45,45,32,97,100,100,32,116,111,32,102,105,108,101,32,115,101,97,114,99,104,32,112,97,116,104,10,0,0,0,0,45,110,111,115,116,100,112,97,116,104,32,32,32,32,32,32,32,45,45,32,100,111, 110,39,116,32,115,101,97,114,99,104,32,115,116,97,110,100,97,114,100,32,40,34,101,120,116,114,97,34,41,32,100,105,114,101,99,116,111,114,121,10,0,0,45,115,116,100,112,97,116,104,32,32,32,32,32,32,32,32,32,45,45,32,115,101,97,114,99,104,32,115,116,97, 110,100,97,114,100,32,100,105,114,101,99,116,111,114,121,32,40,116,114,117,101,32,98,121,32,100,101,102,97,117,108,116,41,10,0,0,0,0,0,0,0,0,45,104,101,108,112,112,97,116,104,32,60,112,97,116,104,62,32,45,45,32,97,100,100,32,116,111,32,104,101,108,112, 32,102,105,108,101,32,115,101,97,114,99,104,32,112,97,116,104,10,0,0,0,0,0,0,0,45,111,112,101,110,32,60,102,105,108,101,62,32,32,32,32,32,45,45,32,111,112,101,110,32,102,105,108,101,40,115,41,32,111,110,32,115,116,97,114,116,117,112,10,0,0,0,0,45,108, 105,98,32,60,102,105,108,101,62,32,32,32,32,32,32,45,45,32,108,111,97,100,32,111,98,106,101,99,116,32,108,105,98,114,97,114,121,40,115,41,10,0,0,0,0,0,45,102,111,110,116,45,115,105,122,101,32,60,110,62,32,32,32,32,32,45,45,32,115,112,101,99,105,102,121, 32,100,101,102,97,117,108,116,32,102,111,110,116,32,115,105,122,101,32,105,110,32,112,111,105,110,116,115,10,0,0,0,0,0,0,45,102,111,110,116,45,102,97,99,101,32,60,110,97,109,101,62,32,32,45,45,32,115,112,101,99,105,102,121,32,100,101,102,97,117,108,116, 32,102,111,110,116,10,0,0,0,0,0,45,102,111,110,116,45,119,101,105,103,104,116,32,60,110,97,109,101,62,45,45,32,115,112,101,99,105,102,121,32,100,101,102,97,117,108,116,32,102,111,110,116,32,119,101,105,103,104,116,32,40,110,111,114,109,97,108,32,111, 114,32,98,111,108,100,41,10,0,0,0,0,0,45,118,101,114,98,111,115,101,32,32,32,32,32,32,32,32,32,45,45,32,101,120,116,114,97,32,112,114,105,110,116,111,117,116,32,111,110,32,115,116,97,114,116,117,112,32,97,110,100,32,119,104,101,110,32,115,101,97,114, 99,104,105,110,103,32,102,111,114,32,102,105,108,101,115,10,0,0,0,0,0,45,118,101,114,115,105,111,110,32,32,32,32,32,32,32,32,32,45,45,32,100,111,110,39,116,32,114,117,110,32,80,100,59,32,106,117,115,116,32,112,114,105,110,116,32,111,117,116,32,119,104, 105,99,104,32,118,101,114,115,105,111,110,32,105,116,32,105,115,32,10,0,0,45,100,32,60,110,62,32,32,32,32,32,32,32,32,32,32,32,45,45,32,115,112,101,99,105,102,121,32,100,101,98,117,103,32,108,101,118,101,108,10,0,0,0,0,0,0,0,0,45,110,111,108,111,97,100, 98,97,110,103,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,97,108,108,32,108,111,97,100,98,97,110,103,115,10,0,0,0,0,0,45,115,116,100,101,114,114,32,32,32,32,32,32,32,32,32,32,45,45,32,115,101,110,100,32,112,114,105,110,116,111,117,116, 32,116,111,32,115,116,97,110,100,97,114,100,32,101,114,114,111,114,32,105,110,115,116,101,97,100,32,111,102,32,71,85,73,10,0,0,0,0,0,45,110,111,103,117,105,32,32,32,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,115,116,97,114,116, 105,110,103,32,116,104,101,32,71,85,73,10,0,0,45,103,117,105,112,111,114,116,32,60,110,62,32,32,32,32,32,45,45,32,99,111,110,110,101,99,116,32,116,111,32,112,114,101,45,101,120,105,115,116,105,110,103,32,71,85,73,32,111,118,101,114,32,112,111,114,116, 32,60,110,62,10,0,0,45,103,117,105,99,109,100,32,34,99,109,100,46,46,46,34,32,45,45,32,115,116,97,114,116,32,97,108,116,101,114,110,97,116,118,101,32,71,85,73,32,112,114,111,103,114,97,109,32,40,101,46,103,46,44,32,114,101,109,111,116,101,32,118,105, 97,32,115,115,104,41,10,0,0,0,0,0,0,0,0,45,115,101,110,100,32,34,109,115,103,46,46,46,34,32,32,32,45,45,32,115,101,110,100,32,97,32,109,101,115,115,97,103,101,32,97,116,32,115,116,97,114,116,117,112,44,32,97,102,116,101,114,32,112,97,116,99,104,101,115, 32,97,114,101,32,108,111,97,100,101,100,10,0,0,0,0,0,0,0,0,45,110,111,112,114,101,102,115,32,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,108,111,97,100,105,110,103,32,112,114,101,102,101,114,101,110,99,101,115,32,111,110,32,115, 116,97,114,116,117,112,10,0,0,0,0,45,114,116,32,111,114,32,45,114,101,97,108,116,105,109,101,32,45,45,32,117,115,101,32,114,101,97,108,45,116,105,109,101,32,112,114,105,111,114,105,116,121,10,0,0,0,0,0,45,110,114,116,32,32,32,32,32,32,32,32,32,32,32, 32,32,45,45,32,100,111,110,39,116,32,117,115,101,32,114,101,97,108,45,116,105,109,101,32,112,114,105,111,114,105,116,121,10,0,0,0,0,0,0,0,45,110,111,115,108,101,101,112,32,32,32,32,32,32,32,32,32,45,45,32,115,112,105,110,44,32,100,111,110,39,116,32,115, 108,101,101,112,32,40,109,97,121,32,108,111,119,101,114,32,108,97,116,101,110,99,121,32,111,110,32,109,117,108,116,105,45,67,80,85,115,41,10,0,0,0,0,0,0,0,0,45,115,99,104,101,100,108,105,98,32,60,102,105,108,101,62,32,45,45,32,112,108,117,103,32,105, 110,32,101,120,116,101,114,110,97,108,32,115,99,104,101,100,117,108,101,114,10,0,45,101,120,116,114,97,102,108,97,103,115,32,60,115,62,32,32,45,45,32,115,116,114,105,110,103,32,97,114,103,117,109,101,110,116,32,116,111,32,115,101,110,100,32,115,99,104, 101,100,108,105,98,10,0,0,0,45,98,97,116,99,104,32,32,32,32,32,32,32,32,32,32,32,45,45,32,114,117,110,32,111,102,102,45,108,105,110,101,32,97,115,32,97,32,98,97,116,99,104,32,112,114,111,99,101,115,115,10,0,0,0,0,45,110,111,97,117,116,111,112,97,116, 99,104,32,32,32,32,32,45,45,32,100,101,102,101,97,116,32,97,117,116,111,45,112,97,116,99,104,105,110,103,32,110,101,119,32,102,114,111,109,32,115,101,108,101,99,116,101,100,32,111,98,106,101,99,116,115,10,0,46,46,0,0,0,47,108,105,98,47,112,100,0,45,114, 0,0,0,0,45,105,110,99,104,97,110,110,101,108,115,0,45,111,117,116,99,104,97,110,110,101,108,115,0,45,99,104,97,110,110,101,108,115,0,45,115,111,117,110,100,98,117,102,0,45,97,117,100,105,111,98,117,102,0,45,99,97,108,108,98,97,99,107,0,45,98,108,111, 99,107,115,105,122,101,0,45,115,108,101,101,112,103,114,97,105,110,0,45,110,111,100,97,99,0,45,110,111,97,100,99,0,45,110,111,115,111,117,110,100,0,45,110,111,97,117,100,105,111,0,45,110,111,109,105,100,105,105,110,0,45,110,111,109,105,100,105,111,117, 116,0,45,110,111,109,105,100,105,0,45,109,105,100,105,105,110,100,101,118,0,45,109,105,100,105,111,117,116,100,101,118,0,45,109,105,100,105,100,101,118,0,45,112,97,116,104,0,45,110,111,115,116,100,112,97,116,104,0,0,45,104,101,108,112,112,97,116,104, 0,45,111,112,101,110,0,0,0,0,0,0,45,102,111,110,116,45,115,105,122,101,0,45,102,111,110,116,0,45,102,111,110,116,45,102,97,99,101,0,45,116,121,112,101,102,97,99,101,0,45,102,111,110,116,45,119,101,105,103,104,116,0,45,118,101,114,98,111,115,101,0,45, 118,101,114,115,105,111,110,0,45,100,0,45,110,111,108,111,97,100,98,97,110,103,0,45,110,111,103,117,105,0,45,103,117,105,112,111,114,116,0,45,115,116,100,101,114,114,0,45,103,117,105,99,109,100,0,45,115,101,110,100,0,45,108,105,115,116,100,101,118,0, 45,115,99,104,101,100,108,105,98,0,45,101,120,116,114,97,102,108,97,103,115,0,45,98,97,116,99,104,0,45,110,111,97,117,116,111,112,97,116,99,104,0,45,114,116,0,45,114,101,97,108,116,105,109,101,0,45,110,114,116,0,45,110,111,115,108,101,101,112,0,45,115, 111,117,110,100,105,110,100,101,118,0,45,97,117,100,105,111,105,110,100,101,118,0,45,115,111,117,110,100,111,117,116,100,101,118,0,45,97,117,100,105,111,111,117,116,100,101,118,0,45,115,111,117,110,100,100,101,118,0,45,97,117,100,105,111,100,101,118, 0,47,101,120,116,114,97,0,47,100,111,99,47,53,46,114,101,102,101,114,101,110,99,101,0,115,121,115,95,110,109,105,100,105,105,110,32,37,100,44,32,110,109,105,100,105,105,110,100,101,118,32,37,100,0,126,47,0,0,0,0,0,0,126,47,76,105,98,114,97,114,121,47, 80,100,0,47,76,105,98,114,97,114,121,47,80,100,0,0,0,0,0,0,0,0,116,114,105,101,100,32,37,115,59,32,115,116,97,116,32,102,97,105,108,101,100,32,111,114,32,100,105,114,101,99,116,111,114,121,0,116,114,105,101,100,32,37,115,32,97,110,100,32,115,117,99,99, 101,101,100,101,100,0,116,114,105,101,100,32,37,115,32,97,110,100,32,102,97,105,108,101,100,0,46,47,0,0,0,0,0,45,104,101,108,112,46,112,100,0,0,104,101,108,112,45,0,0,0,0,115,111,114,114,121,44,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,104, 101,108,112,32,112,97,116,99,104,32,102,111,114,32,34,37,115,34,0,0,0,46,112,100,114,99,0,0,0,114,101,97,100,105,110,103,32,115,116,97,114,116,117,112,32,102,105,108,101,58,32,37,115,0,37,57,57,56,115,0,0,0,0,0,0,0,115,116,97,114,116,117,112,32,102,105, 108,101,32,116,111,111,32,108,111,110,103,59,32,101,120,116,114,97,32,97,114,103,115,32,100,114,111,112,112,101,100,10,0,115,116,97,114,116,117,112,32,97,114,103,115,32,102,114,111,109,32,82,67,32,102,105,108,101,58,0,0,0,0,110,111,32,82,67,32,102,105, 108,101,32,97,114,103,117,109,101,110,116,115,32,102,111,117,110,100,0,101,114,114,111,114,32,112,97,114,115,105,110,103,32,82,67,32,97,114,103,117,109,101,110,116,115,0,102,108,97,103,115,58,32,37,115,58,32,116,111,111,32,108,111,110,103,0,0,0,0,0,0, 101,114,114,111,114,32,112,97,114,115,105,110,103,32,115,116,97,114,116,117,112,32,97,114,103,117,109,101,110,116,115,0,115,121,115,95,100,101,99,111,100,101,100,105,97,108,111,103,58,32,37,115,0,115,101,116,32,58,58,116,109,112,95,112,97,116,104,32, 123,125,10,0,108,97,112,112,101,110,100,32,58,58,116,109,112,95,112,97,116,104,32,123,37,115,125,10,0,0,0,0,0,0,0,0,115,101,116,32,58,58,115,121,115,95,115,101,97,114,99,104,112,97,116,104,32,36,58,58,116,109,112,95,112,97,116,104,10,0,0,0,0,0,0,0,115, 101,116,32,58,58,115,121,115,95,115,116,97,116,105,99,112,97,116,104,32,36,58,58,116,109,112,95,112,97,116,104,10,0,112,100,116,107,95,112,97,116,104,95,100,105,97,108,111,103,32,37,37,115,32,37,100,32,37,100,10,0,115,101,116,32,58,58,115,116,97,114, 116,117,112,95,102,108,97,103,115,32,123,37,115,125,10,0,115,101,116,32,58,58,115,116,97,114,116,117,112,95,108,105,98,114,97,114,105,101,115,32,123,125,10,0,0,0,0,0,108,97,112,112,101,110,100,32,58,58,115,116,97,114,116,117,112,95,108,105,98,114,97, 114,105,101,115,32,123,37,115,125,10,0,0,0,0,0,0,0,112,100,116,107,95,115,116,97,114,116,117,112,95,100,105,97,108,111,103,32,37,37,115,32,37,100,32,34,37,115,34,10,0,0,0,0,0,0,0,0,58,58,112,100,119,105,110,100,111,119,58,58,112,111,115,116,32,51,32, 123,37,115,125,10,0,101,114,114,111,114,58,32,37,115,0,58,58,112,100,119,105,110,100,111,119,58,58,112,111,115,116,32,49,32,123,37,115,125,10,0,118,101,114,98,111,115,101,40,37,100,41,58,32,37,115,0,58,58,112,100,119,105,110,100,111,119,58,58,112,111, 115,116,32,37,100,32,123,37,115,125,10,0,99,111,110,115,105,115,116,101,110,99,121,32,99,104,101,99,107,32,102,97,105,108,101,100,58,32,37,115,0,0,0,0,0,0,46,46,46,32,121,111,117,32,109,105,103,104,116,32,98,101,32,97,98,108,101,32,116,111,32,116,114, 97,99,107,32,116,104,105,115,32,100,111,119,110,32,102,114,111,109,32,116,104,101,32,70,105,110,100,32,109,101,110,117,46,0,110,111,32,102,105,110,100,97,98,108,101,32,101,114,114,111,114,32,121,101,116,46,0,108,97,115,116,32,116,114,97,99,107,97,98, 108,101,32,101,114,114,111,114,58,0,0,0,98,101,108,108,10,0,97,99,111,117,115,116,105,99,115,46,112,100,0,109,116,111,102,0,102,116,111,109,0,112,111,119,116,111,100,98,0,114,109,115,116,111,100,98,0,100,98,116,111,112,111,119,0,100,98,116,111,114,109, 115,0,99,108,105,112,0,111,112,101,114,97,116,111,114,115,0,111,116,104,101,114,98,105,110,111,112,115,0,109,97,116,104,0,112,111,119,0,109,105,110,0,61,61,0,33,61,0,62,0,60,0,62,61,0,60,61,0,38,0,38,38,0,124,0,124,124,0,60,60,0,62,62,0,37,0,109,111, 100,0,100,105,118,0,115,105,110,0,99,111,115,0,116,97,110,0,97,116,97,110,0,97,116,97,110,50,0,115,113,114,116,0,101,120,112,0,97,98,115,0,119,114,97,112,0,0,0,0,0,105,110,116,0,105,0,0,0,0,0,0,0,115,101,108,0,114,111,117,116,101,0,112,97,99,107,58,32, 37,115,58,32,98,97,100,32,116,121,112,101,0,112,97,99,107,58,32,115,116,97,108,101,32,112,111,105,110,116,101,114,0,0,0,0,112,97,99,107,95,98,97,110,103,58,32,119,97,114,110,105,110,103,58,32,114,101,101,110,116,114,121,32,119,105,116,104,32,112,111, 105,110,116,101,114,115,32,117,110,112,114,111,116,101,99,116,101,100,0,112,97,99,107,95,112,111,105,110,116,101,114,58,32,119,114,111,110,103,32,116,121,112,101,0,112,97,99,107,95,102,108,111,97,116,58,32,119,114,111,110,103,32,116,121,112,101,0,112, 97,99,107,95,115,121,109,98,111,108,58,32,119,114,111,110,103,32,116,121,112,101,0,112,97,99,107,0,117,110,112,97,99,107,58,32,37,115,58,32,98,97,100,32,116,121,112,101,0,117,110,112,97,99,107,58,32,116,121,112,101,32,109,105,115,109,97,116,99,104,0, 117,110,112,97,99,107,0,116,114,105,103,103,101,114,58,32,37,115,58,32,98,97,100,32,116,121,112,101,0,117,110,112,97,99,107,58,32,98,97,100,32,112,111,105,110,116,101,114,0,0,116,114,105,103,103,101,114,58,32,99,97,110,32,111,110,108,121,32,99,111,110, 118,101,114,116,32,39,115,39,32,116,111,32,39,98,39,32,111,114,32,39,97,39,0,0,0,115,112,105,103,111,116,0,109,111,115,101,115,0,98,97,110,103,50,0,117,110,116,105,108,0,45,46,35,48,49,50,51,52,53,54,55,56,57,0,102,103,71,101,69,0,120,88,100,105,111, 117,99,0,102,105,108,101,46,37,100,0,0,0,0,109,97,107,101,102,105,108,101,110,97,109,101,0,0,0,0,0,115,119,97,112,0,102,115,119,97,112,0,99,104,97,110,103,101,0,118,97,108,117,101,95,114,101,108,101,97,115,101,0,118,97,108,117,101,0,118,0,97,117,100, 105,111,32,100,105,97,108,111,103,32,116,111,111,32,108,111,110,103,0,46,103,102,120,115,116,117,98,37,108,120,0,100,101,115,116,114,111,121,32,46,103,102,120,115,116,117,98,37,108,120,10,0,103,102,120,115,116,117,98,0,101,110,100,0,99,97,110,99,101, 108,0,100,37,108,120,0,112,100,116,107,95,111,112,101,110,112,97,110,101,108,32,123,37,115,125,32,123,37,115,125,10,0,111,112,101,110,112,97,110,101,108,0,112,100,116,107,95,115,97,118,101,112,97,110,101,108,32,123,37,115,125,32,123,37,115,125,10,0,115, 97,118,101,112,97,110,101,108,0,107,101,121,117,112,0,107,101,121,110,97,109,101,0,45,110,0,58,32,0,37,115,37,115,98,97,110,103,0,37,115,37,115,40,103,112,111,105,110,116,101,114,41,0,37,115,37,115,37,103,0,37,115,37,115,37,115,0,108,105,115,116,95,97, 108,108,111,99,58,32,111,117,116,32,111,102,32,109,101,109,111,114,121,0,108,105,115,116,32,105,110,108,101,116,0,108,105,115,116,32,97,112,112,101,110,100,0,108,105,115,116,32,112,114,101,112,101,110,100,0,108,105,115,116,32,115,112,108,105,116,0,108, 105,115,116,32,116,114,105,109,0,108,105,115,116,32,108,101,110,103,116,104,0,112,114,101,112,101,110,100,0,115,112,108,105,116,0,116,114,105,109,0,108,101,110,103,116,104,0,108,105,115,116,32,37,115,58,32,117,110,107,110,111,119,110,32,102,117,110,99, 116,105,111,110,0,0,0,0,0,0,109,105,100,105,105,110,0,109,105,100,105,0,35,109,105,100,105,105,110,0,115,121,115,101,120,105,110,0,35,115,121,115,101,120,105,110,0,110,111,116,101,105,110,0,35,110,111,116,101,105,110,0,99,116,108,105,110,0,35,99,116, 108,105,110,0,112,103,109,105,110,0,35,112,103,109,105,110,0,98,101,110,100,105,110,0,35,98,101,110,100,105,110,0,116,111,117,99,104,105,110,0,35,116,111,117,99,104,105,110,0,112,111,108,121,116,111,117,99,104,105,110,0,35,112,111,108,121,116,111,117, 99,104,105,110,0,109,105,100,105,99,108,107,105,110,0,35,109,105,100,105,99,108,107,105,110,0,0,0,0,0,109,105,100,105,114,101,97,108,116,105,109,101,105,110,58,32,119,111,114,107,115,32,117,110,100,101,114,32,77,83,87,32,111,110,108,121,0,109,105,100, 105,114,101,97,108,116,105,109,101,105,110,0,35,109,105,100,105,114,101,97,108,116,105,109,101,105,110,0,109,105,100,105,111,117,116,0,110,111,116,101,111,117,116,0,99,116,108,111,117,116,0,112,103,109,111,117,116,0,98,101,110,100,111,117,116,0,116,111, 117,99,104,111,117,116,0,112,111,108,121,116,111,117,99,104,111,117,116,0,109,97,107,101,110,111,116,101,0,0,0,0,115,116,114,105,112,110,111,116,101,0,112,111,108,121,0,98,97,103,0,102,108,117,115,104,0,114,97,110,100,111,109,0,115,101,101,100,0,110, 97,109,101,99,97,110,118,97,115,0,99,111,109,37,100,95,111,112,101,110,10,0,99,111,109,37,100,95,115,101,110,100,32,34,92,37,51,46,51,111,34,10,0,115,101,114,105,97,108,0,99,112,117,116,105,109,101,0,114,101,97,108,116,105,109,101,0,0,0,0,110,101,116, 115,101,110,100,95,99,111,110,110,101,99,116,58,32,97,108,114,101,97,100,121,32,99,111,110,110,101,99,116,101,100,0,0,0,0,0,0,0,0,98,97,100,32,104,111,115,116,63,10,0,115,101,116,116,105,110,103,32,83,79,95,66,82,79,65,68,67,65,83,84,0,0,0,0,0,0,0,0, 99,111,110,110,101,99,116,105,110,103,32,116,111,32,112,111,114,116,32,37,100,0,0,110,101,116,115,101,110,100,32,98,108,111,99,107,101,100,32,37,100,32,109,115,101,99,0,110,101,116,115,101,110,100,0,110,101,116,115,101,110,100,58,32,110,111,116,32,99, 111,110,110,101,99,116,101,100,0,0,110,101,116,114,101,99,101,105,118,101,58,32,103,111,116,32,100,111,108,108,97,114,32,115,105,103,110,32,105,110,32,109,101,115,115,97,103,101,0,110,101,116,114,101,99,101,105,118,101,58,32,97,99,99,101,112,116,32,102, 97,105,108,101,100,0,111,108,100,0,0,0,0,115,101,116,115,111,99,107,111,112,116,32,40,83,79,95,82,69,85,83,69,65,68,68,82,41,32,102,97,105,108,101,100,10,0,98,105,110,100,0,0,0,0,0,0,0,0,110,101,116,114,101,99,101,105,118,101,0,0,0,0,0,0,0,0,113,108, 105,115,116,58,32,37,115,58,32,110,111,32,115,117,99,104,32,111,98,106,101,99,116,0,99,114,0,0,0,0,0,0,37,115,58,32,114,101,97,100,32,102,97,105,108,101,100,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,32,116,101,120,116,102,105,108,101,32,111,114,32,113, 108,105,115,116,32,99,111,110,116,101,110,116,115,58,32,45,45,45,45,45,45,45,45,45,45,45,0,113,108,105,115,116,0,114,101,119,105,110,100,0,0,99,108,101,97,114,0,114,101,97,100,0,0,0,0,0,116,101,109,112,111,0,116,101,120,116,102,105,108,101,0,0,0,98,97, 110,103,0,0,0,100,101,108,97,121,0,100,101,108,0,0,0,0,0,0,109,101,116,114,111,0,108,105,110,101,0,0,0,116,105,109,101,114,0,0,0,0,0,0,0,0,112,105,112,101,58,32,37,115,58,32,98,97,100,32,116,105,109,101,32,100,101,108,97,121,32,118,97,108,117,101,0,112, 105,112,101,58,32,37,115,58,32,98,97,100,32,116,121,112,101,0,112,105,112,101,58,32,115,116,97,108,101,32,112,111,105,110,116,101,114,0,0,0,112,105,112,101,58,32,115,121,109,98,111,108,32,111,114,32,112,111,105,110,116,101,114,32,105,110,32,116,105,109, 101,32,105,110,108,101,116,0,112,105,112,101,58,32,98,97,100,32,112,111,105,110,116,101,114,0,112,105,112,101,0,108,105,98,112,100,95,114,101,99,101,105,118,101,0,0,0,0,0,0,0,0,128,63,0,0,64,192,0,0,0,0,0,0,240,63,0,0,0,160,85,85,197,191,0,0,0,0,0,0, 56,65,0,0,0,0,0,0,56,193,0,0,0,0,0,64,143,64,110,134,27,240,249,33,25,64,0,0,122,68,111,18,131,58,84,0,128,63,0,0,0,0,0,0,0,0,0,0,224,63,252,169,241,210,77,98,80,63,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,64,0,0,0,192,0,0,0, 0,172,210,182,79,201,131,253,59,205,59,127,102,158,160,246,63,0,0,0,63,0,0,0,0,151,209,126,90,251,33,25,64,154,153,153,153,153,153,169,63,241,104,227,136,181,248,228,62,0,0,0,0,0,0,52,64,151,209,126,90,251,33,9,64,110,134,27,240,249,33,25,192,0,0,0,0, 0,0,224,191,208,15,201,191,208,15,201,63,97,11,182,186,171,170,42,61,208,15,201,64,0,0,128,64,0,0,128,191,236,120,173,96,0,0,0,0,0,0,80,63,0,0,0,0,0,0,248,63,123,91,60,254,3,147,173,63,47,177,194,80,2,90,32,64,182,1,7,76,218,79,191,63,32,121,28,140,245, 79,49,64,0,0,0,0,0,0,89,64,127,135,136,95,28,121,189,63,138,79,56,237,44,95,33,64,127,135,136,95,28,121,205,63,138,79,56,237,44,95,17,64,0,128,187,196,0,96,187,68,0,128,242,67,0,128,89,68,0,0,0,0,0,0,200,65,0,0,0,0,0,244,199,65,0,0,0,68,140,249,162,66, 0,0,128,48,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,224,64,0,0,0,0,0,0,96,65,0,0,0,0,192,255,223,64,0,0,0,71,0,0,0,75,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,0,64,0,0,72,66,0,128,9,68,0,0,175,67, 0,0,160,65,0,0,250,67,0,0,64,64,0,0,0,0,0,0,208,63,0,0,0,0,0,0,20,64,123,20,174,71,225,122,132,63,174,71,225,122,20,174,239,63,57,238,148,14,214,255,223,63,187,189,215,217,223,124,219,61,187,189,215,217,223,124,219,189,0,0,0,0,0,0,73,64,0,0,0,0,0,112, 167,64,0,0,32,65,0,0,0,0,0,0,0,0,0,0,94,64,123,20,174,71,225,122,132,191,45,67,28,235,226,54,26,63,0,0,160,66,0,0,0,0,154,153,153,153,153,249,88,192,0,0,0,0,64,136,195,64,0,0,64,65,0,0,0,0,0,0,0,0,0,0,36,64,43,135,22,217,206,247,239,63,0,0,0,0,160,234, 106,65,141,237,181,160,247,198,176,62,0,0,0,0,128,132,46,65,0,0,0,0,0,0,0,0,0,0,0,0,128,48,0,0,128,32,14,0,128,32,200,3,128,32,8,250,128,32,8,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5,0,0,122,196,0,0,0,0,168,198,75,55,137,213,85,64,255,255,255,127,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,240,61,123,20,174,71,225,122,116,63,35,66,146,12,161,156,199,59,64,140,181,120,29,175,21,68,149,214,38,232,11,46,17,62,0,254,255,70,0,1,0,56,76,141,29,201,216,1,0,65,83,255,37,185,216,1,0,144,104,213,5,0,0,233,230,255,255,255, 104,231,5,0,0,233,220,255,255,255,104,81,6,0,0,233,210,255,255,255,104,67,6,0,0,233,200,255,255,255,104,179,6,0,0,233,190,255,255,255,104,190,2,0,0,233,180,255,255,255,104,176,2,0,0,233,170,255,255,255,104,162,2,0,0,233,160,255,255,255,104,148,2,0,0, 233,150,255,255,255,104,132,2,0,0,233,140,255,255,255,104,119,2,0,0,233,130,255,255,255,104,105,2,0,0,233,120,255,255,255,104,91,2,0,0,233,110,255,255,255,104,76,2,0,0,233,100,255,255,255,104,61,2,0,0,233,90,255,255,255,104,48,2,0,0,233,80,255,255,255, 104,36,2,0,0,233,70,255,255,255,104,23,2,0,0,233,60,255,255,255,104,9,2,0,0,233,50,255,255,255,104,250,5,0,0,233,40,255,255,255,104,9,6,0,0,233,30,255,255,255,104,196,6,0,0,233,20,255,255,255,104,211,6,0,0,233,10,255,255,255,104,227,6,0,0,233,0,255,255, 255,104,27,6,0,0,233,246,254,255,255,104,54,6,0,0,233,236,254,255,255,104,42,6,0,0,233,226,254,255,255,104,33,7,0,0,233,216,254,255,255,104,48,7,0,0,233,206,254,255,255,104,62,7,0,0,233,196,254,255,255,104,80,7,0,0,233,186,254,255,255,104,55,1,0,0,233, 176,254,255,255,104,41,1,0,0,233,166,254,255,255,104,26,1,0,0,233,156,254,255,255,104,98,6,0,0,233,146,254,255,255,104,113,6,0,0,233,136,254,255,255,104,1,5,0,0,233,126,254,255,255,104,230,4,0,0,233,116,254,255,255,104,151,5,0,0,233,106,254,255,255,104, 167,5,0,0,233,96,254,255,255,104,203,2,0,0,233,86,254,255,255,104,218,2,0,0,233,76,254,255,255,104,200,4,0,0,233,66,254,255,255,104,179,4,0,0,233,56,254,255,255,104,156,4,0,0,233,46,254,255,255,104,130,4,0,0,233,36,254,255,255,104,87,5,0,0,233,26,254, 255,255,104,58,5,0,0,233,16,254,255,255,104,28,5,0,0,233,6,254,255,255,104,240,2,0,0,233,252,253,255,255,104,255,2,0,0,233,242,253,255,255,104,84,1,0,0,233,232,253,255,255,104,128,6,0,0,233,222,253,255,255,104,149,6,0,0,233,212,253,255,255,104,164,6, 0,0,233,202,253,255,255,104,15,0,0,0,233,192,253,255,255,104,33,0,0,0,233,182,253,255,255,104,179,1,0,0,233,172,253,255,255,104,14,3,0,0,233,162,253,255,255,104,29,3,0,0,233,152,253,255,255,104,206,3,0,0,233,142,253,255,255,104,221,3,0,0,233,132,253, 255,255,104,234,3,0,0,233,122,253,255,255,104,249,3,0,0,233,112,253,255,255,104,8,4,0,0,233,102,253,255,255,104,22,4,0,0,233,92,253,255,255,104,34,4,0,0,233,82,253,255,255,104,51,3,0,0,233,72,253,255,255,104,47,4,0,0,233,62,253,255,255,104,76,4,0,0,233, 52,253,255,255,104,102,4,0,0,233,42,253,255,255,104,72,3,0,0,233,32,253,255,255,104,176,3,0,0,233,22,253,255,255,104,162,3,0,0,233,12,253,255,255,104,149,3,0,0,233,2,253,255,255,104,135,3,0,0,233,248,252,255,255,104,123,3,0,0,233,238,252,255,255,104, 108,3,0,0,233,228,252,255,255,104,87,3,0,0,233,218,252,255,255,104,191,3,0,0,233,208,252,255,255,104,220,1,0,0,233,198,252,255,255,104,207,1,0,0,233,188,252,255,255,104,195,1,0,0,233,178,252,255,255,104,70,1,0,0,233,168,252,255,255,104,110,1,0,0,233, 158,252,255,255,104,123,1,0,0,233,148,252,255,255,104,136,1,0,0,233,138,252,255,255,104,97,1,0,0,233,128,252,255,255,104,18,7,0,0,233,118,252,255,255,104,3,7,0,0,233,108,252,255,255,104,243,6,0,0,233,98,252,255,255,104,180,5,0,0,233,88,252,255,255,104, 108,5,0,0,233,78,252,255,255,104,138,5,0,0,233,68,252,255,255,104,251,1,0,0,233,58,252,255,255,104,236,1,0,0,233,48,252,255,255,104,150,1,0,0,233,38,252,255,255,104,0,0,0,0,233,28,252,255,255,104,53,0,0,0,233,18,252,255,255,104,74,0,0,0,233,8,252,255, 255,104,94,0,0,0,233,254,251,255,255,104,200,5,0,0,233,244,251,255,255,104,116,0,0,0,233,234,251,255,255,104,137,0,0,0,233,224,251,255,255,104,161,0,0,0,233,214,251,255,255,104,181,0,0,0,233,204,251,255,255,104,201,0,0,0,233,194,251,255,255,104,222,0, 0,0,233,184,251,255,255,104,244,0,0,0,233,174,251,255,255,104,12,1,0,0,233,164,251,255,255,104,165,1,0,0,233,154,251,255,255,0,0,0,0,0,0,0,0,0,0,1,0,0,0,28,0,0,0,7,0,0,0,56,0,0,0,0,0,0,0,56,0,0,0,3,0,0,0,0,0,0,1,1,0,1,1,17,0,2,1,209,88,5,1,209,8,4,1, 209,0,3,1,0,0,0,0,0,0,0,0,92,0,0,0,92,0,0,0,245,220,3,0,80,4,0,0,92,0,0,0,1,48,11,0,0,0,0,0,92,0,0,0,3,0,0,0,12,0,250,0,244,3,0,0,0,0,0,6,168,13,0,0,105,20,0,1,171,21,0,0,110,28,0,1,176,29,0,0,109,36,0,1,175,37,0,0,137,46,0,1,203,47,0,0,192,57,0,1,2, 59,0,0,63,69,0,1,129,70,0,0,6,74,0,1,61,75,0,0,38,79,0,2,35,80,0,0,187,82,0,2,138,83,0,0,136,87,0,2,87,88,0,0,8,94,0,1,0,95,0,0,163,97,0,1,55,98,0,0,66,100,0,1,197,100,0,0,25,102,0,1,181,102,0,0,104,105,0,1,4,106,0,0,74,107,0,1,230,107,0,0,56,110,0,1, 206,110,0,0,165,124,0,1,98,125,0,0,215,129,0,1,160,132,0,0,91,134,0,1,175,135,0,0,36,136,0,2,213,136,0,0,113,140,0,2,159,141,0,0,200,141,0,1,218,142,0,0,239,143,0,2,173,144,0,1,168,145,0,0,145,148,0,2,62,149,0,0,254,149,0,1,61,150,0,0,255,152,0,2,164, 153,0,0,245,155,0,1,230,157,0,0,241,160,0,1,154,162,0,0,231,199,0,1,154,216,0,0,144,232,0,1,60,233,0,0,199,235,0,1,119,237,0,0,190,239,0,1,187,241,0,0,124,242,0,1,209,243,0,0,51,246,0,1,116,247,0,0,150,251,0,1,182,252,0,0,183,1,1,1,187,2,1,0,135,4,1, 1,139,5,1,0,87,7,1,1,91,8,1,0,247,11,1,1,9,13,1,0,91,16,1,1,109,17,1,0,191,20,1,1,209,21,1,0,51,24,1,2,250,24,1,0,2,29,1,1,252,29,1,0,121,33,1,2,32,34,1,0,115,36,1,1,57,37,1,0,216,38,1,1,116,39,1,0,175,61,1,1,67,62,1,0,62,63,1,1,203,63,1,0,127,65,1,1, 19,66,1,0,54,67,1,1,195,67,1,0,95,70,1,1,25,71,1,0,254,71,1,2,123,72,1,0,187,74,1,1,129,75,1,0,125,82,1,1,55,84,1,0,55,89,1,1,12,90,1,0,150,121,1,1,6,128,1,0,145,151,1,1,209,171,1,0,25,172,1,1,224,181,1,0,35,192,1,1,14,193,1,0,194,194,1,2,31,196,1,1, 251,204,1,0,172,209,1,1,234,213,1,0,145,215,1,2,236,216,1,0,77,223,1,1,123,224,1,0,47,235,1,5,81,237,1,0,165,237,1,4,208,245,1,2,117,2,2,0,183,3,2,1,26,4,2,0,177,8,2,1,107,9,2,0,17,12,2,1,19,14,2,0,99,14,2,1,35,15,2,0,147,18,2,2,29,21,2,0,146,21,2,1, 66,22,2,0,207,25,2,1,66,33,2,0,236,38,2,1,108,40,2,0,216,43,2,1,56,47,2,0,198,47,2,5,89,49,2,0,115,50,2,2,85,53,2,0,231,54,2,1,217,57,2,0,11,58,2,1,173,58,2,0,49,66,2,1,230,77,2,0,160,81,2,4,61,84,2,0,212,89,2,1,178,91,2,0,83,93,2,1,129,94,2,0,202,96, 2,1,220,100,2,0,252,100,2,2,186,101,2,0,40,102,2,1,178,106,2,0,63,117,2,3,66,119,2,0,160,119,2,3,166,121,2,0,27,127,2,1,107,127,2,0,6,137,2,2,121,141,2,0,201,144,2,1,115,146,2,0,96,148,2,1,22,152,2,0,119,164,2,1,235,165,2,0,99,166,2,2,255,167,2,0,143, 168,2,3,167,169,2,0,74,174,2,4,217,175,2,0,108,186,2,1,250,187,2,0,65,188,2,1,116,189,2,0,174,194,2,2,244,195,2,0,178,201,2,2,103,210,2,0,207,214,2,1,106,215,2,0,245,227,2,2,35,230,2,0,46,235,2,1,211,236,2,0,179,252,2,4,82,255,2,0,63,6,3,5,203,18,3,0, 196,19,3,1,74,25,3,0,32,27,3,1,109,29,3,0,28,39,3,1,111,42,3,0,2,51,3,3,133,53,3,0,230,53,3,3,99,55,3,0,11,65,3,1,1,68,3,0,63,75,3,1,222,77,3,0,3,104,3,1,229,105,3,0,217,114,3,4,135,116,3,3,84,132,3,0,149,139,3,1,44,141,3,0,55,145,3,1,198,145,3,0,59, 158,3,5,126,160,3,3,146,162,3,0,20,174,3,1,132,174,3,0,218,186,3,2,6,196,3,0,16,207,3,3,141,209,3,0,115,212,3,3,170,214,3,0,32,219,3,1,3,0,0,0,12,0,52,1,220,4,0,0,0,0,0,0,145,15,0,2,214,20,0,0,214,24,0,1,254,27,0,0,36,29,0,2,133,30,0,0,148,40,0,2,245, 41,0,0,203,47,0,3,189,49,0,4,133,51,0,0,35,64,0,2,202,67,0,0,180,71,0,1,123,73,0,5,30,77,0,2,179,79,0,0,128,86,0,3,82,89,0,0,36,91,0,3,191,93,0,0,167,115,0,2,255,120,0,0,227,138,0,1,70,142,0,0,166,143,0,3,122,150,0,0,74,151,0,1,216,153,0,0,69,157,0,1, 98,158,0,0,36,161,0,1,148,171,0,0,215,175,0,1,102,176,0,0,58,190,0,1,199,190,0,2,219,192,0,3,8,194,0,0,197,194,0,1,175,197,0,0,206,197,0,4,151,199,0,0,0,200,0,1,0,202,0,0,183,204,0,1,79,205,0,0,131,225,0,1,8,226,0,0,90,230,0,2,228,230,0,0,30,248,0,2, 38,249,0,1,218,252,0,0,237,1,1,2,12,3,1,0,194,12,1,2,94,18,1,0,206,18,1,2,254,35,1,1,150,36,1,0,174,40,1,1,75,43,1,0,218,50,1,1,213,52,1,0,223,52,1,2,170,53,1,0,201,53,1,1,154,55,1,0,255,58,1,1,95,60,1,0,51,68,1,1,65,69,1,0,126,85,1,2,213,86,1,0,50,87, 1,2,74,88,1,0,131,93,1,2,164,94,1,0,93,96,1,2,48,97,1,0,63,98,1,2,60,99,1,0,150,100,1,5,168,104,1,2,215,106,1,3,99,113,1,0,88,114,1,2,107,116,1,0,128,116,1,1,38,121,1,0,179,133,1,3,194,135,1,4,145,137,1,0,178,151,1,2,53,156,1,0,45,166,1,2,161,167,1,0, 109,170,1,2,224,170,1,0,116,175,1,2,13,176,1,0,254,178,1,2,121,179,1,0,109,181,1,1,223,181,1,0,139,186,1,2,14,187,1,0,131,190,1,2,246,190,1,0,216,192,1,2,83,193,1,0,7,206,1,5,74,208,1,3,94,210,1,0,211,221,1,1,67,222,1,0,105,234,1,2,238,243,1,0,199,253, 1,3,68,0,2,0,19,3,2,3,81,5,2,0,9,8,2,1,31,11,2,0,24,26,2,2,93,31,2,1,57,32,2,0,88,34,2,1,195,40,2,0,223,54,2,3,181,56,2,0,20,57,2,1,27,60,2,4,220,61,2,0,97,75,2,2,219,78,2,0,171,129,2,3,68,181,2,0,210,182,2,1,17,184,2,0,129,188,2,1,219,201,2,0,80,207, 2,1,188,209,2,0,204,210,2,1,111,218,2,0,250,224,2,1,198,225,2,0,74,18,3,1,65,20,3,0,196,51,3,1,229,60,3,0,239,62,3,1,244,63,3,0,1,68,3,2,9,77,3,0,168,88,3,1,96,89,3,0,171,98,3,1,50,102,3,0,85,102,3,1,250,103,3,0,202,118,3,1,42,125,3,0,7,129,3,1,41,133, 3,0,170,134,3,1,51,135,3,0,86,154,3,1,175,160,3,0,144,161,3,5,75,163,3,0,152,167,3,1,32,171,3,0,250,174,3,1,58,181,3,0,83,244,3,1,155,3,4,0,80,4,4,1,247,4,4,0,204,5,4,1,115,6,4,0,192,7,4,1,80,8,4,0,187,8,4,1,143,9,4,0,66,11,4,1,53,12,4,0,133,13,4,2,129, 14,4,0,35,18,4,1,78,19,4,0,75,24,4,2,209,24,4,0,204,31,4,2,158,32,4,0,63,36,4,2,197,36,4,0,20,42,4,2,16,43,4,0,194,44,4,1,139,45,4,0,62,46,4,1,21,47,4,0,166,52,4,1,85,53,4,0,42,54,4,1,209,54,4,0,145,55,4,1,64,56,4,0,108,58,4,2,87,59,4,0,47,64,4,1,72, 65,4,0,171,66,4,1,85,67,4,0,200,68,4,1,114,69,4,0,78,71,4,1,204,72,4,0,168,76,4,1,94,77,4,0,112,88,4,2,24,89,4,0,170,92,4,2,82,93,4,0,228,93,4,1,144,94,4,0,155,95,4,1,58,96,4,0,219,101,4,1,255,102,4,0,123,105,4,2,28,106,4,0,226,108,4,2,131,109,4,0,101, 111,4,2,6,112,4,0,201,113,4,2,106,114,4,0,41,116,4,2,202,116,4,0,222,118,4,2,127,119,4,0,16,121,4,2,177,121,4,0,151,123,4,1,49,124,4,0,51,125,4,1,192,125,4,0,158,126,4,1,35,127,4,0,255,127,4,1,140,128,4,0,111,129,4,1,244,129,4,0,174,130,4,1,51,131,4, 0,226,131,4,1,103,132,4,0,64,133,4,1,197,133,4,0,209,136,4,2,164,137,4,0,1,145,4,2,212,145,4,0,18,148,4,1,207,148,4,0,190,150,4,1,90,151,4,0,177,152,4,2,17,153,4,0,48,154,4,1,154,154,4,0,115,155,4,1,230,155,4,0,197,156,4,1,56,157,4,0,137,162,4,2,127, 163,4,0,182,163,4,1,125,165,4,0,95,169,4,2,207,169,4,0,147,180,4,1,53,185,4,0,4,186,4,1,156,186,4,2,170,187,4,0,189,188,4,1,96,189,4,2,68,190,4,0,4,194,4,1,1,195,4,2,12,196,4,0,85,196,4,1,99,197,4,0,42,207,4,2,245,207,4,0,73,215,4,2,27,216,4,0,88,225, 4,1,187,225,4,0,80,230,4,1,141,230,4,0,207,230,4,6,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,152,168,246,255,255,255,255,255,230,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76, 0,0,0,78,169,246,255,255,255,255,255,131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,161,169,246,255,255,255,255,255,227,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,84, 171,246,255,255,255,255,255,120,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,156,171,246,255,255,255,255,255,123,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,231,172,246, 255,255,255,255,255,129,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,56,173,246,255,255,255,255,255,73,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,81,173,246,255,255,255, 255,255,184,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,217,173,246,255,255,255,255,255,66,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,204,1,0,0,235,174,246,255,255,255,255,255, 230,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,161,175,246,255,255,255,255,255,137,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,250,175,246,255,255,255,255,255,227,1,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,173,177,246,255,255,255,255,255,120,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,245,177,246,255,255,255,255,255,123,1,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,64,179,246,255,255,255,255,255,198,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,214,179,246,255,255,255,255,255,184,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,94,180,246,255,255,255,255,255,66,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,76,3,0,0,112,181,246,255,255,255,255,255,230,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,38,182,246,255,255,255,255,255,131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,121,182,246,255,255,255,255,255,227,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,44,184,246,255,255,255,255,255,120,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,116,184,246,255,255,255,255,255,123,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,191,185,246,255,255,255,255,255,198,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,85,186,246,255,255,255,255,255,184,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,221,186,246,255,255,255,255,255,66,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,204,4,0,0,239,187,246,255,255,255,255,255,230,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,252,4,0,0,165,188,246,255,255,255,255,255,169,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,30,189,246,255,255,255,255,255,153,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,92,5,0,0,135,192,246,255,255,255,255,255,151,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,238,192,246,255,255,255,255,255,157,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,188,5,0,0,91,194,246,255,255,255,255,255,198,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,5,0,0,241,194,246,255,255,255,255,255,184,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,6, 0,0,121,195,246,255,255,255,255,255,66,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,76,6,0,0,139,196,246,255,255,255,255,255,230,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,6,0,0,65, 197,246,255,255,255,255,255,169,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,6,0,0,186,197,246,255,255,255,255,255,105,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,6,0,0,243,200,246, 255,255,255,255,255,156,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,7,0,0,95,201,246,255,255,255,255,255,227,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,7,0,0,18,204,246,255,255,255, 255,255,198,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,7,0,0,168,204,246,255,255,255,255,255,184,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,7,0,0,48,205,246,255,255,255,255,255, 66,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,204,7,0,0,66,206,246,255,255,255,255,255,230,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,7,0,0,248,206,246,255,255,255,255,255,173,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,8,0,0,117,207,246,255,255,255,255,255,137,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,8,0,0,206,210,246,255,255,255,255,255,160,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,8,0,0,62,211,246,255,255,255,255,255,3,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,8,0,0,17,214,246,255,255,255,255,255,198,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,8,0,0,167,214,246,255,255,255,255,255,184,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,9,0,0,47,215,246,255,255,255,255,255,66,1,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,76,9,0,0,65,216,246,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,29,216,246,255, 255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,50,216,246,255,255,255,255,255,76,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,78,216,246,255,255,255,255, 255,42,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,72,217,246,255,255,255,255,255,208,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,232,217,246,255,255,255,255,255,84,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,12,218,246,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,241,217,246,255,255,255,255,255,61,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,254,217,246,255,255,255,255,255,48,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,254,217,246,255,255,255,255,255,55,1,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,204,1,0,0,5,219,246,255,255,255,255,255,138,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,95,219,246,255,255,255,255,255,93,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,140,220,246,255,255,255,255,255,208,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,44,221,246,255,255,255,255,255,84,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,80,221,246,255,255,255,255,255,147,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,179,221,246,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,152,221,246,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,131,221,246,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,52,0,0,0,76,3,0,0,110,221,246,255,255,255,255,255,253,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,132,3,0,0,51,222,246,255,255,255,255,255,94,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,180,3,0,0,97,222,246,255,255,255,255,255,250,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,3,0,0,43,223,246,255,255,255,255,255,208,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,20,4,0,0,203,223,246,255,255,255,255,255,102,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,4,0,0,1,224,246,255,255,255,255,255,10,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52, 0,0,0,116,4,0,0,219,223,246,255,255,255,255,255,207,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,172,4,0,0,114,224,246,255,255,255,255,255,123,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,220,4,0,0,189,224,246,255,255,255,255,255,67,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,5,0,0,208,226,246,255,255,255,255,255,208,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,60,5,0,0,112,227,246,255,255,255,255,255,102,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,5,0,0,166,227,246,255,255,255,255,255,10,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0, 0,156,5,0,0,128,227,246,255,255,255,255,255,207,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,212,5,0,0,23,228,246,255,255,255,255,255,153,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,44,0,0,0,4,6,0,0,128,228,246,255,255,255,255,255,26,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,6,0,0,106,231,246,255,255,255,255,255,90,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,100,6,0,0,148,232,246,255,255,255,255,255,29,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,6,0,0,129,232,246,255,255,255,255,255,135,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196, 6,0,0,216,232,246,255,255,255,255,255,248,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,244,6,0,0,160,233,246,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,7,0,0, 181,233,246,255,255,255,255,255,20,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,7,0,0,153,234,246,255,255,255,255,255,74,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,7,0,0,179,235,246, 255,255,255,255,255,148,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,180,7,0,0,23,236,246,255,255,255,255,255,193,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,7,0,0,168,236,246,255,255, 255,255,255,12,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,8,0,0,132,237,246,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,8,0,0,146,237,246,255,255,255,255,255, 131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,116,8,0,0,229,237,246,255,255,255,255,255,252,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,8,0,0,177,238,246,255,255,255,255,255,26,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,8,0,0,155,238,246,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,9,0,0,169,238,246,255,255,255,255,255,156,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,52,9,0,0,21,239,246,255,255,255,255,255,91,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,9,0,0,64,241,246,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,9,0,0,42,241,246,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,9,0,0,56,241,246,255,255,255,255,255,156,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,244,9,0,0,164,241,246,255,255,255,255,255,225,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,10,0,0,85,242,246,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,10,0,0,63,242,246,255,255,255,255,255,75,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,10,0,0,90,242,246,255,255,255,255,255,156,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,4,5,0,0,0,131,3,44,0,0,0,180,10,0,0,198,242,246,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,182,242,246,255,255,255,255, 255,88,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,222,242,246,255,255,255,255,255,180,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,98,243,246,255,255,255,255,255,105,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,155,243,246,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,132,243,246,255,255,255,255,255,71,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,155,243,246,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,176,243,246,255,255,255,255,255,150,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,108,1,0,0,22,244,246,255,255,255,255,255,190,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,164,245,246,255,255,255,255,255,29,2,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,145,247,246,255,255,255,255,255,132,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,229,247,246,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,230,247,246,255,255,255,255,255,222,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,148,248,246,255,255,255,255,255,150,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,250,248,246,255,255,255,255,255,174,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,120,249,246,255,255,255,255,255,188,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,4,252,246,255,255,255,255,255,160,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,116,252,246,255,255,255,255,255,108,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,44,0,0,0,76,3,0,0,176,254,246,255,255,255,255,255,149,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,21,255,246,255,255,255,255,255,200,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,172,3,0,0,173,255,246,255,255,255,255,255,189,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,220,3,0,0,58,0,247,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12, 4,0,0,80,0,247,255,255,255,255,255,60,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,92,0,247,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,125,0,247, 255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,113,0,247,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,90,0,247,255,255,255,255, 255,197,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,239,0,247,255,255,255,255,255,92,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,27,1,247,255,255,255,255,255,152,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,131,1,247,255,255,255,255,255,211,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,38,2,247,255,255,255,255,255,160,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,150,2,247,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,5,0,0,159,2,247,255,255,255,255,255,162,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,28,6,0,0,17,3,247,255,255,255,255,255,39,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,76,6,0,0,8,5,247,255,255,255,255,255,187,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,6,0,0,147,6,247,255,255,255,255,255,84,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,172,6,0,0,183,7,247,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,220,6,0,0,179,7,247,255,255,255,255,255,73,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,12,7,0,0,204,7,247,255,255,255,255,255,177,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131, 4,140,3,0,0,0,0,0,0,44,0,0,0,68,7,0,0,69,8,247,255,255,255,255,255,1,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,7,0,0,22,9,247,255,255,255,255,255,89,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,164,7,0,0,63,9,247,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,7,0,0,67,9,247,255,255,255,255,255,53,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4, 8,0,0,72,9,247,255,255,255,255,255,54,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,8,0,0,78,10,247,255,255,255,255,255,136,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,8,0,0,166,10, 247,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,148,8,0,0,145,10,247,255,255,255,255,255,46,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,204,8,0, 0,135,11,247,255,255,255,255,255,41,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,104,11,247,255,255,255,255,255,18,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,76,0,0,0,74,12,247,255,255,255,255,255,234,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,4,13,247,255,255,255,255,255,43,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,52,0,0,0,172,0,0,0,255,12,247,255,255,255,255,255,190,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,228,0,0,0,133,13,247,255,255,255,255,255,251,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,20,1,0,0,80,14,247,255,255,255,255,255,95,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,1,0,0,127,14,247,255,255,255,255,255,35,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,116,1,0,0,114,15,247,255,255,255,255,255,105,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,1,0,0,171,15,247,255,255,255,255,255,211,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,212,1,0,0,78,16,247,255,255,255,255,255,43,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,4,2,0,0,73,16,247,255,255,255,255,255,173,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140, 3,0,0,0,0,0,0,44,0,0,0,60,2,0,0,190,16,247,255,255,255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,134,16,247,255,255,255,255,255,176,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,6,17,247,255,255,255,255,255,63,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,124,0,0,0,21,17,247,255,255,255,255,255,170,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,143,17,247,255,255,255,255,255,89,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,184,18,247,255,255,255,255,255,127,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,7,19,247,255,255,255,255,255,64,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,60,1,0,0,23,19,247,255,255,255,255,255,165,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,116,1,0,0,132,19,247,255,255,255,255,255,116,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,1,0,0,200,19,247,255,255,255,255,255,252,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,1,0,0,148,20,247,255,255,255,255,255,225,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,2,0,0,69,21,247,255,255,255,255,255,83,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,52,2,0,0,104,22,247,255,255,255,255,255,158,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,100,2,0,0,214,22,247,255,255,255,255,255,127,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,148,2,0,0,37,23,247,255,255,255,255,255,140,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,2,0,0,129,25,247,255,255,255,255,255,21,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0, 0,131,3,44,0,0,0,244,2,0,0,102,26,247,255,255,255,255,255,148,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,36,3,0,0,202,26,247,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,151,26,247,255,255,255,255,255,113,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,216,26,247,255,255,255,255,255,110,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,22,27,247,255,255,255,255,255,117,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,91,27,247,255,255,255,255,255,117,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,160,27,247,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,194,27,247,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,228,27,247,255,255,255,255,255,142,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,66,29,247,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,56,29,247,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,46,29,247,255,255,255,255,255,21,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,252,1,0,0,19,30,247,255,255,255,255,255,90,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,61,30,247,255,255,255,255,255,63,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0, 92,2,0,0,76,30,247,255,255,255,255,255,131,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,159,31,247,255,255,255,255,255,155,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0, 10,32,247,255,255,255,255,255,93,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,55,32,247,255,255,255,255,255,63,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,70,32,247,255, 255,255,255,255,98,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,120,33,247,255,255,255,255,255,155,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,227,33,247,255,255,255,255, 255,117,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,40,34,247,255,255,255,255,255,171,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,163,36,247,255,255,255,255,255,217,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,76,37,247,255,255,255,255,255,128,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,156,37,247,255,255,255,255,255,26,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,110,37,247,255,255,255,255,255,195,15,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0, 1,53,247,255,255,255,255,255,142,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,95,54,247,255,255,255,255,255,142,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,189,55,247, 255,255,255,255,255,199,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,84,56,247,255,255,255,255,255,165,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1, 16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,177,56,247,255,255,255,255,255,93,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,222,57,247,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,124,0,0,0,255,57,247,255,255,255,255,255,80,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,172,0,0,0,31,66,247,255,255,255,255,255,99,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3, 44,0,0,0,220,0,0,0,82,74,247,255,255,255,255,255,133,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,167,82,247,255,255,255,255,255,6,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60, 1,0,0,125,85,247,255,255,255,255,255,196,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,17,87,247,255,255,255,255,255,183,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,152, 87,247,255,255,255,255,255,55,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,159,87,247,255,255,255,255,255,132,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,243,87,247,255, 255,255,255,255,43,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,238,87,247,255,255,255,255,255,58,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,248,87,247,255,255,255,255, 255,208,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,128,88,247,255,255,255,255,255,172,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0, 131,3,44,0,0,0,76,0,0,0,252,88,247,255,255,255,255,255,192,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,140,89,247,255,255,255,255,255,49,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,172,0,0,0,141,90,247,255,255,255,255,255,127,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,220,90,247,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1, 0,0,199,90,247,255,255,255,255,255,4,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,60,1,0,0,155,91,247,255,255,255,255,255,172,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,108,1,0,0,23, 92,247,255,255,255,255,255,188,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,163,92,247,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,142,92,247,255, 255,255,255,255,241,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,79,93,247,255,255,255,255,255,127,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,158,93,247,255,255,255,255, 255,4,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,92,2,0,0,114,94,247,255,255,255,255,255,249,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,140,2,0,0,59,95,247,255,255,255,255,255,193, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,204,95,247,255,255,255,255,255,85,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,236,2,0,0,241,96,247,255,255,255,255,255,51,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,244,96,247,255,255,255,255,255,51,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,247,96,247,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,243,96,247,255,255,255,255,255,72,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,11,98,247,255,255,255,255,255,136,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,99,98,247,255,255,255,255,255,65,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,12,4,0,0,116,99,247,255,255,255,255,255,134,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,202,99,247,255,255,255,255,255,89,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,243,100,247,255,255,255,255,255,143,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,82,102,247,255,255,255,255,255,88,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,122,102,247,255,255,255,255,255,92,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,44,0,0,0,252,4,0,0,166,102,247,255,255,255,255,255,32,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,44,5,0,0,150,103,247,255,255,255,255,255,112,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,92,5,0,0,214,103,247,255,255,255,255,255,217,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,127,104,247,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,188,5,0,0,185,104,247,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,5,0,0,218,104,247,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,6,0, 0,195,104,247,255,255,255,255,255,246,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,6,0,0,137,105,247,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,6,0,0,195,105, 247,255,255,255,255,255,235,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,6,0,0,126,106,247,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,6,0,0,184,106,247,255, 255,255,255,255,22,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,7,0,0,158,106,247,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,7,0,0,135,106,247,255,255,255,255, 255,4,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,108,7,0,0,91,107,247,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,7,0,0,149,107,247,255,255,255,255,255,201, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,7,0,0,46,108,247,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,7,0,0,104,108,247,255,255,255,255,255,22,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,8,0,0,78,108,247,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,8,0,0,55,108,247,255,255,255,255,255,4,1,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,140,8,0,0,11,109,247,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,8,0,0,69,109,247,255,255,255,255,255,201,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,8,0,0,222,109,247,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,9,0,0,24,110,247,255,255,255,255,255,22,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,9,0,0,254,109,247,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,9,0,0,231,109,247,255,255,255,255,255,4,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,4,5,0,0,0,131,3,44,0,0,0,172,9,0,0,187,110,247,255,255,255,255,255,220,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,9,0,0,103,111,247,255,255,255,255,255,206,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,12,10,0,0,5,113,247,255,255,255,255,255,166,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,10,0,0,123,113,247,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,108,10,0,0,111,113,247,255,255,255,255,255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,10,0,0,103,113,247,255,255,255,255,255,18,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3, 44,0,0,0,204,10,0,0,73,114,247,255,255,255,255,255,220,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,10,0,0,245,114,247,255,255,255,255,255,132,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,44,11,0,0,73,116,247,255,255,255,255,255,166,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,11,0,0,191,116,247,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140, 11,0,0,179,116,247,255,255,255,255,255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,11,0,0,171,116,247,255,255,255,255,255,18,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,236,11,0, 0,141,117,247,255,255,255,255,255,220,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,12,0,0,57,118,247,255,255,255,255,255,132,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,12,0,0,141,119, 247,255,255,255,255,255,166,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,12,0,0,3,120,247,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,12,0,0,247,119,247,255, 255,255,255,255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,12,0,0,239,119,247,255,255,255,255,255,18,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,12,13,0,0,209,120,247,255,255,255, 255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,198,120,247,255,255,255,255,255,171,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,76,0,0,0,65,121,247,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,61,121,247,255,255,255,255,255,152,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,172,0,0,0,165,121,247,255,255,255,255,255,121,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,238,121,247,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,12, 1,0,0,251,121,247,255,255,255,255,255,199,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,68,1,0,0,138,122,247,255,255,255,255,255,85,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,116,1,0,0,175,122,247,255,255,255,255,255,141,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,1,0,0,12,123,247,255,255,255,255,255,155,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212, 1,0,0,119,124,247,255,255,255,255,255,187,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,2,0,0,2,125,247,255,255,255,255,255,208,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,2,0,0,162,125, 247,255,255,255,255,255,250,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,100,2,0,0,108,126,247,255,255,255,255,255,175,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,2,0,0,235,126,247, 255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,2,0,0,37,127,247,255,255,255,255,255,103,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,2,0,0,92,128,247,255,255, 255,255,255,192,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,3,0,0,236,128,247,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,84,3,0,0,249,128,247,255,255,255,255,255, 167,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,140,3,0,0,104,129,247,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,137,129,247,255,255, 255,255,255,189,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,3,0,0,22,130,247,255,255,255,255,255,187,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,4,0,0,161,130,247,255,255,255,255, 255,138,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,4,0,0,251,130,247,255,255,255,255,255,198,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,124,4,0,0,145,131,247,255,255,255,255,255,26, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,99,131,247,255,255,255,255,255,130,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,76,0,0,0,181,131,247,255,255,255,255,255,174,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,51,132,247,255,255,255,255,255,85,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0, 0,0,88,132,247,255,255,255,255,255,156,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,220,0,0,0,196,132,247,255,255,255,255,255,20,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,168, 133,247,255,255,255,255,255,142,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,6,134,247,255,255,255,255,255,151,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,109,134,247,255, 255,255,255,255,41,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,102,134,247,255,255,255,255,255,41,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,95,134,247,255,255,255,255, 255,66,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,113,134,247,255,255,255,255,255,51,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,116,135,247,255,255,255,255,255,78,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,146,135,247,255,255,255,255,255,170,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,12,136,247,255,255,255,255,255,66,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,30,136,247,255,255,255,255,255,60,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,42,137,247,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,72,137,247,255,255,255,255,255,165,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,189,137,247,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,210,137,247,255,255,255,255,255,177,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,83,138,247,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,113,138,247,255,255,255,255,255,140,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,205,138,247,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,226,138,247,255,255,255,255,255,210,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,132,139,247,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,156,4,0,0,162,139,247,255,255,255,255,255,140,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,254,139,247,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,252,4,0,0,19,140,247,255,255,255,255,255,189,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,160,140,247,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,92,5,0,0,190,140,247,255,255,255,255,255,140,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,26,141,247,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0, 0,47,141,247,255,255,255,255,255,193,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,5,0,0,192,141,247,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,6,0,0,222,141, 247,255,255,255,255,255,140,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,6,0,0,58,142,247,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,6,0,0,79,142,247,255,255, 255,255,255,221,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,6,0,0,252,142,247,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,6,0,0,26,143,247,255,255,255,255, 255,140,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,7,0,0,118,143,247,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,7,0,0,139,143,247,255,255,255,255,255,193,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,7,0,0,28,144,247,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,7,0,0,58,144,247,255,255,255,255,255,140,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,7,0,0,150,144,247,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,7,0,0,171,144,247,255,255,255,255,255,221,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,8,0,0,88,145,247,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,8,0,0,118,145,247,255,255,255,255,255,140,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,8,0,0,210,145,247,255,255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,8,0,0,2,146,247,255,255,255,255,255,186,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,8,0,0,140,146,247,255,255,255,255,255,99,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,9,0,0,191,146,247,255,255,255,255,255,148,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,4,5,0,0,0,131,3,44,0,0,0,76,9,0,0,35,147,247,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,9,0,0,44,147,247,255,255,255,255,255,116,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,172,9,0,0,112,147,247,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,9,0,0,142,147,247,255,255,255,255,255,141,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131, 3,44,0,0,0,12,10,0,0,235,147,247,255,255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,10,0,0,27,148,247,255,255,255,255,255,241,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,108,10,0,0,220,148,247,255,255,255,255,255,99,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,10,0,0,15,149,247,255,255,255,255,255,148,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,204, 10,0,0,115,149,247,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,10,0,0,124,149,247,255,255,255,255,255,156,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,11,0,0, 232,149,247,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,11,0,0,6,150,247,255,255,255,255,255,141,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,140,11,0,0,99,150, 247,255,255,255,255,255,210,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,237,150,247,255,255,255,255,255,211,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,144,151,247,255,255,255,255,255,67,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,163,151,247,255,255,255,255,255,50,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,165,151,247,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,138,151,247,255,255,255,255,255,109,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,12,1,0,0,199,151,247,255,255,255,255,255,186,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,60,1,0,0,81,152,247,255,255,255,255,255,54,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,108,1,0,0,87,152,247,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,83,152,247,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204, 1,0,0,62,152,247,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,41,152,247,255,255,255,255,255,77,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,44,2,0,0,70,152, 247,255,255,255,255,255,125,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,3,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,100,2,0,0,139,152,247,255,255,255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0, 0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,83,152,247,255,255,255,255,255,129,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,164,152,247,255,255,255,255,255,28,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,144,153,247,255,255,255,255,255,118,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,214,153,247,255,255,255,255,255,29,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,195,153,247,255,255,255,255,255,198,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,12,1,0,0,89,154,247,255,255,255,255,255,66,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,107,154,247,255,255,255,255,255,200,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,3,156,247,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,44,0,0,0,156,1,0,0,33,156,247,255,255,255,255,255,183,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,168,156,247,255,255,255,255,255,144,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,252,1,0,0,8,157,247,255,255,255,255,255,129,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,89,157,247,255,255,255,255,255,57,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2, 0,0,98,159,247,255,255,255,255,255,118,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,168,159,247,255,255,255,255,255,45,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,165, 159,247,255,255,255,255,255,203,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,236,2,0,0,64,160,247,255,255,255,255,255,239,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,28,3,0,0,255,160, 247,255,255,255,255,255,76,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,27,161,247,255,255,255,255,255,13,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,248,164,247,255,255, 255,255,255,167,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,111,165,247,255,255,255,255,255,213,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,220,3,0,0,20,166,247,255,255,255,255, 255,85,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,57,166,247,255,255,255,255,255,150,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,159,166,247,255,255,255,255,255,74,0,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,185,166,247,255,255,255,255,255,111,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,248,166,247,255,255,255,255,255,31,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,207,166,247,255,255,255,255,255,131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0, 0,34,167,247,255,255,255,255,255,176,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,162,167,247,255,255,255,255,255,187,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,45,168, 247,255,255,255,255,255,128,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,125,169,247,255,255,255,255,255,131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,208,169,247,255, 255,255,255,255,220,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,124,170,247,255,255,255,255,255,244,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,64,172,247,255,255,255, 255,255,236,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,252,172,247,255,255,255,255,255,247,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8, 144,1,0,0,44,0,0,0,28,0,0,0,171,173,247,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,205,173,247,255,255,255,255,255,63,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,124,0,0,0,220,173,247,255,255,255,255,255,121,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,37,174,247,255,255,255,255,255,125,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,220,0,0,0,114,182,247,255,255,255,255,255,14,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,80,183,247,255,255,255,255,255,14,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0, 46,184,247,255,255,255,255,255,192,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,190,188,247,255,255,255,255,255,192,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,78,193, 247,255,255,255,255,255,112,6,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,204,1,0,0,142,199,247,255,255,255,255,255,179,9,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,17,209,247,255, 255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,7,209,247,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,5,209,247,255,255,255,255,255, 44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,1,209,247,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,255,208,247,255,255,255,255,255,80,2,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,31,211,247,255,255,255,255,255,78,5,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,61,216,247,255,255,255,255,255,78,5,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,91,221,247,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,105,221,247,255,255,255,255,255,33,12,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,172,3,0,0,90,233,247,255,255,255,255,255,31,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,220,3,0,0,73,241,247,255,255,255,255,255,72,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,97,241,247,255,255,255,255,255,180,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,60,4,0,0,229,241,247,255,255,255,255,255,19,9,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,108,4,0,0,200,250,247,255,255,255,255,255,62,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,214,252,247,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,196,252,247,255,255,255,255,255,119,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,11,1,248,255,255,255,255,255,66,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,44,0,0,0,44,5,0,0,29,1,248,255,255,255,255,255,90,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,71,1,248,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140, 5,0,0,75,1,248,255,255,255,255,255,160,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,187,3,248,255,255,255,255,255,235,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,236,5,0,0,118, 4,248,255,255,255,255,255,176,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,6,0,0,246,4,248,255,255,255,255,255,4,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,76,6,0,0,202,5,248,255,255, 255,255,255,93,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,132,6,0,0,239,6,248,255,255,255,255,255,220,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,180,6,0,0,155,15, 248,255,255,255,255,255,59,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,6,0,0,166,17,248,255,255,255,255,255,218,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,7,0,0,80,19,248,255,255, 255,255,255,66,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,7,0,0,98,19,248,255,255,255,255,255,90,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,7,0,0,140,19,248,255,255,255,255,255, 67,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,164,7,0,0,159,22,248,255,255,255,255,255,251,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,212,7,0,0,106,23,248,255,255,255,255,255,176,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,8,0,0,234,23,248,255,255,255,255,255,247,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,52,8,0,0,177,24,248,255,255,255,255,255,91,1,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,108,8,0,0,212,25,248,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0, 0,44,0,0,0,28,0,0,0,161,25,248,255,255,255,255,255,74,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,187,25,248,255,255,255,255,255,184,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0, 124,0,0,0,67,26,248,255,255,255,255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,106,26,248,255,255,255,255,255,127,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0, 185,26,248,255,255,255,255,255,239,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,120,28,248,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,150,28,248, 255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,151,28,248,255,255,255,255,255,152,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,255,28,248,255,255,255, 255,255,190,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,141,29,248,255,255,255,255,255,162,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,255,29,248,255,255,255,255,255, 14,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,221,29,248,255,255,255,255,255,46,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,92,2,0,0,219,30,248,255,255,255,255,255,15,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,186,30,248,255,255,255,255,255,23,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,161,32,248,255,255,255,255,255,225,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,82,33,248,255,255,255,255,255,73,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,107,33,248,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,111,33,248,255,255,255,255,255,160,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,223,33,248,255,255,255,255,255,196,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,115,35,248,255,255,255,255,255,113,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,180,36,248,255,255,255,255,255,34,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,166,36,248,255,255,255,255,255,140,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,2,37,248,255,255,255,255,255,74,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,108,4,0,0,28,37,248,255,255,255,255,255,66,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,46,37,248,255,255,255,255,255,98,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204, 4,0,0,96,37,248,255,255,255,255,255,12,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,60,37,248,255,255,255,255,255,149,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,161,37, 248,255,255,255,255,255,30,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,92,5,0,0,143,38,248,255,255,255,255,255,34,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,9,0,0,0,131,5,140,4,141,3,0,0,0,0,44,0,0,0,148,5, 0,0,121,40,248,255,255,255,255,255,84,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,196,5,0,0,157,40,248,255,255,255,255,255,43,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,14,0,0,0,131,6,140,5,141,4,142,3,0,0, 52,0,0,0,252,5,0,0,144,48,248,255,255,255,255,255,165,12,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,10,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,52,6,0,0,253,60,248,255,255,255,255,255,124,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,100,6,0,0,73,61,248,255,255,255,255,255,132,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,6,0,0,157,61,248,255,255,255,255,255,66,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,196,6,0,0,175,61,248,255,255,255,255,255,99,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,244,6,0,0,226,61,248,255,255,255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0, 0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,170,61,248,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,147,61,248,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,124,61,248,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,112,61,248,255,255,255,255,255,228,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,36,62,248,255,255,255,255,255,228,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,216,62,248,255,255,255,255,255,127,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,39,63,248,255,255,255,255,255,207,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,198,63,248,255,255,255,255,255,27,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,156,1,0,0,177,64,248,255,255,255,255,255,186,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,204,1,0,0,59,65,248,255,255,255,255,255,227,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,252,1,0,0,238,65,248,255,255,255,255,255,209,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,143,66,248,255,255,255,255,255,14,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92, 2,0,0,109,66,248,255,255,255,255,255,228,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,33,67,248,255,255,255,255,255,2,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,188,2,0,0,243, 68,248,255,255,255,255,255,80,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,19,69,248,255,255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,28,3,0,0,67,69,248,255, 255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,76,3,0,0,115,69,248,255,255,255,255,255,243,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,54,70,248,255,255,255,255, 255,149,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,155,71,248,255,255,255,255,255,232,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,220,3,0,0,83,72,248,255,255,255,255,255,209,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,52,0,0,0,20,4,0,0,236,72,248,255,255,255,255,255,185,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,76,4,0,0,109,74, 248,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,4,0,0,99,74,248,255,255,255,255,255,79,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,4,0,0,130,74,248,255,255, 255,255,255,176,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,220,4,0,0,2,75,248,255,255,255,255,255,144,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,5,0,0,98,75,248,255,255,255,255,255, 225,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,5,0,0,19,76,248,255,255,255,255,255,120,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,5,0,0,91,76,248,255,255,255,255,255,85,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,5,0,0,128,76,248,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,5,0,0,111,76,248,255,255,255,255,255,92,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,5,0,0,155,76,248,255,255,255,255,255,110,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,6,0,0,217,76,248,255,255,255,255,255,102,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,6,0,0,15,77,248,255,255,255,255,255,115,7,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,140,6,0,0,82,84,248,255,255,255,255,255,189,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,6,0,0,223,84,248,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,6,0,0,219,84,248,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,28,7,0,0,223,84,248,255,255,255,255,255,228,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,7,0,0,147,85,248,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,101,85,248,255,255,255,255,255,154,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,207,85,248,255,255,255,255,255,199,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,102,86,248,255,255,255,255,255,255,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,53,87,248,255,255,255,255,255,148,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,153,87,248,255,255,255,255,255,155,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,4,88,248,255,255,255,255,255,128,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,60,1,0,0,84,89,248,255,255,255,255,255,213,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,249,89,248,255,255,255,255,255,236,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,181,90,248,255,255,255,255,255,146,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,23,91,248,255,255,255,255,255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,15,91,248,255,255,255,255,255,241,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,208,91,248,255,255,255,255,255,96,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0, 131,3,44,0,0,0,92,2,0,0,0,95,248,255,255,255,255,255,142,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,140,2,0,0,94,95,248,255,255,255,255,255,147,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,12,0,0,0,131,5,140, 4,141,3,0,0,0,0,44,0,0,0,196,2,0,0,185,96,248,255,255,255,255,255,26,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,244,2,0,0,163,97,248,255,255,255,255,255,226,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0, 0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,44,3,0,0,77,100,248,255,255,255,255,255,146,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,3,0,0,175,101,248,255,255,255,255,255,242,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,4,8,0,0,0,131,3,44,0,0,0,140,3,0,0,113,104,248,255,255,255,255,255,50,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,115,104,248,255,255,255,255,255,162,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5, 0,0,0,131,3,44,0,0,0,236,3,0,0,229,104,248,255,255,255,255,255,68,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,4,0,0,249,104,248,255,255,255,255,255,66,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,76,4,0,0,11,106,248,255,255,255,255,255,153,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,4,0,0,116,109,248,255,255,255,255,255,101,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,172,4,0,0,169,111,248,255,255,255,255,255,181,11,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,220,4,0,0,46,123,248,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12, 5,0,0,44,123,248,255,255,255,255,255,74,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,5,0,0,70,125,248,255,255,255,255,255,93,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,5,0,0,115,125, 248,255,255,255,255,255,20,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,5,0,0,87,125,248,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,5,0,0,64,125,248,255,255, 255,255,255,17,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,5,0,0,33,125,248,255,255,255,255,255,14,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,6,0,0,255,124,248,255,255,255,255,255, 52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,6,0,0,3,125,248,255,255,255,255,255,101,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,140,6,0,0,56,125,248,255,255,255,255,255,157,2,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,11,0,0,0,131,6,140,5,141,4,142,3,0,0,44,0,0,0,196,6,0,0,157,127,248,255,255,255,255,255,18,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,6,0,0,127,127,248,255,255,255,255, 255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,7,0,0,166,127,248,255,255,255,255,255,97,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,7,0,0,215,127,248,255,255,255,255,255,97,0,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,7,0,0,8,128,248,255,255,255,255,255,33,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,7,0,0,249,127,248,255,255,255,255,255,35,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,7,0,0,236,127,248,255,255,255,255,255,178,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,8,0,0,110,128,248,255,255,255,255,255,76,0,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,8,0,0,138,128,248,255,255,255,255,255,75,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,8,0,0,165,128,248,255,255,255,255,255,150,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,8,0,0,11,129,248,255,255,255,255,255,73,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,8,0,0,36,131,248,255,255,255,255,255,239,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,4,9,0,0,227,131,248,255,255,255,255,255,239,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,52,9,0,0,162,132,248,255,255,255,255,255,161,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,100,9,0,0,19,134,248,255,255,255,255,255,46,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,148,9,0,0,17,135,248,255,255,255,255,255,137,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,196,9,0,0,106,135,248,255,255,255,255,255,117,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,9,0,0,175,135,248,255,255,255,255,255,117,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,44,0,0,0,36,10,0,0,244,135,248,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,10,0,0,248,135,248,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,132,10,0,0,252,135,248,255,255,255,255,255,110,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,10,0,0,58,136,248,255,255,255,255,255,95,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0, 0,228,10,0,0,105,138,248,255,255,255,255,255,179,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,20,11,0,0,236,139,248,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,68, 11,0,0,220,139,248,255,255,255,255,255,190,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,124,11,0,0,98,140,248,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,172,11,0,0,88,140,248,255,255,255,255,255,72,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,11,0,0,112,140,248,255,255,255,255,255,138,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,20,0, 0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,178,144,248,255,255,255,255,255,109,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,239,144,248,255,255,255,255,255,130,2,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,65,147,248,255,255,255,255,255,4,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,21,149,248,255,255,255,255,255,202,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,175,149,248,255,255,255,255,255,58,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,185,150,248,255,255,255,255,255,125,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,6,152,248,255,255,255,255,255,236,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,194,152,248,255,255,255,255,255,175,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,65,153,248,255,255,255,255,255,126,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,204,1,0,0,143,153,248,255,255,255,255,255,3,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0, 0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,4,2,0,0,90,155,248,255,255,255,255,255,94,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,52,2,0,0,136,155,248,255,255,255,255,255,6,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,108,2,0,0,86,157,248,255,255,255,255,255,186,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,2,0,0,224,157,248,255,255,255,255,255,165,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,2,0,0,85,158,248,255,255,255,255,255,147,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,2,0,0,184,158,248,255,255,255,255,255,50,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,3,0,0,186,158,248,255,255,255,255,255,50,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,3,0,0,188,158,248,255,255,255,255,255,253,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,3,0,0,137,159,248,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,146,159,248,255,255,255,255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,236,3,0,0,185,159,248,255,255,255,255,255,28,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,4,0,0,165,159,248,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,76,4,0,0,144,159,248,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,4,0,0,123,159,248,255,255,255,255,255,34,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,172,4,0,0,109,159,248,255,255,255,255,255,34,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,4,0,0,95,159,248,255,255,255,255,255,63,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,5,0, 0,110,159,248,255,255,255,255,255,85,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,5,0,0,147,159,248,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,5,0,0,151,159, 248,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,5,0,0,155,159,248,255,255,255,255,255,80,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,204,5,0,0,187,159,248,255, 255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,5,0,0,191,159,248,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,6,0,0,178,159,248,255,255,255,255, 255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,6,0,0,165,159,248,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,6,0,0,152,159,248,255,255,255,255,255,52,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,6,0,0,156,159,248,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,6,0,0,160,159,248,255,255,255,255,255,57,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,7,0,0,169,159,248,255,255,255,255,255,55,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,7,0,0,176,159,248,255,255,255,255,255,41,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,7,0,0,169,159,248,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,7,0,0,151,159,248,255,255,255,255,255,76,7,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,7,0,0,179,166,248,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,8,0,0,169,166,248,255,255,255,255,255,109,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,60,8,0,0,230,166,248,255,255,255,255,255,115,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,9,171, 248,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,248,170,248,255,255,255,255,255,45,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,245,170,248,255,255, 255,255,255,119,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,60,171,248,255,255,255,255,255,93,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,105,171,248,255,255,255,255, 255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,97,171,248,255,255,255,255,255,28,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,77,171,248,255,255,255,255,255,23,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,52,171,248,255,255,255,255,255,23,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,27,171,248,255,255,255,255,255,103,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,82,171,248,255,255,255,255,255,86,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,120,171,248,255,255,255,255,255,63,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,135,171,248,255,255,255,255,255,126,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,213,171,248,255,255,255,255,255,34,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,199,171,248,255,255,255,255,255,34,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,185,171,248,255,255,255,255,255,170,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,236,2,0,0,51,173,248,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,49,173,248,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,39,173,248,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,37,173,248,255,255,255,255,255,219,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,172,3,0,0,208,173,248,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,230,173,248,255,255,255,255,255,74,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,12,4,0,0,0,174,248,255,255,255,255,255,182,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,60,4,0,0,134,177,248,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4, 0,0,122,177,248,255,255,255,255,255,182,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,0,178,248,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,252,177, 248,255,255,255,255,255,215,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,163,182,248,255,255,255,255,255,51,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,166,183,248,255, 255,255,255,255,153,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,15,187,248,255,255,255,255,255,52,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,19,188,248,255,255,255,255, 255,50,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,21,188,248,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,5,0,0,55,188,248,255,255,255,255,255,116,1, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,28,6,0,0,123,189,248,255,255,255,255,255,120,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,76,6,0,0,195,189,248,255,255,255,255,255,156,1,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,10,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,132,6,0,0,39,191,248,255,255,255,255,255,144,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,180,6,0,0,135,191,248,255,255,255,255,255, 24,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,13,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,236,6,0,0,103,192,248,255,255,255,255,255,131,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,7,0,0,186,193,248,255, 255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,7,0,0,194,193,248,255,255,255,255,255,180,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,7,0,0,70,194,248,255,255,255,255, 255,74,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,7,0,0,96,194,248,255,255,255,255,255,65,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,7,0,0,113,194,248,255,255,255,255,255,78,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,8,0,0,143,194,248,255,255,255,255,255,91,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,60,8,0,0,186,195,248,255,255,255,255,255,212,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,14,0,0,0,131,6,140,5,141,4,142,3,0,0,52,0,0,0,116,8,0,0,86,196,248,255,255,255,255,255,187,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,14,0,0,0,131,6,140,5,141,4,142,3,0,0,44,0,0,0,172,8,0,0,217,196, 248,255,255,255,255,255,165,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,8,0,0,78,197,248,255,255,255,255,255,209,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,9,0,0,239,197,248,255, 255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,9,0,0,31,198,248,255,255,255,255,255,26,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,9,0,0,9,199,248,255,255,255,255, 255,118,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,9,0,0,79,199,248,255,255,255,255,255,205,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,9,0,0,236,199,248,255,255,255,255,255,32, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,9,0,0,220,199,248,255,255,255,255,255,197,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,10,0,0,113,200,248,255,255,255,255,255,75,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,10,0,0,140,200,248,255,255,255,255,255,10,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,10,0,0,102,200,248,255,255,255,255,255,23,1,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,10,0,0,77,201,248,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,10,0,0,85,201,248,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,11,0,0,93,201,248,255,255,255,255,255,198,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,11,0,0,243,201,248,255,255,255,255,255,187,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,11,0,0,126,204,248,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,11,0,0,108,204,248,255,255,255,255,255,179,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,220,11,0,0,239,204,248,255,255,255,255,255,219,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,12,12,0,0,154,205,248,255,255,255,255,255,71,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,12,0,0,177,205,248,255,255,255,255,255,51,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,108,12,0,0,180,206,248,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,12,0,0,168,206,248,255,255,255,255,255,117,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,12,0,0,237,206,248,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,252,12,0,0,238,206,248,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,13,0,0,226,206,248,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,92,13,0,0,202,206,248,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,13,0,0,178,206,248,255,255,255,255,255,149,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,188,13,0,0,23,207,248,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,13,0,0,81,207,248,255,255,255,255,255,224,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,28,14,0,0,1,208,248,255,255,255,255,255,67,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,14,0,0,20,208,248,255,255,255,255,255,229,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,14, 0,0,201,208,248,255,255,255,255,255,68,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,14,0,0,221,208,248,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,14,0,0,194, 208,248,255,255,255,255,255,188,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,12,15,0,0,78,209,248,255,255,255,255,255,70,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,68, 15,0,0,92,210,248,255,255,255,255,255,134,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,15,0,0,178,212,248,255,255,255,255,255,56,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,164,15,0,0, 186,215,248,255,255,255,255,255,181,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,31,224,248,255,255,255,255,255,125,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,108,224,248,255,255,255,255,255,91,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,151,224,248,255,255,255,255,255,85,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,188,224,248,255,255,255,255,255,85,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,225,224,248,255,255,255,255,255,79,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,0,225,248,255,255,255,255,255,49,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,1,227,248,255,255,255,255,255,102,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,55,227,248,255,255,255,255,255,155,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,156,1,0,0,162,227,248,255,255,255,255,255,217,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,204,1,0,0,75,228,248,255,255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,123,228,248,255,255,255,255,255,102,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,44,2,0,0,177,228,248,255,255,255,255,255,191,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,64,229,248,255,255,255,255,255,103,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,140,2,0,0,119,229,248,255,255,255,255,255,84,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,155,231,248,255,255,255,255,255,113,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2, 0,0,220,231,248,255,255,255,255,255,230,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,146,232,248,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,168,232, 248,255,255,255,255,255,95,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,215,232,248,255,255,255,255,255,86,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,253,232,248,255, 255,255,255,255,242,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,191,233,248,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,204,233,248,255,255,255, 255,255,168,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,68,234,248,255,255,255,255,255,168,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,188,234,248,255,255,255,255,255, 84,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,224,234,248,255,255,255,255,255,22,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,198,235,248,255,255,255,255,255,187,0,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,81,236,248,255,255,255,255,255,51,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,84,236,248,255,255,255,255,255,73,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,92,5,0,0,109,236,248,255,255,255,255,255,46,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,10,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,148,5,0,0,99,238,248,255,255,255,255,255,130,2,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,5,0,0,181,240,248,255,255,255,255,255,137,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,5,0,0,14,243,248,255,255,255,255,255,165,1,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,36,6,0,0,131,244,248,255,255,255,255,255,54,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,6,0,0,137,244,248,255,255,255,255,255,247,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,6,0,0,80,245,248,255,255,255,255,255,249,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,6,0,0,25,247,248,255,255,255,255,255,117,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,6,0,0,94,247,248,255,255,255,255,255,134,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,7,0,0,180,247,248,255,255,255,255,255,192,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,7,0,0,68,248,248,255,255,255,255,255,210,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,7,0,0,230,249,248,255,255,255,255,255,179,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,7,0,0,105,250,248,255,255,255,255,255,198,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,7,0,0,255,250,248,255,255,255,255,255,120,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,4,8,0,0,71,251,248,255,255,255,255,255,119,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,8,0,0,142,251,248,255,255,255,255,255,148,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,100,8,0,0,242,251,248,255,255,255,255,255,194,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,8,0,0,132,255,248,255,255,255,255,255,111,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52, 0,0,0,196,8,0,0,195,1,249,255,255,255,255,255,159,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,14,0,0,0,131,6,140,5,141,4,142,3,0,0,44,0,0,0,252,8,0,0,42,4,249,255,255,255,255,255,182,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,44,9,0,0,176,7,249,255,255,255,255,255,55,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,92,9,0,0,183,10,249,255,255,255,255,255,140,12,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,12,0,0,0,131, 5,140,4,141,3,0,0,0,0,44,0,0,0,148,9,0,0,11,23,249,255,255,255,255,255,88,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,9,0,0,51,23,249,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,244,9,0,0,164,23,249,255,255,255,255,255,134,5,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,36,10,0,0,250,28,249,255,255,255,255,255,166,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,84,10,0,0,112,29,249,255,255,255,255,255,48,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,10,0,0,112,30,249,255,255,255,255,255,77,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44, 0,0,0,180,10,0,0,141,32,249,255,255,255,255,255,50,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,10,0,0,143,33,249,255,255,255,255,255,224,7,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20, 11,0,0,63,41,249,255,255,255,255,255,157,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,11,0,0,172,41,249,255,255,255,255,255,83,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,116,11,0,0, 207,44,249,255,255,255,255,255,125,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,11,0,0,28,45,249,255,255,255,255,255,83,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,11,0,0,63,45,249, 255,255,255,255,255,155,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,12,0,0,170,45,249,255,255,255,255,255,182,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,12,0,0,48,46,249,255,255,255, 255,255,193,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,12,0,0,193,47,249,255,255,255,255,255,134,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,12,0,0,23,48,249,255,255,255,255,255, 156,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,12,0,0,131,49,249,255,255,255,255,255,200,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,12,0,0,27,50,249,255,255,255,255,255,106,0,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,13,0,0,85,50,249,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,13,0,0,93,50,249,255,255,255,255,255,207,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,13,0,0,252,50,249,255,255,255,255,255,86,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,180,13,0,0,34,51,249,255,255,255,255,255,131,2,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,236,13,0,0,109,53,249,255,255,255,255,255,97,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,28,14,0,0,158,53,249,255,255,255,255,255,125,1,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,84,14,0,0,227,54,249,255,255,255,255,255,168,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,14,0,0,91,55,249,255,255,255, 255,255,239,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,14,0,0,26,56,249,255,255,255,255,255,195,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,14,0,0,173,57,249,255,255,255,255,255, 67,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,15,0,0,192,58,249,255,255,255,255,255,110,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,15,0,0,254,58,249,255,255,255,255,255,61,1,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,15,0,0,11,60,249,255,255,255,255,255,115,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,15,0,0,78,60,249,255,255,255,255,255,230,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,15,0,0,4,61,249,255,255,255,255,255,166,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,16,0,0,122,61,249,255,255,255,255,255,97,1,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,16,0,0,171,62,249,255,255,255,255,255,246,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,100,16,0,0,113,65,249,255,255,255,255,255,166,6,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,16,0,0,231,71,249,255,255,255,255,255,101,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,16,0,0,28,72,249,255,255,255,255,255,51,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,16,0,0,31,72,249,255,255,255,255,255,228,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,36,17,0,0,211,72,249,255,255,255,255,255,187,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,4,5,0,0,0,131,3,44,0,0,0,84,17,0,0,94,74,249,255,255,255,255,255,2,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,17,0,0,48,75,249,255,255,255,255,255,79,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,180,17,0,0,79,75,249,255,255,255,255,255,45,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,17,0,0,76,75,249,255,255,255,255,255,240,5,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,244,80,249,255,255,255,255,255,90,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,30,82,249,255,255,255,255,255,75,0,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,57,82,249,255,255,255,255,255,93,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,102,85,249,255,255,255,255,255,145,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,199,85,249,255,255,255,255,255,100,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,251,85,249,255,255,255,255,255,204,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,151,86,249,255,255,255,255,255,77,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,180,86,249,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,210,86,249,255,255,255,255,255,77,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,239,87,249,255,255,255,255,255,194,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,252,1,0,0,129,88,249,255,255,255,255,255,153,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,234,88,249,255,255,255,255,255,99,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,92,2,0,0,29,89,249,255,255,255,255,255,37,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,18,89,249,255,255,255,255,255,188,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0, 158,89,249,255,255,255,255,255,214,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,68,90,249,255,255,255,255,255,218,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,238,91,249, 255,255,255,255,255,179,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,113,92,249,255,255,255,255,255,214,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,23,93,249,255,255,255, 255,255,218,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,193,94,249,255,255,255,255,255,180,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,69,95,249,255,255,255,255,255,83, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,104,95,249,255,255,255,255,255,83,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,139,95,249,255,255,255,255,255,241,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,108,4,0,0,76,96,249,255,255,255,255,255,241,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,156,4,0,0,13,97,249,255,255,255,255,255,150,1,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,115,98,249,255,255,255,255,255,150,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,217,99,249,255,255,255,255,255,152,1,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,65,101,249,255,255,255,255,255,152,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,169,102,249,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,191,102,249,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,213,102,249,255,255,255,255,255,6,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,5,0,0,171,103,249,255,255,255,255,255,6,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,28,6,0,0,129,104,249,255,255,255,255,255,174,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4, 14,0,0,0,131,6,140,5,141,4,142,3,0,0,52,0,0,0,84,6,0,0,247,105,249,255,255,255,255,255,205,15,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,140,6,0,0,140,121,249,255,255,255,255,255,136,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,6,0,0,228,121,249,255,255,255,255,255,58,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,6,0,0,238,123,249,255,255,255,255,255,153,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,7,0,0,87,124,249,255,255,255,255,255,252,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,7,0,0,35,125,249,255,255,255,255,255,66,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,7,0,0,53,125,249,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,7,0,0,86,125,249,255,255,255,255,255,87,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,7,0,0,125,127,249,255,255,255,255,255,151,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,12,8,0,0,228,128,249,255,255,255,255,255,103,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,8,0,0,27,129,249,255,255,255,255,255,6,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,217,130,249,255,255,255,255,255,75, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,244,130,249,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,10,131,249,255,255,255,255,255,23,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,241,130,249,255,255,255,255,255,117,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,54,131,249,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,68,131,249,255,255,255,255,255,67,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,87,131,249,255,255,255,255,255,143,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,158,131,249,255,255,255,255,255,194,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,48,132,249,255, 255,255,255,255,56,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,56,135,249,255,255,255,255,255,66,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,74,137,249,255,255,255,255, 255,241,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,11,138,249,255,255,255,255,255,156,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,119,139,249,255,255,255,255,255,125, 1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,196,140,249,255,255,255,255,255,237,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,129,141,249,255,255,255,255,255,182,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,7,142,249,255,255,255,255,255,140,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,204,1,0,0,99,142,249,255,255,255,255,255,67,2,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,12,0,0,0,131,5,140,4,141,3,0,0,0,0,52,0,0,0,4,2,0,0,110,144,249,255,255,255,255,255,20,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,60,2,0,0,74,146,249,255, 255,255,255,255,163,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,2,0,0,189,147,249,255,255,255,255,255,239,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,2,0,0,124,148,249,255,255,255, 255,255,98,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,2,0,0,174,150,249,255,255,255,255,255,40,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,2,0,0,166,153,249,255,255,255,255,255, 102,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,3,0,0,220,156,249,255,255,255,255,255,112,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,92,3,0,0,28,157,249,255,255,255,255,255,87,0,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,3,0,0,67,157,249,255,255,255,255,255,54,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,73,157,249,255,255,255,255,255,213,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,3,0,0,238,157,249,255,255,255,255,255,85,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,4,0,0,19,158,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,4,0,0,23,158,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,4,0,0,27,158,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,4,0,0,31,158,249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,4,0,0,18,158,249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,5,0,0,5,158,249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,5,0,0,248,157,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,108,5,0,0,252,157,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,5,0,0,0,158,249,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,204,5,0,0,9,158,249,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,5,0,0,241,157,249,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,6, 0,0,217,157,249,255,255,255,255,255,18,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,6,0,0,187,165,249,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,6,0,0,177,165, 249,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,6,0,0,171,165,249,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,6,0,0,165,165,249,255, 255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,28,7,0,0,178,165,249,255,255,255,255,255,44,9,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82, 0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,142,174,249,255,255,255,255,255,73,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,167,175,249,255,255,255,255,255,137,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,0,178,249,255,255,255,255,255,235,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,187,179,249,255,255,255,255,255,202,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,85,180,249,255,255,255,255,255,23,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,60,181,249,255,255,255,255,255,131,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,60,1,0,0,143,182,249,255,255,255,255,255,176,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,15,183,249,255,255,255,255,255,182,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,156,1,0,0,149,183,249,255,255,255,255,255,131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,204,1,0,0,232,183,249,255,255,255,255,255,125,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141, 5,142,4,143,3,44,0,0,0,4,2,0,0,45,186,249,255,255,255,255,255,40,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,2,0,0,37,187,249,255,255,255,255,255,190,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,52,0,0,0,100,2,0,0,179,188,249,255,255,255,255,255,55,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,156,2,0,0,178,190,249,255,255,255,255,255,190,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,2,0,0,64,192,249,255,255,255,255,255,39,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,2,0,0,55,193,249,255,255,255,255,255,145,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,44,3,0,0,152,194,249,255,255,255,255,255,213,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,92,3,0,0,61,196,249,255,255,255,255,255,53,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,140,3,0,0,66,197,249,255,255,255,255,255,143,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,161,197,249,255,255,255,255,255,105,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,236,3,0,0,218,197,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,4,0,0,222,197,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76, 4,0,0,226,197,249,255,255,255,255,255,86,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,4,0,0,8,198,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,4,0,0,12,198, 249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,4,0,0,255,197,249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,5,0,0,242,197,249,255,255, 255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,5,0,0,229,197,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,5,0,0,233,197,249,255,255,255,255,255, 52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,5,0,0,237,197,249,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,5,0,0,250,197,249,255,255,255,255,255,89,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,5,0,0,35,198,249,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,6,0,0,44,198,249,255,255,255,255,255,43,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,6,0,0,39,198,249,255,255,255,255,255,76,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,6,0,0,67,199,249,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,6,0,0,100,199,249,255,255,255,255,255,167,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,6,0,0,219,207,249,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,7,0,0,209,207,249,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,76,7,0,0,222,207,249,255,255,255,255,255,69,5,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,211,212,249,255,255,255,255,255,123,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,30,213,249, 255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,9,213,249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,252,212,249,255,255,255, 255,255,37,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,241,212,249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,228,212,249,255,255,255,255,255,49, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,229,212,249,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,230,212,249,255,255,255,255,255,48,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,230,212,249,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,243,212,249,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,222,212,249,255,255,255,255,255,145,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,63,213,249,255,255,255,255,255,137,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,152,213,249,255,255,255,255,255,251,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,99,214,249,255,255,255,255,255,40,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,188,2,0,0,91,217,249,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,87,217,249,255,255,255,255,255,250,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,28,3,0,0,33,218,249,255,255,255,255,255,97,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,84,3,0,0,74,219,249,255,255,255,255,255,132,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,3,0,0,158,219,249,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,3,0,0,137,219,249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,3,0,0,124,219,249,255,255,255,255,255,37,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,4,0,0,113,219,249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,68,4,0,0,100,219,249,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,4,0,0,101,219,249,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,164,4,0,0,102,219,249,255,255,255,255,255,48,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,4,0,0,102,219,249,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,4,5,0,0,115,219,249,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,5,0,0,94,219,249,255,255,255,255,255,208,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,5,0, 0,254,219,249,255,255,255,255,255,198,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,5,0,0,148,220,249,255,255,255,255,255,156,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,5,0,0,0,221, 249,255,255,255,255,255,200,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,5,0,0,152,221,249,255,255,255,255,255,169,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,6,0,0,17,222,249,255, 255,255,255,255,84,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,6,0,0,53,225,249,255,255,255,255,255,36,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,132,6,0,0,41,226,249,255,255,255,255, 255,97,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,188,6,0,0,82,227,249,255,255,255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16, 1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,26,227,249,255,255,255,255,255,191,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,169,228,249,255,255,255,255,255,5,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,124,0,0,0,126,229,249,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,184,229,249,255,255,255,255,255,42,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,220,0,0,0,178,230,249,255,255,255,255,255,116,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,246,230,249,255,255,255,255,255,124,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,60,1,0,0,66,231,249,255,255,255,255,255,126,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,108,1,0,0,144,231,249,255,255,255,255,255,242,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141, 5,142,4,143,3,52,0,0,0,164,1,0,0,74,233,249,255,255,255,255,255,200,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,14,0,0,0,131,6,140,5,141,4,142,3,0,0,44,0,0,0,220,1,0,0,218,234,249,255,255,255,255,255,165,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,2,0,0,79,235,249,255,255,255,255,255,15,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,2,0,0,46,236,249,255,255,255,255,255,91,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,108,2,0,0,89,236,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,2,0,0,93,236,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,204,2,0,0,97,236,249,255,255,255,255,255,167,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,2,0,0,216,236,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,44,3,0,0,220,236,249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,3,0,0,207,236,249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140, 3,0,0,194,236,249,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,181,236,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,3,0,0,185, 236,249,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,4,0,0,189,236,249,255,255,255,255,255,24,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,4,0,0,165,244,249,255, 255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,4,0,0,155,244,249,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,172,4,0,0,168,244,249,255,255,255, 255,255,167,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,255,247,249,255,255,255,255,255,89,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,40,248,249,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,30,248,249,255,255,255,255,255,118,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,100,248,249,255,255,255,255,255,162,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,214,248,249,255,255,255,255,255,83,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,12,1,0,0,249,250,249,255,255,255,255,255,199,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,52,0,0,0,60,1,0,0,144,252,249,255,255,255,255,255,163,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,12,0,0,0,131, 5,140,4,141,3,0,0,0,0,52,0,0,0,116,1,0,0,251,255,249,255,255,255,255,255,149,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,172,1,0,0,88,2,250,255,255,255,255,255,227,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,1,0,0,11,3,250,255,255,255,255,255,164,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,2,0,0,127,4,250,255,255,255,255,255,125,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,60,2,0,0,204,5,250,255,255,255,255,255,146,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,2,0,0,46,7,250,255,255,255,255,255,182,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,44,0,0,0,156,2,0,0,180,7,250,255,255,255,255,255,129,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,204,2,0,0,5,8,250,255,255,255,255,255,210,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140, 6,141,5,142,4,143,3,44,0,0,0,4,3,0,0,159,10,250,255,255,255,255,255,210,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,52,3,0,0,65,12,250,255,255,255,255,255,155,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0, 0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,108,3,0,0,164,14,250,255,255,255,255,255,117,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,3,0,0,233,14,250,255,255,255,255,255,188,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,3,0,0,117,16,250,255,255,255,255,255,11,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,3,0,0,80,17,250,255,255,255,255,255,103,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,44,4,0,0,135,17,250,255,255,255,255,255,61,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,4,0,0,148,18,250,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,140,4,0,0,169,18,250,255,255,255,255,255,191,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,4,0,0,56,19,250,255,255,255,255,255,60,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0, 236,4,0,0,68,19,250,255,255,255,255,255,139,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,5,0,0,159,19,250,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,5,0,0,163, 19,250,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,5,0,0,167,19,250,255,255,255,255,255,114,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,5,0,0,233,19,250,255, 255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,5,0,0,237,19,250,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,6,0,0,224,19,250,255,255,255,255, 255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,6,0,0,211,19,250,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,6,0,0,198,19,250,255,255,255,255,255,52,0,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,6,0,0,202,19,250,255,255,255,255,255,179,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,6,0,0,77,20,250,255,255,255,255,255,89,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,6,0,0,118,20,250,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,7,0,0,94,20,250,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,7,0,0,103,20,250,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,7,0,0,133,20,250,255,255,255,255,255,13,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,7,0,0,98,22,250,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,7,0,0,88,22,250,255,255,255,255,255,71,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,28,8,0,0,111,22,250,255,255,255,255,255,234,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,8,0,0,41,31,250,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,124,8,0,0,31,31,250,255,255,255,255,255,93,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,172,8,0,0,76,31,250,255,255,255,255,255,88,5,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3, 0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,84,36,250,255,255,255,255,255,141,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,177,36,250,255,255,255,255,255,87,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,216,36,250,255,255,255,255,255,30,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,198,38,250,255,255,255,255,255,24,2,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,174,40,250,255,255,255,255,255,122,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,248,43,250,255,255,255,255,255,36,1,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,236,44,250,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,232,44,250,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,228,44,250,255,255,255,255,255,1,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,181,46,250,255,255,255,255,255,170,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,47,47,250,255,255,255,255,255,65,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,64,50,250,255,255,255,255,255,91,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,92,2,0,0,107,50,250,255,255,255,255,255,47,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,106,51,250,255,255,255,255,255,94,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0, 188,2,0,0,152,51,250,255,255,255,255,255,99,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,236,2,0,0,203,54,250,255,255,255,255,255,96,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,28,3,0,0, 251,55,250,255,255,255,255,255,212,6,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,84,3,0,0,151,62,250,255,255,255,255,255,208,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,132,3,0,0,55,63,250,255,255,255,255,255,142,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,180,3,0,0,149,65,250,255,255,255,255,255,205,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228, 3,0,0,50,66,250,255,255,255,255,255,74,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,4,0,0,76,66,250,255,255,255,255,255,209,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,4,0,0,237,66, 250,255,255,255,255,255,133,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,42,68,250,255,255,255,255,255,29,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,4,5,0,0,0,131,3,44,0,0,0,76,0,0,0,23,69,250,255,255,255,255,255,252,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,227,69,250,255,255,255,255,255,18,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,172,0,0,0,197,69,250,255,255,255,255,255,45,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,194,69,250,255,255,255,255,255,66,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,12,1,0,0,212,69,250,255,255,255,255,255,156,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,64,70,250,255,255,255,255,255,88,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108, 1,0,0,104,70,250,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,137,70,250,255,255,255,255,255,112,10,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,204,1,0,0, 201,80,250,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,199,80,250,255,255,255,255,255,231,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,126,83,250, 255,255,255,255,255,125,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,203,83,250,255,255,255,255,255,60,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,215,83,250,255,255,255, 255,255,60,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,227,83,250,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,236,83,250,255,255,255,255,255,64, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,28,3,0,0,252,83,250,255,255,255,255,255,79,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,76,3,0,0,27,84,250,255,255,255,255,255,119,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,98,84,250,255,255,255,255,255,34,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,84,85,250,255,255,255,255,255,109,5,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,145,90,250,255,255,255,255,255,13,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,86,93, 250,255,255,255,255,255,207,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,245,93,250,255,255,255,255,255,228,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,169,94,250,255,255, 255,255,255,125,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,246,94,250,255,255,255,255,255,188,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,130,95,250,255,255,255,255, 255,213,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,39,96,250,255,255,255,255,255,141,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,52,0,0,0,60,1,0,0,132,96,250,255,255,255,255,255,20,2, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,10,0,0,0,131,4,140,3,0,0,0,0,0,0,52,0,0,0,116,1,0,0,96,98,250,255,255,255,255,255,45,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,172,1,0,0, 85,99,250,255,255,255,255,255,189,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,1,0,0,226,99,250,255,255,255,255,255,234,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,12,2,0,0,156,102, 250,255,255,255,255,255,17,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,2,0,0,125,102,250,255,255,255,255,255,14,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,108,2,0,0,91,102,250,255,255, 255,255,255,201,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,11,0,0,0,131,6,140,5,141,4,142,3,0,0,44,0,0,0,164,2,0,0,236,103,250,255,255,255,255,255,54,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,2,0,0,242, 103,250,255,255,255,255,255,51,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,3,0,0,245,103,250,255,255,255,255,255,0,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,52,3,0,0,197,105,250,255, 255,255,255,255,142,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,3,0,0,35,106,250,255,255,255,255,255,139,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,3,0,0,126,106,250,255,255,255, 255,255,32,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,3,0,0,110,107,250,255,255,255,255,255,126,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,3,0,0,188,107,250,255,255,255,255,255, 152,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,12,108,250,255,255,255,255,255,111,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,76,0,0,0,75,108,250,255,255,255,255,255,149,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,176,110,250,255,255,255,255,255,23,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,172,0,0,0,151,110,250,255,255,255,255,255,5,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,108,111,250,255,255,255,255,255,190,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0, 0,250,111,250,255,255,255,255,255,179,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,125,112,250,255,255,255,255,255,189,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,10,113, 250,255,255,255,255,255,182,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,144,113,250,255,255,255,255,255,61,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,157,114,250,255, 255,255,255,255,191,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,44,115,250,255,255,255,255,255,87,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,83,117,250,255,255,255,255, 255,61,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,96,119,250,255,255,255,255,255,218,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,10,120,250,255,255,255,255,255,48,3,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,10,123,250,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,248,122,250,255,255,255,255,255,83,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,27,123,250,255,255,255,255,255,66,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,45,123,250,255,255,255,255,255,111,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,108,123,250,255,255,255,255,255,28,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,88,124,250,255,255,255,255,255,88,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,128,124,250,255,255,255,255,255,133,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,12,4,0,0,213,124,250,255,255,255,255,255,20,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,185,126,250,255,255,255,255,255,80,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,217,126,250,255,255,255,255,255,102,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,15,127,250,255,255,255,255,255,18,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,241,126,250,255,255,255,255,255,118,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,52,0,0,0,252,4,0,0,55,128,250,255,255,255,255,255,138,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,52,5,0,0,137,128,250,255,255,255,255,255,108,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,100,5,0,0,197,128,250,255,255,255,255,255,109,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,5,0,0,2,129,250,255,255,255,255,255,210,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,196,5,0,0,164,132,250,255,255,255,255,255,89,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,5,0,0,205,132,250,255,255,255,255,255,176,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,36,6,0,0,77,133,250,255,255,255,255,255,103,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,6,0,0,132,133,250,255,255,255,255,255,131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,132,6,0,0,215,133,250,255,255,255,255,255,97,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,6,0,0,8,135,250,255,255,255,255,255,150,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,6,0, 0,110,135,250,255,255,255,255,255,130,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,7,0,0,192,135,250,255,255,255,255,255,170,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,7,0,0,58,137, 250,255,255,255,255,255,126,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,7,0,0,136,137,250,255,255,255,255,255,159,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,7,0,0,247,139,250,255, 255,255,255,255,242,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,7,0,0,185,140,250,255,255,255,255,255,186,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,8,0,0,67,142,250,255,255,255,255, 255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,8,0,0,59,142,250,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,8,0,0,47,142,250,255,255,255,255,255,36,0,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,8,0,0,35,142,250,255,255,255,255,255,64,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,196,8,0,0,51,142,250,255,255,255,255,255,8,1,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,252,8,0,0,3,143,250,255,255,255,255,255,180,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,44,9,0,0,135,146,250,255,255,255,255,255,209,1,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,9,0,0,40,148,250,255,255,255,255,255,6,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,9,0,0,254,150,250,255,255,255,255,255,60,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,188,9,0,0,10,151,250,255,255,255,255,255,31,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,244,9,0,0,241,151,250,255,255,255,255,255,99,4,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,10,0,0,36,156,250,255,255,255,255,255,236,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,10,0,0,224,156,250,255,255,255,255,255,79,2,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,10,0,0,255,158,250,255,255,255,255,255,24,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,180,10,0,0,231,160,250,255,255,255,255,255,156,5,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,10,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,236,10,0,0,75,166,250,255,255,255,255,255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,11,0,0,67,166,250,255,255,255,255,255,36,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,11,0,0,55,166,250,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,124,11,0,0,43,166,250,255,255,255,255,255,125,15,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,10,0,0,0,131,4,140,3,0,0,0,0,0,0,52,0,0,0,180,11,0,0,112,181,250,255,255,255,255,255,179,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,10,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,236,11,0,0,235,182,250,255, 255,255,255,255,152,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,28,12,0,0,83,183,250,255,255,255,255,255,94,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,12,0,0,129,185,250,255,255,255, 255,255,242,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,12,0,0,67,186,250,255,255,255,255,255,154,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,12,0,0,173,186,250,255,255,255,255,255, 46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,12,0,0,171,186,250,255,255,255,255,255,157,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,12,13,0,0,24,189,250,255,255,255,255,255,40,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,13,0,0,16,189,250,255,255,255,255,255,60,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,13,0,0,28,189,250,255,255,255,255,255,60,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,13,0,0,40,189,250,255,255,255,255,255,152,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,13,0,0,144,191,250,255,255,255,255,255,52,1,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,13,0,0,148,192,250,255,255,255,255,255,35,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,14,0,0,135,195,250,255,255,255,255,255,251,1,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,92,14,0,0,82,197,250,255,255,255,255,255,10,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,140,14,0,0,44,197,250,255,255,255,255,255,203,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,196,14,0,0,191,197,250,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0, 0,0,150,197,250,255,255,255,255,255,209,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,76,0,0,0,55,199,250,255,255,255,255,255,184,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,191, 200,250,255,255,255,255,255,173,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,60,202,250,255,255,255,255,255,96,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,220,0,0,0,108,203,250, 255,255,255,255,255,171,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,231,203,250,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,232,203,250,255,255,255, 255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,233,203,250,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,234,203,250,255,255,255,255,255, 49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,235,203,250,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,236,203,250,255,255,255,255,255,49,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,237,203,250,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,238,203,250,255,255,255,255,255,49,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,239,203,250,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,240,203,250,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,241,203,250,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,242,203,250,255,255,255,255,255,176,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,114,204,250,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,93,204,250,255,255,255,255,255,37,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,82,204,250,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,69,204,250,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,70,204,250,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,71,204,250,255,255,255,255,255,45,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,108,4,0,0,68,204,250,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,82,204,250,255,255,255,255,255,63,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0, 204,4,0,0,97,204,250,255,255,255,255,255,53,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,102,204,250,255,255,255,255,255,75,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0, 129,204,250,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,143,204,250,255,255,255,255,255,75,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,170,204,250, 255,255,255,255,255,67,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,189,204,250,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,5,0,0,179,204,250,255,255, 255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,6,0,0,227,204,250,255,255,255,255,255,239,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,6,0,0,162,205,250,255,255,255,255,255, 46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,6,0,0,160,205,250,255,255,255,255,255,164,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,172,6,0,0,20,206,250,255,255,255,255,255,106,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,220,6,0,0,78,206,250,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,7,0,0,57,206,250,255,255,255,255,255,32,2,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,7,0,0,41,208,250,255,255,255,255,255,209,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,7,0,0,202,208,250,255,255,255,255,255,67,0,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,7,0,0,221,208,250,255,255,255,255,255,43,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,7,0,0,216,208,250,255,255,255,255,255,103,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,7,0,0,15,209,250,255,255,255,255,255,209,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,8,0,0,176,209,250,255,255,255,255,255,121,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,8,0,0,249,210,250,255,255,255,255,255,64,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,8,0,0,9,211,250,255,255,255,255,255,131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,188,8,0,0,92,211,250,255,255,255,255,255,65,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,8,0,0,109,211,250,255,255,255,255,255,124,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,28,9,0,0,185,211,250,255,255,255,255,255,250,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,9,0,0,131,213,250,255,255,255,255,255,10,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,124,9,0,0,93,215,250,255,255,255,255,255,56,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,9,0,0,101,216,250,255,255,255,255,255,86,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0, 220,9,0,0,139,219,250,255,255,255,255,255,87,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,20,10,0,0,170,220,250,255,255,255,255,255,93,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,52,0,0,0,68,10,0,0,215,220,250,255,255,255,255,255,24,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,124,10,0,0,183,221,250,255,255,255,255,255,133,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,172,10,0,0,12,226,250,255,255,255,255,255,53,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,10,0,0,17,226,250,255,255,255,255,255,53,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,12,11,0,0,22,226,250,255,255,255,255,255,74,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,60,11,0,0,48,226,250,255,255,255,255,255,33,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,10,0,0,0,131,4, 140,3,0,0,0,0,0,0,44,0,0,0,116,11,0,0,25,227,250,255,255,255,255,255,185,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,164,11,0,0,162,228,250,255,255,255,255,255,211,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4, 7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,220,11,0,0,61,229,250,255,255,255,255,255,155,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,12,0,0,168,229,250,255,255,255,255,255,77,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,12,0,0,197,229,250,255,255,255,255,255,39,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,108,12,0,0,188,229,250,255,255,255,255,255,253,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,164,12,0,0,129,230,250,255,255,255,255,255,90,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,212,12,0,0,171,231,250,255,255,255,255,255,18,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,4,12,0,0,0,131,5,140,4,141,3,0,0,0,0,52,0,0,0,12,13,0,0,133,235,250,255,255,255,255,255,47,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,52,0,0,0,68,13,0,0,124,237,250,255,255,255,255,255,140, 6,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,124,13,0,0,208,243,250,255,255,255,255,255,158,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,13,0,0,62,244,250,255, 255,255,255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,220,13,0,0,101,244,250,255,255,255,255,255,19,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,20,14,0,0,64, 246,250,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,14,0,0,37,246,250,255,255,255,255,255,166,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,20,0,0,0,0,0,0,0,1,122,82,0,1, 120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,131,250,250,255,255,255,255,255,208,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,35,251,250,255,255,255,255,255,99,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,86,254,250,255,255,255,255,255,137,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,175,0,251,255,255,255,255,255,227,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,220,0,0,0,98,1,251,255,255,255,255,255,148,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,198,2,251,255,255,255,255,255,125,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,60,1,0,0,19,4,251,255,255,255,255,255,176,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,147,4,251,255,255,255,255,255,175,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1, 0,0,18,5,251,255,255,255,255,255,126,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,204,1,0,0,96,5,251,255,255,255,255,255,15,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,52, 0,0,0,4,2,0,0,55,7,251,255,255,255,255,255,207,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,14,0,0,0,131,6,140,5,141,4,142,3,0,0,44,0,0,0,60,2,0,0,206,8,251,255,255,255,255,255,204,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,108,2,0,0,106,9,251,255,255,255,255,255,42,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,2,0,0,100,10,251,255,255,255,255,255,48,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,204,2,0,0,100,10,251,255,255,255,255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,2,0,0,139,10,251,255,255,255,255,255,85,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,3, 0,0,176,10,251,255,255,255,255,255,146,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,3,0,0,18,11,251,255,255,255,255,255,128,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,3,0,0,98,11, 251,255,255,255,255,255,66,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,116,11,251,255,255,255,255,255,85,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,3,0,0,153,11,251,255,255, 255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,4,0,0,157,11,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,4,0,0,161,11,251,255,255,255,255,255, 52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,4,0,0,165,11,251,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,4,0,0,152,11,251,255,255,255,255,255,35,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,4,0,0,139,11,251,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,5,0,0,126,11,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,5,0,0,130,11,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,5,0,0,134,11,251,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,5,0,0,143,11,251,255,255,255,255,255,41,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,5,0,0,136,11,251,255,255,255,255,255,116,7,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,5,0,0,204,18,251,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,6,0,0,194,18,251,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,52,0,0,0,92,6,0,0,207,18,251,255,255,255,255,255,131,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,2,23,251,255,255,255, 255,255,100,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,54,23,251,255,255,255,255,255,97,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,103,23,251,255,255,255,255,255,78, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,133,23,251,255,255,255,255,255,183,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,12,24,251,255,255,255,255,255,103,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,67,24,251,255,255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,115,24,251,255,255,255,255,255,54,0,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,121,24,251,255,255,255,255,255,116,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,189,24,251,255,255,255,255,255,116,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,1,25,251,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,253,24,251,255,255,255,255,255,249,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,198,25,251,255,255,255,255,255,100,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,250,25,251,255,255,255,255,255,250,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,140,2,0,0,196,27,251,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,174,27,251,255,255,255,255,255,252,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,236,2,0,0,122,28,251,255,255,255,255,255,171,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,245,28,251,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0, 76,3,0,0,254,28,251,255,255,255,255,255,148,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,98,29,251,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,172,3,0,0,106, 29,251,255,255,255,255,255,116,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,228,3,0,0,166,30,251,255,255,255,255,255,216,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20, 4,0,0,78,31,251,255,255,255,255,255,201,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,4,0,0,231,32,251,255,255,255,255,255,43,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,116,4,0,0,226,32, 251,255,255,255,255,255,115,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,172,4,0,0,29,33,251,255,255,255,255,255,148,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,4, 0,0,129,34,251,255,255,255,255,255,25,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,5,0,0,106,36,251,255,255,255,255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,5,0,0,145,36,251, 255,255,255,255,255,88,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,5,0,0,185,36,251,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,156,5,0,0,193,36,251,255,255,255, 255,255,153,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,212,5,0,0,34,37,251,255,255,255,255,255,129,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,6,0,0,115,37,251,255, 255,255,255,255,68,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,6,0,0,135,39,251,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,100,6,0,0,131,39,251,255,255,255,255, 255,123,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,156,6,0,0,198,39,251,255,255,255,255,255,86,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,6,0,0,236,39,251,255,255, 255,255,255,158,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,6,0,0,90,41,251,255,255,255,255,255,114,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,44,7,0,0,156,41,251,255,255,255,255, 255,105,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,7,0,0,213,41,251,255,255,255,255,255,40,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,7,0,0,205,45,251,255,255,255,255,255,27,0,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,188,7,0,0,184,45,251,255,255,255,255,255,131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,244,7,0,0,3,46,251,255,255,255,255,255, 22,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,8,0,0,233,46,251,255,255,255,255,255,39,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,8,0,0,224,48,251,255,255,255,255,255,56,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,132,8,0,0,232,48,251,255,255,255,255,255,115,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,188,8,0,0,35,49,251,255,255,255,255,255,99, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,8,0,0,86,49,251,255,255,255,255,255,96,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,9,0,0,134,50,251,255,255,255,255,255,31,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,76,9,0,0,117,50,251,255,255,255,255,255,123,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,132,9,0,0,184,50,251,255,255,255,255,255,46,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,158,50,251,255,255,255,255,255,194,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,76,0,0,0,48,51,251,255,255,255,255,255,65,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,65,54,251,255,255,255,255,255,48,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,65, 56,251,255,255,255,255,255,241,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,2,57,251,255,255,255,255,255,156,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,110,58,251,255, 255,255,255,255,151,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,213,59,251,255,255,255,255,255,237,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,146,60,251,255,255,255,255, 255,182,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,24,61,251,255,255,255,255,255,140,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,204,1,0,0,116,61,251,255,255,255,255,255,67,2, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,12,0,0,0,131,5,140,4,141,3,0,0,0,0,52,0,0,0,4,2,0,0,127,63,251,255,255,255,255,255,20,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,60,2,0,0, 91,65,251,255,255,255,255,255,163,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,2,0,0,206,66,251,255,255,255,255,255,226,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,2,0,0,128,67,251, 255,255,255,255,255,98,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,2,0,0,178,69,251,255,255,255,255,255,40,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,2,0,0,170,72,251,255,255,255, 255,255,102,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,3,0,0,224,75,251,255,255,255,255,255,112,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,92,3,0,0,32,76,251,255,255,255,255,255,87, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,3,0,0,71,76,251,255,255,255,255,255,54,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,77,76,251,255,255,255,255,255,213,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,3,0,0,242,76,251,255,255,255,255,255,85,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,4,0,0,23,77,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,4,0,0,27,77,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,4,0,0,31,77,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,4,0,0,35,77,251,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,4,0,0,22,77,251,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,12,5,0,0,9,77,251,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,5,0,0,252,76,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,108,5,0,0,0,77,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,5,0,0,4,77,251,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204, 5,0,0,13,77,251,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,5,0,0,245,76,251,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,6,0,0,221,76, 251,255,255,255,255,255,226,7,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,6,0,0,143,84,251,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,6,0,0,133,84,251,255,255, 255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,6,0,0,127,84,251,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,6,0,0,121,84,251,255,255,255,255,255, 61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,28,7,0,0,134,84,251,255,255,255,255,255,174,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16, 12,7,8,144,1,0,0,52,0,0,0,28,0,0,0,228,92,251,255,255,255,255,255,215,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,84,0,0,0,131,93,251,255,255,255,255,255,153,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,0,0,0,236,95,251,255,255,255,255,255,245,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,0,0,0,177,97,251,255,255,255,255,255,202,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,228,0,0,0,75,98,251,255,255,255,255,255,23,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,1,0,0,50,99,251,255,255,255,255,255,129,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,44,0,0,0,68,1,0,0,131,100,251,255,255,255,255,255,176,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,1,0,0,3,101,251,255,255,255,255,255,182,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,164,1,0,0,137,101,251,255,255,255,255,255,131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,212,1,0,0,220,101,251,255,255,255,255,255,125,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6, 141,5,142,4,143,3,44,0,0,0,12,2,0,0,33,104,251,255,255,255,255,255,17,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,2,0,0,2,105,251,255,255,255,255,255,190,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,52,0,0,0,108,2,0,0,144,106,251,255,255,255,255,255,62,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,164,2,0,0,150,108,251,255,255,255,255,255,39,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,2,0,0,141,109,251,255,255,255,255,255,145,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,3,0,0,238,110,251,255,255,255,255,255,213,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,4,5,0,0,0,131,3,44,0,0,0,52,3,0,0,147,112,251,255,255,255,255,255,65,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,100,3,0,0,164,113,251,255,255,255,255,255,143,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,148,3,0,0,3,114,251,255,255,255,255,255,190,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,3,0,0,145,115,251,255,255,255,255,255,60,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,244,3,0,0,157,115,251,255,255,255,255,255,105,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,4,0,0,214,115,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,84,4,0,0,218,115,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,4,0,0,222,115,251,255,255,255,255,255,86,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,4,0, 0,4,116,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,4,0,0,8,116,251,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,5,0,0,251,115,251, 255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,5,0,0,238,115,251,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,5,0,0,225,115,251,255,255,255, 255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,5,0,0,229,115,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,5,0,0,233,115,251,255,255,255,255,255, 61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,6,0,0,246,115,251,255,255,255,255,255,89,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,6,0,0,31,116,251,255,255,255,255,255,57,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,6,0,0,40,116,251,255,255,255,255,255,43,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,6,0,0,35,116,251,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,6,0,0,68,116,251,255,255,255,255,255,150,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,6,0,0,170,124,251,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,7,0,0,160,124,251,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,84,7,0,0,173,124,251,255,255,255,255,255,69,5,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,162,129,251,255,255,255,255,255,220,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,76,0,0,0,78, 130,251,255,255,255,255,255,159,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,189,131,251,255,255,255,255,255,128,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,13,132,251, 255,255,255,255,255,107,6,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,220,0,0,0,72,138,251,255,255,255,255,255,24,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,48,142,251,255,255, 255,255,255,181,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,181,143,251,255,255,255,255,255,214,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,91,146,251,255,255,255,255, 255,137,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,180,148,251,255,255,255,255,255,209,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,85,150,251,255,255,255,255,255,151, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,188,150,251,255,255,255,255,255,136,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,44,2,0,0,20,151,251,255,255,255,255,255,214,1,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,100,2,0,0,178,152,251,255,255,255,255,255,95,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,2,0,0,225,152,251,255,255,255, 255,255,7,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,52,0,0,0,196,2,0,0,184,155,251,255,255,255,255,255,193,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,14,0,0,0,131,6,140,5,141,4,142,3,0,0,44,0,0,0,252,2,0,0,65,157, 251,255,255,255,255,255,63,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,3,0,0,80,158,251,255,255,255,255,255,180,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,3,0,0,212,158,251,255,255, 255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,3,0,0,216,158,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,220,158,251,255,255,255,255, 255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,3,0,0,224,158,251,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,4,0,0,211,158,251,255,255,255,255,255,35,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,4,0,0,198,158,251,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,4,0,0,202,158,251,255,255,255,255,255,52,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,4,0,0,206,158,251,255,255,255,255,255,39,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,4,0,0,197,159,251,255,255,255,255,255,39,1,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,5,0,0,188,160,251,255,255,255,255,255,163,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,5,0,0,47,161,251,255,255,255,255,255,244,6,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,5,0,0,243,167,251,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,5,0,0,233,167,251,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,204,5,0,0,246,167,251,255,255,255,255,255,119,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,32, 171,251,255,255,255,255,255,50,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,34,171,251,255,255,255,255,255,28,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,14,171,251,255, 255,255,255,255,91,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,57,171,251,255,255,255,255,255,171,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,180,171,251,255,255,255, 255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,219,171,251,255,255,255,255,255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,211,171,251,255,255,255,255,255,90, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,253,171,251,255,255,255,255,255,57,5,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,6,177,251,255,255,255,255,255,38,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,252,176,251,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0, 0,0,228,176,251,255,255,255,255,255,59,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,239,176,251,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,247,176, 251,255,255,255,255,255,169,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,112,177,251,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,110,177,251,255, 255,255,255,255,68,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,130,177,251,255,255,255,255,255,86,8,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,168,185,251,255,255,255,255, 255,142,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,6,188,251,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,252,187,251,255,255,255,255,255,201,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,149,188,251,255,255,255,255,255,78,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,179,191,251,255,255,255,255,255,213,2,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,88,194,251,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,86,194,251,255,255,255,255,255,104,2,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,142,196,251,255,255,255,255,255,182,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,20,197,251,255,255,255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,244,196,251,255,255,255,255,255,18,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,214,196,251,255,255,255,255,255,55,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,221,197,251,255,255,255,255,255,145,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,62,200,251,255,255,255,255,255,73,6,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,87,206,251,255,255,255,255,255,105,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,144,206,251,255,255,255,255,255,102,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,12,4,0,0,198,206,251,255,255,255,255,255,222,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,116,209,251,255,255,255,255,255,3,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,108,4,0,0,71,210,251,255,255,255,255,255,3,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,26,211,251,255,255,255,255,255,94,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,204,4, 0,0,72,215,251,255,255,255,255,255,153,51,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,16,0,0,0,131,7,140,6,141,5,142,4,143,3,44,0,0,0,4,5,0,0,169,10,252,255,255,255,255,255,142,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,52,5,0,0,7,12,252,255,255,255,255,255,63,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,100,5,0,0,22,13,252,255,255,255,255,255,159,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0, 0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,112,13,252,255,255,255,255,255,66,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,130,13,252,255,255,255,255,255,105,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,187,13,252,255,255,255,255,255,137,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,20,14,252,255,255,255,255,255,134,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,106,14,252,255,255,255,255,255,137,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,195,14,252,255,255,255,255,255,139,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,30,16,252,255,255,255,255,255,47,5,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,108,1,0,0,29,21,252,255,255,255,255,255,14,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0, 0,0,131,3,44,0,0,0,156,1,0,0,251,22,252,255,255,255,255,255,29,6,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,204,1,0,0,232,28,252,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,252,1,0,0,210,28,252,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,188,28,252,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0, 92,2,0,0,166,28,252,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,144,28,252,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,122, 28,252,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,100,28,252,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,78,28,252,255,255, 255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,56,28,252,255,255,255,255,255,20,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,28,28,252,255,255,255,255,255,21, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,1,28,252,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,235,27,252,255,255,255,255,255,21,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,208,27,252,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,181,27,252,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,157,27,252,255,255,255,255,255,101,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,210,27,252,255,255,255,255,255,107,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,13,28,252,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,242,27,252,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,215,27,252,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,202,27,252,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,140,5,0,0,180,27,252,255,255,255,255,255,18,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,150,27,252,255,255,255,255,255,29,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,236,5,0,0,131,27,252,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,6,0,0,104,27,252,255,255,255,255,255,80,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76, 6,0,0,136,28,252,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,6,0,0,126,28,252,255,255,255,255,255,28,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,6,0,0,106, 28,252,255,255,255,255,255,19,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,6,0,0,77,29,252,255,255,255,255,255,108,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,12,7,0,0,137,31,252,255, 255,255,255,255,0,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,7,0,0,89,32,252,255,255,255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,7,0,0,57,32,252,255,255,255,255,255, 163,7,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,156,7,0,0,172,39,252,255,255,255,255,255,132,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,7,0,0,0,43,252,255,255,255,255,255,211,0,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,7,0,0,163,43,252,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,8,0,0,121,43,252,255,255,255,255,255,147,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,8,0,0,220,43,252,255,255,255,255,255,102,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,250, 43,252,255,255,255,255,255,216,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,138,44,252,255,255,255,255,255,51,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,141,44,252,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,135,44,252,255,255,255,255,255,204,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 4,8,0,0,0,131,3,44,0,0,0,172,0,0,0,35,45,252,255,255,255,255,255,53,6,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,40,51,252,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,37,51,252,255,255,255,255,255,75,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,64,51,252,255,255,255,255,255,23,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,39,51,252,255,255,255,255,255,98,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,89,51,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,87,51,252,255,255,255,255,255,214,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,253,51,252,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,249,51,252,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,219,51,252,255,255,255,255,255, 207,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,122,52,252,255,255,255,255,255,64,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,138,52,252,255,255,255,255,255,61,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,151,52,252,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,8,53,252,255,255,255,255,255,187,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,147,53,252,255,255,255,255,255,223,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,66,54,252,255,255,255,255,255,187,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,205,54,252,255,255,255,255,255,31,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,188,55,252,255,255,255,255,255,121,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,5,56,252,255,255,255,255,255,137,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,94,56,252,255,255,255,255,255,94,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,140,56,252,255,255,255,255,255,175,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,11,57,252,255,255,255,255,255,28,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,140,2,0,0,247,56,252,255,255,255,255,255,175,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,118,57,252,255,255,255,255,255,29,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,236,2,0,0,99,57,252,255,255,255,255,255,175,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,226,57,252,255,255,255,255,255,2,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0, 180,58,252,255,255,255,255,255,214,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,90,60,252,255,255,255,255,255,20,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,62,60,252, 255,255,255,255,255,12,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,26,60,252,255,255,255,255,255,157,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,135,60,252,255,255,255, 255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,125,60,252,255,255,255,255,255,111,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,188,60,252,255,255,255,255,255,146, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,30,61,252,255,255,255,255,255,121,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,103,61,252,255,255,255,255,255,119,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,174,61,252,255,255,255,255,255,133,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,3,62,252,255,255,255,255,255,133,0,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,88,62,252,255,255,255,255,255,18,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,58,62,252,255,255,255,255,255,136,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,146,62,252,255,255,255,255,255,80,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,5,0,0,178,63,252,255,255,255,255,255,82,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,6,0,0,212,64,252,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,6,0,0,220,64,252,255,255,255,255,255,77,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,124,6,0,0,249,64,252,255,255,255,255,255,103,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,6,0,0,48,65,252,255,255,255,255,255,12,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,220,6,0,0,12,66,252,255,255,255,255,255,50,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,7,0,0,14,66,252,255,255,255,255,255,121,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,7,0, 0,87,66,252,255,255,255,255,255,121,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,7,0,0,160,66,252,255,255,255,255,255,114,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,7,0,0,226,66, 252,255,255,255,255,255,159,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,7,0,0,81,67,252,255,255,255,255,255,193,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,7,0,0,226,67,252,255,255, 255,255,255,76,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,8,0,0,254,67,252,255,255,255,255,255,103,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,8,0,0,53,68,252,255,255,255,255,255, 108,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,8,0,0,113,68,252,255,255,255,255,255,225,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,8,0,0,34,69,252,255,255,255,255,255,138,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,8,0,0,124,69,252,255,255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28, 0,0,0,148,69,252,255,255,255,255,255,109,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,209,69,252,255,255,255,255,255,187,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,92, 70,252,255,255,255,255,255,60,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,104,70,252,255,255,255,255,255,59,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,115,70,252,255, 255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,136,70,252,255,255,255,255,255,67,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,155,70,252,255,255,255,255, 255,67,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,174,70,252,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,207,70,252,255,255,255,255,255,81,0,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,240,70,252,255,255,255,255,255,179,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,115,71,252,255,255,255,255,255,4,1,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,71,72,252,255,255,255,255,255,85,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,108,73,252,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,66,73,252,255,255,255,255,255,253,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,15,74,252,255,255,255,255,255,97,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,64,74,252,255,255,255,255,255,113,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,129,74,252,255,255,255,255,255,131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,212,74,252,255,255,255,255,255,68,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,232,74,252,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,172,3,0,0,215,74,252,255,255,255,255,255,41,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,208,74,252,255,255,255,255,255,39,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,12,4,0,0,199,74,252,255,255,255,255,255,39,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,190,74,252,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0, 198,74,252,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,157,74,252,255,255,255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,125,74,252,255,255,255,255,255,89,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,166,74,252,255,255,255,255,255,141,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,3,75,252,255,255,255,255,255,6,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,217,75,252,255,255,255,255,255,60,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,44,0,0,0,12,1,0,0,229,75,252,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,206,75,252,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,108,1,0,0,183,75,252,255,255,255,255,255,51,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,186,75,252,255,255,255,255,255,43,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0, 0,181,75,252,255,255,255,255,255,37,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,170,75,252,255,255,255,255,255,141,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,7,76,252, 255,255,255,255,255,247,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,92,2,0,0,206,77,252,255,255,255,255,255,245,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,147,78,252,255,255, 255,255,255,34,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,133,79,252,255,255,255,255,255,243,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,72,80,252,255,255,255,255,255, 171,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,195,81,252,255,255,255,255,255,117,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,8,82,252,255,255,255,255,255,175,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,135,82,252,255,255,255,255,255,201,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,32,83,252,255,255,255,255,255,10,3,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,250,85,252,255,255,255,255,255,150,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,96,86,252,255,255,255,255,255,150,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,198,86,252,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,228,86,252,255,255,255,255,255,115,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,39,87,252,255,255,255,255,255,18,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,9,87,252,255,255,255,255,255,18,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,235,86,252,255,255,255,255,255,18,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,205,86,252,255,255,255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,149,86,252,255,255,255,255,255,75,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,176,86,252,255,255,255,255,255,46,1,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,174,87,252,255,255,255,255,255,21,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,147,88,252,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,125,88,252,255,255,255,255,255,121,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,198,90,252,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,194,90,252,255,255,255,255,255,74,7,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,220,97,252,255,255,255,255,255,170,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,86,98,252,255,255,255,255,255,97,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,135,99,252,255,255,255,255,255,121,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,44,0,0,0,252,1,0,0,208,100,252,255,255,255,255,255,23,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,183,100,252,255,255,255,255,255,15,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,92,2,0,0,150,100,252,255,255,255,255,255,15,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,117,100,252,255,255,255,255,255,90,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188, 2,0,0,159,100,252,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,117,100,252,255,255,255,255,255,18,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,87,101, 252,255,255,255,255,255,226,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,9,103,252,255,255,255,255,255,144,6,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,124,3,0,0,105,109,252,255, 255,255,255,255,145,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,172,3,0,0,202,111,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,200,111,252,255,255,255, 255,255,94,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,246,111,252,255,255,255,255,255,97,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,39,112,252,255,255,255,255,255,58, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,49,112,252,255,255,255,255,255,178,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,179,112,252,255,255,255,255,255,49,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,180,112,252,255,255,255,255,255,5,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,252,4,0,0,137,113,252,255,255,255,255,255,38,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,127,113,252,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,117,113,252,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,114,113,252,255,255,255,255,255,20,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,86,113,252,255, 255,255,255,255,11,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,49,113,252,255,255,255,255,255,11,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,12,113,252,255,255,255,255, 255,132,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,96,113,252,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0, 0,44,0,0,0,28,0,0,0,30,113,252,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,244,112,252,255,255,255,255,255,54,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124, 0,0,0,250,114,252,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,208,114,252,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,166, 114,252,255,255,255,255,255,122,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,240,114,252,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,60,1,0,0,198,114,252,255, 255,255,255,255,8,9,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,10,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,116,1,0,0,150,123,252,255,255,255,255,255,168,7,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122, 82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,246,130,252,255,255,255,255,255,128,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,70,131,252,255,255,255,255,255,24,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,46,133,252,255,255,255,255,255,47,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,45,133,252,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,23,133,252,255,255,255,255,255,88,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,63,133,252,255,255,255,255,255,85,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,60,1,0,0,100,133,252,255,255,255,255,255,45,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,97,133,252,255,255,255,255,255,60,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0, 156,1,0,0,109,133,252,255,255,255,255,255,184,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,204,1,0,0,245,133,252,255,255,255,255,255,72,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1, 0,0,13,134,252,255,255,255,255,255,189,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,154,134,252,255,255,255,255,255,205,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,55,135, 252,255,255,255,255,255,163,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,170,135,252,255,255,255,255,255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,162,135,252,255, 255,255,255,255,5,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,119,137,252,255,255,255,255,255,93,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,164,138,252,255,255,255,255, 255,93,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,209,140,252,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,182,140,252,255,255,255,255,255,218,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,96,141,252,255,255,255,255,255,135,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,220,3,0,0,183,144,252,255,255,255,255,255,35,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,170,144,252,255,255,255,255,255,165,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,60,4,0,0,31,146,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,29,146,252,255,255,255,255,255,20,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,1,146,252,255,255,255,255,255,1,1,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,210,146,252,255,255,255,255,255,103,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,9,147,252,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,241,146,252,255,255,255,255,255,211,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,148,147,252,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,5,148,252,255,255,255,255,255,57,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,14,148,252,255,255,255,255,255,182,9,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,236,5,0,0,148,157,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,6,0,0,132,157,252,255,255,255,255,255,155,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,76,6,0,0,239,157,252,255,255,255,255,255,76,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,243,157,252,255,255,255,255,255,91,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,30,158,252,255,255,255,255,255,73,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,55,158,252,255,255,255,255,255,96,6,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,172,0,0,0,103,164,252,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,93,164,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,91,164,252,255,255,255,255,255,117,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,160,164,252,255,255,255,255,255,102,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,214,164,252,255,255,255,255,255,129,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,15,166,252,255,255,255,255,255, 16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,239,165,252,255,255,255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,207,165,252,255,255,255,255,255,13,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,172,165,252,255,255,255,255,255,13,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,137,165,252,255,255,255,255,255,13,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,102,165,252,255,255,255,255,255,13,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,67,165,252,255,255,255,255,255,13,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,32,165,252,255,255,255,255,255,13,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,253,164,252,255,255,255,255,255,13,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,218,164,252,255,255,255,255,255,83,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,253,164,252,255,255,255,255,255,23,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,228,164,252,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,204,164,252,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,140,2,0,0,180,164,252,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,156,164,252,255,255,255,255,255,224,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0, 131,3,44,0,0,0,236,2,0,0,76,165,252,255,255,255,255,255,66,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,28,3,0,0,94,168,252,255,255,255,255,255,129,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,76,3,0,0,175,169,252,255,255,255,255,255,137,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,124,3,0,0,8,170,252,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172, 3,0,0,42,170,252,255,255,255,255,255,171,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,165,171,252,255,255,255,255,255,27,17,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,144, 188,252,255,255,255,255,255,11,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,107,188,252,255,255,255,255,255,89,6,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,108,4,0,0,148,194,252, 255,255,255,255,255,50,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,126,194,252,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,140,194,252,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,154,194,252,255,255,255,255,255,51,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,52,0,0,0,172,0,0,0,157,194,252,255,255,255,255,255,187,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,9,0,0,0,131,5,140,4,141,3,0,0,0,0,44,0,0,0,228,0,0,0,32,196,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,1,0,0,30,196,252,255,255,255,255,255,157,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,1,0,0,139,196,252,255,255,255,255,255,6,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,116,1,0,0,97,197,252,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,1,0,0,87,197,252,255,255,255,255,255,201,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,212,1,0,0,240,197,252,255,255,255,255,255,94,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,2,0,0,30,198,252,255,255,255,255,255,92,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0, 52,2,0,0,74,198,252,255,255,255,255,255,211,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,2,0,0,237,198,252,255,255,255,255,255,136,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,148,2, 0,0,69,202,252,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,2,0,0,59,202,252,255,255,255,255,255,142,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,2,0,0,153,203, 252,255,255,255,255,255,172,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,3,0,0,21,205,252,255,255,255,255,255,101,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,3,0,0,74,205,252,255,255, 255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,3,0,0,47,205,252,255,255,255,255,255,157,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,180,3,0,0,156,207,252,255,255,255,255, 255,163,3,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,228,3,0,0,15,211,252,255,255,255,255,255,210,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,4,0,0,177,212,252,255,255,255,255,255,26, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,4,0,0,155,212,252,255,255,255,255,255,91,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,4,0,0,198,212,252,255,255,255,255,255,23,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,4,0,0,173,212,252,255,255,255,255,255,246,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,4,0,0,115,214,252,255,255,255,255,255,103,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,5,0,0,170,214,252,255,255,255,255,255,103,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,5,0,0,225,214,252,255,255,255,255,255,143,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,5,0,0,64,215,252,255,255,255,255,255,207,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,5,0,0,223,215,252,255,255,255,255,255,121,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,5,0,0,40,216,252,255,255,255,255,255,150,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,5,0,0,142,216,252,255,255,255,255,255,222,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,36,217,252,255,255,255,255,255,176,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,164,217,252,255,255,255,255,255, 174,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,34,218,252,255,255,255,255,255,226,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,212,218,252,255,255,255,255,255,0,1,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,164,219,252,255,255,255,255,255,226,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,86,220,252,255,255,255,255,255,60,1,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,98,221,252,255,255,255,255,255,36,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,86,222,252,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,73,222,252,255,255,255,255,255,146,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,171,222,252,255,255,255,255,255,79,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,202,222,252,255,255,255,255,255,94,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,248,222,252,255,255,255,255,255,41,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,241,223,252,255,255,255,255,255,63,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,0,225,252,255,255,255,255,255,97,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,188,2,0,0,49,226,252,255,255,255,255,255,98,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,99,226,252,255,255,255,255,255,41,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,28,3,0,0,92,227,252,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,80,227,252,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3, 0,0,76,227,252,255,255,255,255,255,89,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,93,227,252,255,255,255,255,255,41,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,86,227,252,255,255,255,255,255,80,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,118,228,252,255,255,255,255,255,238,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,52,230,252,255,255,255,255,255,88,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,92,230,252,255,255,255,255,255,24,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,12,1,0,0,68,231,252,255,255,255,255,255,47,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,67,231,252,255,255,255,255,255,143,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,108,1,0,0,162,231,252,255,255,255,255,255,152,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,10,232,252,255,255,255,255,255,148,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204, 1,0,0,110,232,252,255,255,255,255,255,53,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,115,232,252,255,255,255,255,255,164,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,231, 232,252,255,255,255,255,255,164,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,91,233,252,255,255,255,255,255,157,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,200,233,252, 255,255,255,255,255,157,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,29,234,252,255,255,255,255,255,133,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,114,234,252,255,255,255,255,255,103,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,169,234,252,255,255,255,255,255,129,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,172,0,0,0,250,234,252,255,255,255,255,255,129,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,75,235,252,255,255,255,255,255,108,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,12,1,0,0,135,235,252,255,255,255,255,255,108,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,195,235,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,108,1,0,0,193,235,252,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,187,235,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204, 1,0,0,185,235,252,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,179,235,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,177, 235,252,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,171,235,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,169,235,252,255, 255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,163,235,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,161,235,252,255,255,255, 255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,155,235,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,153,235,252,255,255,255,255,255,42, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,147,235,252,255,255,255,255,255,90,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44, 0,0,0,28,0,0,0,165,237,252,255,255,255,255,255,91,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,208,237,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124, 0,0,0,192,237,252,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,193,237,252,255,255,255,255,255,64,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,209, 237,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,193,237,252,255,255,255,255,255,55,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,200,237,252,255, 255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,222,237,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,206,237,252,255,255,255, 255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,207,237,252,255,255,255,255,255,64,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,223,237,252,255,255,255,255,255, 32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,207,237,252,255,255,255,255,255,93,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,252,237,252,255,255,255,255,255,108,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,56,238,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,40,238,252,255,255,255,255,255,89,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,81,238,252,255,255,255,255,255,104,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,137,238,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,121,238,252,255,255,255,255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,160,238,252,255,255,255,255,255,102,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,214,238,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,198,238,252,255,255,255,255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,237,238,252,255,255,255,255,255,102,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,35,239,252,255,255,255,255,255,91,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,108,4,0,0,78,239,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,62,239,252,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,204,4,0,0,96,239,252,255,255,255,255,255,97,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,145,239,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,44,5,0,0,129,239,252,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,163,239,252,255,255,255,255,255,97,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0, 0,212,239,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,196,239,252,255,255,255,255,255,80,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,5,0,0,228,239, 252,255,255,255,255,255,95,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,6,0,0,19,240,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,6,0,0,3,240,252,255,255,255, 255,255,80,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,6,0,0,35,240,252,255,255,255,255,255,95,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,6,0,0,82,240,252,255,255,255,255,255,32, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,6,0,0,66,240,252,255,255,255,255,255,80,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,7,0,0,98,240,252,255,255,255,255,255,95,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,7,0,0,145,240,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,7,0,0,129,240,252,255,255,255,255,255,80,0,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,7,0,0,161,240,252,255,255,255,255,255,95,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,7,0,0,208,240,252,255,255,255,255,255,91,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,7,0,0,251,240,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,8,0,0,235,240,252,255,255,255,255,255,59,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,8,0,0,246,240,252,255,255,255,255,255,74,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,8,0,0,16,241,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,188,8,0,0,0,241,252,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,8,0,0,34,241,252,255,255,255,255,255,97,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,28,9,0,0,83,241,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,9,0,0,67,241,252,255,255,255,255,255,59,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124, 9,0,0,78,241,252,255,255,255,255,255,74,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,9,0,0,104,241,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,9,0,0,88, 241,252,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,10,0,0,122,241,252,255,255,255,255,255,97,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,10,0,0,171,241,252, 255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,10,0,0,155,241,252,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,10,0,0,168,241,252,255,255, 255,255,255,76,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,10,0,0,196,241,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,10,0,0,180,241,252,255,255,255,255, 255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,11,0,0,193,241,252,255,255,255,255,255,76,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,11,0,0,221,241,252,255,255,255,255,255,32,0, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,11,0,0,205,241,252,255,255,255,255,255,97,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,11,0,0,254,241,252,255,255,255,255,255,112,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,11,0,0,62,242,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,12,0,0,46,242,252,255,255,255,255,255,108,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,12,0,0,106,242,252,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,12,0,0,96,242,252,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,12,0,0,80,242,252,255,255,255,255,255,116,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,12,0,0,148,242,252,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,13,0,0,138,242,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,13,0,0,136,242,252,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4, 3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,13,0,0,130,242,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,13,0,0,128,242,252,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,13,0,0,122,242,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,13,0,0,120,242,252,255,255,255,255,255,108,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,44,14,0,0,180,242,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,14,0,0,178,242,252,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,140,14,0,0,172,242,252,255,255,255,255,255,75,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,14,0,0,199,242,252,255,255,255,255,255,122,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,236,14,0,0,17,243,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,15,0,0,15,243,252,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,76,15,0,0,49,243,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,15,0,0,47,243,252,255,255,255,255,255,92,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,15, 0,0,91,243,252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,15,0,0,89,243,252,255,255,255,255,255,77,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,16,0,0,118,243, 252,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,16,0,0,116,243,252,255,255,255,255,255,48,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,16,0,0,116,243,252,255, 255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,16,0,0,114,243,252,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,16,0,0,135,243,252,255,255,255, 255,255,110,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,16,0,0,197,243,252,255,255,255,255,255,138,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,17,0,0,31,244,252,255,255,255,255,255, 153,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,17,0,0,136,244,252,255,255,255,255,255,133,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,140,17,0,0,221,244,252,255,255,255,255,255,195, 14,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,88,3,253,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,76,0,0,0,118,3,253,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,114,3,253,255,255,255,255,255,59,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0, 125,3,253,255,255,255,255,255,167,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,220,0,0,0,244,3,253,255,255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,36,4,253,255, 255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,18,4,253,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,6,4,253,255,255,255,255,255, 51,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,9,4,253,255,255,255,255,255,167,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,204,1,0,0,128,4,253,255,255,255,255,255,97,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,177,4,253,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,164,4,253,255,255,255,255,255,51,0,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,167,4,253,255,255,255,255,255,58,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,177,4,253,255,255,255,255,255,92,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,221,4,253,255,255,255,255,255,144,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,236,2,0,0,61,5,253,255,255,255,255,255,64,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,77,5,253,255,255,255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,45,5,253,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,124,3,0,0,24,5,253,255,255,255,255,255,212,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,172,3,0,0,188,5,253,255,255,255,255,255,48,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,220,3,0,0,188,5,253,255,255,255,255,255,58,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,198,5,253,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,206, 5,253,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,214,5,253,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,236,5,253,255,255, 255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,2,6,253,255,255,255,255,255,77,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,31,6,253,255,255,255,255,255,243, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,44,5,0,0,226,6,253,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,205,6,253,255,255,255,255,255,37,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,194,6,253,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,181,6,253,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,5,0,0,168,6,253,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,6,0,0,169,6,253,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,6,0,0,170,6,253,255,255,255,255,255,73,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,6,0,0,195,6,253,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,52,0,0,0,172,6,0,0,178,6,253,255,255,255,255,255,252,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,228,6,0,0,118,7,253,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,7,0,0,151,7,253,255,255,255,255,255,76,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,7,0,0,179,7,253,255,255,255,255,255,121,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,116,7,0,0,252,7,253,255,255,255,255,255,114,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,7,0,0,62,8,253,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,212,7,0,0,56,8,253,255,255,255,255,255,240,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,8,0,0,248,9,253,255,255,255,255,255,43,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,52, 8,0,0,243,10,253,255,255,255,255,255,197,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,8,0,0,136,11,253,255,255,255,255,255,182,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,8,0,0,14, 14,253,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,8,0,0,8,14,253,255,255,255,255,255,88,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,244,8,0,0,48,15,253,255,255, 255,255,255,134,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,44,9,0,0,126,15,253,255,255,255,255,255,189,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,9,0,0,11,18,253, 255,255,255,255,255,91,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,9,0,0,54,19,253,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,9,0,0,52,19,253,255,255,255, 255,255,141,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,9,0,0,145,19,253,255,255,255,255,255,80,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,10,0,0,177,19,253,255,255,255,255,255,81, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,10,0,0,210,19,253,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,10,0,0,208,19,253,255,255,255,255,255,187,0,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,10,0,0,91,20,253,255,255,255,255,255,158,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,220,10,0,0,201,20,253,255,255,255,255,255,210,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,20,11,0,0,99,21,253,255,255,255,255,255,193,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,11,0,0,244,22,253,255,255,255,255,255,251,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,11,0,0,191,23,253,255,255,255,255,255,187,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,11,0,0,74,24,253,255,255,255,255,255,42,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,212,11,0,0,68,24,253,255,255,255,255,255,134,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,12,12,0,0,146,24,253,255,255,255,255,255,101,2, 0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,12,0,0,199,26,253,255,255,255,255,255,83,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,12,0,0,234,27,253,255,255,255,255,255,160,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,12,0,0,90,28,253,255,255,255,255,255,38,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,12,0,0,80,28,253,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,12,0,0,88,28,253,255,255,255,255,255,55,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,13,0,0,95,28,253,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,13,0,0,103,28,253,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,140,13,0,0,97,28,253,255,255,255,255,255,252,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,196,13,0,0,37,29,253,255,255,255,255,255,76,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,13,0,0,65,29,253,255,255,255,255,255,48,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,14,0,0,65,29,253,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,14,0,0,73,29,253,255,255,255,255,255,58,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,14,0,0,83,29,253,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,14,0,0,91,29,253,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,228,14,0,0,113,29,253,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,15,0,0,135,29,253,255,255,255,255,255,201,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0, 131,3,44,0,0,0,68,15,0,0,32,30,253,255,255,255,255,255,105,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,15,0,0,89,30,253,255,255,255,255,255,74,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,164,15,0,0,115,30,253,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,212,15,0,0,173,30,253,255,255,255,255,255,109,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0, 0,4,16,0,0,234,30,253,255,255,255,255,255,90,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,16,0,0,20,31,253,255,255,255,255,255,119,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,16,0, 0,91,31,253,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,16,0,0,64,31,253,255,255,255,255,255,149,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,16,0,0,165,31, 253,255,255,255,255,255,56,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,16,0,0,173,32,253,255,255,255,255,255,130,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,17,0,0,255,32,253,255, 255,255,255,255,85,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,17,0,0,36,34,253,255,255,255,255,255,224,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,17,0,0,212,34,253,255,255,255,255, 255,39,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,17,0,0,203,34,253,255,255,255,255,255,175,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,228,17,0,0,74,35,253,255,255,255,255,255,117, 0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,18,0,0,143,35,253,255,255,255,255,255,58,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,18,0,0,153,35,253,255,255,255,255,255,38,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,18,0,0,143,35,253,255,255,255,255,255,167,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,164,18,0,0,6,36,253,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,18,0,0,19,36,253,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,19,0,0,7,36,253,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,19,0,0,29,36,253,255,255,255,255,255,25,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,19,0,0,6,36,253,255,255,255,255,255,175,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0, 0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,148,19,0,0,133,36,253,255,255,255,255,255,118,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,19,0,0,203,36,253,255,255,255,255,255,110,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,244,19,0,0,9,37,253,255,255,255,255,255,77,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,20,0,0,38,37,253,255,255,255,255,255,75,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,44,0,0,0,84,20,0,0,65,37,253,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,20,0,0,99,37,253,255,255,255,255,255,39,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0, 0,0,180,20,0,0,90,37,253,255,255,255,255,255,28,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,20,0,0,70,37,253,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,20,21, 0,0,49,37,253,255,255,255,255,255,235,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,76,21,0,0,228,37,253,255,255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0, 0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,252,37,253,255,255,255,255,255,88,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,36,40,253,255,255,255,255,255,108,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,96,40,253,255,255,255,255,255,133,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,181,40,253,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,160,40,253,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,144,40,253,255,255,255,255,255,80,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,176,40,253,255,255,255,255,255,71,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,199,40,253,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,156,1,0,0,213,40,253,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,196,40,253,255,255,255,255,255,25,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3, 44,0,0,0,252,1,0,0,173,41,253,255,255,255,255,255,158,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,27,42,253,255,255,255,255,255,101,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92, 2,0,0,80,42,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,62,42,253,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,49,42, 253,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,32,42,253,255,255,255,255,255,170,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,28,3,0,0,154,42,253,255,255, 255,255,255,174,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,24,43,253,255,255,255,255,255,101,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,77,43,253,255,255,255,255,255, 30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,59,43,253,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,46,43,253,255,255,255,255,255,31,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,29,43,253,255,255,255,255,255,170,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,60,4,0,0,151,43,253,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,165,43,253,255,255,255,255,255,37,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,154,43,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,136,43,253,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,150,43,253,255,255,255,255,255,37,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,139,43,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,121,43,253,255,255,255,255,255,100,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,173,43,253,255,255,255,255,255,88,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,213,43,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,44,0,0,0,236,5,0,0,195,43,253,255,255,255,255,255,126,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,28,6,0,0,17,45,253,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0, 0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,227,44,253,255,255,255,255,255,51,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,230,45,253,255,255,255,255,255,88,0,0,0,0,0,0,0,0,4,1,0,0,0, 14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,14,46,253,255,255,255,255,255,92,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,58,46,253,255,255,255,255,255,108,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,118,46,253,255,255,255,255,255,236,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,50,47,253,255,255,255,255,255,131,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,133,47,253,255,255,255,255,255,182,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,108,1,0,0,11,48,253,255,255,255,255,255,11,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,206,47,253,255,255,255,255,255,83,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,241,47,253,255,255,255,255,255,64,0,0,0,0,0, 0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,1,48,253,255,255,255,255,255,171,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,124,48,253,255,255,255,255,255,181,1,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,1,50,253,255,255,255,255,255,231,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,184,51,253,255,255,255,255,255,100,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,236,51,253,255,255,255,255,255,196,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,128,53,253,255,255,255,255,255,115,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,195,53,253,255,255,255,255,255,125,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,16,54,253,255,255,255,255,255,106,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,74,55,253,255,255,255,255,255,144,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,170,56,253,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0, 0,0,52,0,0,0,92,2,0,0,149,56,253,255,255,255,255,255,168,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,148,2,0,0,5,57,253,255,255,255,255,255,125,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,196,2,0,0,82,57,253,255,255,255,255,255,98,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,2,0,0,132,58,253,255,255,255,255,255,152,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,36,3,0,0,236,59,253,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,84,3,0,0,215,59,253,255,255,255,255,255,168,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0, 0,0,0,0,0,44,0,0,0,140,3,0,0,71,60,253,255,255,255,255,255,146,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,169,60,253,255,255,255,255,255,172,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131, 3,44,0,0,0,236,3,0,0,37,61,253,255,255,255,255,255,11,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,4,0,0,0,62,253,255,255,255,255,255,159,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0, 76,4,0,0,111,62,253,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,4,0,0,112,62,253,255,255,255,255,255,105,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,4,0,0, 169,62,253,255,255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,4,0,0,170,62,253,255,255,255,255,255,139,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,5,0,0,5,63,253,255, 255,255,255,255,49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,5,0,0,6,63,253,255,255,255,255,255,43,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,5,0,0,1,63,253,255,255,255,255,255, 55,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,5,0,0,8,63,253,255,255,255,255,255,139,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,5,0,0,99,63,253,255,255,255,255,255,127,1,0,0,0, 0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,5,0,0,178,64,253,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28, 0,0,0,176,64,253,255,255,255,255,255,100,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,228,64,253,255,255,255,255,255,100,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,24, 65,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,6,65,253,255,255,255,255,255,100,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,58,65,253,255,255, 255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,40,65,253,255,255,255,255,255,36,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,60,1,0,0,28,66,253,255,255,255,255,255, 115,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,95,66,253,255,255,255,255,255,115,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,162,66,253,255,255,255,255,255,155,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,13,67,253,255,255,255,255,255,221,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,186,67,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,44,2,0,0,168,67,253,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,100,2,0,0,17,68,253,255,255,255,255,255,161,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,2,0,0,130,68,253,255,255,255,255,255,254,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,2,0,0,80,69,253,255,255,255,255,255,9,1,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,2,0,0,41,70,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,36,3,0,0,23,70,253,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,92,3,0,0,128,70,253,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,3,0,0,241,70,253,255,255,255,255,255,128,0,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,65,71,253,255,255,255,255,255,163,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,3,0,0,180,71,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,28,4,0,0,162,71,253,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,84,4,0,0,11,72,253,255,255,255,255,255,130,0,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,4,0,0,93,72,253,255,255,255,255,255,128,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,4,0,0,173,72,253,255,255,255,255,255,163,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,4,0,0,32,73,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,20,5,0,0,14,73,253,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,76,5,0,0,119,73,253,255,255,255,255,255,126,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,5,0,0,197,73,253,255,255,255,255,255,128,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,5,0,0,21,74,253,255,255,255,255,255,163,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,5,0,0,136,74,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,52,0,0,0,12,6,0,0,118,74,253,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,68,6,0,0,223,74,253,255,255,255,255,255,126,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,6,0,0,45,75,253,255,255,255,255,255,155,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,6,0,0,152,75,253,255,255,255,255,255,221,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,212,6,0,0,69,76,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,4,7,0,0,51,76,253,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0, 0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,60,7,0,0,156,76,253,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,7,0,0,13,77,253,255,255,255,255,255,105,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,156,7,0,0,70,77,253,255,255,255,255,255,105,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,7,0,0,127,77,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,52,0,0,0,252,7,0,0,109,77,253,255,255,255,255,255,161,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,52,8,0,0,214,77,253,255,255,255,255,255,230,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,100,8,0,0,140,78,253,255,255,255,255,255,121,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,8,0,0,213,78,253,255,255,255,255,255,105,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,196,8,0,0,14,79,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,8,0,0,252,78,253,255,255,255,255,255,154,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3, 44,0,0,0,36,9,0,0,102,79,253,255,255,255,255,255,113,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,9,0,0,167,79,253,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132, 9,0,0,200,79,253,255,255,255,255,255,64,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,9,0,0,216,79,253,255,255,255,255,255,141,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,228,9,0,0,53, 80,253,255,255,255,255,255,115,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,10,0,0,120,80,253,255,255,255,255,255,107,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,10,0,0,179,80,253,255, 255,255,255,255,133,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,116,10,0,0,8,81,253,255,255,255,255,255,113,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,10,0,0,73,81,253,255,255,255, 255,255,107,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,10,0,0,132,81,253,255,255,255,255,255,141,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,4,11,0,0,225,81,253,255,255,255,255,255, 81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,11,0,0,2,82,253,255,255,255,255,255,146,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,11,0,0,100,82,253,255,255,255,255,255,133,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,148,11,0,0,185,82,253,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,11,0,0,218,82,253,255,255,255,255,255,105,0,0,0,0,0,0, 0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,11,0,0,19,83,253,255,255,255,255,255,133,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,36,12,0,0,104,83,253,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,12,0,0,137,83,253,255,255,255,255,255,94,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,12,0,0,183,83,253,255,255,255,255,255,133,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,180,12,0,0,12,84,253,255,255,255,255,255,110,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,12,0,0,74,84,253,255,255,255,255,255,107,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,13,0,0,133,84,253,255,255,255,255,255,133,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,68,13,0,0,218,84,253,255,255,255,255,255,160,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,116,13,0,0,74,85,253,255,255,255,255,255,191,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,13,0,0,217,85,253,255,255,255,255,255,237,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,212,13,0,0,150,86,253,255,255,255,255,255,115,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,14,0,0,217,86,253,255,255,255,255,255,77,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0, 0,0,0,52,0,0,0,52,14,0,0,246,86,253,255,255,255,255,255,211,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,108,14,0,0,145,87,253,255,255,255,255,255,101,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,156,14,0,0,198,87,253,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,14,0,0,228,87,253,255,255,255,255,255,86,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,252,14,0,0,10,88,253,255,255,255,255,255,59,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,15,0,0,21,89,253,255,255,255,255,255,4,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,92,15,0,0,233,92,253,255,255,255,255,255,163,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,15,0,0,92,93,253,255,255,255,255,255,71,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188, 15,0,0,115,93,253,255,255,255,255,255,43,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,236,15,0,0,110,93,253,255,255,255,255,255,211,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0, 44,0,0,0,36,16,0,0,9,94,253,255,255,255,255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,84,16,0,0,48,94,253,255,255,255,255,255,81,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132, 16,0,0,81,95,253,255,255,255,255,255,86,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,16,0,0,119,95,253,255,255,255,255,255,64,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,16,0,0,135, 95,253,255,255,255,255,255,189,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,20,17,0,0,20,96,253,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1, 120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,54,96,253,255,255,255,255,255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,46,96,253,255,255,255,255,255,92,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,90,96,253,255,255,255,255,255,218,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,4,97,253,255,255,255,255,255,39,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,220,0,0,0,251,96,253,255,255,255,255,255,156,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,12,1,0,0,103,97,253,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0, 0,60,1,0,0,101,97,253,255,255,255,255,255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,93,97,253,255,255,255,255,255,111,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0, 156,97,253,255,255,255,255,255,93,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,201,97,253,255,255,255,255,255,53,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,252,1,0,0,206,97,253, 255,255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,52,2,0,0,246,97,253,255,255,255,255,255,206,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,2,0,0,148, 98,253,255,255,255,255,255,81,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,2,0,0,181,98,253,255,255,255,255,255,106,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,196,2,0,0,239,98,253, 255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,244,2,0,0,218,98,253,255,255,255,255,255,190,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,36,3,0,0,104,99,253,255,255,255, 255,255,115,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,84,3,0,0,171,99,253,255,255,255,255,255,130,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,132,3,0,0,253,99,253,255,255,255,255,255, 28,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,180,3,0,0,233,99,253,255,255,255,255,255,65,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,3,0,0,250,99,253,255,255,255,255,255,115,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,20,4,0,0,61,100,253,255,255,255,255,255,130,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,68,4,0,0,143,100,253,255,255,255,255,255,36,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,107,100,253,255,255,255,255,255,101,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0, 160,100,253,255,255,255,255,255,218,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,74,102,253,255,255,255,255,255,32,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,58,102,253, 255,255,255,255,255,64,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,74,102,253,255,255,255,255,255,245,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,15,104,253,255,255,255, 255,255,23,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,60,1,0,0,246,103,253,255,255,255,255,255,246,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,116,1,0,0,180,104,253, 255,255,255,255,255,55,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,1,0,0,187,104,253,255,255,255,255,255,199,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,8,0,0,0,131,3,44,0,0,0,212,1,0,0,82,106,253,255,255, 255,255,255,190,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,2,0,0,224,106,253,255,255,255,255,255,243,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,2,0,0,163,109,253,255,255,255,255,255, 49,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,100,2,0,0,164,109,253,255,255,255,255,255,112,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,156,2,0,0,220,109,253,255,255, 255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,164,109,253,255,255,255,255,255,199,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0, 0,0,0,0,0,0,44,0,0,0,76,0,0,0,59,110,253,255,255,255,255,255,75,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,86,110,253,255,255,255,255,255,225,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,172,0,0,0,7,113,253,255,255,255,255,255,51,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,10,113,253,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0, 12,1,0,0,4,113,253,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,2,113,253,255,255,255,255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,41,113, 253,255,255,255,255,255,48,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,41,113,253,255,255,255,255,255,39,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,32,113,253,255,255, 255,255,255,54,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,38,113,253,255,255,255,255,255,191,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,181,113,253,255,255,255,255,255, 29,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,2,0,0,162,114,253,255,255,255,255,255,47,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,161,114,253,255,255,255,255,255,243,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,2,0,0,100,115,253,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,108,115,253,255,255,255,255,255,184,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0,244,115,253,255,255,255,255,255,49,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,245,116,253,255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,218,116,253,255,255,255,255,255,30,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,200,116,253,255,255,255,255,255,162,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,34,121,253,255,255,255,255,255,36,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,22,121,253,255,255, 255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,1,121,253,255,255,255,255,255,48,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,1,121,253,255,255,255,255,255, 42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,251,120,253,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,230,120,253,255,255,255,255,255,27,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,209,120,253,255,255,255,255,255,152,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,52,0,0,0,108,1,0,0,57,121,253,255,255,255,255,255,14,1,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,164,1,0,0,15,122,253,255,255,255,255,255,71,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,212,1,0,0,38,122,253,255,255,255,255,255,67,0,0, 0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,2,0,0,57,122,253,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,52,2,0,0,40,122,253,255,255,255,255,255,26,0,0,0,0,0,0,0,0,4, 1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,2,0,0,18,122,253,255,255,255,255,255,53,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,148,2,0,0,23,122,253,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,196,2,0,0,2,122,253,255,255,255,255,255,163,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,52,0,0,0,244,2,0,0,117,122,253,255,255,255,255,255,228,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134, 2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,44,3,0,0,33,123,253,255,255,255,255,255,53,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,3,0,0,38,124,253,255,255,255,255,255,231,1,0,0,0,0,0,0,0,4,1,0,0,0,14, 16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,3,0,0,221,125,253,255,255,255,255,255,40,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,3,0,0,213,125,253,255,255,255,255,255,41,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2, 4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,3,0,0,206,125,253,255,255,255,255,255,56,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,4,0,0,214,125,253,255,255,255,255,255,27,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,76,4,0,0,193,125,253,255,255,255,255,255,253,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,52,0,0,0,124,4,0,0,142,126,253,255,255,255,255,255,11,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4, 7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,180,4,0,0,97,127,253,255,255,255,255,255,28,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,228,4,0,0,77,127,253,255,255,255,255,255,45,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0, 0,13,6,0,0,0,0,0,0,0,44,0,0,0,20,5,0,0,74,127,253,255,255,255,255,255,120,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,68,5,0,0,146,127,253,255,255,255,255,255,150,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 4,5,0,0,0,131,3,44,0,0,0,116,5,0,0,248,127,253,255,255,255,255,255,74,4,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,164,5,0,0,18,132,253,255,255,255,255,255,152,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,212,5,0,0,122,132,253,255,255,255,255,255,132,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,4,6,0,0,206,133,253,255,255,255,255,255,251,2,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,52,6,0,0,153,136,253,255,255,255,255,255,42,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,100,6,0,0,147,136,253,255,255,255,255,255,60,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0, 148,6,0,0,159,136,253,255,255,255,255,255,203,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,44,0,0,0,204,6,0,0,50,137,253,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,9,137,253,255,255,255,255,255,208,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,169,137,253,255,255,255,255,255,208,0,0,0,0,0,0,0,0, 4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,73,138,253,255,255,255,255,255,169,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,194,138,253,255,255,255,255,255,175,0,0,0,0,0,0,0,0,4,1,0,0, 0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,65,139,253,255,255,255,255,255,169,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,186,139,253,255,255,255,255,255,208,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,90,140,253,255,255,255,255,255,126,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,168,140,253,255,255,255,255,255,10,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,130,140,253,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,88,140,253,255,255,255,255,255,22,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6, 0,0,0,0,0,0,0,44,0,0,0,252,1,0,0,62,140,253,255,255,255,255,255,24,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,38,140,253,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0, 0,44,0,0,0,92,2,0,0,252,139,253,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,210,139,253,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0, 188,2,0,0,168,139,253,255,255,255,255,255,6,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,126,139,253,255,255,255,255,255,16,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,3,0,0, 94,139,253,255,255,255,255,255,15,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,61,139,253,255,255,255,255,255,15,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,28,139,253, 255,255,255,255,255,21,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,233,138,253,255,255,255,255,255,52,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0, 13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,237,138,253,255,255,255,255,255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,251,138,253,255,255,255,255,255,63,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0, 0,0,0,0,0,44,0,0,0,172,0,0,0,10,139,253,255,255,255,255,255,14,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,232,138,253,255,255,255,255,255,70,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0, 44,0,0,0,12,1,0,0,254,138,253,255,255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,28,139,253,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108, 1,0,0,11,139,253,255,255,255,255,255,59,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,52,0,0,0,156,1,0,0,22,139,253,255,255,255,255,255,210,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,7,0,0,0,131,4,140,3,0,0,0,0,0,0,20, 0,0,0,0,0,0,0,1,122,82,0,1,120,16,1,16,12,7,8,144,1,0,0,44,0,0,0,28,0,0,0,152,139,253,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,0,0,0,139,139,253,255,255,255,255,255,253,0,0,0,0,0,0,0,0,4,1, 0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,0,0,0,88,140,253,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,0,0,0,75,140,253,255,255,255,255,255,51,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,0,0,0,78,140,253,255,255,255,255,255,151,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,1,0,0,181,140,253,255,255,255,255,255,42,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,1,0,0,175,141,253,255,255,255,255,255,44,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,1,0,0,171,141,253,255,255,255,255,255,46,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,0,0,0,0,0,0,0,44,0,0,0,156,1,0,0,169,141,253,255,255,255,255,255,159,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,1,0,0,24,143,253,255,255,255,255,255,118,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,44,0,0,0,252,1,0,0,94,144,253,255,255,255,255,255,134,1,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,2,0,0,180,145,253,255,255,255,255,255,35,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44, 0,0,0,92,2,0,0,167,145,253,255,255,255,255,255,69,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,2,0,0,188,145,253,255,255,255,255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188, 2,0,0,227,145,253,255,255,255,255,255,82,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,2,0,0,5,146,253,255,255,255,255,255,99,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,4,5,0,0,0,131,3,44,0,0,0,28,3,0,0,56, 146,253,255,255,255,255,255,31,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,76,3,0,0,39,146,253,255,255,255,255,255,23,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,3,0,0,14,146,253,255, 255,255,255,255,78,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,172,3,0,0,44,146,253,255,255,255,255,255,72,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,220,3,0,0,68,146,253,255,255,255,255, 255,62,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,12,4,0,0,82,146,253,255,255,255,255,255,11,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,60,4,0,0,45,146,253,255,255,255,255,255,32,0,0,0, 0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,108,4,0,0,29,146,253,255,255,255,255,255,111,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,156,4,0,0,92,146,253,255,255,255,255,255,111,0,0,0,0,0,0,0, 0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,204,4,0,0,155,146,253,255,255,255,255,255,84,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,252,4,0,0,191,146,253,255,255,255,255,255,96,0,0,0,0,0,0,0,0,4,1,0, 0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,44,5,0,0,239,146,253,255,255,255,255,255,84,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,92,5,0,0,19,147,253,255,255,255,255,255,111,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16, 134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,140,5,0,0,82,147,253,255,255,255,255,255,90,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,188,5,0,0,124,147,253,255,255,255,255,255,87,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3, 0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,236,5,0,0,163,147,253,255,255,255,255,255,90,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,28,6,0,0,205,147,253,255,255,255,255,255,61,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13, 6,4,5,0,0,0,131,3,44,0,0,0,76,6,0,0,218,147,253,255,255,255,255,255,23,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0,0,0,0,0,44,0,0,0,124,6,0,0,193,147,253,255,255,255,255,255,43,0,0,0,0,0,0,0,0,4,1,0,0,0,14,16,134,2,4,3,0,0,0,13,6,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,91,9,0,0,0,0,0,134,89,9,0,0,0,0,0,144,89,9,0,0,0,0,0,52,91,9,0,0,0,0,0,62,91,9,0,0,0,0,0,72,91,9,0,0,0,0,0,92,91,9,0,0,0,0,0,102,91,9,0,0,0,0,0,112,91,9,0,0,0, 0,0,122,91,9,0,0,0,0,0,132,91,9,0,0,0,0,0,142,91,9,0,0,0,0,0,152,91,9,0,0,0,0,0,162,91,9,0,0,0,0,0,170,88,9,0,0,0,0,0,160,88,9,0,0,0,0,0,150,88,9,0,0,0,0,0,158,90,9,0,0,0,0,0,94,89,9,0,0,0,0,0,198,90,9,0,0,0,0,0,168,90,9,0,0,0,0,0,178,90,9,0,0,0,0,0, 188,90,9,0,0,0,0,0,32,91,9,0,0,0,0,0,172,91,9,0,0,0,0,0,154,89,9,0,0,0,0,0,148,90,9,0,0,0,0,0,138,90,9,0,0,0,0,0,128,90,9,0,0,0,0,0,22,91,9,0,0,0,0,0,12,91,9,0,0,0,0,0,20,88,9,0,0,0,0,0,10,88,9,0,0,0,0,0,0,88,9,0,0,0,0,0,246,87,9,0,0,0,0,0,236,87,9,0, 0,0,0,0,226,87,9,0,0,0,0,0,216,87,9,0,0,0,0,0,206,87,9,0,0,0,0,0,196,87,9,0,0,0,0,0,186,87,9,0,0,0,0,0,176,87,9,0,0,0,0,0,166,87,9,0,0,0,0,0,156,87,9,0,0,0,0,0,146,87,9,0,0,0,0,0,240,88,9,0,0,0,0,0,250,88,9,0,0,0,0,0,74,89,9,0,0,0,0,0,84,89,9,0,0,0,0, 0,164,89,9,0,0,0,0,0,174,89,9,0,0,0,0,0,254,89,9,0,0,0,0,0,38,90,9,0,0,0,0,0,108,90,9,0,0,0,0,0,98,90,9,0,0,0,0,0,88,90,9,0,0,0,0,0,78,90,9,0,0,0,0,0,68,90,9,0,0,0,0,0,58,90,9,0,0,0,0,0,48,90,9,0,0,0,0,0,118,90,9,0,0,0,0,0,184,89,9,0,0,0,0,0,194,89,9, 0,0,0,0,0,204,89,9,0,0,0,0,0,214,89,9,0,0,0,0,0,224,89,9,0,0,0,0,0,234,89,9,0,0,0,0,0,244,89,9,0,0,0,0,0,8,90,9,0,0,0,0,0,18,90,9,0,0,0,0,0,28,90,9,0,0,0,0,0,34,89,9,0,0,0,0,0,24,89,9,0,0,0,0,0,14,89,9,0,0,0,0,0,4,89,9,0,0,0,0,0,210,88,9,0,0,0,0,0,200, 88,9,0,0,0,0,0,64,89,9,0,0,0,0,0,54,89,9,0,0,0,0,0,44,89,9,0,0,0,0,0,248,90,9,0,0,0,0,0,2,91,9,0,0,0,0,0,220,88,9,0,0,0,0,0,230,88,9,0,0,0,0,0,238,90,9,0,0,0,0,0,82,91,9,0,0,0,0,0,96,87,9,0,0,0,0,0,106,87,9,0,0,0,0,0,30,88,9,0,0,0,0,0,40,88,9,0,0,0,0, 0,80,88,9,0,0,0,0,0,100,88,9,0,0,0,0,0,90,88,9,0,0,0,0,0,126,87,9,0,0,0,0,0,116,87,9,0,0,0,0,0,180,88,9,0,0,0,0,0,190,88,9,0,0,0,0,0,104,89,9,0,0,0,0,0,114,89,9,0,0,0,0,0,124,89,9,0,0,0,0,0,136,87,9,0,0,0,0,0,50,88,9,0,0,0,0,0,60,88,9,0,0,0,0,0,70,88, 9,0,0,0,0,0,228,90,9,0,0,0,0,0,218,90,9,0,0,0,0,0,208,90,9,0,0,0,0,0,110,88,9,0,0,0,0,0,120,88,9,0,0,0,0,0,130,88,9,0,0,0,0,0,140,88,9,0,0,0,0,0,216,216,8,0,0,0,0,0,217,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,222,216, 8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,226,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,230,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,234,216,8,0,0,0,0, 0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,238,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,241,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,244,216,8,0,0,0,0,0,216,216, 8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,249,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,252,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,255,216,8,0,0,0,0,0,216,216,8,0,0,0,0, 0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,216,216,8,0,0,0,0,0,0,0,0,0,0,0,0,0,94,80,2,0,0,0,0,0,187,80,2,0,0,0,0,0,207,80,2,0,0,0,0,0,232,80,2,0,0,0,0,0,249,80,2,0,0,0,0,0,7,81,2,0,0,0,0,0,59,81,2,0,0,0,0,0,240,56,11,0,0,0,0,0,240, 56,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,233,8,0,0,0,0,0,48,233,8,0,0,0,0,0,54,233,8,0,0,0,0,0,72,233,8,0,0,0,0,0,77,233,8,0,0,0,0,0,83,233,8,0,0,0,0,0,90,233,8,0,0,0,0,0,0,0,0,0,0,0,0,0,220,132,3,0,0,0,0,0,22,135,3,0,0,0,0, 0,175,135,3,0,0,0,0,0,171,136,3,0,0,0,0,0,237,136,3,0,0,0,0,0,135,116,3,0,0,0,0,0,149,139,3,0,0,0,0,0,0,0,0,0,0,0,0,0,188,155,4,0,0,0,0,0,186,159,4,0,0,0,0,0,253,158,4,0,0,0,0,0,164,162,4,0,0,0,0,0,181,162,4,0,0,0,0,0,195,162,4,0,0,0,0,0,245,166,4,0, 0,0,0,0,0,0,0,0,0,0,0,0,169,210,4,0,0,0,0,0,99,212,4,0,0,0,0,0,139,212,4,0,0,0,0,0,175,212,4,0,0,0,0,0,27,214,4,0,0,0,0,0,160,219,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,233,4,0,0,0,0,0,83,239,4,0,0,0,0,0,123,239,4,0,0,0,0,0,159,239,4,0,0,0,0, 0,195,239,4,0,0,0,0,0,64,255,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,5,5,0,0,0,0,0,64,8,5,0,0,0,0,0,104,8,5,0,0,0,0,0,164,8,5,0,0,0,0,0,224,8,5,0,0,0,0,0,207,15,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,59,5,0,0,0,0,0,82,61,5,0,0,0,0,0, 37,62,5,0,0,0,0,0,192,62,5,0,0,0,0,0,13,63,5,0,0,0,0,0,52,63,5,0,0,0,0,0,49,64,5,0,0,0,0,0,0,0,0,0,0,0,0,0,153,59,5,0,0,0,0,0,202,51,5,0,0,0,0,0,37,62,5,0,0,0,0,0,192,62,5,0,0,0,0,0,13,63,5,0,0,0,0,0,39,52,5,0,0,0,0,0,49,64,5,0,0,0,0,0,0,0,0,0,0,0,0, 0,240,56,11,0,0,0,0,0,0,0,0,0,0,0,0,0,230,23,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,39,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,42,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,82,9,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,40,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,39,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,211,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,35,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,228,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,216,216,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,55,11,0,0,0,0,0,176,55,11,0,0,0,0,0,208,55,11,0,0,0,0,0,240,55,11,0,0,0,0,0,16,56,11,0,0,0,0,0,48,56,11,0,0,0,0,0,80,56,11,0,0, 0,0,0,112,56,11,0,0,0,0,0,144,56,11,0,0,0,0,0,176,56,11,0,0,0,0,0,208,56,11,0,0,0,0,0,240,56,11,0,0,0,0,0,231,45,9,0,0,0,0,0,239,45,9,0,0,0,0,0,251,45,9,0,0,0,0,0,7,46,9,0,0,0,0,0,18,46,9,0,0,0,0,0,240,56,11,0,0,0,0,0,191,83,7,0,0,0,0,0,0,0,0,0,0,0,0, 0,40,57,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,57,9,0,0,0,0,0,158,57,9,0,0,0,0,0,192,57,9,0,0,0,0,0,240,57,9,0,0,0,0,0,56,58,9,0,0,0,0,0,104,58,9,0,0,0,0,0,160,58,9,0,0,0,0,0,240,58,9,0,0,0,0,0,48,59,9,0,0,0,0,0,112,59,9,0,0, 0,0,0,176,59,9,0,0,0,0,0,248,59,9,0,0,0,0,0,64,60,9,0,0,0,0,0,112,60,9,0,0,0,0,0,160,60,9,0,0,0,0,0,240,60,9,0,0,0,0,0,40,61,9,0,0,0,0,0,86,61,9,0,0,0,0,0,98,61,9,0,0,0,0,0,102,61,9,0,0,0,0,0,136,61,9,0,0,0,0,0,216,61,9,0,0,0,0,0,16,62,9,0,0,0,0,0,88, 62,9,0,0,0,0,0,136,62,9,0,0,0,0,0,184,62,9,0,0,0,0,0,236,62,9,0,0,0,0,0,0,63,9,0,0,0,0,0,48,63,9,0,0,0,0,0,112,63,9,0,0,0,0,0,184,63,9,0,0,0,0,0,240,63,9,0,0,0,0,0,32,64,9,0,0,0,0,0,80,64,9,0,0,0,0,0,144,64,9,0,0,0,0,0,192,64,9,0,0,0,0,0,8,65,9,0,0,0, 0,0,88,65,9,0,0,0,0,0,160,65,9,0,0,0,0,0,208,65,9,0,0,0,0,0,0,66,9,0,0,0,0,0,72,66,9,0,0,0,0,0,120,66,9,0,0,0,0,0,184,66,9,0,0,0,0,0,8,67,9,0,0,0,0,0,88,67,9,0,0,0,0,0,152,67,9,0,0,0,0,0,200,67,9,0,0,0,0,0,0,68,9,0,0,0,0,0,80,68,9,0,0,0,0,0,128,68,9, 0,0,0,0,0,184,68,9,0,0,0,0,0,240,68,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,139,10,63,247,129,2,63,141,158,0,63,133,39,0,63,223,9,0,63,120,2,0,63,158,0,0,63,39,0,0,63,10,0,0,63,2,0,0,63,1,0,0,63,0,0,0,63,0,0,0, 63,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,4,53,63,94,131,108,63,190,20,123,63,109,196,126,63,15,177,127,63,67,236,127,63,17,251,127,63,196,254,127,63,177,255,127,63,236,255,127,63,251,255,127,63,255,255,127, 63,0,0,128,63,0,0,128,63,0,0,128,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,63,243,4,53,63,21,239,195,62,194,197,71,62,54,189,200,61,48,251,72,61,176,10,201,60,144,14,73,60,136,15,201,59,198,15,73,59,213,15,201,58,217, 15,73,58,218,15,201,57,219,15,73,57,219,15,201,56,219,15,73,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,4,53,63,94,131,108,63,190,20,123,63,109,196,126,63,15,177,127,63,67,236,127,63,17,251,127,63,196,254,127,63,177, 255,127,63,236,255,127,63,251,255,127,63,255,255,127,63,0,0,128,63,0,0,128,63,0,0,128,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,63,243,4,53,63,21,239,195,62,194,197,71,62,54,189,200,61,48,251,72,61,176,10,201,60,144,14, 73,60,136,15,201,59,198,15,73,59,213,15,201,58,217,15,73,58,218,15,201,57,219,15,73,57,219,15,201,56,219,15,73,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,1,0,0,64,14,172,68,0,0,0,0,0,0,83,83,78,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,252,252,252,0,160,160,160,0,64,64,64,0,224,224,252,0,192,224,252,0,200,252,252,0,216,252,216,0,252,252,216,0,252,228,220,0,252,216,248,0,224,224,224,0,124,124,124,0,32,32,32,0,40,40,252,0,68,172,252,0,40,232,232,0,20,232,20,0,244,244,40,0,252,80,60, 0,240,48,244,0,188,188,188,0,96,96,96,0,0,0,0,0,8,8,140,0,0,48,88,0,20,40,120,0,20,80,40,0,80,68,0,0,136,20,0,0,80,0,88,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0, 1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2, 0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0, 0,0,2,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0, 0,5,0,0,0,5,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0, 8,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,14,0, 0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,17,0,0,0,17,0,0,0,17,0,0,0,18,0,0,0,18,0,0,0,18,0,0,0,19,0,0,0,19,0,0,0,19,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,21,0,0,0,21,0,0,0,22,0,0,0,22,0,0,0,23,0,0,0,23,0,0,0,24,0,0,0,24, 0,0,0,25,0,0,0,26,0,0,0,27,0,0,0,28,0,0,0,29,0,0,0,30,0,0,0,31,0,0,0,32,0,0,0,33,0,0,0,33,0,0,0,34,0,0,0,34,0,0,0,35,0,0,0,35,0,0,0,36,0,0,0,36,0,0,0,37,0,0,0,37,0,0,0,37,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,39, 0,0,0,40,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0, 15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,14,0,0,0,14,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,19,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35, 78,32,99,97,110,118,97,115,32,48,32,48,32,52,53,56,32,49,53,51,32,49,48,59,10,35,88,32,111,98,106,32,52,51,32,51,49,32,115,116,114,117,99,116,32,95,102,108,111,97,116,95,97,114,114,97,121,32,97,114,114,97,121,32,122,32,102,108,111,97,116,32,102,108,111, 97,116,32,115,116,121,108,101,10,102,108,111,97,116,32,108,105,110,101,119,105,100,116,104,32,102,108,111,97,116,32,99,111,108,111,114,59,10,35,88,32,111,98,106,32,52,51,32,55,48,32,112,108,111,116,32,122,32,99,111,108,111,114,32,108,105,110,101,119, 105,100,116,104,32,48,32,48,32,49,32,115,116,121,108,101,59,10,0,0,0,0,0,35,78,32,99,97,110,118,97,115,32,48,32,48,32,52,53,56,32,49,53,51,32,49,48,59,10,35,88,32,111,98,106,32,51,57,32,50,54,32,115,116,114,117,99,116,32,102,108,111,97,116,32,102,108, 111,97,116,32,121,59,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,39,0,0,232,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,203,64,64,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,10,0,0,0,20,0,0,0,30,0,0,0,50,0,0,0,100,0,0,0,232,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,171,170,50,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,5,0,0,0,9,0,0,0,10,0,0,0,6,0,0,0,10,0,0, 0,12,0,0,0,7,0,0,0,13,0,0,0,14,0,0,0,9,0,0,0,17,0,0,0,16,0,0,0,10,0,0,0,19,0,0,0,24,0,0,0,15,0,0,0,28,0,0,0,24,0,0,0,15,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,100,95,102,97,116,0,46,112,100,95,100,97,114,119,105,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,49,50,58,48,53,58,53,49,0,77,97,114,32,50,55,32,50,48,49,49,0,0,0,0,255,255,255,255,0,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,111,110,97,99,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,111,114,109,97,108,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,8,0,0,0,6,0,0,0,10, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,7,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,9,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,10,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,15,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,25,0,0,0, 45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,27,93,205,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,33,40,96,158,1,65,89,67,87,65,87,65,87,65,86,66,86,66,86,66,87,65,87, 65,112,8,128,11,24,112,40,96,19,65,112,24,96,53,0,17,64,95,95,68,101,102,97,117,108,116,82,117,110,101,76,111,99,97,108,101,0,81,113,0,144,64,95,95,95,115,116,97,99,107,95,99,104,107,95,103,117,97,114,100,0,144,64,95,95,95,115,116,100,101,114,114,112, 0,144,64,100,121,108,100,95,115,116,117,98,95,98,105,110,100,101,114,0,144,0,113,40,17,64,95,95,95,101,114,114,111,114,0,144,0,113,48,17,64,95,95,95,109,97,115,107,114,117,110,101,0,144,0,113,56,17,64,95,95,95,109,101,109,99,112,121,95,99,104,107,0,144, 0,113,64,17,64,95,95,95,109,101,109,109,111,118,101,95,99,104,107,0,144,0,113,72,17,64,95,95,95,109,101,109,115,101,116,95,99,104,107,0,144,0,113,80,17,64,95,95,95,115,110,112,114,105,110,116,102,95,99,104,107,0,144,0,113,88,17,64,95,95,95,115,112,114, 105,110,116,102,95,99,104,107,0,144,0,113,96,17,64,95,95,95,115,116,97,99,107,95,99,104,107,95,102,97,105,108,0,144,0,113,104,17,64,95,95,95,115,116,114,99,97,116,95,99,104,107,0,144,0,113,112,17,64,95,95,95,115,116,114,99,112,121,95,99,104,107,0,144, 0,113,120,17,64,95,95,95,115,116,114,110,99,97,116,95,99,104,107,0,144,0,113,128,1,17,64,95,95,95,115,116,114,110,99,112,121,95,99,104,107,0,144,0,113,136,1,17,64,95,95,95,118,115,110,112,114,105,110,116,102,95,99,104,107,0,144,0,113,144,1,17,64,95,95, 101,120,105,116,0,144,0,113,152,1,17,64,95,97,99,99,101,112,116,0,144,0,113,160,1,17,64,95,97,116,97,110,50,0,144,0,113,168,1,17,64,95,97,116,97,110,50,102,0,144,0,113,176,1,17,64,95,97,116,97,110,102,0,144,0,113,184,1,17,64,95,97,116,111,102,0,144,0, 113,192,1,17,64,95,97,116,111,105,0,144,0,113,200,1,17,64,95,97,116,111,108,0,144,0,113,208,1,17,64,95,98,105,110,100,0,144,0,113,216,1,17,64,95,98,122,101,114,111,0,144,0,113,224,1,17,64,95,99,97,108,108,111,99,0,144,0,113,232,1,17,64,95,99,108,111, 115,101,0,144,0,113,240,1,17,64,95,99,111,110,110,101,99,116,0,144,0,113,248,1,17,64,95,99,111,115,0,144,0,113,128,2,17,64,95,99,111,115,102,0,144,0,113,136,2,17,64,95,100,108,101,114,114,111,114,0,144,0,113,144,2,17,64,95,100,108,111,112,101,110,0,144, 0,113,152,2,17,64,95,100,108,115,121,109,0,144,0,113,160,2,17,64,95,101,120,101,99,108,0,144,0,113,168,2,17,64,95,101,120,105,116,0,144,0,113,176,2,17,64,95,101,120,112,0,144,0,113,184,2,17,64,95,101,120,112,102,0,144,0,113,192,2,17,64,95,102,99,108, 111,115,101,0,144,0,113,200,2,17,64,95,102,100,111,112,101,110,0,144,0,113,208,2,17,64,95,102,108,111,111,114,0,144,0,113,216,2,17,64,95,102,111,112,101,110,0,144,0,113,224,2,17,64,95,102,111,114,107,0,144,0,113,232,2,17,64,95,102,112,114,105,110,116, 102,0,144,0,113,240,2,17,64,95,102,112,117,116,99,0,144,0,113,248,2,17,64,95,102,112,117,116,115,0,144,0,113,128,3,17,64,95,102,114,101,97,100,0,144,0,113,136,3,17,64,95,102,114,101,101,0,144,0,113,144,3,17,64,95,102,115,99,97,110,102,0,144,0,113,152, 3,17,64,95,102,115,116,97,116,36,73,78,79,68,69,54,52,0,144,0,113,160,3,17,64,95,102,119,114,105,116,101,0,144,0,113,168,3,17,64,95,103,101,116,99,119,100,0,144,0,113,176,3,17,64,95,103,101,116,101,110,118,0,144,0,113,184,3,17,64,95,103,101,116,104,111, 115,116,98,121,110,97,109,101,0,144,0,113,192,3,17,64,95,103,101,116,116,105,109,101,111,102,100,97,121,0,144,0,113,200,3,17,64,95,103,101,116,117,105,100,0,144,0,113,208,3,17,64,95,103,108,111,98,36,73,78,79,68,69,54,52,0,144,0,113,216,3,17,64,95,108, 105,115,116,101,110,0,144,0,113,224,3,17,64,95,108,111,103,0,144,0,113,232,3,17,64,95,108,111,103,49,48,0,144,0,113,240,3,17,64,95,108,111,103,102,0,144,0,113,248,3,17,64,95,108,115,101,101,107,0,144,0,113,128,4,17,64,95,109,97,108,108,111,99,0,144,0, 113,136,4,17,64,95,109,101,109,99,112,121,0,144,0,113,144,4,17,64,95,109,101,109,115,101,116,0,144,0,113,152,4,17,64,95,111,112,101,110,0,144,0,113,160,4,17,64,95,112,99,108,111,115,101,0,144,0,113,168,4,17,64,95,112,101,114,114,111,114,0,144,0,113,176, 4,17,64,95,112,111,112,101,110,0,144,0,113,184,4,17,64,95,112,111,119,0,144,0,113,192,4,17,64,95,112,111,119,102,0,144,0,113,200,4,17,64,95,112,116,104,114,101,97,100,95,99,111,110,100,95,100,101,115,116,114,111,121,0,144,0,113,208,4,17,64,95,112,116, 104,114,101,97,100,95,99,111,110,100,95,105,110,105,116,0,144,0,113,216,4,17,64,95,112,116,104,114,101,97,100,95,99,111,110,100,95,115,105,103,110,97,108,0,144,0,113,224,4,17,64,95,112,116,104,114,101,97,100,95,99,111,110,100,95,119,97,105,116,0,144, 0,113,232,4,17,64,95,112,116,104,114,101,97,100,95,99,114,101,97,116,101,0,144,0,113,240,4,17,64,95,112,116,104,114,101,97,100,95,106,111,105,110,0,144,0,113,248,4,17,64,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,100,101,115,116,114,111, 121,0,144,0,113,128,5,17,64,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,105,110,105,116,0,144,0,113,136,5,17,64,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,108,111,99,107,0,144,0,113,144,5,17,64,95,112,116,104,114,101,97,100,95, 109,117,116,101,120,95,116,114,121,108,111,99,107,0,144,0,113,152,5,17,64,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,117,110,108,111,99,107,0,144,0,113,160,5,17,64,95,112,116,104,114,101,97,100,95,115,101,108,102,0,144,0,113,168,5,17,64, 95,112,116,104,114,101,97,100,95,115,101,116,115,99,104,101,100,112,97,114,97,109,0,144,0,113,176,5,17,64,95,114,101,97,100,0,144,0,113,184,5,17,64,95,114,101,97,108,108,111,99,0,144,0,113,192,5,17,64,95,114,101,99,118,0,144,0,113,200,5,17,64,95,115, 101,108,101,99,116,36,49,48,53,48,0,144,0,113,208,5,17,64,95,115,101,110,100,0,144,0,113,216,5,17,64,95,115,101,116,105,116,105,109,101,114,0,144,0,113,224,5,17,64,95,115,101,116,115,111,99,107,111,112,116,0,144,0,113,232,5,17,64,95,115,101,116,117,105, 100,0,144,0,113,240,5,17,64,95,115,105,103,97,99,116,105,111,110,0,144,0,113,248,5,17,64,95,115,105,103,110,97,108,0,144,0,113,128,6,17,64,95,115,105,110,0,144,0,113,136,6,17,64,95,115,105,110,102,0,144,0,113,144,6,17,64,95,115,108,101,101,112,0,144, 0,113,152,6,17,64,95,115,110,112,114,105,110,116,102,0,144,0,113,160,6,17,64,95,115,111,99,107,101,116,0,144,0,113,168,6,17,64,95,115,115,99,97,110,102,0,144,0,113,176,6,17,64,95,115,116,97,116,36,73,78,79,68,69,54,52,0,144,0,113,184,6,17,64,95,115,116, 114,99,104,114,0,144,0,113,192,6,17,64,95,115,116,114,99,109,112,0,144,0,113,200,6,17,64,95,115,116,114,101,114,114,111,114,0,144,0,113,208,6,17,64,95,115,116,114,108,101,110,0,144,0,113,216,6,17,64,95,115,116,114,110,99,109,112,0,144,0,113,224,6,17, 64,95,115,116,114,110,99,112,121,0,144,0,113,232,6,17,64,95,115,116,114,114,99,104,114,0,144,0,113,240,6,17,64,95,115,116,114,115,116,114,0,144,0,113,248,6,17,64,95,115,116,114,116,111,108,0,144,0,113,128,7,17,64,95,115,121,115,116,101,109,0,144,0,113, 136,7,17,64,95,116,105,109,101,115,0,144,0,113,144,7,17,64,95,118,115,110,112,114,105,110,116,102,0,144,0,113,152,7,17,64,95,119,114,105,116,101,0,144,0,0,0,0,1,95,0,5,0,23,112,0,103,115,0,156,1,100,0,185,2,109,0,165,3,116,0,175,4,111,0,144,5,101,0,235, 8,99,0,197,9,102,0,240,11,98,0,176,12,108,0,131,13,110,0,222,13,113,0,172,20,114,0,176,22,97,0,224,23,117,0,133,25,122,0,168,27,105,0,251,27,103,0,174,36,104,0,178,66,118,0,198,68,119,111,114,100,95,0,161,75,120,95,0,198,127,0,3,108,0,116,111,0,162,14, 100,0,150,15,0,2,117,115,95,112,101,114,102,0,134,1,111,116,95,0,147,79,0,2,111,114,109,0,146,1,56,0,151,1,3,0,142,29,0,3,0,145,30,0,0,9,99,0,228,1,116,0,182,13,104,111,114,116,95,116,111,95,102,108,111,97,116,0,144,15,105,103,0,245,16,111,0,247,26,121, 0,170,95,101,108,101,99,116,95,115,101,116,117,112,0,138,129,1,119,97,112,95,115,101,116,117,112,0,150,129,1,95,0,213,141,1,0,2,97,108,97,114,0,244,1,104,101,100,95,0,162,99,0,5,112,108,117,115,95,112,101,114,102,0,163,2,109,0,244,3,116,105,109,101,115, 95,112,101,114,102,0,250,4,111,118,101,114,95,112,101,114,102,0,197,5,95,0,205,75,0,2,111,114,109,0,175,2,56,0,180,2,3,0,244,33,0,3,0,236,34,0,0,6,115,112,95,0,228,2,95,0,214,6,98,116,111,0,250,21,111,0,221,24,114,97,119,110,117,109,98,101,114,95,0,196, 79,117,109,109,121,95,0,195,114,0,2,97,100,100,0,243,2,116,105,99,107,0,245,27,0,2,95,0,252,2,0,229,27,0,4,112,108,117,115,0,160,3,115,99,97,108,97,114,99,111,112,121,0,229,8,99,111,112,121,0,208,10,122,101,114,111,0,217,27,3,0,231,37,0,0,6,105,110,0, 202,3,97,0,219,5,116,111,102,0,170,21,121,95,0,204,70,101,115,115,95,105,110,105,116,0,160,94,95,0,162,103,0,2,117,115,95,112,101,114,102,0,222,3,95,112,101,114,102,0,168,6,0,2,111,114,109,0,234,3,56,0,239,3,3,0,145,45,0,3,0,154,46,0,0,2,105,110,0,133, 4,97,120,95,112,101,114,102,0,146,6,0,2,117,115,95,112,101,114,102,0,153,4,95,112,101,114,102,0,190,6,0,2,111,114,109,0,165,4,56,0,170,4,3,0,253,49,0,3,0,245,50,0,0,5,105,109,101,115,95,112,101,114,102,0,228,4,97,98,0,212,7,104,114,101,115,104,111,108, 100,95,116,105,108,100,101,95,100,115,112,0,185,9,101,0,226,64,111,103,103,108,101,95,0,231,81,0,2,111,114,109,0,240,4,56,0,245,4,3,0,150,61,0,3,0,153,62,0,0,2,111,114,109,0,134,5,56,0,139,5,3,0,252,65,0,3,0,244,66,0,0,4,118,101,114,95,112,101,114,102, 0,175,5,112,101,110,95,0,179,26,98,106,95,0,213,97,117,116,0,185,98,0,2,111,114,109,0,187,5,56,0,192,5,3,0,149,77,0,3,0,190,78,0,0,2,111,114,109,0,209,5,56,0,214,5,3,0,215,85,0,3,0,238,86,0,0,2,120,95,0,233,5,121,101,114,95,0,157,11,0,2,112,101,114,102, 0,252,5,100,101,102,97,117,108,116,0,148,95,0,2,111,114,109,0,136,6,56,0,141,6,3,0,177,97,0,3,0,218,98,0,0,2,111,114,109,0,158,6,56,0,163,6,3,0,195,105,0,3,0,223,106,0,0,2,111,114,109,0,180,6,56,0,185,6,3,0,232,119,0,3,0,149,121,0,0,2,111,114,109,0,202, 6,56,0,208,6,4,0,158,128,1,0,4,0,190,129,1,0,0,9,97,114,0,175,7,99,116,108,95,115,101,116,117,112,0,191,9,100,0,214,10,102,0,252,10,103,108,111,98,97,108,95,115,101,116,117,112,0,166,20,109,0,152,24,111,115,99,95,115,101,116,117,112,0,215,24,115,111, 117,110,100,102,105,108,101,95,115,101,116,117,112,0,162,27,117,103,101,110,95,115,101,116,117,112,0,134,30,0,2,105,116,104,109,101,116,105,99,95,115,101,116,117,112,0,206,7,114,97,121,95,115,101,116,117,112,0,223,8,4,0,129,141,1,0,0,4,119,114,105,116, 101,95,0,136,8,112,108,97,121,95,116,105,108,100,101,95,115,101,116,0,164,8,114,101,97,100,0,170,8,111,115,99,52,95,116,105,108,100,101,95,115,101,116,0,211,8,0,2,116,105,108,100,101,95,115,101,116,0,158,8,115,101,116,117,112,0,217,8,4,0,224,144,1,0, 4,0,164,154,1,0,0,2,95,116,105,108,100,101,95,115,101,116,0,199,8,52,95,116,105,108,100,101,95,115,101,116,0,205,8,4,0,251,162,1,0,4,0,200,172,1,0,4,0,138,184,1,0,4,0,202,214,1,0,4,0,230,215,1,0,4,0,170,218,1,0,0,3,110,0,139,9,120,112,95,116,105,108, 100,101,95,112,101,114,102,111,114,109,0,212,23,114,114,111,114,0,134,125,0,2,118,95,116,105,108,100,101,95,0,160,9,100,112,111,115,116,0,128,125,0,2,115,101,116,117,112,0,179,9,99,108,97,115,115,0,230,145,1,4,0,164,144,2,0,4,0,206,151,2,0,4,0,159,155, 2,0,0,7,111,0,254,9,102,102,116,0,234,11,114,101,97,116,101,95,0,234,14,97,110,118,97,115,95,0,207,38,117,114,118,101,95,0,232,78,108,0,170,90,104,97,110,103,101,95,115,101,116,117,112,0,156,129,1,0,4,112,121,0,166,10,109,112,117,116,101,95,102,102,116, 0,216,13,110,102,95,105,110,105,116,0,142,95,115,95,116,97,98,108,101,0,216,146,1,0,2,95,112,101,114,102,0,184,10,98,121,116,101,115,0,237,96,0,2,111,114,109,0,196,10,56,0,202,10,4,0,168,163,2,0,4,0,135,164,2,0,4,0,170,166,2,0,0,2,97,99,95,115,101,116, 117,112,0,240,10,101,108,97,121,95,115,101,116,117,112,0,246,10,4,0,190,170,2,0,4,0,154,197,2,0,0,2,102,116,95,115,101,116,117,112,0,151,11,105,108,116,101,114,95,115,101,116,117,112,0,160,20,4,0,212,227,2,0,0,3,102,0,177,11,105,102,102,116,0,201,11, 114,101,97,108,0,207,11,0,2,104,116,0,189,11,102,116,0,195,11,4,0,238,227,2,0,4,0,177,131,3,0,4,0,191,134,3,0,0,2,102,102,116,0,222,11,105,102,102,116,0,228,11,4,0,205,137,3,0,4,0,148,139,3,0,4,0,185,140,3,0,0,5,102,116,95,99,108,101,97,114,0,170,12, 116,111,109,0,210,21,105,101,108,100,100,101,115,99,95,0,154,78,114,101,101,98,121,116,101,115,0,249,96,108,111,97,116,105,110,108,101,116,95,110,101,119,0,201,97,4,0,150,143,3,0,0,5,117,0,229,12,108,111,99,107,95,116,105,108,100,101,95,115,101,116,117, 112,0,223,27,110,103,95,0,206,44,105,110,98,117,102,95,0,190,87,97,110,103,95,115,101,116,117,112,0,132,129,1,0,2,105,108,100,95,102,102,116,95,110,101,116,119,111,114,107,0,253,12,103,0,158,125,4,0,231,143,3,0,0,2,111,0,141,13,105,0,173,50,0,2,97,100, 95,114,101,103,105,115,116,101,114,115,0,176,13,103,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,218,23,4,0,183,160,3,0,0,2,111,114,101,95,114,101,103,105,115,116,101,114,115,0,210,13,97,114,116,112,111,115,116,0,232,124,4,0,154,177,3,0,4, 0,159,194,3,0,0,3,101,0,247,13,117,108,108,102,110,0,220,94,97,109,101,108,105,115,116,95,0,135,122,0,2,116,95,0,130,14,119,0,133,94,0,2,97,108,108,111,99,0,150,14,100,101,97,108,108,111,99,0,156,14,4,0,165,200,3,0,4,0,233,203,3,0,0,3,119,0,190,14,105, 110,116,101,114,105,110,108,101,116,95,110,101,119,0,195,97,115,116,0,202,124,0,3,101,114,95,111,102,95,116,119,111,0,228,14,116,111,100,98,0,166,23,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,206,23,4,0,160,205,3,0,0,2,104,97,110,110,105, 110,103,0,132,15,114,101,99,116,97,110,103,117,108,97,114,0,138,15,4,0,215,205,3,0,4,0,219,206,3,0,4,0,134,207,3,0,0,4,95,0,200,15,105,110,116,95,115,101,116,117,112,0,242,128,1,102,108,111,97,116,95,115,101,116,117,112,0,248,128,1,115,121,109,98,111, 108,95,115,101,116,117,112,0,254,128,1,0,15,102,0,193,16,103,101,116,112,97,114,101,110,116,119,105,100,103,101,116,0,176,93,110,101,119,0,166,94,116,121,112,101,100,109,101,115,115,0,183,94,118,0,189,94,99,0,191,101,98,0,204,103,117,110,98,105,110,100, 0,224,103,115,0,242,103,112,0,153,104,100,111,108,111,97,100,98,97,110,103,0,197,104,108,105,115,116,0,227,104,105,110,105,116,0,233,104,101,114,114,111,114,0,146,125,111,98,106,101,99,116,109,97,107,101,114,0,244,147,1,0,5,102,116,0,239,16,111,114,119, 97,114,100,109,101,115,115,0,214,94,114,101,101,0,150,103,105,110,100,98,121,99,108,97,115,115,0,236,103,108,111,97,116,0,209,104,4,0,192,207,3,0,0,9,104,105,112,95,0,170,17,108,111,112,95,0,195,17,98,0,220,17,115,0,158,18,114,0,203,18,99,0,188,19,119, 114,97,112,95,0,145,21,118,99,102,95,0,190,24,110,97,108,0,147,28,0,2,115,101,116,117,112,0,189,17,99,108,97,115,115,0,138,146,1,4,0,199,215,3,0,0,2,115,101,116,117,112,0,214,17,99,108,97,115,115,0,144,146,1,4,0,190,223,3,0,0,2,112,95,0,236,17,105,113, 117,97,100,95,0,133,18,0,2,115,101,116,117,112,0,255,17,99,108,97,115,115,0,242,145,1,4,0,179,236,3,0,0,2,115,101,116,117,112,0,152,18,99,108,97,115,115,0,236,145,1,4,0,150,247,3,0,0,2,97,109,112,104,111,108,100,95,0,178,18,113,114,116,95,0,241,20,0, 2,115,101,116,117,112,0,197,18,99,108,97,115,115,0,168,146,1,4,0,211,253,3,0,0,3,112,111,108,101,95,0,234,18,122,101,114,111,95,0,131,19,115,113,114,116,95,115,101,116,117,112,0,235,20,0,2,115,101,116,117,112,0,253,18,99,108,97,115,115,0,150,146,1,4, 0,183,131,4,0,0,3,115,101,116,117,112,0,157,19,114,101,118,95,0,163,19,99,108,97,115,115,0,156,146,1,4,0,135,137,4,0,0,2,115,101,116,117,112,0,182,19,99,108,97,115,115,0,162,146,1,4,0,215,142,4,0,0,2,112,111,108,101,95,0,206,19,122,101,114,111,95,0,231, 19,0,2,115,101,116,117,112,0,225,19,99,108,97,115,115,0,248,145,1,4,0,247,151,4,0,0,3,115,101,116,117,112,0,129,20,114,101,118,95,0,135,20,99,108,97,115,115,0,254,145,1,4,0,219,160,4,0,0,2,115,101,116,117,112,0,154,20,99,108,97,115,115,0,132,146,1,4, 0,191,169,4,0,4,0,209,171,4,0,4,0,185,202,4,0,0,3,56,95,0,194,20,115,113,114,116,0,223,20,114,115,113,114,116,0,229,20,0,2,114,115,113,114,116,0,211,20,115,113,114,116,0,217,20,4,0,136,209,4,0,4,0,150,210,4,0,4,0,173,211,4,0,4,0,214,211,4,0,4,0,194,215, 4,0,0,2,112,101,114,102,111,114,109,0,133,21,115,101,116,117,112,0,139,21,4,0,174,217,4,0,4,0,184,220,4,0,0,2,115,101,116,117,112,0,164,21,99,108,97,115,115,0,210,146,1,4,0,161,224,4,0,0,2,95,116,105,108,100,101,95,0,185,21,0,162,127,0,2,115,101,116, 117,112,0,204,21,99,108,97,115,115,0,192,146,1,4,0,146,228,4,0,0,2,95,116,105,108,100,101,95,0,225,21,0,168,127,0,2,115,101,116,117,112,0,244,21,99,108,97,115,115,0,186,146,1,4,0,238,231,4,0,0,2,114,109,115,0,136,22,112,111,119,0,254,22,0,2,95,116,105, 108,100,101,95,0,151,22,0,192,127,0,2,115,101,116,117,112,0,170,22,99,108,97,115,115,0,180,146,1,4,0,206,235,4,0,0,4,109,115,116,111,100,98,0,214,22,101,115,0,208,25,116,101,120,116,95,0,181,73,111,117,116,101,95,115,101,116,117,112,0,144,129,1,0,2,95, 116,105,108,100,101,95,0,229,22,0,180,127,0,2,115,101,116,117,112,0,248,22,99,108,97,115,115,0,204,146,1,4,0,202,239,4,0,0,2,95,116,105,108,100,101,95,0,141,23,0,186,127,0,2,115,101,116,117,112,0,160,23,99,108,97,115,115,0,174,146,1,4,0,170,243,4,0,0, 2,95,116,105,108,100,101,95,0,181,23,0,174,127,0,2,115,101,116,117,112,0,200,23,99,108,97,115,115,0,198,146,1,4,0,166,247,4,0,4,0,146,249,4,0,4,0,252,252,4,0,4,0,171,128,5,0,0,4,98,115,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,146,24,114, 114,97,121,95,0,232,35,116,111,109,95,0,198,86,108,105,115,116,95,99,108,97,115,115,0,193,150,1,4,0,204,132,5,0,0,2,97,116,104,95,115,101,116,117,112,0,178,24,105,115,99,95,115,101,116,117,112,0,184,24,4,0,195,135,5,0,4,0,251,144,5,0,0,2,115,101,116, 117,112,0,209,24,99,108,97,115,115,0,222,146,1,4,0,183,178,5,0,4,0,176,183,5,0,0,2,119,110,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,48,0,255,24,103,101,110,115,121,109,0,236,93,4,0,207,183,5,0,0,3,112,115,97,109,112,108,105,110, 103,95,112,101,114,102,111,114,109,95,0,168,25,103,101,110,95,0,131,29,56,95,0,202,125,0,3,48,0,190,25,104,111,108,100,0,196,25,108,105,110,101,97,114,0,202,25,4,0,210,184,5,0,4,0,130,186,5,0,4,0,189,187,5,0,0,2,97,109,112,108,101,0,229,25,105,122,101, 98,121,116,101,115,0,243,96,0,3,95,0,255,25,102,114,111,109,95,100,115,112,0,167,26,116,111,95,100,115,112,0,173,26,0,3,105,110,105,116,0,149,26,102,114,101,101,0,155,26,100,115,112,0,161,26,4,0,189,190,5,0,4,0,192,191,5,0,4,0,156,193,5,0,4,0,144,197, 5,0,4,0,252,198,5,0,0,2,115,111,117,110,100,102,105,108,101,0,200,26,118,105,97,95,0,231,122,0,2,95,118,105,97,95,0,213,26,0,235,26,0,2,102,100,0,229,26,99,97,110,118,97,115,0,241,26,4,0,253,202,5,0,4,0,250,219,5,0,4,0,136,222,5,0,0,2,117,110,100,102, 105,108,101,114,95,100,111,119,114,105,116,101,0,156,27,99,107,101,116,114,101,99,101,105,118,101,114,95,0,152,116,4,0,178,199,6,0,4,0,236,177,7,0,0,3,101,114,111,95,112,101,114,102,0,193,27,103,101,116,102,110,0,136,95,122,0,230,103,0,2,111,114,109, 0,205,27,56,0,211,27,4,0,129,178,7,0,4,0,203,178,7,0,4,0,131,180,7,0,4,0,205,190,7,0,4,0,138,193,7,1,118,0,239,27,4,0,161,197,7,0,4,0,130,199,7,0,0,3,108,111,103,50,0,141,28,101,109,0,140,30,110,0,255,96,4,0,203,199,7,0,0,2,95,0,165,28,105,110,108,101, 116,95,110,101,119,0,183,97,0,4,99,0,206,28,109,97,107,101,114,101,117,115,97,98,108,101,0,235,28,110,101,119,0,241,28,115,101,116,98,111,114,114,111,119,101,100,0,247,28,0,2,108,101,97,110,117,112,0,229,28,111,109,112,97,116,105,98,108,101,0,253,28, 4,0,255,199,7,0,4,0,159,201,7,0,4,0,227,204,7,0,4,0,246,207,7,0,4,0,130,209,7,0,0,5,115,116,0,173,29,103,101,116,0,207,29,97,100,100,0,238,29,99,111,110,110,101,99,116,0,244,29,100,111,110,101,95,103,114,97,112,104,0,250,29,0,2,111,112,0,186,29,97,114, 116,0,192,29,4,0,204,209,7,0,4,0,142,210,7,1,95,103,114,97,112,104,0,232,29,0,2,115,111,114,116,110,111,0,226,29,105,111,115,105,103,0,128,30,4,0,240,210,7,0,4,0,252,210,7,0,4,0,145,212,7,0,4,0,175,214,7,0,4,0,208,235,7,0,4,0,245,132,8,0,4,0,154,136, 8,0,0,2,103,117,105,95,0,153,30,95,0,148,35,0,11,99,0,238,30,109,111,100,117,108,111,95,99,111,108,111,114,0,151,31,100,0,157,31,114,0,188,31,118,0,219,31,110,101,119,95,0,129,32,97,108,108,95,0,166,32,102,105,114,115,116,95,100,111,108,108,97,114,97, 114,103,50,115,121,109,0,247,32,115,0,199,33,108,97,98,101,108,0,243,33,112,0,177,34,0,2,108,105,112,95,0,251,30,111,0,158,33,0,2,115,105,122,101,0,139,31,102,111,110,116,0,145,31,4,0,170,136,8,0,4,0,195,136,8,0,4,0,220,136,8,0,0,3,111,108,108,97,114, 50,114,97,117,116,101,0,182,31,101,108,0,158,34,105,0,216,34,4,0,128,137,8,0,0,2,97,117,116,101,50,100,111,108,108,97,114,0,213,31,101,99,101,105,118,101,0,237,33,4,0,228,138,8,0,0,3,101,114,105,102,121,95,115,110,100,95,110,101,95,114,99,118,0,251,31, 105,115,0,252,34,117,95,0,141,141,1,4,0,200,140,8,0,0,2,100,111,103,101,116,110,97,109,101,0,154,32,103,101,116,110,97,109,101,115,0,160,32,4,0,199,141,8,0,4,0,150,143,8,0,0,4,100,111,108,108,97,114,0,214,32,115,121,109,50,100,111,108,108,97,114,97,114, 103,0,241,32,99,111,108,0,253,32,114,97,117,116,101,50,100,111,108,108,97,114,0,193,33,0,2,97,114,103,50,115,121,109,0,235,32,50,114,97,117,116,101,0,187,33,4,0,177,145,8,0,4,0,206,148,8,0,4,0,159,150,8,0,0,2,50,115,97,118,101,0,146,33,102,114,111,109, 108,111,97,100,0,152,33,4,0,173,150,8,0,4,0,145,152,8,0,0,2,109,112,97,116,105,98,108,101,95,99,111,108,0,181,33,108,111,114,0,202,34,4,0,147,156,8,0,4,0,227,156,8,0,4,0,195,157,8,0,0,3,101,0,217,33,105,122,101,0,152,34,97,118,101,0,130,35,0,2,110,100, 0,231,33,108,101,99,116,0,240,34,4,0,163,158,8,0,4,0,150,160,8,0,4,0,171,163,8,1,95,0,253,33,0,2,112,111,115,0,140,34,102,111,110,116,0,146,34,4,0,147,165,8,0,4,0,228,166,8,0,4,0,195,170,8,0,0,2,116,97,0,171,34,101,116,101,0,246,34,4,0,146,171,8,0,0, 2,111,115,0,196,34,114,111,112,101,114,116,105,101,115,0,136,35,4,0,194,172,8,0,4,0,210,173,8,1,95,104,101,120,0,147,143,1,0,2,115,112,108,97,99,101,0,234,34,97,108,111,103,0,142,35,4,0,179,175,8,0,4,0,171,176,8,0,4,0,128,177,8,0,4,0,159,177,8,0,4,0, 251,177,8,0,4,0,233,178,8,0,4,0,207,179,8,0,0,3,105,110,116,116,111,0,187,35,115,121,109,97,114,103,115,116,111,105,110,116,0,214,35,102,115,116,121,108,101,116,111,105,110,116,0,226,35,0,2,115,121,109,97,114,103,115,0,208,35,102,115,116,121,108,101, 0,220,35,4,0,194,194,8,0,4,0,171,196,8,0,4,0,223,196,8,0,4,0,195,198,8,0,0,5,110,101,119,0,140,36,114,101,0,146,36,102,114,101,101,0,168,36,103,101,116,0,156,42,100,111,99,108,105,99,107,0,186,42,4,0,247,199,8,0,0,2,115,105,122,101,0,162,36,100,114,97, 119,0,150,42,4,0,190,201,8,0,4,0,209,204,8,0,0,11,97,114,114,97,121,95,0,143,37,114,97,112,104,95,0,173,38,108,0,237,39,95,0,177,43,111,98,106,95,0,131,57,117,105,99,111,110,110,101,99,116,95,110,0,143,66,116,101,109,112,108,97,116,101,95,103,101,116, 0,148,78,115,116,117,98,95,0,248,82,112,111,105,110,116,101,114,95,0,149,83,101,0,242,93,102,120,115,116,117,98,95,0,233,129,1,0,12,105,110,105,116,0,130,38,103,101,116,0,136,38,112,114,111,112,101,114,116,105,101,115,0,231,39,97,0,182,41,117,115,101, 100,105,110,100,115,112,0,192,42,114,101,0,198,42,116,101,109,112,108,97,116,101,0,220,42,110,112,111,105,110,116,115,0,226,42,118,101,99,0,232,42,115,101,116,115,97,118,101,105,116,0,140,43,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,177, 141,1,99,108,97,115,115,0,228,146,1,4,0,236,205,8,0,0,3,97,114,114,97,121,0,161,38,110,97,109,101,0,167,38,102,108,111,97,116,0,238,42,4,0,193,210,8,0,4,0,191,213,8,0,0,2,97,114,114,97,121,0,201,38,119,105,100,103,101,116,98,101,104,97,118,105,111,114, 0,183,141,1,4,0,216,215,8,0,0,21,109,0,179,39,117,0,244,45,115,0,168,46,103,101,116,0,164,48,114,0,167,49,110,0,146,51,100,0,152,52,102,0,219,53,108,0,255,54,112,0,190,55,105,0,230,55,111,0,234,56,104,0,208,59,99,0,248,59,118,0,166,60,107,101,121,0,209, 61,101,100,105,116,0,177,62,97,0,190,63,119,0,136,73,98,110,103,0,206,80,116,111,103,103,108,101,0,212,80,0,5,101,110,117,0,207,39,97,0,249,49,111,0,159,61,121,99,110,118,0,132,81,115,103,0,150,81,0,2,97,114,114,97,121,0,225,39,99,108,111,115,101,0,141, 62,4,0,184,222,8,0,4,0,198,223,8,0,0,2,105,115,116,95,0,252,39,111,98,95,0,171,47,0,17,97,0,130,41,105,0,128,51,103,0,194,51,109,101,0,138,53,115,0,143,58,100,0,185,58,110,111,115,101,108,101,99,116,0,154,59,99,108,101,97,0,229,62,114,101,0,247,62,102, 0,170,63,112,105,120,101,108,115,116,111,0,170,64,120,116,111,112,105,120,101,108,115,0,192,64,121,116,111,112,105,120,101,108,115,0,198,64,119,114,105,116,101,116,111,98,105,110,98,117,102,0,169,73,116,101,120,116,0,182,80,101,114,97,115,101,105,111, 102,111,114,0,207,81,118,97,108,105,100,0,165,143,1,0,3,114,114,97,121,100,105,97,108,111,103,0,176,41,100,100,0,175,51,109,114,101,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,115,0,171,143,1,4,0,217,226,8,0,0,2,114,114,97,121, 0,204,41,109,98,105,103,101,110,100,105,97,110,0,146,43,0,2,100,105,97,108,111,103,0,227,41,118,105,101,119,108,105,115,116,95,0,233,41,4,0,243,228,8,0,0,3,110,101,119,0,132,42,102,105,108,108,112,97,103,101,0,138,42,99,108,111,115,101,0,144,42,4,0,213, 234,8,0,4,0,231,237,8,0,4,0,217,243,8,0,4,0,173,245,8,0,0,2,99,111,111,114,100,105,110,97,116,101,0,180,42,102,105,101,108,100,115,0,190,79,4,0,241,245,8,0,4,0,177,132,9,0,4,0,189,168,9,0,0,2,100,114,97,119,0,214,42,115,105,122,101,0,152,43,4,0,166,169, 9,0,4,0,135,170,9,0,4,0,232,170,9,0,4,0,137,171,9,0,0,2,119,111,114,100,115,0,128,43,97,114,114,97,121,0,134,43,4,0,172,171,9,0,4,0,222,172,9,0,4,0,170,173,9,0,4,0,220,201,9,0,0,2,95,108,111,110,103,0,165,43,0,171,43,4,0,252,201,9,0,4,0,186,203,9,0,0, 13,97,114,114,97,121,95,115,101,116,117,112,0,200,44,98,97,110,103,95,115,101,116,117,112,0,238,45,99,97,110,118,97,115,95,115,101,116,117,112,0,253,56,101,100,105,116,111,114,95,115,101,116,117,112,0,205,62,103,0,232,65,104,0,210,67,105,111,95,115,101, 116,117,112,0,198,70,109,121,99,97,110,118,97,115,95,115,101,116,117,112,0,211,71,110,117,109,98,111,120,95,115,101,116,117,112,0,195,72,114,101,97,100,119,114,105,116,101,95,115,101,116,117,112,0,175,73,115,99,97,108,97,114,95,115,101,116,117,112,0, 155,76,116,0,239,79,118,0,134,85,4,0,168,204,9,0,0,3,100,114,97,119,0,248,44,99,104,101,99,107,95,109,105,110,109,97,120,0,232,45,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,234,146,1,0,2,95,0,129,45,0,226,45,0,7,117,112,100,97,116,101,0, 184,45,110,101,119,0,190,45,109,111,118,101,0,196,45,101,114,97,115,101,0,202,45,99,111,110,102,105,103,0,208,45,105,111,0,214,45,115,101,108,101,99,116,0,220,45,4,0,178,213,9,0,4,0,159,214,9,0,4,0,161,219,9,0,4,0,165,223,9,0,4,0,239,224,9,0,4,0,169, 227,9,0,4,0,166,230,9,0,4,0,146,232,9,0,4,0,194,238,9,0,4,0,134,146,10,0,0,2,112,100,97,116,101,0,140,46,110,115,101,116,99,117,114,114,101,110,116,0,252,48,0,2,119,105,110,100,111,119,108,105,115,116,0,162,46,95,100,115,112,0,189,56,4,0,249,154,10,0, 0,6,101,0,233,46,104,111,119,116,101,120,116,0,165,56,117,115,112,101,110,100,95,100,115,112,0,177,56,97,118,101,100,101,99,108,97,114,97,116,105,111,110,115,116,111,0,228,56,116,0,221,61,121,109,98,111,108,97,116,111,109,0,168,81,0,2,116,0,252,46,108, 101,99,116,105,110,114,101,99,116,0,197,61,0,5,97,114,103,115,0,165,47,99,117,114,0,231,48,117,110,100,111,0,178,59,103,114,97,112,104,0,212,60,100,101,108,101,116,105,110,103,0,217,62,4,0,188,156,10,0,0,11,115,0,247,47,100,115,112,0,195,56,118,101,114, 105,102,121,113,117,105,116,0,135,62,107,101,121,0,171,62,101,118,97,108,102,105,108,101,0,164,90,105,110,105,116,0,154,95,97,117,100,105,111,0,207,107,109,0,151,108,102,0,171,114,112,0,252,116,113,117,105,116,0,150,118,0,3,101,116,102,105,108,101,110, 97,109,101,0,158,48,97,118,101,112,114,101,102,101,114,101,110,99,101,115,0,188,115,116,97,114,116,0,249,123,4,0,153,157,10,0,0,7,99,117,114,114,101,110,116,0,219,48,101,110,118,0,130,49,100,0,136,49,97,114,103,115,0,161,49,105,110,100,101,120,0,167, 50,114,111,111,116,102,111,114,0,171,56,98,108,111,99,107,0,201,56,4,0,193,157,10,1,100,105,114,0,237,49,0,2,114,101,110,116,0,246,48,115,111,114,0,202,59,4,0,221,157,10,0,4,0,244,157,10,0,4,0,139,158,10,0,0,2,111,108,108,97,114,122,101,114,111,0,155, 49,105,114,0,243,49,4,0,242,158,10,0,4,0,200,159,10,0,0,2,101,0,177,49,109,0,228,63,0,6,97,108,105,122,101,100,111,108,108,97,114,0,231,49,110,97,109,101,0,161,50,102,108,101,99,116,116,105,116,108,101,0,146,52,100,114,97,119,0,243,52,115,0,210,54,108, 111,97,100,0,196,59,4,0,135,160,10,0,4,0,133,161,10,0,4,0,167,161,10,0,0,2,107,101,0,132,50,112,0,237,52,0,2,102,105,108,101,110,97,109,101,0,155,50,98,105,110,100,115,121,109,0,140,52,4,0,201,161,10,0,4,0,245,165,10,0,4,0,208,167,10,0,0,3,110,101,116, 114,97,118,101,114,115,101,114,95,0,204,50,98,112,100,0,204,134,1,115,116,95,0,199,150,1,0,2,115,0,217,50,110,101,120,116,0,244,50,0,2,116,97,114,116,0,238,50,107,105,112,111,98,106,101,99,116,0,250,50,4,0,150,168,10,0,4,0,224,168,10,0,4,0,150,176,10, 0,0,2,110,105,116,0,140,51,115,0,220,51,4,0,186,176,10,0,0,3,101,119,0,169,51,111,117,110,100,111,0,184,59,117,109,98,111,120,0,138,81,4,0,156,178,10,0,0,2,103,108,105,115,116,0,188,51,0,211,62,4,0,166,190,10,0,0,3,108,105,115,116,0,214,51,101,116,0, 178,53,114,97,98,0,146,63,4,0,191,197,10,0,0,4,103,114,97,112,104,0,134,52,118,105,115,105,98,108,101,0,166,53,116,111,112,108,101,118,101,108,0,172,53,115,101,108,101,99,116,101,100,0,247,58,4,0,243,199,10,0,4,0,235,203,10,0,4,0,227,204,10,0,0,6,105, 0,206,52,114,97,119,114,101,100,114,101,99,116,0,231,52,101,0,161,54,111,0,243,60,97,116,97,112,114,111,112,101,114,116,105,101,115,0,252,72,115,112,115,116,97,116,101,0,246,146,1,0,2,114,116,121,0,225,52,115,99,111,110,110,101,99,116,0,190,59,4,0,255, 207,10,0,4,0,143,209,10,0,4,0,167,211,10,0,4,0,170,214,10,1,97,108,108,102,111,114,116,101,109,112,108,97,116,101,0,207,56,0,2,110,117,95,111,112,101,110,0,160,53,114,103,101,102,105,108,101,0,246,72,4,0,226,214,10,0,4,0,150,216,10,0,4,0,224,216,10,0, 0,4,102,111,110,116,0,213,53,105,110,100,101,120,0,166,59,110,101,120,116,120,121,0,199,62,99,97,110,118,97,115,0,152,63,4,0,161,217,10,0,0,4,114,101,101,0,253,53,105,0,131,54,97,116,116,101,110,115,117,98,0,224,55,108,111,97,116,97,116,111,109,0,162, 81,4,0,239,217,10,0,0,2,120,108,105,110,101,115,102,111,114,0,155,54,110,100,101,114,114,111,114,0,147,62,4,0,158,222,10,0,0,2,108,101,116,101,108,105,110,101,115,102,111,114,0,193,54,115,116,114,111,121,95,101,100,105,116,111,114,0,160,60,4,0,217,223, 10,1,105,111,0,204,54,4,0,254,224,10,0,0,3,116,111,114,101,0,235,54,117,109,101,95,100,115,112,0,183,56,111,114,116,0,253,63,4,0,175,227,10,1,99,111,110,110,101,99,116,105,111,110,115,0,159,62,0,2,111,0,140,55,105,115,116,0,130,147,1,0,2,97,100,98,97, 110,103,0,160,55,103,101,114,114,111,114,0,218,55,0,2,115,117,98,112,97,116,99,104,101,115,0,178,55,0,184,55,4,0,191,230,10,0,4,0,140,232,10,0,0,2,111,112,97,98,115,116,114,97,99,116,105,111,110,0,212,55,114,0,218,60,4,0,241,233,10,0,4,0,188,234,10,0, 4,0,149,237,10,0,0,2,115,0,245,55,101,109,103,117,105,115,0,200,80,0,3,97,98,115,116,114,97,99,116,105,111,110,0,153,56,116,97,98,108,101,0,159,56,99,111,110,110,101,99,116,101,100,0,185,61,4,0,206,244,10,0,4,0,236,244,10,0,4,0,159,246,10,0,4,0,250,247, 10,0,4,0,190,252,10,0,4,0,226,252,10,0,4,0,250,252,10,0,4,0,146,253,10,0,4,0,167,254,10,0,4,0,241,128,11,1,99,97,110,118,97,115,0,222,56,4,0,180,129,11,0,4,0,242,131,11,0,0,2,112,101,110,0,247,56,98,106,0,188,80,4,0,250,140,11,0,4,0,178,147,11,0,0,6, 103,101,116,114,101,99,116,0,176,57,100,0,182,57,115,0,208,57,97,99,116,105,118,97,116,101,0,241,57,118,105,115,0,131,58,99,108,105,99,107,0,137,58,4,0,231,164,11,0,0,2,105,115,112,108,97,99,101,0,202,57,101,108,101,116,101,0,247,57,4,0,228,165,11,0, 0,3,101,108,101,99,116,0,235,57,104,111,117,108,100,118,105,115,0,253,57,97,118,101,0,156,103,4,0,191,166,11,0,4,0,148,167,11,0,4,0,233,167,11,0,4,0,184,168,11,0,4,0,233,172,11,0,4,0,207,173,11,0,0,3,101,108,101,99,116,0,167,58,111,114,116,0,158,63,99, 97,108,97,114,0,131,76,0,2,108,105,110,101,0,179,58,0,253,58,4,0,234,174,11,0,0,3,101,0,211,58,112,105,120,116,111,100,0,204,64,114,97,119,105,111,102,111,114,0,195,81,0,2,115,101,108,101,99,116,0,229,58,108,101,116,101,0,223,62,0,2,108,105,110,101,0, 241,58,0,148,59,4,0,195,176,11,0,4,0,163,177,11,0,4,0,137,178,11,2,97,108,108,0,160,59,105,111,110,105,110,100,101,120,0,172,59,4,0,175,180,11,0,4,0,131,185,11,0,4,0,244,185,11,0,4,0,218,187,11,0,4,0,160,188,11,0,4,0,213,189,11,0,4,0,199,191,11,0,4,0, 168,195,11,0,4,0,249,223,11,0,4,0,238,224,11,0,0,4,105,116,98,111,120,0,242,59,115,108,105,100,101,114,0,224,80,100,105,97,108,0,230,80,114,97,100,105,111,0,242,80,4,0,244,225,11,0,0,3,114,101,97,116,101,95,101,100,105,116,111,114,0,154,60,111,110,110, 101,99,116,0,165,62,108,97,115,115,0,240,146,1,4,0,247,234,11,0,4,0,238,235,11,0,0,5,105,115,0,206,60,115,108,105,100,101,114,0,218,80,100,105,97,108,0,236,80,114,97,100,105,111,0,248,80,117,109,101,116,101,114,0,254,80,4,0,130,237,11,0,4,0,196,244,11, 0,0,2,111,112,101,114,116,105,101,115,0,237,60,105,110,116,0,129,62,4,0,179,249,11,0,0,2,99,0,135,61,97,100,100,116,101,109,112,108,97,116,101,0,130,73,0,2,108,105,99,107,0,153,61,111,110,110,101,99,116,0,191,61,4,0,191,140,12,0,0,2,117,115,101,0,174, 61,116,105,111,110,0,215,61,4,0,203,165,12,1,117,112,0,203,61,4,0,163,166,12,0,4,0,196,167,12,0,4,0,202,178,12,0,4,0,160,182,12,0,4,0,159,189,12,0,4,0,156,206,12,0,0,2,97,114,116,109,111,116,105,111,110,0,251,61,111,119,99,111,110,110,101,99,116,105, 111,110,115,0,153,62,4,0,239,212,12,0,4,0,236,213,12,0,4,0,218,215,12,0,4,0,144,217,12,0,4,0,172,229,12,0,4,0,130,230,12,0,4,0,133,235,12,0,4,0,139,130,13,0,4,0,140,150,13,0,0,2,109,111,100,101,0,193,62,105,110,103,0,252,146,1,4,0,191,150,13,0,4,0,224, 157,13,0,4,0,220,158,13,0,4,0,204,170,13,0,4,0,166,173,13,0,4,0,241,173,13,0,0,2,114,0,241,62,110,117,112,0,164,63,4,0,206,180,13,0,0,3,116,101,120,116,0,140,63,100,114,97,119,0,202,65,97,100,0,201,72,4,0,223,181,13,0,4,0,195,182,13,0,4,0,143,184,13, 0,4,0,185,189,13,0,4,0,210,190,13,0,0,2,114,101,101,0,184,63,105,110,100,0,208,65,4,0,181,191,13,0,0,2,100,100,0,203,63,116,111,109,0,156,81,0,2,105,110,108,101,116,0,222,63,111,117,116,108,101,116,0,152,64,4,0,218,191,13,0,0,2,105,110,108,101,116,0, 247,63,111,117,116,108,101,116,0,158,64,4,0,150,193,13,0,0,2,105,110,108,101,116,115,0,146,64,111,117,116,108,101,116,115,0,164,64,4,0,236,194,13,0,4,0,198,198,13,0,4,0,249,199,13,0,4,0,207,201,13,0,0,2,120,0,180,64,121,0,186,64,4,0,229,211,13,0,4,0, 251,214,13,0,4,0,145,218,13,0,4,0,169,221,13,0,0,2,120,0,214,64,121,0,220,64,4,0,193,224,13,0,4,0,135,225,13,0,0,2,120,116,95,0,244,64,109,112,108,97,116,101,95,0,161,76,0,7,120,112,105,120,0,190,65,121,112,105,120,0,196,65,115,0,174,81,100,114,97,119, 98,111,114,100,101,114,0,201,81,101,114,97,115,101,98,111,114,100,101,114,0,213,81,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,207,141,1,99,108,97,115,115,0,202,147,1,4,0,205,225,13,0,4,0,211,227,13,0,4,0,217,229,13,0,0,2,103,114,97,112,104, 0,226,65,114,116,101,120,116,0,211,74,4,0,172,154,14,0,0,2,114,97,112,104,95,115,101,116,117,112,0,137,66,117,105,99,111,110,110,101,99,116,95,115,101,116,117,112,0,172,66,4,0,147,155,14,0,0,2,101,119,0,160,66,111,116,97,114,103,101,116,0,166,66,4,0, 153,159,14,0,4,0,193,160,14,0,4,0,183,162,14,0,0,2,114,97,100,105,111,95,0,199,66,115,108,105,100,101,114,95,0,247,67,0,2,100,114,97,119,0,226,66,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,142,147,1,0,2,95,0,235,66,0,204,67,0,7,117,112,100, 97,116,101,0,162,67,110,101,119,0,168,67,109,111,118,101,0,174,67,101,114,97,115,101,0,180,67,99,111,110,102,105,103,0,186,67,105,111,0,192,67,115,101,108,101,99,116,0,198,67,4,0,198,163,14,0,4,0,136,165,14,0,4,0,192,171,14,0,4,0,130,176,14,0,4,0,243, 177,14,0,4,0,143,181,14,0,4,0,140,184,14,0,4,0,249,185,14,0,0,2,114,97,100,105,111,95,115,101,116,117,112,0,241,67,115,108,105,100,101,114,95,115,101,116,117,112,0,192,68,4,0,218,245,14,0,0,3,100,114,97,119,0,155,68,99,104,101,99,107,95,0,161,68,119, 105,100,103,101,116,98,101,104,97,118,105,111,114,0,148,147,1,4,0,215,155,15,0,0,2,119,105,100,116,104,0,180,68,109,105,110,109,97,120,0,186,68,4,0,141,163,15,0,4,0,181,165,15,0,4,0,134,217,15,0,0,7,105,110,108,101,116,95,0,133,69,111,117,116,108,101, 116,95,0,230,69,114,97,100,105,111,95,0,251,83,115,108,105,100,101,114,95,0,186,85,117,95,0,138,86,101,114,98,111,115,101,0,140,125,97,108,117,101,95,0,162,129,1,0,5,103,101,116,105,116,0,177,69,105,115,115,105,103,110,97,108,0,183,69,112,101,114,102, 111,114,109,0,189,69,100,0,195,69,99,108,97,115,115,0,154,147,1,4,0,222,230,15,0,4,0,155,231,15,0,4,0,182,231,15,0,0,2,111,112,114,111,108,111,103,0,218,69,115,112,112,114,111,108,111,103,0,224,69,4,0,208,233,15,0,4,0,203,235,15,0,0,5,103,101,116,105, 116,0,148,70,105,115,115,105,103,110,97,108,0,154,70,112,101,114,102,111,114,109,0,160,70,100,115,112,0,166,70,99,108,97,115,115,0,160,147,1,4,0,150,250,15,0,4,0,211,250,15,0,4,0,238,250,15,0,0,2,112,114,111,108,111,103,0,186,70,101,112,105,108,111,103, 0,192,70,4,0,160,255,15,0,4,0,145,130,16,0,4,0,234,141,16,0,0,2,99,97,110,118,97,115,95,0,226,70,110,117,109,98,111,120,95,0,217,71,0,2,100,114,97,119,0,253,70,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,166,147,1,0,2,95,0,134,71,0,205,71, 0,5,110,101,119,0,175,71,109,111,118,101,0,181,71,101,114,97,115,101,0,187,71,99,111,110,102,105,103,0,193,71,115,101,108,101,99,116,0,199,71,4,0,250,141,16,0,4,0,185,145,16,0,4,0,190,147,16,0,4,0,168,148,16,0,4,0,210,150,16,0,4,0,198,151,16,0,4,0,152, 186,16,0,0,4,99,0,255,71,102,116,111,97,0,177,72,100,114,97,119,0,183,72,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,172,147,1,0,3,108,105,112,0,165,72,97,108,99,95,102,111,110,116,119,105,100,116,104,0,171,72,104,101,99,107,95,109,105,110, 109,97,120,0,189,72,4,0,190,194,16,0,4,0,180,195,16,0,4,0,214,196,16,0,4,0,190,228,16,0,4,0,199,236,16,0,4,0,156,161,17,0,0,3,115,99,97,108,97,114,0,228,72,102,114,111,109,98,105,110,98,117,102,0,234,72,0,240,72,4,0,246,177,17,0,4,0,142,182,17,0,4,0, 172,191,17,0,4,0,216,191,17,0,4,0,132,192,17,0,4,0,133,196,17,0,0,2,114,105,116,101,115,99,97,108,97,114,0,163,73,104,105,99,104,102,105,110,100,0,136,147,1,4,0,175,197,17,0,4,0,216,207,17,0,4,0,181,241,17,0,0,12,110,101,119,0,146,74,102,114,101,101, 0,152,74,103,101,116,0,158,74,114,101,116,101,120,116,0,205,74,119,105,100,116,104,0,217,74,104,101,105,103,104,116,0,223,74,100,0,229,74,101,114,97,115,101,0,253,74,115,101,108,101,99,116,0,137,75,97,99,116,105,118,97,116,101,0,143,75,107,101,121,0, 149,75,109,111,117,115,101,0,155,75,4,0,186,244,17,0,4,0,215,246,17,0,0,2,116,0,174,74,115,101,108,116,101,120,116,0,199,74,0,2,97,103,0,187,74,101,120,116,0,193,74,4,0,211,248,17,0,4,0,229,248,17,0,4,0,146,249,17,0,4,0,183,145,18,0,4,0,158,151,18,0, 4,0,155,152,18,0,4,0,215,152,18,0,0,2,114,97,119,0,247,74,105,115,112,108,97,99,101,0,131,75,4,0,147,153,18,0,4,0,204,153,18,0,4,0,140,154,18,0,4,0,219,154,18,0,4,0,210,155,18,0,4,0,244,157,18,0,4,0,225,168,18,0,0,3,105,110,105,116,0,187,75,114,101,115, 116,111,114,101,0,193,75,102,114,101,101,0,199,75,4,0,238,174,18,0,4,0,189,176,18,0,4,0,161,178,18,0,0,5,110,101,119,0,253,75,103,101,116,98,97,115,101,120,121,0,137,76,114,101,100,114,97,119,0,143,76,100,111,99,108,105,99,107,0,149,76,99,108,97,115, 115,0,178,147,1,4,0,158,179,18,0,4,0,218,180,18,0,4,0,175,182,18,0,4,0,194,201,18,0,4,0,245,201,18,0,4,0,172,211,18,0,0,6,110,0,199,76,115,0,220,76,102,0,239,76,103,101,116,0,160,77,109,97,116,99,104,0,222,77,99,111,110,102,111,114,109,0,228,77,0,2,101, 119,0,214,76,111,116,105,102,121,0,246,77,4,0,179,213,18,0,0,2,105,122,101,0,233,76,101,116,0,185,77,4,0,200,218,18,0,0,2,105,110,100,0,253,76,114,101,101,0,142,78,0,3,95,102,105,101,108,100,0,154,77,98,121,110,97,109,101,0,234,77,99,97,110,118,97,115, 0,240,77,4,0,223,218,18,0,0,2,102,108,111,97,116,0,179,77,115,121,109,98,111,108,0,210,77,4,0,228,220,18,0,0,2,102,108,111,97,116,0,204,77,115,121,109,98,111,108,0,216,77,4,0,162,222,18,0,4,0,213,223,18,0,4,0,146,225,18,0,4,0,200,226,18,0,4,0,178,241, 18,0,4,0,226,247,18,0,4,0,128,248,18,0,4,0,211,248,18,1,102,111,114,115,99,97,108,97,114,0,136,78,4,0,149,249,18,0,4,0,160,252,18,0,4,0,199,131,19,0,0,3,99,118,116,0,184,78,103,101,116,99,111,111,114,100,0,214,78,115,101,116,99,111,111,114,100,0,226, 78,0,2,116,111,99,111,111,114,100,0,208,78,102,114,111,109,99,111,111,114,100,0,220,78,4,0,247,148,19,0,4,0,216,151,19,0,4,0,240,153,19,0,4,0,154,157,19,0,0,3,102,108,111,97,116,0,141,79,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,189,141, 1,99,108,97,115,115,0,184,147,1,4,0,183,163,19,0,0,3,102,108,111,97,116,0,184,79,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,195,141,1,99,108,97,115,115,0,196,147,1,4,0,228,200,19,0,4,0,159,207,19,0,0,3,102,108,111,97,116,0,233,79,119,105, 100,103,101,116,98,101,104,97,118,105,111,114,0,201,141,1,99,108,97,115,115,0,190,147,1,4,0,233,135,20,0,0,3,101,0,148,80,111,103,103,108,101,95,115,101,116,117,112,0,242,82,114,97,118,101,114,115,97,108,95,115,101,116,117,112,0,245,83,0,2,109,112,108, 97,116,101,95,115,101,116,117,112,0,176,80,120,116,95,115,101,116,117,112,0,225,81,4,0,159,165,20,0,4,0,190,165,20,0,4,0,244,175,20,1,102,111,114,0,144,81,4,0,212,178,20,0,4,0,255,179,20,0,4,0,176,180,20,0,4,0,225,180,20,0,4,0,146,181,20,0,4,0,195,181, 20,0,4,0,244,181,20,0,4,0,165,182,20,0,4,0,214,182,20,0,4,0,135,183,20,0,4,0,184,183,20,0,4,0,233,183,20,0,4,0,154,184,20,0,4,0,209,196,20,0,4,0,191,234,20,0,4,0,196,243,20,0,4,0,249,243,20,0,0,2,97,118,101,0,189,81,101,116,116,111,0,219,81,4,0,139,131, 21,0,4,0,157,139,21,0,4,0,204,143,21,0,4,0,216,156,21,0,4,0,246,157,21,0,4,0,205,158,21,0,4,0,245,162,21,0,0,2,100,114,97,119,0,130,82,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,208,147,1,0,2,95,0,139,82,0,236,82,0,7,117,112,100,97,116,101, 0,194,82,110,101,119,0,200,82,109,111,118,101,0,206,82,101,114,97,115,101,0,212,82,99,111,110,102,105,103,0,218,82,105,111,0,224,82,115,101,108,101,99,116,0,230,82,4,0,155,172,21,0,4,0,235,173,21,0,4,0,206,180,21,0,4,0,215,185,21,0,4,0,186,187,21,0,4, 0,206,190,21,0,4,0,203,193,21,0,4,0,251,194,21,0,4,0,167,233,21,0,0,2,110,101,119,0,137,83,99,117,116,111,102,102,0,143,83,4,0,170,242,21,0,4,0,239,243,21,0,0,4,99,0,176,83,117,110,115,101,116,0,203,83,115,101,116,0,209,83,105,110,105,116,0,239,83,0, 2,104,101,99,107,0,191,83,111,112,121,0,197,83,4,0,189,244,21,0,4,0,219,246,21,0,4,0,187,247,21,0,0,2,103,108,105,115,116,0,227,83,97,114,114,97,121,0,233,83,4,0,241,247,21,0,4,0,229,248,21,0,4,0,217,249,21,0,4,0,200,188,22,0,0,2,100,114,97,119,0,150, 84,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,214,147,1,0,2,95,0,159,84,0,128,85,0,7,117,112,100,97,116,101,0,214,84,110,101,119,0,220,84,109,111,118,101,0,226,84,101,114,97,115,101,0,232,84,99,111,110,102,105,103,0,238,84,105,111,0,244, 84,115,101,108,101,99,116,0,250,84,4,0,246,188,22,0,4,0,184,190,22,0,4,0,249,196,22,0,4,0,169,201,22,0,4,0,154,203,22,0,4,0,182,206,22,0,4,0,205,209,22,0,4,0,186,211,22,0,0,3,114,97,100,105,111,95,115,101,116,117,112,0,180,85,115,108,105,100,101,114, 95,115,101,116,117,112,0,132,86,117,109,101,116,101,114,95,115,101,116,117,112,0,192,86,4,0,222,142,23,0,0,3,100,114,97,119,0,222,85,99,104,101,99,107,95,0,228,85,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,220,147,1,4,0,131,179,23,0,0,2, 104,101,105,103,104,116,0,248,85,109,105,110,109,97,120,0,254,85,4,0,185,186,23,0,4,0,202,188,23,0,4,0,141,238,23,0,0,3,100,114,97,119,0,180,86,99,104,101,99,107,95,104,101,105,103,104,116,0,186,86,119,105,100,103,101,116,98,101,104,97,118,105,111,114, 0,226,147,1,4,0,181,165,24,0,4,0,170,171,24,0,4,0,214,208,24,0,0,2,103,101,0,214,86,115,116,114,105,110,103,0,184,87,0,2,116,0,227,86,110,115,121,109,0,160,87,0,3,102,108,111,97,116,0,252,86,105,110,116,0,136,87,115,121,109,98,111,108,0,148,87,4,0,208, 215,24,1,97,114,103,0,166,87,4,0,130,216,24,1,97,114,103,0,172,87,4,0,158,216,24,1,97,114,103,0,178,87,4,0,249,216,24,0,4,0,164,218,24,0,4,0,251,218,24,0,4,0,163,219,24,0,4,0,253,219,24,0,0,12,110,101,119,0,149,88,102,114,101,101,0,155,88,100,117,112, 108,105,99,97,116,101,0,161,88,99,108,101,97,114,0,167,88,116,101,120,116,0,173,88,103,101,116,0,179,88,97,100,100,0,208,88,114,101,0,252,88,112,114,105,110,116,0,144,89,101,0,162,89,119,114,105,116,101,0,146,90,109,97,116,99,104,0,152,90,4,0,140,231, 24,0,4,0,199,231,24,0,4,0,255,231,24,0,4,0,214,233,24,0,4,0,154,234,24,0,0,3,116,101,120,116,0,202,88,110,97,116,111,109,0,150,89,118,101,99,0,156,89,4,0,240,250,24,0,4,0,164,128,25,3,118,0,234,88,98,105,110,98,117,102,0,240,88,115,101,109,105,0,246, 88,4,0,237,129,25,0,4,0,187,136,25,0,4,0,144,142,25,0,0,2,115,116,111,114,101,0,138,89,97,0,191,89,4,0,190,142,25,0,4,0,166,147,25,0,4,0,220,148,25,0,4,0,236,148,25,0,0,2,120,112,97,110,100,100,111,108,108,115,121,109,0,185,89,118,97,108,0,217,89,4,0, 254,148,25,0,0,2,108,105,122,101,100,111,108,108,115,121,109,0,211,89,100,0,230,89,4,0,181,151,25,0,4,0,198,156,25,1,102,105,108,101,0,158,90,4,0,222,170,25,1,95,118,105,97,95,0,244,89,0,2,99,97,110,118,97,115,0,134,90,112,97,116,104,0,140,90,4,0,188, 176,25,0,4,0,191,178,25,0,4,0,194,180,25,0,4,0,185,164,26,0,4,0,199,167,26,0,4,0,134,170,26,0,0,2,97,115,115,95,0,186,90,111,99,107,95,0,245,104,0,6,110,101,119,0,233,90,97,100,100,0,239,90,100,111,0,200,91,115,101,116,0,252,91,103,101,116,0,231,92,105, 115,100,114,97,119,99,111,109,109,97,110,100,0,188,93,4,0,246,178,26,0,0,7,99,114,101,97,116,111,114,0,176,91,109,101,116,104,111,100,0,182,91,98,97,110,103,0,188,91,112,111,105,110,116,101,114,0,194,91,115,121,109,98,111,108,0,234,91,108,105,115,116, 0,240,91,97,110,121,116,104,105,110,103,0,246,91,4,0,165,189,26,0,4,0,179,193,26,0,4,0,208,205,26,0,4,0,234,205,26,0,0,2,97,100,100,102,108,111,97,116,0,228,91,109,97,105,110,115,105,103,110,97,108,105,110,0,194,93,4,0,132,206,26,0,4,0,158,206,26,0,4, 0,184,206,26,0,4,0,210,206,26,0,0,6,119,105,100,103,101,116,0,189,92,112,0,195,92,104,101,108,112,115,121,109,98,111,108,0,170,93,100,114,97,119,99,111,109,109,97,110,100,0,182,93,95,101,120,116,101,114,110,95,100,105,114,0,200,93,115,97,118,101,102, 110,0,212,93,4,0,236,206,26,0,0,2,97,114,101,110,116,119,105,100,103,101,116,0,225,92,114,111,112,101,114,116,105,101,115,102,110,0,224,93,4,0,134,207,26,0,0,4,110,97,109,101,0,143,93,104,101,108,112,0,149,93,115,97,118,101,102,110,0,218,93,112,114,111, 112,101,114,116,105,101,115,102,110,0,230,93,4,0,160,207,26,0,0,2,110,97,109,101,0,164,93,100,105,114,0,206,93,4,0,180,207,26,0,4,0,201,207,26,0,4,0,227,207,26,0,4,0,248,207,26,0,4,0,141,208,26,0,4,0,138,209,26,0,4,0,245,209,26,0,4,0,138,210,26,0,4,0, 194,210,26,0,4,0,220,210,26,0,4,0,238,210,26,0,4,0,139,211,26,0,4,0,160,211,26,0,0,2,110,115,121,109,0,255,93,116,0,226,94,4,0,150,214,26,0,0,2,95,97,110,121,116,104,105,110,103,0,154,94,101,115,116,0,232,147,1,4,0,197,216,26,0,4,0,177,221,26,0,0,2,101, 115,116,0,177,94,0,144,103,4,0,177,223,26,0,4,0,193,223,26,0,0,2,109,101,115,115,0,208,94,101,114,115,105,111,110,0,141,143,1,4,0,228,238,26,0,4,0,232,245,26,0,4,0,187,247,26,0,0,4,102,110,0,130,95,98,121,116,101,115,0,225,96,122,98,121,116,101,115,0, 231,96,95,115,121,115,95,0,227,118,4,0,193,247,26,0,4,0,212,248,26,0,4,0,186,249,26,0,4,0,239,251,26,0,4,0,187,253,26,1,102,114,111,109,103,117,105,0,181,121,0,2,115,95,0,193,95,109,98,111,108,105,110,108,101,116,95,110,101,119,0,207,97,0,20,103,0,156, 96,99,108,0,140,106,112,0,164,106,97,0,133,107,108,0,228,107,117,0,211,108,116,0,153,109,101,120,0,194,109,115,0,162,110,114,0,168,112,109,0,200,115,118,0,198,116,113,117,101,117,101,103,117,105,0,168,117,98,0,234,117,111,0,156,118,110,0,147,120,104, 0,185,120,102,0,231,120,105,0,223,121,100,0,147,123,0,2,101,116,0,168,96,117,105,0,222,116,0,6,118,101,114,115,105,111,110,0,219,96,95,0,212,109,115,114,0,146,113,109,101,116,101,114,115,0,164,113,114,101,97,108,116,105,109,101,0,194,115,98,108,107,115, 105,122,101,0,205,121,4,0,240,137,27,0,4,0,181,138,27,0,4,0,128,139,27,0,4,0,151,139,27,0,4,0,167,140,27,0,4,0,169,142,27,0,0,2,108,101,116,95,0,145,97,109,105,100,105,95,0,160,130,1,0,3,110,101,119,0,177,97,102,114,101,101,0,189,97,103,101,116,115,105, 103,110,97,108,105,110,100,101,120,0,132,103,4,0,211,142,27,0,4,0,162,144,27,0,4,0,173,154,27,0,4,0,148,156,27,0,4,0,223,157,27,0,4,0,171,159,27,0,0,8,108,105,115,116,0,155,98,105,0,161,98,99,111,110,110,101,99,116,0,208,100,100,105,115,99,111,110,110, 101,99,116,0,214,100,110,0,220,100,115,0,151,101,109,111,118,101,0,236,101,102,105,110,100,115,105,103,110,97,108,115,99,97,108,97,114,0,254,102,4,0,218,160,27,0,0,2,110,105,116,0,179,98,115,115,105,103,110,97,108,0,211,102,4,0,220,162,27,0,0,2,108,101, 116,95,0,203,98,109,105,100,105,95,0,158,132,1,0,8,115,0,133,99,110,101,119,0,244,99,98,97,110,103,0,250,99,112,111,105,110,116,101,114,0,128,100,102,0,134,100,108,105,115,116,0,161,100,97,110,121,116,104,105,110,103,0,167,100,103,101,116,115,0,173,100, 0,2,101,116,115,116,97,99,107,108,105,109,0,156,99,121,109,98,111,108,0,155,100,4,0,178,166,27,0,0,5,103,101,116,101,118,101,110,116,110,111,0,238,99,114,101,111,112,101,110,109,101,112,108,101,97,115,101,0,239,104,115,101,116,95,117,115,105,110,103, 95,97,117,100,105,111,0,175,108,116,105,99,107,0,181,108,97,117,100,105,111,95,99,97,108,108,98,97,99,107,102,110,0,187,108,4,0,198,166,27,0,4,0,210,166,27,0,4,0,149,168,27,0,4,0,132,169,27,0,0,2,108,111,97,116,0,149,100,114,101,101,0,202,100,4,0,150, 170,27,0,4,0,143,171,27,0,4,0,134,172,27,0,4,0,139,173,27,0,0,2,121,109,98,111,108,0,196,100,105,103,110,97,108,105,110,100,101,120,0,138,103,4,0,144,174,27,0,4,0,162,174,27,0,4,0,170,175,27,0,4,0,250,177,27,0,0,4,111,117,116,108,101,116,115,0,139,101, 105,110,108,101,116,115,0,145,101,101,120,116,116,114,97,118,101,114,115,101,111,117,116,108,101,116,0,185,101,115,105,103,0,149,102,4,0,204,180,27,0,4,0,132,181,27,0,0,2,116,97,114,116,116,114,97,118,101,114,115,101,111,117,116,108,101,116,0,179,101, 105,103,0,176,102,4,0,209,181,27,0,4,0,184,182,27,0,0,3,104,101,99,107,111,98,106,101,99,116,0,230,101,111,109,112,105,108,101,0,237,143,1,97,110,118,97,115,109,97,107,101,114,0,238,147,1,4,0,196,184,27,0,0,2,105,110,108,101,116,102,105,114,115,116,0, 137,102,111,117,116,108,101,116,102,105,114,115,116,0,143,102,4,0,246,184,27,0,4,0,239,185,27,0,0,2,105,110,108,101,116,115,0,170,102,111,117,116,108,101,116,115,0,236,102,4,0,232,186,27,0,0,2,105,110,108,101,116,105,110,100,101,120,0,205,102,111,117, 116,108,101,116,105,110,100,101,120,0,242,102,4,0,218,187,27,0,0,2,105,110,108,101,116,0,230,102,111,117,116,108,101,116,0,248,102,4,0,249,188,27,0,4,0,186,190,27,0,4,0,134,191,27,0,4,0,237,191,27,0,4,0,217,192,27,0,4,0,186,194,27,0,4,0,196,195,27,0, 4,0,164,196,27,0,4,0,145,197,27,0,4,0,204,198,27,0,0,3,112,100,95,115,101,116,117,112,0,198,103,109,97,105,110,108,111,111,112,0,193,108,98,97,116,99,104,109,97,105,110,0,199,108,4,0,176,202,27,0,0,2,105,110,100,0,218,103,97,110,103,0,203,104,4,0,227, 203,27,0,4,0,231,205,27,0,4,0,188,208,27,0,4,0,194,208,27,0,0,2,101,116,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,0,147,104,121,109,98,111,108,0,221,104,4,0,191,210,27,0,0,2,117,115,104,115,121,109,0,168,104,111,0,174,104,4,0, 160,211,27,0,0,2,112,115,121,109,0,191,104,105,110,116,101,114,0,215,104,4,0,145,212,27,0,4,0,148,213,27,0,4,0,216,213,27,0,4,0,247,213,27,0,4,0,160,214,27,0,4,0,199,214,27,0,4,0,238,214,27,0,4,0,166,215,27,0,4,0,197,215,27,0,0,6,110,101,119,0,160,105, 117,110,115,101,116,0,166,105,115,101,116,0,172,105,100,101,108,97,121,0,186,105,103,101,116,0,192,105,102,114,101,101,0,134,106,4,0,213,215,27,0,4,0,174,216,27,0,4,0,187,217,27,1,108,105,115,116,0,134,148,1,4,0,193,219,27,0,0,3,108,111,103,105,99,97, 108,116,105,109,101,0,230,105,115,121,115,116,105,109,101,0,236,105,116,105,109,101,115,105,110,99,101,0,250,105,4,0,253,219,27,0,4,0,150,220,27,1,97,102,116,101,114,0,128,106,4,0,175,220,27,0,4,0,226,220,27,0,4,0,141,221,27,0,0,2,101,97,114,104,105, 115,116,0,158,106,111,115,101,0,254,111,4,0,178,221,27,0,0,4,114,0,198,106,111,108,108,0,180,117,117,116,111,110,108,111,97,100,108,105,115,116,0,203,118,101,114,102,0,128,148,1,0,2,105,110,116,0,222,106,101,116,101,110,100,103,117,105,98,121,116,101, 115,0,162,117,0,2,104,0,240,106,116,111,115,116,100,101,114,114,0,187,150,1,0,2,105,115,116,0,255,106,111,111,107,0,181,150,1,4,0,191,222,27,0,0,3,100,0,160,107,114,103,112,97,114,115,101,0,199,121,117,100,105,111,97,112,105,0,215,143,1,0,2,100,0,183, 107,118,97,110,99,101,95,115,97,109,112,108,101,115,0,181,148,1,0,2,104,105,115,116,0,201,107,112,111,108,108,102,110,0,140,116,4,0,182,226,27,0,0,2,115,116,97,116,117,115,0,222,107,95,0,176,113,4,0,171,228,27,0,0,2,111,0,238,107,105,0,221,113,0,3,103, 0,254,107,99,107,0,205,108,97,100,0,159,115,0,2,95,101,114,114,111,114,0,145,108,101,114,114,111,114,0,164,125,4,0,205,230,27,0,0,2,101,116,101,114,115,0,169,108,105,100,105,95,0,150,134,1,4,0,235,235,27,0,4,0,224,236,27,0,4,0,143,238,27,0,4,0,226,245, 27,0,4,0,142,248,27,0,4,0,220,248,27,0,4,0,207,249,27,0,0,2,110,0,230,108,115,101,115,116,100,112,97,116,104,0,146,145,1,0,4,108,111,99,107,0,147,109,113,117,101,117,101,103,117,105,0,174,117,98,97,115,104,102,105,108,101,110,97,109,101,0,217,121,105, 120,101,114,114,111,114,0,170,125,4,0,225,249,27,0,0,2,114,121,0,167,109,105,109,101,0,152,148,1,0,2,108,111,99,107,0,188,109,116,111,111,112,101,110,111,110,101,0,198,122,4,0,243,249,27,0,0,2,105,116,0,206,109,116,0,151,149,1,4,0,133,250,27,0,0,4,97, 117,100,105,111,95,0,131,110,111,117,116,99,104,97,110,110,101,108,115,0,152,113,105,110,99,104,97,110,110,101,108,115,0,158,113,109,105,100,105,95,0,175,133,1,0,3,112,97,114,97,109,115,0,156,110,100,101,118,115,0,135,114,97,112,105,115,0,165,114,4,0, 224,250,27,0,0,6,97,118,101,95,97,117,100,105,111,95,112,97,114,97,109,115,0,217,110,101,0,223,110,111,0,243,115,116,97,0,207,117,99,104,101,100,0,177,143,1,108,101,101,112,103,114,97,105,110,0,146,148,1,4,0,142,253,27,0,0,3,116,0,251,110,110,100,95, 100,97,99,115,0,140,113,97,114,99,104,112,97,116,104,0,169,150,1,0,6,99,104,115,114,0,184,111,95,0,190,111,98,108,111,99,107,115,105,122,101,0,141,114,97,108,97,114,109,0,237,115,101,120,116,114,97,112,97,116,104,0,192,122,109,105,100,105,116,105,109, 101,100,105,102,102,0,144,134,1,4,0,189,255,27,0,0,3,97,117,100,105,111,95,0,217,111,115,0,214,123,101,120,116,114,97,112,97,116,104,0,243,123,0,2,115,0,229,111,97,112,105,0,147,114,0,2,101,116,116,105,110,103,115,0,248,111,116,97,116,101,0,159,114,4, 0,226,132,28,0,0,3,95,0,144,112,115,111,99,107,101,116,0,192,116,0,129,123,0,2,97,117,100,105,111,0,162,112,109,105,100,105,0,219,133,1,4,0,172,147,28,0,0,4,101,0,207,112,109,112,111,108,108,102,110,0,146,116,117,110,95,115,99,104,101,100,117,108,101, 114,0,221,118,99,102,105,108,101,0,141,123,0,3,111,112,101,110,95,0,244,112,112,111,114,116,105,100,108,101,0,170,113,103,105,115,116,101,114,95,108,111,97,100,101,114,0,209,118,0,2,97,117,100,105,111,0,134,113,109,105,100,105,0,225,133,1,4,0,214,148, 28,0,4,0,183,151,28,0,4,0,176,154,28,0,4,0,199,154,28,0,4,0,214,154,28,0,4,0,229,154,28,0,4,0,191,155,28,0,0,3,112,114,111,112,101,114,116,105,101,115,0,209,113,100,105,97,108,111,103,0,215,113,115,101,116,97,112,105,0,153,114,4,0,185,161,28,0,4,0,201, 174,28,0,0,2,115,116,0,236,113,98,100,105,114,0,249,149,1,0,2,100,101,118,115,0,129,114,109,105,100,105,100,101,118,115,0,201,133,1,4,0,218,179,28,0,4,0,136,180,28,0,4,0,230,180,28,0,4,0,199,181,28,0,4,0,129,182,28,0,4,0,179,183,28,0,4,0,228,183,28,0, 0,2,111,111,0,189,114,105,110,100,101,114,114,111,114,0,152,125,4,0,181,186,28,0,0,5,111,112,101,110,95,97,117,100,105,111,0,129,115,99,108,111,115,101,95,97,117,100,105,111,0,135,115,115,101,110,100,95,100,97,99,115,0,141,115,103,101,116,100,101,118, 115,0,147,115,108,105,115,116,100,101,118,115,0,153,115,4,0,250,186,28,0,4,0,142,187,28,0,4,0,153,187,28,0,4,0,164,187,28,0,4,0,168,188,28,0,0,2,112,114,101,102,101,114,101,110,99,101,115,0,182,115,95,108,105,98,0,215,118,4,0,246,193,28,0,4,0,254,211, 28,0,4,0,166,227,28,0,0,2,105,0,212,115,97,105,110,0,187,121,0,2,99,114,111,115,108,101,101,112,0,231,115,100,105,0,221,144,1,4,0,237,232,28,0,4,0,157,235,28,0,0,2,99,107,101,114,114,111,114,0,134,116,117,110,100,0,211,148,1,4,0,213,236,28,0,4,0,157, 237,28,0,4,0,218,238,28,0,0,3,110,101,119,0,174,116,102,114,101,101,0,180,116,114,101,97,100,0,186,116,4,0,167,240,28,0,4,0,202,241,28,0,4,0,212,248,28,0,4,0,177,253,28,0,0,2,103,117,105,0,216,116,101,114,98,111,115,101,0,151,150,1,4,0,160,255,28,0,4, 0,167,134,29,2,99,109,100,0,237,149,1,115,101,116,112,111,114,116,110,117,109,98,101,114,0,243,149,1,0,3,105,110,103,0,156,117,97,116,104,95,100,105,97,108,111,103,0,178,124,100,111,98,106,101,99,116,0,250,147,1,4,0,157,138,29,0,4,0,153,141,29,0,4,0, 177,141,29,0,4,0,132,143,29,0,0,2,103,117,105,0,201,117,109,105,100,105,113,117,101,117,101,0,138,134,1,4,0,165,144,29,0,0,2,114,116,103,117,105,0,228,117,116,105,99,112,97,116,104,0,175,150,1,4,0,222,144,29,0,0,2,97,0,252,117,108,111,99,107,115,105, 122,101,0,209,143,1,0,2,105,108,0,144,118,115,104,102,105,108,101,110,97,109,101,0,211,121,4,0,180,164,29,0,4,0,207,165,29,0,0,4,110,108,111,97,100,108,105,115,116,0,197,118,112,101,110,95,0,204,122,117,0,176,125,108,100,116,99,108,118,101,114,115,105, 111,110,0,145,150,1,4,0,155,166,29,0,4,0,246,166,29,0,4,0,243,180,29,0,4,0,232,181,29,0,4,0,206,182,29,0,0,4,115,0,135,119,109,97,105,110,95,97,100,118,97,110,99,101,0,188,119,116,105,109,101,0,194,119,100,97,99,115,114,0,129,120,0,3,111,117,110,100, 0,163,119,99,104,101,100,0,221,119,108,101,101,112,103,114,97,105,110,0,135,120,0,2,111,117,116,0,176,119,105,110,0,182,119,4,0,207,185,29,0,4,0,223,185,29,0,4,0,239,185,29,0,0,2,95,112,101,114,95,100,115,112,95,116,105,99,107,0,215,119,0,251,119,4,0, 252,185,29,0,0,2,98,108,111,99,107,115,105,122,101,0,245,119,97,100,118,97,110,99,101,0,141,120,4,0,137,186,29,0,4,0,150,186,29,0,4,0,163,186,29,0,4,0,176,186,29,0,4,0,189,186,29,0,0,3,101,97,114,101,115,116,102,111,110,116,115,105,122,101,0,179,120, 111,0,145,144,1,109,105,100,105,0,194,144,1,4,0,157,187,29,0,0,3,111,115,116,102,111,110,116,115,105,122,101,0,225,120,105,112,114,105,111,114,105,116,121,0,139,144,1,101,108,112,112,97,116,104,0,163,150,1,4,0,180,187,29,0,0,3,111,110,116,0,132,121,105, 110,100,112,114,111,103,100,105,114,0,193,121,108,97,103,115,0,135,143,1,0,3,119,0,151,121,104,101,105,103,104,116,0,175,121,0,134,145,1,0,2,105,100,116,104,0,169,121,101,105,103,104,116,0,140,145,1,4,0,204,187,29,0,4,0,228,187,29,0,4,0,220,189,29,0, 4,0,158,196,29,0,4,0,250,200,29,0,4,0,165,204,29,0,4,0,192,238,29,0,4,0,214,251,29,0,4,0,148,252,29,0,0,3,115,97,98,115,111,108,117,116,101,112,97,116,104,0,129,122,110,0,231,133,1,100,108,101,104,111,111,107,0,140,148,1,4,0,210,252,29,0,0,3,97,112,112, 101,110,100,0,159,122,102,114,101,101,0,180,122,103,101,116,0,186,122,4,0,139,130,30,1,95,102,105,108,101,115,0,174,122,4,0,183,132,30,0,4,0,128,134,30,0,4,0,222,134,30,0,4,0,186,135,30,0,4,0,141,137,30,0,0,2,97,98,115,111,108,117,116,101,0,225,122,109, 105,100,105,0,213,133,1,4,0,187,144,30,0,0,2,112,97,116,104,0,251,122,104,101,108,112,112,97,116,104,0,135,123,4,0,245,150,30,0,4,0,218,151,30,0,4,0,239,151,30,0,4,0,140,157,30,0,0,3,111,102,108,97,103,115,0,170,123,101,0,176,123,97,99,115,114,0,187, 148,1,4,0,175,164,30,0,0,3,99,111,100,101,100,105,97,108,111,103,0,208,123,102,0,238,148,1,98,117,103,108,101,118,101,108,0,139,149,1,4,0,141,169,30,0,0,2,101,97,114,99,104,112,97,116,104,0,237,123,116,97,114,116,117,112,0,184,124,4,0,131,173,30,0,4, 0,234,173,30,0,0,2,95,0,139,124,117,112,95,100,105,97,108,111,103,0,196,124,0,2,112,97,116,104,95,100,105,97,108,111,103,0,172,124,115,116,97,114,116,117,112,95,100,105,97,108,111,103,0,190,124,4,0,209,174,30,0,4,0,224,175,30,0,4,0,175,177,30,0,4,0,168, 178,30,0,4,0,190,179,30,0,4,0,190,189,30,3,115,116,114,105,110,103,0,238,124,97,116,111,109,0,244,124,102,108,111,97,116,0,250,124,4,0,250,191,30,0,4,0,158,194,30,0,4,0,193,194,30,0,4,0,211,195,30,0,4,0,162,196,30,0,4,0,128,197,30,0,4,0,169,199,30,0, 4,0,232,201,30,0,4,0,201,204,30,0,4,0,171,205,30,0,4,0,212,207,30,0,4,0,248,207,30,0,0,2,99,104,0,196,125,116,99,104,97,110,110,101,108,115,0,199,148,1,4,0,164,208,30,0,0,8,115,0,134,126,116,111,117,0,158,126,119,99,95,0,183,126,111,102,102,115,101,116, 0,228,126,99,104,97,114,110,117,109,0,234,126,110,101,120,116,99,104,97,114,0,240,126,105,110,99,0,252,126,100,101,99,0,137,127,0,2,101,113,108,101,110,0,152,126,116,114,108,101,110,0,246,126,4,0,253,208,30,0,0,2,99,115,0,171,126,116,102,56,0,177,126, 4,0,166,209,30,0,4,0,246,211,30,0,0,2,110,98,121,116,101,115,0,203,126,116,111,117,116,102,56,0,209,126,4,0,228,215,30,0,4,0,188,216,30,1,95,110,117,108,0,222,126,4,0,212,218,30,0,4,0,131,219,30,0,4,0,146,220,30,0,4,0,170,221,30,0,4,0,190,222,30,0,4, 0,243,222,30,1,95,112,116,114,0,150,127,4,0,151,224,30,1,95,112,116,114,0,156,127,4,0,187,225,30,0,4,0,216,226,30,0,4,0,245,227,30,0,4,0,250,228,30,0,4,0,225,229,30,0,4,0,226,230,30,0,4,0,227,231,30,0,4,0,207,232,30,0,0,9,97,0,191,128,1,99,111,110,110, 101,99,116,105,118,101,95,115,101,116,117,112,0,227,129,1,103,117,105,95,115,101,116,117,112,0,142,130,1,105,110,116,101,114,102,97,99,101,95,115,101,116,117,112,0,148,130,1,108,105,115,116,95,115,101,116,117,112,0,154,130,1,109,105,0,230,131,1,110,101, 116,95,115,101,116,117,112,0,140,132,1,113,108,105,115,116,95,115,101,116,117,112,0,146,132,1,116,105,109,101,95,115,101,116,117,112,0,152,132,1,0,2,99,111,117,115,116,105,99,115,95,115,101,116,117,112,0,230,128,1,114,105,116,104,109,101,116,105,99,95, 115,101,116,117,112,0,236,128,1,4,0,203,237,30,0,4,0,205,163,31,0,4,0,197,194,31,0,4,0,193,197,31,0,4,0,181,201,31,0,4,0,176,203,31,0,4,0,152,222,31,0,4,0,192,234,31,0,4,0,159,166,32,0,4,0,134,169,32,0,0,3,103,101,116,0,194,129,1,114,101,108,101,97,115, 101,0,209,129,1,115,101,116,102,108,111,97,116,0,221,129,1,4,0,181,170,32,1,102,108,111,97,116,0,215,129,1,4,0,171,171,32,0,4,0,153,172,32,0,4,0,230,172,32,0,4,0,204,176,32,0,0,2,110,101,119,0,130,130,1,100,101,108,101,116,101,102,111,114,107,101,121, 0,136,130,1,4,0,172,177,32,0,4,0,240,182,32,0,4,0,193,203,32,0,4,0,211,212,32,0,4,0,162,130,33,0,0,7,98,121,116,101,0,227,130,1,115,121,115,101,120,0,233,130,1,110,111,116,101,111,110,0,239,130,1,99,0,245,130,1,112,0,147,131,1,97,102,116,101,114,116, 111,117,99,104,0,206,131,1,114,101,97,108,116,105,109,101,105,110,0,224,131,1,4,0,244,135,33,0,4,0,231,136,33,0,4,0,145,142,33,0,0,2,111,110,116,114,111,108,99,104,97,110,103,101,0,141,131,1,108,107,0,218,131,1,4,0,248,148,33,0,0,3,114,111,103,114,97, 109,99,104,97,110,103,101,0,194,131,1,105,116,99,104,98,101,110,100,0,200,131,1,111,108,121,97,102,116,101,114,116,111,117,99,104,0,212,131,1,4,0,251,153,33,0,4,0,223,158,33,0,4,0,191,163,33,0,4,0,244,168,33,0,4,0,166,173,33,0,4,0,166,178,33,0,0,2,100, 105,95,115,101,116,117,112,0,128,132,1,115,99,95,115,101,116,117,112,0,134,132,1,4,0,196,227,33,0,4,0,175,245,33,0,4,0,196,141,34,0,4,0,136,163,34,0,4,0,234,217,34,0,0,5,110,111,116,101,111,110,0,214,132,1,99,111,110,116,114,111,108,99,104,97,110,103, 101,0,220,132,1,112,0,226,132,1,97,102,116,101,114,116,111,117,99,104,0,157,133,1,98,121,116,101,0,169,133,1,4,0,137,218,34,0,4,0,217,219,34,0,0,3,114,111,103,114,97,109,99,104,97,110,103,101,0,145,133,1,105,116,99,104,98,101,110,100,0,151,133,1,111, 108,121,97,102,116,101,114,116,111,117,99,104,0,163,133,1,4,0,169,221,34,0,4,0,210,222,34,0,4,0,129,224,34,0,4,0,170,225,34,0,4,0,250,226,34,0,0,2,97,112,105,115,0,195,133,1,112,97,114,97,109,115,0,207,133,1,4,0,248,227,34,0,4,0,130,228,34,0,4,0,136, 228,34,0,4,0,158,228,34,0,4,0,182,228,34,0,4,0,188,228,34,0,0,2,105,116,109,105,100,105,113,117,101,117,101,0,132,134,1,99,104,97,110,110,101,108,115,0,193,148,1,4,0,194,228,34,0,4,0,200,228,34,0,4,0,206,228,34,0,0,3,115,101,116,97,112,105,0,186,134, 1,112,114,111,112,101,114,116,105,101,115,0,192,134,1,100,105,97,108,111,103,0,198,134,1,4,0,222,228,34,0,4,0,237,228,34,0,4,0,252,228,34,0,0,2,114,101,99,101,105,118,101,95,0,223,134,1,95,0,253,134,1,0,2,110,101,119,0,241,134,1,115,101,116,117,112,0, 247,134,1,4,0,131,232,34,0,4,0,190,232,34,0,0,14,105,110,105,116,0,241,135,1,99,0,129,136,1,97,0,190,136,1,112,0,135,137,1,115,0,147,138,1,102,0,188,138,1,98,0,241,138,1,117,110,98,105,110,100,0,147,139,1,101,120,105,115,116,115,0,216,139,1,110,111,116, 101,111,110,0,222,139,1,109,0,178,140,1,111,112,101,110,102,105,108,101,0,251,140,1,103,101,116,100,111,108,108,97,114,122,101,114,111,0,135,141,1,108,105,115,116,104,111,111,107,0,176,145,1,4,0,179,234,34,1,95,97,117,100,105,111,0,129,137,1,0,2,108, 0,152,136,1,111,110,116,114,111,108,99,104,97,110,103,101,0,236,139,1,0,2,101,97,114,95,115,101,97,114,99,104,95,112,97,116,104,0,184,136,1,111,115,101,102,105,108,101,0,129,141,1,4,0,176,236,34,0,0,2,100,100,95,0,212,136,1,102,116,101,114,116,111,117, 99,104,0,150,140,1,0,3,116,111,95,115,101,97,114,99,104,95,112,97,116,104,0,251,136,1,102,108,111,97,116,0,176,138,1,115,121,109,98,111,108,0,182,138,1,4,0,211,236,34,0,4,0,134,237,34,0,0,3,114,0,171,137,1,105,116,99,104,98,101,110,100,0,136,140,1,111, 108,121,97,102,116,101,114,116,111,117,99,104,0,164,140,1,0,2,111,0,189,137,1,105,110,116,104,111,111,107,0,152,145,1,0,2,99,101,115,115,95,0,214,137,1,103,114,97,109,99,104,97,110,103,101,0,250,139,1,0,4,114,97,119,0,251,137,1,115,104,111,114,116,0, 129,138,1,102,108,111,97,116,0,135,138,1,100,111,117,98,108,101,0,141,138,1,4,0,157,238,34,0,4,0,161,241,34,0,4,0,192,244,34,0,4,0,182,247,34,0,0,2,116,97,114,116,95,109,101,115,115,97,103,101,0,170,138,1,121,0,153,139,1,4,0,188,250,34,0,4,0,223,250, 34,0,4,0,164,251,34,0,0,2,105,110,105,115,104,95,0,208,138,1,108,111,97,116,0,182,139,1,0,2,108,105,115,116,0,229,138,1,109,101,115,115,97,103,101,0,235,138,1,4,0,251,251,34,0,4,0,205,252,34,0,0,3,105,110,100,0,141,139,1,97,110,103,0,196,139,1,108,111, 99,107,115,105,122,101,0,210,139,1,4,0,176,253,34,0,4,0,207,253,34,0,0,2,109,98,111,108,0,168,139,1,115,0,219,140,1,4,0,230,253,34,1,104,111,111,107,0,170,145,1,4,0,180,254,34,1,104,111,111,107,0,164,145,1,4,0,252,254,34,1,104,111,111,107,0,158,145,1, 4,0,186,255,34,0,4,0,197,255,34,0,4,0,229,255,34,1,104,111,111,107,0,188,145,1,4,0,212,128,35,1,104,111,111,107,0,194,145,1,4,0,195,129,35,1,104,111,111,107,0,200,145,1,4,0,151,130,35,1,104,111,111,107,0,206,145,1,4,0,247,130,35,1,104,111,111,107,0,212, 145,1,4,0,203,131,35,1,104,111,111,107,0,218,145,1,0,2,105,100,105,98,121,116,101,0,205,140,1,101,115,115,97,103,101,104,111,111,107,0,182,145,1,4,0,186,132,35,1,104,111,111,107,0,224,145,1,0,2,101,120,0,239,140,1,114,101,97,108,116,105,109,101,0,245, 140,1,4,0,148,133,35,0,4,0,235,133,35,0,4,0,197,134,35,0,4,0,130,135,35,0,4,0,153,135,35,0,0,3,115,99,97,108,101,95,115,116,114,0,171,141,1,100,98,50,105,0,153,143,1,99,111,108,0,159,143,1,4,0,160,231,44,0,4,0,160,234,44,0,4,0,192,235,44,0,4,0,192,236, 44,0,4,0,128,237,44,0,4,0,192,237,44,0,4,0,128,238,44,0,0,10,112,111,105,110,116,101,114,0,159,142,1,102,108,111,97,116,0,165,142,1,115,0,171,142,1,98,97,110,103,0,197,142,1,108,105,115,116,0,203,142,1,97,110,121,116,104,105,110,103,0,209,142,1,95,0, 221,142,1,120,0,245,142,1,121,0,251,142,1,0,129,143,1,4,0,144,239,44,0,4,0,176,239,44,0,0,2,121,109,98,111,108,0,191,142,1,105,103,110,97,108,0,215,142,1,4,0,208,239,44,0,4,0,240,239,44,0,4,0,144,240,44,0,4,0,176,240,44,0,4,0,208,240,44,0,0,2,78,0,233, 142,1,88,0,239,142,1,4,0,240,240,44,0,4,0,144,241,44,0,4,0,176,241,44,0,4,0,208,241,44,0,4,0,240,241,44,0,4,0,168,243,44,0,4,0,192,243,44,0,4,0,160,251,44,0,4,0,160,252,44,0,4,0,192,131,45,0,4,0,128,135,45,0,4,0,160,135,45,0,0,2,98,108,111,99,107,115, 105,122,101,0,203,143,1,97,100,118,97,110,99,101,0,205,148,1,4,0,200,135,45,0,4,0,128,137,45,0,4,0,132,137,45,1,111,112,101,110,101,100,0,231,143,1,4,0,136,137,45,0,0,2,116,105,109,101,0,255,143,1,100,97,116,101,0,133,144,1,4,0,168,138,45,0,4,0,177,138, 45,0,4,0,192,138,45,0,0,4,115,108,101,101,112,0,188,144,1,97,117,116,111,112,97,116,99,104,0,255,149,1,103,117,105,0,133,150,1,108,111,97,100,98,97,110,103,0,139,150,1,4,0,196,138,45,0,0,2,111,117,116,0,209,144,1,105,110,0,215,144,1,4,0,200,138,45,0, 4,0,204,138,45,0,0,2,105,110,100,101,118,108,105,115,116,0,250,144,1,111,117,116,100,101,118,108,105,115,116,0,128,145,1,4,0,224,138,45,0,4,0,160,139,45,0,4,0,224,139,45,0,4,0,196,140,45,0,4,0,128,142,45,0,4,0,136,142,45,0,4,0,144,142,45,0,4,0,152,142, 45,0,4,0,160,142,45,0,4,0,168,142,45,0,4,0,176,142,45,0,4,0,184,142,45,0,4,0,192,142,45,0,4,0,200,142,45,0,4,0,208,142,45,0,4,0,216,142,45,0,4,0,224,142,45,0,4,0,232,142,45,0,4,0,160,155,46,0,4,0,168,155,46,0,4,0,176,155,46,0,4,0,184,155,46,0,4,0,192, 155,46,0,4,0,200,155,46,0,4,0,208,155,46,0,4,0,216,155,46,0,4,0,224,155,46,0,4,0,232,155,46,0,4,0,240,155,46,0,4,0,248,155,46,0,4,0,128,156,46,0,4,0,136,156,46,0,4,0,144,156,46,0,4,0,152,156,46,0,4,0,160,156,46,0,4,0,168,156,46,0,4,0,176,156,46,0,4,0, 184,156,46,0,4,0,192,156,46,0,4,0,200,156,46,0,4,0,224,156,46,0,4,0,152,157,46,0,4,0,160,157,46,0,4,0,168,157,46,0,4,0,176,157,46,0,4,0,184,157,46,0,4,0,192,157,46,0,4,0,128,158,46,0,4,0,184,158,46,0,4,0,192,158,46,0,4,0,224,158,46,0,4,0,160,159,46,0, 4,0,216,159,46,0,4,0,224,159,46,0,4,0,232,159,46,0,4,0,240,159,46,0,4,0,248,159,46,0,4,0,128,160,46,0,4,0,192,160,46,0,4,0,128,161,46,0,4,0,192,161,46,0,4,0,248,161,46,0,4,0,128,162,46,0,4,0,136,162,46,0,4,0,144,162,46,0,4,0,152,162,46,0,4,0,160,162, 46,0,4,0,168,162,46,0,4,0,176,162,46,0,4,0,184,162,46,1,95,112,101,114,95,100,115,112,95,116,105,99,107,0,175,148,1,4,0,192,162,46,0,4,0,200,162,46,0,4,0,204,162,46,0,4,0,208,162,46,0,4,0,212,162,46,0,4,0,216,162,46,0,0,2,105,110,0,226,148,1,111,117, 116,0,232,148,1,4,0,224,162,46,0,4,0,232,162,46,0,0,2,101,97,116,114,116,0,133,149,1,97,117,108,116,102,111,110,116,0,145,149,1,4,0,240,162,46,0,4,0,244,162,46,0,4,0,248,162,46,0,0,2,101,114,110,0,171,149,1,114,97,102,108,97,103,115,0,215,149,1,0,2,97, 108,115,99,104,101,100,108,105,98,0,195,149,1,108,105,115,116,0,157,150,1,4,0,252,162,46,1,110,97,109,101,0,209,149,1,4,0,128,163,46,0,4,0,232,170,46,1,115,116,114,105,110,103,0,231,149,1,4,0,128,171,46,0,4,0,232,178,46,0,4,0,240,178,46,0,4,0,248,178, 46,0,4,0,128,179,46,0,4,0,132,179,46,0,4,0,136,179,46,0,4,0,140,179,46,0,4,0,144,179,46,0,4,0,152,179,46,0,4,0,160,179,46,0,4,0,168,179,46,0,4,0,176,179,46,0,4,0,184,179,46,0,4,0,192,179,46,0,4,0,200,179,46,0,0,5,97,112,112,101,110,100,95,99,108,97,115, 115,0,151,151,1,108,101,110,103,116,104,95,99,108,97,115,115,0,157,151,1,112,114,101,112,101,110,100,95,99,108,97,115,115,0,163,151,1,115,112,108,105,116,95,99,108,97,115,115,0,169,151,1,116,114,105,109,95,99,108,97,115,115,0,175,151,1,4,0,208,179,46, 0,4,0,216,179,46,0,4,0,224,179,46,0,4,0,232,179,46,0,4,0,240,179,46,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,157,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,186,189,0,0,102,0,1,0,80,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,168,13,0,0,0,0,0,0,254,189,0,0,36,1,0, 0,168,13,0,0,0,0,0,0,1,0,0,0,36,0,0,0,230,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,230,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,142,14,0,0,0,0,0,0,8,190,0,0,36,1,0,0,142,14,0,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,17,15,0,0,0,0,0,0,22,190,0,0,36,1,0,0,17,15,0,0,0,0,0,0,1,0,0,0,36,0,0,0,227,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,227,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,16,0,0,0,0,0,0,34,190,0,0,36,1,0,0,244,16,0,0,0,0,0,0,1,0,0,0,36,0,0,0,120,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,120,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,108,17,0,0,0,0,0,0,54,190,0,0,36,1,0,0,108,17,0,0,0,0,0,0,1,0,0,0,36,0,0,0,123,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,123,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,231,18,0,0,0,0,0,0,72,190,0,0,36,1,0,0,231,18,0,0,0,0,0,0,1,0,0,0, 36,0,0,0,129,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,129,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,104,19,0,0,0,0,0,0,86,190,0,0,36,1,0,0,104,19,0,0,0,0,0,0,1,0,0,0,36,0,0,0,73,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,177,19,0,0,0,0,0,0,96,190,0, 0,36,1,0,0,177,19,0,0,0,0,0,0,1,0,0,0,36,0,0,0,184,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,105,20,0,0,0,0,0,0,112,190,0,0,36,1,0,0,105,20,0,0,0,0,0,0,1,0,0,0,36,0,0,0,66,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,1,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,171,21,0,0,0,0,0,0,124,190,0,0,36,1,0,0,171,21,0,0,0,0,0,0,1,0,0,0,36,0,0,0,230,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,230,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,145,22,0,0,0,0,0,0,135,190,0,0,36,1,0,0,145,22,0,0,0,0,0,0,1,0,0,0,36,0,0,0,137,0,0,0,0,0,0,0, 1,0,0,0,78,1,0,0,137,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,26,23,0,0,0,0,0,0,150,190,0,0,36,1,0,0,26,23,0,0,0,0,0,0,1,0,0,0,36,0,0,0,227,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,227,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,253,24,0,0,0,0,0,0,163,190,0,0,36,1,0,0,253,24,0,0,0,0, 0,0,1,0,0,0,36,0,0,0,120,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,117,25,0,0,0,0,0,0,184,190,0,0,36,1,0,0,117,25,0,0,0,0,0,0,1,0,0,0,36,0,0,0,123,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,123,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,26,0,0,0, 0,0,0,203,190,0,0,36,1,0,0,240,26,0,0,0,0,0,0,1,0,0,0,36,0,0,0,198,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,182,27,0,0,0,0,0,0,214,190,0,0,36,1,0,0,182,27,0,0,0,0,0,0,1,0,0,0,36,0,0,0,184,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,184,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,28,0,0,0,0,0,0,231,190,0,0,36,1,0,0,110,28,0,0,0,0,0,0,1,0,0,0,36,0,0,0,66,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,176,29,0,0,0,0,0,0,244,190,0,0,36,1,0,0,176,29,0,0,0,0,0,0,1,0,0,0,36,0,0,0,230, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,230,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,150,30,0,0,0,0,0,0,255,190,0,0,36,1,0,0,150,30,0,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,31,0,0,0,0,0,0,14,191,0,0,36,1,0,0, 25,31,0,0,0,0,0,0,1,0,0,0,36,0,0,0,227,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,227,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,252,32,0,0,0,0,0,0,27,191,0,0,36,1,0,0,252,32,0,0,0,0,0,0,1,0,0,0,36,0,0,0,120,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 116,33,0,0,0,0,0,0,48,191,0,0,36,1,0,0,116,33,0,0,0,0,0,0,1,0,0,0,36,0,0,0,123,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,123,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,239,34,0,0,0,0,0,0,67,191,0,0,36,1,0,0,239,34,0,0,0,0,0,0,1,0,0,0,36,0,0,0,198,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,198,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,35,0,0,0,0,0,0,78,191,0,0,36,1,0,0,181,35,0,0,0,0,0,0,1,0,0,0,36,0,0,0,184,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,109,36,0,0,0,0,0,0,95,191,0,0,36,1,0,0,109,36,0,0,0,0,0,0,1,0,0,0, 36,0,0,0,66,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,175,37,0,0,0,0,0,0,108,191,0,0,36,1,0,0,175,37,0,0,0,0,0,0,1,0,0,0,36,0,0,0,230,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,230,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,149,38,0,0,0,0,0,0,118,191, 0,0,36,1,0,0,149,38,0,0,0,0,0,0,1,0,0,0,36,0,0,0,169,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,169,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,39,0,0,0,0,0,0,132,191,0,0,36,1,0,0,62,39,0,0,0,0,0,0,1,0,0,0,36,0,0,0,153,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,153,3,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,215,42,0,0,0,0,0,0,144,191,0,0,36,1,0,0,215,42,0,0,0,0,0,0,1,0,0,0,36,0,0,0,151,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,43,0,0,0,0,0,0,164,191,0,0,36,1,0,0,110,43,0,0,0,0,0,0,1,0,0,0,36,0,0,0,157,1,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,157,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,11,45,0,0,0,0,0,0,182,191,0,0,36,1,0,0,11,45,0,0,0,0,0,0,1,0,0,0,36,0,0,0,198,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,209,45,0,0,0,0,0,0,192,191,0,0,36,1,0,0,209,45,0,0,0, 0,0,0,1,0,0,0,36,0,0,0,184,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,137,46,0,0,0,0,0,0,208,191,0,0,36,1,0,0,137,46,0,0,0,0,0,0,1,0,0,0,36,0,0,0,66,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,203,47,0,0,0, 0,0,0,220,191,0,0,36,1,0,0,203,47,0,0,0,0,0,0,1,0,0,0,36,0,0,0,230,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,230,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,177,48,0,0,0,0,0,0,229,191,0,0,36,1,0,0,177,48,0,0,0,0,0,0,1,0,0,0,36,0,0,0,169,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,169,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,90,49,0,0,0,0,0,0,242,191,0,0,36,1,0,0,90,49,0,0,0,0,0,0,1,0,0,0,36,0,0,0,105,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,52,0,0,0,0,0,0,253,191,0,0,36,1,0,0,195,52,0,0,0,0,0,0,1,0,0,0,36,0,0,0,156, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,95,53,0,0,0,0,0,0,16,192,0,0,36,1,0,0,95,53,0,0,0,0,0,0,1,0,0,0,36,0,0,0,227,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,227,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,56,0,0,0,0,0,0,33,192,0,0,36,1,0,0,66, 56,0,0,0,0,0,0,1,0,0,0,36,0,0,0,198,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,8,57,0,0,0,0,0,0,42,192,0,0,36,1,0,0,8,57,0,0,0,0,0,0,1,0,0,0,36,0,0,0,184,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,192,57, 0,0,0,0,0,0,57,192,0,0,36,1,0,0,192,57,0,0,0,0,0,0,1,0,0,0,36,0,0,0,66,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,2,59,0,0,0,0,0,0,68,192,0,0,36,1,0,0,2,59,0,0,0,0,0,0,1,0,0,0,36,0,0,0,230,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,230,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,232,59,0,0,0,0,0,0,77,192,0,0,36,1,0,0,232,59,0,0,0,0,0,0,1,0,0,0,36,0,0,0,173,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,173,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,149,60,0,0,0,0,0,0,90,192,0,0,36,1,0,0,149,60,0,0,0,0,0,0,1,0,0,0,36,0,0,0,137, 3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,137,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,64,0,0,0,0,0,0,101,192,0,0,36,1,0,0,30,64,0,0,0,0,0,0,1,0,0,0,36,0,0,0,160,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,160,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,190,64,0,0,0,0,0,0,120,192,0,0,36,1,0,0, 190,64,0,0,0,0,0,0,1,0,0,0,36,0,0,0,3,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,3,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,193,67,0,0,0,0,0,0,137,192,0,0,36,1,0,0,193,67,0,0,0,0,0,0,1,0,0,0,36,0,0,0,198,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,135, 68,0,0,0,0,0,0,146,192,0,0,36,1,0,0,135,68,0,0,0,0,0,0,1,0,0,0,36,0,0,0,184,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,69,0,0,0,0,0,0,161,192,0,0,36,1,0,0,63,69,0,0,0,0,0,0,1,0,0,0,36,0,0,0,66,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 66,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,129,70,0,0,0,0,0,0,172,192,0,0,36,1,0,0,129,70,0,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,192,192,0,0,38,11,0,0,128,71,11,0,0,0,0,0,204,192,0,0,38,11,0,0,136,71,11,0,0,0,0,0,222,192, 0,0,38,11,0,0,144,71,11,0,0,0,0,0,235,192,0,0,38,11,0,0,152,71,11,0,0,0,0,0,254,192,0,0,38,11,0,0,160,71,11,0,0,0,0,0,11,193,0,0,38,11,0,0,168,71,11,0,0,0,0,0,30,193,0,0,38,11,0,0,176,71,11,0,0,0,0,0,42,193,0,0,38,11,0,0,184,71,11,0,0,0,0,0,60,193,0, 0,38,11,0,0,192,71,11,0,0,0,0,0,71,193,0,0,38,11,0,0,200,71,11,0,0,0,0,0,88,193,0,0,38,11,0,0,208,71,11,0,0,0,0,0,99,193,0,0,38,11,0,0,216,71,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,116,193,0,0,100,0,0,0,0, 0,0,0,0,0,0,0,140,193,0,0,102,0,1,0,80,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,165,70,0,0,0,0,0,0,203,193,0,0,36,1,0,0,165,70,0,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,234,70,0,0,0,0,0,0,223,193,0,0,36, 1,0,0,234,70,0,0,0,0,0,0,1,0,0,0,36,0,0,0,76,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,76,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,54,71,0,0,0,0,0,0,246,193,0,0,36,1,0,0,54,71,0,0,0,0,0,0,1,0,0,0,36,0,0,0,42,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,1,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,96,72,0,0,0,0,0,0,14,194,0,0,36,1,0,0,96,72,0,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,208,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,48,73,0,0,0,0,0,0,34,194,0,0,36,1,0,0,48,73,0,0,0,0,0,0,1,0,0,0,36,0,0,0,84,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,84,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,132,73,0,0,0,0,0,0,54,194,0,0,36,1,0,0,132,73,0,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,73,0,0,0,0,0,0,75,194,0,0,36,1,0,0,153,73,0,0,0,0,0,0,1,0,0,0,36,0, 0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,214,73,0,0,0,0,0,0,97,194,0,0,36,1,0,0,214,73,0,0,0,0,0,0,1,0,0,0,36,0,0,0,48,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,6,74,0,0,0,0,0,0,118,194,0,0,36,1,0, 0,6,74,0,0,0,0,0,0,1,0,0,0,36,0,0,0,55,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,55,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,61,75,0,0,0,0,0,0,140,194,0,0,36,1,0,0,61,75,0,0,0,0,0,0,1,0,0,0,36,0,0,0,138,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,138,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199, 75,0,0,0,0,0,0,159,194,0,0,36,1,0,0,199,75,0,0,0,0,0,0,1,0,0,0,36,0,0,0,93,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,93,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,36,77,0,0,0,0,0,0,182,194,0,0,36,1,0,0,36,77,0,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,208, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,77,0,0,0,0,0,0,201,194,0,0,36,1,0,0,244,77,0,0,0,0,0,0,1,0,0,0,36,0,0,0,84,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,72,78,0,0,0,0,0,0,220,194,0,0,36,1,0,0,72,78,0,0,0,0,0,0,1,0,0,0,36,0,0,0,147, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,147,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,219,78,0,0,0,0,0,0,240,194,0,0,36,1,0,0,219,78,0,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,78,0,0,0,0,0,0,4,195,0,0,36,1,0,0,240, 78,0,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,11,79,0,0,0,0,0,0,24,195,0,0,36,1,0,0,11,79,0,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,38,79,0,0, 0,0,0,0,44,195,0,0,36,1,0,0,38,79,0,0,0,0,0,0,1,0,0,0,36,0,0,0,253,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,253,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,35,80,0,0,0,0,0,0,65,195,0,0,36,1,0,0,35,80,0,0,0,0,0,0,1,0,0,0,36,0,0,0,94,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,94,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,129,80,0,0,0,0,0,0,84,195,0,0,36,1,0,0,129,80,0,0,0,0,0,0,1,0,0,0,36,0,0,0,250,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,250,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,81,0,0,0,0,0,0,107,195,0,0,36,1,0,0,123,81,0,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,208,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,75,82,0,0,0,0,0,0,126,195,0,0,36,1,0,0,75,82,0,0,0,0,0,0,1,0,0,0,36,0,0,0,102,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,177,82,0,0,0,0,0,0,145,195,0,0,36,1,0,0,177, 82,0,0,0,0,0,0,1,0,0,0,36,0,0,0,10,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,10,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,187,82,0,0,0,0,0,0,165,195,0,0,36,1,0,0,187,82,0,0,0,0,0,0,1,0,0,0,36,0,0,0,207,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,207,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,138, 83,0,0,0,0,0,0,186,195,0,0,36,1,0,0,138,83,0,0,0,0,0,0,1,0,0,0,36,0,0,0,123,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,123,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,5,84,0,0,0,0,0,0,206,195,0,0,36,1,0,0,5,84,0,0,0,0,0,0,1,0,0,0,36,0,0,0,67,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67, 2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,72,86,0,0,0,0,0,0,230,195,0,0,36,1,0,0,72,86,0,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,208,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,24,87,0,0,0,0,0,0,250,195,0,0,36,1,0,0,24,87,0,0,0,0,0,0,1,0,0,0,36,0,0,0,102, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,126,87,0,0,0,0,0,0,14,196,0,0,36,1,0,0,126,87,0,0,0,0,0,0,1,0,0,0,36,0,0,0,10,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,10,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,136,87,0,0,0,0,0,0,35,196,0,0,36,1,0,0,136, 87,0,0,0,0,0,0,1,0,0,0,36,0,0,0,207,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,207,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,87,88,0,0,0,0,0,0,57,196,0,0,36,1,0,0,87,88,0,0,0,0,0,0,1,0,0,0,36,0,0,0,153,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,153,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,88, 0,0,0,0,0,0,76,196,0,0,36,1,0,0,240,88,0,0,0,0,0,0,1,0,0,0,36,0,0,0,26,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,10,92,0,0,0,0,0,0,99,196,0,0,36,1,0,0,10,92,0,0,0,0,0,0,1,0,0,0,36,0,0,0,90,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,1,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,100,93,0,0,0,0,0,0,118,196,0,0,36,1,0,0,100,93,0,0,0,0,0,0,1,0,0,0,36,0,0,0,29,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,129,93,0,0,0,0,0,0,137,196,0,0,36,1,0,0,129,93,0,0,0,0,0,0,1,0,0,0,36,0,0,0,135, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,135,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,8,94,0,0,0,0,0,0,156,196,0,0,36,1,0,0,8,94,0,0,0,0,0,0,1,0,0,0,36,0,0,0,248,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,248,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,0,95,0,0,0,0,0,0,177,196,0,0,36,1,0,0,0,95, 0,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,69,95,0,0,0,0,0,0,190,196,0,0,36,1,0,0,69,95,0,0,0,0,0,0,1,0,0,0,36,0,0,0,20,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,20,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,89,96,0,0,0, 0,0,0,207,196,0,0,36,1,0,0,89,96,0,0,0,0,0,0,1,0,0,0,36,0,0,0,74,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,163,97,0,0,0,0,0,0,220,196,0,0,36,1,0,0,163,97,0,0,0,0,0,0,1,0,0,0,36,0,0,0,148,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,148,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,55,98,0,0,0,0,0,0,235,196,0,0,36,1,0,0,55,98,0,0,0,0,0,0,1,0,0,0,36,0,0,0,193,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,248,98,0,0,0,0,0,0,255,196,0,0,36,1,0,0,248,98,0,0,0,0,0,0,1,0,0,0,36,0,0,0,12,1, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,12,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,4,100,0,0,0,0,0,0,15,197,0,0,36,1,0,0,4,100,0,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,100,0,0,0,0,0,0,31,197,0,0,36,1,0,0,66,100, 0,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,197,100,0,0,0,0,0,0,49,197,0,0,36,1,0,0,197,100,0,0,0,0,0,0,1,0,0,0,36,0,0,0,252,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,252,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,193, 101,0,0,0,0,0,0,64,197,0,0,36,1,0,0,193,101,0,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,219,101,0,0,0,0,0,0,77,197,0,0,36,1,0,0,219,101,0,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,62,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,102,0,0,0,0,0,0,90,197,0,0,36,1,0,0,25,102,0,0,0,0,0,0,1,0,0,0,36,0,0,0,156,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,102,0,0,0,0,0,0,105,197,0,0,36,1,0,0,181,102,0,0,0,0,0,0,1,0,0,0, 36,0,0,0,91,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,16,105,0,0,0,0,0,0,121,197,0,0,36,1,0,0,16,105,0,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,42,105,0,0,0,0,0,0,135,197,0, 0,36,1,0,0,42,105,0,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,104,105,0,0,0,0,0,0,149,197,0,0,36,1,0,0,104,105,0,0,0,0,0,0,1,0,0,0,36,0,0,0,156,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,4,106,0,0,0,0,0,0,165,197,0,0,36,1,0,0,4,106,0,0,0,0,0,0,1,0,0,0,36,0,0,0,225,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,225,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,229,106,0,0,0,0,0,0,181,197,0,0,36,1,0,0,229,106,0,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,255,106,0,0,0,0,0,0,195,197,0,0,36,1,0,0,255,106,0,0,0,0,0,0,1,0,0,0,36,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,74,107,0,0,0,0,0,0,209,197,0,0,36,1,0,0,74,107,0,0, 0,0,0,0,1,0,0,0,36,0,0,0,156,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,230,107,0,0,0,0,0,0,225,197,0,0,36,1,0,0,230,107,0,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,240,197,0,0,38,11,0,0,224, 71,11,0,0,0,0,0,252,197,0,0,38,11,0,0,232,71,11,0,0,0,0,0,18,198,0,0,38,11,0,0,240,71,11,0,0,0,0,0,39,198,0,0,38,11,0,0,248,71,11,0,0,0,0,0,60,198,0,0,38,11,0,0,0,72,11,0,0,0,0,0,82,198,0,0,38,11,0,0,8,72,11,0,0,0,0,0,103,198,0,0,38,11,0,0,16,72,11,0, 0,0,0,0,118,198,0,0,38,11,0,0,24,72,11,0,0,0,0,0,136,198,0,0,38,11,0,0,32,72,11,0,0,0,0,0,151,198,0,0,38,11,0,0,40,72,11,0,0,0,0,0,167,198,0,0,38,11,0,0,48,72,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,183,198, 0,0,100,0,0,0,0,0,0,0,0,0,0,0,205,198,0,0,102,0,1,0,80,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,30,108,0,0,0,0,0,0,10,199,0,0,36,1,0,0,30,108,0,0,0,0,0,0,1,0,0,0,36,0,0,0,88,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,118,108,0,0,0,0,0, 0,29,199,0,0,36,1,0,0,118,108,0,0,0,0,0,0,1,0,0,0,36,0,0,0,180,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,180,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,42,109,0,0,0,0,0,0,46,199,0,0,36,1,0,0,42,109,0,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,147,109,0,0,0,0,0,0,66,199,0,0,36,1,0,0,147,109,0,0,0,0,0,0,1,0,0,0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,109,0,0,0,0,0,0,83,199,0,0,36,1,0,0,172,109,0,0,0,0,0,0,1,0,0,0,36,0,0,0,71,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,71,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,243,109,0,0,0,0,0,0,98,199,0,0,36,1,0,0,243,109,0,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,56,110,0,0,0,0,0,0,113,199,0,0,36,1,0,0,56, 110,0,0,0,0,0,0,1,0,0,0,36,0,0,0,150,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,206,110,0,0,0,0,0,0,130,199,0,0,36,1,0,0,206,110,0,0,0,0,0,0,1,0,0,0,36,0,0,0,190,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,190,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 140,112,0,0,0,0,0,0,150,199,0,0,36,1,0,0,140,112,0,0,0,0,0,0,1,0,0,0,36,0,0,0,29,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,29,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,169,114,0,0,0,0,0,0,168,199,0,0,36,1,0,0,169,114,0,0,0,0,0,0,1,0,0,0,36,0,0,0,132,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,132,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,45,115,0,0,0,0,0,0,186,199,0,0,36,1,0,0,45,115,0,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,115,0,0,0,0,0,0,203,199,0,0,36,1,0,0,94,115,0,0,0,0,0,0,1,0, 0,0,36,0,0,0,222,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,222,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,116,0,0,0,0,0,0,219,199,0,0,36,1,0,0,60,116,0,0,0,0,0,0,1,0,0,0,36,0,0,0,150,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,210,116,0,0,0,0,0,0,235, 199,0,0,36,1,0,0,210,116,0,0,0,0,0,0,1,0,0,0,36,0,0,0,174,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,174,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,128,117,0,0,0,0,0,0,253,199,0,0,36,1,0,0,128,117,0,0,0,0,0,0,1,0,0,0,36,0,0,0,188,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,188,2,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,60,120,0,0,0,0,0,0,18,200,0,0,36,1,0,0,60,120,0,0,0,0,0,0,1,0,0,0,36,0,0,0,160,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,160,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,220,120,0,0,0,0,0,0,36,200,0,0,36,1,0,0,220,120,0,0,0,0,0,0,1,0,0,0,36,0,0,0,108,2,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,108,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,72,123,0,0,0,0,0,0,55,200,0,0,36,1,0,0,72,123,0,0,0,0,0,0,1,0,0,0,36,0,0,0,149,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,221,123,0,0,0,0,0,0,72,200,0,0,36,1,0,0,221, 123,0,0,0,0,0,0,1,0,0,0,36,0,0,0,200,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,200,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,165,124,0,0,0,0,0,0,89,200,0,0,36,1,0,0,165,124,0,0,0,0,0,0,1,0,0,0,36,0,0,0,189,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,189,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 98,125,0,0,0,0,0,0,108,200,0,0,36,1,0,0,98,125,0,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,168,125,0,0,0,0,0,0,128,200,0,0,36,1,0,0,168,125,0,0,0,0,0,0,1,0,0,0,36,0,0,0,60,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,228,125,0,0,0,0,0,0,152,200,0,0,36,1,0,0,228,125,0,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,53,126,0,0,0,0,0,0,172,200,0,0,36,1,0,0,53,126,0,0,0,0,0,0,1,0,0, 0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,89,126,0,0,0,0,0,0,193,200,0,0,36,1,0,0,89,126,0,0,0,0,0,0,1,0,0,0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,114,126,0,0,0,0,0,0,213,200, 0,0,36,1,0,0,114,126,0,0,0,0,0,0,1,0,0,0,36,0,0,0,197,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,197,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,55,127,0,0,0,0,0,0,235,200,0,0,36,1,0,0,55,127,0,0,0,0,0,0,1,0,0,0,36,0,0,0,92,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,147,127,0,0,0,0,0,0,0,201,0,0,36,1,0,0,147,127,0,0,0,0,0,0,1,0,0,0,36,0,0,0,152,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,152,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,43,128,0,0,0,0,0,0,25,201,0,0,36,1,0,0,43,128,0,0,0,0,0,0,1,0,0,0,36,0,0,0,211,0,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,211,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,254,128,0,0,0,0,0,0,46,201,0,0,36,1,0,0,254,128,0,0,0,0,0,0,1,0,0,0,36,0,0,0,160,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,160,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,158,129,0,0,0,0,0,0,68,201,0,0,36,1,0,0,158,129,0, 0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,215,129,0,0,0,0,0,0,88,201,0,0,36,1,0,0,215,129,0,0,0,0,0,0,1,0,0,0,36,0,0,0,162,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,162,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,121,130, 0,0,0,0,0,0,111,201,0,0,36,1,0,0,121,130,0,0,0,0,0,0,1,0,0,0,36,0,0,0,39,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,132,0,0,0,0,0,0,126,201,0,0,36,1,0,0,160,132,0,0,0,0,0,0,1,0,0,0,36,0,0,0,187,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 187,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,91,134,0,0,0,0,0,0,145,201,0,0,36,1,0,0,91,134,0,0,0,0,0,0,1,0,0,0,36,0,0,0,84,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,84,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,175,135,0,0,0,0,0,0,160,201,0,0,36,1,0,0,175,135,0,0,0,0,0,0,1,0,0,0,36, 0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,219,135,0,0,0,0,0,0,176,201,0,0,36,1,0,0,219,135,0,0,0,0,0,0,1,0,0,0,36,0,0,0,73,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,36,136,0,0,0,0,0,0,190,201,0,0, 36,1,0,0,36,136,0,0,0,0,0,0,1,0,0,0,36,0,0,0,177,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,213,136,0,0,0,0,0,0,207,201,0,0,36,1,0,0,213,136,0,0,0,0,0,0,1,0,0,0,36,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,214,137,0,0,0,0,0,0,228,201,0,0,36,1,0,0,214,137,0,0,0,0,0,0,1,0,0,0,36,0,0,0,89,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,89,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,47,138,0,0,0,0,0,0,249,201,0,0,36,1,0,0,47,138,0,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,99,138,0,0,0,0,0,0,14,202,0,0,36,1,0,0,99,138,0,0,0,0,0,0,1,0,0,0,36,0,0,0,53,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,152,138,0,0,0,0,0,0,36,202,0,0,36,1,0,0,152,138,0,0,0,0,0, 0,1,0,0,0,36,0,0,0,54,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,54,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,206,139,0,0,0,0,0,0,61,202,0,0,36,1,0,0,206,139,0,0,0,0,0,0,1,0,0,0,36,0,0,0,136,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,136,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,86,140,0,0,0,0,0, 0,82,202,0,0,36,1,0,0,86,140,0,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,113,140,0,0,0,0,0,0,102,202,0,0,36,1,0,0,113,140,0,0,0,0,0,0,1,0,0,0,36,0,0,0,46,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,1,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,159,141,0,0,0,0,0,0,125,202,0,0,36,1,0,0,159,141,0,0,0,0,0,0,1,0,0,0,36,0,0,0,41,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,0,0,0,0,138,202,0,0,38,11,0,0,56,72,11,0,0,0,0,0,155,202,0,0,38,11,0,0,64,72,11,0,0,0,0,0,173,202,0,0,38,11, 0,0,72,72,11,0,0,0,0,0,192,202,0,0,38,11,0,0,80,72,11,0,0,0,0,0,214,202,0,0,38,11,0,0,88,72,11,0,0,0,0,0,237,202,0,0,38,11,0,0,96,72,11,0,0,0,0,0,4,203,0,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0, 0,0,21,203,0,0,100,0,0,0,0,0,0,0,0,0,0,0,43,203,0,0,102,0,1,0,80,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,200,141,0,0,0,0,0,0,104,203,0,0,36,1,0,0,200,141,0,0,0,0,0,0,1,0,0,0,36,0,0,0,18,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,218, 142,0,0,0,0,0,0,113,203,0,0,36,1,0,0,218,142,0,0,0,0,0,0,1,0,0,0,36,0,0,0,234,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,234,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,196,143,0,0,0,0,0,0,122,203,0,0,36,1,0,0,196,143,0,0,0,0,0,0,1,0,0,0,36,0,0,0,43,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,43,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,239,143,0,0,0,0,0,0,132,203,0,0,36,1,0,0,239,143,0,0,0,0,0,0,1,0,0,0,36,0,0,0,190,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,190,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,173,144,0,0,0,0,0,0,143,203,0,0,36,1,0,0,173,144,0,0,0,0,0,0,1, 0,0,0,36,0,0,0,251,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,251,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,168,145,0,0,0,0,0,0,152,203,0,0,36,1,0,0,168,145,0,0,0,0,0,0,1,0,0,0,36,0,0,0,95,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,95,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,7,146,0,0,0,0,0,0,166, 203,0,0,36,1,0,0,7,146,0,0,0,0,0,0,1,0,0,0,36,0,0,0,35,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,42,147,0,0,0,0,0,0,178,203,0,0,36,1,0,0,42,147,0,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,0,0,0,0,1, 0,0,0,46,1,0,0,147,147,0,0,0,0,0,0,192,203,0,0,36,1,0,0,147,147,0,0,0,0,0,0,1,0,0,0,36,0,0,0,211,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,211,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,102,148,0,0,0,0,0,0,201,203,0,0,36,1,0,0,102,148,0,0,0,0,0,0,1,0,0,0,36,0,0,0,43,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,145,148,0,0,0,0,0,0,211,203,0,0,36,1,0,0,145,148,0,0,0,0,0,0,1,0,0,0,36,0,0,0,173,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,173,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,149,0,0,0,0,0,0,222,203,0,0,36,1,0,0,62, 149,0,0,0,0,0,0,1,0,0,0,36,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,235,203,0,0,38,11,0,0,104,72,11,0,0,0,0,0,246,203,0,0,38,11,0,0,112,72,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,204,0,0, 100,0,0,0,0,0,0,0,0,0,0,0,25,204,0,0,102,0,1,0,81,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,78,149,0,0,0,0,0,0,88,204,0,0,36,1,0,0,78,149,0,0,0,0,0,0,1,0,0,0,36,0,0,0,176,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,254,149,0,0,0,0,0,0, 110,204,0,0,36,1,0,0,254,149,0,0,0,0,0,0,1,0,0,0,36,0,0,0,63,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,61,150,0,0,0,0,0,0,136,204,0,0,36,1,0,0,61,150,0,0,0,0,0,0,1,0,0,0,36,0,0,0,170,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,170,0,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,231,150,0,0,0,0,0,0,153,204,0,0,36,1,0,0,231,150,0,0,0,0,0,0,1,0,0,0,36,0,0,0,89,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,89,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,152,0,0,0,0,0,0,174,204,0,0,36,1,0,0,64,152,0,0,0,0,0,0,1,0,0,0,36,0,0,0,127,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,127,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,191,152,0,0,0,0,0,0,191,204,0,0,36,1,0,0,191,152,0,0,0,0,0,0,1,0,0,0,36,0,0,0,64,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,255,152,0,0,0,0,0,0,209,204,0,0,36,1,0,0,255, 152,0,0,0,0,0,0,1,0,0,0,36,0,0,0,165,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,164,153,0,0,0,0,0,0,228,204,0,0,36,1,0,0,164,153,0,0,0,0,0,0,1,0,0,0,36,0,0,0,116,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,116,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 24,154,0,0,0,0,0,0,244,204,0,0,36,1,0,0,24,154,0,0,0,0,0,0,1,0,0,0,36,0,0,0,252,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,252,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20,155,0,0,0,0,0,0,6,205,0,0,36,1,0,0,20,155,0,0,0,0,0,0,1,0,0,0,36,0,0,0,225,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,225,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245,155,0,0,0,0,0,0,26,205,0,0,36,1,0,0,245,155,0,0,0,0,0,0,1,0,0,0,36,0,0,0,83,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,83,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,72,157,0,0,0,0,0,0,42,205,0,0,36,1,0,0,72,157,0,0,0,0,0,0,1,0,0,0, 36,0,0,0,158,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,158,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,230,157,0,0,0,0,0,0,60,205,0,0,36,1,0,0,230,157,0,0,0,0,0,0,1,0,0,0,36,0,0,0,127,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,127,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,101,158,0,0,0,0,0,0,71,205, 0,0,36,1,0,0,101,158,0,0,0,0,0,0,1,0,0,0,36,0,0,0,140,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,140,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,241,160,0,0,0,0,0,0,86,205,0,0,36,1,0,0,241,160,0,0,0,0,0,0,1,0,0,0,36,0,0,0,21,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,1,0,0,0,0,0,0,1, 0,0,0,46,1,0,0,6,162,0,0,0,0,0,0,97,205,0,0,36,1,0,0,6,162,0,0,0,0,0,0,1,0,0,0,36,0,0,0,148,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,148,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,154,162,0,0,0,0,0,0,110,205,0,0,36,1,0,0,154,162,0,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,125,205,0,0,38,11,0,0,120,72,11,0,0,0,0,0,139,205,0,0,38,11,0,0,128,72,11,0,0,0,0,0,158,205,0,0,38,11,0,0,136,72,11,0,0,0,0,0,176,205,0,0,38,11,0,0,144,72,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0, 100,0,0,0,0,0,0,0,0,0,0,0,189,205,0,0,100,0,0,0,0,0,0,0,0,0,0,0,211,205,0,0,102,0,1,0,81,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,175,162,0,0,0,0,0,0,16,206,0,0,36,1,0,0,175,162,0,0,0,0,0,0,1,0,0,0,36,0,0,0,113,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,113,0,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,32,163,0,0,0,0,0,0,29,206,0,0,36,1,0,0,32,163,0,0,0,0,0,0,1,0,0,0,36,0,0,0,110,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,142,163,0,0,0,0,0,0,43,206,0,0,36,1,0,0,142,163,0,0,0,0,0,0,1,0,0,0,36,0,0,0,117,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,3,164,0,0,0,0,0,0,55,206,0,0,36,1,0,0,3,164,0,0,0,0,0,0,1,0,0,0,36,0,0,0,117,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,120,164,0,0,0,0,0,0,68,206,0,0,36,1,0,0,120,164, 0,0,0,0,0,0,1,0,0,0,36,0,0,0,82,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,202,164,0,0,0,0,0,0,84,206,0,0,36,1,0,0,202,164,0,0,0,0,0,0,1,0,0,0,36,0,0,0,82,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,28,165,0, 0,0,0,0,0,101,206,0,0,36,1,0,0,28,165,0,0,0,0,0,0,1,0,0,0,36,0,0,0,142,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,142,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,166,0,0,0,0,0,0,114,206,0,0,36,1,0,0,170,166,0,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,208,166,0,0,0,0,0,0,126,206,0,0,36,1,0,0,208,166,0,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,246,166,0,0,0,0,0,0,139,206,0,0,36,1,0,0,246,166,0,0,0,0,0,0,1,0,0,0,36,0, 0,0,21,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,11,168,0,0,0,0,0,0,153,206,0,0,36,1,0,0,11,168,0,0,0,0,0,0,1,0,0,0,36,0,0,0,90,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,101,168,0,0,0,0,0,0,166,206,0,0,36, 1,0,0,101,168,0,0,0,0,0,0,1,0,0,0,36,0,0,0,63,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,164,168,0,0,0,0,0,0,183,206,0,0,36,1,0,0,164,168,0,0,0,0,0,0,1,0,0,0,36,0,0,0,131,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,1,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,39,170,0,0,0,0,0,0,196,206,0,0,36,1,0,0,39,170,0,0,0,0,0,0,1,0,0,0,36,0,0,0,155,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,194,170,0,0,0,0,0,0,211,206,0,0,36,1,0,0,194,170,0,0,0,0,0,0,1,0,0,0,36,0,0,0,93,0,0,0,0,0,0,0, 1,0,0,0,78,1,0,0,93,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,171,0,0,0,0,0,0,225,206,0,0,36,1,0,0,31,171,0,0,0,0,0,0,1,0,0,0,36,0,0,0,63,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,171,0,0,0,0,0,0,243,206,0,0,36,1,0,0,94,171,0,0,0,0, 0,0,1,0,0,0,36,0,0,0,98,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,98,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,192,172,0,0,0,0,0,0,1,207,0,0,36,1,0,0,192,172,0,0,0,0,0,0,1,0,0,0,36,0,0,0,155,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,91,173,0,0,0,0, 0,0,17,207,0,0,36,1,0,0,91,173,0,0,0,0,0,0,1,0,0,0,36,0,0,0,117,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,208,173,0,0,0,0,0,0,31,207,0,0,36,1,0,0,208,173,0,0,0,0,0,0,1,0,0,0,36,0,0,0,171,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,171,2,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,123,176,0,0,0,0,0,0,49,207,0,0,36,1,0,0,123,176,0,0,0,0,0,0,1,0,0,0,36,0,0,0,217,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,217,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,84,177,0,0,0,0,0,0,63,207,0,0,36,1,0,0,84,177,0,0,0,0,0,0,1,0,0,0,36,0,0,0,128, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,128,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,212,177,0,0,0,0,0,0,79,207,0,0,36,1,0,0,212,177,0,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,92,207,0,0,38,11,0,0,152,72,11,0,0,0,0,0,106,207,0,0,38, 11,0,0,160,72,11,0,0,0,0,0,121,207,0,0,38,11,0,0,168,72,11,0,0,0,0,0,136,207,0,0,38,11,0,0,176,72,11,0,0,0,0,0,152,207,0,0,38,11,0,0,184,72,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,168,207,0,0,100,0,0,0,0,0, 0,0,0,0,0,0,196,207,0,0,102,0,1,0,81,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,238,177,0,0,0,0,0,0,7,208,0,0,36,1,0,0,238,177,0,0,0,0,0,0,1,0,0,0,36,0,0,0,195,15,0,0,0,0,0,0,1,0,0,0,78,1,0,0,195,15,0,0,0,0,0,0,1,0,0,0,46,1,0,0,177,193,0,0,0,0,0,0,18,208,0,0, 36,1,0,0,177,193,0,0,0,0,0,0,1,0,0,0,36,0,0,0,142,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,142,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,195,0,0,0,0,0,0,29,208,0,0,36,1,0,0,63,195,0,0,0,0,0,0,1,0,0,0,36,0,0,0,142,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,142,1,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,205,196,0,0,0,0,0,0,41,208,0,0,36,1,0,0,205,196,0,0,0,0,0,0,1,0,0,0,36,0,0,0,199,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,199,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,148,197,0,0,0,0,0,0,56,208,0,0,36,1,0,0,148,197,0,0,0,0,0,0,1,0,0,0,36,0,0,0,165,0,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,165,0,0,0,0,0,0,0,72,208,0,0,38,10,0,0,160,59,11,0,0,0,0,0,80,208,0,0,38,10,0,0,0,60,11,0,0,0,0,0,88,208,0,0,38,10,0,0,96,60,11,0,0,0,0,0,96,208,0,0,38,10,0,0,192,60,11,0,0,0,0,0,104,208,0,0,38,10,0,0,32,61,11,0,0,0,0,0,1,0,0,0,100, 1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,112,208,0,0,100,0,0,0,0,0,0,0,0,0,0,0,141,208,0,0,102,0,1,0,81,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,57,198,0,0,0,0,0,0,209,208,0,0,36,1,0,0,57,198,0,0,0,0,0,0,1,0,0,0,36,0,0,0,93,1,0,0,0,0,0,0, 1,0,0,0,78,1,0,0,93,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,150,199,0,0,0,0,0,0,215,208,0,0,36,1,0,0,150,199,0,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,231,199,0,0,0,0,0,0,226,208,0,0,36,1,0,0,231,199,0,0, 0,0,0,0,1,0,0,0,36,0,0,0,80,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,55,208,0,0,0,0,0,0,245,208,0,0,36,1,0,0,55,208,0,0,0,0,0,0,1,0,0,0,36,0,0,0,99,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,99,8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,154,216,0,0,0, 0,0,0,5,209,0,0,36,1,0,0,154,216,0,0,0,0,0,0,1,0,0,0,36,0,0,0,133,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,133,8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,225,0,0,0,0,0,0,22,209,0,0,36,1,0,0,31,225,0,0,0,0,0,0,1,0,0,0,36,0,0,0,6,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,3,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,37,228,0,0,0,0,0,0,35,209,0,0,36,1,0,0,37,228,0,0,0,0,0,0,1,0,0,0,36,0,0,0,196,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,196,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,233,229,0,0,0,0,0,0,46,209,0,0,36,1,0,0,233,229,0,0,0,0,0,0,1,0,0,0,36,0,0,0,183,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,183,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,230,0,0,0,0,0,0,59,209,0,0,36,1,0,0,160,230,0,0,0,0,0,0,1,0,0,0,36,0,0,0,55,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,215,230,0,0,0,0,0,0,73,209,0,0,36,1,0,0,215, 230,0,0,0,0,0,0,1,0,0,0,36,0,0,0,132,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,132,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,91,231,0,0,0,0,0,0,89,209,0,0,36,1,0,0,91,231,0,0,0,0,0,0,1,0,0,0,36,0,0,0,43,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,134, 231,0,0,0,0,0,0,109,209,0,0,36,1,0,0,134,231,0,0,0,0,0,0,1,0,0,0,36,0,0,0,58,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,192,231,0,0,0,0,0,0,125,209,0,0,36,1,0,0,192,231,0,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,208,0,0,0,0,0,0,0,133,209,0,0,38,11,0,0,192,72,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,143,209,0,0,100,0,0,0,0,0,0,0,0,0,0,0,168,209,0,0,102,0,1,0,81,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,144,232,0,0,0,0, 0,0,232,209,0,0,36,1,0,0,144,232,0,0,0,0,0,0,1,0,0,0,36,0,0,0,172,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,172,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,233,0,0,0,0,0,0,244,209,0,0,36,1,0,0,60,233,0,0,0,0,0,0,1,0,0,0,36,0,0,0,192,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,192,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,252,233,0,0,0,0,0,0,0,210,0,0,36,1,0,0,252,233,0,0,0,0,0,0,1,0,0,0,36,0,0,0,49,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,45,235,0,0,0,0,0,0,16,210,0,0,36,1,0,0,45,235,0,0,0,0,0,0,1,0,0,0,36,0,0,0,127, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,127,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,235,0,0,0,0,0,0,28,210,0,0,36,1,0,0,172,235,0,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,235,0,0,0,0,0,0,42,210,0,0,36,1,0,0, 199,235,0,0,0,0,0,0,1,0,0,0,36,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,203,236,0,0,0,0,0,0,56,210,0,0,36,1,0,0,203,236,0,0,0,0,0,0,1,0,0,0,36,0,0,0,172,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,172,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 119,237,0,0,0,0,0,0,68,210,0,0,36,1,0,0,119,237,0,0,0,0,0,0,1,0,0,0,36,0,0,0,188,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,188,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,51,238,0,0,0,0,0,0,80,210,0,0,36,1,0,0,51,238,0,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,78,238,0,0,0,0,0,0,94,210,0,0,36,1,0,0,78,238,0,0,0,0,0,0,1,0,0,0,36,0,0,0,241,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,241,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,239,0,0,0,0,0,0,110,210,0,0,36,1,0,0,63,239,0,0,0,0,0,0,1,0,0, 0,36,0,0,0,127,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,127,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,190,239,0,0,0,0,0,0,122,210,0,0,36,1,0,0,190,239,0,0,0,0,0,0,1,0,0,0,36,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,194,240,0,0,0,0,0,0,136,210, 0,0,36,1,0,0,194,240,0,0,0,0,0,0,1,0,0,0,36,0,0,0,249,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,249,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,187,241,0,0,0,0,0,0,147,210,0,0,36,1,0,0,187,241,0,0,0,0,0,0,1,0,0,0,36,0,0,0,193,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,124,242,0,0,0,0,0,0,159,210,0,0,36,1,0,0,124,242,0,0,0,0,0,0,1,0,0,0,36,0,0,0,85,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,209,243,0,0,0,0,0,0,173,210,0,0,36,1,0,0,209,243,0,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,4,244,0,0,0,0,0,0,184,210,0,0,36,1,0,0,4,244,0,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,55,244,0,0,0,0,0,0,195,210,0,0,36,1,0,0,55,244,0, 0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,99,244,0,0,0,0,0,0,208,210,0,0,36,1,0,0,99,244,0,0,0,0,0,0,1,0,0,0,36,0,0,0,72,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,72,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,171,245,0,0, 0,0,0,0,223,210,0,0,36,1,0,0,171,245,0,0,0,0,0,0,1,0,0,0,36,0,0,0,136,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,136,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,51,246,0,0,0,0,0,0,234,210,0,0,36,1,0,0,51,246,0,0,0,0,0,0,1,0,0,0,36,0,0,0,65,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,65,1, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,116,247,0,0,0,0,0,0,247,210,0,0,36,1,0,0,116,247,0,0,0,0,0,0,1,0,0,0,36,0,0,0,134,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,250,247,0,0,0,0,0,0,6,211,0,0,36,1,0,0,250,247,0,0,0,0,0,0,1,0,0,0,36,0,0, 0,89,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,89,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,83,249,0,0,0,0,0,0,25,211,0,0,36,1,0,0,83,249,0,0,0,0,0,0,1,0,0,0,36,0,0,0,143,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,143,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,226,250,0,0,0,0,0,0,41,211,0,0,36,1, 0,0,226,250,0,0,0,0,0,0,1,0,0,0,36,0,0,0,88,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,58,251,0,0,0,0,0,0,56,211,0,0,36,1,0,0,58,251,0,0,0,0,0,0,1,0,0,0,36,0,0,0,92,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,150,251,0,0,0,0,0,0,71,211,0,0,36,1,0,0,150,251,0,0,0,0,0,0,1,0,0,0,36,0,0,0,32,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,182,252,0,0,0,0,0,0,88,211,0,0,36,1,0,0,182,252,0,0,0,0,0,0,1,0,0,0,36,0,0,0,112,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,112,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,38,253,0,0,0,0,0,0,105,211,0,0,36,1,0,0,38,253,0,0,0,0,0,0,1,0,0,0,36,0,0,0,217,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,217,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,255,253,0,0,0,0,0,0,126,211,0,0,36,1,0,0,255,253,0,0,0,0,0,0, 1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,105,254,0,0,0,0,0,0,143,211,0,0,36,1,0,0,105,254,0,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,186,254,0,0,0,0,0, 0,162,211,0,0,36,1,0,0,186,254,0,0,0,0,0,0,1,0,0,0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,211,254,0,0,0,0,0,0,179,211,0,0,36,1,0,0,211,254,0,0,0,0,0,0,1,0,0,0,36,0,0,0,246,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,246,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,201,255,0,0,0,0,0,0,198,211,0,0,36,1,0,0,201,255,0,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,51,0,1,0,0,0,0,0,212,211,0,0,36,1,0,0,51,0,1,0,0,0,0,0,1,0,0,0,36,0,0,0,235,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,235,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,1,1,0,0,0,0,0,230,211,0,0,36,1,0,0,30,1,1,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,136,1,1,0,0,0,0,0,244,211,0,0,36,1,0,0,136,1, 1,0,0,0,0,0,1,0,0,0,36,0,0,0,22,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,158,1,1,0,0,0,0,0,4,212,0,0,36,1,0,0,158,1,1,0,0,0,0,0,1,0,0,0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,183,1,1,0,0,0, 0,0,18,212,0,0,36,1,0,0,183,1,1,0,0,0,0,0,1,0,0,0,36,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,187,2,1,0,0,0,0,0,34,212,0,0,36,1,0,0,187,2,1,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,37,3,1,0,0,0,0,0,48,212,0,0,36,1,0,0,37,3,1,0,0,0,0,0,1,0,0,0,36,0,0,0,201,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,238,3,1,0,0,0,0,0,66,212,0,0,36,1,0,0,238,3,1,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,88,4,1,0,0,0,0,0,80,212,0,0,36,1,0,0,88,4,1,0,0,0,0,0,1,0,0,0,36,0,0,0,22,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,4,1,0,0,0,0,0,96,212,0,0,36,1,0,0,110,4,1,0,0,0,0,0,1,0,0, 0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,135,4,1,0,0,0,0,0,110,212,0,0,36,1,0,0,135,4,1,0,0,0,0,0,1,0,0,0,36,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,139,5,1,0,0,0,0,0,126,212,0,0,36, 1,0,0,139,5,1,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245,5,1,0,0,0,0,0,144,212,0,0,36,1,0,0,245,5,1,0,0,0,0,0,1,0,0,0,36,0,0,0,201,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,190,6,1,0,0,0,0,0,166,212,0,0,36,1,0,0,190,6,1,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,7,1,0,0,0,0,0,184,212,0,0,36,1,0,0,40,7,1,0,0,0,0,0,1,0,0,0,36,0,0,0,22,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,22,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,7,1,0,0,0,0,0,204,212,0,0,36,1,0,0,62,7,1,0,0,0,0,0,1,0,0,0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,87,7,1,0,0,0,0,0,222,212,0,0,36,1,0,0,87,7,1,0,0,0,0,0,1,0,0,0,36,0,0,0, 4,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,91,8,1,0,0,0,0,0,242,212,0,0,36,1,0,0,91,8,1,0,0,0,0,0,1,0,0,0,36,0,0,0,220,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,220,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,55,9,1,0,0,0,0,0,0,213,0,0,36,1,0,0,55,9,1, 0,0,0,0,0,1,0,0,0,36,0,0,0,206,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,206,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,5,11,1,0,0,0,0,0,18,213,0,0,36,1,0,0,5,11,1,0,0,0,0,0,1,0,0,0,36,0,0,0,166,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,166,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,171,11,1,0,0, 0,0,0,32,213,0,0,36,1,0,0,171,11,1,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,207,11,1,0,0,0,0,0,48,213,0,0,36,1,0,0,207,11,1,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,247,11,1,0,0,0,0,0,62,213,0,0,36,1,0,0,247,11,1,0,0,0,0,0,1,0,0,0,36,0,0,0,18,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,9,13,1,0,0,0,0,0,78,213,0,0,36,1,0,0,9,13,1,0,0,0,0,0,1,0,0,0,36,0,0,0,220,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,220,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,229,13,1,0,0,0,0,0,92,213,0,0,36,1,0,0,229,13,1,0,0,0,0,0,1,0,0,0,36,0,0,0,132,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,132,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,105,15,1,0,0,0,0,0,110,213,0,0,36,1,0,0,105,15,1, 0,0,0,0,0,1,0,0,0,36,0,0,0,166,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,166,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,15,16,1,0,0,0,0,0,124,213,0,0,36,1,0,0,15,16,1,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,51,16,1,0,0, 0,0,0,140,213,0,0,36,1,0,0,51,16,1,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,91,16,1,0,0,0,0,0,154,213,0,0,36,1,0,0,91,16,1,0,0,0,0,0,1,0,0,0,36,0,0,0,18,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,1,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,109,17,1,0,0,0,0,0,170,213,0,0,36,1,0,0,109,17,1,0,0,0,0,0,1,0,0,0,36,0,0,0,220,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,220,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,73,18,1,0,0,0,0,0,188,213,0,0,36,1,0,0,73,18,1,0,0,0,0,0,1,0,0,0,36,0,0,0,132,1,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,132,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,205,19,1,0,0,0,0,0,210,213,0,0,36,1,0,0,205,19,1,0,0,0,0,0,1,0,0,0,36,0,0,0,166,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,166,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,20,1,0,0,0,0,0,228,213,0,0,36,1,0,0,115, 20,1,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,151,20,1,0,0,0,0,0,248,213,0,0,36,1,0,0,151,20,1,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,191,20, 1,0,0,0,0,0,10,214,0,0,36,1,0,0,191,20,1,0,0,0,0,0,1,0,0,0,36,0,0,0,18,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,209,21,1,0,0,0,0,0,30,214,0,0,36,1,0,0,209,21,1,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0, 0,0,0,0,0,0,46,214,0,0,32,12,0,0,0,0,0,0,0,0,0,0,63,214,0,0,32,12,0,0,0,0,0,0,0,0,0,0,76,214,0,0,32,12,0,0,0,0,0,0,0,0,0,0,92,214,0,0,32,12,0,0,0,0,0,0,0,0,0,0,108,214,0,0,32,12,0,0,0,0,0,0,0,0,0,0,128,214,0,0,32,12,0,0,0,0,0,0,0,0,0,0,142,214,0,0,32, 12,0,0,0,0,0,0,0,0,0,0,156,214,0,0,32,12,0,0,0,0,0,0,0,0,0,0,172,214,0,0,32,12,0,0,0,0,0,0,0,0,0,0,188,214,0,0,32,12,0,0,0,0,0,0,0,0,0,0,208,214,0,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,227, 214,0,0,100,0,0,0,0,0,0,0,0,0,0,0,252,214,0,0,102,0,1,0,82,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,14,22,1,0,0,0,0,0,60,215,0,0,36,1,0,0,14,22,1,0,0,0,0,0,1,0,0,0,36,0,0,0,171,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,171,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,185,22,1,0,0, 0,0,0,73,215,0,0,36,1,0,0,185,22,1,0,0,0,0,0,94,215,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,229,22,1,0,0,0,0,0,124,215,0,0,36,1,0,0,229,22,1,0,0,0,0,0,1,0,0,0,36,0,0,0,152,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,152,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,125,23,1,0,0,0,0,0,141,215,0,0,36,1,0,0,125,23,1,0,0,0,0,0,1,0,0,0,36,0,0,0,121,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,246,23,1,0,0,0,0,0,154,215,0,0,36,1,0,0,246, 23,1,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,51,24,1,0,0,0,0,0,168,215,0,0,36,1,0,0,51,24,1,0,0,0,0,0,1,0,0,0,36,0,0,0,199,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,199,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,250,24, 1,0,0,0,0,0,183,215,0,0,36,1,0,0,250,24,1,0,0,0,0,0,1,0,0,0,36,0,0,0,85,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,79,25,1,0,0,0,0,0,199,215,0,0,36,1,0,0,79,25,1,0,0,0,0,0,1,0,0,0,36,0,0,0,141,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,141, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,220,25,1,0,0,0,0,0,219,215,0,0,36,1,0,0,220,25,1,0,0,0,0,0,1,0,0,0,36,0,0,0,155,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,155,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,119,27,1,0,0,0,0,0,237,215,0,0,36,1,0,0,119,27,1,0,0,0,0,0,1,0,0,0,36,0,0, 0,187,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,50,28,1,0,0,0,0,0,253,215,0,0,36,1,0,0,50,28,1,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,208,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,2,29,1,0,0,0,0,0,13,216,0,0,36,1,0, 0,2,29,1,0,0,0,0,0,1,0,0,0,36,0,0,0,250,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,250,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,252,29,1,0,0,0,0,0,31,216,0,0,36,1,0,0,252,29,1,0,0,0,0,0,1,0,0,0,36,0,0,0,175,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 171,30,1,0,0,0,0,0,45,216,0,0,36,1,0,0,171,30,1,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,21,31,1,0,0,0,0,0,63,216,0,0,36,1,0,0,21,31,1,0,0,0,0,0,1,0,0,0,36,0,0,0,103,1,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,103,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,124,32,1,0,0,0,0,0,79,216,0,0,36,1,0,0,124,32,1,0,0,0,0,0,1,0,0,0,36,0,0,0,192,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,192,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,33,1,0,0,0,0,0,93,216,0,0,36,1,0,0,60,33,1,0,0,0,0,0,1,0,0,0,36,0, 0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,121,33,1,0,0,0,0,0,108,216,0,0,36,1,0,0,121,33,1,0,0,0,0,0,1,0,0,0,36,0,0,0,167,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,167,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,32,34,1,0,0,0,0,0,124,216,0,0,36, 1,0,0,32,34,1,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,113,34,1,0,0,0,0,0,138,216,0,0,36,1,0,0,113,34,1,0,0,0,0,0,1,0,0,0,36,0,0,0,189,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,189,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,46,35,1,0,0,0,0,0,156,216,0,0,36,1,0,0,46,35,1,0,0,0,0,0,1,0,0,0,36,0,0,0,187,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,233,35,1,0,0,0,0,0,170,216,0,0,36,1,0,0,233,35,1,0,0,0,0,0,1,0,0,0,36,0,0,0,138,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,138,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,36,1,0,0,0,0,0,184,216,0,0,36,1,0,0,115,36,1,0,0,0,0,0,1,0,0,0,36,0,0,0,198,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,57,37,1,0,0,0,0,0,200,216,0,0,36,1,0,0,57,37,1,0,0,0,0,0,1,0, 0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,216,216,0,0,38,11,0,0,200,72,11,0,0,0,0,0,231,216,0,0,38,11,0,0,208,72,11,0,0,0,0,0,249,216,0,0,38,11,0,0,216,72,11,0,0,0,0,0,9,217,0,0,38,11,0,0,224,72,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0, 0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,25,217,0,0,100,0,0,0,0,0,0,0,0,0,0,0,48,217,0,0,102,0,1,0,82,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,83,37,1,0,0,0,0,0,110,217,0,0,36,1,0,0,83,37,1,0,0,0,0,0,1,0,0,0,36,0,0,0,130,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,130,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,213,37,1,0,0,0,0,0,120,217,0,0,36,1,0,0,213,37,1,0,0,0,0,0,1,0,0,0,36,0,0,0,174,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,174,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,131,38,1,0,0,0,0,0,134,217,0,0,36,1,0,0,131,38,1,0,0,0,0,0,1,0, 0,0,36,0,0,0,85,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,216,38,1,0,0,0,0,0,144,217,0,0,36,1,0,0,216,38,1,0,0,0,0,0,1,0,0,0,36,0,0,0,156,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,116,39,1,0,0,0,0,0,156, 217,0,0,36,1,0,0,116,39,1,0,0,0,0,0,1,0,0,0,36,0,0,0,20,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,20,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,136,40,1,0,0,0,0,0,168,217,0,0,36,1,0,0,136,40,1,0,0,0,0,0,1,0,0,0,36,0,0,0,142,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,142,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,22,41,1,0,0,0,0,0,178,217,0,0,36,1,0,0,22,41,1,0,0,0,0,0,1,0,0,0,36,0,0,0,151,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,173,41,1,0,0,0,0,0,187,217,0,0,36,1,0,0,173,41,1,0,0,0,0,0,1,0,0,0,36,0,0,0,41,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,41,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,214,41,1,0,0,0,0,0,194,217,0,0,36,1,0,0,214,41,1,0,0,0,0,0,1,0,0,0,36,0,0,0,41,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,255,41,1,0,0,0,0,0,202,217,0,0,36,1,0,0,255,41,1,0, 0,0,0,0,1,0,0,0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,65,42,1,0,0,0,0,0,216,217,0,0,36,1,0,0,65,42,1,0,0,0,0,0,1,0,0,0,36,0,0,0,51,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,116,43,1,0,0,0, 0,0,234,217,0,0,36,1,0,0,116,43,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,194,43,1,0,0,0,0,0,248,217,0,0,36,1,0,0,194,43,1,0,0,0,0,0,1,0,0,0,36,0,0,0,170,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,170,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,108,44,1,0,0,0,0,0,8,218,0,0,36,1,0,0,108,44,1,0,0,0,0,0,1,0,0,0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,174,44,1,0,0,0,0,0,21,218,0,0,36,1,0,0,174,44,1,0,0,0,0,0,1,0,0,0,36,0,0,0,60,1,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,60,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,234,45,1,0,0,0,0,0,38,218,0,0,36,1,0,0,234,45,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,56,46,1,0,0,0,0,0,51,218,0,0,36,1,0,0,56,46,1,0, 0,0,0,0,1,0,0,0,36,0,0,0,165,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,221,46,1,0,0,0,0,0,66,218,0,0,36,1,0,0,221,46,1,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,34,47,1,0,0, 0,0,0,79,218,0,0,36,1,0,0,34,47,1,0,0,0,0,0,1,0,0,0,36,0,0,0,177,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,211,47,1,0,0,0,0,0,96,218,0,0,36,1,0,0,211,47,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,33,48,1,0,0,0,0,0,109,218,0,0,36,1,0,0,33,48,1,0,0,0,0,0,1,0,0,0,36,0,0,0,140,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,140,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,173,48,1,0,0,0,0,0,124,218,0,0,36,1,0,0,173,48,1,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,242,48,1,0,0,0,0,0,140,218,0,0,36,1,0,0,242,48,1,0,0,0,0,0,1,0,0,0,36,0,0,0,210,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,210,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,196,49,1,0,0,0,0,0,160,218,0,0,36,1,0,0,196, 49,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,18,50,1,0,0,0,0,0,176,218,0,0,36,1,0,0,18,50,1,0,0,0,0,0,1,0,0,0,36,0,0,0,140,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,140,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,158,50, 1,0,0,0,0,0,194,218,0,0,36,1,0,0,158,50,1,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,227,50,1,0,0,0,0,0,210,218,0,0,36,1,0,0,227,50,1,0,0,0,0,0,1,0,0,0,36,0,0,0,189,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,189, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,51,1,0,0,0,0,0,230,218,0,0,36,1,0,0,160,51,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,238,51,1,0,0,0,0,0,246,218,0,0,36,1,0,0,238,51,1,0,0,0,0,0,1,0,0,0,36,0,0,0, 140,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,140,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,122,52,1,0,0,0,0,0,8,219,0,0,36,1,0,0,122,52,1,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,191,52,1,0,0,0,0,0,27,219,0,0,36,1,0,0, 191,52,1,0,0,0,0,0,1,0,0,0,36,0,0,0,193,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,128,53,1,0,0,0,0,0,50,219,0,0,36,1,0,0,128,53,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,206, 53,1,0,0,0,0,0,69,219,0,0,36,1,0,0,206,53,1,0,0,0,0,0,1,0,0,0,36,0,0,0,140,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,140,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,90,54,1,0,0,0,0,0,90,219,0,0,36,1,0,0,90,54,1,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,159,54,1,0,0,0,0,0,109,219,0,0,36,1,0,0,159,54,1,0,0,0,0,0,1,0,0,0,36,0,0,0,221,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,221,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,124,55,1,0,0,0,0,0,132,219,0,0,36,1,0,0,124,55,1,0,0,0,0,0,1,0,0,0,36,0,0, 0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,202,55,1,0,0,0,0,0,151,219,0,0,36,1,0,0,202,55,1,0,0,0,0,0,1,0,0,0,36,0,0,0,140,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,140,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,86,56,1,0,0,0,0,0,172,219,0,0,36,1, 0,0,86,56,1,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,155,56,1,0,0,0,0,0,191,219,0,0,36,1,0,0,155,56,1,0,0,0,0,0,1,0,0,0,36,0,0,0,193,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,92,57,1,0,0,0,0,0,214,219,0,0,36,1,0,0,92,57,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,57,1,0,0,0,0,0,233,219,0,0,36,1,0,0,170,57,1,0,0,0,0,0,1,0,0,0,36,0,0,0,140,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,140,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,54,58,1,0,0,0,0,0,254,219,0,0,36,1,0,0,54,58,1,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,58,1,0,0,0,0,0,17,220,0,0,36,1,0,0,123,58,1,0,0,0,0,0,1,0,0,0,36, 0,0,0,221,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,221,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,88,59,1,0,0,0,0,0,40,220,0,0,36,1,0,0,88,59,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,166,59,1,0,0,0,0,0,59,220,0,0,36, 1,0,0,166,59,1,0,0,0,0,0,1,0,0,0,36,0,0,0,140,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,140,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,50,60,1,0,0,0,0,0,80,220,0,0,36,1,0,0,50,60,1,0,0,0,0,0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,146,60,1,0,0,0,0,0,95,220,0,0,36,1,0,0,146,60,1,0,0,0,0,0,1,0,0,0,36,0,0,0,186,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,186,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,76,61,1,0,0,0,0,0,114,220,0,0,36,1,0,0,76,61,1,0,0,0,0,0,1,0,0,0,36,0,0,0,99,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,99,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,175,61,1,0,0,0,0,0,129,220,0,0,36,1,0,0,175,61,1,0,0,0,0,0,1,0,0,0,36,0,0,0,148,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,148,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,67,62,1,0,0,0,0,0,146,220,0,0,36,1,0,0,67,62,1,0,0,0,0,0,1,0,0,0,36, 0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,124,62,1,0,0,0,0,0,161,220,0,0,36,1,0,0,124,62,1,0,0,0,0,0,1,0,0,0,36,0,0,0,116,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,116,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,62,1,0,0,0,0,0,180,220,0,0, 36,1,0,0,240,62,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,63,1,0,0,0,0,0,195,220,0,0,36,1,0,0,62,63,1,0,0,0,0,0,1,0,0,0,36,0,0,0,141,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,203,63,1,0,0,0,0,0,212,220,0,0,36,1,0,0,203,63,1,0,0,0,0,0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,43,64,1,0,0,0,0,0,227,220,0,0,36,1,0,0,43,64,1,0,0,0,0,0,1,0,0,0,36,0,0,0,241,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,241,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,28,65,1,0,0,0,0,0,246,220,0,0,36,1,0,0,28,65,1,0,0,0,0,0,1,0,0,0,36,0,0,0,99,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,127,65,1,0,0,0,0,0,5,221,0,0,36,1,0,0,127,65,1,0,0,0,0,0,1,0,0,0, 36,0,0,0,148,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,148,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,19,66,1,0,0,0,0,0,22,221,0,0,36,1,0,0,19,66,1,0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,76,66,1,0,0,0,0,0,37,221,0,0,36, 1,0,0,76,66,1,0,0,0,0,0,1,0,0,0,36,0,0,0,156,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,232,66,1,0,0,0,0,0,56,221,0,0,36,1,0,0,232,66,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,54,67,1,0,0,0,0,0,71,221,0,0,36,1,0,0,54,67,1,0,0,0,0,0,1,0,0,0,36,0,0,0,141,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,67,1,0,0,0,0,0,88,221,0,0,36,1,0,0,195,67,1,0,0,0,0,0,1,0,0,0,36,0,0,0,210,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,210,0,0,0,0,0,0,0,102,221,0,0,38,11,0,0,0,73,11,0,0,0,0,0,114,221,0,0,38,11,0,0,32,73,11,0,0,0,0,0,128,221,0,0,38,11,0,0,32,77,11,0,0,0,0,0,147,221,0,0,38,11,0,0,32,93,11,0,0,0,0,0,163,221,0,0,38,11,0,0,40,93,11,0,0,0,0,0,178,221,0,0,38,11,0,0, 48,93,11,0,0,0,0,0,195,221,0,0,38,11,0,0,56,93,11,0,0,0,0,0,212,221,0,0,38,11,0,0,64,93,11,0,0,0,0,0,229,221,0,0,38,11,0,0,72,93,11,0,0,0,0,0,246,221,0,0,32,12,0,0,0,0,0,0,0,0,0,0,11,222,0,0,32,12,0,0,0,0,0,0,0,0,0,0,32,222,0,0,32,12,0,0,0,0,0,0,0,0, 0,0,50,222,0,0,32,12,0,0,0,0,0,0,0,0,0,0,68,222,0,0,32,12,0,0,0,0,0,0,0,0,0,0,89,222,0,0,32,12,0,0,0,0,0,0,0,0,0,0,110,222,0,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,125,222,0,0,100,0,0,0,0,0, 0,0,0,0,0,0,148,222,0,0,102,0,1,0,82,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,149,68,1,0,0,0,0,0,210,222,0,0,36,1,0,0,149,68,1,0,0,0,0,0,1,0,0,0,36,0,0,0,211,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,211,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,104,69,1,0,0,0,0,0,225,222,0,0,36, 1,0,0,104,69,1,0,0,0,0,0,1,0,0,0,36,0,0,0,67,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,171,69,1,0,0,0,0,0,236,222,0,0,36,1,0,0,171,69,1,0,0,0,0,0,1,0,0,0,36,0,0,0,50,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,50,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,221,69,1,0,0,0,0,0,249,222,0,0,36,1,0,0,221,69,1,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,242,69,1,0,0,0,0,0,5,223,0,0,36,1,0,0,242,69,1,0,0,0,0,0,1,0,0,0,36,0,0,0,109,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,109,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,95,70,1,0,0,0,0,0,16,223,0,0,36,1,0,0,95,70,1,0,0,0,0,0,1,0,0,0,36,0,0,0,186,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,186,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,71,1,0,0,0,0,0,29,223,0,0,36,1,0,0,25,71,1,0,0,0,0,0,1,0,0,0,36, 0,0,0,54,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,79,71,1,0,0,0,0,0,49,223,0,0,36,1,0,0,79,71,1,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,71,1,0,0,0,0,0,65,223,0,0,36,1, 0,0,123,71,1,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,150,71,1,0,0,0,0,0,82,223,0,0,36,1,0,0,150,71,1,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 177,71,1,0,0,0,0,0,99,223,0,0,36,1,0,0,177,71,1,0,0,0,0,0,1,0,0,0,36,0,0,0,77,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,254,71,1,0,0,0,0,0,115,223,0,0,36,1,0,0,254,71,1,0,0,0,0,0,1,0,0,0,36,0,0,0,125,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,125,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,72,1,0,0,0,0,0,133,223,0,0,36,1,0,0,123,72,1,0,0,0,0,0,1,0,0,0,36,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,147,223,0,0,38,11,0,0,80,93,11,0,0,0,0,0,160,223,0,0,38,11,0,0,88,93,11,0,0,0,0,0,1, 0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,178,223,0,0,100,0,0,0,0,0,0,0,0,0,0,0,200,223,0,0,102,0,1,0,82,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,139,72,1,0,0,0,0,0,5,224,0,0,36,1,0,0,139,72,1,0,0,0,0,0,1,0,0,0,36,0,0,0,129,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,129,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,12,73,1,0,0,0,0,0,17,224,0,0,36,1,0,0,12,73,1,0,0,0,0,0,1,0,0,0,36,0,0,0,28,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,28,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,74,1,0,0,0,0,0,33,224,0,0,36,1,0,0,40,74,1,0, 0,0,0,0,1,0,0,0,36,0,0,0,118,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,118,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,158,74,1,0,0,0,0,0,45,224,0,0,36,1,0,0,158,74,1,0,0,0,0,0,1,0,0,0,36,0,0,0,29,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,187,74,1,0,0, 0,0,0,57,224,0,0,36,1,0,0,187,74,1,0,0,0,0,0,1,0,0,0,36,0,0,0,198,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,129,75,1,0,0,0,0,0,71,224,0,0,36,1,0,0,129,75,1,0,0,0,0,0,1,0,0,0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,195,75,1,0,0,0,0,0,80,224,0,0,36,1,0,0,195,75,1,0,0,0,0,0,1,0,0,0,36,0,0,0,200,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,200,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,139,77,1,0,0,0,0,0,93,224,0,0,36,1,0,0,139,77,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,77,1,0,0,0,0,0,102,224,0,0,36,1,0,0,217,77,1,0,0,0,0,0,1,0,0,0,36,0,0,0,183,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,183,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,144,78,1,0,0,0,0,0,117,224,0,0,36,1,0,0,144, 78,1,0,0,0,0,0,1,0,0,0,36,0,0,0,144,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,144,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,32,79,1,0,0,0,0,0,128,224,0,0,36,1,0,0,32,79,1,0,0,0,0,0,1,0,0,0,36,0,0,0,129,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,129,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,161, 79,1,0,0,0,0,0,137,224,0,0,36,1,0,0,161,79,1,0,0,0,0,0,1,0,0,0,36,0,0,0,57,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,218,81,1,0,0,0,0,0,150,224,0,0,36,1,0,0,218,81,1,0,0,0,0,0,1,0,0,0,36,0,0,0,118,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 118,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,80,82,1,0,0,0,0,0,159,224,0,0,36,1,0,0,80,82,1,0,0,0,0,0,1,0,0,0,36,0,0,0,45,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,125,82,1,0,0,0,0,0,168,224,0,0,36,1,0,0,125,82,1,0,0,0,0,0,1,0,0,0,36,0,0, 0,203,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,203,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,72,83,1,0,0,0,0,0,179,224,0,0,36,1,0,0,72,83,1,0,0,0,0,0,1,0,0,0,36,0,0,0,239,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,239,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,55,84,1,0,0,0,0,0,191,224,0,0,36,1, 0,0,55,84,1,0,0,0,0,0,1,0,0,0,36,0,0,0,76,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,76,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,131,84,1,0,0,0,0,0,203,224,0,0,36,1,0,0,131,84,1,0,0,0,0,0,1,0,0,0,36,0,0,0,13,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,13,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 144,88,1,0,0,0,0,0,219,224,0,0,36,1,0,0,144,88,1,0,0,0,0,0,1,0,0,0,36,0,0,0,167,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,167,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,55,89,1,0,0,0,0,0,231,224,0,0,36,1,0,0,55,89,1,0,0,0,0,0,1,0,0,0,36,0,0,0,213,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,213,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,12,90,1,0,0,0,0,0,245,224,0,0,36,1,0,0,12,90,1,0,0,0,0,0,1,0,0,0,36,0,0,0,85,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,90,1,0,0,0,0,0,0,225,0,0,36,1,0,0,97,90,1,0,0,0,0,0,1,0,0,0,36,0,0, 0,150,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,247,90,1,0,0,0,0,0,15,225,0,0,36,1,0,0,247,90,1,0,0,0,0,0,1,0,0,0,36,0,0,0,74,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,65,91,1,0,0,0,0,0,26,225,0,0,36,1,0, 0,65,91,1,0,0,0,0,0,1,0,0,0,36,0,0,0,111,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,111,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,176,91,1,0,0,0,0,0,39,225,0,0,36,1,0,0,176,91,1,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,52,225,0,0,38,10, 0,0,112,61,11,0,0,0,0,0,63,225,0,0,38,11,0,0,96,93,11,0,0,0,0,0,77,225,0,0,38,11,0,0,104,93,11,0,0,0,0,0,97,225,0,0,38,11,0,0,112,93,11,0,0,0,0,0,108,225,0,0,38,11,0,0,120,93,11,0,0,0,0,0,119,225,0,0,38,11,0,0,128,93,11,0,0,0,0,0,136,225,0,0,38,11,0, 0,136,93,11,0,0,0,0,0,149,225,0,0,32,12,0,0,0,0,0,0,0,0,0,0,160,225,0,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,174,225,0,0,100,0,0,0,0,0,0,0,0,0,0,0,201,225,0,0,102,0,1,0,82,96,143,77,0,0,0,0, 1,0,0,0,46,1,0,0,207,91,1,0,0,0,0,0,11,226,0,0,36,1,0,0,207,91,1,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,92,1,0,0,0,0,0,35,226,0,0,36,1,0,0,82,92,1,0,0,0,0,0,1,0,0,0,36,0,0,0,176,0,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,176,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,2,93,1,0,0,0,0,0,57,226,0,0,36,1,0,0,2,93,1,0,0,0,0,0,1,0,0,0,36,0,0,0,187,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,189,93,1,0,0,0,0,0,82,226,0,0,36,1,0,0,189,93,1,0,0,0,0, 0,1,0,0,0,36,0,0,0,128,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,128,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,61,95,1,0,0,0,0,0,109,226,0,0,36,1,0,0,61,95,1,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,192,95,1,0,0,0,0, 0,124,226,0,0,36,1,0,0,192,95,1,0,0,0,0,0,1,0,0,0,36,0,0,0,220,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,220,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,156,96,1,0,0,0,0,0,139,226,0,0,36,1,0,0,156,96,1,0,0,0,0,0,1,0,0,0,36,0,0,0,244,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,244,1,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,144,98,1,0,0,0,0,0,153,226,0,0,36,1,0,0,144,98,1,0,0,0,0,0,1,0,0,0,36,0,0,0,236,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,236,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,124,99,1,0,0,0,0,0,171,226,0,0,36,1,0,0,124,99,1,0,0,0,0,0,1,0,0,0,36,0,0,0,247, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,247,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,187,226,0,0,100,0,0,0,0,0,0,0,0,0,0,0,215,226,0,0,102,0,1,0,83,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,115,100,1,0,0,0,0,0,26,227,0,0, 36,1,0,0,115,100,1,0,0,0,0,0,1,0,0,0,36,0,0,0,82,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,197,100,1,0,0,0,0,0,33,227,0,0,36,1,0,0,197,100,1,0,0,0,0,0,1,0,0,0,36,0,0,0,63,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,4,101,1,0,0,0,0,0,40,227,0,0,36,1,0,0,4,101,1,0,0,0,0,0,1,0,0,0,36,0,0,0,121,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,125,101,1,0,0,0,0,0,52,227,0,0,36,1,0,0,125,101,1,0,0,0,0,0,1,0,0,0,36,0,0,0,125,8,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,125,8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,250,109,1,0,0,0,0,0,75,227,0,0,36,1,0,0,250,109,1,0,0,0,0,0,1,0,0,0,36,0,0,0,14,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,14,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,8,111,1,0,0,0,0,0,91,227,0,0,36,1,0,0,8,111,1,0,0,0,0,0,1, 0,0,0,36,0,0,0,14,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,14,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,112,1,0,0,0,0,0,118,227,0,0,36,1,0,0,22,112,1,0,0,0,0,0,1,0,0,0,36,0,0,0,192,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,192,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0,214,116,1,0,0,0,0,0,143, 227,0,0,36,1,0,0,214,116,1,0,0,0,0,0,1,0,0,0,36,0,0,0,192,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,192,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0,150,121,1,0,0,0,0,0,167,227,0,0,36,1,0,0,150,121,1,0,0,0,0,0,1,0,0,0,36,0,0,0,112,6,0,0,0,0,0,0,1,0,0,0,78,1,0,0,112,6,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,6,128,1,0,0,0,0,0,193,227,0,0,36,1,0,0,6,128,1,0,0,0,0,0,1,0,0,0,36,0,0,0,179,9,0,0,0,0,0,0,1,0,0,0,78,1,0,0,179,9,0,0,0,0,0,0,1,0,0,0,46,1,0,0,185,137,1,0,0,0,0,0,211,227,0,0,36,1,0,0,185,137,1,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,223,137,1,0,0,0,0,0,232,227,0,0,36,1,0,0,223,137,1,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,13,138,1,0,0,0,0,0,253,227,0,0,36,1,0,0,13, 138,1,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,57,138,1,0,0,0,0,0,18,228,0,0,36,1,0,0,57,138,1,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,103,138, 1,0,0,0,0,0,40,228,0,0,36,1,0,0,103,138,1,0,0,0,0,0,1,0,0,0,36,0,0,0,80,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,183,140,1,0,0,0,0,0,63,228,0,0,36,1,0,0,183,140,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,5,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78, 5,0,0,0,0,0,0,1,0,0,0,46,1,0,0,5,146,1,0,0,0,0,0,89,228,0,0,36,1,0,0,5,146,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,5,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,5,0,0,0,0,0,0,1,0,0,0,46,1,0,0,83,151,1,0,0,0,0,0,114,228,0,0,36,1,0,0,83,151,1,0,0,0,0,0,1,0,0,0,36,0,0,0,62, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,145,151,1,0,0,0,0,0,130,228,0,0,36,1,0,0,145,151,1,0,0,0,0,0,1,0,0,0,36,0,0,0,33,12,0,0,0,0,0,0,1,0,0,0,78,1,0,0,33,12,0,0,0,0,0,0,1,0,0,0,46,1,0,0,178,163,1,0,0,0,0,0,147,228,0,0,36,1, 0,0,178,163,1,0,0,0,0,0,1,0,0,0,36,0,0,0,31,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,209,171,1,0,0,0,0,0,167,228,0,0,36,1,0,0,209,171,1,0,0,0,0,0,1,0,0,0,36,0,0,0,72,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,25,172,1,0,0,0,0,0,185,228,0,0,36,1,0,0,25,172,1,0,0,0,0,0,1,0,0,0,36,0,0,0,180,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,180,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,205,172,1,0,0,0,0,0,203,228,0,0,36,1,0,0,205,172,1,0,0,0,0,0,1,0,0,0,36,0,0,0,19,9,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,19,9,0,0,0,0,0,0,1,0,0,0,46,1,0,0,224,181,1,0,0,0,0,0,222,228,0,0,36,1,0,0,224,181,1,0,0,0,0,0,1,0,0,0,36,0,0,0,62,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,184,1,0,0,0,0,0,234,228,0,0,36,1,0,0,30,184,1,0,0,0,0,0, 1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,184,1,0,0,0,0,0,247,228,0,0,36,1,0,0,60,184,1,0,0,0,0,0,1,0,0,0,36,0,0,0,119,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,119,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0,179,188,1,0,0,0,0,0, 7,229,0,0,36,1,0,0,179,188,1,0,0,0,0,0,1,0,0,0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245,188,1,0,0,0,0,0,21,229,0,0,36,1,0,0,245,188,1,0,0,0,0,0,1,0,0,0,36,0,0,0,90,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,0,0,0, 0,1,0,0,0,46,1,0,0,79,189,1,0,0,0,0,0,34,229,0,0,36,1,0,0,79,189,1,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,131,189,1,0,0,0,0,0,48,229,0,0,36,1,0,0,131,189,1,0,0,0,0,0,1,0,0,0,36,0,0,0,160,2,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,160,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,35,192,1,0,0,0,0,0,61,229,0,0,36,1,0,0,35,192,1,0,0,0,0,0,1,0,0,0,36,0,0,0,235,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,235,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,14,193,1,0,0,0,0,0,73,229,0,0,36,1,0,0,14,193,1, 0,0,0,0,0,1,0,0,0,36,0,0,0,176,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,190,193,1,0,0,0,0,0,87,229,0,0,36,1,0,0,190,193,1,0,0,0,0,0,1,0,0,0,36,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,194,194,1, 0,0,0,0,0,100,229,0,0,36,1,0,0,194,194,1,0,0,0,0,0,1,0,0,0,36,0,0,0,93,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,93,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,196,1,0,0,0,0,0,114,229,0,0,36,1,0,0,31,196,1,0,0,0,0,0,1,0,0,0,36,0,0,0,220,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,220, 8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,251,204,1,0,0,0,0,0,134,229,0,0,36,1,0,0,251,204,1,0,0,0,0,0,1,0,0,0,36,0,0,0,59,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,59,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,54,207,1,0,0,0,0,0,147,229,0,0,36,1,0,0,54,207,1,0,0,0,0,0,1,0,0,0,36,0,0, 0,218,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,218,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,16,209,1,0,0,0,0,0,164,229,0,0,36,1,0,0,16,209,1,0,0,0,0,0,1,0,0,0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,209,1,0,0,0,0,0,179,229,0,0,36, 1,0,0,82,209,1,0,0,0,0,0,1,0,0,0,36,0,0,0,90,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,209,1,0,0,0,0,0,193,229,0,0,36,1,0,0,172,209,1,0,0,0,0,0,1,0,0,0,36,0,0,0,67,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,3,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,239,212,1,0,0,0,0,0,207,229,0,0,36,1,0,0,239,212,1,0,0,0,0,0,1,0,0,0,36,0,0,0,251,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,251,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,234,213,1,0,0,0,0,0,220,229,0,0,36,1,0,0,234,213,1,0,0,0,0,0,1,0,0,0,36,0,0,0,176,0,0,0,0,0,0,0, 1,0,0,0,78,1,0,0,176,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,154,214,1,0,0,0,0,0,235,229,0,0,36,1,0,0,154,214,1,0,0,0,0,0,1,0,0,0,36,0,0,0,247,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,247,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,145,215,1,0,0,0,0,0,249,229,0,0,36,1,0,0,145,215,1, 0,0,0,0,0,1,0,0,0,36,0,0,0,91,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,236,216,1,0,0,0,0,0,8,230,0,0,36,1,0,0,236,216,1,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,27,230,0,0,38,10,0,0,116,61, 11,0,0,0,0,0,40,230,0,0,38,11,0,0,144,93,11,0,0,0,0,0,58,230,0,0,38,11,0,0,152,93,11,0,0,0,0,0,72,230,0,0,38,11,0,0,160,93,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,87,230,0,0,100,0,0,0,0,0,0,0,0,0,0,0,110,230, 0,0,102,0,1,0,83,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,1,217,1,0,0,0,0,0,172,230,0,0,36,1,0,0,1,217,1,0,0,0,0,0,1,0,0,0,36,0,0,0,74,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,75,217,1,0,0,0,0,0,186,230,0,0,36,1,0,0,75,217,1,0,0,0,0, 0,1,0,0,0,36,0,0,0,184,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,3,218,1,0,0,0,0,0,198,230,0,0,36,1,0,0,3,218,1,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,90,218,1,0,0,0,0,0, 212,230,0,0,36,1,0,0,90,218,1,0,0,0,0,0,1,0,0,0,36,0,0,0,127,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,127,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,218,1,0,0,0,0,0,223,230,0,0,36,1,0,0,217,218,1,0,0,0,0,0,1,0,0,0,36,0,0,0,239,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,239,1,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,200,220,1,0,0,0,0,0,234,230,0,0,36,1,0,0,200,220,1,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,221,1,0,0,0,0,0,246,230,0,0,36,1,0,0,22,221,1,0,0,0,0,0,1,0,0,0,36,0,0,0,49, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,71,221,1,0,0,0,0,0,3,231,0,0,36,1,0,0,71,221,1,0,0,0,0,0,1,0,0,0,36,0,0,0,152,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,152,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,223,221,1,0,0,0,0,0,15,231,0,0,36,1,0,0,223, 221,1,0,0,0,0,0,1,0,0,0,36,0,0,0,190,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,190,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,157,222,1,0,0,0,0,0,29,231,0,0,36,1,0,0,157,222,1,0,0,0,0,0,1,0,0,0,36,0,0,0,162,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,162,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 63,223,1,0,0,0,0,0,43,231,0,0,36,1,0,0,63,223,1,0,0,0,0,0,1,0,0,0,36,0,0,0,14,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,14,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,77,223,1,0,0,0,0,0,54,231,0,0,36,1,0,0,77,223,1,0,0,0,0,0,1,0,0,0,36,0,0,0,46,1,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,46,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,224,1,0,0,0,0,0,73,231,0,0,36,1,0,0,123,224,1,0,0,0,0,0,1,0,0,0,36,0,0,0,15,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,15,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,138,224,1,0,0,0,0,0,83,231,0,0,36,1,0,0,138,224,1,0,0,0,0,0,1,0,0,0,36, 0,0,0,23,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,161,226,1,0,0,0,0,0,92,231,0,0,36,1,0,0,161,226,1,0,0,0,0,0,1,0,0,0,36,0,0,0,225,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,225,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,130,227,1,0,0,0,0,0,102,231,0, 0,36,1,0,0,130,227,1,0,0,0,0,0,1,0,0,0,36,0,0,0,73,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,203,227,1,0,0,0,0,0,112,231,0,0,36,1,0,0,203,227,1,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,255,227,1,0,0,0,0,0,119,231,0,0,36,1,0,0,255,227,1,0,0,0,0,0,1,0,0,0,36,0,0,0,160,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,160,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,159,228,1,0,0,0,0,0,135,231,0,0,36,1,0,0,159,228,1,0,0,0,0,0,1,0,0,0,36,0,0,0,196,1,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,196,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,99,230,1,0,0,0,0,0,156,231,0,0,36,1,0,0,99,230,1,0,0,0,0,0,1,0,0,0,36,0,0,0,113,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,113,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,212,231,1,0,0,0,0,0,168,231,0,0,36,1,0,0,212,231, 1,0,0,0,0,0,1,0,0,0,36,0,0,0,34,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,246,231,1,0,0,0,0,0,184,231,0,0,36,1,0,0,246,231,1,0,0,0,0,0,1,0,0,0,36,0,0,0,140,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,140,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,130,232, 1,0,0,0,0,0,204,231,0,0,36,1,0,0,130,232,1,0,0,0,0,0,1,0,0,0,36,0,0,0,74,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,204,232,1,0,0,0,0,0,223,231,0,0,36,1,0,0,204,232,1,0,0,0,0,0,1,0,0,0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 66,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,14,233,1,0,0,0,0,0,234,231,0,0,36,1,0,0,14,233,1,0,0,0,0,0,1,0,0,0,36,0,0,0,98,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,112,233,1,0,0,0,0,0,246,231,0,0,36,1,0,0,112,233,1,0,0,0,0,0,1,0,0,0,36, 0,0,0,12,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,12,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,124,233,1,0,0,0,0,0,6,232,0,0,36,1,0,0,124,233,1,0,0,0,0,0,1,0,0,0,36,0,0,0,149,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,234,1,0,0,0,0,0,24,232,0,0, 36,1,0,0,17,234,1,0,0,0,0,0,1,0,0,0,36,0,0,0,30,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,47,235,1,0,0,0,0,0,34,232,0,0,36,1,0,0,47,235,1,0,0,0,0,0,1,0,0,0,36,0,0,0,34,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,34,2,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,81,237,1,0,0,0,0,0,48,232,0,0,36,1,0,0,81,237,1,0,0,0,0,0,1,0,0,0,36,0,0,0,84,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,165,237,1,0,0,0,0,0,60,232,0,0,36,1,0,0,165,237,1,0,0,0,0,0,1,0,0,0,36,0,0,0,43,8,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,43,8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,208,245,1,0,0,0,0,0,71,232,0,0,36,1,0,0,208,245,1,0,0,0,0,0,1,0,0,0,36,0,0,0,165,12,0,0,0,0,0,0,1,0,0,0,78,1,0,0,165,12,0,0,0,0,0,0,1,0,0,0,46,1,0,0,117,2,2,0,0,0,0,0,88,232,0,0,36,1,0,0,117,2,2,0,0,0,0,0,1, 0,0,0,36,0,0,0,124,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,124,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,241,2,2,0,0,0,0,0,103,232,0,0,36,1,0,0,241,2,2,0,0,0,0,0,1,0,0,0,36,0,0,0,132,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,132,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,117,3,2,0,0,0,0,0,126, 232,0,0,36,1,0,0,117,3,2,0,0,0,0,0,1,0,0,0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,183,3,2,0,0,0,0,0,148,232,0,0,36,1,0,0,183,3,2,0,0,0,0,0,1,0,0,0,36,0,0,0,99,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,26,4,2,0,0,0,0,0,172,232,0,0,36,1,0,0,26,4,2,0,0,0,0,0,1,0,0,0,36,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,186,232,0,0,38,11,0,0,192,93,11,0,0,0,0,0,199,232,0,0,38,11,0,0,196,93,11,0,0,0,0,0,210,232,0,0,38,11,0,0,200,93,11, 0,0,0,0,0,221,232,0,0,38,11,0,0,208,93,11,0,0,0,0,0,236,232,0,0,38,11,0,0,212,93,11,0,0,0,0,0,247,232,0,0,38,11,0,0,216,93,11,0,0,0,0,0,4,233,0,0,38,11,0,0,224,93,11,0,0,0,0,0,21,233,0,0,38,11,0,0,232,94,11,0,0,0,0,0,42,233,0,0,38,11,0,0,240,94,11,0, 0,0,0,0,59,233,0,0,38,11,0,0,248,94,11,0,0,0,0,0,80,233,0,0,38,11,0,0,0,95,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,104,233,0,0,100,0,0,0,0,0,0,0,0,0,0,0,131,233,0,0,102,0,1,0,84,96,143,77,0,0,0,0,1,0,0,0,46, 1,0,0,42,4,2,0,0,0,0,0,197,233,0,0,36,1,0,0,42,4,2,0,0,0,0,0,1,0,0,0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,67,4,2,0,0,0,0,0,215,233,0,0,36,1,0,0,67,4,2,0,0,0,0,0,1,0,0,0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,92,4,2,0,0,0,0,0,233,233,0,0,36,1,0,0,92,4,2,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,128,4,2,0,0,0,0,0,254,233,0,0,36,1,0,0,128,4,2,0,0,0,0,0,1,0,0,0,36,0,0,0, 228,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,228,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,100,5,2,0,0,0,0,0,19,234,0,0,36,1,0,0,100,5,2,0,0,0,0,0,1,0,0,0,36,0,0,0,228,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,228,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,72,6,2,0,0,0,0,0,40,234,0,0,36,1,0,0, 72,6,2,0,0,0,0,0,1,0,0,0,36,0,0,0,127,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,127,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,6,2,0,0,0,0,0,66,234,0,0,36,1,0,0,199,6,2,0,0,0,0,0,1,0,0,0,36,0,0,0,207,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,207,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,150, 7,2,0,0,0,0,0,88,234,0,0,36,1,0,0,150,7,2,0,0,0,0,0,1,0,0,0,36,0,0,0,27,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,177,8,2,0,0,0,0,0,109,234,0,0,36,1,0,0,177,8,2,0,0,0,0,0,1,0,0,0,36,0,0,0,186,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,186, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,107,9,2,0,0,0,0,0,135,234,0,0,36,1,0,0,107,9,2,0,0,0,0,0,1,0,0,0,36,0,0,0,227,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,227,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,78,10,2,0,0,0,0,0,162,234,0,0,36,1,0,0,78,10,2,0,0,0,0,0,1,0,0,0,36,0,0,0,209, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,209,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,11,2,0,0,0,0,0,188,234,0,0,36,1,0,0,31,11,2,0,0,0,0,0,1,0,0,0,36,0,0,0,14,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,14,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,45,11,2,0,0,0,0,0,216,234,0,0,36,1,0,0,45, 11,2,0,0,0,0,0,1,0,0,0,36,0,0,0,228,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,228,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,12,2,0,0,0,0,0,237,234,0,0,36,1,0,0,17,12,2,0,0,0,0,0,1,0,0,0,36,0,0,0,2,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,2,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,19,14,2, 0,0,0,0,0,5,235,0,0,36,1,0,0,19,14,2,0,0,0,0,0,1,0,0,0,36,0,0,0,80,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,99,14,2,0,0,0,0,0,28,235,0,0,36,1,0,0,99,14,2,0,0,0,0,0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,195,14,2,0,0,0,0,0,53,235,0,0,36,1,0,0,195,14,2,0,0,0,0,0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,35,15,2,0,0,0,0,0,78,235,0,0,36,1,0,0,35,15,2,0,0,0,0,0,1,0,0,0,36,0,0,0,243,0,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,243,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,16,2,0,0,0,0,0,91,235,0,0,36,1,0,0,22,16,2,0,0,0,0,0,1,0,0,0,36,0,0,0,149,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,149,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,171,17,2,0,0,0,0,0,107,235,0,0,36,1,0,0,171,17,2, 0,0,0,0,0,1,0,0,0,36,0,0,0,232,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,232,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,147,18,2,0,0,0,0,0,121,235,0,0,36,1,0,0,147,18,2,0,0,0,0,0,1,0,0,0,36,0,0,0,209,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,209,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,100,19, 2,0,0,0,0,0,139,235,0,0,36,1,0,0,100,19,2,0,0,0,0,0,1,0,0,0,36,0,0,0,185,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,185,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,29,21,2,0,0,0,0,0,158,235,0,0,36,1,0,0,29,21,2,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,67,21,2,0,0,0,0,0,179,235,0,0,36,1,0,0,67,21,2,0,0,0,0,0,1,0,0,0,36,0,0,0,79,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,146,21,2,0,0,0,0,0,192,235,0,0,36,1,0,0,146,21,2,0,0,0,0,0,1,0,0,0,36,0,0,0,176, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,22,2,0,0,0,0,0,206,235,0,0,36,1,0,0,66,22,2,0,0,0,0,0,1,0,0,0,36,0,0,0,144,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,144,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,210,22,2,0,0,0,0,0,218,235,0,0,36,1,0,0, 210,22,2,0,0,0,0,0,1,0,0,0,36,0,0,0,225,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,225,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,179,23,2,0,0,0,0,0,232,235,0,0,36,1,0,0,179,23,2,0,0,0,0,0,1,0,0,0,36,0,0,0,120,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,43,24,2,0,0,0,0,0,249,235,0,0,36,1,0,0,43,24,2,0,0,0,0,0,1,0,0,0,36,0,0,0,85,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,128,24,2,0,0,0,0,0,8,236,0,0,36,1,0,0,128,24,2,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,31,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,159,24,2,0,0,0,0,0,23,236,0,0,36,1,0,0,159,24,2,0,0,0,0,0,1,0,0,0,36,0,0,0,92,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,251,24,2,0,0,0,0,0,35,236,0,0,36,1,0,0,251,24,2,0,0,0,0,0,1,0,0,0,36,0, 0,0,110,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,105,25,2,0,0,0,0,0,48,236,0,0,36,1,0,0,105,25,2,0,0,0,0,0,1,0,0,0,36,0,0,0,102,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,207,25,2,0,0,0,0,0,67,236,0,0,36, 1,0,0,207,25,2,0,0,0,0,0,1,0,0,0,36,0,0,0,115,7,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,7,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,33,2,0,0,0,0,0,82,236,0,0,36,1,0,0,66,33,2,0,0,0,0,0,1,0,0,0,36,0,0,0,189,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,189,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,255,33,2,0,0,0,0,0,100,236,0,0,36,1,0,0,255,33,2,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,43,34,2,0,0,0,0,0,121,236,0,0,36,1,0,0,43,34,2,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,95,34,2,0,0,0,0,0,139,236,0,0,36,1,0,0,95,34,2,0,0,0,0,0,1,0,0,0,36,0,0,0,228,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,228,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,67,35,2,0,0,0,0,0,156,236,0,0,36,1,0,0,67,35,2,0,0,0,0,0,1,0,0,0,36, 0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,173,236,0,0,32,10,0,0,0,0,0,0,0,0,0,0,194,236,0,0,32,10,0,0,0,0,0,0,0,0,0,0,212,236,0,0,32,10,0,0,0,0,0,0,0,0,0,0,228,236,0,0,32,10,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189, 0,0,100,0,0,0,0,0,0,0,0,0,0,0,243,236,0,0,100,0,0,0,0,0,0,0,0,0,0,0,11,237,0,0,102,0,1,0,84,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,93,35,2,0,0,0,0,0,74,237,0,0,36,1,0,0,93,35,2,0,0,0,0,0,1,0,0,0,36,0,0,0,154,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,154,0,0,0,0,0,0, 0,1,0,0,0,46,1,0,0,247,35,2,0,0,0,0,0,89,237,0,0,36,1,0,0,247,35,2,0,0,0,0,0,1,0,0,0,36,0,0,0,199,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,199,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,190,36,2,0,0,0,0,0,100,237,0,0,36,1,0,0,190,36,2,0,0,0,0,0,1,0,0,0,36,0,0,0,255,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,255,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,189,37,2,0,0,0,0,0,114,237,0,0,36,1,0,0,189,37,2,0,0,0,0,0,1,0,0,0,36,0,0,0,148,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,148,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,81,38,2,0,0,0,0,0,139,237,0,0,36,1,0,0,81,38, 2,0,0,0,0,0,1,0,0,0,36,0,0,0,155,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,236,38,2,0,0,0,0,0,151,237,0,0,36,1,0,0,236,38,2,0,0,0,0,0,1,0,0,0,36,0,0,0,128,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,128,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,108,40, 2,0,0,0,0,0,164,237,0,0,36,1,0,0,108,40,2,0,0,0,0,0,1,0,0,0,36,0,0,0,213,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,65,41,2,0,0,0,0,0,178,237,0,0,36,1,0,0,65,41,2,0,0,0,0,0,1,0,0,0,36,0,0,0,236,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,236, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,45,42,2,0,0,0,0,0,195,237,0,0,36,1,0,0,45,42,2,0,0,0,0,0,1,0,0,0,36,0,0,0,146,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,146,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,191,42,2,0,0,0,0,0,222,237,0,0,36,1,0,0,191,42,2,0,0,0,0,0,1,0,0,0,36,0,0,0, 40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,231,42,2,0,0,0,0,0,238,237,0,0,36,1,0,0,231,42,2,0,0,0,0,0,1,0,0,0,36,0,0,0,241,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,241,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,216,43,2,0,0,0,0,0,1,238,0,0,36,1,0, 0,216,43,2,0,0,0,0,0,1,0,0,0,36,0,0,0,96,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,56,47,2,0,0,0,0,0,14,238,0,0,36,1,0,0,56,47,2,0,0,0,0,0,1,0,0,0,36,0,0,0,142,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,142,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,198, 47,2,0,0,0,0,0,32,238,0,0,36,1,0,0,198,47,2,0,0,0,0,0,1,0,0,0,36,0,0,0,147,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,147,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,89,49,2,0,0,0,0,0,51,238,0,0,36,1,0,0,89,49,2,0,0,0,0,0,1,0,0,0,36,0,0,0,26,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26, 1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,50,2,0,0,0,0,0,70,238,0,0,36,1,0,0,115,50,2,0,0,0,0,0,1,0,0,0,36,0,0,0,226,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,226,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,85,53,2,0,0,0,0,0,90,238,0,0,36,1,0,0,85,53,2,0,0,0,0,0,1,0,0,0,36,0,0,0,146, 1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,146,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,231,54,2,0,0,0,0,0,116,238,0,0,36,1,0,0,231,54,2,0,0,0,0,0,1,0,0,0,36,0,0,0,242,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,242,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,57,2,0,0,0,0,0,147,238,0,0,36,1,0, 0,217,57,2,0,0,0,0,0,1,0,0,0,36,0,0,0,50,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,50,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,11,58,2,0,0,0,0,0,175,238,0,0,36,1,0,0,11,58,2,0,0,0,0,0,1,0,0,0,36,0,0,0,162,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,162,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 173,58,2,0,0,0,0,0,188,238,0,0,36,1,0,0,173,58,2,0,0,0,0,0,1,0,0,0,36,0,0,0,68,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,68,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,241,58,2,0,0,0,0,0,202,238,0,0,36,1,0,0,241,58,2,0,0,0,0,0,1,0,0,0,36,0,0,0,66,1,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,66,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,51,60,2,0,0,0,0,0,223,238,0,0,36,1,0,0,51,60,2,0,0,0,0,0,1,0,0,0,36,0,0,0,153,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,153,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,204,63,2,0,0,0,0,0,237,238,0,0,36,1,0,0,204,63,2,0,0,0,0,0,1,0,0,0,36, 0,0,0,101,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,101,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,49,66,2,0,0,0,0,0,4,239,0,0,36,1,0,0,49,66,2,0,0,0,0,0,1,0,0,0,36,0,0,0,181,11,0,0,0,0,0,0,1,0,0,0,78,1,0,0,181,11,0,0,0,0,0,0,1,0,0,0,46,1,0,0,230,77,2,0,0,0,0,0,19,239,0,0, 36,1,0,0,230,77,2,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20,78,2,0,0,0,0,0,41,239,0,0,36,1,0,0,20,78,2,0,0,0,0,0,1,0,0,0,36,0,0,0,74,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,2,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,94,80,2,0,0,0,0,0,56,239,0,0,36,1,0,0,94,80,2,0,0,0,0,0,1,0,0,0,36,0,0,0,93,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,187,80,2,0,0,0,0,0,72,239,0,0,36,1,0,0,187,80,2,0,0,0,0,0,1,0,0,0,36,0,0,0,20,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,20,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,207,80,2,0,0,0,0,0,89,239,0,0,36,1,0,0,207,80,2,0,0,0,0,0,1,0,0,0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,232,80,2,0,0,0,0,0,104,239,0,0,36,1,0,0,232,80,2,0,0,0,0,0,1,0,0,0,36, 0,0,0,17,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,249,80,2,0,0,0,0,0,121,239,0,0,36,1,0,0,249,80,2,0,0,0,0,0,1,0,0,0,36,0,0,0,14,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,14,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,7,81,2,0,0,0,0,0,136,239,0,0,36, 1,0,0,7,81,2,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,59,81,2,0,0,0,0,0,148,239,0,0,36,1,0,0,59,81,2,0,0,0,0,0,1,0,0,0,36,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,101,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,160,81,2,0,0,0,0,0,162,239,0,0,36,1,0,0,160,81,2,0,0,0,0,0,1,0,0,0,36,0,0,0,157,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,157,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,61,84,2,0,0,0,0,0,175,239,0,0,36,1,0,0,61,84,2,0,0,0,0,0,1,0,0,0,36,0,0,0,18,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,18,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,79,84,2,0,0,0,0,0,193,239,0,0,36,1,0,0,79,84,2,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,166,84,2,0,0,0,0,0,210,239,0,0,36,1,0,0,166,84,2,0,0,0,0,0,1,0,0,0,36, 0,0,0,97,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,7,85,2,0,0,0,0,0,225,239,0,0,36,1,0,0,7,85,2,0,0,0,0,0,1,0,0,0,36,0,0,0,97,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,104,85,2,0,0,0,0,0,242,239,0,0,36,1, 0,0,104,85,2,0,0,0,0,0,1,0,0,0,36,0,0,0,33,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,137,85,2,0,0,0,0,0,2,240,0,0,36,1,0,0,137,85,2,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 172,85,2,0,0,0,0,0,14,240,0,0,36,1,0,0,172,85,2,0,0,0,0,0,1,0,0,0,36,0,0,0,178,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,178,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,86,2,0,0,0,0,0,36,240,0,0,36,1,0,0,94,86,2,0,0,0,0,0,1,0,0,0,36,0,0,0,76,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,76,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,86,2,0,0,0,0,0,58,240,0,0,36,1,0,0,170,86,2,0,0,0,0,0,1,0,0,0,36,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245,86,2,0,0,0,0,0,76,240,0,0,36,1,0,0,245,86,2,0,0,0,0,0,1,0,0,0,36,0, 0,0,150,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,139,87,2,0,0,0,0,0,90,240,0,0,36,1,0,0,139,87,2,0,0,0,0,0,1,0,0,0,36,0,0,0,73,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,73,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,212,89,2,0,0,0,0,0,103,240,0,0,36, 1,0,0,212,89,2,0,0,0,0,0,1,0,0,0,36,0,0,0,239,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,239,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,90,2,0,0,0,0,0,119,240,0,0,36,1,0,0,195,90,2,0,0,0,0,0,1,0,0,0,36,0,0,0,239,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,239,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,178,91,2,0,0,0,0,0,137,240,0,0,36,1,0,0,178,91,2,0,0,0,0,0,1,0,0,0,36,0,0,0,161,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,83,93,2,0,0,0,0,0,155,240,0,0,36,1,0,0,83,93,2,0,0,0,0,0,1,0,0,0,36,0,0,0,46,1,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,46,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,129,94,2,0,0,0,0,0,168,240,0,0,36,1,0,0,129,94,2,0,0,0,0,0,1,0,0,0,36,0,0,0,137,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,137,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,10,95,2,0,0,0,0,0,183,240,0,0,36,1,0,0,10,95,2,0,0,0,0,0,1,0, 0,0,36,0,0,0,117,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,127,95,2,0,0,0,0,0,198,240,0,0,36,1,0,0,127,95,2,0,0,0,0,0,1,0,0,0,36,0,0,0,117,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,95,2,0,0,0,0,0,213, 240,0,0,36,1,0,0,244,95,2,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,96,2,0,0,0,0,0,228,240,0,0,36,1,0,0,40,96,2,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,92,96,2,0,0,0,0,0,243,240,0,0,36,1,0,0,92,96,2,0,0,0,0,0,1,0,0,0,36,0,0,0,110,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,202,96,2,0,0,0,0,0,2,241,0,0,36,1,0,0,202,96,2,0,0,0,0,0,1,0,0,0,36,0,0,0,95,2,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,95,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,41,99,2,0,0,0,0,0,15,241,0,0,36,1,0,0,41,99,2,0,0,0,0,0,1,0,0,0,36,0,0,0,179,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,179,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,220,100,2,0,0,0,0,0,29,241,0,0,36,1,0,0,220,100,2,0,0,0,0, 0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,252,100,2,0,0,0,0,0,49,241,0,0,36,1,0,0,252,100,2,0,0,0,0,0,1,0,0,0,36,0,0,0,190,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,190,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,186,101,2,0,0,0, 0,0,69,241,0,0,36,1,0,0,186,101,2,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,224,101,2,0,0,0,0,0,84,241,0,0,36,1,0,0,224,101,2,0,0,0,0,0,1,0,0,0,36,0,0,0,72,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,40,102,2,0,0,0,0,0,98,241,0,0,36,1,0,0,40,102,2,0,0,0,0,0,1,0,0,0,36,0,0,0,138,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,138,4,0,0,0,0,0,0,113,241,0,0,32,10,0,0,0,0,0,0,0,0,0,0,136,241,0,0,38,10,0,0,128,66,11,0,0,0,0,0,162,241,0,0,38,10,0, 0,40,67,11,0,0,0,0,0,188,241,0,0,38,11,0,0,8,95,11,0,0,0,0,0,196,241,0,0,38,11,0,0,12,95,11,0,0,0,0,0,209,241,0,0,38,11,0,0,16,95,11,0,0,0,0,0,237,241,0,0,38,11,0,0,24,95,11,0,0,0,0,0,7,242,0,0,38,11,0,0,28,95,11,0,0,0,0,0,33,242,0,0,38,11,0,0,32,95, 11,0,0,0,0,0,54,242,0,0,38,11,0,0,40,95,11,0,0,0,0,0,75,242,0,0,38,11,0,0,48,95,11,0,0,0,0,0,95,242,0,0,38,11,0,0,56,95,11,0,0,0,0,0,116,242,0,0,38,11,0,0,64,95,11,0,0,0,0,0,136,242,0,0,38,11,0,0,72,95,11,0,0,0,0,0,153,242,0,0,38,11,0,0,80,95,11,0,0, 0,0,0,176,242,0,0,38,11,0,0,88,95,11,0,0,0,0,0,198,242,0,0,38,11,0,0,92,95,11,0,0,0,0,0,221,242,0,0,38,11,0,0,96,95,11,0,0,0,0,0,242,242,0,0,38,11,0,0,100,95,11,0,0,0,0,0,6,243,0,0,38,11,0,0,104,95,11,0,0,0,0,0,28,243,0,0,38,11,0,0,108,95,11,0,0,0,0, 0,50,243,0,0,38,11,0,0,112,95,11,0,0,0,0,0,70,243,0,0,38,11,0,0,116,95,11,0,0,0,0,0,91,243,0,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,105,243,0,0,100,0,0,0,0,0,0,0,0,0,0,0,128,243,0,0,102,0,1, 0,85,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,178,106,2,0,0,0,0,0,190,243,0,0,36,1,0,0,178,106,2,0,0,0,0,0,1,0,0,0,36,0,0,0,109,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,109,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,107,2,0,0,0,0,0,207,243,0,0,36,1,0,0,31,107,2,0,0,0,0,0,1,0, 0,0,36,0,0,0,130,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,130,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,161,109,2,0,0,0,0,0,221,243,0,0,36,1,0,0,161,109,2,0,0,0,0,0,1,0,0,0,36,0,0,0,4,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,4,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,165,111,2,0,0,0,0,0,236, 243,0,0,36,1,0,0,165,111,2,0,0,0,0,0,1,0,0,0,36,0,0,0,202,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,111,112,2,0,0,0,0,0,252,243,0,0,36,1,0,0,111,112,2,0,0,0,0,0,1,0,0,0,36,0,0,0,58,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,58,1,0,0,0,0,0, 0,1,0,0,0,46,1,0,0,169,113,2,0,0,0,0,0,13,244,0,0,36,1,0,0,169,113,2,0,0,0,0,0,1,0,0,0,36,0,0,0,125,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,38,115,2,0,0,0,0,0,26,244,0,0,36,1,0,0,38,115,2,0,0,0,0,0,1,0,0,0,36,0,0,0,236,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,236,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,18,116,2,0,0,0,0,0,43,244,0,0,36,1,0,0,18,116,2,0,0,0,0,0,1,0,0,0,36,0,0,0,175,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,193,116,2,0,0,0,0,0,53,244,0,0,36,1,0,0,193,116, 2,0,0,0,0,0,1,0,0,0,36,0,0,0,126,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,117,2,0,0,0,0,0,66,244,0,0,36,1,0,0,63,117,2,0,0,0,0,0,1,0,0,0,36,0,0,0,3,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,3,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,119,2,0, 0,0,0,0,76,244,0,0,36,1,0,0,66,119,2,0,0,0,0,0,1,0,0,0,36,0,0,0,94,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,94,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,119,2,0,0,0,0,0,94,244,0,0,36,1,0,0,160,119,2,0,0,0,0,0,1,0,0,0,36,0,0,0,6,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,2,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,166,121,2,0,0,0,0,0,110,244,0,0,36,1,0,0,166,121,2,0,0,0,0,0,1,0,0,0,36,0,0,0,186,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,186,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,96,122,2,0,0,0,0,0,119,244,0,0,36,1,0,0,96,122,2,0,0,0,0,0,1,0,0,0,36,0,0,0,165, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,5,123,2,0,0,0,0,0,130,244,0,0,36,1,0,0,5,123,2,0,0,0,0,0,1,0,0,0,36,0,0,0,147,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,147,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,152,123,2,0,0,0,0,0,141,244,0,0,36,1,0,0, 152,123,2,0,0,0,0,0,1,0,0,0,36,0,0,0,50,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,50,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,202,123,2,0,0,0,0,0,151,244,0,0,36,1,0,0,202,123,2,0,0,0,0,0,1,0,0,0,36,0,0,0,50,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,50,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 252,123,2,0,0,0,0,0,162,244,0,0,36,1,0,0,252,123,2,0,0,0,0,0,1,0,0,0,36,0,0,0,253,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,253,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,249,124,2,0,0,0,0,0,174,244,0,0,36,1,0,0,249,124,2,0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,50,125,2,0,0,0,0,0,185,244,0,0,36,1,0,0,50,125,2,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,137,125,2,0,0,0,0,0,199,244,0,0,36,1,0,0,137,125,2,0,0,0,0,0,1, 0,0,0,36,0,0,0,28,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,165,125,2,0,0,0,0,0,210,244,0,0,36,1,0,0,165,125,2,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,192,125,2,0,0,0,0,0,222, 244,0,0,36,1,0,0,192,125,2,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,219,125,2,0,0,0,0,0,235,244,0,0,36,1,0,0,219,125,2,0,0,0,0,0,1,0,0,0,36,0,0,0,34,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,253,125,2,0,0,0,0,0,245,244,0,0,36,1,0,0,253,125,2,0,0,0,0,0,1,0,0,0,36,0,0,0,34,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,126,2,0,0,0,0,0,3,245,0,0,36,1,0,0,31,126,2,0,0,0,0,0,1,0,0,0,36,0,0,0,63,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,63,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,126,2,0,0,0,0,0,17,245,0,0,36,1,0,0,94,126,2,0,0,0,0,0,1,0,0,0,36,0,0,0,85,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,179,126,2,0,0,0,0,0,27,245,0,0,36,1,0,0,179,126,2,0, 0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,231,126,2,0,0,0,0,0,38,245,0,0,36,1,0,0,231,126,2,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,27,127,2,0,0, 0,0,0,47,245,0,0,36,1,0,0,27,127,2,0,0,0,0,0,1,0,0,0,36,0,0,0,80,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,107,127,2,0,0,0,0,0,62,245,0,0,36,1,0,0,107,127,2,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,159,127,2,0,0,0,0,0,73,245,0,0,36,1,0,0,159,127,2,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,194,127,2,0,0,0,0,0,83,245,0,0,36,1,0,0,194,127,2,0,0,0,0,0,1,0,0,0,36,0,0,0,35, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,229,127,2,0,0,0,0,0,96,245,0,0,36,1,0,0,229,127,2,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,8,128,2,0,0,0,0,0,107,245,0,0,36,1,0,0,8, 128,2,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,128,2,0,0,0,0,0,122,245,0,0,36,1,0,0,60,128,2,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,112,128, 2,0,0,0,0,0,138,245,0,0,36,1,0,0,112,128,2,0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,169,128,2,0,0,0,0,0,148,245,0,0,36,1,0,0,169,128,2,0,0,0,0,0,1,0,0,0,36,0,0,0,55,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 55,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,224,128,2,0,0,0,0,0,162,245,0,0,36,1,0,0,224,128,2,0,0,0,0,0,1,0,0,0,36,0,0,0,41,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,9,129,2,0,0,0,0,0,176,245,0,0,36,1,0,0,9,129,2,0,0,0,0,0,1,0,0,0,36,0, 0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,39,129,2,0,0,0,0,0,190,245,0,0,36,1,0,0,39,129,2,0,0,0,0,0,1,0,0,0,36,0,0,0,76,7,0,0,0,0,0,0,1,0,0,0,78,1,0,0,76,7,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,136,2,0,0,0,0,0,199,245,0,0,36, 1,0,0,115,136,2,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,136,2,0,0,0,0,0,220,245,0,0,36,1,0,0,153,136,2,0,0,0,0,0,1,0,0,0,36,0,0,0,109,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,109,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,6,137,2,0,0,0,0,0,228,245,0,0,36,1,0,0,6,137,2,0,0,0,0,0,1,0,0,0,36,0,0,0,115,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,4,0,0,0,0,0,0,242,245,0,0,38,11,0,0,120,95,11,0,0,0,0,0,253,245,0,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0, 117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,17,246,0,0,100,0,0,0,0,0,0,0,0,0,0,0,42,246,0,0,102,0,1,0,85,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,121,141,2,0,0,0,0,0,106,246,0,0,36,1,0,0,121,141,2,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,152,141,2,0,0,0,0,0,131,246,0,0,36,1,0,0,152,141,2,0,0,0,0,0,1,0,0,0,36,0,0,0,45,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,197,141,2,0,0,0,0,0,149,246,0,0,36,1,0,0,197,141,2,0,0,0,0,0,1,0,0,0,36,0,0, 0,119,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,119,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,142,2,0,0,0,0,0,169,246,0,0,36,1,0,0,60,142,2,0,0,0,0,0,1,0,0,0,36,0,0,0,93,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,142,2,0,0,0,0,0,185,246,0,0,36, 1,0,0,153,142,2,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,193,142,2,0,0,0,0,0,203,246,0,0,36,1,0,0,193,142,2,0,0,0,0,0,1,0,0,0,36,0,0,0,28,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,221,142,2,0,0,0,0,0,222,246,0,0,36,1,0,0,221,142,2,0,0,0,0,0,1,0,0,0,36,0,0,0,23,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,142,2,0,0,0,0,0,241,246,0,0,36,1,0,0,244,142,2,0,0,0,0,0,1,0,0,0,36,0,0,0,23,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,23,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,11,143,2,0,0,0,0,0,6,247,0,0,36,1,0,0,11,143,2,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,114,143,2,0,0,0,0,0,21,247,0,0,36,1,0,0,114,143,2,0,0,0,0,0, 1,0,0,0,36,0,0,0,86,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,200,143,2,0,0,0,0,0,43,247,0,0,36,1,0,0,200,143,2,0,0,0,0,0,1,0,0,0,36,0,0,0,63,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,7,144,2,0,0,0,0,0,59, 247,0,0,36,1,0,0,7,144,2,0,0,0,0,0,1,0,0,0,36,0,0,0,126,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,133,144,2,0,0,0,0,0,81,247,0,0,36,1,0,0,133,144,2,0,0,0,0,0,1,0,0,0,36,0,0,0,34,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,167,144,2,0,0,0,0,0,103,247,0,0,36,1,0,0,167,144,2,0,0,0,0,0,1,0,0,0,36,0,0,0,34,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,201,144,2,0,0,0,0,0,118,247,0,0,36,1,0,0,201,144,2,0,0,0,0,0,1,0,0,0,36,0,0,0,170,1,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,170,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,146,2,0,0,0,0,0,139,247,0,0,36,1,0,0,115,146,2,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,161,146,2,0,0,0,0,0,161,247,0,0,36,1,0,0,161, 146,2,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,146,2,0,0,0,0,0,182,247,0,0,36,1,0,0,199,146,2,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245, 146,2,0,0,0,0,0,204,247,0,0,36,1,0,0,245,146,2,0,0,0,0,0,1,0,0,0,36,0,0,0,219,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,219,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,208,147,2,0,0,0,0,0,219,247,0,0,36,1,0,0,208,147,2,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,148,2,0,0,0,0,0,236,247,0,0,36,1,0,0,22,148,2,0,0,0,0,0,1,0,0,0,36,0,0,0,74,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,96,148,2,0,0,0,0,0,1,248,0,0,36,1,0,0,96,148,2,0,0,0,0,0,1,0,0,0,36, 0,0,0,182,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,152,2,0,0,0,0,0,21,248,0,0,36,1,0,0,22,152,2,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,58,152,2,0,0,0,0,0,47,248,0,0,36, 1,0,0,58,152,2,0,0,0,0,0,1,0,0,0,36,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,152,2,0,0,0,0,0,59,248,0,0,36,1,0,0,240,152,2,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,28,153,2,0,0,0,0,0,80,248,0,0,36,1,0,0,28,153,2,0,0,0,0,0,1,0,0,0,36,0,0,0,215,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,215,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0,243,157,2,0,0,0,0,0,92,248,0,0,36,1,0,0,243,157,2,0,0,0,0,0,1,0,0,0,36,0,0,0,51,1,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,51,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,38,159,2,0,0,0,0,0,107,248,0,0,36,1,0,0,38,159,2,0,0,0,0,0,1,0,0,0,36,0,0,0,153,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,153,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,191,162,2,0,0,0,0,0,123,248,0,0,36,1,0,0,191,162,2,0,0,0,0, 0,1,0,0,0,36,0,0,0,52,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,243,163,2,0,0,0,0,0,136,248,0,0,36,1,0,0,243,163,2,0,0,0,0,0,1,0,0,0,36,0,0,0,50,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,50,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,37,164,2,0,0,0,0, 0,151,248,0,0,36,1,0,0,37,164,2,0,0,0,0,0,1,0,0,0,36,0,0,0,82,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,119,164,2,0,0,0,0,0,169,248,0,0,36,1,0,0,119,164,2,0,0,0,0,0,1,0,0,0,36,0,0,0,116,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,116,1,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,235,165,2,0,0,0,0,0,189,248,0,0,36,1,0,0,235,165,2,0,0,0,0,0,1,0,0,0,36,0,0,0,120,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,99,166,2,0,0,0,0,0,209,248,0,0,36,1,0,0,99,166,2,0,0,0,0,0,1,0,0,0,36,0,0,0,156, 1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,255,167,2,0,0,0,0,0,230,248,0,0,36,1,0,0,255,167,2,0,0,0,0,0,1,0,0,0,36,0,0,0,144,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,144,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,143,168,2,0,0,0,0,0,244,248,0,0,36,1, 0,0,143,168,2,0,0,0,0,0,1,0,0,0,36,0,0,0,24,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,167,169,2,0,0,0,0,0,8,249,0,0,36,1,0,0,167,169,2,0,0,0,0,0,1,0,0,0,36,0,0,0,131,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,1,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,42,171,2,0,0,0,0,0,20,249,0,0,36,1,0,0,42,171,2,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,171,2,0,0,0,0,0,35,249,0,0,36,1,0,0,98,171,2,0,0,0,0,0,1,0,0,0,36,0,0,0,180,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,180,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,172,2,0,0,0,0,0,52,249,0,0,36,1,0,0,22,172,2,0,0,0,0,0,1,0,0,0,36,0,0,0,74,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,96,172,2,0,0,0,0,0,69,249,0,0,36,1,0,0,96,172,2,0,0,0,0,0,1,0,0,0, 36,0,0,0,65,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,65,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,161,172,2,0,0,0,0,0,87,249,0,0,36,1,0,0,161,172,2,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,239,172,2,0,0,0,0,0,102,249, 0,0,36,1,0,0,239,172,2,0,0,0,0,0,1,0,0,0,36,0,0,0,91,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,74,174,2,0,0,0,0,0,115,249,0,0,36,1,0,0,74,174,2,0,0,0,0,0,1,0,0,0,36,0,0,0,212,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,212,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,30,175,2,0,0,0,0,0,133,249,0,0,36,1,0,0,30,175,2,0,0,0,0,0,1,0,0,0,36,0,0,0,187,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,175,2,0,0,0,0,0,153,249,0,0,36,1,0,0,217,175,2,0,0,0,0,0,1,0,0,0,36,0,0,0,165,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,165,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,126,176,2,0,0,0,0,0,176,249,0,0,36,1,0,0,126,176,2,0,0,0,0,0,1,0,0,0,36,0,0,0,209,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,209,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,79,177,2,0,0,0,0,0,201,249,0,0,36,1,0,0,79,177, 2,0,0,0,0,0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,175,177,2,0,0,0,0,0,213,249,0,0,36,1,0,0,175,177,2,0,0,0,0,0,1,0,0,0,36,0,0,0,26,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,201,178, 2,0,0,0,0,0,229,249,0,0,36,1,0,0,201,178,2,0,0,0,0,0,1,0,0,0,36,0,0,0,118,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,118,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,179,2,0,0,0,0,0,2,250,0,0,36,1,0,0,63,179,2,0,0,0,0,0,1,0,0,0,36,0,0,0,205,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,205, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,12,180,2,0,0,0,0,0,29,250,0,0,36,1,0,0,12,180,2,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,44,180,2,0,0,0,0,0,46,250,0,0,36,1,0,0,44,180,2,0,0,0,0,0,1,0,0,0,36,0,0,0,197, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,197,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,241,180,2,0,0,0,0,0,63,250,0,0,36,1,0,0,241,180,2,0,0,0,0,0,1,0,0,0,36,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,181,2,0,0,0,0,0,86,250,0,0,36,1,0,0, 60,181,2,0,0,0,0,0,1,0,0,0,36,0,0,0,10,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,10,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,70,181,2,0,0,0,0,0,103,250,0,0,36,1,0,0,70,181,2,0,0,0,0,0,1,0,0,0,36,0,0,0,23,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,93, 182,2,0,0,0,0,0,118,250,0,0,36,1,0,0,93,182,2,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,149,182,2,0,0,0,0,0,132,250,0,0,36,1,0,0,149,182,2,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,205,182,2,0,0,0,0,0,150,250,0,0,36,1,0,0,205,182,2,0,0,0,0,0,1,0,0,0,36,0,0,0,198,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,147,183,2,0,0,0,0,0,172,250,0,0,36,1,0,0,147,183,2,0,0,0,0,0,1,0,0, 0,36,0,0,0,187,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,78,186,2,0,0,0,0,0,183,250,0,0,36,1,0,0,78,186,2,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,108,186,2,0,0,0,0,0,205,250, 0,0,36,1,0,0,108,186,2,0,0,0,0,0,1,0,0,0,36,0,0,0,179,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,187,2,0,0,0,0,0,221,250,0,0,36,1,0,0,31,187,2,0,0,0,0,0,1,0,0,0,36,0,0,0,219,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,219,0,0,0,0,0,0,0,1, 0,0,0,46,1,0,0,250,187,2,0,0,0,0,0,238,250,0,0,36,1,0,0,250,187,2,0,0,0,0,0,1,0,0,0,36,0,0,0,71,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,71,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,65,188,2,0,0,0,0,0,1,251,0,0,36,1,0,0,65,188,2,0,0,0,0,0,1,0,0,0,36,0,0,0,51,1,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,51,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,116,189,2,0,0,0,0,0,15,251,0,0,36,1,0,0,116,189,2,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,152,189,2,0,0,0,0,0,27,251,0,0,36,1,0,0,152,189,2,0, 0,0,0,0,1,0,0,0,36,0,0,0,117,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,13,190,2,0,0,0,0,0,45,251,0,0,36,1,0,0,13,190,2,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,190,2,0,0, 0,0,0,62,251,0,0,36,1,0,0,62,190,2,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,190,2,0,0,0,0,0,82,251,0,0,36,1,0,0,98,190,2,0,0,0,0,0,1,0,0,0,36,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,122,190,2,0,0,0,0,0,101,251,0,0,36,1,0,0,122,190,2,0,0,0,0,0,1,0,0,0,36,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,146,190,2,0,0,0,0,0,120,251,0,0,36,1,0,0,146,190,2,0,0,0,0,0,1,0,0,0,36,0,0,0,149, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,39,191,2,0,0,0,0,0,130,251,0,0,36,1,0,0,39,191,2,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,145,191,2,0,0,0,0,0,147,251,0,0,36,1,0, 0,145,191,2,0,0,0,0,0,1,0,0,0,36,0,0,0,224,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,224,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,113,192,2,0,0,0,0,0,164,251,0,0,36,1,0,0,113,192,2,0,0,0,0,0,1,0,0,0,36,0,0,0,67,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,180,192,2,0,0,0,0,0,193,251,0,0,36,1,0,0,180,192,2,0,0,0,0,0,1,0,0,0,36,0,0,0,229,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,229,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,193,2,0,0,0,0,0,228,251,0,0,36,1,0,0,153,193,2,0,0,0,0,0,1,0,0,0,36,0,0,0,68,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,68,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,221,193,2,0,0,0,0,0,241,251,0,0,36,1,0,0,221,193,2,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,242,193,2,0,0,0,0,0,255,251,0,0,36,1,0,0,242,193,2,0,0,0, 0,0,1,0,0,0,36,0,0,0,188,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,188,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,174,194,2,0,0,0,0,0,26,252,0,0,36,1,0,0,174,194,2,0,0,0,0,0,1,0,0,0,36,0,0,0,70,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,195,2,0,0, 0,0,0,47,252,0,0,36,1,0,0,244,195,2,0,0,0,0,0,1,0,0,0,36,0,0,0,134,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,134,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,122,198,2,0,0,0,0,0,63,252,0,0,36,1,0,0,122,198,2,0,0,0,0,0,1,0,0,0,36,0,0,0,56,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,3,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,178,201,2,0,0,0,0,0,76,252,0,0,36,1,0,0,178,201,2,0,0,0,0,0,1,0,0,0,36,0,0,0,181,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,181,8,0,0,0,0,0,0,92,252,0,0,38,10,0,0,88,53,11,0,0,0,0,0,112,252,0,0,38,10,0,0,96,53,11,0,0,0,0,0,133,252,0,0, 32,10,0,0,0,0,0,0,0,0,0,0,146,252,0,0,38,10,0,0,132,67,11,0,0,0,0,0,163,252,0,0,38,11,0,0,128,95,11,0,0,0,0,0,176,252,0,0,38,11,0,0,132,95,11,0,0,0,0,0,186,252,0,0,38,11,0,0,136,95,11,0,0,0,0,0,202,252,0,0,38,11,0,0,144,95,11,0,0,0,0,0,218,252,0,0,38, 11,0,0,152,95,11,0,0,0,0,0,233,252,0,0,32,12,0,0,0,0,0,0,0,0,0,0,247,252,0,0,32,12,0,0,0,0,0,0,0,0,0,0,8,253,0,0,32,12,0,0,0,0,0,0,0,0,0,0,24,253,0,0,32,12,0,0,0,0,0,0,0,0,0,0,37,253,0,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117, 189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,55,253,0,0,100,0,0,0,0,0,0,0,0,0,0,0,80,253,0,0,102,0,1,0,86,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,103,210,2,0,0,0,0,0,144,253,0,0,36,1,0,0,103,210,2,0,0,0,0,0,1,0,0,0,36,0,0,0,125,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,228,210,2,0,0,0,0,0,158,253,0,0,36,1,0,0,228,210,2,0,0,0,0,0,1,0,0,0,36,0,0,0,91,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,211,2,0,0,0,0,0,173,253,0,0,36,1,0,0,63,211,2,0,0,0,0,0,1,0,0,0,36,0,0,0,85, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,148,211,2,0,0,0,0,0,186,253,0,0,36,1,0,0,148,211,2,0,0,0,0,0,1,0,0,0,36,0,0,0,85,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,233,211,2,0,0,0,0,0,201,253,0,0,36,1,0, 0,233,211,2,0,0,0,0,0,1,0,0,0,36,0,0,0,79,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,56,212,2,0,0,0,0,0,214,253,0,0,36,1,0,0,56,212,2,0,0,0,0,0,1,0,0,0,36,0,0,0,49,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 105,214,2,0,0,0,0,0,230,253,0,0,36,1,0,0,105,214,2,0,0,0,0,0,1,0,0,0,36,0,0,0,102,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,207,214,2,0,0,0,0,0,240,253,0,0,36,1,0,0,207,214,2,0,0,0,0,0,1,0,0,0,36,0,0,0,155,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,155,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,106,215,2,0,0,0,0,0,252,253,0,0,36,1,0,0,106,215,2,0,0,0,0,0,1,0,0,0,36,0,0,0,217,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,217,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,67,216,2,0,0,0,0,0,14,254,0,0,36,1,0,0,67,216,2,0,0,0,0, 0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,163,216,2,0,0,0,0,0,34,254,0,0,36,1,0,0,163,216,2,0,0,0,0,0,1,0,0,0,36,0,0,0,102,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,9,217,2,0,0,0,0, 0,52,254,0,0,36,1,0,0,9,217,2,0,0,0,0,0,1,0,0,0,36,0,0,0,191,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,200,217,2,0,0,0,0,0,66,254,0,0,36,1,0,0,200,217,2,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,47,218,2,0,0,0,0,0,93,254,0,0,36,1,0,0,47,218,2,0,0,0,0,0,1,0,0,0,36,0,0,0,84,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,84,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,131,220,2,0,0,0,0,0,109,254,0,0,36,1,0,0,131,220,2,0,0,0,0,0,1,0,0,0,36,0,0,0,113,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,113,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,220,2,0,0,0,0,0,125,254,0,0,36,1,0,0,244,220,2,0,0,0,0,0,1,0,0,0,36,0,0,0,230,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,230,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,218,221,2,0,0,0,0,0,142,254,0,0,36,1,0, 0,218,221,2,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,32,222,2,0,0,0,0,0,158,254,0,0,36,1,0,0,32,222,2,0,0,0,0,0,1,0,0,0,36,0,0,0,95,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,95,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 127,222,2,0,0,0,0,0,180,254,0,0,36,1,0,0,127,222,2,0,0,0,0,0,1,0,0,0,36,0,0,0,86,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,213,222,2,0,0,0,0,0,191,254,0,0,36,1,0,0,213,222,2,0,0,0,0,0,1,0,0,0,36,0,0,0,242,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,242,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,223,2,0,0,0,0,0,207,254,0,0,36,1,0,0,199,223,2,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,4,224,2,0,0,0,0,0,222,254,0,0,36,1,0,0,4,224,2,0,0,0,0,0,1,0, 0,0,36,0,0,0,168,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,168,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,224,2,0,0,0,0,0,235,254,0,0,36,1,0,0,172,224,2,0,0,0,0,0,1,0,0,0,36,0,0,0,168,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,168,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,84,225,2,0,0,0,0,0, 248,254,0,0,36,1,0,0,84,225,2,0,0,0,0,0,1,0,0,0,36,0,0,0,84,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,168,225,2,0,0,0,0,0,20,255,0,0,36,1,0,0,168,225,2,0,0,0,0,0,1,0,0,0,36,0,0,0,22,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,22,1,0,0,0,0,0, 0,1,0,0,0,46,1,0,0,190,226,2,0,0,0,0,0,39,255,0,0,36,1,0,0,190,226,2,0,0,0,0,0,1,0,0,0,36,0,0,0,187,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,121,227,2,0,0,0,0,0,63,255,0,0,36,1,0,0,121,227,2,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,227,2,0,0,0,0,0,88,255,0,0,36,1,0,0,172,227,2,0,0,0,0,0,1,0,0,0,36,0,0,0,73,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245,227,2,0,0,0,0,0,109,255,0,0,36,1,0,0,245, 227,2,0,0,0,0,0,1,0,0,0,36,0,0,0,46,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,35,230,2,0,0,0,0,0,130,255,0,0,36,1,0,0,35,230,2,0,0,0,0,0,1,0,0,0,36,0,0,0,130,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,130,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,165, 232,2,0,0,0,0,0,147,255,0,0,36,1,0,0,165,232,2,0,0,0,0,0,1,0,0,0,36,0,0,0,137,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,137,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,46,235,2,0,0,0,0,0,169,255,0,0,36,1,0,0,46,235,2,0,0,0,0,0,1,0,0,0,36,0,0,0,165,1,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,165,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,211,236,2,0,0,0,0,0,187,255,0,0,36,1,0,0,211,236,2,0,0,0,0,0,1,0,0,0,36,0,0,0,54,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,9,237,2,0,0,0,0,0,210,255,0,0,36,1,0,0,9,237,2,0,0,0,0,0,1,0,0,0, 36,0,0,0,247,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,247,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,0,238,2,0,0,0,0,0,229,255,0,0,36,1,0,0,0,238,2,0,0,0,0,0,1,0,0,0,36,0,0,0,249,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,249,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,249,239,2,0,0,0,0,0,245,255, 0,0,36,1,0,0,249,239,2,0,0,0,0,0,1,0,0,0,36,0,0,0,117,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,240,2,0,0,0,0,0,4,0,1,0,36,1,0,0,110,240,2,0,0,0,0,0,1,0,0,0,36,0,0,0,134,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,244,240,2,0,0,0,0,0,22,0,1,0,36,1,0,0,244,240,2,0,0,0,0,0,1,0,0,0,36,0,0,0,192,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,192,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,180,241,2,0,0,0,0,0,37,0,1,0,36,1,0,0,180,241,2,0,0,0,0,0,1,0,0,0,36,0,0,0,210,1,0,0,0,0,0,0, 1,0,0,0,78,1,0,0,210,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,134,243,2,0,0,0,0,0,56,0,1,0,36,1,0,0,134,243,2,0,0,0,0,0,1,0,0,0,36,0,0,0,179,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,57,244,2,0,0,0,0,0,75,0,1,0,36,1,0,0,57,244,2,0,0,0,0, 0,1,0,0,0,36,0,0,0,198,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,255,244,2,0,0,0,0,0,87,0,1,0,36,1,0,0,255,244,2,0,0,0,0,0,1,0,0,0,36,0,0,0,120,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,119,245,2,0,0,0, 0,0,100,0,1,0,36,1,0,0,119,245,2,0,0,0,0,0,1,0,0,0,36,0,0,0,119,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,119,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,238,245,2,0,0,0,0,0,122,0,1,0,36,1,0,0,238,245,2,0,0,0,0,0,1,0,0,0,36,0,0,0,148,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,148,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,130,246,2,0,0,0,0,0,145,0,1,0,36,1,0,0,130,246,2,0,0,0,0,0,1,0,0,0,36,0,0,0,194,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,194,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,68,250,2,0,0,0,0,0,157,0,1,0,36,1,0,0,68,250,2,0,0,0,0,0,1,0,0,0,36,0,0,0,111,2, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,111,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,179,252,2,0,0,0,0,0,174,0,1,0,36,1,0,0,179,252,2,0,0,0,0,0,1,0,0,0,36,0,0,0,159,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,159,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,255,2,0,0,0,0,0,193,0,1,0,36,1,0,0,82, 255,2,0,0,0,0,0,1,0,0,0,36,0,0,0,182,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,8,3,3,0,0,0,0,0,218,0,1,0,36,1,0,0,8,3,3,0,0,0,0,0,1,0,0,0,36,0,0,0,55,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,55,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,6,3,0,0, 0,0,0,237,0,1,0,36,1,0,0,63,6,3,0,0,0,0,0,1,0,0,0,36,0,0,0,140,12,0,0,0,0,0,0,1,0,0,0,78,1,0,0,140,12,0,0,0,0,0,0,1,0,0,0,46,1,0,0,203,18,3,0,0,0,0,0,253,0,1,0,36,1,0,0,203,18,3,0,0,0,0,0,1,0,0,0,36,0,0,0,88,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,35,19,3,0,0,0,0,0,11,1,1,0,36,1,0,0,35,19,3,0,0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,196,19,3,0,0,0,0,0,31,1,1,0,36,1,0,0,196,19,3,0,0,0,0,0,1,0,0,0,36,0,0,0,134,5,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,134,5,0,0,0,0,0,0,1,0,0,0,46,1,0,0,74,25,3,0,0,0,0,0,49,1,1,0,36,1,0,0,74,25,3,0,0,0,0,0,1,0,0,0,36,0,0,0,166,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,166,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,25,3,0,0,0,0,0,70,1,1,0,36,1,0,0,240,25,3,0,0,0,0, 0,1,0,0,0,36,0,0,0,48,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,48,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,32,27,3,0,0,0,0,0,87,1,1,0,36,1,0,0,32,27,3,0,0,0,0,0,1,0,0,0,36,0,0,0,77,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,77,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,109,29,3,0,0,0,0,0,103,1, 1,0,36,1,0,0,109,29,3,0,0,0,0,0,1,0,0,0,36,0,0,0,50,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,50,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,159,30,3,0,0,0,0,0,129,1,1,0,36,1,0,0,159,30,3,0,0,0,0,0,1,0,0,0,36,0,0,0,224,7,0,0,0,0,0,0,1,0,0,0,78,1,0,0,224,7,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,127,38,3,0,0,0,0,0,141,1,1,0,36,1,0,0,127,38,3,0,0,0,0,0,1,0,0,0,36,0,0,0,157,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,157,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,28,39,3,0,0,0,0,0,153,1,1,0,36,1,0,0,28,39,3,0,0,0,0,0,1,0,0,0,36,0,0,0,83,3,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,83,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,111,42,3,0,0,0,0,0,168,1,1,0,36,1,0,0,111,42,3,0,0,0,0,0,1,0,0,0,36,0,0,0,125,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,236,42,3,0,0,0,0,0,188,1,1,0,36,1,0,0,236,42,3,0,0,0,0,0,1,0, 0,0,36,0,0,0,83,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,83,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,43,3,0,0,0,0,0,202,1,1,0,36,1,0,0,63,43,3,0,0,0,0,0,1,0,0,0,36,0,0,0,155,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,218,43,3,0,0,0,0,0,219,1,1, 0,36,1,0,0,218,43,3,0,0,0,0,0,1,0,0,0,36,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,144,44,3,0,0,0,0,0,236,1,1,0,36,1,0,0,144,44,3,0,0,0,0,0,1,0,0,0,36,0,0,0,193,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,193,1,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,81,46,3,0,0,0,0,0,254,1,1,0,36,1,0,0,81,46,3,0,0,0,0,0,1,0,0,0,36,0,0,0,134,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,215,46,3,0,0,0,0,0,15,2,1,0,36,1,0,0,215,46,3,0,0,0,0,0,1,0,0,0,36,0,0,0,156,1,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,156,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,48,3,0,0,0,0,0,30,2,1,0,36,1,0,0,115,48,3,0,0,0,0,0,1,0,0,0,36,0,0,0,200,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,200,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,59,49,3,0,0,0,0,0,43,2,1,0,36,1,0,0,59,49,3,0,0,0,0,0,1,0,0,0, 36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,165,49,3,0,0,0,0,0,62,2,1,0,36,1,0,0,165,49,3,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,221,49,3,0,0,0,0,0,82,2,1,0,36, 1,0,0,221,49,3,0,0,0,0,0,1,0,0,0,36,0,0,0,207,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,207,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,50,3,0,0,0,0,0,101,2,1,0,36,1,0,0,172,50,3,0,0,0,0,0,1,0,0,0,36,0,0,0,86,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,2,51,3,0,0,0,0,0,119,2,1,0,36,1,0,0,2,51,3,0,0,0,0,0,1,0,0,0,36,0,0,0,131,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,133,53,3,0,0,0,0,0,143,2,1,0,36,1,0,0,133,53,3,0,0,0,0,0,1,0,0,0,36,0,0,0,97,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,97,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,230,53,3,0,0,0,0,0,170,2,1,0,36,1,0,0,230,53,3,0,0,0,0,0,1,0,0,0,36,0,0,0,125,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,99,55,3,0,0,0,0,0,185,2,1,0,36,1,0,0,99,55,3,0,0,0,0,0,1,0,0,0,36,0,0, 0,168,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,168,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,11,56,3,0,0,0,0,0,198,2,1,0,36,1,0,0,11,56,3,0,0,0,0,0,1,0,0,0,36,0,0,0,239,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,239,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,250,56,3,0,0,0,0,0,216,2,1,0,36,1,0, 0,250,56,3,0,0,0,0,0,1,0,0,0,36,0,0,0,195,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,195,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,189,58,3,0,0,0,0,0,232,2,1,0,36,1,0,0,189,58,3,0,0,0,0,0,1,0,0,0,36,0,0,0,67,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 0,60,3,0,0,0,0,0,244,2,1,0,36,1,0,0,0,60,3,0,0,0,0,0,1,0,0,0,36,0,0,0,110,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,60,3,0,0,0,0,0,10,3,1,0,36,1,0,0,110,60,3,0,0,0,0,0,1,0,0,0,36,0,0,0,61,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61, 1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,171,61,3,0,0,0,0,0,26,3,1,0,36,1,0,0,171,61,3,0,0,0,0,0,1,0,0,0,36,0,0,0,115,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,62,3,0,0,0,0,0,40,3,1,0,36,1,0,0,30,62,3,0,0,0,0,0,1,0,0,0,36,0,0,0,230,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,230,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,4,63,3,0,0,0,0,0,58,3,1,0,36,1,0,0,4,63,3,0,0,0,0,0,1,0,0,0,36,0,0,0,166,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,166,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,63,3,0,0,0,0,0,76,3,1,0,36,1,0,0,170,63,3,0, 0,0,0,0,1,0,0,0,36,0,0,0,97,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,11,65,3,0,0,0,0,0,93,3,1,0,36,1,0,0,11,65,3,0,0,0,0,0,1,0,0,0,36,0,0,0,246,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,246,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,1,68,3,0,0,0,0,0, 109,3,1,0,36,1,0,0,1,68,3,0,0,0,0,0,1,0,0,0,36,0,0,0,166,6,0,0,0,0,0,0,1,0,0,0,78,1,0,0,166,6,0,0,0,0,0,0,1,0,0,0,46,1,0,0,167,74,3,0,0,0,0,0,122,3,1,0,36,1,0,0,167,74,3,0,0,0,0,0,1,0,0,0,36,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,101,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,12,75,3,0,0,0,0,0,141,3,1,0,36,1,0,0,12,75,3,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,75,3,0,0,0,0,0,151,3,1,0,36,1,0,0,63,75,3,0,0,0,0,0,1,0,0,0,36,0,0,0,228,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,228,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,35,76,3,0,0,0,0,0,168,3,1,0,36,1,0,0,35,76,3,0,0,0,0,0,1,0,0,0,36,0,0,0,187,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,222,77,3,0,0,0,0,0,183,3,1,0,36,1,0,0,222,77,3,0,0,0,0,0,1,0, 0,0,36,0,0,0,2,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,2,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,224,78,3,0,0,0,0,0,196,3,1,0,36,1,0,0,224,78,3,0,0,0,0,0,1,0,0,0,36,0,0,0,79,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,47,79,3,0,0,0,0,0,213,3,1,0,36, 1,0,0,47,79,3,0,0,0,0,0,1,0,0,0,36,0,0,0,45,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,92,79,3,0,0,0,0,0,230,3,1,0,36,1,0,0,92,79,3,0,0,0,0,0,1,0,0,0,36,0,0,0,240,5,0,0,0,0,0,0,1,0,0,0,78,1,0,0,240,5,0,0,0,0,0,0,246,3,1,0,38,10, 0,0,128,53,11,0,0,0,0,0,2,4,1,0,32,10,0,0,0,0,0,0,0,0,0,0,33,4,1,0,38,11,0,0,160,95,11,0,0,0,0,0,47,4,1,0,38,11,0,0,164,95,11,0,0,0,0,0,63,4,1,0,38,11,0,0,168,95,11,0,0,0,0,0,74,4,1,0,38,11,0,0,176,95,11,0,0,0,0,0,91,4,1,0,38,11,0,0,184,95,11,0,0,0,0, 0,106,4,1,0,38,11,0,0,192,95,11,0,0,0,0,0,122,4,1,0,38,11,0,0,200,95,11,0,0,0,0,0,135,4,1,0,38,11,0,0,208,95,11,0,0,0,0,0,155,4,1,0,38,11,0,0,216,95,11,0,0,0,0,0,179,4,1,0,38,11,0,0,224,95,11,0,0,0,0,0,195,4,1,0,38,11,0,0,232,95,11,0,0,0,0,0,217,4,1, 0,38,11,0,0,240,95,11,0,0,0,0,0,234,4,1,0,38,11,0,0,248,95,11,0,0,0,0,0,254,4,1,0,38,11,0,0,0,96,11,0,0,0,0,0,16,5,1,0,38,11,0,0,8,96,11,0,0,0,0,0,46,5,1,0,38,11,0,0,16,96,11,0,0,0,0,0,66,5,1,0,38,11,0,0,24,96,11,0,0,0,0,0,78,5,1,0,38,11,0,0,28,96,11, 0,0,0,0,0,90,5,1,0,38,11,0,0,32,96,11,0,0,0,0,0,110,5,1,0,38,11,0,0,36,96,11,0,0,0,0,0,130,5,1,0,38,11,0,0,40,96,11,0,0,0,0,0,153,5,1,0,38,11,0,0,48,96,11,0,0,0,0,0,169,5,1,0,38,11,0,0,56,96,11,0,0,0,0,0,182,5,1,0,38,11,0,0,64,96,11,0,0,0,0,0,196,5,1, 0,38,11,0,0,72,96,11,0,0,0,0,0,215,5,1,0,38,11,0,0,80,96,11,0,0,0,0,0,236,5,1,0,38,11,0,0,84,96,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,6,1,0,100,0,0,0,0,0,0,0,0,0,0,0,25,6,1,0,102,0,1,0,86,96,143,77,0,0, 0,0,1,0,0,0,46,1,0,0,76,85,3,0,0,0,0,0,88,6,1,0,36,1,0,0,76,85,3,0,0,0,0,0,1,0,0,0,36,0,0,0,90,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,166,86,3,0,0,0,0,0,99,6,1,0,36,1,0,0,166,86,3,0,0,0,0,0,1,0,0,0,36,0,0,0,75,0,0,0,0,0,0,0, 1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,241,86,3,0,0,0,0,0,119,6,1,0,36,1,0,0,241,86,3,0,0,0,0,0,1,0,0,0,36,0,0,0,93,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,93,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,78,90,3,0,0,0,0,0,133,6,1,0,36,1,0,0,78,90,3,0,0,0,0,0,1, 0,0,0,36,0,0,0,145,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,145,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,223,90,3,0,0,0,0,0,146,6,1,0,36,1,0,0,223,90,3,0,0,0,0,0,1,0,0,0,36,0,0,0,100,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,67,91,3,0,0,0,0,0,160, 6,1,0,36,1,0,0,67,91,3,0,0,0,0,0,1,0,0,0,36,0,0,0,204,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,204,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,15,92,3,0,0,0,0,0,172,6,1,0,36,1,0,0,15,92,3,0,0,0,0,0,1,0,0,0,36,0,0,0,77,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,92,92,3,0,0,0,0,0,189,6,1,0,36,1,0,0,92,92,3,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,92,3,0,0,0,0,0,207,6,1,0,36,1,0,0,170,92,3,0,0,0,0,0,1,0,0,0,36,0,0,0,77,1,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,77,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,247,93,3,0,0,0,0,0,220,6,1,0,36,1,0,0,247,93,3,0,0,0,0,0,1,0,0,0,36,0,0,0,194,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,194,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,185,94,3,0,0,0,0,0,234,6,1,0,36,1,0,0,185,94,3,0,0,0,0,0,1,0,0,0,36, 0,0,0,153,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,153,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,95,3,0,0,0,0,0,246,6,1,0,36,1,0,0,82,95,3,0,0,0,0,0,1,0,0,0,36,0,0,0,99,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,95,3,0,0,0,0,0,5,7,1,0,36,1,0, 0,181,95,3,0,0,0,0,0,1,0,0,0,36,0,0,0,37,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,218,95,3,0,0,0,0,0,17,7,1,0,36,1,0,0,218,95,3,0,0,0,0,0,1,0,0,0,36,0,0,0,188,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,188,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,150, 96,3,0,0,0,0,0,34,7,1,0,36,1,0,0,150,96,3,0,0,0,0,0,1,0,0,0,36,0,0,0,214,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,214,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,108,97,3,0,0,0,0,0,50,7,1,0,36,1,0,0,108,97,3,0,0,0,0,0,1,0,0,0,36,0,0,0,218,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,218, 1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,70,99,3,0,0,0,0,0,71,7,1,0,36,1,0,0,70,99,3,0,0,0,0,0,1,0,0,0,36,0,0,0,179,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,249,99,3,0,0,0,0,0,89,7,1,0,36,1,0,0,249,99,3,0,0,0,0,0,1,0,0,0,36,0,0,0,214,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,214,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,207,100,3,0,0,0,0,0,106,7,1,0,36,1,0,0,207,100,3,0,0,0,0,0,1,0,0,0,36,0,0,0,218,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,218,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,169,102,3,0,0,0,0,0,128,7,1,0,36,1,0,0,169, 102,3,0,0,0,0,0,1,0,0,0,36,0,0,0,180,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,180,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,93,103,3,0,0,0,0,0,142,7,1,0,36,1,0,0,93,103,3,0,0,0,0,0,1,0,0,0,36,0,0,0,83,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,83,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,176,103, 3,0,0,0,0,0,156,7,1,0,36,1,0,0,176,103,3,0,0,0,0,0,1,0,0,0,36,0,0,0,83,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,83,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,3,104,3,0,0,0,0,0,170,7,1,0,36,1,0,0,3,104,3,0,0,0,0,0,1,0,0,0,36,0,0,0,241,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,241,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,244,104,3,0,0,0,0,0,184,7,1,0,36,1,0,0,244,104,3,0,0,0,0,0,1,0,0,0,36,0,0,0,241,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,241,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,229,105,3,0,0,0,0,0,198,7,1,0,36,1,0,0,229,105,3,0,0,0,0,0,1,0,0,0,36,0,0,0,150, 1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,107,3,0,0,0,0,0,215,7,1,0,36,1,0,0,123,107,3,0,0,0,0,0,1,0,0,0,36,0,0,0,150,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,109,3,0,0,0,0,0,232,7,1,0,36,1,0,0, 17,109,3,0,0,0,0,0,1,0,0,0,36,0,0,0,152,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,152,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,169,110,3,0,0,0,0,0,249,7,1,0,36,1,0,0,169,110,3,0,0,0,0,0,1,0,0,0,36,0,0,0,152,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,152,1,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,65,112,3,0,0,0,0,0,10,8,1,0,36,1,0,0,65,112,3,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,135,112,3,0,0,0,0,0,26,8,1,0,36,1,0,0,135,112,3,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,205,112,3,0,0,0,0,0,42,8,1,0,36,1,0,0,205,112,3,0,0,0,0,0,1,0,0,0,36,0,0,0,6,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,211,113,3,0,0,0,0,0,53,8,1,0,36,1,0,0,211,113,3,0,0,0,0,0,1,0,0,0,36,0,0, 0,6,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,114,3,0,0,0,0,0,64,8,1,0,36,1,0,0,217,114,3,0,0,0,0,0,1,0,0,0,36,0,0,0,174,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,174,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,135,116,3,0,0,0,0,0,78,8,1,0,36,1,0,0, 135,116,3,0,0,0,0,0,1,0,0,0,36,0,0,0,205,15,0,0,0,0,0,0,1,0,0,0,78,1,0,0,205,15,0,0,0,0,0,0,1,0,0,0,46,1,0,0,84,132,3,0,0,0,0,0,89,8,1,0,36,1,0,0,84,132,3,0,0,0,0,0,1,0,0,0,36,0,0,0,136,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,136,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,220,132,3,0,0,0,0,0,106,8,1,0,36,1,0,0,220,132,3,0,0,0,0,0,1,0,0,0,36,0,0,0,58,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,58,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,135,3,0,0,0,0,0,121,8,1,0,36,1,0,0,22,135,3,0,0,0,0,0,1,0,0,0,36,0,0,0,153,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,153,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,175,135,3,0,0,0,0,0,137,8,1,0,36,1,0,0,175,135,3,0,0,0,0,0,1,0,0,0,36,0,0,0,252,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,252,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,171,136,3,0,0,0,0,0,151,8,1,0,36,1,0,0,171,136,3,0,0,0,0,0,1,0,0, 0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,237,136,3,0,0,0,0,0,167,8,1,0,36,1,0,0,237,136,3,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,137,3,0,0,0,0,0,181,8,1, 0,36,1,0,0,62,137,3,0,0,0,0,0,1,0,0,0,36,0,0,0,87,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,149,139,3,0,0,0,0,0,195,8,1,0,36,1,0,0,149,139,3,0,0,0,0,0,1,0,0,0,36,0,0,0,151,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,151,1,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,44,141,3,0,0,0,0,0,208,8,1,0,36,1,0,0,44,141,3,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,147,141,3,0,0,0,0,0,225,8,1,0,36,1,0,0,147,141,3,0,0,0,0,0,1,0,0,0,36,0,0,0,6,2,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,6,2,0,0,0,0,0,0,240,8,1,0,32,10,0,0,0,0,0,0,0,0,0,0,6,9,1,0,38,11,0,0,88,96,11,0,0,0,0,0,22,9,1,0,38,11,0,0,92,96,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,38,9,1,0,100,0,0,0,0,0,0,0,0,0,0,0,67, 9,1,0,102,0,1,0,87,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,153,143,3,0,0,0,0,0,135,9,1,0,36,1,0,0,153,143,3,0,0,0,0,0,1,0,0,0,36,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,228,143,3,0,0,0,0,0,151,9,1,0,36,1,0,0,228,143,3,0,0, 0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,42,144,3,0,0,0,0,0,168,9,1,0,36,1,0,0,42,144,3,0,0,0,0,0,1,0,0,0,36,0,0,0,23,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,65,144,3,0,0,0,0, 0,185,9,1,0,36,1,0,0,65,144,3,0,0,0,0,0,1,0,0,0,36,0,0,0,117,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,182,144,3,0,0,0,0,0,206,9,1,0,36,1,0,0,182,144,3,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,244,144,3,0,0,0,0,0,227,9,1,0,36,1,0,0,244,144,3,0,0,0,0,0,1,0,0,0,36,0,0,0,67,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,55,145,3,0,0,0,0,0,247,9,1,0,36,1,0,0,55,145,3,0,0,0,0,0,1,0,0,0,36,0,0,0,143,0,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,143,0,0,0,0,0,0,0,11,10,1,0,38,11,0,0,96,96,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,29,10,1,0,100,0,0,0,0,0,0,0,0,0,0,0,53,10,1,0,102,0,1,0,87,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,198, 145,3,0,0,0,0,0,116,10,1,0,36,1,0,0,198,145,3,0,0,0,0,0,1,0,0,0,36,0,0,0,194,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,194,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,136,146,3,0,0,0,0,0,136,10,1,0,36,1,0,0,136,146,3,0,0,0,0,0,1,0,0,0,36,0,0,0,56,3,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,56,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,192,149,3,0,0,0,0,0,153,10,1,0,36,1,0,0,192,149,3,0,0,0,0,0,1,0,0,0,36,0,0,0,66,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,2,152,3,0,0,0,0,0,171,10,1,0,36,1,0,0,2,152,3,0,0,0,0,0,1,0,0,0,36, 0,0,0,241,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,241,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,243,152,3,0,0,0,0,0,190,10,1,0,36,1,0,0,243,152,3,0,0,0,0,0,1,0,0,0,36,0,0,0,156,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,143,154,3,0,0,0,0,0,210,10, 1,0,36,1,0,0,143,154,3,0,0,0,0,0,1,0,0,0,36,0,0,0,125,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,12,156,3,0,0,0,0,0,226,10,1,0,36,1,0,0,12,156,3,0,0,0,0,0,1,0,0,0,36,0,0,0,237,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,237,0,0,0,0,0,0,0,1, 0,0,0,46,1,0,0,249,156,3,0,0,0,0,0,246,10,1,0,36,1,0,0,249,156,3,0,0,0,0,0,1,0,0,0,36,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,175,157,3,0,0,0,0,0,3,11,1,0,36,1,0,0,175,157,3,0,0,0,0,0,1,0,0,0,36,0,0,0,140,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,140,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,59,158,3,0,0,0,0,0,19,11,1,0,36,1,0,0,59,158,3,0,0,0,0,0,1,0,0,0,36,0,0,0,67,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,126,160,3,0,0,0,0,0,32,11,1,0,36,1,0,0,126,160,3,0,0, 0,0,0,1,0,0,0,36,0,0,0,20,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,20,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,146,162,3,0,0,0,0,0,51,11,1,0,36,1,0,0,146,162,3,0,0,0,0,0,1,0,0,0,36,0,0,0,163,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,163,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,53,164,3,0,0, 0,0,0,66,11,1,0,36,1,0,0,53,164,3,0,0,0,0,0,1,0,0,0,36,0,0,0,239,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,239,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,36,165,3,0,0,0,0,0,78,11,1,0,36,1,0,0,36,165,3,0,0,0,0,0,1,0,0,0,36,0,0,0,98,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,98,2,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,134,167,3,0,0,0,0,0,91,11,1,0,36,1,0,0,134,167,3,0,0,0,0,0,1,0,0,0,36,0,0,0,40,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,174,170,3,0,0,0,0,0,104,11,1,0,36,1,0,0,174,170,3,0,0,0,0,0,1,0,0,0,36,0,0,0,102,3, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20,174,3,0,0,0,0,0,118,11,1,0,36,1,0,0,20,174,3,0,0,0,0,0,1,0,0,0,36,0,0,0,112,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,132,174,3,0,0,0,0,0,132,11,1,0,36,1,0,0,132, 174,3,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,219,174,3,0,0,0,0,0,149,11,1,0,36,1,0,0,219,174,3,0,0,0,0,0,1,0,0,0,36,0,0,0,54,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,175, 3,0,0,0,0,0,166,11,1,0,36,1,0,0,17,175,3,0,0,0,0,0,1,0,0,0,36,0,0,0,213,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,230,175,3,0,0,0,0,0,181,11,1,0,36,1,0,0,230,175,3,0,0,0,0,0,1,0,0,0,36,0,0,0,85,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,59,176,3,0,0,0,0,0,194,11,1,0,36,1,0,0,59,176,3,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,111,176,3,0,0,0,0,0,208,11,1,0,36,1,0,0,111,176,3,0,0,0,0,0,1,0,0,0,36,0,0,0, 52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,163,176,3,0,0,0,0,0,220,11,1,0,36,1,0,0,163,176,3,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,215,176,3,0,0,0,0,0,234,11,1,0,36,1,0, 0,215,176,3,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,250,176,3,0,0,0,0,0,247,11,1,0,36,1,0,0,250,176,3,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,29,177,3,0,0,0,0,0,7,12,1,0,36,1,0,0,29,177,3,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,177,3,0,0,0,0,0,21,12,1,0,36,1,0,0,64,177,3,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,116,177,3,0,0,0,0,0,39,12,1,0,36,1,0,0,116,177,3,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,168,177,3,0,0,0,0,0,58,12,1,0,36,1,0,0,168,177,3,0,0,0,0,0,1,0,0,0,36,0, 0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,225,177,3,0,0,0,0,0,71,12,1,0,36,1,0,0,225,177,3,0,0,0,0,0,1,0,0,0,36,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,249,177,3,0,0,0,0,0,93,12,1,0,36,1, 0,0,249,177,3,0,0,0,0,0,1,0,0,0,36,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,178,3,0,0,0,0,0,115,12,1,0,36,1,0,0,17,178,3,0,0,0,0,0,1,0,0,0,36,0,0,0,18,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,8,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,35,186,3,0,0,0,0,0,129,12,1,0,36,1,0,0,35,186,3,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,73,186,3,0,0,0,0,0,150,12,1,0,36,1,0,0,73,186,3,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,186,3,0,0,0,0,0,162,12,1,0,36,1,0,0,115,186,3,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,157,186,3,0,0,0,0,0,173,12,1,0,36,1,0,0,157,186,3,0,0,0,0,0,1,0,0,0, 36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,218,186,3,0,0,0,0,0,184,12,1,0,36,1,0,0,218,186,3,0,0,0,0,0,1,0,0,0,36,0,0,0,44,9,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,9,0,0,0,0,0,0,200,12,1,0,38,11,0,0,104,96,11,0,0,0,0,0,214, 12,1,0,38,11,0,0,112,96,11,0,0,0,0,0,232,12,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,255,12,1,0,100,0,0,0,0,0,0,0,0,0,0,0,25,13,1,0,102,0,1,0,87,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,6,196,3,0, 0,0,0,0,90,13,1,0,36,1,0,0,6,196,3,0,0,0,0,0,1,0,0,0,36,0,0,0,73,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,73,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,79,197,3,0,0,0,0,0,111,13,1,0,36,1,0,0,79,197,3,0,0,0,0,0,1,0,0,0,36,0,0,0,137,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,137,2,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,216,199,3,0,0,0,0,0,129,13,1,0,36,1,0,0,216,199,3,0,0,0,0,0,1,0,0,0,36,0,0,0,235,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,235,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,201,3,0,0,0,0,0,148,13,1,0,36,1,0,0,195,201,3,0,0,0,0,0,1,0,0,0,36,0,0,0,202, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,141,202,3,0,0,0,0,0,168,13,1,0,36,1,0,0,141,202,3,0,0,0,0,0,1,0,0,0,36,0,0,0,23,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,164,203,3,0,0,0,0,0,189,13,1,0,36,1,0,0, 164,203,3,0,0,0,0,0,1,0,0,0,36,0,0,0,131,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,39,205,3,0,0,0,0,0,206,13,1,0,36,1,0,0,39,205,3,0,0,0,0,0,1,0,0,0,36,0,0,0,176,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,215,205,3,0,0,0,0,0,227,13,1,0,36,1,0,0,215,205,3,0,0,0,0,0,1,0,0,0,36,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,141,206,3,0,0,0,0,0,241,13,1,0,36,1,0,0,141,206,3,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,16,207,3,0,0,0,0,0,2,14,1,0,36,1,0,0,16,207,3,0,0,0,0,0,1,0,0,0,36,0,0,0,125,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,141,209,3,0,0,0,0,0,16,14,1,0,36,1,0,0,141,209,3,0,0,0,0,0,1, 0,0,0,36,0,0,0,40,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,210,3,0,0,0,0,0,37,14,1,0,36,1,0,0,181,210,3,0,0,0,0,0,1,0,0,0,36,0,0,0,190,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,190,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,212,3,0,0,0,0,0,59, 14,1,0,36,1,0,0,115,212,3,0,0,0,0,0,1,0,0,0,36,0,0,0,55,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,55,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,214,3,0,0,0,0,0,79,14,1,0,36,1,0,0,170,214,3,0,0,0,0,0,1,0,0,0,36,0,0,0,190,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,190,1,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,104,216,3,0,0,0,0,0,92,14,1,0,36,1,0,0,104,216,3,0,0,0,0,0,1,0,0,0,36,0,0,0,39,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,143,217,3,0,0,0,0,0,106,14,1,0,36,1,0,0,143,217,3,0,0,0,0,0,1,0,0,0,36,0,0,0,145,1,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,145,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,32,219,3,0,0,0,0,0,122,14,1,0,36,1,0,0,32,219,3,0,0,0,0,0,1,0,0,0,36,0,0,0,213,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,213,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245,220,3,0,0,0,0,0,138,14,1,0,36,1,0,0,245,220, 3,0,0,0,0,0,1,0,0,0,36,0,0,0,53,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,53,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,42,222,3,0,0,0,0,0,153,14,1,0,36,1,0,0,42,222,3,0,0,0,0,0,1,0,0,0,36,0,0,0,143,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,143,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,185,222, 3,0,0,0,0,0,171,14,1,0,36,1,0,0,185,222,3,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,34,223,3,0,0,0,0,0,185,14,1,0,36,1,0,0,34,223,3,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,86,223,3,0,0,0,0,0,200,14,1,0,36,1,0,0,86,223,3,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,138,223,3,0,0,0,0,0,213,14,1,0,36,1,0,0,138,223,3,0,0,0,0,0,1,0,0,0,36,0,0,0, 86,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,224,223,3,0,0,0,0,0,228,14,1,0,36,1,0,0,224,223,3,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20,224,3,0,0,0,0,0,243,14,1,0,36,1,0, 0,20,224,3,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,55,224,3,0,0,0,0,0,1,15,1,0,36,1,0,0,55,224,3,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,90, 224,3,0,0,0,0,0,18,15,1,0,36,1,0,0,90,224,3,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,125,224,3,0,0,0,0,0,33,15,1,0,36,1,0,0,125,224,3,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,177,224,3,0,0,0,0,0,52,15,1,0,36,1,0,0,177,224,3,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,229,224,3,0,0,0,0,0,72,15,1,0,36,1,0,0,229,224,3,0,0,0,0,0,1,0,0,0,36,0,0,0, 61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,34,225,3,0,0,0,0,0,85,15,1,0,36,1,0,0,34,225,3,0,0,0,0,0,1,0,0,0,36,0,0,0,89,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,89,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,225,3,0,0,0,0,0,98,15,1,0,36,1,0,0,123, 225,3,0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,180,225,3,0,0,0,0,0,112,15,1,0,36,1,0,0,180,225,3,0,0,0,0,0,1,0,0,0,36,0,0,0,43,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,223, 225,3,0,0,0,0,0,128,15,1,0,36,1,0,0,223,225,3,0,0,0,0,0,1,0,0,0,36,0,0,0,76,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,76,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,43,227,3,0,0,0,0,0,143,15,1,0,36,1,0,0,43,227,3,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,124,227,3,0,0,0,0,0,161,15,1,0,36,1,0,0,124,227,3,0,0,0,0,0,1,0,0,0,36,0,0,0,167,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,167,8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,35,236,3,0,0,0,0,0,174,15,1,0,36,1,0,0,35,236,3,0,0,0,0,0,1,0,0,0,36, 0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,73,236,3,0,0,0,0,0,195,15,1,0,36,1,0,0,73,236,3,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,134,236,3,0,0,0,0,0,209,15,1,0,36, 1,0,0,134,236,3,0,0,0,0,0,1,0,0,0,36,0,0,0,69,5,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,5,0,0,0,0,0,0,226,15,1,0,38,11,0,0,120,96,11,0,0,0,0,0,241,15,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,9,16,1, 0,100,0,0,0,0,0,0,0,0,0,0,0,30,16,1,0,102,0,1,0,88,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,203,241,3,0,0,0,0,0,90,16,1,0,36,1,0,0,203,241,3,0,0,0,0,0,1,0,0,0,36,0,0,0,123,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,123,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,70,242,3,0,0,0,0,0, 102,16,1,0,36,1,0,0,70,242,3,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,242,3,0,0,0,0,0,115,16,1,0,36,1,0,0,97,242,3,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,132,242,3,0,0,0,0,0,131,16,1,0,36,1,0,0,132,242,3,0,0,0,0,0,1,0,0,0,36,0,0,0,37,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,169,242,3,0,0,0,0,0,145,16,1,0,36,1,0,0,169,242,3,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,204,242,3,0,0,0,0,0,160,16,1,0,36,1,0,0,204,242,3,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,253,242,3,0,0,0,0,0,173,16,1,0,36,1,0,0,253,242, 3,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,46,243,3,0,0,0,0,0,190,16,1,0,36,1,0,0,46,243,3,0,0,0,0,0,1,0,0,0,36,0,0,0,48,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,243,3,0, 0,0,0,0,203,16,1,0,36,1,0,0,94,243,3,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,155,243,3,0,0,0,0,0,217,16,1,0,36,1,0,0,155,243,3,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,182,243,3,0,0,0,0,0,234,16,1,0,36,1,0,0,182,243,3,0,0,0,0,0,1,0,0,0,36,0,0,0,145,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,145,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,71,244,3,0,0,0,0,0,250,16,1,0,36,1,0,0,71,244,3,0,0,0,0,0,1,0,0,0,36,0,0,0,137, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,137,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,208,244,3,0,0,0,0,0,6,17,1,0,36,1,0,0,208,244,3,0,0,0,0,0,1,0,0,0,36,0,0,0,251,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,251,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,203,245,3,0,0,0,0,0,23,17,1,0,36,1,0,0, 203,245,3,0,0,0,0,0,1,0,0,0,36,0,0,0,40,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,243,248,3,0,0,0,0,0,41,17,1,0,36,1,0,0,243,248,3,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31, 249,3,0,0,0,0,0,62,17,1,0,36,1,0,0,31,249,3,0,0,0,0,0,1,0,0,0,36,0,0,0,250,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,250,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,250,3,0,0,0,0,0,77,17,1,0,36,1,0,0,25,250,3,0,0,0,0,0,1,0,0,0,36,0,0,0,97,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97, 1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,122,251,3,0,0,0,0,0,91,17,1,0,36,1,0,0,122,251,3,0,0,0,0,0,1,0,0,0,36,0,0,0,132,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,132,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,254,251,3,0,0,0,0,0,104,17,1,0,36,1,0,0,254,251,3,0,0,0,0,0,1,0,0,0,36,0, 0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,252,3,0,0,0,0,0,118,17,1,0,36,1,0,0,25,252,3,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,252,3,0,0,0,0,0,135,17,1,0,36,1, 0,0,60,252,3,0,0,0,0,0,1,0,0,0,36,0,0,0,37,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,252,3,0,0,0,0,0,150,17,1,0,36,1,0,0,97,252,3,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 132,252,3,0,0,0,0,0,166,17,1,0,36,1,0,0,132,252,3,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,252,3,0,0,0,0,0,180,17,1,0,36,1,0,0,181,252,3,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,230,252,3,0,0,0,0,0,198,17,1,0,36,1,0,0,230,252,3,0,0,0,0,0,1,0,0,0,36,0,0,0,48,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,253,3,0,0,0,0,0,212,17,1,0,36,1,0,0,22,253,3,0,0,0,0,0,1,0,0,0, 36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,83,253,3,0,0,0,0,0,227,17,1,0,36,1,0,0,83,253,3,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,253,3,0,0,0,0,0,245,17,1,0, 36,1,0,0,110,253,3,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,208,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,254,3,0,0,0,0,0,6,18,1,0,36,1,0,0,62,254,3,0,0,0,0,0,1,0,0,0,36,0,0,0,198,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,4,255,3,0,0,0,0,0,24,18,1,0,36,1,0,0,4,255,3,0,0,0,0,0,1,0,0,0,36,0,0,0,156,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,255,3,0,0,0,0,0,53,18,1,0,36,1,0,0,160,255,3,0,0,0,0,0,1,0,0,0,36,0,0,0,200,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,200,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,104,0,4,0,0,0,0,0,72,18,1,0,36,1,0,0,104,0,4,0,0,0,0,0,1,0,0,0,36,0,0,0,169,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,169,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,1,4,0,0,0,0,0,85,18,1,0,36,1,0,0,17,1,4,0,0,0,0,0,1,0,0,0,36, 0,0,0,84,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,84,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,101,4,4,0,0,0,0,0,104,18,1,0,36,1,0,0,101,4,4,0,0,0,0,0,1,0,0,0,36,0,0,0,36,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,137,5,4,0,0,0,0,0,120,18,1,0,36,1,0, 0,137,5,4,0,0,0,0,0,1,0,0,0,36,0,0,0,97,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,234,6,4,0,0,0,0,0,135,18,1,0,36,1,0,0,234,6,4,0,0,0,0,0,1,0,0,0,36,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,147,18,1,0,38,11,0,0, 128,96,11,0,0,0,0,0,152,18,1,0,32,12,0,0,0,0,0,0,0,0,0,0,166,18,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,181,18,1,0,100,0,0,0,0,0,0,0,0,0,0,0,208,18,1,0,102,0,1,0,88,96,143,77,0,0,0,0,1,0,0, 0,46,1,0,0,250,6,4,0,0,0,0,0,18,19,1,0,36,1,0,0,250,6,4,0,0,0,0,0,1,0,0,0,36,0,0,0,191,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,191,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,185,8,4,0,0,0,0,0,38,19,1,0,36,1,0,0,185,8,4,0,0,0,0,0,1,0,0,0,36,0,0,0,5,1,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,5,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,190,9,4,0,0,0,0,0,59,19,1,0,36,1,0,0,190,9,4,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,10,4,0,0,0,0,0,81,19,1,0,36,1,0,0,40,10,4,0,0,0,0,0,1,0,0,0,36,0,0, 0,42,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,11,4,0,0,0,0,0,104,19,1,0,36,1,0,0,82,11,4,0,0,0,0,0,1,0,0,0,36,0,0,0,116,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,116,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,198,11,4,0,0,0,0,0,127,19,1,0,36,1,0, 0,198,11,4,0,0,0,0,0,1,0,0,0,36,0,0,0,124,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,124,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,12,4,0,0,0,0,0,143,19,1,0,36,1,0,0,66,12,4,0,0,0,0,0,1,0,0,0,36,0,0,0,126,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 192,12,4,0,0,0,0,0,162,19,1,0,36,1,0,0,192,12,4,0,0,0,0,0,1,0,0,0,36,0,0,0,242,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,242,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,178,14,4,0,0,0,0,0,178,19,1,0,36,1,0,0,178,14,4,0,0,0,0,0,1,0,0,0,36,0,0,0,200,1,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,200,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,122,16,4,0,0,0,0,0,200,19,1,0,36,1,0,0,122,16,4,0,0,0,0,0,1,0,0,0,36,0,0,0,165,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,17,4,0,0,0,0,0,219,19,1,0,36,1,0,0,31,17,4,0,0,0,0,0,1,0,0,0,36, 0,0,0,15,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,15,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,46,18,4,0,0,0,0,0,237,19,1,0,36,1,0,0,46,18,4,0,0,0,0,0,1,0,0,0,36,0,0,0,91,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,137,18,4,0,0,0,0,0,253,19,1,0,36,1, 0,0,137,18,4,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,189,18,4,0,0,0,0,0,14,20,1,0,36,1,0,0,189,18,4,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 241,18,4,0,0,0,0,0,29,20,1,0,36,1,0,0,241,18,4,0,0,0,0,0,1,0,0,0,36,0,0,0,167,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,167,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,152,19,4,0,0,0,0,0,49,20,1,0,36,1,0,0,152,19,4,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,204,19,4,0,0,0,0,0,66,20,1,0,36,1,0,0,204,19,4,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,239,19,4,0,0,0,0,0,82,20,1,0,36,1,0,0,239,19,4,0,0,0,0,0,1,0,0,0,36,0,0, 0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,18,20,4,0,0,0,0,0,101,20,1,0,36,1,0,0,18,20,4,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,53,20,4,0,0,0,0,0,118,20,1,0,36,1,0,0,53, 20,4,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,105,20,4,0,0,0,0,0,139,20,1,0,36,1,0,0,105,20,4,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,157,20, 4,0,0,0,0,0,161,20,1,0,36,1,0,0,157,20,4,0,0,0,0,0,1,0,0,0,36,0,0,0,24,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,28,4,0,0,0,0,0,176,20,1,0,36,1,0,0,181,28,4,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,219,28,4,0,0,0,0,0,197,20,1,0,36,1,0,0,219,28,4,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,24,29,4,0,0,0,0,0,211,20,1,0,36,1,0,0,24,29,4,0,0,0,0,0,1,0,0,0,36,0,0,0,167,3, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,167,3,0,0,0,0,0,0,229,20,1,0,38,11,0,0,136,96,11,0,0,0,0,0,246,20,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,16,21,1,0,100,0,0,0,0,0,0,0,0,0,0,0,41,21,1,0,102,0,1, 0,88,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,191,32,4,0,0,0,0,0,105,21,1,0,36,1,0,0,191,32,4,0,0,0,0,0,1,0,0,0,36,0,0,0,89,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,89,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,24,33,4,0,0,0,0,0,127,21,1,0,36,1,0,0,24,33,4,0,0,0,0,0,1,0,0,0,36, 0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,33,4,0,0,0,0,0,148,21,1,0,36,1,0,0,62,33,4,0,0,0,0,0,1,0,0,0,36,0,0,0,118,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,118,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,180,33,4,0,0,0,0,0,164,21,1,0,36, 1,0,0,180,33,4,0,0,0,0,0,1,0,0,0,36,0,0,0,162,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,162,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,86,34,4,0,0,0,0,0,190,21,1,0,36,1,0,0,86,34,4,0,0,0,0,0,1,0,0,0,36,0,0,0,83,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,83,2,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,169,36,4,0,0,0,0,0,206,21,1,0,36,1,0,0,169,36,4,0,0,0,0,0,1,0,0,0,36,0,0,0,199,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,199,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,112,38,4,0,0,0,0,0,229,21,1,0,36,1,0,0,112,38,4,0,0,0,0,0,1,0,0,0,36,0,0,0,163,3,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,163,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,19,42,4,0,0,0,0,0,249,21,1,0,36,1,0,0,19,42,4,0,0,0,0,0,1,0,0,0,36,0,0,0,149,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,149,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,168,44,4,0,0,0,0,0,14,22,1,0,36,1,0,0,168,44,4,0,0,0,0,0,1,0,0,0,36, 0,0,0,227,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,227,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,139,45,4,0,0,0,0,0,36,22,1,0,36,1,0,0,139,45,4,0,0,0,0,0,1,0,0,0,36,0,0,0,164,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,164,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,47,47,4,0,0,0,0,0,59,22,1,0,36, 1,0,0,47,47,4,0,0,0,0,0,1,0,0,0,36,0,0,0,125,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,48,4,0,0,0,0,0,78,22,1,0,36,1,0,0,172,48,4,0,0,0,0,0,1,0,0,0,36,0,0,0,146,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,146,1,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,62,50,4,0,0,0,0,0,101,22,1,0,36,1,0,0,62,50,4,0,0,0,0,0,1,0,0,0,36,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,50,4,0,0,0,0,0,117,22,1,0,36,1,0,0,244,50,4,0,0,0,0,0,1,0,0,0,36,0,0,0,129,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,129,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,117,51,4,0,0,0,0,0,136,22,1,0,36,1,0,0,117,51,4,0,0,0,0,0,1,0,0,0,36,0,0,0,210,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,210,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,71,54,4,0,0,0,0,0,152,22,1,0,36,1,0,0,71,54,4,0,0,0,0,0,1,0,0,0, 36,0,0,0,210,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,210,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,56,4,0,0,0,0,0,176,22,1,0,36,1,0,0,25,56,4,0,0,0,0,0,1,0,0,0,36,0,0,0,155,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,155,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,180,58,4,0,0,0,0,0,198,22,1, 0,36,1,0,0,180,58,4,0,0,0,0,0,1,0,0,0,36,0,0,0,117,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,41,59,4,0,0,0,0,0,214,22,1,0,36,1,0,0,41,59,4,0,0,0,0,0,1,0,0,0,36,0,0,0,188,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,188,1,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,229,60,4,0,0,0,0,0,232,22,1,0,36,1,0,0,229,60,4,0,0,0,0,0,1,0,0,0,36,0,0,0,11,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,11,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,61,4,0,0,0,0,0,250,22,1,0,36,1,0,0,240,61,4,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,103,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,87,62,4,0,0,0,0,0,11,23,1,0,36,1,0,0,87,62,4,0,0,0,0,0,1,0,0,0,36,0,0,0,61,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,148,63,4,0,0,0,0,0,31,23,1,0,36,1,0,0,148,63,4,0,0,0,0,0,1,0,0,0, 36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,63,4,0,0,0,0,0,46,23,1,0,36,1,0,0,217,63,4,0,0,0,0,0,1,0,0,0,36,0,0,0,191,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,152,64,4,0,0,0,0,0,68,23,1,0, 36,1,0,0,152,64,4,0,0,0,0,0,1,0,0,0,36,0,0,0,60,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,212,64,4,0,0,0,0,0,85,23,1,0,36,1,0,0,212,64,4,0,0,0,0,0,1,0,0,0,36,0,0,0,139,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,95,65,4,0,0,0,0,0,101,23,1,0,36,1,0,0,95,65,4,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,147,65,4,0,0,0,0,0,118,23,1,0,36,1,0,0,147,65,4,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,65,4,0,0,0,0,0,133,23,1,0,36,1,0,0,199,65,4,0,0,0,0,0,1,0,0,0,36,0,0,0,114,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,114,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,57,66,4,0,0,0,0,0,150,23,1,0,36,1,0,0,57,66,4,0,0,0,0,0,1,0,0,0,36, 0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,109,66,4,0,0,0,0,0,167,23,1,0,36,1,0,0,109,66,4,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,144,66,4,0,0,0,0,0,183,23,1,0,36, 1,0,0,144,66,4,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,179,66,4,0,0,0,0,0,202,23,1,0,36,1,0,0,179,66,4,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,214,66,4,0,0,0,0,0,219,23,1,0,36,1,0,0,214,66,4,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,10,67,4,0,0,0,0,0,240,23,1,0,36,1,0,0,10,67,4,0,0,0,0,0,1,0,0,0,36,0,0,0,179,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,179,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,189,67,4,0,0,0,0,0,6,24,1,0,36,1,0,0,189,67,4,0,0,0,0,0,1,0,0,0,36,0,0,0,89,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,89,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,68,4,0,0,0,0,0,21,24,1,0,36,1,0,0,22,68,4,0,0,0,0,0,1,0,0,0,36,0,0,0, 24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,46,68,4,0,0,0,0,0,36,24,1,0,36,1,0,0,46,68,4,0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,103,68,4,0,0,0,0,0,52,24,1,0,36,1,0,0,103, 68,4,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,68,4,0,0,0,0,0,72,24,1,0,36,1,0,0,181,68,4,0,0,0,0,0,1,0,0,0,36,0,0,0,13,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,13,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,194,70,4, 0,0,0,0,0,87,24,1,0,36,1,0,0,194,70,4,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,232,70,4,0,0,0,0,0,108,24,1,0,36,1,0,0,232,70,4,0,0,0,0,0,1,0,0,0,36,0,0,0,71,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,71,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,47,71,4,0,0,0,0,0,124,24,1,0,36,1,0,0,47,71,4,0,0,0,0,0,1,0,0,0,36,0,0,0,234,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,234,8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,80,4,0,0,0,0,0,139,24,1,0,36,1,0,0,25,80,4,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,80,4,0,0,0,0,0,160,24,1,0,36,1,0,0,63,80,4,0,0,0,0,0,1,0,0,0,36,0,0,0,93,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,156,80,4,0,0,0,0,0,176,24,1,0,36,1,0,0,156,80,4,0, 0,0,0,0,1,0,0,0,36,0,0,0,88,5,0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,5,0,0,0,0,0,0,192,24,1,0,38,11,0,0,144,96,11,0,0,0,0,0,209,24,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,235,24,1,0,100,0,0,0,0,0, 0,0,0,0,0,0,7,25,1,0,102,0,1,0,89,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,244,85,4,0,0,0,0,0,74,25,1,0,36,1,0,0,244,85,4,0,0,0,0,0,1,0,0,0,36,0,0,0,141,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,129,86,4,0,0,0,0,0,93,25,1,0,36,1,0,0, 129,86,4,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,216,86,4,0,0,0,0,0,111,25,1,0,36,1,0,0,216,86,4,0,0,0,0,0,1,0,0,0,36,0,0,0,30,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,246, 88,4,0,0,0,0,0,128,25,1,0,36,1,0,0,246,88,4,0,0,0,0,0,1,0,0,0,36,0,0,0,24,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,14,91,4,0,0,0,0,0,146,25,1,0,36,1,0,0,14,91,4,0,0,0,0,0,1,0,0,0,36,0,0,0,122,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,122, 3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,136,94,4,0,0,0,0,0,168,25,1,0,36,1,0,0,136,94,4,0,0,0,0,0,1,0,0,0,36,0,0,0,36,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,95,4,0,0,0,0,0,182,25,1,0,36,1,0,0,172,95,4,0,0,0,0,0,1,0,0,0,36,0,0,0,44, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,216,95,4,0,0,0,0,0,194,25,1,0,36,1,0,0,216,95,4,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,4,96,4,0,0,0,0,0,211,25,1,0,36,1,0,0,4,96, 4,0,0,0,0,0,1,0,0,0,36,0,0,0,1,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,1,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,5,98,4,0,0,0,0,0,234,25,1,0,36,1,0,0,5,98,4,0,0,0,0,0,1,0,0,0,36,0,0,0,170,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,170,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,175,98,4,0,0,0, 0,0,0,26,1,0,36,1,0,0,175,98,4,0,0,0,0,0,1,0,0,0,36,0,0,0,65,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,65,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,101,4,0,0,0,0,0,20,26,1,0,36,1,0,0,240,101,4,0,0,0,0,0,1,0,0,0,36,0,0,0,91,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,0,0,0, 0,1,0,0,0,46,1,0,0,75,102,4,0,0,0,0,0,37,26,1,0,36,1,0,0,75,102,4,0,0,0,0,0,1,0,0,0,36,0,0,0,47,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,47,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,122,103,4,0,0,0,0,0,67,26,1,0,36,1,0,0,122,103,4,0,0,0,0,0,1,0,0,0,36,0,0,0,94,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,94,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,216,103,4,0,0,0,0,0,95,26,1,0,36,1,0,0,216,103,4,0,0,0,0,0,1,0,0,0,36,0,0,0,99,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,99,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,59,107,4,0,0,0,0,0,116,26,1,0,36,1,0,0,59,107,4,0,0, 0,0,0,1,0,0,0,36,0,0,0,96,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,155,108,4,0,0,0,0,0,129,26,1,0,36,1,0,0,155,108,4,0,0,0,0,0,1,0,0,0,36,0,0,0,212,6,0,0,0,0,0,0,1,0,0,0,78,1,0,0,212,6,0,0,0,0,0,0,1,0,0,0,46,1,0,0,111,115,4,0, 0,0,0,0,144,26,1,0,36,1,0,0,111,115,4,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,208,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,116,4,0,0,0,0,0,172,26,1,0,36,1,0,0,63,116,4,0,0,0,0,0,1,0,0,0,36,0,0,0,142,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,142,2, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,205,118,4,0,0,0,0,0,196,26,1,0,36,1,0,0,205,118,4,0,0,0,0,0,1,0,0,0,36,0,0,0,205,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,205,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,154,119,4,0,0,0,0,0,215,26,1,0,36,1,0,0,154,119,4,0,0,0,0,0,1,0,0,0,36,0,0, 0,74,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,228,119,4,0,0,0,0,0,234,26,1,0,36,1,0,0,228,119,4,0,0,0,0,0,1,0,0,0,36,0,0,0,209,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,209,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,120,4,0,0,0,0,0,251,26,1,0,36, 1,0,0,181,120,4,0,0,0,0,0,1,0,0,0,36,0,0,0,133,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,133,1,0,0,0,0,0,0,14,27,1,0,38,11,0,0,152,96,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,29,27,1,0,100,0,0,0,0,0,0,0,0,0,0,0,53,27, 1,0,102,0,1,0,89,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,58,122,4,0,0,0,0,0,116,27,1,0,36,1,0,0,58,122,4,0,0,0,0,0,1,0,0,0,36,0,0,0,29,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,29,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,87,123,4,0,0,0,0,0,127,27,1,0,36,1,0,0,87,123,4,0,0,0,0, 0,1,0,0,0,36,0,0,0,252,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,252,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,83,124,4,0,0,0,0,0,139,27,1,0,36,1,0,0,83,124,4,0,0,0,0,0,1,0,0,0,36,0,0,0,18,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,101,124,4,0,0,0,0, 0,153,27,1,0,36,1,0,0,101,124,4,0,0,0,0,0,1,0,0,0,36,0,0,0,45,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,146,124,4,0,0,0,0,0,168,27,1,0,36,1,0,0,146,124,4,0,0,0,0,0,1,0,0,0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,212,124,4,0,0,0,0,0,186,27,1,0,36,1,0,0,212,124,4,0,0,0,0,0,1,0,0,0,36,0,0,0,156,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,112,125,4,0,0,0,0,0,201,27,1,0,36,1,0,0,112,125,4,0,0,0,0,0,1,0,0,0,36,0,0,0,88,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,200,125,4,0,0,0,0,0,211,27,1,0,36,1,0,0,200,125,4,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,126,4,0,0,0,0,0,220,27,1,0,36,1,0,0,25, 126,4,0,0,0,0,0,1,0,0,0,36,0,0,0,112,10,0,0,0,0,0,0,1,0,0,0,78,1,0,0,112,10,0,0,0,0,0,0,1,0,0,0,46,1,0,0,137,136,4,0,0,0,0,0,236,27,1,0,36,1,0,0,137,136,4,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 183,136,4,0,0,0,0,0,2,28,1,0,36,1,0,0,183,136,4,0,0,0,0,0,1,0,0,0,36,0,0,0,231,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,231,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,158,139,4,0,0,0,0,0,16,28,1,0,36,1,0,0,158,139,4,0,0,0,0,0,1,0,0,0,36,0,0,0,125,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,125,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,27,140,4,0,0,0,0,0,33,28,1,0,36,1,0,0,27,140,4,0,0,0,0,0,1,0,0,0,36,0,0,0,60,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,87,140,4,0,0,0,0,0,46,28,1,0,36,1,0,0,87,140,4,0,0,0,0,0,1,0,0,0,36, 0,0,0,60,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,147,140,4,0,0,0,0,0,60,28,1,0,36,1,0,0,147,140,4,0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,204,140,4,0,0,0,0,0,72,28,1,0,36, 1,0,0,204,140,4,0,0,0,0,0,1,0,0,0,36,0,0,0,64,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,12,141,4,0,0,0,0,0,85,28,1,0,36,1,0,0,12,141,4,0,0,0,0,0,1,0,0,0,36,0,0,0,79,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,91,141,4,0,0,0,0,0,101,28,1,0,36,1,0,0,91,141,4,0,0,0,0,0,1,0,0,0,36,0,0,0,119,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,119,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,210,141,4,0,0,0,0,0,115,28,1,0,36,1,0,0,210,141,4,0,0,0,0,0,1,0,0,0,36,0,0,0,34,1,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,34,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,142,4,0,0,0,0,0,131,28,1,0,36,1,0,0,244,142,4,0,0,0,0,0,1,0,0,0,36,0,0,0,109,5,0,0,0,0,0,0,1,0,0,0,78,1,0,0,109,5,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,148,4,0,0,0,0,0,142,28,1,0,36,1,0,0,97,148,4,0,0,0,0,0,1,0,0, 0,36,0,0,0,13,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,13,3,0,0,0,0,0,0,155,28,1,0,38,11,0,0,160,96,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,170,28,1,0,100,0,0,0,0,0,0,0,0,0,0,0,195,28,1,0,102,0,1,0,89,96,143,77,0,0, 0,0,1,0,0,0,46,1,0,0,110,151,4,0,0,0,0,0,3,29,1,0,36,1,0,0,110,151,4,0,0,0,0,0,1,0,0,0,36,0,0,0,207,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,207,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,61,152,4,0,0,0,0,0,14,29,1,0,36,1,0,0,61,152,4,0,0,0,0,0,1,0,0,0,36,0,0,0,228,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,228,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,33,153,4,0,0,0,0,0,28,29,1,0,36,1,0,0,33,153,4,0,0,0,0,0,1,0,0,0,36,0,0,0,125,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,158,153,4,0,0,0,0,0,39,29,1,0,36,1,0,0,158,153, 4,0,0,0,0,0,1,0,0,0,36,0,0,0,188,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,188,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,90,154,4,0,0,0,0,0,51,29,1,0,36,1,0,0,90,154,4,0,0,0,0,0,1,0,0,0,36,0,0,0,213,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,47,155, 4,0,0,0,0,0,65,29,1,0,36,1,0,0,47,155,4,0,0,0,0,0,1,0,0,0,36,0,0,0,141,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,188,155,4,0,0,0,0,0,83,29,1,0,36,1,0,0,188,155,4,0,0,0,0,0,1,0,0,0,36,0,0,0,20,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,20, 2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,208,157,4,0,0,0,0,0,99,29,1,0,36,1,0,0,208,157,4,0,0,0,0,0,1,0,0,0,36,0,0,0,45,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,45,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,253,158,4,0,0,0,0,0,122,29,1,0,36,1,0,0,253,158,4,0,0,0,0,0,1,0,0,0,36,0,0, 0,189,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,189,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,186,159,4,0,0,0,0,0,137,29,1,0,36,1,0,0,186,159,4,0,0,0,0,0,1,0,0,0,36,0,0,0,234,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,234,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,164,162,4,0,0,0,0,0,154,29,1,0, 36,1,0,0,164,162,4,0,0,0,0,0,1,0,0,0,36,0,0,0,17,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,162,4,0,0,0,0,0,171,29,1,0,36,1,0,0,181,162,4,0,0,0,0,0,1,0,0,0,36,0,0,0,14,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,14,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,195,162,4,0,0,0,0,0,186,29,1,0,36,1,0,0,195,162,4,0,0,0,0,0,1,0,0,0,36,0,0,0,201,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,201,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,140,164,4,0,0,0,0,0,198,29,1,0,36,1,0,0,140,164,4,0,0,0,0,0,1,0,0,0,36,0,0,0,54,0,0,0,0,0,0,0, 1,0,0,0,78,1,0,0,54,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,194,164,4,0,0,0,0,0,215,29,1,0,36,1,0,0,194,164,4,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245,164,4,0,0,0,0,0,230,29,1,0,36,1,0,0,245,164,4,0,0, 0,0,0,1,0,0,0,36,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245,166,4,0,0,0,0,0,246,29,1,0,36,1,0,0,245,166,4,0,0,0,0,0,1,0,0,0,36,0,0,0,142,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,142,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,131,167,4,0,0, 0,0,0,4,30,1,0,36,1,0,0,131,167,4,0,0,0,0,0,1,0,0,0,36,0,0,0,139,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,14,168,4,0,0,0,0,0,17,30,1,0,36,1,0,0,14,168,4,0,0,0,0,0,1,0,0,0,36,0,0,0,32,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,1,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,46,169,4,0,0,0,0,0,36,30,1,0,36,1,0,0,46,169,4,0,0,0,0,0,1,0,0,0,36,0,0,0,126,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,169,4,0,0,0,0,0,49,30,1,0,36,1,0,0,172,169,4,0,0,0,0,0,1,0,0,0,36,0,0,0,152,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,152,0,0,0,0,0,0,0,65,30,1,0,38,10,0,0,0,54,11,0,0,0,0,0,88,30,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,102,30,1,0,100,0,0,0,0,0,0,0,0,0,0,0,129,30,1,0,102,0,1,0,90, 96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,68,170,4,0,0,0,0,0,195,30,1,0,36,1,0,0,68,170,4,0,0,0,0,0,1,0,0,0,36,0,0,0,111,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,111,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,179,170,4,0,0,0,0,0,213,30,1,0,36,1,0,0,179,170,4,0,0,0,0,0,1,0,0,0,36, 0,0,0,149,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,149,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,72,173,4,0,0,0,0,0,227,30,1,0,36,1,0,0,72,173,4,0,0,0,0,0,1,0,0,0,36,0,0,0,23,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,95,173,4,0,0,0,0,0,242,30,1,0,36, 1,0,0,95,173,4,0,0,0,0,0,1,0,0,0,36,0,0,0,5,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,5,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,100,174,4,0,0,0,0,0,7,31,1,0,36,1,0,0,100,174,4,0,0,0,0,0,1,0,0,0,36,0,0,0,190,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,190,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,34,175,4,0,0,0,0,0,26,31,1,0,36,1,0,0,34,175,4,0,0,0,0,0,1,0,0,0,36,0,0,0,179,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,213,175,4,0,0,0,0,0,45,31,1,0,36,1,0,0,213,175,4,0,0,0,0,0,1,0,0,0,36,0,0,0,189,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,189,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,146,176,4,0,0,0,0,0,65,31,1,0,36,1,0,0,146,176,4,0,0,0,0,0,1,0,0,0,36,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,72,177,4,0,0,0,0,0,85,31,1,0,36,1,0,0,72,177,4,0,0,0,0,0,1,0,0, 0,36,0,0,0,61,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,133,178,4,0,0,0,0,0,101,31,1,0,36,1,0,0,133,178,4,0,0,0,0,0,1,0,0,0,36,0,0,0,191,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,68,179,4,0,0,0,0,0,124,31, 1,0,36,1,0,0,68,179,4,0,0,0,0,0,1,0,0,0,36,0,0,0,87,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,155,181,4,0,0,0,0,0,148,31,1,0,36,1,0,0,155,181,4,0,0,0,0,0,1,0,0,0,36,0,0,0,61,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,2,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,216,183,4,0,0,0,0,0,171,31,1,0,36,1,0,0,216,183,4,0,0,0,0,0,1,0,0,0,36,0,0,0,218,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,218,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,178,184,4,0,0,0,0,0,194,31,1,0,36,1,0,0,178,184,4,0,0,0,0,0,1,0,0,0,36,0,0,0,48,3,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,48,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,226,187,4,0,0,0,0,0,212,31,1,0,36,1,0,0,226,187,4,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,0,188,4,0,0,0,0,0,233,31,1,0,36,1,0,0,0,188,4,0,0,0, 0,0,1,0,0,0,36,0,0,0,83,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,83,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,83,188,4,0,0,0,0,0,254,31,1,0,36,1,0,0,83,188,4,0,0,0,0,0,1,0,0,0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,149,188,4,0,0,0,0, 0,15,32,1,0,36,1,0,0,149,188,4,0,0,0,0,0,1,0,0,0,36,0,0,0,111,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,111,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,4,189,4,0,0,0,0,0,41,32,1,0,36,1,0,0,4,189,4,0,0,0,0,0,1,0,0,0,36,0,0,0,28,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,28,1,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,32,190,4,0,0,0,0,0,63,32,1,0,36,1,0,0,32,190,4,0,0,0,0,0,1,0,0,0,36,0,0,0,88,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,120,190,4,0,0,0,0,0,78,32,1,0,36,1,0,0,120,190,4,0,0,0,0,0,1,0,0,0,36,0,0,0,133,0,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,133,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,253,190,4,0,0,0,0,0,94,32,1,0,36,1,0,0,253,190,4,0,0,0,0,0,1,0,0,0,36,0,0,0,20,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,20,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,193,4,0,0,0,0,0,111,32,1,0,36,1,0,0,17,193,4,0,0, 0,0,0,1,0,0,0,36,0,0,0,80,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,193,4,0,0,0,0,0,126,32,1,0,36,1,0,0,97,193,4,0,0,0,0,0,1,0,0,0,36,0,0,0,102,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,193,4,0,0, 0,0,0,145,32,1,0,36,1,0,0,199,193,4,0,0,0,0,0,1,0,0,0,36,0,0,0,18,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,193,4,0,0,0,0,0,160,32,1,0,36,1,0,0,217,193,4,0,0,0,0,0,1,0,0,0,36,0,0,0,118,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,118,1,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,79,195,4,0,0,0,0,0,176,32,1,0,36,1,0,0,79,195,4,0,0,0,0,0,1,0,0,0,36,0,0,0,138,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,138,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,195,4,0,0,0,0,0,193,32,1,0,36,1,0,0,217,195,4,0,0,0,0,0,1,0,0,0,36,0,0,0,108, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,69,196,4,0,0,0,0,0,219,32,1,0,36,1,0,0,69,196,4,0,0,0,0,0,1,0,0,0,36,0,0,0,109,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,109,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,178,196,4,0,0,0,0,0,246,32,1,0,36,1,0,0, 178,196,4,0,0,0,0,0,1,0,0,0,36,0,0,0,210,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,210,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,132,200,4,0,0,0,0,0,14,33,1,0,36,1,0,0,132,200,4,0,0,0,0,0,1,0,0,0,36,0,0,0,89,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,89,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 221,200,4,0,0,0,0,0,37,33,1,0,36,1,0,0,221,200,4,0,0,0,0,0,1,0,0,0,36,0,0,0,176,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,141,201,4,0,0,0,0,0,61,33,1,0,36,1,0,0,141,201,4,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,103,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,201,4,0,0,0,0,0,84,33,1,0,36,1,0,0,244,201,4,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,119,202,4,0,0,0,0,0,104,33,1,0,36,1,0,0,119,202,4,0,0,0,0,0,1,0, 0,0,36,0,0,0,97,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,216,203,4,0,0,0,0,0,126,33,1,0,36,1,0,0,216,203,4,0,0,0,0,0,1,0,0,0,36,0,0,0,150,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,204,4,0,0,0,0,0,146, 33,1,0,36,1,0,0,110,204,4,0,0,0,0,0,1,0,0,0,36,0,0,0,130,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,130,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,204,4,0,0,0,0,0,167,33,1,0,36,1,0,0,240,204,4,0,0,0,0,0,1,0,0,0,36,0,0,0,170,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,170,1,0,0,0,0,0, 0,1,0,0,0,46,1,0,0,154,206,4,0,0,0,0,0,191,33,1,0,36,1,0,0,154,206,4,0,0,0,0,0,1,0,0,0,36,0,0,0,126,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,24,207,4,0,0,0,0,0,211,33,1,0,36,1,0,0,24,207,4,0,0,0,0,0,1,0,0,0,36,0,0,0,159,2,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,159,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,183,209,4,0,0,0,0,0,222,33,1,0,36,1,0,0,183,209,4,0,0,0,0,0,1,0,0,0,36,0,0,0,242,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,242,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,169,210,4,0,0,0,0,0,235,33,1,0,36,1,0,0,169, 210,4,0,0,0,0,0,1,0,0,0,36,0,0,0,186,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,186,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,99,212,4,0,0,0,0,0,250,33,1,0,36,1,0,0,99,212,4,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,139, 212,4,0,0,0,0,0,10,34,1,0,36,1,0,0,139,212,4,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,175,212,4,0,0,0,0,0,24,34,1,0,36,1,0,0,175,212,4,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,211,212,4,0,0,0,0,0,40,34,1,0,36,1,0,0,211,212,4,0,0,0,0,0,1,0,0,0,36,0,0,0,64,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,19,213,4,0,0,0,0,0,52,34,1,0,36,1,0,0,19,213,4,0,0,0,0,0,1,0,0,0,36,0,0, 0,8,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,8,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,27,214,4,0,0,0,0,0,67,34,1,0,36,1,0,0,27,214,4,0,0,0,0,0,1,0,0,0,36,0,0,0,180,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,180,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,207,217,4,0,0,0,0,0,78,34,1,0,36,1,0,0, 207,217,4,0,0,0,0,0,1,0,0,0,36,0,0,0,209,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,209,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,219,4,0,0,0,0,0,92,34,1,0,36,1,0,0,160,219,4,0,0,0,0,0,1,0,0,0,36,0,0,0,6,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,166, 222,4,0,0,0,0,0,105,34,1,0,36,1,0,0,166,222,4,0,0,0,0,0,1,0,0,0,36,0,0,0,60,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,226,222,4,0,0,0,0,0,117,34,1,0,36,1,0,0,226,222,4,0,0,0,0,0,1,0,0,0,36,0,0,0,31,1,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,31,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,1,224,4,0,0,0,0,0,130,34,1,0,36,1,0,0,1,224,4,0,0,0,0,0,1,0,0,0,36,0,0,0,99,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,99,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0,100,228,4,0,0,0,0,0,140,34,1,0,36,1,0,0,100,228,4,0,0,0,0,0,1,0,0,0,36,0, 0,0,236,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,236,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,80,229,4,0,0,0,0,0,152,34,1,0,36,1,0,0,80,229,4,0,0,0,0,0,1,0,0,0,36,0,0,0,79,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,79,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,159,231,4,0,0,0,0,0,176,34,1,0,36, 1,0,0,159,231,4,0,0,0,0,0,1,0,0,0,36,0,0,0,24,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,183,233,4,0,0,0,0,0,193,34,1,0,36,1,0,0,183,233,4,0,0,0,0,0,1,0,0,0,36,0,0,0,156,5,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,5,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,83,239,4,0,0,0,0,0,207,34,1,0,36,1,0,0,83,239,4,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,239,4,0,0,0,0,0,222,34,1,0,36,1,0,0,123,239,4,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,159,239,4,0,0,0,0,0,235,34,1,0,36,1,0,0,159,239,4,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,239,4,0,0,0,0,0,250,34,1,0,36,1,0,0,195,239,4,0,0,0,0,0,1, 0,0,0,36,0,0,0,125,15,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,15,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,255,4,0,0,0,0,0,4,35,1,0,36,1,0,0,64,255,4,0,0,0,0,0,1,0,0,0,36,0,0,0,179,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,179,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,243,0,5,0,0,0,0,0,16, 35,1,0,36,1,0,0,243,0,5,0,0,0,0,0,1,0,0,0,36,0,0,0,152,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,152,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,139,1,5,0,0,0,0,0,28,35,1,0,36,1,0,0,139,1,5,0,0,0,0,0,1,0,0,0,36,0,0,0,94,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,94,2,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,233,3,5,0,0,0,0,0,44,35,1,0,36,1,0,0,233,3,5,0,0,0,0,0,1,0,0,0,36,0,0,0,242,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,242,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,219,4,5,0,0,0,0,0,62,35,1,0,36,1,0,0,219,4,5,0,0,0,0,0,1,0,0,0,36,0,0,0,154,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,154,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,117,5,5,0,0,0,0,0,82,35,1,0,36,1,0,0,117,5,5,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,163,5,5,0,0,0,0,0,104,35,1,0,36,1,0,0,163,5,5,0,0,0,0,0,1,0,0,0,36, 0,0,0,157,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,157,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,8,5,0,0,0,0,0,124,35,1,0,36,1,0,0,64,8,5,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,104,8,5,0,0,0,0,0,145,35,1,0,36,1,0, 0,104,8,5,0,0,0,0,0,1,0,0,0,36,0,0,0,60,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,164,8,5,0,0,0,0,0,164,35,1,0,36,1,0,0,164,8,5,0,0,0,0,0,1,0,0,0,36,0,0,0,60,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,224, 8,5,0,0,0,0,0,185,35,1,0,36,1,0,0,224,8,5,0,0,0,0,0,1,0,0,0,36,0,0,0,152,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,152,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,120,11,5,0,0,0,0,0,201,35,1,0,36,1,0,0,120,11,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52, 1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,12,5,0,0,0,0,0,220,35,1,0,36,1,0,0,172,12,5,0,0,0,0,0,1,0,0,0,36,0,0,0,35,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,207,15,5,0,0,0,0,0,236,35,1,0,36,1,0,0,207,15,5,0,0,0,0,0,1,0,0,0,36,0,0,0,251, 1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,251,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,202,17,5,0,0,0,0,0,254,35,1,0,36,1,0,0,202,17,5,0,0,0,0,0,1,0,0,0,36,0,0,0,10,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,10,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,212,17,5,0,0,0,0,0,15,36,1,0,36,1,0,0,212, 17,5,0,0,0,0,0,1,0,0,0,36,0,0,0,203,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,203,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,159,18,5,0,0,0,0,0,33,36,1,0,36,1,0,0,159,18,5,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,51,36,1,0,32,10,0,0,0,0, 0,0,0,0,0,0,73,36,1,0,32,10,0,0,0,0,0,0,0,0,0,0,94,36,1,0,32,10,0,0,0,0,0,0,0,0,0,0,121,36,1,0,38,11,0,0,176,96,11,0,0,0,0,0,134,36,1,0,38,11,0,0,184,96,11,0,0,0,0,0,151,36,1,0,38,11,0,0,192,96,11,0,0,0,0,0,167,36,1,0,38,11,0,0,200,96,11,0,0,0,0,0,187, 36,1,0,38,11,0,0,204,96,11,0,0,0,0,0,213,36,1,0,38,11,0,0,208,96,11,0,0,0,0,0,233,36,1,0,38,11,0,0,212,96,11,0,0,0,0,0,252,36,1,0,38,11,0,0,216,96,11,0,0,0,0,0,22,37,1,0,38,11,0,0,220,96,11,0,0,0,0,0,42,37,1,0,38,11,0,0,224,96,11,0,0,0,0,0,61,37,1,0, 38,11,0,0,232,96,11,0,0,0,0,0,81,37,1,0,38,11,0,0,240,96,11,0,0,0,0,0,102,37,1,0,38,11,0,0,248,96,11,0,0,0,0,0,122,37,1,0,38,11,0,0,0,97,11,0,0,0,0,0,139,37,1,0,38,11,0,0,8,97,11,0,0,0,0,0,162,37,1,0,38,11,0,0,16,97,11,0,0,0,0,0,185,37,1,0,38,11,0,0, 40,97,11,0,0,0,0,0,216,37,1,0,38,11,0,0,48,97,11,0,0,0,0,0,241,37,1,0,38,11,0,0,56,97,11,0,0,0,0,0,11,38,1,0,38,11,0,0,64,97,11,0,0,0,0,0,36,38,1,0,38,11,0,0,72,97,11,0,0,0,0,0,58,38,1,0,38,11,0,0,80,97,11,0,0,0,0,0,86,38,1,0,38,11,0,0,96,97,11,0,0,0, 0,0,114,38,1,0,38,11,0,0,120,97,11,0,0,0,0,0,140,38,1,0,38,11,0,0,124,97,11,0,0,0,0,0,168,38,1,0,32,12,0,0,0,0,0,0,0,0,0,0,181,38,1,0,32,12,0,0,0,0,0,0,0,0,0,0,199,38,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0, 0,0,0,0,0,0,0,0,0,211,38,1,0,100,0,0,0,0,0,0,0,0,0,0,0,234,38,1,0,102,0,1,0,90,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,190,18,5,0,0,0,0,0,40,39,1,0,36,1,0,0,190,18,5,0,0,0,0,0,1,0,0,0,36,0,0,0,209,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,209,1,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,143,20,5,0,0,0,0,0,52,39,1,0,36,1,0,0,143,20,5,0,0,0,0,0,1,0,0,0,36,0,0,0,184,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,184,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,71,22,5,0,0,0,0,0,68,39,1,0,36,1,0,0,71,22,5,0,0,0,0,0,1,0,0,0,36,0,0,0,173,1,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,173,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,23,5,0,0,0,0,0,86,39,1,0,36,1,0,0,244,23,5,0,0,0,0,0,1,0,0,0,36,0,0,0,96,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,84,25,5,0,0,0,0,0,98,39,1,0,36,1,0,0,84,25,5,0,0,0,0,0,1,0,0,0,36,0, 0,0,171,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,171,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,255,25,5,0,0,0,0,0,114,39,1,0,36,1,0,0,255,25,5,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,48,26,5,0,0,0,0,0,126,39,1,0,36,1, 0,0,48,26,5,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,26,5,0,0,0,0,0,141,39,1,0,36,1,0,0,97,26,5,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,146, 26,5,0,0,0,0,0,157,39,1,0,36,1,0,0,146,26,5,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,26,5,0,0,0,0,0,173,39,1,0,36,1,0,0,195,26,5,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,26,5,0,0,0,0,0,187,39,1,0,36,1,0,0,244,26,5,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,37,27,5,0,0,0,0,0,201,39,1,0,36,1,0,0,37,27,5,0,0,0,0,0,1,0,0,0,36,0,0,0,49, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,86,27,5,0,0,0,0,0,216,39,1,0,36,1,0,0,86,27,5,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,135,27,5,0,0,0,0,0,231,39,1,0,36,1,0,0,135,27, 5,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,184,27,5,0,0,0,0,0,247,39,1,0,36,1,0,0,184,27,5,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,233,27,5,0, 0,0,0,0,5,40,1,0,36,1,0,0,233,27,5,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,26,28,5,0,0,0,0,0,20,40,1,0,36,1,0,0,26,28,5,0,0,0,0,0,1,0,0,0,36,0,0,0,176,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,202,28,5,0,0,0,0,0,35,40,1,0,36,1,0,0,202,28,5,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,229,28,5,0,0,0,0,0,55,40,1,0,36,1,0,0,229,28,5,0,0,0,0,0,1,0,0,0,36,0,0,0,37,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,37,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,10,29,5,0,0,0,0,0,76,40,1,0,36,1,0,0,10,29,5,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,45,29,5,0,0,0,0,0,98,40,1,0,36,1,0,0,45,29,5,0,0,0,0,0, 1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,29,5,0,0,0,0,0,118,40,1,0,36,1,0,0,94,29,5,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,143,29,5,0,0,0,0,0,142,40, 1,0,36,1,0,0,143,29,5,0,0,0,0,0,1,0,0,0,36,0,0,0,45,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,188,29,5,0,0,0,0,0,156,40,1,0,36,1,0,0,188,29,5,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,250,29,5,0,0,0,0,0,171,40,1,0,36,1,0,0,250,29,5,0,0,0,0,0,1,0,0,0,36,0,0,0,63,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,57,30,5,0,0,0,0,0,187,40,1,0,36,1,0,0,57,30,5,0,0,0,0,0,1,0,0,0,36,0,0,0,53,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,53,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,30,5,0,0,0,0,0,201,40,1,0,36,1,0,0,110,30,5,0,0,0,0,0,1,0,0,0,36,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,185,30,5,0,0,0,0,0,214,40,1,0,36,1,0,0,185,30,5,0,0,0,0,0,1,0,0, 0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,247,30,5,0,0,0,0,0,228,40,1,0,36,1,0,0,247,30,5,0,0,0,0,0,1,0,0,0,36,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,31,5,0,0,0,0,0,241,40,1,0, 36,1,0,0,66,31,5,0,0,0,0,0,1,0,0,0,36,0,0,0,67,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,133,31,5,0,0,0,0,0,3,41,1,0,36,1,0,0,133,31,5,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,171,31,5,0,0,0,0,0,20,41,1,0,36,1,0,0,171,31,5,0,0,0,0,0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,11,32,5,0,0,0,0,0,39,41,1,0,36,1,0,0,11,32,5,0,0,0,0,0,1,0,0,0,36,0,0,0,239,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 239,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,250,32,5,0,0,0,0,0,59,41,1,0,36,1,0,0,250,32,5,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,33,5,0,0,0,0,0,81,41,1,0,36,1,0,0,40,33,5,0,0,0,0,0,1,0,0,0,36,0,0,0,164, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,164,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,204,33,5,0,0,0,0,0,96,41,1,0,36,1,0,0,204,33,5,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,54,34,5,0,0,0,0,0,110,41,1,0,36,1,0,0,54, 34,5,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,81,34,5,0,0,0,0,0,124,41,1,0,36,1,0,0,81,34,5,0,0,0,0,0,1,0,0,0,36,0,0,0,32,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,113,36,5, 0,0,0,0,0,136,41,1,0,36,1,0,0,113,36,5,0,0,0,0,0,1,0,0,0,36,0,0,0,209,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,209,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,37,5,0,0,0,0,0,151,41,1,0,36,1,0,0,66,37,5,0,0,0,0,0,1,0,0,0,36,0,0,0,67,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,133,37,5,0,0,0,0,0,168,41,1,0,36,1,0,0,133,37,5,0,0,0,0,0,1,0,0,0,36,0,0,0,43,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,176,37,5,0,0,0,0,0,182,41,1,0,36,1,0,0,176,37,5,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,23,38,5,0,0,0,0,0,196,41,1,0,36,1,0,0,23,38,5,0,0,0,0,0,1,0,0,0,36,0,0,0,209,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,209,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,232,38,5,0,0,0,0,0,207,41,1,0,36,1,0,0,232, 38,5,0,0,0,0,0,1,0,0,0,36,0,0,0,121,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,121,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,40,5,0,0,0,0,0,219,41,1,0,36,1,0,0,97,40,5,0,0,0,0,0,1,0,0,0,36,0,0,0,64,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,161,40, 5,0,0,0,0,0,232,41,1,0,36,1,0,0,161,40,5,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,36,41,5,0,0,0,0,0,249,41,1,0,36,1,0,0,36,41,5,0,0,0,0,0,1,0,0,0,36,0,0,0,65,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,65,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,101,41,5,0,0,0,0,0,7,42,1,0,36,1,0,0,101,41,5,0,0,0,0,0,1,0,0,0,36,0,0,0,124,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,124,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,225,41,5,0,0,0,0,0,19,42,1,0,36,1,0,0,225,41,5,0,0,0,0,0,1,0,0,0,36,0,0,0,250, 1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,250,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,219,43,5,0,0,0,0,0,33,42,1,0,36,1,0,0,219,43,5,0,0,0,0,0,1,0,0,0,36,0,0,0,10,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,10,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,229,45,5,0,0,0,0,0,44,42,1,0,36,1,0,0,229, 45,5,0,0,0,0,0,1,0,0,0,36,0,0,0,56,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,29,47,5,0,0,0,0,0,57,42,1,0,36,1,0,0,29,47,5,0,0,0,0,0,1,0,0,0,36,0,0,0,86,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,86,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,50,5,0, 0,0,0,0,70,42,1,0,36,1,0,0,115,50,5,0,0,0,0,0,1,0,0,0,36,0,0,0,87,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,202,51,5,0,0,0,0,0,91,42,1,0,36,1,0,0,202,51,5,0,0,0,0,0,1,0,0,0,36,0,0,0,93,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,39,52,5,0,0,0,0,0,107,42,1,0,36,1,0,0,39,52,5,0,0,0,0,0,1,0,0,0,36,0,0,0,24,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,53,5,0,0,0,0,0,118,42,1,0,36,1,0,0,63,53,5,0,0,0,0,0,1,0,0,0,36,0,0,0,133,4,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,133,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0,196,57,5,0,0,0,0,0,131,42,1,0,36,1,0,0,196,57,5,0,0,0,0,0,1,0,0,0,36,0,0,0,53,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,249,57,5,0,0,0,0,0,149,42,1,0,36,1,0,0,249,57,5,0,0, 0,0,0,1,0,0,0,36,0,0,0,53,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,46,58,5,0,0,0,0,0,168,42,1,0,36,1,0,0,46,58,5,0,0,0,0,0,1,0,0,0,36,0,0,0,74,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,120,58,5,0,0,0,0,0, 180,42,1,0,36,1,0,0,120,58,5,0,0,0,0,0,1,0,0,0,36,0,0,0,33,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,33,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,59,5,0,0,0,0,0,198,42,1,0,36,1,0,0,153,59,5,0,0,0,0,0,1,0,0,0,36,0,0,0,185,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,185,1,0,0,0,0,0, 0,1,0,0,0,46,1,0,0,82,61,5,0,0,0,0,0,212,42,1,0,36,1,0,0,82,61,5,0,0,0,0,0,1,0,0,0,36,0,0,0,211,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,211,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,37,62,5,0,0,0,0,0,227,42,1,0,36,1,0,0,37,62,5,0,0,0,0,0,1,0,0,0,36,0,0,0,155,0,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,155,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,192,62,5,0,0,0,0,0,240,42,1,0,36,1,0,0,192,62,5,0,0,0,0,0,1,0,0,0,36,0,0,0,77,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,13,63,5,0,0,0,0,0,255,42,1,0,36,1,0,0,13,63,5,0,0,0,0, 0,1,0,0,0,36,0,0,0,39,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,52,63,5,0,0,0,0,0,12,43,1,0,36,1,0,0,52,63,5,0,0,0,0,0,1,0,0,0,36,0,0,0,253,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,253,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,49,64,5,0,0,0,0,0,22, 43,1,0,36,1,0,0,49,64,5,0,0,0,0,0,1,0,0,0,36,0,0,0,90,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,139,65,5,0,0,0,0,0,34,43,1,0,36,1,0,0,139,65,5,0,0,0,0,0,1,0,0,0,36,0,0,0,18,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,4,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,157,69,5,0,0,0,0,0,45,43,1,0,36,1,0,0,157,69,5,0,0,0,0,0,1,0,0,0,36,0,0,0,47,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,47,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,204,71,5,0,0,0,0,0,62,43,1,0,36,1,0,0,204,71,5,0,0,0,0,0,1,0,0,0,36,0,0,0,140,6,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,140,6,0,0,0,0,0,0,1,0,0,0,46,1,0,0,88,78,5,0,0,0,0,0,79,43,1,0,36,1,0,0,88,78,5,0,0,0,0,0,1,0,0,0,36,0,0,0,158,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,158,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,246,78,5,0,0,0,0,0,97,43,1,0,36,1,0,0,246,78,5,0,0,0,0,0,1,0,0, 0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,77,79,5,0,0,0,0,0,115,43,1,0,36,1,0,0,77,79,5,0,0,0,0,0,1,0,0,0,36,0,0,0,19,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,19,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,96,81,5,0,0,0,0,0,127,43,1,0,36, 1,0,0,96,81,5,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,117,81,5,0,0,0,0,0,142,43,1,0,36,1,0,0,117,81,5,0,0,0,0,0,1,0,0,0,36,0,0,0,166,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,166,4,0,0,0,0,0,0,156,43,1,0,32, 10,0,0,0,0,0,0,0,0,0,0,177,43,1,0,38,10,0,0,64,55,11,0,0,0,0,0,199,43,1,0,38,11,0,0,128,97,11,0,0,0,0,0,214,43,1,0,38,11,0,0,136,97,11,0,0,0,0,0,227,43,1,0,38,11,0,0,144,97,11,0,0,0,0,0,248,43,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0, 0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,4,44,1,0,100,0,0,0,0,0,0,0,0,0,0,0,29,44,1,0,102,0,1,0,90,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,27,86,5,0,0,0,0,0,93,44,1,0,36,1,0,0,27,86,5,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,208,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,235,86,5,0,0,0,0,0,113,44,1,0,36,1,0,0,235,86,5,0,0,0,0,0,1,0,0,0,36,0,0,0,99,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,99,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,78,90,5,0,0,0,0,0,130,44,1,0,36,1,0,0,78,90,5,0,0,0,0,0,1,0,0,0,36,0,0,0,137,2, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,137,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,215,92,5,0,0,0,0,0,148,44,1,0,36,1,0,0,215,92,5,0,0,0,0,0,1,0,0,0,36,0,0,0,227,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,227,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,186,93,5,0,0,0,0,0,167,44,1,0,36,1,0,0,186, 93,5,0,0,0,0,0,1,0,0,0,36,0,0,0,148,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,148,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,78,95,5,0,0,0,0,0,187,44,1,0,36,1,0,0,78,95,5,0,0,0,0,0,1,0,0,0,36,0,0,0,125,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,203,96, 5,0,0,0,0,0,203,44,1,0,36,1,0,0,203,96,5,0,0,0,0,0,1,0,0,0,36,0,0,0,176,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,97,5,0,0,0,0,0,223,44,1,0,36,1,0,0,123,97,5,0,0,0,0,0,1,0,0,0,36,0,0,0,175,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,175, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,42,98,5,0,0,0,0,0,236,44,1,0,36,1,0,0,42,98,5,0,0,0,0,0,1,0,0,0,36,0,0,0,126,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,168,98,5,0,0,0,0,0,252,44,1,0,36,1,0,0,168,98,5,0,0,0,0,0,1,0,0,0,36,0,0,0,15, 2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,15,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,183,100,5,0,0,0,0,0,9,45,1,0,36,1,0,0,183,100,5,0,0,0,0,0,1,0,0,0,36,0,0,0,207,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,207,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,134,102,5,0,0,0,0,0,28,45,1,0,36,1,0,0,134, 102,5,0,0,0,0,0,1,0,0,0,36,0,0,0,204,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,204,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,103,5,0,0,0,0,0,41,45,1,0,36,1,0,0,82,103,5,0,0,0,0,0,1,0,0,0,36,0,0,0,42,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,124,104, 5,0,0,0,0,0,56,45,1,0,36,1,0,0,124,104,5,0,0,0,0,0,1,0,0,0,36,0,0,0,48,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,104,5,0,0,0,0,0,70,45,1,0,36,1,0,0,172,104,5,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,3,105,5,0,0,0,0,0,87,45,1,0,36,1,0,0,3,105,5,0,0,0,0,0,1,0,0,0,36,0,0,0,85,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,88,105,5,0,0,0,0,0,99,45,1,0,36,1,0,0,88,105,5,0,0,0,0,0,1,0,0,0,36,0,0,0,146,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,146,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,234,105,5,0,0,0,0,0,113,45,1,0,36,1,0,0,234,105,5,0,0,0,0,0,1,0,0,0,36,0,0,0,128,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,128,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,106,106,5,0,0,0,0,0,126,45,1,0,36,1,0,0,106, 106,5,0,0,0,0,0,1,0,0,0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,106,5,0,0,0,0,0,143,45,1,0,36,1,0,0,172,106,5,0,0,0,0,0,1,0,0,0,36,0,0,0,85,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,1,107, 5,0,0,0,0,0,156,45,1,0,36,1,0,0,1,107,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,53,107,5,0,0,0,0,0,170,45,1,0,36,1,0,0,53,107,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,105,107,5,0,0,0,0,0,182,45,1,0,36,1,0,0,105,107,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,157,107,5,0,0,0,0,0,196,45,1,0,36,1,0,0,157,107,5,0,0,0,0,0,1,0,0,0,36,0,0,0,35, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,192,107,5,0,0,0,0,0,209,45,1,0,36,1,0,0,192,107,5,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,227,107,5,0,0,0,0,0,225,45,1,0,36,1,0,0, 227,107,5,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,6,108,5,0,0,0,0,0,239,45,1,0,36,1,0,0,6,108,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,58,108, 5,0,0,0,0,0,2,46,1,0,36,1,0,0,58,108,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,108,5,0,0,0,0,0,20,46,1,0,36,1,0,0,110,108,5,0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,167,108,5,0,0,0,0,0,33,46,1,0,36,1,0,0,167,108,5,0,0,0,0,0,1,0,0,0,36,0,0,0,41,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,208,108,5,0,0,0,0,0,49,46,1,0,36,1,0,0,208,108,5,0,0,0,0,0,1,0,0,0,36,0,0,0,116, 7,0,0,0,0,0,0,1,0,0,0,78,1,0,0,116,7,0,0,0,0,0,0,1,0,0,0,46,1,0,0,68,116,5,0,0,0,0,0,61,46,1,0,36,1,0,0,68,116,5,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,106,116,5,0,0,0,0,0,82,46,1,0,36,1,0,0,106, 116,5,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,167,116,5,0,0,0,0,0,93,46,1,0,36,1,0,0,167,116,5,0,0,0,0,0,1,0,0,0,36,0,0,0,131,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,4,0,0,0,0,0,0,109,46,1,0,38,11,0,0, 152,97,11,0,0,0,0,0,123,46,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,146,46,1,0,100,0,0,0,0,0,0,0,0,0,0,0,174,46,1,0,102,0,1,0,91,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,42,121,5,0,0,0,0,0,241,46, 1,0,36,1,0,0,42,121,5,0,0,0,0,0,1,0,0,0,36,0,0,0,100,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,142,121,5,0,0,0,0,0,252,46,1,0,36,1,0,0,142,121,5,0,0,0,0,0,1,0,0,0,36,0,0,0,97,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,239,121,5,0,0,0,0,0,7,47,1,0,36,1,0,0,239,121,5,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,61,122,5,0,0,0,0,0,21,47,1,0,36,1,0,0,61,122,5,0,0,0,0,0,1,0,0,0,36,0,0,0,183,0,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,183,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,122,5,0,0,0,0,0,37,47,1,0,36,1,0,0,244,122,5,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,91,123,5,0,0,0,0,0,62,47,1,0,36,1,0,0,91,123,5,0,0,0,0, 0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,187,123,5,0,0,0,0,0,77,47,1,0,36,1,0,0,187,123,5,0,0,0,0,0,1,0,0,0,36,0,0,0,54,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,241,123,5,0,0,0,0,0, 93,47,1,0,36,1,0,0,241,123,5,0,0,0,0,0,1,0,0,0,36,0,0,0,116,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,116,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,101,124,5,0,0,0,0,0,112,47,1,0,36,1,0,0,101,124,5,0,0,0,0,0,1,0,0,0,36,0,0,0,116,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,116,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,217,124,5,0,0,0,0,0,131,47,1,0,36,1,0,0,217,124,5,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,5,125,5,0,0,0,0,0,146,47,1,0,36,1,0,0,5,125,5,0,0,0,0,0,1,0,0,0,36,0,0,0,249,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,249,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,254,125,5,0,0,0,0,0,158,47,1,0,36,1,0,0,254,125,5,0,0,0,0,0,1,0,0,0,36,0,0,0,100,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,126,5,0,0,0,0,0,175,47,1,0,36,1,0,0,98,126, 5,0,0,0,0,0,1,0,0,0,36,0,0,0,250,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,250,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,92,128,5,0,0,0,0,0,189,47,1,0,36,1,0,0,92,128,5,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,118,128, 5,0,0,0,0,0,202,47,1,0,36,1,0,0,118,128,5,0,0,0,0,0,1,0,0,0,36,0,0,0,252,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,252,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,114,129,5,0,0,0,0,0,221,47,1,0,36,1,0,0,114,129,5,0,0,0,0,0,1,0,0,0,36,0,0,0,171,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 171,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,29,130,5,0,0,0,0,0,234,47,1,0,36,1,0,0,29,130,5,0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,86,130,5,0,0,0,0,0,250,47,1,0,36,1,0,0,86,130,5,0,0,0,0,0,1,0,0,0,36,0,0, 0,148,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,148,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,234,130,5,0,0,0,0,0,9,48,1,0,36,1,0,0,234,130,5,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,34,131,5,0,0,0,0,0,22,48,1,0,36,1,0, 0,34,131,5,0,0,0,0,0,1,0,0,0,36,0,0,0,116,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,116,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,150,132,5,0,0,0,0,0,36,48,1,0,36,1,0,0,150,132,5,0,0,0,0,0,1,0,0,0,36,0,0,0,216,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,216,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,110,133,5,0,0,0,0,0,45,48,1,0,36,1,0,0,110,133,5,0,0,0,0,0,1,0,0,0,36,0,0,0,201,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,201,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,55,135,5,0,0,0,0,0,58,48,1,0,36,1,0,0,55,135,5,0,0,0,0,0,1,0,0,0,36,0,0,0,43,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,43,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,135,5,0,0,0,0,0,68,48,1,0,36,1,0,0,98,135,5,0,0,0,0,0,1,0,0,0,36,0,0,0,115,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,213,135,5,0,0,0,0,0,79,48,1,0,36,1,0,0,213,135,5,0,0,0,0,0,1,0,0,0, 36,0,0,0,148,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,148,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,105,137,5,0,0,0,0,0,88,48,1,0,36,1,0,0,105,137,5,0,0,0,0,0,1,0,0,0,36,0,0,0,25,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,130,139,5,0,0,0,0,0,98,48,1, 0,36,1,0,0,130,139,5,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,139,5,0,0,0,0,0,109,48,1,0,36,1,0,0,217,139,5,0,0,0,0,0,1,0,0,0,36,0,0,0,88,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,49,140,5,0,0,0,0,0,121,48,1,0,36,1,0,0,49,140,5,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,105,140,5,0,0,0,0,0,131,48,1,0,36,1,0,0,105,140,5,0,0,0,0,0,1,0,0,0,36,0,0,0,153,0,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,153,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,2,141,5,0,0,0,0,0,142,48,1,0,36,1,0,0,2,141,5,0,0,0,0,0,1,0,0,0,36,0,0,0,129,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,129,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,131,141,5,0,0,0,0,0,152,48,1,0,36,1,0,0,131,141,5,0,0,0,0, 0,1,0,0,0,36,0,0,0,68,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,68,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,143,5,0,0,0,0,0,164,48,1,0,36,1,0,0,199,143,5,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,243,143,5,0,0,0,0, 0,175,48,1,0,36,1,0,0,243,143,5,0,0,0,0,0,1,0,0,0,36,0,0,0,123,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,123,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,144,5,0,0,0,0,0,187,48,1,0,36,1,0,0,110,144,5,0,0,0,0,0,1,0,0,0,36,0,0,0,86,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,196,144,5,0,0,0,0,0,200,48,1,0,36,1,0,0,196,144,5,0,0,0,0,0,1,0,0,0,36,0,0,0,158,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,158,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,146,5,0,0,0,0,0,217,48,1,0,36,1,0,0,98,146,5,0,0,0,0,0,1,0,0,0,36,0,0,0,114,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,114,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,212,146,5,0,0,0,0,0,232,48,1,0,36,1,0,0,212,146,5,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,61,147,5,0,0,0,0,0,245,48,1,0,36,1,0,0, 61,147,5,0,0,0,0,0,1,0,0,0,36,0,0,0,40,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0,101,151,5,0,0,0,0,0,4,49,1,0,36,1,0,0,101,151,5,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,128, 151,5,0,0,0,0,0,18,49,1,0,36,1,0,0,128,151,5,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,3,152,5,0,0,0,0,0,33,49,1,0,36,1,0,0,3,152,5,0,0,0,0,0,1,0,0,0,36,0,0,0,22,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,22, 1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,153,5,0,0,0,0,0,45,49,1,0,36,1,0,0,25,153,5,0,0,0,0,0,1,0,0,0,36,0,0,0,39,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,155,5,0,0,0,0,0,59,49,1,0,36,1,0,0,64,155,5,0,0,0,0,0,1,0,0,0,36,0,0,0,56, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,120,155,5,0,0,0,0,0,72,49,1,0,36,1,0,0,120,155,5,0,0,0,0,0,1,0,0,0,36,0,0,0,115,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,235,155,5,0,0,0,0,0,86,49,1,0,36,1,0,0, 235,155,5,0,0,0,0,0,1,0,0,0,36,0,0,0,99,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,78,156,5,0,0,0,0,0,99,49,1,0,36,1,0,0,78,156,5,0,0,0,0,0,1,0,0,0,36,0,0,0,96,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,174, 157,5,0,0,0,0,0,116,49,1,0,36,1,0,0,174,157,5,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,205,157,5,0,0,0,0,0,130,49,1,0,36,1,0,0,205,157,5,0,0,0,0,0,1,0,0,0,36,0,0,0,123,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,123,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,72,158,5,0,0,0,0,0,145,49,1,0,36,1,0,0,72,158,5,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,164,49,1,0,38,11,0,0,160,97,11,0,0,0,0,0,178,49,1,0,38,11,0,0,168,97,11,0,0,0,0,0,189,49, 1,0,38,11,0,0,176,97,11,0,0,0,0,0,200,49,1,0,38,11,0,0,184,97,11,0,0,0,0,0,212,49,1,0,38,11,0,0,192,97,11,0,0,0,0,0,227,49,1,0,38,11,0,0,200,97,11,0,0,0,0,0,242,49,1,0,38,11,0,0,208,97,11,0,0,0,0,0,0,50,1,0,38,11,0,0,216,97,11,0,0,0,0,0,1,0,0,0,100,1, 0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,15,50,1,0,100,0,0,0,0,0,0,0,0,0,0,0,39,50,1,0,102,0,1,0,91,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,118,158,5,0,0,0,0,0,102,50,1,0,36,1,0,0,118,158,5,0,0,0,0,0,1,0,0,0,36,0,0,0,194,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,194,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,56,159,5,0,0,0,0,0,122,50,1,0,36,1,0,0,56,159,5,0,0,0,0,0,1,0,0,0,36,0,0,0,65,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,65,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,121,162,5,0,0,0,0,0,139,50,1,0,36,1,0,0,121,162,5,0,0,0,0,0, 1,0,0,0,36,0,0,0,48,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,48,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,169,164,5,0,0,0,0,0,157,50,1,0,36,1,0,0,169,164,5,0,0,0,0,0,1,0,0,0,36,0,0,0,241,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,241,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,154,165,5,0,0,0,0, 0,176,50,1,0,36,1,0,0,154,165,5,0,0,0,0,0,1,0,0,0,36,0,0,0,156,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,54,167,5,0,0,0,0,0,196,50,1,0,36,1,0,0,54,167,5,0,0,0,0,0,1,0,0,0,36,0,0,0,151,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,151,1,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,205,168,5,0,0,0,0,0,212,50,1,0,36,1,0,0,205,168,5,0,0,0,0,0,1,0,0,0,36,0,0,0,237,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,237,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,186,169,5,0,0,0,0,0,232,50,1,0,36,1,0,0,186,169,5,0,0,0,0,0,1,0,0,0,36,0,0,0,182, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,112,170,5,0,0,0,0,0,245,50,1,0,36,1,0,0,112,170,5,0,0,0,0,0,1,0,0,0,36,0,0,0,140,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,140,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,252,170,5,0,0,0,0,0,5,51,1,0,36,1,0,0, 252,170,5,0,0,0,0,0,1,0,0,0,36,0,0,0,67,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,173,5,0,0,0,0,0,18,51,1,0,36,1,0,0,63,173,5,0,0,0,0,0,1,0,0,0,36,0,0,0,20,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,20,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,83, 175,5,0,0,0,0,0,37,51,1,0,36,1,0,0,83,175,5,0,0,0,0,0,1,0,0,0,36,0,0,0,163,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,163,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,246,176,5,0,0,0,0,0,52,51,1,0,36,1,0,0,246,176,5,0,0,0,0,0,1,0,0,0,36,0,0,0,226,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,226,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,216,177,5,0,0,0,0,0,64,51,1,0,36,1,0,0,216,177,5,0,0,0,0,0,1,0,0,0,36,0,0,0,98,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,98,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,58,180,5,0,0,0,0,0,77,51,1,0,36,1,0,0,58,180,5,0,0,0,0,0,1,0,0,0,36,0, 0,0,40,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,183,5,0,0,0,0,0,90,51,1,0,36,1,0,0,98,183,5,0,0,0,0,0,1,0,0,0,36,0,0,0,102,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,200,186,5,0,0,0,0,0,104,51,1,0,36, 1,0,0,200,186,5,0,0,0,0,0,1,0,0,0,36,0,0,0,112,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,56,187,5,0,0,0,0,0,118,51,1,0,36,1,0,0,56,187,5,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,143,187,5,0,0,0,0,0,135,51,1,0,36,1,0,0,143,187,5,0,0,0,0,0,1,0,0,0,36,0,0,0,54,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,197,187,5,0,0,0,0,0,152,51,1,0,36,1,0,0,197,187,5,0,0,0,0,0,1,0,0,0,36,0,0,0,213,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,213,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,154,188,5,0,0,0,0,0,167,51,1,0,36,1,0,0,154,188,5,0,0,0,0,0,1,0,0,0,36,0,0,0,85,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,239,188,5,0,0,0,0,0,180,51,1,0,36,1,0,0,239,188,5,0,0,0,0, 0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,35,189,5,0,0,0,0,0,194,51,1,0,36,1,0,0,35,189,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,87,189,5,0,0,0,0,0,206, 51,1,0,36,1,0,0,87,189,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,139,189,5,0,0,0,0,0,220,51,1,0,36,1,0,0,139,189,5,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1, 0,0,0,46,1,0,0,174,189,5,0,0,0,0,0,233,51,1,0,36,1,0,0,174,189,5,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,209,189,5,0,0,0,0,0,249,51,1,0,36,1,0,0,209,189,5,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,189,5,0,0,0,0,0,7,52,1,0,36,1,0,0,244,189,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,190,5,0,0,0,0,0,25,52,1,0,36,1,0,0,40,190,5,0,0,0, 0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,92,190,5,0,0,0,0,0,44,52,1,0,36,1,0,0,92,190,5,0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,149,190,5,0,0,0,0,0, 57,52,1,0,36,1,0,0,149,190,5,0,0,0,0,0,1,0,0,0,36,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,173,190,5,0,0,0,0,0,79,52,1,0,36,1,0,0,173,190,5,0,0,0,0,0,1,0,0,0,36,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,197,190,5,0,0,0,0,0,101,52,1,0,36,1,0,0,197,190,5,0,0,0,0,0,1,0,0,0,36,0,0,0,226,7,0,0,0,0,0,0,1,0,0,0,78,1,0,0,226,7,0,0,0,0,0,0,1,0,0,0,46,1,0,0,167,198,5,0,0,0,0,0,115,52,1,0,36,1,0,0,167,198,5,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,205,198,5,0,0,0,0,0,136,52,1,0,36,1,0,0,205,198,5,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,247,198,5,0,0,0,0,0,148,52,1,0,36,1,0,0,247,198, 5,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,33,199,5,0,0,0,0,0,159,52,1,0,36,1,0,0,33,199,5,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,199,5,0, 0,0,0,0,170,52,1,0,36,1,0,0,94,199,5,0,0,0,0,0,1,0,0,0,36,0,0,0,174,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,174,8,0,0,0,0,0,0,186,52,1,0,38,11,0,0,224,97,11,0,0,0,0,0,200,52,1,0,38,11,0,0,232,97,11,0,0,0,0,0,218,52,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1, 0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,241,52,1,0,100,0,0,0,0,0,0,0,0,0,0,0,11,53,1,0,102,0,1,0,92,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,12,208,5,0,0,0,0,0,76,53,1,0,36,1,0,0,12,208,5,0,0,0,0,0,1,0,0,0,36,0,0,0,215,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,215,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,227,208,5,0,0,0,0,0,97,53,1,0,36,1,0,0,227,208,5,0,0,0,0,0,1,0,0,0,36,0,0,0,153,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,153,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,124,211,5,0,0,0,0,0,115,53,1,0,36,1,0,0,124,211,5,0,0,0,0, 0,1,0,0,0,36,0,0,0,245,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,245,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,113,213,5,0,0,0,0,0,134,53,1,0,36,1,0,0,113,213,5,0,0,0,0,0,1,0,0,0,36,0,0,0,202,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,59,214,5,0,0,0, 0,0,154,53,1,0,36,1,0,0,59,214,5,0,0,0,0,0,1,0,0,0,36,0,0,0,23,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,215,5,0,0,0,0,0,175,53,1,0,36,1,0,0,82,215,5,0,0,0,0,0,1,0,0,0,36,0,0,0,129,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,129,1,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,211,216,5,0,0,0,0,0,192,53,1,0,36,1,0,0,211,216,5,0,0,0,0,0,1,0,0,0,36,0,0,0,176,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,131,217,5,0,0,0,0,0,213,53,1,0,36,1,0,0,131,217,5,0,0,0,0,0,1,0,0,0,36,0,0,0,182, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,57,218,5,0,0,0,0,0,227,53,1,0,36,1,0,0,57,218,5,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,188,218,5,0,0,0,0,0,244,53,1,0,36,1,0,0, 188,218,5,0,0,0,0,0,1,0,0,0,36,0,0,0,125,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,57,221,5,0,0,0,0,0,2,54,1,0,36,1,0,0,57,221,5,0,0,0,0,0,1,0,0,0,36,0,0,0,17,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,17,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,74, 222,5,0,0,0,0,0,24,54,1,0,36,1,0,0,74,222,5,0,0,0,0,0,1,0,0,0,36,0,0,0,190,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,190,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,8,224,5,0,0,0,0,0,46,54,1,0,36,1,0,0,8,224,5,0,0,0,0,0,1,0,0,0,36,0,0,0,62,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62, 2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,70,226,5,0,0,0,0,0,66,54,1,0,36,1,0,0,70,226,5,0,0,0,0,0,1,0,0,0,36,0,0,0,39,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,109,227,5,0,0,0,0,0,80,54,1,0,36,1,0,0,109,227,5,0,0,0,0,0,1,0,0,0,36,0,0,0,145, 1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,145,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,254,228,5,0,0,0,0,0,96,54,1,0,36,1,0,0,254,228,5,0,0,0,0,0,1,0,0,0,36,0,0,0,213,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,213,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,211,230,5,0,0,0,0,0,112,54,1,0,36,1,0, 0,211,230,5,0,0,0,0,0,1,0,0,0,36,0,0,0,65,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,65,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20,232,5,0,0,0,0,0,127,54,1,0,36,1,0,0,20,232,5,0,0,0,0,0,1,0,0,0,36,0,0,0,143,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,143,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,163,232,5,0,0,0,0,0,145,54,1,0,36,1,0,0,163,232,5,0,0,0,0,0,1,0,0,0,36,0,0,0,190,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,190,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,234,5,0,0,0,0,0,158,54,1,0,36,1,0,0,97,234,5,0,0,0,0,0,1,0,0,0,36,0,0,0,60,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,157,234,5,0,0,0,0,0,173,54,1,0,36,1,0,0,157,234,5,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,6,235,5,0,0,0,0,0,187,54,1,0,36,1,0,0,6,235,5,0,0,0,0,0,1,0,0,0, 36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,58,235,5,0,0,0,0,0,202,54,1,0,36,1,0,0,58,235,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,235,5,0,0,0,0,0,215,54,1,0, 36,1,0,0,110,235,5,0,0,0,0,0,1,0,0,0,36,0,0,0,86,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,196,235,5,0,0,0,0,0,230,54,1,0,36,1,0,0,196,235,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,248,235,5,0,0,0,0,0,245,54,1,0,36,1,0,0,248,235,5,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,27,236,5,0,0,0,0,0,3,55,1,0,36,1,0,0,27,236,5,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,236,5,0,0,0,0,0,20,55,1,0,36,1,0,0,62,236,5,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,236,5,0,0,0,0,0,35,55,1,0,36,1,0,0,97,236,5,0,0,0,0,0,1,0,0, 0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,149,236,5,0,0,0,0,0,54,55,1,0,36,1,0,0,149,236,5,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,201,236,5,0,0,0,0,0,74,55,1, 0,36,1,0,0,201,236,5,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,6,237,5,0,0,0,0,0,87,55,1,0,36,1,0,0,6,237,5,0,0,0,0,0,1,0,0,0,36,0,0,0,89,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,89,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,95,237,5,0,0,0,0,0,100,55,1,0,36,1,0,0,95,237,5,0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,152,237,5,0,0,0,0,0,114,55,1,0,36,1,0,0,152,237,5,0,0,0,0,0,1,0,0,0,36,0,0,0,43,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,43,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,237,5,0,0,0,0,0,130,55,1,0,36,1,0,0,195,237,5,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20,238,5,0,0,0,0,0,148,55,1,0,36,1,0,0,20,238,5,0,0,0,0,0,1,0, 0,0,36,0,0,0,150,8,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,246,5,0,0,0,0,0,161,55,1,0,36,1,0,0,170,246,5,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,208,246,5,0,0,0,0,0,182, 55,1,0,36,1,0,0,208,246,5,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,13,247,5,0,0,0,0,0,196,55,1,0,36,1,0,0,13,247,5,0,0,0,0,0,1,0,0,0,36,0,0,0,69,5,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,5,0,0,0,0,0,0,213, 55,1,0,38,11,0,0,240,97,11,0,0,0,0,0,228,55,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,252,55,1,0,100,0,0,0,0,0,0,0,0,0,0,0,22,56,1,0,102,0,1,0,92,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,82,252,5, 0,0,0,0,0,87,56,1,0,36,1,0,0,82,252,5,0,0,0,0,0,1,0,0,0,36,0,0,0,220,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,220,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,46,253,5,0,0,0,0,0,102,56,1,0,36,1,0,0,46,253,5,0,0,0,0,0,1,0,0,0,36,0,0,0,159,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,159,1, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,205,254,5,0,0,0,0,0,118,56,1,0,36,1,0,0,205,254,5,0,0,0,0,0,1,0,0,0,36,0,0,0,128,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,128,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,77,255,5,0,0,0,0,0,134,56,1,0,36,1,0,0,77,255,5,0,0,0,0,0,1,0,0,0,36,0,0,0, 107,6,0,0,0,0,0,0,1,0,0,0,78,1,0,0,107,6,0,0,0,0,0,0,1,0,0,0,46,1,0,0,184,5,6,0,0,0,0,0,147,56,1,0,36,1,0,0,184,5,6,0,0,0,0,0,1,0,0,0,36,0,0,0,24,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0,208,9,6,0,0,0,0,0,161,56,1,0,36,1,0,0,208, 9,6,0,0,0,0,0,1,0,0,0,36,0,0,0,181,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,181,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,133,11,6,0,0,0,0,0,176,56,1,0,36,1,0,0,133,11,6,0,0,0,0,0,1,0,0,0,36,0,0,0,214,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,214,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,91,14, 6,0,0,0,0,0,192,56,1,0,36,1,0,0,91,14,6,0,0,0,0,0,1,0,0,0,36,0,0,0,137,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,137,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,228,16,6,0,0,0,0,0,204,56,1,0,36,1,0,0,228,16,6,0,0,0,0,0,1,0,0,0,36,0,0,0,209,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,209, 1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,18,6,0,0,0,0,0,220,56,1,0,36,1,0,0,181,18,6,0,0,0,0,0,1,0,0,0,36,0,0,0,151,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,76,19,6,0,0,0,0,0,229,56,1,0,36,1,0,0,76,19,6,0,0,0,0,0,1,0,0,0,36,0,0,0,136, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,136,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,212,19,6,0,0,0,0,0,241,56,1,0,36,1,0,0,212,19,6,0,0,0,0,0,1,0,0,0,36,0,0,0,214,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,214,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,21,6,0,0,0,0,0,250,56,1,0,36,1,0,0, 170,21,6,0,0,0,0,0,1,0,0,0,36,0,0,0,95,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,95,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,9,22,6,0,0,0,0,0,11,57,1,0,36,1,0,0,9,22,6,0,0,0,0,0,1,0,0,0,36,0,0,0,7,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,7,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,16,25,6,0, 0,0,0,0,21,57,1,0,36,1,0,0,16,25,6,0,0,0,0,0,1,0,0,0,36,0,0,0,193,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,193,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,209,26,6,0,0,0,0,0,36,57,1,0,36,1,0,0,209,26,6,0,0,0,0,0,1,0,0,0,36,0,0,0,63,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,63,1,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,16,28,6,0,0,0,0,0,47,57,1,0,36,1,0,0,16,28,6,0,0,0,0,0,1,0,0,0,36,0,0,0,180,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,180,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,196,28,6,0,0,0,0,0,56,57,1,0,36,1,0,0,196,28,6,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,248,28,6,0,0,0,0,0,66,57,1,0,36,1,0,0,248,28,6,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,44,29,6,0,0,0,0,0,74,57,1,0,36,1,0,0,44,29,6,0,0,0, 0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,96,29,6,0,0,0,0,0,84,57,1,0,36,1,0,0,96,29,6,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,131,29,6,0,0,0,0,0,96, 57,1,0,36,1,0,0,131,29,6,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,166,29,6,0,0,0,0,0,106,57,1,0,36,1,0,0,166,29,6,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,218,29,6,0,0,0,0,0,120,57,1,0,36,1,0,0,218,29,6,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,14,30,6,0,0,0,0,0,135,57,1,0,36,1,0,0,14,30,6,0,0,0,0,0,1,0,0,0,36,0,0,0,39,1,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,39,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,53,31,6,0,0,0,0,0,145,57,1,0,36,1,0,0,53,31,6,0,0,0,0,0,1,0,0,0,36,0,0,0,39,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,92,32,6,0,0,0,0,0,153,57,1,0,36,1,0,0,92,32,6,0,0,0,0,0,1,0,0, 0,36,0,0,0,163,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,163,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,255,32,6,0,0,0,0,0,162,57,1,0,36,1,0,0,255,32,6,0,0,0,0,0,1,0,0,0,36,0,0,0,244,6,0,0,0,0,0,0,1,0,0,0,78,1,0,0,244,6,0,0,0,0,0,0,1,0,0,0,46,1,0,0,243,39,6,0,0,0,0,0,170,57, 1,0,36,1,0,0,243,39,6,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,40,6,0,0,0,0,0,191,57,1,0,36,1,0,0,25,40,6,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,86,40,6,0,0,0,0,0,200,57,1,0,36,1,0,0,86,40,6,0,0,0,0,0,1,0,0,0,36,0,0,0,119,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,119,3,0,0,0,0,0,0,217,57,1,0,38,11,0,0,248,97,11,0,0,0,0,0,227,57,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189, 0,0,100,0,0,0,0,0,0,0,0,0,0,0,246,57,1,0,100,0,0,0,0,0,0,0,0,0,0,0,13,58,1,0,102,0,1,0,92,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,208,43,6,0,0,0,0,0,75,58,1,0,36,1,0,0,208,43,6,0,0,0,0,0,1,0,0,0,36,0,0,0,50,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,50,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,2,44,6,0,0,0,0,0,90,58,1,0,36,1,0,0,2,44,6,0,0,0,0,0,1,0,0,0,36,0,0,0,28,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,44,6,0,0,0,0,0,103,58,1,0,36,1,0,0,30,44,6,0,0,0,0,0,1,0,0,0,36,0,0,0,91,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,91,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,121,44,6,0,0,0,0,0,119,58,1,0,36,1,0,0,121,44,6,0,0,0,0,0,1,0,0,0,36,0,0,0,171,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,171,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,36,45,6,0,0,0,0,0,132,58,1,0,36,1,0,0,36,45,6,0,0,0,0,0,1,0, 0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,45,6,0,0,0,0,0,150,58,1,0,36,1,0,0,123,45,6,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,163,45,6,0,0,0,0,0,166,58, 1,0,36,1,0,0,163,45,6,0,0,0,0,0,1,0,0,0,36,0,0,0,90,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,253,45,6,0,0,0,0,0,185,58,1,0,36,1,0,0,253,45,6,0,0,0,0,0,1,0,0,0,36,0,0,0,57,5,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,5,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,54,51,6,0,0,0,0,0,198,58,1,0,36,1,0,0,54,51,6,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,92,51,6,0,0,0,0,0,219,58,1,0,36,1,0,0,92,51,6,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,241,58,1,0,100,0,0,0,0,0,0,0,0,0,0,0,10,59,1,0,102,0,1,0,92,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,140,51,6,0,0,0,0,0,74,59,1,0,36,1,0,0,140,51,6,0,0,0,0,0,1,0, 0,0,36,0,0,0,59,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,51,6,0,0,0,0,0,86,59,1,0,36,1,0,0,199,51,6,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,255,51,6,0,0,0,0,0,99,59,1, 0,36,1,0,0,255,51,6,0,0,0,0,0,1,0,0,0,36,0,0,0,169,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,169,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,168,52,6,0,0,0,0,0,117,59,1,0,36,1,0,0,168,52,6,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,214,52,6,0,0,0,0,0,138,59,1,0,36,1,0,0,214,52,6,0,0,0,0,0,1,0,0,0,36,0,0,0,68,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,68,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,26,53,6,0,0,0,0,0,152,59,1,0,36,1,0,0,26,53,6,0,0,0,0,0,1,0,0,0,36,0,0,0,86,8,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,86,8,0,0,0,0,0,0,1,0,0,0,46,1,0,0,112,61,6,0,0,0,0,0,165,59,1,0,36,1,0,0,112,61,6,0,0,0,0,0,1,0,0,0,36,0,0,0,142,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,142,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,254,63,6,0,0,0,0,0,181,59,1,0,36,1,0,0,254,63,6,0,0,0,0,0,1,0, 0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,36,64,6,0,0,0,0,0,202,59,1,0,36,1,0,0,36,64,6,0,0,0,0,0,1,0,0,0,36,0,0,0,201,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,237,64,6,0,0,0,0,0,214,59, 1,0,36,1,0,0,237,64,6,0,0,0,0,0,1,0,0,0,36,0,0,0,78,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,59,68,6,0,0,0,0,0,227,59,1,0,36,1,0,0,59,68,6,0,0,0,0,0,1,0,0,0,36,0,0,0,213,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,213,2,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,16,71,6,0,0,0,0,0,245,59,1,0,36,1,0,0,16,71,6,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,71,6,0,0,0,0,0,5,60,1,0,36,1,0,0,62,71,6,0,0,0,0,0,1,0,0,0,36,0,0,0,104,2,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,104,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,166,73,6,0,0,0,0,0,21,60,1,0,36,1,0,0,166,73,6,0,0,0,0,0,1,0,0,0,36,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,92,74,6,0,0,0,0,0,35,60,1,0,36,1,0,0,92,74,6,0,0,0,0,0,1,0,0,0,36, 0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,108,74,6,0,0,0,0,0,52,60,1,0,36,1,0,0,108,74,6,0,0,0,0,0,1,0,0,0,36,0,0,0,18,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,126,74,6,0,0,0,0,0,67,60,1,0,36,1, 0,0,126,74,6,0,0,0,0,0,1,0,0,0,36,0,0,0,55,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,55,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,75,6,0,0,0,0,0,89,60,1,0,36,1,0,0,181,75,6,0,0,0,0,0,1,0,0,0,36,0,0,0,145,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,145,2,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,70,78,6,0,0,0,0,0,112,60,1,0,36,1,0,0,70,78,6,0,0,0,0,0,1,0,0,0,36,0,0,0,73,6,0,0,0,0,0,0,1,0,0,0,78,1,0,0,73,6,0,0,0,0,0,0,1,0,0,0,46,1,0,0,143,84,6,0,0,0,0,0,125,60,1,0,36,1,0,0,143,84,6,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,105,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,248,84,6,0,0,0,0,0,140,60,1,0,36,1,0,0,248,84,6,0,0,0,0,0,1,0,0,0,36,0,0,0,102,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,85,6,0,0,0,0,0,156,60,1,0,36,1,0,0,94,85,6,0,0,0,0,0,1,0,0,0,36,0, 0,0,222,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,222,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,88,6,0,0,0,0,0,169,60,1,0,36,1,0,0,60,88,6,0,0,0,0,0,1,0,0,0,36,0,0,0,3,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,3,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,89,6,0,0,0,0,0,193,60,1,0,36,1,0,0, 63,89,6,0,0,0,0,0,1,0,0,0,36,0,0,0,3,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,3,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,90,6,0,0,0,0,0,215,60,1,0,36,1,0,0,66,90,6,0,0,0,0,0,1,0,0,0,36,0,0,0,94,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,94,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,94,6, 0,0,0,0,0,229,60,1,0,36,1,0,0,160,94,6,0,0,0,0,0,1,0,0,0,36,0,0,0,153,51,0,0,0,0,0,0,1,0,0,0,78,1,0,0,153,51,0,0,0,0,0,0,1,0,0,0,46,1,0,0,57,146,6,0,0,0,0,0,245,60,1,0,36,1,0,0,57,146,6,0,0,0,0,0,1,0,0,0,36,0,0,0,142,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,142, 1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,147,6,0,0,0,0,0,3,61,1,0,36,1,0,0,199,147,6,0,0,0,0,0,1,0,0,0,36,0,0,0,63,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,63,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,6,149,6,0,0,0,0,0,20,61,1,0,36,1,0,0,6,149,6,0,0,0,0,0,1,0,0,0,36,0,0,0,159, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,159,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,35,61,1,0,100,0,0,0,0,0,0,0,0,0,0,0,59,61,1,0,102,0,1,0,93,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,168,149,6,0,0,0,0,0,122,61,1,0,36,1, 0,0,168,149,6,0,0,0,0,0,1,0,0,0,36,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,234,149,6,0,0,0,0,0,142,61,1,0,36,1,0,0,234,149,6,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,83,150,6,0,0,0,0,0,158,61,1,0,36,1,0,0,83,150,6,0,0,0,0,0,1,0,0,0,36,0,0,0,137,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,137,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,220,150,6,0,0,0,0,0,177,61,1,0,36,1,0,0,220,150,6,0,0,0,0,0,1,0,0,0,36,0,0,0,134,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,134,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,151,6,0,0,0,0,0,194,61,1,0,36,1,0,0,98,151,6,0,0,0,0,0,1,0,0,0,36,0,0,0,137,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,137,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,235,151,6,0,0,0,0,0,212,61,1,0,36,1,0,0,235,151,6,0,0,0,0, 0,1,0,0,0,36,0,0,0,139,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,139,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,118,153,6,0,0,0,0,0,228,61,1,0,36,1,0,0,118,153,6,0,0,0,0,0,1,0,0,0,36,0,0,0,47,5,0,0,0,0,0,0,1,0,0,0,78,1,0,0,47,5,0,0,0,0,0,0,1,0,0,0,46,1,0,0,165,158,6,0,0,0, 0,0,239,61,1,0,36,1,0,0,165,158,6,0,0,0,0,0,1,0,0,0,36,0,0,0,14,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,14,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,179,160,6,0,0,0,0,0,1,62,1,0,36,1,0,0,179,160,6,0,0,0,0,0,1,0,0,0,36,0,0,0,29,6,0,0,0,0,0,0,1,0,0,0,78,1,0,0,29,6,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,208,166,6,0,0,0,0,0,18,62,1,0,36,1,0,0,208,166,6,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,234,166,6,0,0,0,0,0,33,62,1,0,36,1,0,0,234,166,6,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,4,167,6,0,0,0,0,0,51,62,1,0,36,1,0,0,4,167,6,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,167,6,0,0,0,0,0,69,62,1,0,36,1,0,0,30,167,6,0,0, 0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,56,167,6,0,0,0,0,0,86,62,1,0,36,1,0,0,56,167,6,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,167,6,0,0,0,0, 0,101,62,1,0,36,1,0,0,82,167,6,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,108,167,6,0,0,0,0,0,120,62,1,0,36,1,0,0,108,167,6,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,134,167,6,0,0,0,0,0,137,62,1,0,36,1,0,0,134,167,6,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,167,6,0,0,0,0,0,160,62,1,0,36,1,0,0,160,167,6,0,0,0,0,0,1,0,0,0,36,0,0,0,20,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,20,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,180,167,6,0,0,0,0,0,175,62,1,0,36,1,0,0,180,167,6,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,201,167,6,0,0,0,0,0,194,62,1,0,36,1,0,0,201, 167,6,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,227,167,6,0,0,0,0,0,215,62,1,0,36,1,0,0,227,167,6,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,248, 167,6,0,0,0,0,0,235,62,1,0,36,1,0,0,248,167,6,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,13,168,6,0,0,0,0,0,1,63,1,0,36,1,0,0,13,168,6,0,0,0,0,0,1,0,0,0,36,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,37,168,6,0,0,0,0,0,22,63,1,0,36,1,0,0,37,168,6,0,0,0,0,0,1,0,0,0,36,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,101,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,138,168,6,0,0,0,0,0,41,63,1,0,36,1,0,0,138,168,6,0,0,0,0,0,1,0,0,0,36,0,0,0, 107,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245,168,6,0,0,0,0,0,63,63,1,0,36,1,0,0,245,168,6,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,10,169,6,0,0,0,0,0,85,63,1,0,36,1,0, 0,10,169,6,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,169,6,0,0,0,0,0,103,63,1,0,36,1,0,0,31,169,6,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66, 169,6,0,0,0,0,0,119,63,1,0,36,1,0,0,66,169,6,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,92,169,6,0,0,0,0,0,136,63,1,0,36,1,0,0,92,169,6,0,0,0,0,0,1,0,0,0,36,0,0,0,18,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,169,6,0,0,0,0,0,153,63,1,0,36,1,0,0,110,169,6,0,0,0,0,0,1,0,0,0,36,0,0,0,29,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,139,169,6,0,0,0,0,0,176,63,1,0,36,1,0,0,139,169,6,0,0,0,0,0,1,0,0,0,36,0,0, 0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,169,6,0,0,0,0,0,199,63,1,0,36,1,0,0,160,169,6,0,0,0,0,0,1,0,0,0,36,0,0,0,80,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,170,6,0,0,0,0,0,209,63,1,0,36,1, 0,0,240,170,6,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,171,6,0,0,0,0,0,230,63,1,0,36,1,0,0,22,171,6,0,0,0,0,0,1,0,0,0,36,0,0,0,28,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,50,171,6,0,0,0,0,0,238,63,1,0,36,1,0,0,50,171,6,0,0,0,0,0,1,0,0,0,36,0,0,0,19,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,19,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,69,172,6,0,0,0,0,0,253,63,1,0,36,1,0,0,69,172,6,0,0,0,0,0,1,0,0,0,36,0,0,0,108,2,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,108,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,177,174,6,0,0,0,0,0,11,64,1,0,36,1,0,0,177,174,6,0,0,0,0,0,1,0,0,0,36,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,177,175,6,0,0,0,0,0,22,64,1,0,36,1,0,0,177,175,6,0,0,0,0,0,1,0,0,0,36, 0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,193,175,6,0,0,0,0,0,33,64,1,0,36,1,0,0,193,175,6,0,0,0,0,0,1,0,0,0,36,0,0,0,163,7,0,0,0,0,0,0,1,0,0,0,78,1,0,0,163,7,0,0,0,0,0,0,1,0,0,0,46,1,0,0,100,183,6,0,0,0,0,0,47,64,1,0, 36,1,0,0,100,183,6,0,0,0,0,0,1,0,0,0,36,0,0,0,132,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,132,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,232,186,6,0,0,0,0,0,57,64,1,0,36,1,0,0,232,186,6,0,0,0,0,0,1,0,0,0,36,0,0,0,211,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,211,0,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,187,187,6,0,0,0,0,0,73,64,1,0,36,1,0,0,187,187,6,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,193,187,6,0,0,0,0,0,81,64,1,0,36,1,0,0,193,187,6,0,0,0,0,0,1,0,0,0,36,0,0,0,147,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,147,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,84,188,6,0,0,0,0,0,88,64,1,0,36,1,0,0,84,188,6,0,0,0,0,0,1,0,0,0,36,0,0,0,102,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,0,0,0,0,96,64,1,0,38,10,0,0,128,55,11,0,0,0,0,0,114,64,1,0,32,10,0,0,0,0,0,0,0,0,0, 0,125,64,1,0,32,10,0,0,0,0,0,0,0,0,0,0,134,64,1,0,32,10,0,0,0,0,0,0,0,0,0,0,144,64,1,0,32,10,0,0,0,0,0,0,0,0,0,0,152,64,1,0,32,10,0,0,0,0,0,0,0,0,0,0,160,64,1,0,32,10,0,0,0,0,0,0,0,0,0,0,172,64,1,0,32,10,0,0,0,0,0,0,0,0,0,0,182,64,1,0,32,10,0,0,0,0,0, 0,0,0,0,0,188,64,1,0,32,10,0,0,0,0,0,0,0,0,0,0,194,64,1,0,32,10,0,0,0,0,0,0,0,0,0,0,199,64,1,0,32,10,0,0,0,0,0,0,0,0,0,0,204,64,1,0,32,10,0,0,0,0,0,0,0,0,0,0,208,64,1,0,38,10,0,0,32,57,11,0,0,0,0,0,217,64,1,0,38,11,0,0,0,98,11,0,0,0,0,0,232,64,1,0,38, 11,0,0,32,98,11,0,0,0,0,0,241,64,1,0,38,11,0,0,32,130,11,0,0,0,0,0,0,65,1,0,32,12,0,0,0,0,0,0,0,0,0,0,8,65,1,0,32,12,0,0,0,0,0,0,0,0,0,0,24,65,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,40,65, 1,0,100,0,0,0,0,0,0,0,0,0,0,0,63,65,1,0,102,0,1,0,93,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,186,188,6,0,0,0,0,0,125,65,1,0,36,1,0,0,186,188,6,0,0,0,0,0,1,0,0,0,36,0,0,0,216,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,216,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0, 0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,136,65,1,0,100,0,0,0,0,0,0,0,0,0,0,0,159,65,1,0,102,0,1,0,93,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,146,189,6,0,0,0,0,0,221,65,1,0,36,1,0,0,146,189,6,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,197,189,6,0,0,0,0,0,235,65,1,0,36,1,0,0,197,189,6,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,239,189,6,0,0,0,0,0,246,65,1,0,36,1,0,0,239,189,6,0,0,0,0,0,1,0,0,0,36,0,0, 0,204,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,204,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,187,190,6,0,0,0,0,0,3,66,1,0,36,1,0,0,187,190,6,0,0,0,0,0,1,0,0,0,36,0,0,0,53,6,0,0,0,0,0,0,1,0,0,0,78,1,0,0,53,6,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,196,6,0,0,0,0,0,14,66,1,0,36,1, 0,0,240,196,6,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,30,66,1,0,38,11,0,0,40,130,11,0,0,0,0,0,40,66,1,0,32,12,0,0,0,0,0,0,0,0,0,0,55,66,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0, 100,0,0,0,0,0,0,0,0,0,0,0,65,66,1,0,100,0,0,0,0,0,0,0,0,0,0,0,90,66,1,0,102,0,1,0,93,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,53,197,6,0,0,0,0,0,154,66,1,0,36,1,0,0,53,197,6,0,0,0,0,0,1,0,0,0,36,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,128,197,6,0,0,0,0,0,164,66,1,0,36,1,0,0,128,197,6,0,0,0,0,0,1,0,0,0,36,0,0,0,23,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,151,197,6,0,0,0,0,0,175,66,1,0,36,1,0,0,151,197,6,0,0,0,0,0,1,0,0,0,36,0,0,0,98,0,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,98,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,249,197,6,0,0,0,0,0,186,66,1,0,36,1,0,0,249,197,6,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,39,198,6,0,0,0,0,0,207,66,1,0,36,1,0,0,39,198,6,0,0, 0,0,0,1,0,0,0,36,0,0,0,214,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,214,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,253,198,6,0,0,0,0,0,220,66,1,0,36,1,0,0,253,198,6,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,41,199,6,0,0, 0,0,0,241,66,1,0,36,1,0,0,41,199,6,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,252,66,1,0,100,0,0,0,0,0,0,0,0,0,0,0,18,67,1,0,102,0,1,0,93,96,143, 77,0,0,0,0,1,0,0,0,46,1,0,0,83,199,6,0,0,0,0,0,79,67,1,0,36,1,0,0,83,199,6,0,0,0,0,0,1,0,0,0,36,0,0,0,207,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,207,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,34,200,6,0,0,0,0,0,90,67,1,0,36,1,0,0,34,200,6,0,0,0,0,0,1,0,0,0,36,0,0,0,64,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,200,6,0,0,0,0,0,107,67,1,0,36,1,0,0,98,200,6,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,159,200,6,0,0,0,0,0,120,67,1,0,36,1,0,0,159, 200,6,0,0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,201,6,0,0,0,0,0,132,67,1,0,36,1,0,0,64,201,6,0,0,0,0,0,1,0,0,0,36,0,0,0,187,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,251, 201,6,0,0,0,0,0,147,67,1,0,36,1,0,0,251,201,6,0,0,0,0,0,1,0,0,0,36,0,0,0,223,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,223,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,218,202,6,0,0,0,0,0,160,67,1,0,36,1,0,0,218,202,6,0,0,0,0,0,1,0,0,0,36,0,0,0,187,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,187,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,149,203,6,0,0,0,0,0,174,67,1,0,36,1,0,0,149,203,6,0,0,0,0,0,1,0,0,0,36,0,0,0,31,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,180,204,6,0,0,0,0,0,186,67,1,0,36,1,0,0,180,204,6,0,0,0,0,0,1,0,0, 0,36,0,0,0,121,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,45,205,6,0,0,0,0,0,202,67,1,0,36,1,0,0,45,205,6,0,0,0,0,0,1,0,0,0,36,0,0,0,137,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,137,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,182,205,6,0,0,0,0,0,214, 67,1,0,36,1,0,0,182,205,6,0,0,0,0,0,1,0,0,0,36,0,0,0,94,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,94,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20,206,6,0,0,0,0,0,236,67,1,0,36,1,0,0,20,206,6,0,0,0,0,0,1,0,0,0,36,0,0,0,175,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,0,0,0,0,1, 0,0,0,46,1,0,0,195,206,6,0,0,0,0,0,254,67,1,0,36,1,0,0,195,206,6,0,0,0,0,0,1,0,0,0,36,0,0,0,28,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,223,206,6,0,0,0,0,0,16,68,1,0,36,1,0,0,223,206,6,0,0,0,0,0,1,0,0,0,36,0,0,0,175,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,175,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,142,207,6,0,0,0,0,0,32,68,1,0,36,1,0,0,142,207,6,0,0,0,0,0,1,0,0,0,36,0,0,0,29,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,171,207,6,0,0,0,0,0,52,68,1,0,36,1,0,0,171,207,6,0, 0,0,0,0,1,0,0,0,36,0,0,0,175,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,90,208,6,0,0,0,0,0,69,68,1,0,36,1,0,0,90,208,6,0,0,0,0,0,1,0,0,0,36,0,0,0,2,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,2,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,92,209,6,0,0,0, 0,0,79,68,1,0,36,1,0,0,92,209,6,0,0,0,0,0,1,0,0,0,36,0,0,0,214,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,214,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,50,211,6,0,0,0,0,0,89,68,1,0,36,1,0,0,50,211,6,0,0,0,0,0,1,0,0,0,36,0,0,0,20,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,20,0,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,70,211,6,0,0,0,0,0,109,68,1,0,36,1,0,0,70,211,6,0,0,0,0,0,1,0,0,0,36,0,0,0,12,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,12,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,211,6,0,0,0,0,0,127,68,1,0,36,1,0,0,82,211,6,0,0,0,0,0,1,0,0,0,36,0,0,0,157,0,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,157,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,239,211,6,0,0,0,0,0,139,68,1,0,36,1,0,0,239,211,6,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,21,212,6,0,0,0,0,0,158,68,1,0,36,1,0,0,21,212,6, 0,0,0,0,0,1,0,0,0,36,0,0,0,111,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,111,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,132,212,6,0,0,0,0,0,171,68,1,0,36,1,0,0,132,212,6,0,0,0,0,0,1,0,0,0,36,0,0,0,146,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,146,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,213, 6,0,0,0,0,0,187,68,1,0,36,1,0,0,22,213,6,0,0,0,0,0,1,0,0,0,36,0,0,0,121,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,143,213,6,0,0,0,0,0,201,68,1,0,36,1,0,0,143,213,6,0,0,0,0,0,1,0,0,0,36,0,0,0,119,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 119,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,6,214,6,0,0,0,0,0,216,68,1,0,36,1,0,0,6,214,6,0,0,0,0,0,1,0,0,0,36,0,0,0,133,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,139,214,6,0,0,0,0,0,229,68,1,0,36,1,0,0,139,214,6,0,0,0,0,0,1,0,0,0,36,0, 0,0,133,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,16,215,6,0,0,0,0,0,246,68,1,0,36,1,0,0,16,215,6,0,0,0,0,0,1,0,0,0,36,0,0,0,18,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,34,215,6,0,0,0,0,0,8,69,1,0,36,1, 0,0,34,215,6,0,0,0,0,0,1,0,0,0,36,0,0,0,136,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,136,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,215,6,0,0,0,0,0,21,69,1,0,36,1,0,0,170,215,6,0,0,0,0,0,1,0,0,0,36,0,0,0,80,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,1,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,250,216,6,0,0,0,0,0,34,69,1,0,36,1,0,0,250,216,6,0,0,0,0,0,1,0,0,0,36,0,0,0,82,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,76,218,6,0,0,0,0,0,50,69,1,0,36,1,0,0,76,218,6,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,132,218,6,0,0,0,0,0,64,69,1,0,36,1,0,0,132,218,6,0,0,0,0,0,1,0,0,0,36,0,0,0,77,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,209,218,6,0,0,0,0,0,77,69,1,0,36,1,0,0,209,218,6,0,0,0,0,0,1,0,0,0, 36,0,0,0,103,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,56,219,6,0,0,0,0,0,102,69,1,0,36,1,0,0,56,219,6,0,0,0,0,0,1,0,0,0,36,0,0,0,12,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,12,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,68,220,6,0,0,0,0,0,126,69,1, 0,36,1,0,0,68,220,6,0,0,0,0,0,1,0,0,0,36,0,0,0,50,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,50,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,118,220,6,0,0,0,0,0,142,69,1,0,36,1,0,0,118,220,6,0,0,0,0,0,1,0,0,0,36,0,0,0,121,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,239,220,6,0,0,0,0,0,162,69,1,0,36,1,0,0,239,220,6,0,0,0,0,0,1,0,0,0,36,0,0,0,121,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,104,221,6,0,0,0,0,0,183,69,1,0,36,1,0,0,104,221,6,0,0,0,0,0,1,0,0,0,36,0,0,0,114,0,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,114,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,218,221,6,0,0,0,0,0,199,69,1,0,36,1,0,0,218,221,6,0,0,0,0,0,1,0,0,0,36,0,0,0,159,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,159,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,121,222,6,0,0,0,0,0,218,69,1,0,36,1,0,0,121,222,6, 0,0,0,0,0,1,0,0,0,36,0,0,0,193,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,58,223,6,0,0,0,0,0,237,69,1,0,36,1,0,0,58,223,6,0,0,0,0,0,1,0,0,0,36,0,0,0,76,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,76,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,134,223,6, 0,0,0,0,0,254,69,1,0,36,1,0,0,134,223,6,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,237,223,6,0,0,0,0,0,18,70,1,0,36,1,0,0,237,223,6,0,0,0,0,0,1,0,0,0,36,0,0,0,108,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,108, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,89,224,6,0,0,0,0,0,38,70,1,0,36,1,0,0,89,224,6,0,0,0,0,0,1,0,0,0,36,0,0,0,225,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,225,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,58,225,6,0,0,0,0,0,60,70,1,0,36,1,0,0,58,225,6,0,0,0,0,0,1,0,0,0,36,0,0,0,138, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,138,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,196,225,6,0,0,0,0,0,82,70,1,0,36,1,0,0,196,225,6,0,0,0,0,0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,105,70,1,0,38,11,0,0,48,130,11,0,0,0,0,0,117,70,1,0,38,11, 0,0,56,130,11,0,0,0,0,0,130,70,1,0,38,11,0,0,64,130,11,0,0,0,0,0,150,70,1,0,38,11,0,0,72,130,11,0,0,0,0,0,168,70,1,0,38,11,0,0,80,130,11,0,0,0,0,0,187,70,1,0,38,11,0,0,88,130,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0, 0,0,0,0,0,203,70,1,0,100,0,0,0,0,0,0,0,0,0,0,0,224,70,1,0,102,0,1,0,93,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,36,226,6,0,0,0,0,0,28,71,1,0,36,1,0,0,36,226,6,0,0,0,0,0,1,0,0,0,36,0,0,0,109,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,109,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 145,226,6,0,0,0,0,0,36,71,1,0,36,1,0,0,145,226,6,0,0,0,0,0,1,0,0,0,36,0,0,0,187,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,76,227,6,0,0,0,0,0,45,71,1,0,36,1,0,0,76,227,6,0,0,0,0,0,1,0,0,0,36,0,0,0,60,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,136,227,6,0,0,0,0,0,56,71,1,0,36,1,0,0,136,227,6,0,0,0,0,0,1,0,0,0,36,0,0,0,59,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,227,6,0,0,0,0,0,71,71,1,0,36,1,0,0,195,227,6,0,0,0,0,0,1,0,0,0,36, 0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,8,228,6,0,0,0,0,0,87,71,1,0,36,1,0,0,8,228,6,0,0,0,0,0,1,0,0,0,36,0,0,0,67,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,75,228,6,0,0,0,0,0,104,71,1,0,36,1,0, 0,75,228,6,0,0,0,0,0,1,0,0,0,36,0,0,0,67,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,142,228,6,0,0,0,0,0,122,71,1,0,36,1,0,0,142,228,6,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 223,228,6,0,0,0,0,0,137,71,1,0,36,1,0,0,223,228,6,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,48,229,6,0,0,0,0,0,156,71,1,0,36,1,0,0,48,229,6,0,0,0,0,0,1,0,0,0,36,0,0,0,179,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,179,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,227,229,6,0,0,0,0,0,168,71,1,0,36,1,0,0,227,229,6,0,0,0,0,0,1,0,0,0,36,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,231,230,6,0,0,0,0,0,177,71,1,0,36,1,0,0,231,230,6,0,0,0,0,0,1,0,0,0, 36,0,0,0,85,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,232,6,0,0,0,0,0,188,71,1,0,36,1,0,0,60,232,6,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,232,6,0,0,0,0,0,192,71,1,0,36, 1,0,0,66,232,6,0,0,0,0,0,1,0,0,0,36,0,0,0,253,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,253,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,233,6,0,0,0,0,0,208,71,1,0,36,1,0,0,63,233,6,0,0,0,0,0,1,0,0,0,36,0,0,0,97,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,160,233,6,0,0,0,0,0,234,71,1,0,36,1,0,0,160,233,6,0,0,0,0,0,1,0,0,0,36,0,0,0,113,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,113,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,234,6,0,0,0,0,0,246,71,1,0,36,1,0,0,17,234,6,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,148,234,6,0,0,0,0,0,1,72,1,0,36,1,0,0,148,234,6,0,0,0,0,0,1,0,0,0,36,0,0,0,68,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,68,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,216,234,6,0,0,0,0,0,16,72,1,0,36,1,0,0,216,234,6,0,0,0,0,0,1, 0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,247,234,6,0,0,0,0,0,25,72,1,0,36,1,0,0,247,234,6,0,0,0,0,0,1,0,0,0,36,0,0,0,41,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,32,235,6,0,0,0,0,0,35,72, 1,0,36,1,0,0,32,235,6,0,0,0,0,0,1,0,0,0,36,0,0,0,39,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,71,235,6,0,0,0,0,0,47,72,1,0,36,1,0,0,71,235,6,0,0,0,0,0,1,0,0,0,36,0,0,0,39,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,110,235,6,0,0,0,0,0,58,72,1,0,36,1,0,0,110,235,6,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,166,235,6,0,0,0,0,0,67,72,1,0,36,1,0,0,166,235,6,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,31,0,0,0,0,0,0,0,76,72,1,0,38,11,0,0,96,130,11,0,0,0,0,0,89,72,1,0,38,11,0,0,104,130,11,0,0,0,0,0,105,72,1,0,38,11,0,0,112,130,11,0,0,0,0,0,117,72,1,0,38,11,0,0,120,130,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0, 0,0,0,0,0,0,0,0,140,72,1,0,100,0,0,0,0,0,0,0,0,0,0,0,164,72,1,0,102,0,1,0,94,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,197,235,6,0,0,0,0,0,227,72,1,0,36,1,0,0,197,235,6,0,0,0,0,0,1,0,0,0,36,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,213,235,6,0,0,0,0,0,249,72,1,0,36,1,0,0,213,235,6,0,0,0,0,0,1,0,0,0,36,0,0,0,89,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,89,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,46,236,6,0,0,0,0,0,4,73,1,0,36,1,0,0,46,236,6,0,0,0,0,0,1,0,0,0,36,0,0,0,141,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,141,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,187,236,6,0,0,0,0,0,17,73,1,0,36,1,0,0,187,236,6,0,0,0,0,0,1,0,0,0,36,0,0,0,6,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,193,237,6,0,0,0,0,0,28,73,1,0,36,1,0,0,193,237,6,0,0,0,0,0,1,0,0, 0,36,0,0,0,60,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,253,237,6,0,0,0,0,0,41,73,1,0,36,1,0,0,253,237,6,0,0,0,0,0,1,0,0,0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,238,6,0,0,0,0,0,63,73,1, 0,36,1,0,0,22,238,6,0,0,0,0,0,1,0,0,0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,47,238,6,0,0,0,0,0,81,73,1,0,36,1,0,0,47,238,6,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,98,238,6,0,0,0,0,0,101,73,1,0,36,1,0,0,98,238,6,0,0,0,0,0,1,0,0,0,36,0,0,0,43,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,141,238,6,0,0,0,0,0,124,73,1,0,36,1,0,0,141,238,6,0,0,0,0,0,1,0,0,0,36,0,0,0,37,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,37,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,178,238,6,0,0,0,0,0,136,73,1,0,36,1,0,0,178,238,6,0,0,0,0,0,1,0,0,0,36,0,0,0,141,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,239,6,0,0,0,0,0,151,73,1,0,36,1,0,0,63,239,6,0,0,0,0,0,1, 0,0,0,36,0,0,0,247,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,247,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,54,241,6,0,0,0,0,0,166,73,1,0,36,1,0,0,54,241,6,0,0,0,0,0,1,0,0,0,36,0,0,0,245,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,245,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,43,242,6,0,0,0,0,0,179, 73,1,0,36,1,0,0,43,242,6,0,0,0,0,0,1,0,0,0,36,0,0,0,34,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,34,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,77,243,6,0,0,0,0,0,197,73,1,0,36,1,0,0,77,243,6,0,0,0,0,0,1,0,0,0,36,0,0,0,243,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,243,0,0,0,0,0,0,0,1, 0,0,0,46,1,0,0,64,244,6,0,0,0,0,0,212,73,1,0,36,1,0,0,64,244,6,0,0,0,0,0,1,0,0,0,36,0,0,0,171,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,171,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,235,245,6,0,0,0,0,0,233,73,1,0,36,1,0,0,235,245,6,0,0,0,0,0,1,0,0,0,36,0,0,0,117,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,117,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,96,246,6,0,0,0,0,0,246,73,1,0,36,1,0,0,96,246,6,0,0,0,0,0,1,0,0,0,36,0,0,0,175,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,15,247,6,0,0,0,0,0,13,74,1,0,36,1,0,0,15,247,6,0, 0,0,0,0,1,0,0,0,36,0,0,0,201,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,216,247,6,0,0,0,0,0,25,74,1,0,36,1,0,0,216,247,6,0,0,0,0,0,1,0,0,0,36,0,0,0,10,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,10,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,226,250,6,0, 0,0,0,0,45,74,1,0,36,1,0,0,226,250,6,0,0,0,0,0,1,0,0,0,36,0,0,0,150,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,120,251,6,0,0,0,0,0,69,74,1,0,36,1,0,0,120,251,6,0,0,0,0,0,1,0,0,0,36,0,0,0,150,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,14,252,6,0,0,0,0,0,90,74,1,0,36,1,0,0,14,252,6,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,92,252,6,0,0,0,0,0,102,74,1,0,36,1,0,0,92,252,6,0,0,0,0,0,1,0,0,0,36,0,0,0,115, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,207,252,6,0,0,0,0,0,115,74,1,0,36,1,0,0,207,252,6,0,0,0,0,0,1,0,0,0,36,0,0,0,18,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,225,252,6,0,0,0,0,0,125,74,1,0,36,1,0,0, 225,252,6,0,0,0,0,0,1,0,0,0,36,0,0,0,18,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,243,252,6,0,0,0,0,0,137,74,1,0,36,1,0,0,243,252,6,0,0,0,0,0,1,0,0,0,36,0,0,0,18,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 5,253,6,0,0,0,0,0,150,74,1,0,36,1,0,0,5,253,6,0,0,0,0,0,1,0,0,0,36,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,160,74,1,0,38,10,0,0,128,57,11,0,0,0,0,0,176,74,1,0,38,10,0,0,192,67,11,0,0,0,0,0,195,74,1,0,32,10,0,0,0,0,0,0,0,0,0,0,215,74, 1,0,38,10,0,0,224,67,11,0,0,0,0,0,224,74,1,0,38,10,0,0,40,68,11,0,0,0,0,0,240,74,1,0,38,10,0,0,64,68,11,0,0,0,0,0,251,74,1,0,38,11,0,0,128,130,11,0,0,0,0,0,12,75,1,0,38,11,0,0,132,130,11,0,0,0,0,0,25,75,1,0,38,11,0,0,136,130,11,0,0,0,0,0,50,75,1,0,38, 11,0,0,140,130,11,0,0,0,0,0,80,75,1,0,38,11,0,0,144,130,11,0,0,0,0,0,95,75,1,0,38,11,0,0,152,130,11,0,0,0,0,0,105,75,1,0,38,11,0,0,160,130,11,0,0,0,0,0,120,75,1,0,38,11,0,0,8,132,11,0,0,0,0,0,134,75,1,0,38,11,0,0,16,132,11,0,0,0,0,0,148,75,1,0,38,11, 0,0,20,132,11,0,0,0,0,0,163,75,1,0,38,11,0,0,24,132,11,0,0,0,0,0,181,75,1,0,38,11,0,0,28,132,11,0,0,0,0,0,196,75,1,0,38,11,0,0,32,132,11,0,0,0,0,0,208,75,1,0,38,11,0,0,192,132,11,0,0,0,0,0,222,75,1,0,38,11,0,0,196,132,11,0,0,0,0,0,240,75,1,0,38,11,0, 0,200,132,11,0,0,0,0,0,0,76,1,0,38,11,0,0,204,132,11,0,0,0,0,0,18,76,1,0,38,11,0,0,208,132,11,0,0,0,0,0,37,76,1,0,38,11,0,0,212,132,11,0,0,0,0,0,53,76,1,0,38,11,0,0,216,132,11,0,0,0,0,0,70,76,1,0,38,11,0,0,224,132,11,0,0,0,0,0,95,76,1,0,38,11,0,0,232, 132,11,0,0,0,0,0,123,76,1,0,32,12,0,0,0,0,0,0,0,0,0,0,138,76,1,0,32,12,0,0,0,0,0,0,0,0,0,0,152,76,1,0,32,12,0,0,0,0,0,0,0,0,0,0,168,76,1,0,32,12,0,0,0,0,0,0,0,0,0,0,178,76,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100, 0,0,0,0,0,0,0,0,0,0,0,201,76,1,0,100,0,0,0,0,0,0,0,0,0,0,0,225,76,1,0,102,0,1,0,94,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,21,253,6,0,0,0,0,0,32,77,1,0,36,1,0,0,21,253,6,0,0,0,0,0,1,0,0,0,36,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,96,253,6,0,0,0,0,0,46,77,1,0,36,1,0,0,96,253,6,0,0,0,0,0,1,0,0,0,36,0,0,0,46,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,142,254,6,0,0,0,0,0,68,77,1,0,36,1,0,0,142,254,6,0,0,0,0,0,1,0,0,0,36,0,0,0,21,1,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,21,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,163,255,6,0,0,0,0,0,91,77,1,0,36,1,0,0,163,255,6,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,189,255,6,0,0,0,0,0,103,77,1,0,36,1,0,0,189,255,6,0,0,0,0,0,1, 0,0,0,36,0,0,0,121,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,121,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,54,2,7,0,0,0,0,0,116,77,1,0,36,1,0,0,54,2,7,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,2,7,0,0,0,0,0,137,77,1, 0,36,1,0,0,98,2,7,0,0,0,0,0,1,0,0,0,36,0,0,0,74,7,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,7,0,0,0,0,0,0,1,0,0,0,46,1,0,0,172,9,7,0,0,0,0,0,161,77,1,0,36,1,0,0,172,9,7,0,0,0,0,0,1,0,0,0,36,0,0,0,170,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,170,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,86,10,7,0,0,0,0,0,178,77,1,0,36,1,0,0,86,10,7,0,0,0,0,0,1,0,0,0,36,0,0,0,97,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,183,11,7,0,0,0,0,0,196,77,1,0,36,1,0,0,183,11,7,0,0,0,0,0,1,0,0,0,36,0,0,0,121,1,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,121,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,48,13,7,0,0,0,0,0,211,77,1,0,36,1,0,0,48,13,7,0,0,0,0,0,1,0,0,0,36,0,0,0,23,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,71,13,7,0,0,0,0,0,222,77,1,0,36,1,0,0,71,13,7,0,0,0,0,0,1,0,0,0,36,0, 0,0,15,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,15,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,86,13,7,0,0,0,0,0,243,77,1,0,36,1,0,0,86,13,7,0,0,0,0,0,1,0,0,0,36,0,0,0,15,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,15,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,101,13,7,0,0,0,0,0,7,78,1,0,36,1,0,0, 101,13,7,0,0,0,0,0,1,0,0,0,36,0,0,0,90,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,191,13,7,0,0,0,0,0,22,78,1,0,36,1,0,0,191,13,7,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,197,13, 7,0,0,0,0,0,38,78,1,0,36,1,0,0,197,13,7,0,0,0,0,0,1,0,0,0,36,0,0,0,18,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,18,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,215,14,7,0,0,0,0,0,53,78,1,0,36,1,0,0,215,14,7,0,0,0,0,0,1,0,0,0,36,0,0,0,226,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,226,1, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,185,16,7,0,0,0,0,0,72,78,1,0,36,1,0,0,185,16,7,0,0,0,0,0,1,0,0,0,36,0,0,0,144,6,0,0,0,0,0,0,1,0,0,0,78,1,0,0,144,6,0,0,0,0,0,0,1,0,0,0,46,1,0,0,73,23,7,0,0,0,0,0,95,78,1,0,36,1,0,0,73,23,7,0,0,0,0,0,1,0,0,0,36,0,0,0,145,2, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,145,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,218,25,7,0,0,0,0,0,114,78,1,0,36,1,0,0,218,25,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,8,26,7,0,0,0,0,0,128,78,1,0,36,1,0,0,8,26,7, 0,0,0,0,0,1,0,0,0,36,0,0,0,94,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,94,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,102,26,7,0,0,0,0,0,148,78,1,0,36,1,0,0,102,26,7,0,0,0,0,0,1,0,0,0,36,0,0,0,97,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,26,7,0,0, 0,0,0,166,78,1,0,36,1,0,0,199,26,7,0,0,0,0,0,1,0,0,0,36,0,0,0,58,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,1,27,7,0,0,0,0,0,185,78,1,0,36,1,0,0,1,27,7,0,0,0,0,0,1,0,0,0,36,0,0,0,178,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,178,0,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,179,27,7,0,0,0,0,0,204,78,1,0,36,1,0,0,179,27,7,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,228,27,7,0,0,0,0,0,225,78,1,0,36,1,0,0,228,27,7,0,0,0,0,0,1,0,0,0,36,0,0,0,5,1,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,5,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,233,28,7,0,0,0,0,0,245,78,1,0,36,1,0,0,233,28,7,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,15,29,7,0,0,0,0,0,10,79,1,0,36,1,0,0,15,29,7,0,0,0,0, 0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,53,29,7,0,0,0,0,0,31,79,1,0,36,1,0,0,53,29,7,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,41,79,1,0,32,10,0,0,0,0,0,0,0,0,0,0,56,79, 1,0,32,10,0,0,0,0,0,0,0,0,0,0,70,79,1,0,32,10,0,0,0,0,0,0,0,0,0,0,90,79,1,0,38,10,0,0,140,68,11,0,0,0,0,0,109,79,1,0,38,10,0,0,144,68,11,0,0,0,0,0,129,79,1,0,38,11,0,0,240,132,11,0,0,0,0,0,143,79,1,0,38,11,0,0,244,132,11,0,0,0,0,0,155,79,1,0,38,11,0, 0,248,132,11,0,0,0,0,0,166,79,1,0,38,11,0,0,252,132,11,0,0,0,0,0,178,79,1,0,38,11,0,0,0,133,11,0,0,0,0,0,191,79,1,0,38,11,0,0,16,133,11,0,0,0,0,0,209,79,1,0,38,11,0,0,32,133,11,0,0,0,0,0,229,79,1,0,38,11,0,0,48,133,11,0,0,0,0,0,248,79,1,0,38,11,0,0,64, 133,11,0,0,0,0,0,13,80,1,0,38,11,0,0,80,133,11,0,0,0,0,0,25,80,1,0,38,11,0,0,84,133,11,0,0,0,0,0,40,80,1,0,38,11,0,0,88,133,11,0,0,0,0,0,56,80,1,0,38,11,0,0,92,133,11,0,0,0,0,0,80,80,1,0,38,11,0,0,96,133,11,0,0,0,0,0,99,80,1,0,38,11,0,0,100,133,11,0, 0,0,0,0,119,80,1,0,32,12,0,0,0,0,0,0,0,0,0,0,140,80,1,0,32,12,0,0,0,0,0,0,0,0,0,0,151,80,1,0,32,12,0,0,0,0,0,0,0,0,0,0,167,80,1,0,32,12,0,0,0,0,0,0,0,0,0,0,184,80,1,0,32,12,0,0,0,0,0,0,0,0,0,0,202,80,1,0,32,12,0,0,0,0,0,0,0,0,0,0,215,80,1,0,32,12,0,0, 0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,229,80,1,0,100,0,0,0,0,0,0,0,0,0,0,0,3,81,1,0,102,0,1,0,94,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,122,29,7,0,0,0,0,0,72,81,1,0,36,1,0,0,122,29,7,0,0,0,0,0,1,0,0,0,36, 0,0,0,20,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,20,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,142,29,7,0,0,0,0,0,90,81,1,0,36,1,0,0,142,29,7,0,0,0,0,0,1,0,0,0,36,0,0,0,11,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,11,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,29,7,0,0,0,0,0,109,81,1,0,36,1, 0,0,153,29,7,0,0,0,0,0,1,0,0,0,36,0,0,0,11,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,11,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,164,29,7,0,0,0,0,0,126,81,1,0,36,1,0,0,164,29,7,0,0,0,0,0,1,0,0,0,36,0,0,0,132,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,132,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,40,30,7,0,0,0,0,0,141,81,1,0,36,1,0,0,40,30,7,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,157,81,1,0,100,0,0,0,0,0,0,0,0,0,0,0,180,81,1,0,102,0, 1,0,94,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,46,30,7,0,0,0,0,0,242,81,1,0,36,1,0,0,46,30,7,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,52,30,7,0,0,0,0,0,11,82,1,0,36,1,0,0,52,30,7,0,0,0,0,0,1,0,0,0,36,0,0, 0,54,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,54,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,106,32,7,0,0,0,0,0,30,82,1,0,36,1,0,0,106,32,7,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,112,32,7,0,0,0,0,0,55,82,1,0,36,1,0,0,112, 32,7,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,118,32,7,0,0,0,0,0,80,82,1,0,36,1,0,0,118,32,7,0,0,0,0,0,1,0,0,0,36,0,0,0,122,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,122,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,240,32,7, 0,0,0,0,0,99,82,1,0,36,1,0,0,240,32,7,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,246,32,7,0,0,0,0,0,124,82,1,0,36,1,0,0,246,32,7,0,0,0,0,0,1,0,0,0,36,0,0,0,8,9,0,0,0,0,0,0,1,0,0,0,78,1,0,0,8,9,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,254,41,7,0,0,0,0,0,145,82,1,0,36,1,0,0,254,41,7,0,0,0,0,0,1,0,0,0,36,0,0,0,168,7,0,0,0,0,0,0,1,0,0,0,78,1,0,0,168,7,0,0,0,0,0,0,167,82,1,0,32,10,0,0,0,0,0,0,0,0,0,0,178,82,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0, 0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,192,82,1,0,100,0,0,0,0,0,0,0,0,0,0,0,216,82,1,0,102,0,1,0,95,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,166,49,7,0,0,0,0,0,23,83,1,0,36,1,0,0,166,49,7,0,0,0,0,0,1,0,0,0,36,0,0,0,128,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,128, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,38,50,7,0,0,0,0,0,40,83,1,0,36,1,0,0,38,50,7,0,0,0,0,0,1,0,0,0,36,0,0,0,24,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,52,7,0,0,0,0,0,58,83,1,0,36,1,0,0,62,52,7,0,0,0,0,0,77,83,1,0,132,0,0,0,0,0, 0,0,0,0,0,0,1,0,0,0,36,0,0,0,47,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,109,52,7,0,0,0,0,0,105,83,1,0,36,1,0,0,109,52,7,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,135,52,7,0, 0,0,0,0,121,83,1,0,36,1,0,0,135,52,7,0,0,0,0,0,1,0,0,0,36,0,0,0,88,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,223,52,7,0,0,0,0,0,133,83,1,0,36,1,0,0,223,52,7,0,0,0,0,0,1,0,0,0,36,0,0,0,85,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,52,53,7,0,0,0,0,0,150,83,1,0,36,1,0,0,52,53,7,0,0,0,0,0,1,0,0,0,36,0,0,0,45,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,53,7,0,0,0,0,0,168,83,1,0,36,1,0,0,97,53,7,0,0,0,0,0,1,0,0,0,36,0,0,0,60,0,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,157,53,7,0,0,0,0,0,184,83,1,0,36,1,0,0,157,53,7,0,0,0,0,0,1,0,0,0,36,0,0,0,184,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,85,54,7,0,0,0,0,0,198,83,1,0,36,1,0,0,85,54,7,0, 0,0,0,0,1,0,0,0,36,0,0,0,72,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,157,54,7,0,0,0,0,0,213,83,1,0,36,1,0,0,157,54,7,0,0,0,0,0,1,0,0,0,36,0,0,0,189,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,189,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,90,55,7,0,0, 0,0,0,228,83,1,0,36,1,0,0,90,55,7,0,0,0,0,0,1,0,0,0,36,0,0,0,205,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,205,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,39,56,7,0,0,0,0,0,242,83,1,0,36,1,0,0,39,56,7,0,0,0,0,0,1,0,0,0,36,0,0,0,163,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,163,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,202,56,7,0,0,0,0,0,6,84,1,0,36,1,0,0,202,56,7,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,242,56,7,0,0,0,0,0,27,84,1,0,36,1,0,0,242,56,7,0,0,0,0,0,1,0,0,0,36,0,0,0,5,2,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,5,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,247,58,7,0,0,0,0,0,50,84,1,0,36,1,0,0,247,58,7,0,0,0,0,0,1,0,0,0,36,0,0,0,93,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,93,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,84,60,7,0,0,0,0,0,73,84,1,0,36,1,0,0,84,60,7,0,0,0,0,0, 1,0,0,0,36,0,0,0,93,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,93,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,177,62,7,0,0,0,0,0,94,84,1,0,36,1,0,0,177,62,7,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,198,62,7,0,0,0,0,0,111, 84,1,0,36,1,0,0,198,62,7,0,0,0,0,0,1,0,0,0,36,0,0,0,218,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,218,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,63,7,0,0,0,0,0,135,84,1,0,36,1,0,0,160,63,7,0,0,0,0,0,1,0,0,0,36,0,0,0,135,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,135,3,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,39,67,7,0,0,0,0,0,145,84,1,0,36,1,0,0,39,67,7,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,74,67,7,0,0,0,0,0,154,84,1,0,36,1,0,0,74,67,7,0,0,0,0,0,1,0,0,0,36,0,0,0,165,1,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,165,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,239,68,7,0,0,0,0,0,170,84,1,0,36,1,0,0,239,68,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,29,69,7,0,0,0,0,0,192,84,1,0,36,1,0,0,29,69,7,0,0,0,0,0,1, 0,0,0,36,0,0,0,20,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,20,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,49,69,7,0,0,0,0,0,203,84,1,0,36,1,0,0,49,69,7,0,0,0,0,0,1,0,0,0,36,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,50,70,7,0,0,0,0,0,219,84,1,0, 36,1,0,0,50,70,7,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,70,7,0,0,0,0,0,235,84,1,0,36,1,0,0,153,70,7,0,0,0,0,0,1,0,0,0,36,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,177,70,7,0,0,0,0,0,0,85,1,0,36,1,0,0,177,70,7,0,0,0,0,0,1,0,0,0,36,0,0,0,211,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,211,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,132,71,7,0,0,0,0,0,14,85,1,0,36,1,0,0,132,71,7,0,0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,37,72,7,0,0,0,0,0,30,85,1,0,36,1,0,0,37,72,7,0,0,0,0,0,1,0,0,0,36,0,0,0,57,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,72,7,0,0,0,0,0,43,85,1,0,36,1,0,0,94,72,7,0,0,0,0,0,1,0,0,0,36,0,0, 0,182,9,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,9,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20,82,7,0,0,0,0,0,57,85,1,0,36,1,0,0,20,82,7,0,0,0,0,0,71,85,1,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,52, 82,7,0,0,0,0,0,112,85,1,0,36,1,0,0,52,82,7,0,0,0,0,0,1,0,0,0,36,0,0,0,155,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,207,82,7,0,0,0,0,0,122,85,1,0,36,1,0,0,207,82,7,0,0,0,0,0,1,0,0,0,36,0,0,0,76,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,76, 0,0,0,0,0,0,0,133,85,1,0,38,10,0,0,160,68,11,0,0,0,0,0,150,85,1,0,38,11,0,0,112,133,11,0,0,0,0,0,161,85,1,0,38,11,0,0,128,133,11,0,0,0,0,0,175,85,1,0,38,11,0,0,132,133,11,0,0,0,0,0,191,85,1,0,38,11,0,0,136,133,11,0,0,0,0,0,204,85,1,0,38,11,0,0,144,133, 11,0,0,0,0,0,216,85,1,0,38,11,0,0,152,133,11,0,0,0,0,0,227,85,1,0,38,11,0,0,156,133,11,0,0,0,0,0,240,85,1,0,38,11,0,0,160,133,11,0,0,0,0,0,250,85,1,0,38,11,0,0,168,133,11,0,0,0,0,0,14,86,1,0,38,11,0,0,176,133,11,0,0,0,0,0,32,86,1,0,38,11,0,0,184,133, 11,0,0,0,0,0,44,86,1,0,38,11,0,0,192,133,11,0,0,0,0,0,60,86,1,0,38,11,0,0,196,133,11,0,0,0,0,0,76,86,1,0,38,11,0,0,200,133,11,0,0,0,0,0,92,86,1,0,38,11,0,0,204,133,11,0,0,0,0,0,112,86,1,0,38,11,0,0,208,133,11,0,0,0,0,0,136,86,1,0,38,11,0,0,212,133,11, 0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,149,86,1,0,100,0,0,0,0,0,0,0,0,0,0,0,174,86,1,0,102,0,1,0,95,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,27,83,7,0,0,0,0,0,238,86,1,0,36,1,0,0,27,83,7,0,0,0,0,0,1,0,0,0,36,0,0,0, 91,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,118,83,7,0,0,0,0,0,254,86,1,0,36,1,0,0,118,83,7,0,0,0,0,0,1,0,0,0,36,0,0,0,73,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,191,83,7,0,0,0,0,0,17,87,1,0,36,1,0,0,191, 83,7,0,0,0,0,0,1,0,0,0,36,0,0,0,96,6,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,6,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,90,7,0,0,0,0,0,34,87,1,0,36,1,0,0,31,90,7,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,69,90,7,0, 0,0,0,0,55,87,1,0,36,1,0,0,69,90,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,90,7,0,0,0,0,0,77,87,1,0,36,1,0,0,115,90,7,0,0,0,0,0,1,0,0,0,36,0,0,0,117,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,232,90,7,0,0,0,0,0,98,87,1,0,36,1,0,0,232,90,7,0,0,0,0,0,1,0,0,0,36,0,0,0,102,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,78,91,7,0,0,0,0,0,112,87,1,0,36,1,0,0,78,91,7,0,0,0,0,0,1,0,0,0,36,0,0,0,129,1,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,129,1,0,0,0,0,0,0,131,87,1,0,38,10,0,0,176,57,11,0,0,0,0,0,140,87,1,0,38,10,0,0,0,69,11,0,0,0,0,0,155,87,1,0,38,10,0,0,7,69,11,0,0,0,0,0,171,87,1,0,38,11,0,0,216,133,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0, 100,0,0,0,0,0,0,0,0,0,0,0,183,87,1,0,100,0,0,0,0,0,0,0,0,0,0,0,206,87,1,0,102,0,1,0,95,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,207,92,7,0,0,0,0,0,12,88,1,0,36,1,0,0,207,92,7,0,0,0,0,0,1,0,0,0,36,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,223,92,7,0,0,0,0,0,30,88,1,0,36,1,0,0,223,92,7,0,0,0,0,0,1,0,0,0,36,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,239,92,7,0,0,0,0,0,47,88,1,0,36,1,0,0,239,92,7,0,0,0,0,0,1,0,0,0,36,0,0,0,13,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,13,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,252,92,7,0,0,0,0,0,69,88,1,0,36,1,0,0,252,92,7,0,0,0,0,0,1,0,0,0,36,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,9,93,7,0,0,0,0,0,96,88,1,0,36,1,0,0,9,93,7,0,0,0,0,0,1,0,0,0, 36,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,22,93,7,0,0,0,0,0,120,88,1,0,36,1,0,0,22,93,7,0,0,0,0,0,1,0,0,0,36,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,35,93,7,0,0,0,0,0,134,88,1,0,36, 1,0,0,35,93,7,0,0,0,0,0,1,0,0,0,36,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,48,93,7,0,0,0,0,0,149,88,1,0,36,1,0,0,48,93,7,0,0,0,0,0,1,0,0,0,36,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 61,93,7,0,0,0,0,0,169,88,1,0,36,1,0,0,61,93,7,0,0,0,0,0,1,0,0,0,36,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,74,93,7,0,0,0,0,0,191,88,1,0,36,1,0,0,74,93,7,0,0,0,0,0,1,0,0,0,36,0,0,0,83,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,83, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,157,93,7,0,0,0,0,0,205,88,1,0,36,1,0,0,157,93,7,0,0,0,0,0,1,0,0,0,36,0,0,0,23,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,180,93,7,0,0,0,0,0,226,88,1,0,36,1,0,0,180,93,7,0,0,0,0,0,1,0,0,0,36,0,0,0,24, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,204,93,7,0,0,0,0,0,244,88,1,0,36,1,0,0,204,93,7,0,0,0,0,0,1,0,0,0,36,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,228,93,7,0,0,0,0,0,3,89,1,0,36,1,0,0,228,93, 7,0,0,0,0,0,1,0,0,0,36,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,252,93,7,0,0,0,0,0,19,89,1,0,36,1,0,0,252,93,7,0,0,0,0,0,1,0,0,0,36,0,0,0,224,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,224,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,220,94,7, 0,0,0,0,0,27,89,1,0,36,1,0,0,220,94,7,0,0,0,0,0,1,0,0,0,36,0,0,0,66,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,66,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,98,7,0,0,0,0,0,45,89,1,0,36,1,0,0,30,98,7,0,0,0,0,0,1,0,0,0,36,0,0,0,129,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,129,1,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,159,99,7,0,0,0,0,0,55,89,1,0,36,1,0,0,159,99,7,0,0,0,0,0,1,0,0,0,36,0,0,0,137,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,137,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,100,7,0,0,0,0,0,73,89,1,0,36,1,0,0,40,100,7,0,0,0,0,0,1,0,0,0,36,0,0,0,82,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,122,100,7,0,0,0,0,0,98,89,1,0,36,1,0,0,122,100,7,0,0,0,0,0,1,0,0,0,36,0,0,0,171,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,171,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,37,102,7,0,0,0,0,0,115,89,1,0,36,1,0,0,37,102, 7,0,0,0,0,0,1,0,0,0,36,0,0,0,27,17,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,17,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,119,7,0,0,0,0,0,129,89,1,0,36,1,0,0,64,119,7,0,0,0,0,0,1,0,0,0,36,0,0,0,11,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,11,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,75,119,7, 0,0,0,0,0,145,89,1,0,36,1,0,0,75,119,7,0,0,0,0,0,1,0,0,0,36,0,0,0,89,6,0,0,0,0,0,0,1,0,0,0,78,1,0,0,89,6,0,0,0,0,0,0,1,0,0,0,46,1,0,0,164,125,7,0,0,0,0,0,164,89,1,0,36,1,0,0,164,125,7,0,0,0,0,0,1,0,0,0,36,0,0,0,50,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,50,0, 0,0,0,0,0,0,186,89,1,0,32,10,0,0,0,0,0,0,0,0,0,0,198,89,1,0,38,10,0,0,224,57,11,0,0,0,0,0,212,89,1,0,32,10,0,0,0,0,0,0,0,0,0,0,228,89,1,0,32,10,0,0,0,0,0,0,0,0,0,0,244,89,1,0,32,10,0,0,0,0,0,0,0,0,0,0,4,90,1,0,32,10,0,0,0,0,0,0,0,0,0,0,17,90,1,0,32,10, 0,0,0,0,0,0,0,0,0,0,31,90,1,0,32,10,0,0,0,0,0,0,0,0,0,0,44,90,1,0,32,10,0,0,0,0,0,0,0,0,0,0,63,90,1,0,32,10,0,0,0,0,0,0,0,0,0,0,83,90,1,0,32,10,0,0,0,0,0,0,0,0,0,0,93,90,1,0,32,10,0,0,0,0,0,0,0,0,0,0,109,90,1,0,38,10,0,0,80,70,11,0,0,0,0,0,123,90,1,0, 38,10,0,0,84,70,11,0,0,0,0,0,138,90,1,0,38,10,0,0,88,70,11,0,0,0,0,0,149,90,1,0,38,10,0,0,92,70,11,0,0,0,0,0,161,90,1,0,38,10,0,0,96,70,11,0,0,0,0,0,175,90,1,0,38,11,0,0,224,133,11,0,0,0,0,0,185,90,1,0,38,11,0,0,232,133,11,0,0,0,0,0,199,90,1,0,38,11, 0,0,240,133,11,0,0,0,0,0,216,90,1,0,38,11,0,0,248,133,11,0,0,0,0,0,229,90,1,0,38,11,0,0,252,133,11,0,0,0,0,0,245,90,1,0,38,11,0,0,0,134,11,0,0,0,0,0,7,91,1,0,38,11,0,0,4,134,11,0,0,0,0,0,26,91,1,0,38,11,0,0,8,134,11,0,0,0,0,0,42,91,1,0,38,11,0,0,12,134, 11,0,0,0,0,0,53,91,1,0,38,11,0,0,16,134,11,0,0,0,0,0,73,91,1,0,38,11,0,0,32,134,11,0,0,0,0,0,94,91,1,0,38,11,0,0,48,134,11,0,0,0,0,0,108,91,1,0,38,11,0,0,64,134,11,0,0,0,0,0,123,91,1,0,32,12,0,0,0,0,0,0,0,0,0,0,139,91,1,0,32,12,0,0,0,0,0,0,0,0,0,0,156, 91,1,0,32,12,0,0,0,0,0,0,0,0,0,0,178,91,1,0,32,12,0,0,0,0,0,0,0,0,0,0,204,91,1,0,32,12,0,0,0,0,0,0,0,0,0,0,220,91,1,0,32,12,0,0,0,0,0,0,0,0,0,0,242,91,1,0,32,12,0,0,0,0,0,0,0,0,0,0,254,91,1,0,32,12,0,0,0,0,0,0,0,0,0,0,20,92,1,0,32,12,0,0,0,0,0,0,0,0, 0,0,32,92,1,0,32,12,0,0,0,0,0,0,0,0,0,0,49,92,1,0,32,12,0,0,0,0,0,0,0,0,0,0,60,92,1,0,32,12,0,0,0,0,0,0,0,0,0,0,76,92,1,0,32,12,0,0,0,0,0,0,0,0,0,0,95,92,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0, 0,0,0,108,92,1,0,100,0,0,0,0,0,0,0,0,0,0,0,131,92,1,0,102,0,1,0,95,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,214,125,7,0,0,0,0,0,193,92,1,0,36,1,0,0,214,125,7,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20, 126,7,0,0,0,0,0,211,92,1,0,36,1,0,0,20,126,7,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,126,7,0,0,0,0,0,231,92,1,0,36,1,0,0,82,126,7,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,133,126,7,0,0,0,0,0,251,92,1,0,36,1,0,0,133,126,7,0,0,0,0,0,1,0,0,0,36,0,0,0,187,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,128,7,0,0,0,0,0,11,93,1,0,36,1,0,0,64,128,7,0,0,0,0,0,1,0,0,0,36,0,0, 0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,128,7,0,0,0,0,0,33,93,1,0,36,1,0,0,110,128,7,0,0,0,0,0,1,0,0,0,36,0,0,0,157,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,157,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,11,129,7,0,0,0,0,0,44,93,1,0,36,1, 0,0,11,129,7,0,0,0,0,0,1,0,0,0,36,0,0,0,6,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,130,7,0,0,0,0,0,61,93,1,0,36,1,0,0,17,130,7,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,55, 130,7,0,0,0,0,0,82,93,1,0,36,1,0,0,55,130,7,0,0,0,0,0,1,0,0,0,36,0,0,0,201,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,0,131,7,0,0,0,0,0,105,93,1,0,36,1,0,0,0,131,7,0,0,0,0,0,1,0,0,0,36,0,0,0,94,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,94, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,131,7,0,0,0,0,0,120,93,1,0,36,1,0,0,94,131,7,0,0,0,0,0,1,0,0,0,36,0,0,0,92,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,186,131,7,0,0,0,0,0,134,93,1,0,36,1,0,0,186,131,7,0,0,0,0,0,1,0,0,0,36,0,0,0, 211,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,211,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,141,132,7,0,0,0,0,0,152,93,1,0,36,1,0,0,141,132,7,0,0,0,0,0,1,0,0,0,36,0,0,0,136,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,136,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,21,136,7,0,0,0,0,0,170,93,1,0,36, 1,0,0,21,136,7,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,59,136,7,0,0,0,0,0,191,93,1,0,36,1,0,0,59,136,7,0,0,0,0,0,1,0,0,0,36,0,0,0,142,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,142,1,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,201,137,7,0,0,0,0,0,210,93,1,0,36,1,0,0,201,137,7,0,0,0,0,0,1,0,0,0,36,0,0,0,172,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,172,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,117,139,7,0,0,0,0,0,228,93,1,0,36,1,0,0,117,139,7,0,0,0,0,0,1,0,0,0,36,0,0,0,101,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,101,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,218,139,7,0,0,0,0,0,243,93,1,0,36,1,0,0,218,139,7,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,239,139,7,0,0,0,0,0,254,93,1,0,36,1,0,0,239,139,7,0,0,0,0, 0,1,0,0,0,36,0,0,0,157,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,157,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,140,142,7,0,0,0,0,0,17,94,1,0,36,1,0,0,140,142,7,0,0,0,0,0,1,0,0,0,36,0,0,0,163,3,0,0,0,0,0,0,1,0,0,0,78,1,0,0,163,3,0,0,0,0,0,0,1,0,0,0,46,1,0,0,47,146,7,0,0,0, 0,0,29,94,1,0,36,1,0,0,47,146,7,0,0,0,0,0,1,0,0,0,36,0,0,0,210,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,210,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,1,148,7,0,0,0,0,0,42,94,1,0,36,1,0,0,1,148,7,0,0,0,0,0,51,94,1,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,27,148,7,0,0,0,0,0,72,94,1,0,36,1,0,0,27,148,7,0,0,0,0,0,1,0,0,0,36,0,0,0,91,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,118,148,7,0,0,0,0,0,82,94,1,0,36,1,0,0,118,148,7,0,0, 0,0,0,1,0,0,0,36,0,0,0,23,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,141,148,7,0,0,0,0,0,91,94,1,0,36,1,0,0,141,148,7,0,0,0,0,0,1,0,0,0,36,0,0,0,246,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,246,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,131,150,7,0,0, 0,0,0,109,94,1,0,36,1,0,0,131,150,7,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,234,150,7,0,0,0,0,0,129,94,1,0,36,1,0,0,234,150,7,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,103,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,81,151,7,0,0,0,0,0,148,94,1,0,36,1,0,0,81,151,7,0,0,0,0,0,1,0,0,0,36,0,0,0,143,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,143,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,224,151,7,0,0,0,0,0,172,94,1,0,36,1,0,0,224,151,7,0,0,0,0,0,1,0,0,0,36,0,0,0, 207,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,207,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,175,152,7,0,0,0,0,0,190,94,1,0,36,1,0,0,175,152,7,0,0,0,0,0,1,0,0,0,36,0,0,0,121,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,153,7,0,0,0,0,0,207,94,1,0,36, 1,0,0,40,153,7,0,0,0,0,0,1,0,0,0,36,0,0,0,150,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,190,153,7,0,0,0,0,0,234,94,1,0,36,1,0,0,190,153,7,0,0,0,0,0,1,0,0,0,36,0,0,0,222,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,222,0,0,0,0,0,0,0,255,94,1, 0,32,10,0,0,0,0,0,0,0,0,0,0,15,95,1,0,32,12,0,0,0,0,0,0,0,0,0,0,31,95,1,0,32,12,0,0,0,0,0,0,0,0,0,0,45,95,1,0,32,12,0,0,0,0,0,0,0,0,0,0,61,95,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,77,95, 1,0,100,0,0,0,0,0,0,0,0,0,0,0,101,95,1,0,102,0,1,0,96,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,156,154,7,0,0,0,0,0,164,95,1,0,36,1,0,0,156,154,7,0,0,0,0,0,1,0,0,0,36,0,0,0,176,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,76,155,7,0,0,0, 0,0,176,95,1,0,36,1,0,0,76,155,7,0,0,0,0,0,1,0,0,0,36,0,0,0,174,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,174,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,250,155,7,0,0,0,0,0,184,95,1,0,36,1,0,0,250,155,7,0,0,0,0,0,1,0,0,0,36,0,0,0,226,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,226,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,220,156,7,0,0,0,0,0,193,95,1,0,36,1,0,0,220,156,7,0,0,0,0,0,1,0,0,0,36,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,220,157,7,0,0,0,0,0,204,95,1,0,36,1,0,0,220,157,7,0,0,0,0,0,1,0,0,0,36,0,0,0,226, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,226,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,190,158,7,0,0,0,0,0,211,95,1,0,36,1,0,0,190,158,7,0,0,0,0,0,1,0,0,0,36,0,0,0,60,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,60,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,250,159,7,0,0,0,0,0,217,95,1,0,36,1,0,0, 250,159,7,0,0,0,0,0,1,0,0,0,36,0,0,0,36,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,161,7,0,0,0,0,0,228,95,1,0,36,1,0,0,30,161,7,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,65, 161,7,0,0,0,0,0,240,95,1,0,36,1,0,0,65,161,7,0,0,0,0,0,1,0,0,0,36,0,0,0,146,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,146,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,211,161,7,0,0,0,0,0,250,95,1,0,36,1,0,0,211,161,7,0,0,0,0,0,1,0,0,0,36,0,0,0,79,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,79,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,34,162,7,0,0,0,0,0,5,96,1,0,36,1,0,0,34,162,7,0,0,0,0,0,1,0,0,0,36,0,0,0,94,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,94,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,128,162,7,0,0,0,0,0,14,96,1,0,36,1,0,0,128,162,7,0,0,0,0,0,1,0,0,0,36,0,0, 0,41,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,41,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,169,163,7,0,0,0,0,0,21,96,1,0,36,1,0,0,169,163,7,0,0,0,0,0,1,0,0,0,36,0,0,0,63,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,63,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,232,164,7,0,0,0,0,0,30,96,1,0,36,1,0, 0,232,164,7,0,0,0,0,0,1,0,0,0,36,0,0,0,97,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,73,166,7,0,0,0,0,0,40,96,1,0,36,1,0,0,73,166,7,0,0,0,0,0,1,0,0,0,36,0,0,0,98,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,171, 166,7,0,0,0,0,0,56,96,1,0,36,1,0,0,171,166,7,0,0,0,0,0,1,0,0,0,36,0,0,0,41,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,41,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,212,167,7,0,0,0,0,0,61,96,1,0,36,1,0,0,212,167,7,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,248,167,7,0,0,0,0,0,75,96,1,0,36,1,0,0,248,167,7,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,36,168,7,0,0,0,0,0,90,96,1,0,36,1,0,0,36,168,7,0,0,0,0,0,1,0,0,0,36,0,0, 0,89,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,89,0,0,0,0,0,0,0,100,96,1,0,38,11,0,0,96,134,11,0,0,0,0,0,113,96,1,0,38,11,0,0,104,134,11,0,0,0,0,0,127,96,1,0,38,11,0,0,128,134,11,0,0,0,0,0,141,96,1,0,38,11,0,0,128,135,11,0,0,0,0,0,152,96,1,0,38,11,0,0,136,135,11, 0,0,0,0,0,163,96,1,0,32,12,0,0,0,0,0,0,0,0,0,0,178,96,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,197,96,1,0,100,0,0,0,0,0,0,0,0,0,0,0,220,96,1,0,102,0,1,0,96,96,143,77,0,0,0,0,1,0,0,0,46,1,0, 0,125,168,7,0,0,0,0,0,26,97,1,0,36,1,0,0,125,168,7,0,0,0,0,0,1,0,0,0,36,0,0,0,41,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,166,168,7,0,0,0,0,0,37,97,1,0,36,1,0,0,166,168,7,0,0,0,0,0,1,0,0,0,36,0,0,0,80,1,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,80,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,246,169,7,0,0,0,0,0,47,97,1,0,36,1,0,0,246,169,7,0,0,0,0,0,1,0,0,0,36,0,0,0,238,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,238,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,228,171,7,0,0,0,0,0,58,97,1,0,36,1,0,0,228,171,7,0,0,0,0,0,1,0,0, 0,36,0,0,0,88,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,172,7,0,0,0,0,0,72,97,1,0,36,1,0,0,60,172,7,0,0,0,0,0,1,0,0,0,36,0,0,0,24,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,84,173,7,0,0,0,0,0,86,97,1,0, 36,1,0,0,84,173,7,0,0,0,0,0,1,0,0,0,36,0,0,0,47,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,131,173,7,0,0,0,0,0,104,97,1,0,36,1,0,0,131,173,7,0,0,0,0,0,1,0,0,0,36,0,0,0,143,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,143,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,18,174,7,0,0,0,0,0,115,97,1,0,36,1,0,0,18,174,7,0,0,0,0,0,1,0,0,0,36,0,0,0,152,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,152,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,174,7,0,0,0,0,0,127,97,1,0,36,1,0,0,170,174,7,0,0,0,0,0,1,0,0,0,36,0,0,0,148,0,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,148,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,175,7,0,0,0,0,0,140,97,1,0,36,1,0,0,62,175,7,0,0,0,0,0,1,0,0,0,36,0,0,0,53,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,175,7,0,0,0,0,0,151,97,1,0,36,1,0,0,115,175,7,0,0,0,0, 0,1,0,0,0,36,0,0,0,164,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,164,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,23,176,7,0,0,0,0,0,159,97,1,0,36,1,0,0,23,176,7,0,0,0,0,0,1,0,0,0,36,0,0,0,164,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,164,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,187,176,7,0,0,0, 0,0,167,97,1,0,36,1,0,0,187,176,7,0,0,0,0,0,1,0,0,0,36,0,0,0,157,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,157,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,88,177,7,0,0,0,0,0,179,97,1,0,36,1,0,0,88,177,7,0,0,0,0,0,1,0,0,0,36,0,0,0,157,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,157,0,0,0, 0,0,0,0,191,97,1,0,38,4,0,0,224,85,9,0,0,0,0,0,208,97,1,0,38,4,0,0,0,86,9,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,230,97,1,0,100,0,0,0,0,0,0,0,0,0,0,0,2,98,1,0,102,0,1,0,96,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0, 245,177,7,0,0,0,0,0,69,98,1,0,36,1,0,0,245,177,7,0,0,0,0,0,1,0,0,0,36,0,0,0,133,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,122,178,7,0,0,0,0,0,75,98,1,0,36,1,0,0,122,178,7,0,0,0,0,0,1,0,0,0,36,0,0,0,103,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,103,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,225,178,7,0,0,0,0,0,81,98,1,0,36,1,0,0,225,178,7,0,0,0,0,0,1,0,0,0,36,0,0,0,129,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,129,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,179,7,0,0,0,0,0,90,98,1,0,36,1,0,0,98,179,7,0,0,0,0,0,1,0,0, 0,36,0,0,0,129,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,129,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,227,179,7,0,0,0,0,0,99,98,1,0,36,1,0,0,227,179,7,0,0,0,0,0,1,0,0,0,36,0,0,0,108,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,79,180,7,0,0,0,0,0,108, 98,1,0,36,1,0,0,79,180,7,0,0,0,0,0,1,0,0,0,36,0,0,0,108,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,187,180,7,0,0,0,0,0,117,98,1,0,36,1,0,0,187,180,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,233,180,7,0,0,0,0,0,127,98,1,0,36,1,0,0,233,180,7,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,19,181,7,0,0,0,0,0,139,98,1,0,36,1,0,0,19,181,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,65,181,7,0,0,0,0,0,149,98,1,0,36,1,0,0,65,181,7,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,107,181,7,0,0,0,0,0,161,98,1,0,36,1,0,0,107,181,7,0, 0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,181,7,0,0,0,0,0,174,98,1,0,36,1,0,0,153,181,7,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,181,7,0, 0,0,0,0,189,98,1,0,36,1,0,0,195,181,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,241,181,7,0,0,0,0,0,202,98,1,0,36,1,0,0,241,181,7,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,27,182,7,0,0,0,0,0,217,98,1,0,36,1,0,0,27,182,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,73,182,7,0,0,0,0,0,230,98,1,0,36,1,0,0,73,182,7,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,182,7,0,0,0,0,0,245,98,1,0,36,1,0,0,115,182,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,161,182,7,0,0,0,0,0,2,99,1,0,36,1,0,0,161, 182,7,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,203,182,7,0,0,0,0,0,17,99,1,0,36,1,0,0,203,182,7,0,0,0,0,0,1,0,0,0,36,0,0,0,90,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,2,0,0,0,0,0,0,36,99,1,0,38,11,0,0,144, 135,11,0,0,0,0,0,48,99,1,0,38,11,0,0,152,135,11,0,0,0,0,0,60,99,1,0,38,11,0,0,160,135,11,0,0,0,0,0,75,99,1,0,38,11,0,0,168,135,11,0,0,0,0,0,90,99,1,0,38,11,0,0,176,135,11,0,0,0,0,0,105,99,1,0,38,11,0,0,184,135,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0, 0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,120,99,1,0,100,0,0,0,0,0,0,0,0,0,0,0,149,99,1,0,102,0,1,0,96,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,37,185,7,0,0,0,0,0,217,99,1,0,36,1,0,0,37,185,7,0,0,0,0,0,1,0,0,0,36,0,0,0,91,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,128,185,7,0,0,0,0,0,229,99,1,0,36,1,0,0,128,185,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,185,7,0,0,0,0,0,246,99,1,0,36,1,0,0,160,185,7,0,0,0,0,0,1,0,0,0,36,0,0, 0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,209,185,7,0,0,0,0,0,8,100,1,0,36,1,0,0,209,185,7,0,0,0,0,0,1,0,0,0,36,0,0,0,64,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,186,7,0,0,0,0,0,27,100,1,0,36,1,0, 0,17,186,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,49,186,7,0,0,0,0,0,45,100,1,0,36,1,0,0,49,186,7,0,0,0,0,0,1,0,0,0,36,0,0,0,55,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,104, 186,7,0,0,0,0,0,64,100,1,0,36,1,0,0,104,186,7,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,174,186,7,0,0,0,0,0,84,100,1,0,36,1,0,0,174,186,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,206,186,7,0,0,0,0,0,102,100,1,0,36,1,0,0,206,186,7,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,255,186,7,0,0,0,0,0,121,100,1,0,36,1,0,0,255,186,7,0,0,0,0,0,1,0,0,0, 36,0,0,0,64,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,187,7,0,0,0,0,0,141,100,1,0,36,1,0,0,63,187,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,95,187,7,0,0,0,0,0,157,100,1, 0,36,1,0,0,95,187,7,0,0,0,0,0,1,0,0,0,36,0,0,0,93,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,188,187,7,0,0,0,0,0,174,100,1,0,36,1,0,0,188,187,7,0,0,0,0,0,1,0,0,0,36,0,0,0,108,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,40,188,7,0,0,0,0,0,192,100,1,0,36,1,0,0,40,188,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,72,188,7,0,0,0,0,0,208,100,1,0,36,1,0,0,72,188,7,0,0,0,0,0,1,0,0,0,36,0,0,0,89,0,0,0,0,0,0,0, 1,0,0,0,78,1,0,0,89,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,161,188,7,0,0,0,0,0,225,100,1,0,36,1,0,0,161,188,7,0,0,0,0,0,1,0,0,0,36,0,0,0,104,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,104,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,9,189,7,0,0,0,0,0,243,100,1,0,36,1,0,0,9,189,7,0,0, 0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,41,189,7,0,0,0,0,0,3,101,1,0,36,1,0,0,41,189,7,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,128,189,7,0,0,0,0, 0,20,101,1,0,36,1,0,0,128,189,7,0,0,0,0,0,1,0,0,0,36,0,0,0,102,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,230,189,7,0,0,0,0,0,38,101,1,0,36,1,0,0,230,189,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,6,190,7,0,0,0,0,0,54,101,1,0,36,1,0,0,6,190,7,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,93,190,7,0,0,0,0,0,71,101,1,0,36,1,0,0,93,190,7,0,0,0,0,0,1,0,0,0,36,0,0,0,102,0,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,190,7,0,0,0,0,0,89,101,1,0,36,1,0,0,195,190,7,0,0,0,0,0,1,0,0,0,36,0,0,0,91,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,191,7,0,0,0,0,0,101,101,1,0,36,1,0,0,30,191, 7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,62,191,7,0,0,0,0,0,116,101,1,0,36,1,0,0,62,191,7,0,0,0,0,0,1,0,0,0,36,0,0,0,82,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,144,191,7, 0,0,0,0,0,132,101,1,0,36,1,0,0,144,191,7,0,0,0,0,0,1,0,0,0,36,0,0,0,97,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,241,191,7,0,0,0,0,0,149,101,1,0,36,1,0,0,241,191,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,192,7,0,0,0,0,0,164,101,1,0,36,1,0,0,17,192,7,0,0,0,0,0,1,0,0,0,36,0,0,0,82,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,99,192,7,0,0,0,0,0,180,101,1,0,36,1,0,0,99,192,7,0,0,0,0,0,1,0,0,0,36,0,0,0, 97,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,196,192,7,0,0,0,0,0,197,101,1,0,36,1,0,0,196,192,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,228,192,7,0,0,0,0,0,212,101,1,0,36,1, 0,0,228,192,7,0,0,0,0,0,1,0,0,0,36,0,0,0,80,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,52,193,7,0,0,0,0,0,228,101,1,0,36,1,0,0,52,193,7,0,0,0,0,0,1,0,0,0,36,0,0,0,95,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,95,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,147,193,7,0,0,0,0,0,245,101,1,0,36,1,0,0,147,193,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,179,193,7,0,0,0,0,0,4,102,1,0,36,1,0,0,179,193,7,0,0,0,0,0,1,0,0,0,36,0,0,0,80,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,80,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,3,194,7,0,0,0,0,0,20,102,1,0,36,1,0,0,3,194,7,0,0,0,0,0,1,0,0,0,36,0,0,0,95,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,95,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,194,7,0,0,0,0,0,37,102,1,0,36,1,0,0,98,194,7,0,0,0,0,0,1,0,0,0,36, 0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,130,194,7,0,0,0,0,0,52,102,1,0,36,1,0,0,130,194,7,0,0,0,0,0,1,0,0,0,36,0,0,0,80,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,210,194,7,0,0,0,0,0,68,102,1,0, 36,1,0,0,210,194,7,0,0,0,0,0,1,0,0,0,36,0,0,0,95,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,95,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,49,195,7,0,0,0,0,0,85,102,1,0,36,1,0,0,49,195,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,81,195,7,0,0,0,0,0,100,102,1,0,36,1,0,0,81,195,7,0,0,0,0,0,1,0,0,0,36,0,0,0,80,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,161,195,7,0,0,0,0,0,116,102,1,0,36,1,0,0,161,195,7,0,0,0,0,0,1,0,0,0,36,0,0,0,95,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,95,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,0,196,7,0,0,0,0,0,133,102,1,0,36,1,0,0,0,196,7,0,0,0,0,0,1,0,0,0,36,0,0,0,91,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,91,196,7,0,0,0,0,0,145,102,1,0,36,1,0,0,91,196,7,0,0,0,0,0,1,0, 0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,196,7,0,0,0,0,0,160,102,1,0,36,1,0,0,123,196,7,0,0,0,0,0,1,0,0,0,36,0,0,0,59,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,182,196,7,0,0,0,0,0,176, 102,1,0,36,1,0,0,182,196,7,0,0,0,0,0,1,0,0,0,36,0,0,0,74,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,0,197,7,0,0,0,0,0,193,102,1,0,36,1,0,0,0,197,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,32,197,7,0,0,0,0,0,208,102,1,0,36,1,0,0,32,197,7,0,0,0,0,0,1,0,0,0,36,0,0,0,82,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,114,197,7,0,0,0,0,0,224,102,1,0,36,1,0,0,114,197,7,0,0,0,0,0,1,0,0,0,36,0,0,0,97,0,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,97,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,211,197,7,0,0,0,0,0,241,102,1,0,36,1,0,0,211,197,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,243,197,7,0,0,0,0,0,0,103,1,0,36,1,0,0,243,197,7,0, 0,0,0,0,1,0,0,0,36,0,0,0,59,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,46,198,7,0,0,0,0,0,16,103,1,0,36,1,0,0,46,198,7,0,0,0,0,0,1,0,0,0,36,0,0,0,74,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,120,198,7,0,0, 0,0,0,33,103,1,0,36,1,0,0,120,198,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,152,198,7,0,0,0,0,0,48,103,1,0,36,1,0,0,152,198,7,0,0,0,0,0,1,0,0,0,36,0,0,0,82,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,234,198,7,0,0,0,0,0,64,103,1,0,36,1,0,0,234,198,7,0,0,0,0,0,1,0,0,0,36,0,0,0,97,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,75,199,7,0,0,0,0,0,81,103,1,0,36,1,0,0,75,199,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,107,199,7,0,0,0,0,0,96,103,1,0,36,1,0,0,107,199,7,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,168,199,7,0,0,0,0,0,112,103,1,0,36,1,0,0,168, 199,7,0,0,0,0,0,1,0,0,0,36,0,0,0,76,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,76,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,199,7,0,0,0,0,0,129,103,1,0,36,1,0,0,244,199,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20, 200,7,0,0,0,0,0,144,103,1,0,36,1,0,0,20,200,7,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,81,200,7,0,0,0,0,0,160,103,1,0,36,1,0,0,81,200,7,0,0,0,0,0,1,0,0,0,36,0,0,0,76,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 76,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,157,200,7,0,0,0,0,0,177,103,1,0,36,1,0,0,157,200,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,189,200,7,0,0,0,0,0,192,103,1,0,36,1,0,0,189,200,7,0,0,0,0,0,1,0,0,0,36, 0,0,0,97,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,201,7,0,0,0,0,0,208,103,1,0,36,1,0,0,30,201,7,0,0,0,0,0,1,0,0,0,36,0,0,0,112,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,142,201,7,0,0,0,0,0,225,103,1, 0,36,1,0,0,142,201,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,174,201,7,0,0,0,0,0,241,103,1,0,36,1,0,0,174,201,7,0,0,0,0,0,1,0,0,0,36,0,0,0,108,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,26,202,7,0,0,0,0,0,2,104,1,0,36,1,0,0,26,202,7,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,202,7,0,0,0,0,0,20,104,1,0,36,1,0,0,64,202,7,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,96,202,7,0,0,0,0,0,36,104,1,0,36,1,0,0,96,202,7,0,0,0,0,0,1,0,0,0,36,0,0,0,116,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,116,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,212,202,7,0,0,0,0,0,53,104,1,0,36,1,0,0,212,202,7,0,0,0,0, 0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,250,202,7,0,0,0,0,0,71,104,1,0,36,1,0,0,250,202,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,203,7,0,0,0,0,0, 80,104,1,0,36,1,0,0,40,203,7,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,203,7,0,0,0,0,0,91,104,1,0,36,1,0,0,82,203,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,128,203,7,0,0,0,0,0,100,104,1,0,36,1,0,0,128,203,7,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,203,7,0,0,0,0,0,111,104,1,0,36,1,0,0,170,203,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,216,203,7,0,0,0,0,0,120,104,1,0,36,1,0,0,216,203,7,0,0,0,0,0,1,0,0,0,36,0,0,0,108,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,68,204,7,0,0,0,0,0,131,104,1,0,36,1,0,0,68, 204,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,114,204,7,0,0,0,0,0,141,104,1,0,36,1,0,0,114,204,7,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,156, 204,7,0,0,0,0,0,153,104,1,0,36,1,0,0,156,204,7,0,0,0,0,0,1,0,0,0,36,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,231,204,7,0,0,0,0,0,164,104,1,0,36,1,0,0,231,204,7,0,0,0,0,0,1,0,0,0,36,0,0,0,122,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,122,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,205,7,0,0,0,0,0,177,104,1,0,36,1,0,0,97,205,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,143,205,7,0,0,0,0,0,187,104,1,0,36,1,0,0,143,205,7,0,0,0,0,0,1,0,0, 0,36,0,0,0,82,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,225,205,7,0,0,0,0,0,199,104,1,0,36,1,0,0,225,205,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,15,206,7,0,0,0,0,0,208,104, 1,0,36,1,0,0,15,206,7,0,0,0,0,0,1,0,0,0,36,0,0,0,92,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,107,206,7,0,0,0,0,0,219,104,1,0,36,1,0,0,107,206,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,153,206,7,0,0,0,0,0,228,104,1,0,36,1,0,0,153,206,7,0,0,0,0,0,1,0,0,0,36,0,0,0,77,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,230,206,7,0,0,0,0,0,239,104,1,0,36,1,0,0,230,206,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20,207,7,0,0,0,0,0,248,104,1,0,36,1,0,0,20,207,7,0,0,0,0,0,1,0,0,0,36,0,0,0,48,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,68,207,7,0,0,0,0,0,3,105,1,0,36,1,0,0,68,207,7,0,0, 0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,114,207,7,0,0,0,0,0,13,105,1,0,36,1,0,0,114,207,7,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,183,207,7,0,0, 0,0,0,25,105,1,0,36,1,0,0,183,207,7,0,0,0,0,0,1,0,0,0,36,0,0,0,110,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,37,208,7,0,0,0,0,0,35,105,1,0,36,1,0,0,37,208,7,0,0,0,0,0,1,0,0,0,36,0,0,0,138,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,138,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,175,208,7,0,0,0,0,0,46,105,1,0,36,1,0,0,175,208,7,0,0,0,0,0,1,0,0,0,36,0,0,0,153,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,153,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,72,209,7,0,0,0,0,0,58,105,1,0,36,1,0,0,72,209,7,0,0,0,0,0,1,0,0,0,36,0,0,0,133, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,205,209,7,0,0,0,0,0,70,105,1,0,36,1,0,0,205,209,7,0,0,0,0,0,1,0,0,0,36,0,0,0,195,14,0,0,0,0,0,0,1,0,0,0,78,1,0,0,195,14,0,0,0,0,0,0,90,105,1,0,38,11,0,0,192,135,11,0,0,0,0,0,109,105,1, 0,38,11,0,0,200,135,11,0,0,0,0,0,129,105,1,0,38,11,0,0,208,135,11,0,0,0,0,0,149,105,1,0,38,11,0,0,216,135,11,0,0,0,0,0,167,105,1,0,38,11,0,0,224,135,11,0,0,0,0,0,185,105,1,0,38,11,0,0,232,135,11,0,0,0,0,0,203,105,1,0,38,11,0,0,240,135,11,0,0,0,0,0,221, 105,1,0,38,11,0,0,248,135,11,0,0,0,0,0,238,105,1,0,38,11,0,0,0,136,11,0,0,0,0,0,255,105,1,0,38,11,0,0,8,136,11,0,0,0,0,0,16,106,1,0,38,11,0,0,16,136,11,0,0,0,0,0,33,106,1,0,38,11,0,0,24,136,11,0,0,0,0,0,50,106,1,0,38,11,0,0,32,136,11,0,0,0,0,0,67,106, 1,0,38,11,0,0,40,136,11,0,0,0,0,0,84,106,1,0,38,11,0,0,48,136,11,0,0,0,0,0,101,106,1,0,38,11,0,0,56,136,11,0,0,0,0,0,118,106,1,0,38,11,0,0,64,136,11,0,0,0,0,0,135,106,1,0,38,11,0,0,72,136,11,0,0,0,0,0,152,106,1,0,38,11,0,0,80,136,11,0,0,0,0,0,169,106, 1,0,38,11,0,0,88,136,11,0,0,0,0,0,186,106,1,0,38,11,0,0,96,136,11,0,0,0,0,0,204,106,1,0,38,11,0,0,104,136,11,0,0,0,0,0,222,106,1,0,38,11,0,0,112,136,11,0,0,0,0,0,233,106,1,0,38,11,0,0,120,136,11,0,0,0,0,0,244,106,1,0,38,11,0,0,128,136,11,0,0,0,0,0,255, 106,1,0,38,11,0,0,136,136,11,0,0,0,0,0,11,107,1,0,38,11,0,0,144,136,11,0,0,0,0,0,24,107,1,0,38,11,0,0,152,136,11,0,0,0,0,0,36,107,1,0,38,11,0,0,160,136,11,0,0,0,0,0,47,107,1,0,38,11,0,0,168,136,11,0,0,0,0,0,58,107,1,0,38,11,0,0,176,136,11,0,0,0,0,0,69, 107,1,0,38,11,0,0,184,136,11,0,0,0,0,0,81,107,1,0,38,11,0,0,192,136,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,93,107,1,0,100,0,0,0,0,0,0,0,0,0,0,0,122,107,1,0,102,0,1,0,97,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0, 144,224,7,0,0,0,0,0,190,107,1,0,36,1,0,0,144,224,7,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,222,224,7,0,0,0,0,0,201,107,1,0,36,1,0,0,222,224,7,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,10,225,7,0,0,0,0,0,213,107,1,0,36,1,0,0,10,225,7,0,0,0,0,0,1,0,0,0,36,0,0,0,59,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,69,225,7,0,0,0,0,0,226,107,1,0,36,1,0,0,69,225,7,0,0,0,0,0,1,0,0,0, 36,0,0,0,167,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,167,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,236,225,7,0,0,0,0,0,239,107,1,0,36,1,0,0,236,225,7,0,0,0,0,0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,76,226,7,0,0,0,0,0,252,107, 1,0,36,1,0,0,76,226,7,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,106,226,7,0,0,0,0,0,10,108,1,0,36,1,0,0,106,226,7,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,142,226,7,0,0,0,0,0,24,108,1,0,36,1,0,0,142,226,7,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,193,226,7,0,0,0,0,0,39,108,1,0,36,1,0,0,193,226,7,0,0,0,0,0,1,0,0,0,36,0,0,0,167,0,0,0,0,0,0,0, 1,0,0,0,78,1,0,0,167,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,104,227,7,0,0,0,0,0,54,108,1,0,36,1,0,0,104,227,7,0,0,0,0,0,1,0,0,0,36,0,0,0,97,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,201,227,7,0,0,0,0,0,68,108,1,0,36,1,0,0,201,227,7,0,0, 0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,236,227,7,0,0,0,0,0,83,108,1,0,36,1,0,0,236,227,7,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,228,7,0,0,0, 0,0,100,108,1,0,36,1,0,0,31,228,7,0,0,0,0,0,1,0,0,0,36,0,0,0,58,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,89,228,7,0,0,0,0,0,119,108,1,0,36,1,0,0,89,228,7,0,0,0,0,0,1,0,0,0,36,0,0,0,92,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,181,228,7,0,0,0,0,0,134,108,1,0,36,1,0,0,181,228,7,0,0,0,0,0,1,0,0,0,36,0,0,0,144,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,144,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,69,229,7,0,0,0,0,0,150,108,1,0,36,1,0,0,69,229,7,0,0,0,0,0,1,0,0,0,36,0,0,0,64, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,133,229,7,0,0,0,0,0,160,108,1,0,36,1,0,0,133,229,7,0,0,0,0,0,1,0,0,0,36,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,149,229,7,0,0,0,0,0,171,108,1,0,36,1,0, 0,149,229,7,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,176,229,7,0,0,0,0,0,182,108,1,0,36,1,0,0,176,229,7,0,0,0,0,0,1,0,0,0,36,0,0,0,212,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,212,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,132,230,7,0,0,0,0,0,194,108,1,0,36,1,0,0,132,230,7,0,0,0,0,0,1,0,0,0,36,0,0,0,48,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,180,230,7,0,0,0,0,0,205,108,1,0,36,1,0,0,180,230,7,0,0,0,0,0,1,0,0,0,36,0,0,0,58,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,58,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,238,230,7,0,0,0,0,0,217,108,1,0,36,1,0,0,238,230,7,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,38,231,7,0,0,0,0,0,230,108,1,0,36,1,0,0,38,231,7,0,0,0,0,0, 1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,231,7,0,0,0,0,0,244,108,1,0,36,1,0,0,94,231,7,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,164,231,7,0,0,0,0,0,255, 108,1,0,36,1,0,0,164,231,7,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,234,231,7,0,0,0,0,0,14,109,1,0,36,1,0,0,234,231,7,0,0,0,0,0,1,0,0,0,36,0,0,0,77,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,55,232,7,0,0,0,0,0,24,109,1,0,36,1,0,0,55,232,7,0,0,0,0,0,1,0,0,0,36,0,0,0,243,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,243,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,42,233,7,0,0,0,0,0,36,109,1,0,36,1,0,0,42,233,7,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,69,233,7,0,0,0,0,0,50,109,1,0,36,1,0,0,69,233,7,0,0,0,0,0,1,0,0,0,36,0,0,0,37,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,106,233,7,0,0,0,0,0,65,109,1,0,36,1,0,0,106,233,7,0, 0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,141,233,7,0,0,0,0,0,81,109,1,0,36,1,0,0,141,233,7,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,176,233,7,0, 0,0,0,0,98,109,1,0,36,1,0,0,176,233,7,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,225,233,7,0,0,0,0,0,112,109,1,0,36,1,0,0,225,233,7,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,18,234,7,0,0,0,0,0,130,109,1,0,36,1,0,0,18,234,7,0,0,0,0,0,1,0,0,0,36,0,0,0,73,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,91,234,7,0,0,0,0,0,143,109,1,0,36,1,0,0,91,234,7,0,0,0,0,0,1,0,0,0,36,0,0,0,31, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,122,234,7,0,0,0,0,0,157,109,1,0,36,1,0,0,122,234,7,0,0,0,0,0,1,0,0,0,36,0,0,0,252,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,252,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,118,235,7,0,0,0,0,0,172,109,1,0,36,1, 0,0,118,235,7,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,235,7,0,0,0,0,0,184,109,1,0,36,1,0,0,199,235,7,0,0,0,0,0,1,0,0,0,36,0,0,0,76,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,76,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,19,236,7,0,0,0,0,0,197,109,1,0,36,1,0,0,19,236,7,0,0,0,0,0,1,0,0,0,36,0,0,0,121,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,140,236,7,0,0,0,0,0,209,109,1,0,36,1,0,0,140,236,7,0,0,0,0,0,1,0,0,0,36,0,0,0,114,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,114,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,254,236,7,0,0,0,0,0,222,109,1,0,36,1,0,0,254,236,7,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,237,7,0,0,0,0,0,233,109,1,0,36,1,0,0,40,237,7,0,0,0,0, 0,1,0,0,0,36,0,0,0,240,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,240,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,24,239,7,0,0,0,0,0,245,109,1,0,36,1,0,0,24,239,7,0,0,0,0,0,1,0,0,0,36,0,0,0,43,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,43,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,67,240,7,0,0,0,0, 0,3,110,1,0,36,1,0,0,67,240,7,0,0,0,0,0,1,0,0,0,36,0,0,0,197,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,197,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,8,241,7,0,0,0,0,0,19,110,1,0,36,1,0,0,8,241,7,0,0,0,0,0,1,0,0,0,36,0,0,0,182,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,2,0,0,0,0,0, 0,1,0,0,0,46,1,0,0,190,243,7,0,0,0,0,0,31,110,1,0,36,1,0,0,190,243,7,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,232,243,7,0,0,0,0,0,43,110,1,0,36,1,0,0,232,243,7,0,0,0,0,0,1,0,0,0,36,0,0,0,88,1,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,88,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,245,7,0,0,0,0,0,54,110,1,0,36,1,0,0,64,245,7,0,0,0,0,0,1,0,0,0,36,0,0,0,134,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,198,245,7,0,0,0,0,0,67,110,1,0,36,1,0,0,198,245, 7,0,0,0,0,0,1,0,0,0,36,0,0,0,189,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,189,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,131,248,7,0,0,0,0,0,77,110,1,0,36,1,0,0,131,248,7,0,0,0,0,0,1,0,0,0,36,0,0,0,91,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,91,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,222,249, 7,0,0,0,0,0,88,110,1,0,36,1,0,0,222,249,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,12,250,7,0,0,0,0,0,109,110,1,0,36,1,0,0,12,250,7,0,0,0,0,0,1,0,0,0,36,0,0,0,141,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,141, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,250,7,0,0,0,0,0,123,110,1,0,36,1,0,0,153,250,7,0,0,0,0,0,1,0,0,0,36,0,0,0,80,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,233,250,7,0,0,0,0,0,135,110,1,0,36,1,0,0,233,250,7,0,0,0,0,0,1,0,0,0,36,0, 0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,58,251,7,0,0,0,0,0,148,110,1,0,36,1,0,0,58,251,7,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,104,251,7,0,0,0,0,0,159,110,1,0,36, 1,0,0,104,251,7,0,0,0,0,0,1,0,0,0,36,0,0,0,187,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,35,252,7,0,0,0,0,0,174,110,1,0,36,1,0,0,35,252,7,0,0,0,0,0,1,0,0,0,36,0,0,0,158,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,158,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,193,252,7,0,0,0,0,0,185,110,1,0,36,1,0,0,193,252,7,0,0,0,0,0,1,0,0,0,36,0,0,0,210,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,210,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,147,253,7,0,0,0,0,0,197,110,1,0,36,1,0,0,147,253,7,0,0,0,0,0,1,0,0,0,36,0,0,0,193,1,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,193,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,84,255,7,0,0,0,0,0,209,110,1,0,36,1,0,0,84,255,7,0,0,0,0,0,1,0,0,0,36,0,0,0,251,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,251,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,79,0,8,0,0,0,0,0,222,110,1,0,36,1,0,0,79,0,8,0,0,0, 0,0,1,0,0,0,36,0,0,0,187,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,10,1,8,0,0,0,0,0,239,110,1,0,36,1,0,0,10,1,8,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,52,1,8,0,0,0,0,0,252, 110,1,0,36,1,0,0,52,1,8,0,0,0,0,0,1,0,0,0,36,0,0,0,134,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,186,1,8,0,0,0,0,0,10,111,1,0,36,1,0,0,186,1,8,0,0,0,0,0,1,0,0,0,36,0,0,0,101,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,101,2,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,31,4,8,0,0,0,0,0,23,111,1,0,36,1,0,0,31,4,8,0,0,0,0,0,1,0,0,0,36,0,0,0,83,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,83,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,114,5,8,0,0,0,0,0,37,111,1,0,36,1,0,0,114,5,8,0,0,0,0,0,1,0,0,0,36,0,0,0,160,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,160,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,18,6,8,0,0,0,0,0,55,111,1,0,36,1,0,0,18,6,8,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,56,6,8,0,0,0,0,0,69,111,1,0,36,1,0,0,56,6,8,0,0,0,0,0,1,0,0,0,36,0, 0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,112,6,8,0,0,0,0,0,86,111,1,0,36,1,0,0,112,6,8,0,0,0,0,0,1,0,0,0,36,0,0,0,55,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,167,6,8,0,0,0,0,0,101,111,1,0,36,1,0, 0,167,6,8,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,223,6,8,0,0,0,0,0,117,111,1,0,36,1,0,0,223,6,8,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,9,7, 8,0,0,0,0,0,131,111,1,0,36,1,0,0,9,7,8,0,0,0,0,0,1,0,0,0,36,0,0,0,252,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,252,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,5,8,8,0,0,0,0,0,146,111,1,0,36,1,0,0,5,8,8,0,0,0,0,0,1,0,0,0,36,0,0,0,76,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,76,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,81,8,8,0,0,0,0,0,158,111,1,0,36,1,0,0,81,8,8,0,0,0,0,0,1,0,0,0,36,0,0,0,48,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,129,8,8,0,0,0,0,0,171,111,1,0,36,1,0,0,129,8,8,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,185,8,8,0,0,0,0,0,187,111,1,0,36,1,0,0,185,8,8,0,0,0,0,0,1,0,0,0,36,0,0,0,58,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,243,8,8,0,0,0,0,0,201,111,1,0,36,1,0,0,243,8,8,0,0,0, 0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,43,9,8,0,0,0,0,0,216,111,1,0,36,1,0,0,43,9,8,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,113,9,8,0,0,0,0,0,229, 111,1,0,36,1,0,0,113,9,8,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,183,9,8,0,0,0,0,0,246,111,1,0,36,1,0,0,183,9,8,0,0,0,0,0,1,0,0,0,36,0,0,0,201,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,128,10,8,0,0,0,0,0,4,112,1,0,36,1,0,0,128,10,8,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,233,10,8,0,0,0,0,0,15,112,1,0,36,1,0,0,233,10,8,0,0,0,0,0,1,0,0,0,36,0,0,0,74,0,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,74,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,51,11,8,0,0,0,0,0,28,112,1,0,36,1,0,0,51,11,8,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,157,11,8,0,0,0,0,0,41,112,1,0,36,1,0,0,157,11,8,0,0,0,0,0, 1,0,0,0,36,0,0,0,109,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,109,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,10,12,8,0,0,0,0,0,52,112,1,0,36,1,0,0,10,12,8,0,0,0,0,0,1,0,0,0,36,0,0,0,90,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,100,12,8,0,0,0,0,0,64, 112,1,0,36,1,0,0,100,12,8,0,0,0,0,0,1,0,0,0,36,0,0,0,119,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,119,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,219,12,8,0,0,0,0,0,77,112,1,0,36,1,0,0,219,12,8,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1, 0,0,0,46,1,0,0,240,12,8,0,0,0,0,0,90,112,1,0,36,1,0,0,240,12,8,0,0,0,0,0,1,0,0,0,36,0,0,0,149,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,133,13,8,0,0,0,0,0,103,112,1,0,36,1,0,0,133,13,8,0,0,0,0,0,1,0,0,0,36,0,0,0,56,1,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,56,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,189,14,8,0,0,0,0,0,128,112,1,0,36,1,0,0,189,14,8,0,0,0,0,0,1,0,0,0,36,0,0,0,130,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,130,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,63,15,8,0,0,0,0,0,146,112,1,0,36,1,0,0,63,15,8,0,0, 0,0,0,1,0,0,0,36,0,0,0,85,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,85,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,148,16,8,0,0,0,0,0,166,112,1,0,36,1,0,0,148,16,8,0,0,0,0,0,1,0,0,0,36,0,0,0,224,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,224,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,116,17,8,0,0, 0,0,0,187,112,1,0,36,1,0,0,116,17,8,0,0,0,0,0,1,0,0,0,36,0,0,0,39,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,155,17,8,0,0,0,0,0,205,112,1,0,36,1,0,0,155,17,8,0,0,0,0,0,1,0,0,0,36,0,0,0,175,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,175,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,74,18,8,0,0,0,0,0,225,112,1,0,36,1,0,0,74,18,8,0,0,0,0,0,1,0,0,0,36,0,0,0,117,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,191,18,8,0,0,0,0,0,235,112,1,0,36,1,0,0,191,18,8,0,0,0,0,0,1,0,0,0,36,0,0,0,58, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,249,18,8,0,0,0,0,0,246,112,1,0,36,1,0,0,249,18,8,0,0,0,0,0,1,0,0,0,36,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,19,8,0,0,0,0,0,2,113,1,0,36,1,0,0,31,19, 8,0,0,0,0,0,1,0,0,0,36,0,0,0,167,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,167,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,198,19,8,0,0,0,0,0,14,113,1,0,36,1,0,0,198,19,8,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,3,20,8,0, 0,0,0,0,26,113,1,0,36,1,0,0,3,20,8,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,39,20,8,0,0,0,0,0,39,113,1,0,36,1,0,0,39,20,8,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,109,20,8,0,0,0,0,0,53,113,1,0,36,1,0,0,109,20,8,0,0,0,0,0,1,0,0,0,36,0,0,0,25,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,134,20,8,0,0,0,0,0,65,113,1,0,36,1,0,0,134,20,8,0,0,0,0,0,1,0,0,0,36,0,0,0,175,0,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,53,21,8,0,0,0,0,0,79,113,1,0,36,1,0,0,53,21,8,0,0,0,0,0,1,0,0,0,36,0,0,0,118,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,118,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,171,21,8,0,0,0,0,0,90,113,1,0,36,1,0,0,171,21,8,0, 0,0,0,0,1,0,0,0,36,0,0,0,110,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,22,8,0,0,0,0,0,105,113,1,0,36,1,0,0,25,22,8,0,0,0,0,0,1,0,0,0,36,0,0,0,77,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,102,22,8,0,0, 0,0,0,121,113,1,0,36,1,0,0,102,22,8,0,0,0,0,0,1,0,0,0,36,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,177,22,8,0,0,0,0,0,137,113,1,0,36,1,0,0,177,22,8,0,0,0,0,0,1,0,0,0,36,0,0,0,82,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,3,23,8,0,0,0,0,0,148,113,1,0,36,1,0,0,3,23,8,0,0,0,0,0,1,0,0,0,36,0,0,0,39,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,42,23,8,0,0,0,0,0,160,113,1,0,36,1,0,0,42,23,8,0,0,0,0,0,1,0,0,0,36,0,0,0,28,0,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,70,23,8,0,0,0,0,0,173,113,1,0,36,1,0,0,70,23,8,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,97,23,8,0,0,0,0,0,183,113,1,0,36,1,0,0,97,23,8,0,0, 0,0,0,1,0,0,0,36,0,0,0,235,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,235,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,76,24,8,0,0,0,0,0,196,113,1,0,36,1,0,0,76,24,8,0,0,0,0,0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,216,113,1,0,38,11,0,0,200,136,11, 0,0,0,0,0,229,113,1,0,38,11,0,0,208,136,11,0,0,0,0,0,244,113,1,0,38,11,0,0,216,136,11,0,0,0,0,0,4,114,1,0,38,11,0,0,224,136,11,0,0,0,0,0,16,114,1,0,38,11,0,0,232,136,11,0,0,0,0,0,28,114,1,0,38,11,0,0,240,136,11,0,0,0,0,0,43,114,1,0,38,11,0,0,248,136, 11,0,0,0,0,0,55,114,1,0,38,11,0,0,0,137,11,0,0,0,0,0,67,114,1,0,38,11,0,0,8,137,11,0,0,0,0,0,80,114,1,0,38,11,0,0,16,137,11,0,0,0,0,0,92,114,1,0,38,11,0,0,24,137,11,0,0,0,0,0,106,114,1,0,38,11,0,0,32,137,11,0,0,0,0,0,121,114,1,0,38,11,0,0,40,137,11,0, 0,0,0,0,135,114,1,0,38,11,0,0,48,137,11,0,0,0,0,0,148,114,1,0,38,11,0,0,56,137,11,0,0,0,0,0,161,114,1,0,38,11,0,0,64,137,11,0,0,0,0,0,181,114,1,0,38,11,0,0,72,137,11,0,0,0,0,0,193,114,1,0,38,11,0,0,80,137,11,0,0,0,0,0,207,114,1,0,38,11,0,0,88,137,11, 0,0,0,0,0,220,114,1,0,38,11,0,0,96,137,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,235,114,1,0,100,0,0,0,0,0,0,0,0,0,0,0,1,115,1,0,102,0,1,0,97,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,172,24,8,0,0,0,0,0,62,115,1,0, 36,1,0,0,172,24,8,0,0,0,0,0,1,0,0,0,36,0,0,0,88,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,4,27,8,0,0,0,0,0,75,115,1,0,36,1,0,0,4,27,8,0,0,0,0,0,1,0,0,0,36,0,0,0,108,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,112,27,8,0,0,0,0,0,92,115,1,0,36,1,0,0,112,27,8,0,0,0,0,0,1,0,0,0,36,0,0,0,133,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245,27,8,0,0,0,0,0,114,115,1,0,36,1,0,0,245,27,8,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,16,28,8,0,0,0,0,0,130,115,1,0,36,1,0,0,16,28,8,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,48,28,8,0,0,0,0,0,147,115,1,0,36,1,0,0,48,28,8,0,0,0,0,0,1,0,0,0, 36,0,0,0,80,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,128,28,8,0,0,0,0,0,161,115,1,0,36,1,0,0,128,28,8,0,0,0,0,0,1,0,0,0,36,0,0,0,71,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,71,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,28,8,0,0,0,0,0,174,115,1, 0,36,1,0,0,199,28,8,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,5,29,8,0,0,0,0,0,192,115,1,0,36,1,0,0,5,29,8,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,36,29,8,0,0,0,0,0,206,115,1,0,36,1,0,0,36,29,8,0,0,0,0,0,1,0,0,0,36,0,0,0,25,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,25,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,61,30,8,0,0,0,0,0,221,115,1,0,36,1,0,0,61,30,8,0,0,0,0,0,1,0,0,0,36,0,0,0,158,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,158,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,219,30,8,0,0,0,0,0,236,115,1,0,36,1,0,0,219,30,8,0,0,0,0,0,1,0,0,0,36,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,101,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,31,8,0,0,0,0,0,254,115,1,0,36,1,0,0,64,31,8,0,0,0,0,0,1,0,0,0, 36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,31,8,0,0,0,0,0,14,116,1,0,36,1,0,0,94,31,8,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,129,31,8,0,0,0,0,0,34,116,1,0,36, 1,0,0,129,31,8,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,31,8,0,0,0,0,0,50,116,1,0,36,1,0,0,160,31,8,0,0,0,0,0,1,0,0,0,36,0,0,0,170,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,170,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,74,32,8,0,0,0,0,0,67,116,1,0,36,1,0,0,74,32,8,0,0,0,0,0,1,0,0,0,36,0,0,0,174,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,174,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,248,32,8,0,0,0,0,0,82,116,1,0,36,1,0,0,248,32,8,0,0,0,0,0,1,0,0,0,36,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,101,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,93,33,8,0,0,0,0,0,100,116,1,0,36,1,0,0,93,33,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,123,33,8,0,0,0,0,0,116,116,1,0,36,1,0,0,123,33,8,0,0,0,0,0,1,0,0,0, 36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,158,33,8,0,0,0,0,0,136,116,1,0,36,1,0,0,158,33,8,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,189,33,8,0,0,0,0,0,152,116,1, 0,36,1,0,0,189,33,8,0,0,0,0,0,1,0,0,0,36,0,0,0,170,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,170,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,103,34,8,0,0,0,0,0,169,116,1,0,36,1,0,0,103,34,8,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,165,34,8,0,0,0,0,0,178,116,1,0,36,1,0,0,165,34,8,0,0,0,0,0,1,0,0,0,36,0,0,0,37,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,202,34,8,0,0,0,0,0,189,116,1,0,36,1,0,0,202,34,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,232,34,8,0,0,0,0,0,199,116,1,0,36,1,0,0,232,34,8,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,38,35,8,0,0,0,0,0,210,116,1,0,36,1,0,0,38,35,8,0,0,0,0,0, 1,0,0,0,36,0,0,0,37,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,75,35,8,0,0,0,0,0,223,116,1,0,36,1,0,0,75,35,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,105,35,8,0,0,0,0,0,235, 116,1,0,36,1,0,0,105,35,8,0,0,0,0,0,1,0,0,0,36,0,0,0,100,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,205,35,8,0,0,0,0,0,248,116,1,0,36,1,0,0,205,35,8,0,0,0,0,0,1,0,0,0,36,0,0,0,88,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,37,36,8,0,0,0,0,0,6,117,1,0,36,1,0,0,37,36,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,67,36,8,0,0,0,0,0,20,117,1,0,36,1,0,0,67,36,8,0,0,0,0,0,1,0,0,0,36,0,0,0,126,1,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,126,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,193,37,8,0,0,0,0,0,31,117,1,0,36,1,0,0,193,37,8,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,44,117,1,0,38,11,0,0,104,137,11,0,0,0,0,0,59,117,1,0,38,11,0,0,112,137,11, 0,0,0,0,0,73,117,1,0,38,11,0,0,120,137,11,0,0,0,0,0,89,117,1,0,38,11,0,0,128,137,11,0,0,0,0,0,106,117,1,0,38,11,0,0,136,137,11,0,0,0,0,0,123,117,1,0,38,11,0,0,144,137,11,0,0,0,0,0,132,117,1,0,38,11,0,0,152,137,11,0,0,0,0,0,143,117,1,0,38,11,0,0,160,137, 11,0,0,0,0,0,156,117,1,0,38,11,0,0,168,137,11,0,0,0,0,0,167,117,1,0,38,11,0,0,176,137,11,0,0,0,0,0,180,117,1,0,38,11,0,0,184,137,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,195,117,1,0,100,0,0,0,0,0,0,0,0,0,0, 0,223,117,1,0,102,0,1,0,97,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,219,37,8,0,0,0,0,0,34,118,1,0,36,1,0,0,219,37,8,0,0,0,0,0,1,0,0,0,36,0,0,0,51,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,14,39,8,0,0,0,0,0,45,118,1,0,36,1,0,0,14,39,8, 0,0,0,0,0,1,0,0,0,36,0,0,0,88,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,102,39,8,0,0,0,0,0,57,118,1,0,36,1,0,0,102,39,8,0,0,0,0,0,1,0,0,0,36,0,0,0,92,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,194,39,8,0,0, 0,0,0,72,118,1,0,36,1,0,0,194,39,8,0,0,0,0,0,1,0,0,0,36,0,0,0,108,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,46,40,8,0,0,0,0,0,85,118,1,0,36,1,0,0,46,40,8,0,0,0,0,0,1,0,0,0,36,0,0,0,236,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,236,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,26,41,8,0,0,0,0,0,97,118,1,0,36,1,0,0,26,41,8,0,0,0,0,0,1,0,0,0,36,0,0,0,131,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,157,41,8,0,0,0,0,0,113,118,1,0,36,1,0,0,157,41,8,0,0,0,0,0,1,0,0,0,36,0,0,0,182,0, 0,0,0,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,83,42,8,0,0,0,0,0,126,118,1,0,36,1,0,0,83,42,8,0,0,0,0,0,1,0,0,0,36,0,0,0,11,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,11,0,0,0,0,0,0,0,145,118,1,0,38,11,0,0,192,137,11,0,0,0,0,0,1,0,0,0,100,1,0,0, 0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,158,118,1,0,100,0,0,0,0,0,0,0,0,0,0,0,181,118,1,0,102,0,1,0,97,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,94,42,8,0,0,0,0,0,243,118,1,0,36,1,0,0,94,42,8,0,0,0,0,0,1,0,0,0,36,0,0,0,83,0,0,0,0,0,0,0,1,0,0,0, 78,1,0,0,83,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,177,42,8,0,0,0,0,0,255,118,1,0,36,1,0,0,177,42,8,0,0,0,0,0,1,0,0,0,36,0,0,0,64,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,241,42,8,0,0,0,0,0,11,119,1,0,36,1,0,0,241,42,8,0,0,0,0,0,1,0,0, 0,36,0,0,0,171,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,171,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,156,43,8,0,0,0,0,0,24,119,1,0,36,1,0,0,156,43,8,0,0,0,0,0,1,0,0,0,36,0,0,0,181,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,181,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,81,45,8,0,0,0,0,0,36,119, 1,0,36,1,0,0,81,45,8,0,0,0,0,0,1,0,0,0,36,0,0,0,231,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,231,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,56,47,8,0,0,0,0,0,52,119,1,0,36,1,0,0,56,47,8,0,0,0,0,0,1,0,0,0,36,0,0,0,100,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,156,47,8,0,0,0,0,0,67,119,1,0,36,1,0,0,156,47,8,0,0,0,0,0,1,0,0,0,36,0,0,0,196,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,196,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,96,49,8,0,0,0,0,0,80,119,1,0,36,1,0,0,96,49,8,0,0,0,0,0,1,0,0,0,36,0,0,0,115,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,115,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,211,49,8,0,0,0,0,0,93,119,1,0,36,1,0,0,211,49,8,0,0,0,0,0,1,0,0,0,36,0,0,0,125,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,80,50,8,0,0,0,0,0,110,119,1,0,36,1,0,0,80,50,8,0,0,0,0,0, 1,0,0,0,36,0,0,0,106,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,186,51,8,0,0,0,0,0,128,119,1,0,36,1,0,0,186,51,8,0,0,0,0,0,1,0,0,0,36,0,0,0,144,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,144,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,74,53,8,0,0,0,0,0, 150,119,1,0,36,1,0,0,74,53,8,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,101,53,8,0,0,0,0,0,168,119,1,0,36,1,0,0,101,53,8,0,0,0,0,0,1,0,0,0,36,0,0,0,168,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,168,0,0,0,0,0,0, 0,1,0,0,0,46,1,0,0,13,54,8,0,0,0,0,0,187,119,1,0,36,1,0,0,13,54,8,0,0,0,0,0,1,0,0,0,36,0,0,0,125,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,138,54,8,0,0,0,0,0,205,119,1,0,36,1,0,0,138,54,8,0,0,0,0,0,1,0,0,0,36,0,0,0,98,1,0,0,0, 0,0,0,1,0,0,0,78,1,0,0,98,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,236,55,8,0,0,0,0,0,224,119,1,0,36,1,0,0,236,55,8,0,0,0,0,0,1,0,0,0,36,0,0,0,152,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,152,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,132,57,8,0,0,0,0,0,247,119,1,0,36,1,0,0,132,57, 8,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,159,57,8,0,0,0,0,0,10,120,1,0,36,1,0,0,159,57,8,0,0,0,0,0,1,0,0,0,36,0,0,0,168,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,168,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,71,58,8, 0,0,0,0,0,30,120,1,0,36,1,0,0,71,58,8,0,0,0,0,0,1,0,0,0,36,0,0,0,146,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,146,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,58,8,0,0,0,0,0,46,120,1,0,36,1,0,0,217,58,8,0,0,0,0,0,1,0,0,0,36,0,0,0,172,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,172,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,133,59,8,0,0,0,0,0,63,120,1,0,36,1,0,0,133,59,8,0,0,0,0,0,1,0,0,0,36,0,0,0,11,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,11,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,144,60,8,0,0,0,0,0,84,120,1,0,36,1,0,0,144,60,8,0,0,0,0,0,1,0,0,0,36,0,0,0,159, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,159,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,47,61,8,0,0,0,0,0,102,120,1,0,36,1,0,0,47,61,8,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,96,61,8,0,0,0,0,0,117,120,1,0,36,1,0,0,96, 61,8,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,201,61,8,0,0,0,0,0,133,120,1,0,36,1,0,0,201,61,8,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,250, 61,8,0,0,0,0,0,153,120,1,0,36,1,0,0,250,61,8,0,0,0,0,0,1,0,0,0,36,0,0,0,139,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,133,62,8,0,0,0,0,0,170,120,1,0,36,1,0,0,133,62,8,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,182,62,8,0,0,0,0,0,187,120,1,0,36,1,0,0,182,62,8,0,0,0,0,0,1,0,0,0,36,0,0,0,43,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,225,62,8,0,0,0,0,0,205,120,1,0,36,1,0,0,225,62,8,0,0,0,0,0,1,0,0,0,36, 0,0,0,55,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,24,63,8,0,0,0,0,0,227,120,1,0,36,1,0,0,24,63,8,0,0,0,0,0,1,0,0,0,36,0,0,0,139,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,163,63,8,0,0,0,0,0,246,120,1,0,36, 1,0,0,163,63,8,0,0,0,0,0,1,0,0,0,36,0,0,0,127,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,127,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,34,65,8,0,0,0,0,0,0,121,1,0,36,1,0,0,34,65,8,0,0,0,0,0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0,0,0,14,121,1,0,32,12, 0,0,0,0,0,0,0,0,0,0,27,121,1,0,32,12,0,0,0,0,0,0,0,0,0,0,46,121,1,0,32,12,0,0,0,0,0,0,0,0,0,0,65,121,1,0,32,12,0,0,0,0,0,0,0,0,0,0,85,121,1,0,32,12,0,0,0,0,0,0,0,0,0,0,103,121,1,0,32,12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0, 0,100,0,0,0,0,0,0,0,0,0,0,0,120,121,1,0,100,0,0,0,0,0,0,0,0,0,0,0,143,121,1,0,102,0,1,0,97,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,104,65,8,0,0,0,0,0,205,121,1,0,36,1,0,0,104,65,8,0,0,0,0,0,1,0,0,0,36,0,0,0,100,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,204,65,8,0,0,0,0,0,217,121,1,0,36,1,0,0,204,65,8,0,0,0,0,0,1,0,0,0,36,0,0,0,100,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,48,66,8,0,0,0,0,0,230,121,1,0,36,1,0,0,48,66,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,78,66,8,0,0,0,0,0,243,121,1,0,36,1,0,0,78,66,8,0,0,0,0,0,1,0,0,0,36,0,0,0,100,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,178,66,8,0,0,0,0,0,0,122,1,0,36,1,0,0,178,66,8, 0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,208,66,8,0,0,0,0,0,14,122,1,0,36,1,0,0,208,66,8,0,0,0,0,0,1,0,0,0,36,0,0,0,36,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,67,8,0,0, 0,0,0,28,122,1,0,36,1,0,0,244,67,8,0,0,0,0,0,1,0,0,0,36,0,0,0,115,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,103,68,8,0,0,0,0,0,41,122,1,0,36,1,0,0,103,68,8,0,0,0,0,0,1,0,0,0,36,0,0,0,115,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,218,68,8,0,0,0,0,0,55,122,1,0,36,1,0,0,218,68,8,0,0,0,0,0,1,0,0,0,36,0,0,0,155,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,117,69,8,0,0,0,0,0,67,122,1,0,36,1,0,0,117,69,8,0,0,0,0,0,1,0,0,0,36,0,0,0,221, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,221,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,70,8,0,0,0,0,0,80,122,1,0,36,1,0,0,82,70,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,112,70,8,0,0,0,0,0,93,122,1,0,36,1,0,0,112, 70,8,0,0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,17,71,8,0,0,0,0,0,107,122,1,0,36,1,0,0,17,71,8,0,0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,178, 71,8,0,0,0,0,0,122,122,1,0,36,1,0,0,178,71,8,0,0,0,0,0,1,0,0,0,36,0,0,0,254,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,254,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,176,72,8,0,0,0,0,0,133,122,1,0,36,1,0,0,176,72,8,0,0,0,0,0,1,0,0,0,36,0,0,0,9,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 9,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,185,73,8,0,0,0,0,0,145,122,1,0,36,1,0,0,185,73,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,215,73,8,0,0,0,0,0,157,122,1,0,36,1,0,0,215,73,8,0,0,0,0,0,1,0,0,0,36,0,0, 0,161,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,120,74,8,0,0,0,0,0,170,122,1,0,36,1,0,0,120,74,8,0,0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,75,8,0,0,0,0,0,192,122,1,0,36, 1,0,0,25,75,8,0,0,0,0,0,1,0,0,0,36,0,0,0,128,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,128,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,75,8,0,0,0,0,0,203,122,1,0,36,1,0,0,153,75,8,0,0,0,0,0,1,0,0,0,36,0,0,0,163,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,163,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,60,76,8,0,0,0,0,0,215,122,1,0,36,1,0,0,60,76,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,90,76,8,0,0,0,0,0,227,122,1,0,36,1,0,0,90,76,8,0,0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,251,76,8,0,0,0,0,0,240,122,1,0,36,1,0,0,251,76,8,0,0,0,0,0,1,0,0,0,36,0,0,0,130,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,130,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,125,77,8,0,0,0,0,0,6,123,1,0,36,1,0,0,125,77,8,0,0,0,0,0,1,0,0, 0,36,0,0,0,128,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,128,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,253,77,8,0,0,0,0,0,18,123,1,0,36,1,0,0,253,77,8,0,0,0,0,0,1,0,0,0,36,0,0,0,163,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,163,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,160,78,8,0,0,0,0,0,31,123, 1,0,36,1,0,0,160,78,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,190,78,8,0,0,0,0,0,44,123,1,0,36,1,0,0,190,78,8,0,0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,95,79,8,0,0,0,0,0,58,123,1,0,36,1,0,0,95,79,8,0,0,0,0,0,1,0,0,0,36,0,0,0,126,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,221,79,8,0,0,0,0,0,76,123,1,0,36,1,0,0,221,79,8,0,0,0,0,0,1,0,0,0,36,0,0,0,128,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,128,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,93,80,8,0,0,0,0,0,89,123,1,0,36,1,0,0,93,80,8,0,0,0,0,0,1,0,0,0,36,0,0,0,163,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,163,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,0,81,8,0,0,0,0,0,103,123,1,0,36,1,0,0,0,81,8,0,0,0,0,0,1,0, 0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,81,8,0,0,0,0,0,117,123,1,0,36,1,0,0,30,81,8,0,0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,191,81,8,0,0,0,0,0,132,123, 1,0,36,1,0,0,191,81,8,0,0,0,0,0,1,0,0,0,36,0,0,0,126,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,61,82,8,0,0,0,0,0,151,123,1,0,36,1,0,0,61,82,8,0,0,0,0,0,1,0,0,0,36,0,0,0,155,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,216,82,8,0,0,0,0,0,168,123,1,0,36,1,0,0,216,82,8,0,0,0,0,0,1,0,0,0,36,0,0,0,221,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,221,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,83,8,0,0,0,0,0,186,123,1,0,36,1,0,0,181,83,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0, 0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,211,83,8,0,0,0,0,0,204,123,1,0,36,1,0,0,211,83,8,0,0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,116,84,8,0,0,0,0,0,223,123,1,0,36,1,0,0,116,84,8,0, 0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,21,85,8,0,0,0,0,0,246,123,1,0,36,1,0,0,21,85,8,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,126,85,8,0, 0,0,0,0,5,124,1,0,36,1,0,0,126,85,8,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,231,85,8,0,0,0,0,0,21,124,1,0,36,1,0,0,231,85,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,5,86,8,0,0,0,0,0,37,124,1,0,36,1,0,0,5,86,8,0,0,0,0,0,1,0,0,0,36,0,0,0,161,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,166,86,8,0,0,0,0,0,54,124,1,0,36,1,0,0,166,86,8,0,0,0,0,0,1,0,0,0,36,0,0,0,230,0,0,0, 0,0,0,0,1,0,0,0,78,1,0,0,230,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,140,87,8,0,0,0,0,0,66,124,1,0,36,1,0,0,140,87,8,0,0,0,0,0,1,0,0,0,36,0,0,0,121,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,5,88,8,0,0,0,0,0,86,124,1,0,36,1,0,0,5,88,8,0, 0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,88,8,0,0,0,0,0,107,124,1,0,36,1,0,0,110,88,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,140,88,8,0, 0,0,0,0,128,124,1,0,36,1,0,0,140,88,8,0,0,0,0,0,1,0,0,0,36,0,0,0,154,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,154,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,38,89,8,0,0,0,0,0,150,124,1,0,36,1,0,0,38,89,8,0,0,0,0,0,1,0,0,0,36,0,0,0,113,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,113,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,151,89,8,0,0,0,0,0,169,124,1,0,36,1,0,0,151,89,8,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,232,89,8,0,0,0,0,0,182,124,1,0,36,1,0,0,232,89,8,0,0,0,0,0,1,0,0,0,36,0,0,0,64, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,90,8,0,0,0,0,0,197,124,1,0,36,1,0,0,40,90,8,0,0,0,0,0,1,0,0,0,36,0,0,0,141,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,181,90,8,0,0,0,0,0,212,124,1,0,36,1,0,0,181, 90,8,0,0,0,0,0,1,0,0,0,36,0,0,0,115,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,91,8,0,0,0,0,0,225,124,1,0,36,1,0,0,40,91,8,0,0,0,0,0,1,0,0,0,36,0,0,0,107,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,147, 91,8,0,0,0,0,0,240,124,1,0,36,1,0,0,147,91,8,0,0,0,0,0,1,0,0,0,36,0,0,0,133,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,24,92,8,0,0,0,0,0,255,124,1,0,36,1,0,0,24,92,8,0,0,0,0,0,1,0,0,0,36,0,0,0,113,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 113,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,137,92,8,0,0,0,0,0,11,125,1,0,36,1,0,0,137,92,8,0,0,0,0,0,1,0,0,0,36,0,0,0,107,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,244,92,8,0,0,0,0,0,25,125,1,0,36,1,0,0,244,92,8,0,0,0,0,0,1,0,0,0,36,0, 0,0,141,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,129,93,8,0,0,0,0,0,39,125,1,0,36,1,0,0,129,93,8,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,210,93,8,0,0,0,0,0,51,125,1,0,36, 1,0,0,210,93,8,0,0,0,0,0,1,0,0,0,36,0,0,0,146,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,146,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,100,94,8,0,0,0,0,0,65,125,1,0,36,1,0,0,100,94,8,0,0,0,0,0,1,0,0,0,36,0,0,0,133,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,233,94,8,0,0,0,0,0,79,125,1,0,36,1,0,0,233,94,8,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,58,95,8,0,0,0,0,0,92,125,1,0,36,1,0,0,58,95,8,0,0,0,0,0,1,0,0,0,36,0,0,0,105,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,105,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,163,95,8,0,0,0,0,0,107,125,1,0,36,1,0,0,163,95,8,0,0,0,0,0,1,0,0,0,36,0,0,0,133,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,40,96,8,0,0,0,0,0,122,125,1,0,36,1,0,0,40,96,8,0,0,0,0,0,1,0,0, 0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,121,96,8,0,0,0,0,0,136,125,1,0,36,1,0,0,121,96,8,0,0,0,0,0,1,0,0,0,36,0,0,0,94,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,94,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,215,96,8,0,0,0,0,0,152,125, 1,0,36,1,0,0,215,96,8,0,0,0,0,0,1,0,0,0,36,0,0,0,133,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,92,97,8,0,0,0,0,0,168,125,1,0,36,1,0,0,92,97,8,0,0,0,0,0,1,0,0,0,36,0,0,0,110,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,202,97,8,0,0,0,0,0,186,125,1,0,36,1,0,0,202,97,8,0,0,0,0,0,1,0,0,0,36,0,0,0,107,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,53,98,8,0,0,0,0,0,206,125,1,0,36,1,0,0,53,98,8,0,0,0,0,0,1,0,0,0,36,0,0,0,133,0,0,0,0,0,0,0, 1,0,0,0,78,1,0,0,133,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,186,98,8,0,0,0,0,0,226,125,1,0,36,1,0,0,186,98,8,0,0,0,0,0,1,0,0,0,36,0,0,0,160,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,160,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,90,99,8,0,0,0,0,0,240,125,1,0,36,1,0,0,90,99,8,0,0,0, 0,0,1,0,0,0,36,0,0,0,191,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,25,100,8,0,0,0,0,0,255,125,1,0,36,1,0,0,25,100,8,0,0,0,0,0,1,0,0,0,36,0,0,0,237,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,237,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,6,101,8,0,0,0, 0,0,15,126,1,0,36,1,0,0,6,101,8,0,0,0,0,0,1,0,0,0,36,0,0,0,115,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,121,101,8,0,0,0,0,0,30,126,1,0,36,1,0,0,121,101,8,0,0,0,0,0,1,0,0,0,36,0,0,0,77,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,198,101,8,0,0,0,0,0,46,126,1,0,36,1,0,0,198,101,8,0,0,0,0,0,1,0,0,0,36,0,0,0,211,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,211,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,102,8,0,0,0,0,0,62,126,1,0,36,1,0,0,153,102,8,0,0,0,0,0,1,0,0,0,36,0,0,0,101, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,101,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,254,102,8,0,0,0,0,0,77,126,1,0,36,1,0,0,254,102,8,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,76,103,8,0,0,0,0,0,94,126,1,0,36,1,0,0, 76,103,8,0,0,0,0,0,1,0,0,0,36,0,0,0,86,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,162,103,8,0,0,0,0,0,111,126,1,0,36,1,0,0,162,103,8,0,0,0,0,0,1,0,0,0,36,0,0,0,59,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,59,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 221,104,8,0,0,0,0,0,121,126,1,0,36,1,0,0,221,104,8,0,0,0,0,0,1,0,0,0,36,0,0,0,4,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,4,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0,225,108,8,0,0,0,0,0,133,126,1,0,36,1,0,0,225,108,8,0,0,0,0,0,1,0,0,0,36,0,0,0,163,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,163,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,132,109,8,0,0,0,0,0,144,126,1,0,36,1,0,0,132,109,8,0,0,0,0,0,1,0,0,0,36,0,0,0,71,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,71,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,203,109,8,0,0,0,0,0,156,126,1,0,36,1,0,0,203,109,8,0,0,0,0,0,1, 0,0,0,36,0,0,0,43,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,246,109,8,0,0,0,0,0,167,126,1,0,36,1,0,0,246,109,8,0,0,0,0,0,1,0,0,0,36,0,0,0,211,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,211,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,201,110,8,0,0,0,0,0, 179,126,1,0,36,1,0,0,201,110,8,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,32,111,8,0,0,0,0,0,188,126,1,0,36,1,0,0,32,111,8,0,0,0,0,0,1,0,0,0,36,0,0,0,81,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,1,0,0,0,0,0, 0,1,0,0,0,46,1,0,0,113,112,8,0,0,0,0,0,199,126,1,0,36,1,0,0,113,112,8,0,0,0,0,0,1,0,0,0,36,0,0,0,86,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,112,8,0,0,0,0,0,210,126,1,0,36,1,0,0,199,112,8,0,0,0,0,0,1,0,0,0,36,0,0,0,64,0,0, 0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,7,113,8,0,0,0,0,0,221,126,1,0,36,1,0,0,7,113,8,0,0,0,0,0,1,0,0,0,36,0,0,0,189,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,189,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,196,113,8,0,0,0,0,0,232,126,1,0,36,1,0,0,196, 113,8,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,246,126,1,0,38,11,0,0,200,137,11,0,0,0,0,0,2,127,1,0,38,11,0,0,204,137,11,0,0,0,0,0,13,127,1,0,38,11,0,0,208,137,11,0,0,0,0,0,25,127,1,0,38,11,0,0,216,137,11,0,0,0, 0,0,38,127,1,0,38,11,0,0,224,137,11,0,0,0,0,0,52,127,1,0,38,11,0,0,232,137,11,0,0,0,0,0,67,127,1,0,38,11,0,0,240,137,11,0,0,0,0,0,79,127,1,0,38,11,0,0,248,137,11,0,0,0,0,0,93,127,1,0,38,11,0,0,0,138,11,0,0,0,0,0,104,127,1,0,38,11,0,0,8,138,11,0,0,0,0, 0,117,127,1,0,38,11,0,0,16,138,11,0,0,0,0,0,128,127,1,0,38,11,0,0,24,138,11,0,0,0,0,0,141,127,1,0,38,11,0,0,32,138,11,0,0,0,0,0,153,127,1,0,38,11,0,0,40,138,11,0,0,0,0,0,167,127,1,0,38,11,0,0,48,138,11,0,0,0,0,0,180,127,1,0,38,11,0,0,56,138,11,0,0,0, 0,0,195,127,1,0,38,11,0,0,64,138,11,0,0,0,0,0,212,127,1,0,38,11,0,0,72,138,11,0,0,0,0,0,231,127,1,0,38,11,0,0,80,138,11,0,0,0,0,0,246,127,1,0,38,11,0,0,88,138,11,0,0,0,0,0,7,128,1,0,38,11,0,0,96,138,11,0,0,0,0,0,27,128,1,0,38,11,0,0,104,138,11,0,0,0, 0,0,49,128,1,0,38,11,0,0,112,138,11,0,0,0,0,0,64,128,1,0,38,11,0,0,120,138,11,0,0,0,0,0,79,128,1,0,38,11,0,0,128,138,11,0,0,0,0,0,93,128,1,0,38,11,0,0,136,138,11,0,0,0,0,0,107,128,1,0,38,11,0,0,144,138,11,0,0,0,0,0,122,128,1,0,38,11,0,0,152,138,11,0, 0,0,0,0,138,128,1,0,38,11,0,0,160,138,11,0,0,0,0,0,158,128,1,0,38,11,0,0,168,138,11,0,0,0,0,0,174,128,1,0,38,11,0,0,176,138,11,0,0,0,0,0,191,128,1,0,38,11,0,0,184,138,11,0,0,0,0,0,203,128,1,0,38,11,0,0,192,138,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0, 0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,214,128,1,0,100,0,0,0,0,0,0,0,0,0,0,0,237,128,1,0,102,0,1,0,98,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,46,114,8,0,0,0,0,0,43,129,1,0,36,1,0,0,46,114,8,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0, 40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,86,114,8,0,0,0,0,0,53,129,1,0,36,1,0,0,86,114,8,0,0,0,0,0,1,0,0,0,36,0,0,0,92,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,178,114,8,0,0,0,0,0,65,129,1,0,36,1,0,0,178,114,8,0,0,0,0,0,1,0,0,0,36,0, 0,0,218,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,218,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,140,115,8,0,0,0,0,0,78,129,1,0,36,1,0,0,140,115,8,0,0,0,0,0,1,0,0,0,36,0,0,0,39,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,179,115,8,0,0,0,0,0,91,129,1,0, 36,1,0,0,179,115,8,0,0,0,0,0,1,0,0,0,36,0,0,0,156,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,156,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,79,116,8,0,0,0,0,0,105,129,1,0,36,1,0,0,79,116,8,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,125,116,8,0,0,0,0,0,119,129,1,0,36,1,0,0,125,116,8,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,165,116,8,0,0,0,0,0,138,129,1,0,36,1,0,0,165,116,8,0,0,0,0,0,1,0,0,0,36,0,0,0,111,0,0,0,0,0,0,0, 1,0,0,0,78,1,0,0,111,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,20,117,8,0,0,0,0,0,154,129,1,0,36,1,0,0,20,117,8,0,0,0,0,0,1,0,0,0,36,0,0,0,93,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,113,117,8,0,0,0,0,0,170,129,1,0,36,1,0,0,113,117,8,0,0, 0,0,0,1,0,0,0,36,0,0,0,53,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,166,117,8,0,0,0,0,0,187,129,1,0,36,1,0,0,166,117,8,0,0,0,0,0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,6,118,8,0,0,0, 0,0,205,129,1,0,36,1,0,0,6,118,8,0,0,0,0,0,1,0,0,0,36,0,0,0,206,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,206,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,212,118,8,0,0,0,0,0,219,129,1,0,36,1,0,0,212,118,8,0,0,0,0,0,1,0,0,0,36,0,0,0,81,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0, 0,0,0,0,1,0,0,0,46,1,0,0,37,119,8,0,0,0,0,0,231,129,1,0,36,1,0,0,37,119,8,0,0,0,0,0,1,0,0,0,36,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,143,119,8,0,0,0,0,0,245,129,1,0,36,1,0,0,143,119,8,0,0,0,0,0,1,0,0,0,36,0,0,0,27, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,119,8,0,0,0,0,0,3,130,1,0,36,1,0,0,170,119,8,0,0,0,0,0,1,0,0,0,36,0,0,0,190,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,190,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,104,120,8,0,0,0,0,0,18,130,1,0,36,1,0,0, 104,120,8,0,0,0,0,0,1,0,0,0,36,0,0,0,115,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,219,120,8,0,0,0,0,0,31,130,1,0,36,1,0,0,219,120,8,0,0,0,0,0,1,0,0,0,36,0,0,0,130,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,130,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,93,121,8,0,0,0,0,0,46,130,1,0,36,1,0,0,93,121,8,0,0,0,0,0,1,0,0,0,36,0,0,0,28,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,121,121,8,0,0,0,0,0,61,130,1,0,36,1,0,0,121,121,8,0,0,0,0,0,1,0,0,0,36,0,0,0,65,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,65,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,186,121,8,0,0,0,0,0,77,130,1,0,36,1,0,0,186,121,8,0,0,0,0,0,1,0,0,0,36,0,0,0,115,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,45,122,8,0,0,0,0,0,91,130,1,0,36,1,0,0,45,122,8,0,0,0,0,0,1,0,0, 0,36,0,0,0,130,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,130,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,175,122,8,0,0,0,0,0,107,130,1,0,36,1,0,0,175,122,8,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,121,130,1,0,38,10,0,0,4,71,11,0,0,0,0,0, 143,130,1,0,38,11,0,0,200,138,11,0,0,0,0,0,157,130,1,0,38,11,0,0,208,138,11,0,0,0,0,0,173,130,1,0,38,11,0,0,216,138,11,0,0,0,0,0,191,130,1,0,38,11,0,0,224,138,11,0,0,0,0,0,205,130,1,0,38,11,0,0,232,138,11,0,0,0,0,0,220,130,1,0,38,11,0,0,240,138,11,0, 0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,236,130,1,0,100,0,0,0,0,0,0,0,0,0,0,0,2,131,1,0,102,0,1,0,98,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,211,122,8,0,0,0,0,0,63,131,1,0,36,1,0,0,211,122,8,0,0,0,0,0,1,0,0,0,36,0,0, 0,101,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,101,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,56,123,8,0,0,0,0,0,76,131,1,0,36,1,0,0,56,123,8,0,0,0,0,0,1,0,0,0,36,0,0,0,218,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,218,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,18,125,8,0,0,0,0,0,93,131,1,0,36, 1,0,0,18,125,8,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,50,125,8,0,0,0,0,0,107,131,1,0,36,1,0,0,50,125,8,0,0,0,0,0,1,0,0,0,36,0,0,0,64,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,0,0,0,0,1,0,0,0,46,1, 0,0,114,125,8,0,0,0,0,0,127,131,1,0,36,1,0,0,114,125,8,0,0,0,0,0,1,0,0,0,36,0,0,0,245,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,245,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,103,127,8,0,0,0,0,0,141,131,1,0,36,1,0,0,103,127,8,0,0,0,0,0,1,0,0,0,36,0,0,0,23,0,0,0,0,0,0,0,1,0, 0,0,78,1,0,0,23,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,126,127,8,0,0,0,0,0,155,131,1,0,36,1,0,0,126,127,8,0,0,0,0,0,1,0,0,0,36,0,0,0,246,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,246,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,116,128,8,0,0,0,0,0,170,131,1,0,36,1,0,0,116,128,8,0,0, 0,0,0,1,0,0,0,36,0,0,0,55,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,171,128,8,0,0,0,0,0,189,131,1,0,36,1,0,0,171,128,8,0,0,0,0,0,1,0,0,0,36,0,0,0,199,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,199,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,114,130,8,0, 0,0,0,0,206,131,1,0,36,1,0,0,114,130,8,0,0,0,0,0,1,0,0,0,36,0,0,0,190,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,190,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,48,131,8,0,0,0,0,0,230,131,1,0,36,1,0,0,48,131,8,0,0,0,0,0,1,0,0,0,36,0,0,0,243,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,243, 2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,35,134,8,0,0,0,0,0,246,131,1,0,36,1,0,0,35,134,8,0,0,0,0,0,1,0,0,0,36,0,0,0,49,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,84,134,8,0,0,0,0,0,7,132,1,0,36,1,0,0,84,134,8,0,0,0,0,0,1,0,0,0,36,0,0,0,112, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,196,134,8,0,0,0,0,0,25,132,1,0,36,1,0,0,196,134,8,0,0,0,0,0,1,0,0,0,36,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,0,0,0,0,38,132,1,0,38,11,0,0,248,138,11,0,0,0,0,0,55,132,1,0,38, 11,0,0,0,139,11,0,0,0,0,0,74,132,1,0,38,11,0,0,8,139,11,0,0,0,0,0,89,132,1,0,38,11,0,0,16,139,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,107,132,1,0,100,0,0,0,0,0,0,0,0,0,0,0,131,132,1,0,102,0,1,0,98,96,143,77, 0,0,0,0,1,0,0,0,46,1,0,0,212,134,8,0,0,0,0,0,194,132,1,0,36,1,0,0,212,134,8,0,0,0,0,0,1,0,0,0,36,0,0,0,199,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,199,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,155,135,8,0,0,0,0,0,205,132,1,0,36,1,0,0,155,135,8,0,0,0,0,0,1,0,0,0,36,0,0,0, 75,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,230,135,8,0,0,0,0,0,219,132,1,0,36,1,0,0,230,135,8,0,0,0,0,0,1,0,0,0,36,0,0,0,225,2,0,0,0,0,0,0,1,0,0,0,78,1,0,0,225,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,199,138,8,0,0,0,0,0,233,132,1,0,36, 1,0,0,199,138,8,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,250,138,8,0,0,0,0,0,245,132,1,0,36,1,0,0,250,138,8,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,36,139,8,0,0,0,0,0,1,133,1,0,36,1,0,0,36,139,8,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,139,8,0,0,0,0,0,13,133,1,0,36,1,0,0,82,139,8,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,169,139,8,0,0,0,0,0,24,133,1,0,36,1,0,0,169,139,8,0,0,0,0,0,1,0,0,0,36,0,0,0,48,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,139,8,0,0,0,0,0,36,133,1,0,36,1,0,0,217,139,8,0,0,0,0,0,1,0,0, 0,36,0,0,0,39,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,0,140,8,0,0,0,0,0,49,133,1,0,36,1,0,0,0,140,8,0,0,0,0,0,1,0,0,0,36,0,0,0,54,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,54,140,8,0,0,0,0,0,60,133,1,0, 36,1,0,0,54,140,8,0,0,0,0,0,1,0,0,0,36,0,0,0,191,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,245,140,8,0,0,0,0,0,72,133,1,0,36,1,0,0,245,140,8,0,0,0,0,0,1,0,0,0,36,0,0,0,29,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,29,1,0,0,0,0,0,0,1,0,0,0, 46,1,0,0,18,142,8,0,0,0,0,0,85,133,1,0,36,1,0,0,18,142,8,0,0,0,0,0,1,0,0,0,36,0,0,0,47,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,65,142,8,0,0,0,0,0,98,133,1,0,36,1,0,0,65,142,8,0,0,0,0,0,1,0,0,0,36,0,0,0,243,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,243,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,52,143,8,0,0,0,0,0,111,133,1,0,36,1,0,0,52,143,8,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,108,143,8,0,0,0,0,0,123,133,1,0,36,1,0,0,108,143,8,0,0,0,0,0, 1,0,0,0,36,0,0,0,184,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,36,144,8,0,0,0,0,0,137,133,1,0,36,1,0,0,36,144,8,0,0,0,0,0,1,0,0,0,36,0,0,0,49,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,49,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,85,145,8,0,0,0,0,0, 152,133,1,0,36,1,0,0,85,145,8,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,106,145,8,0,0,0,0,0,169,133,1,0,36,1,0,0,106,145,8,0,0,0,0,0,1,0,0,0,36,0,0,0,30,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,0,0, 0,0,1,0,0,0,46,1,0,0,136,145,8,0,0,0,0,0,184,133,1,0,36,1,0,0,136,145,8,0,0,0,0,0,1,0,0,0,36,0,0,0,162,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,162,4,0,0,0,0,0,0,199,133,1,0,38,11,0,0,24,139,11,0,0,0,0,0,212,133,1,0,38,11,0,0,32,139,11,0,0,0,0,0,1,0,0,0,100,1, 0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,228,133,1,0,100,0,0,0,0,0,0,0,0,0,0,0,251,133,1,0,102,0,1,0,98,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,42,150,8,0,0,0,0,0,57,134,1,0,36,1,0,0,42,150,8,0,0,0,0,0,1,0,0,0,36,0,0,0,36,0,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,36,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,78,150,8,0,0,0,0,0,69,134,1,0,36,1,0,0,78,150,8,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,105,150,8,0,0,0,0,0,81,134,1,0,36,1,0,0,105,150,8,0,0,0,0, 0,1,0,0,0,36,0,0,0,48,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,150,8,0,0,0,0,0,92,134,1,0,36,1,0,0,153,150,8,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,150,8,0,0,0,0, 0,105,134,1,0,36,1,0,0,195,150,8,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,222,150,8,0,0,0,0,0,117,134,1,0,36,1,0,0,222,150,8,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0, 0,0,0,1,0,0,0,46,1,0,0,249,150,8,0,0,0,0,0,129,134,1,0,36,1,0,0,249,150,8,0,0,0,0,0,1,0,0,0,36,0,0,0,152,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,152,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,145,151,8,0,0,0,0,0,140,134,1,0,36,1,0,0,145,151,8,0,0,0,0,0,1,0,0,0,36,0,0,0,14, 1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,14,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,159,152,8,0,0,0,0,0,153,134,1,0,36,1,0,0,159,152,8,0,0,0,0,0,1,0,0,0,36,0,0,0,71,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,71,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,230,152,8,0,0,0,0,0,165,134,1,0,36,1,0, 0,230,152,8,0,0,0,0,0,1,0,0,0,36,0,0,0,67,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,41,153,8,0,0,0,0,0,178,134,1,0,36,1,0,0,41,153,8,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 72,153,8,0,0,0,0,0,190,134,1,0,36,1,0,0,72,153,8,0,0,0,0,0,1,0,0,0,36,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,98,153,8,0,0,0,0,0,202,134,1,0,36,1,0,0,98,153,8,0,0,0,0,0,1,0,0,0,36,0,0,0,53,0,0,0,0,0,0,0,1,0,0,0,78,1, 0,0,53,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,151,153,8,0,0,0,0,0,213,134,1,0,36,1,0,0,151,153,8,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,178,153,8,0,0,0,0,0,225,134,1,0,36,1,0,0,178,153,8,0,0,0,0,0,1,0,0, 0,36,0,0,0,163,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,163,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,85,154,8,0,0,0,0,0,236,134,1,0,36,1,0,0,85,154,8,0,0,0,0,0,1,0,0,0,36,0,0,0,228,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,228,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,57,155,8,0,0,0,0,0,249, 134,1,0,36,1,0,0,57,155,8,0,0,0,0,0,1,0,0,0,36,0,0,0,53,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,53,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,110,156,8,0,0,0,0,0,4,135,1,0,36,1,0,0,110,156,8,0,0,0,0,0,1,0,0,0,36,0,0,0,231,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,231,1,0,0,0,0,0,0, 1,0,0,0,46,1,0,0,85,158,8,0,0,0,0,0,16,135,1,0,36,1,0,0,85,158,8,0,0,0,0,0,1,0,0,0,36,0,0,0,40,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,125,158,8,0,0,0,0,0,26,135,1,0,36,1,0,0,125,158,8,0,0,0,0,0,1,0,0,0,36,0,0,0,41,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,41,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,166,158,8,0,0,0,0,0,37,135,1,0,36,1,0,0,166,158,8,0,0,0,0,0,1,0,0,0,36,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,222,158,8,0,0,0,0,0,47,135,1,0,36,1,0,0,222,158,8, 0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,249,158,8,0,0,0,0,0,58,135,1,0,36,1,0,0,249,158,8,0,0,0,0,0,1,0,0,0,36,0,0,0,253,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,253,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,246,159, 8,0,0,0,0,0,68,135,1,0,36,1,0,0,246,159,8,0,0,0,0,0,1,0,0,0,36,0,0,0,11,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,11,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,1,161,8,0,0,0,0,0,80,135,1,0,36,1,0,0,1,161,8,0,0,0,0,0,1,0,0,0,36,0,0,0,28,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,28,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,29,161,8,0,0,0,0,0,92,135,1,0,36,1,0,0,29,161,8,0,0,0,0,0,1,0,0,0,36,0,0,0,45,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,74,161,8,0,0,0,0,0,105,135,1,0,36,1,0,0,74,161,8,0,0,0,0,0,1,0,0,0,36,0,0,0,120, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,194,161,8,0,0,0,0,0,116,135,1,0,36,1,0,0,194,161,8,0,0,0,0,0,1,0,0,0,36,0,0,0,150,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,150,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,88,162,8,0,0,0,0,0,129,135,1,0,36,1, 0,0,88,162,8,0,0,0,0,0,1,0,0,0,36,0,0,0,74,4,0,0,0,0,0,0,1,0,0,0,78,1,0,0,74,4,0,0,0,0,0,0,1,0,0,0,46,1,0,0,162,166,8,0,0,0,0,0,139,135,1,0,36,1,0,0,162,166,8,0,0,0,0,0,1,0,0,0,36,0,0,0,152,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,152,0,0,0,0,0,0,0,1,0,0,0,46, 1,0,0,58,167,8,0,0,0,0,0,150,135,1,0,36,1,0,0,58,167,8,0,0,0,0,0,1,0,0,0,36,0,0,0,132,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,132,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,190,168,8,0,0,0,0,0,161,135,1,0,36,1,0,0,190,168,8,0,0,0,0,0,1,0,0,0,36,0,0,0,251,2,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,251,2,0,0,0,0,0,0,1,0,0,0,46,1,0,0,185,171,8,0,0,0,0,0,172,135,1,0,36,1,0,0,185,171,8,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,227,171,8,0,0,0,0,0,184,135,1,0,36,1,0,0,227,171,8,0,0, 0,0,0,1,0,0,0,36,0,0,0,60,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,31,172,8,0,0,0,0,0,196,135,1,0,36,1,0,0,31,172,8,0,0,0,0,0,1,0,0,0,36,0,0,0,203,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,203,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,234,172,8,0,0, 0,0,0,208,135,1,0,36,1,0,0,234,172,8,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,222,135,1,0,38,11,0,0,40,139,11,0,0,0,0,0,235,135,1,0,38,11,0,0,48,139,11,0,0,0,0,0,248,135,1,0,38,11,0,0,56,139,11,0,0,0,0,0,4,136,1,0, 38,11,0,0,64,139,11,0,0,0,0,0,17,136,1,0,38,11,0,0,72,139,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0,0,0,0,0,0,0,29,136,1,0,100,0,0,0,0,0,0,0,0,0,0,0,57,136,1,0,102,0,1,0,98,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,9,173,8,0,0, 0,0,0,124,136,1,0,36,1,0,0,9,173,8,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,208,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,217,173,8,0,0,0,0,0,140,136,1,0,36,1,0,0,217,173,8,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,208,0, 0,0,0,0,0,0,1,0,0,0,46,1,0,0,169,174,8,0,0,0,0,0,163,136,1,0,36,1,0,0,169,174,8,0,0,0,0,0,1,0,0,0,36,0,0,0,169,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,169,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,82,175,8,0,0,0,0,0,186,136,1,0,36,1,0,0,82,175,8,0,0,0,0,0,1,0,0,0,36,0,0, 0,175,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,1,176,8,0,0,0,0,0,205,136,1,0,36,1,0,0,1,176,8,0,0,0,0,0,1,0,0,0,36,0,0,0,169,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,169,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,170,176,8,0,0,0,0,0,225,136,1,0,36, 1,0,0,170,176,8,0,0,0,0,0,1,0,0,0,36,0,0,0,208,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,208,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,122,177,8,0,0,0,0,0,249,136,1,0,36,1,0,0,122,177,8,0,0,0,0,0,1,0,0,0,36,0,0,0,126,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,0,0,0,0,1,0,0, 0,46,1,0,0,248,177,8,0,0,0,0,0,7,137,1,0,36,1,0,0,248,177,8,0,0,0,0,0,1,0,0,0,36,0,0,0,10,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,10,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,2,178,8,0,0,0,0,0,26,137,1,0,36,1,0,0,2,178,8,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0, 0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,8,178,8,0,0,0,0,0,44,137,1,0,36,1,0,0,8,178,8,0,0,0,0,0,1,0,0,0,36,0,0,0,22,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,30,178,8,0,0,0,0,0,65,137,1,0,36,1,0,0,30,178,8,0,0,0,0,0,1,0,0,0, 36,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,54,178,8,0,0,0,0,0,80,137,1,0,36,1,0,0,54,178,8,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,178,8,0,0,0,0,0,96,137,1,0,36, 1,0,0,60,178,8,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,178,8,0,0,0,0,0,113,137,1,0,36,1,0,0,66,178,8,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 72,178,8,0,0,0,0,0,132,137,1,0,36,1,0,0,72,178,8,0,0,0,0,0,1,0,0,0,36,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,6,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,78,178,8,0,0,0,0,0,151,137,1,0,36,1,0,0,78,178,8,0,0,0,0,0,1,0,0,0,36,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,78,1,0, 0,16,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,94,178,8,0,0,0,0,0,172,137,1,0,36,1,0,0,94,178,8,0,0,0,0,0,1,0,0,0,36,0,0,0,15,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,15,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,109,178,8,0,0,0,0,0,190,137,1,0,36,1,0,0,109,178,8,0,0,0,0,0,1,0,0,0,36, 0,0,0,15,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,15,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,124,178,8,0,0,0,0,0,212,137,1,0,36,1,0,0,124,178,8,0,0,0,0,0,1,0,0,0,36,0,0,0,21,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100, 0,0,0,0,0,0,0,0,0,0,0,230,137,1,0,100,0,0,0,0,0,0,0,0,0,0,0,5,138,1,0,102,0,1,0,98,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,145,178,8,0,0,0,0,0,75,138,1,0,36,1,0,0,145,178,8,0,0,0,0,0,1,0,0,0,36,0,0,0,52,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,197,178,8,0,0,0,0,0,89,138,1,0,36,1,0,0,197,178,8,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,3,179,8,0,0,0,0,0,104,138,1,0,36,1,0,0,3,179,8,0,0,0,0,0,1,0,0,0,36,0,0,0,63,0,0,0,0,0,0,0,1, 0,0,0,78,1,0,0,63,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,66,179,8,0,0,0,0,0,120,138,1,0,36,1,0,0,66,179,8,0,0,0,0,0,1,0,0,0,36,0,0,0,14,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,14,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,80,179,8,0,0,0,0,0,137,138,1,0,36,1,0,0,80,179,8,0,0,0,0, 0,1,0,0,0,36,0,0,0,70,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,150,179,8,0,0,0,0,0,151,138,1,0,36,1,0,0,150,179,8,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,228,179,8,0,0,0,0, 0,169,138,1,0,36,1,0,0,228,179,8,0,0,0,0,0,1,0,0,0,36,0,0,0,31,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,3,180,8,0,0,0,0,0,188,138,1,0,36,1,0,0,3,180,8,0,0,0,0,0,1,0,0,0,36,0,0,0,59,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,0,0,0, 0,1,0,0,0,46,1,0,0,62,180,8,0,0,0,0,0,206,138,1,0,36,1,0,0,62,180,8,0,0,0,0,0,1,0,0,0,36,0,0,0,210,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,210,0,0,0,0,0,0,0,226,138,1,0,38,11,0,0,80,139,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,117,189,0,0,100,0,0,0,0,0, 0,0,0,0,0,0,242,138,1,0,100,0,0,0,0,0,0,0,0,0,0,0,10,139,1,0,102,0,1,0,99,96,143,77,0,0,0,0,1,0,0,0,46,1,0,0,16,181,8,0,0,0,0,0,73,139,1,0,36,1,0,0,16,181,8,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0, 0,51,181,8,0,0,0,0,0,85,139,1,0,36,1,0,0,51,181,8,0,0,0,0,0,1,0,0,0,36,0,0,0,253,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,253,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,48,182,8,0,0,0,0,0,97,139,1,0,36,1,0,0,48,182,8,0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,83,182,8,0,0,0,0,0,122,139,1,0,36,1,0,0,83,182,8,0,0,0,0,0,1,0,0,0,36,0,0,0,51,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,134,182,8,0,0,0,0,0,148,139,1,0,36,1,0,0,134,182,8,0,0,0,0,0,1,0,0, 0,36,0,0,0,151,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,29,183,8,0,0,0,0,0,166,139,1,0,36,1,0,0,29,183,8,0,0,0,0,0,1,0,0,0,36,0,0,0,42,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,42,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,71,184,8,0,0,0,0,0,185,139, 1,0,36,1,0,0,71,184,8,0,0,0,0,0,1,0,0,0,36,0,0,0,44,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,115,184,8,0,0,0,0,0,206,139,1,0,36,1,0,0,115,184,8,0,0,0,0,0,1,0,0,0,36,0,0,0,46,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,0,0,0,0,1,0, 0,0,46,1,0,0,161,184,8,0,0,0,0,0,227,139,1,0,36,1,0,0,161,184,8,0,0,0,0,0,1,0,0,0,36,0,0,0,159,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,159,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,64,186,8,0,0,0,0,0,248,139,1,0,36,1,0,0,64,186,8,0,0,0,0,0,1,0,0,0,36,0,0,0,118,1,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,118,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,182,187,8,0,0,0,0,0,13,140,1,0,36,1,0,0,182,187,8,0,0,0,0,0,1,0,0,0,36,0,0,0,134,1,0,0,0,0,0,0,1,0,0,0,78,1,0,0,134,1,0,0,0,0,0,0,1,0,0,0,46,1,0,0,60,189,8,0,0,0,0,0,35,140,1,0,36,1,0,0,60,189,8, 0,0,0,0,0,1,0,0,0,36,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,95,189,8,0,0,0,0,0,56,140,1,0,36,1,0,0,95,189,8,0,0,0,0,0,1,0,0,0,36,0,0,0,69,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,164,189,8,0, 0,0,0,0,73,140,1,0,36,1,0,0,164,189,8,0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,251,189,8,0,0,0,0,0,91,140,1,0,36,1,0,0,251,189,8,0,0,0,0,0,1,0,0,0,36,0,0,0,82,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,82,0,0, 0,0,0,0,0,1,0,0,0,46,1,0,0,77,190,8,0,0,0,0,0,110,140,1,0,36,1,0,0,77,190,8,0,0,0,0,0,1,0,0,0,36,0,0,0,99,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,176,190,8,0,0,0,0,0,132,140,1,0,36,1,0,0,176,190,8,0,0,0,0,0,1,0,0,0,36,0,0,0,31, 0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,207,190,8,0,0,0,0,0,144,140,1,0,36,1,0,0,207,190,8,0,0,0,0,0,1,0,0,0,36,0,0,0,23,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,230,190,8,0,0,0,0,0,158,140,1,0,36,1,0, 0,230,190,8,0,0,0,0,0,1,0,0,0,36,0,0,0,78,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,52,191,8,0,0,0,0,0,172,140,1,0,36,1,0,0,52,191,8,0,0,0,0,0,1,0,0,0,36,0,0,0,72,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0, 124,191,8,0,0,0,0,0,185,140,1,0,36,1,0,0,124,191,8,0,0,0,0,0,1,0,0,0,36,0,0,0,62,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,186,191,8,0,0,0,0,0,197,140,1,0,36,1,0,0,186,191,8,0,0,0,0,0,1,0,0,0,36,0,0,0,11,0,0,0,0,0,0,0,1,0,0,0,78, 1,0,0,11,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,197,191,8,0,0,0,0,0,214,140,1,0,36,1,0,0,197,191,8,0,0,0,0,0,1,0,0,0,36,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,229,191,8,0,0,0,0,0,228,140,1,0,36,1,0,0,229,191,8,0,0,0,0,0,1,0, 0,0,36,0,0,0,111,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,111,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,84,192,8,0,0,0,0,0,242,140,1,0,36,1,0,0,84,192,8,0,0,0,0,0,1,0,0,0,36,0,0,0,111,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,111,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,195,192,8,0,0,0,0,0,7, 141,1,0,36,1,0,0,195,192,8,0,0,0,0,0,1,0,0,0,36,0,0,0,84,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,23,193,8,0,0,0,0,0,28,141,1,0,36,1,0,0,23,193,8,0,0,0,0,0,1,0,0,0,36,0,0,0,96,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,0,0,0,0,1, 0,0,0,46,1,0,0,119,193,8,0,0,0,0,0,45,141,1,0,36,1,0,0,119,193,8,0,0,0,0,0,1,0,0,0,36,0,0,0,84,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,203,193,8,0,0,0,0,0,63,141,1,0,36,1,0,0,203,193,8,0,0,0,0,0,1,0,0,0,36,0,0,0,111,0,0,0,0,0, 0,0,1,0,0,0,78,1,0,0,111,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,58,194,8,0,0,0,0,0,85,141,1,0,36,1,0,0,58,194,8,0,0,0,0,0,1,0,0,0,36,0,0,0,90,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,148,194,8,0,0,0,0,0,101,141,1,0,36,1,0,0,148,194,8, 0,0,0,0,0,1,0,0,0,36,0,0,0,87,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,235,194,8,0,0,0,0,0,114,141,1,0,36,1,0,0,235,194,8,0,0,0,0,0,1,0,0,0,36,0,0,0,90,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,69,195,8, 0,0,0,0,0,133,141,1,0,36,1,0,0,69,195,8,0,0,0,0,0,1,0,0,0,36,0,0,0,61,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,130,195,8,0,0,0,0,0,149,141,1,0,36,1,0,0,130,195,8,0,0,0,0,0,1,0,0,0,36,0,0,0,23,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,23, 0,0,0,0,0,0,0,1,0,0,0,46,1,0,0,153,195,8,0,0,0,0,0,166,141,1,0,36,1,0,0,153,195,8,0,0,0,0,0,1,0,0,0,36,0,0,0,43,0,0,0,0,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,0,0,0,0,187,141,1,0,38,4,0,0,72,87,9,0,0,0,0,0,203,141,1,0,38,4,0,0,76,87,9,0,0,0,0,0,219,141,1,0, 32,10,0,0,0,0,0,0,0,0,0,0,236,141,1,0,32,10,0,0,0,0,0,0,0,0,0,0,252,141,1,0,32,10,0,0,0,0,0,0,0,0,0,0,13,142,1,0,32,10,0,0,0,0,0,0,0,0,0,0,31,142,1,0,32,10,0,0,0,0,0,0,0,0,0,0,47,142,1,0,32,10,0,0,0,0,0,0,0,0,0,0,66,142,1,0,32,10,0,0,0,0,0,0,0,0,0,0, 84,142,1,0,32,10,0,0,0,0,0,0,0,0,0,0,109,142,1,0,32,10,0,0,0,0,0,0,0,0,0,0,134,142,1,0,32,10,0,0,0,0,0,0,0,0,0,0,155,142,1,0,32,10,0,0,0,0,0,0,0,0,0,0,177,142,1,0,32,10,0,0,0,0,0,0,0,0,0,0,203,142,1,0,32,10,0,0,0,0,0,0,0,0,0,0,223,142,1,0,38,11,0,0,96, 139,11,0,0,0,0,0,241,142,1,0,38,11,0,0,128,139,11,0,0,0,0,0,247,142,1,0,38,11,0,0,128,141,11,0,0,0,0,0,253,142,1,0,38,11,0,0,136,141,11,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,30,1,0,0,0,0,0,0,0,0,0,0,20,0,0,0,14,1,0,0,168,13,0,0,0,0,0,0, 30,0,0,0,14,1,0,0,104,19,0,0,0,0,0,0,40,0,0,0,14,1,0,0,177,19,0,0,0,0,0,0,56,0,0,0,14,1,0,0,105,20,0,0,0,0,0,0,68,0,0,0,14,1,0,0,171,21,0,0,0,0,0,0,79,0,0,0,14,1,0,0,240,26,0,0,0,0,0,0,90,0,0,0,14,1,0,0,182,27,0,0,0,0,0,0,107,0,0,0,14,1,0,0,110,28,0, 0,0,0,0,0,120,0,0,0,14,1,0,0,176,29,0,0,0,0,0,0,131,0,0,0,14,1,0,0,239,34,0,0,0,0,0,0,142,0,0,0,14,1,0,0,181,35,0,0,0,0,0,0,159,0,0,0,14,1,0,0,109,36,0,0,0,0,0,0,172,0,0,0,14,1,0,0,175,37,0,0,0,0,0,0,182,0,0,0,14,1,0,0,11,45,0,0,0,0,0,0,192,0,0,0,14, 1,0,0,209,45,0,0,0,0,0,0,208,0,0,0,14,1,0,0,137,46,0,0,0,0,0,0,220,0,0,0,14,1,0,0,203,47,0,0,0,0,0,0,229,0,0,0,14,1,0,0,66,56,0,0,0,0,0,0,238,0,0,0,14,1,0,0,8,57,0,0,0,0,0,0,253,0,0,0,14,1,0,0,192,57,0,0,0,0,0,0,8,1,0,0,14,1,0,0,2,59,0,0,0,0,0,0,17,1, 0,0,14,1,0,0,193,67,0,0,0,0,0,0,26,1,0,0,14,1,0,0,135,68,0,0,0,0,0,0,41,1,0,0,14,1,0,0,63,69,0,0,0,0,0,0,52,1,0,0,14,1,0,0,165,70,0,0,0,0,0,0,72,1,0,0,14,1,0,0,234,70,0,0,0,0,0,0,95,1,0,0,14,1,0,0,54,71,0,0,0,0,0,0,119,1,0,0,14,1,0,0,48,73,0,0,0,0,0, 0,139,1,0,0,14,1,0,0,132,73,0,0,0,0,0,0,160,1,0,0,14,1,0,0,153,73,0,0,0,0,0,0,182,1,0,0,14,1,0,0,214,73,0,0,0,0,0,0,203,1,0,0,14,1,0,0,6,74,0,0,0,0,0,0,225,1,0,0,14,1,0,0,61,75,0,0,0,0,0,0,244,1,0,0,14,1,0,0,199,75,0,0,0,0,0,0,11,2,0,0,14,1,0,0,244,77, 0,0,0,0,0,0,30,2,0,0,14,1,0,0,72,78,0,0,0,0,0,0,50,2,0,0,14,1,0,0,219,78,0,0,0,0,0,0,70,2,0,0,14,1,0,0,240,78,0,0,0,0,0,0,90,2,0,0,14,1,0,0,11,79,0,0,0,0,0,0,110,2,0,0,14,1,0,0,38,79,0,0,0,0,0,0,131,2,0,0,14,1,0,0,35,80,0,0,0,0,0,0,150,2,0,0,14,1,0,0, 129,80,0,0,0,0,0,0,173,2,0,0,14,1,0,0,75,82,0,0,0,0,0,0,192,2,0,0,14,1,0,0,177,82,0,0,0,0,0,0,212,2,0,0,14,1,0,0,187,82,0,0,0,0,0,0,233,2,0,0,14,1,0,0,138,83,0,0,0,0,0,0,253,2,0,0,14,1,0,0,5,84,0,0,0,0,0,0,21,3,0,0,14,1,0,0,24,87,0,0,0,0,0,0,41,3,0,0, 14,1,0,0,126,87,0,0,0,0,0,0,62,3,0,0,14,1,0,0,136,87,0,0,0,0,0,0,84,3,0,0,14,1,0,0,87,88,0,0,0,0,0,0,103,3,0,0,14,1,0,0,240,88,0,0,0,0,0,0,126,3,0,0,14,1,0,0,100,93,0,0,0,0,0,0,145,3,0,0,14,1,0,0,129,93,0,0,0,0,0,0,164,3,0,0,14,1,0,0,8,94,0,0,0,0,0,0, 185,3,0,0,14,1,0,0,0,95,0,0,0,0,0,0,198,3,0,0,14,1,0,0,69,95,0,0,0,0,0,0,215,3,0,0,14,1,0,0,89,96,0,0,0,0,0,0,228,3,0,0,14,1,0,0,163,97,0,0,0,0,0,0,243,3,0,0,14,1,0,0,55,98,0,0,0,0,0,0,7,4,0,0,14,1,0,0,248,98,0,0,0,0,0,0,23,4,0,0,14,1,0,0,4,100,0,0,0, 0,0,0,39,4,0,0,14,1,0,0,66,100,0,0,0,0,0,0,57,4,0,0,14,1,0,0,197,100,0,0,0,0,0,0,72,4,0,0,14,1,0,0,193,101,0,0,0,0,0,0,85,4,0,0,14,1,0,0,219,101,0,0,0,0,0,0,98,4,0,0,14,1,0,0,25,102,0,0,0,0,0,0,113,4,0,0,14,1,0,0,181,102,0,0,0,0,0,0,129,4,0,0,14,1,0, 0,16,105,0,0,0,0,0,0,143,4,0,0,14,1,0,0,42,105,0,0,0,0,0,0,157,4,0,0,14,1,0,0,104,105,0,0,0,0,0,0,173,4,0,0,14,1,0,0,4,106,0,0,0,0,0,0,189,4,0,0,14,1,0,0,229,106,0,0,0,0,0,0,203,4,0,0,14,1,0,0,255,106,0,0,0,0,0,0,217,4,0,0,14,1,0,0,30,108,0,0,0,0,0,0, 236,4,0,0,14,1,0,0,118,108,0,0,0,0,0,0,253,4,0,0,14,1,0,0,147,109,0,0,0,0,0,0,14,5,0,0,14,1,0,0,172,109,0,0,0,0,0,0,29,5,0,0,14,1,0,0,243,109,0,0,0,0,0,0,44,5,0,0,14,1,0,0,56,110,0,0,0,0,0,0,61,5,0,0,14,1,0,0,206,110,0,0,0,0,0,0,81,5,0,0,14,1,0,0,140, 112,0,0,0,0,0,0,99,5,0,0,14,1,0,0,169,114,0,0,0,0,0,0,117,5,0,0,14,1,0,0,45,115,0,0,0,0,0,0,134,5,0,0,14,1,0,0,94,115,0,0,0,0,0,0,150,5,0,0,14,1,0,0,60,116,0,0,0,0,0,0,166,5,0,0,14,1,0,0,210,116,0,0,0,0,0,0,184,5,0,0,14,1,0,0,128,117,0,0,0,0,0,0,205, 5,0,0,14,1,0,0,60,120,0,0,0,0,0,0,223,5,0,0,14,1,0,0,220,120,0,0,0,0,0,0,242,5,0,0,14,1,0,0,72,123,0,0,0,0,0,0,3,6,0,0,14,1,0,0,221,123,0,0,0,0,0,0,20,6,0,0,14,1,0,0,165,124,0,0,0,0,0,0,39,6,0,0,14,1,0,0,98,125,0,0,0,0,0,0,59,6,0,0,14,1,0,0,168,125,0, 0,0,0,0,0,83,6,0,0,14,1,0,0,228,125,0,0,0,0,0,0,103,6,0,0,14,1,0,0,53,126,0,0,0,0,0,0,124,6,0,0,14,1,0,0,89,126,0,0,0,0,0,0,144,6,0,0,14,1,0,0,114,126,0,0,0,0,0,0,166,6,0,0,14,1,0,0,55,127,0,0,0,0,0,0,187,6,0,0,14,1,0,0,147,127,0,0,0,0,0,0,212,6,0,0, 14,1,0,0,43,128,0,0,0,0,0,0,233,6,0,0,14,1,0,0,254,128,0,0,0,0,0,0,255,6,0,0,14,1,0,0,158,129,0,0,0,0,0,0,19,7,0,0,14,1,0,0,215,129,0,0,0,0,0,0,42,7,0,0,14,1,0,0,121,130,0,0,0,0,0,0,57,7,0,0,14,1,0,0,160,132,0,0,0,0,0,0,76,7,0,0,14,1,0,0,91,134,0,0,0, 0,0,0,91,7,0,0,14,1,0,0,175,135,0,0,0,0,0,0,107,7,0,0,14,1,0,0,219,135,0,0,0,0,0,0,121,7,0,0,14,1,0,0,213,136,0,0,0,0,0,0,142,7,0,0,14,1,0,0,214,137,0,0,0,0,0,0,163,7,0,0,14,1,0,0,47,138,0,0,0,0,0,0,184,7,0,0,14,1,0,0,99,138,0,0,0,0,0,0,206,7,0,0,14, 1,0,0,152,138,0,0,0,0,0,0,231,7,0,0,14,1,0,0,86,140,0,0,0,0,0,0,251,7,0,0,14,1,0,0,113,140,0,0,0,0,0,0,18,8,0,0,14,1,0,0,200,141,0,0,0,0,0,0,27,8,0,0,14,1,0,0,218,142,0,0,0,0,0,0,36,8,0,0,14,1,0,0,196,143,0,0,0,0,0,0,46,8,0,0,14,1,0,0,239,143,0,0,0,0, 0,0,57,8,0,0,14,1,0,0,173,144,0,0,0,0,0,0,66,8,0,0,14,1,0,0,147,147,0,0,0,0,0,0,75,8,0,0,14,1,0,0,102,148,0,0,0,0,0,0,85,8,0,0,14,1,0,0,145,148,0,0,0,0,0,0,96,8,0,0,14,1,0,0,78,149,0,0,0,0,0,0,118,8,0,0,14,1,0,0,254,149,0,0,0,0,0,0,144,8,0,0,14,1,0,0, 61,150,0,0,0,0,0,0,161,8,0,0,14,1,0,0,231,150,0,0,0,0,0,0,182,8,0,0,14,1,0,0,64,152,0,0,0,0,0,0,199,8,0,0,14,1,0,0,191,152,0,0,0,0,0,0,217,8,0,0,14,1,0,0,255,152,0,0,0,0,0,0,236,8,0,0,14,1,0,0,164,153,0,0,0,0,0,0,252,8,0,0,14,1,0,0,24,154,0,0,0,0,0,0, 14,9,0,0,14,1,0,0,20,155,0,0,0,0,0,0,34,9,0,0,14,1,0,0,245,155,0,0,0,0,0,0,50,9,0,0,14,1,0,0,72,157,0,0,0,0,0,0,68,9,0,0,14,1,0,0,230,157,0,0,0,0,0,0,79,9,0,0,14,1,0,0,101,158,0,0,0,0,0,0,94,9,0,0,14,1,0,0,241,160,0,0,0,0,0,0,105,9,0,0,14,1,0,0,6,162, 0,0,0,0,0,0,118,9,0,0,14,1,0,0,175,162,0,0,0,0,0,0,131,9,0,0,14,1,0,0,32,163,0,0,0,0,0,0,145,9,0,0,14,1,0,0,142,163,0,0,0,0,0,0,157,9,0,0,14,1,0,0,3,164,0,0,0,0,0,0,170,9,0,0,14,1,0,0,120,164,0,0,0,0,0,0,186,9,0,0,14,1,0,0,202,164,0,0,0,0,0,0,203,9,0, 0,14,1,0,0,28,165,0,0,0,0,0,0,216,9,0,0,14,1,0,0,170,166,0,0,0,0,0,0,228,9,0,0,14,1,0,0,208,166,0,0,0,0,0,0,241,9,0,0,14,1,0,0,246,166,0,0,0,0,0,0,255,9,0,0,14,1,0,0,11,168,0,0,0,0,0,0,12,10,0,0,14,1,0,0,101,168,0,0,0,0,0,0,29,10,0,0,14,1,0,0,164,168, 0,0,0,0,0,0,42,10,0,0,14,1,0,0,39,170,0,0,0,0,0,0,57,10,0,0,14,1,0,0,194,170,0,0,0,0,0,0,71,10,0,0,14,1,0,0,31,171,0,0,0,0,0,0,89,10,0,0,14,1,0,0,94,171,0,0,0,0,0,0,103,10,0,0,14,1,0,0,192,172,0,0,0,0,0,0,119,10,0,0,14,1,0,0,91,173,0,0,0,0,0,0,133,10, 0,0,14,1,0,0,208,173,0,0,0,0,0,0,151,10,0,0,14,1,0,0,123,176,0,0,0,0,0,0,165,10,0,0,14,1,0,0,84,177,0,0,0,0,0,0,181,10,0,0,14,1,0,0,144,232,0,0,0,0,0,0,193,10,0,0,14,1,0,0,60,233,0,0,0,0,0,0,205,10,0,0,14,1,0,0,252,233,0,0,0,0,0,0,221,10,0,0,14,1,0,0, 45,235,0,0,0,0,0,0,233,10,0,0,14,1,0,0,172,235,0,0,0,0,0,0,247,10,0,0,14,1,0,0,203,236,0,0,0,0,0,0,3,11,0,0,14,1,0,0,119,237,0,0,0,0,0,0,15,11,0,0,14,1,0,0,51,238,0,0,0,0,0,0,29,11,0,0,14,1,0,0,78,238,0,0,0,0,0,0,45,11,0,0,14,1,0,0,63,239,0,0,0,0,0,0, 57,11,0,0,14,1,0,0,194,240,0,0,0,0,0,0,68,11,0,0,14,1,0,0,187,241,0,0,0,0,0,0,80,11,0,0,14,1,0,0,124,242,0,0,0,0,0,0,94,11,0,0,14,1,0,0,209,243,0,0,0,0,0,0,105,11,0,0,14,1,0,0,4,244,0,0,0,0,0,0,116,11,0,0,14,1,0,0,55,244,0,0,0,0,0,0,129,11,0,0,14,1,0, 0,99,244,0,0,0,0,0,0,144,11,0,0,14,1,0,0,171,245,0,0,0,0,0,0,155,11,0,0,14,1,0,0,116,247,0,0,0,0,0,0,170,11,0,0,14,1,0,0,250,247,0,0,0,0,0,0,189,11,0,0,14,1,0,0,83,249,0,0,0,0,0,0,205,11,0,0,14,1,0,0,226,250,0,0,0,0,0,0,220,11,0,0,14,1,0,0,58,251,0,0, 0,0,0,0,235,11,0,0,14,1,0,0,182,252,0,0,0,0,0,0,252,11,0,0,14,1,0,0,38,253,0,0,0,0,0,0,17,12,0,0,14,1,0,0,255,253,0,0,0,0,0,0,34,12,0,0,14,1,0,0,105,254,0,0,0,0,0,0,53,12,0,0,14,1,0,0,186,254,0,0,0,0,0,0,70,12,0,0,14,1,0,0,201,255,0,0,0,0,0,0,84,12,0, 0,14,1,0,0,51,0,1,0,0,0,0,0,102,12,0,0,14,1,0,0,30,1,1,0,0,0,0,0,116,12,0,0,14,1,0,0,136,1,1,0,0,0,0,0,132,12,0,0,14,1,0,0,158,1,1,0,0,0,0,0,146,12,0,0,14,1,0,0,187,2,1,0,0,0,0,0,160,12,0,0,14,1,0,0,37,3,1,0,0,0,0,0,178,12,0,0,14,1,0,0,238,3,1,0,0,0, 0,0,192,12,0,0,14,1,0,0,88,4,1,0,0,0,0,0,208,12,0,0,14,1,0,0,110,4,1,0,0,0,0,0,222,12,0,0,14,1,0,0,139,5,1,0,0,0,0,0,240,12,0,0,14,1,0,0,245,5,1,0,0,0,0,0,6,13,0,0,14,1,0,0,190,6,1,0,0,0,0,0,24,13,0,0,14,1,0,0,40,7,1,0,0,0,0,0,44,13,0,0,14,1,0,0,62,7, 1,0,0,0,0,0,62,13,0,0,14,1,0,0,91,8,1,0,0,0,0,0,76,13,0,0,14,1,0,0,55,9,1,0,0,0,0,0,94,13,0,0,14,1,0,0,5,11,1,0,0,0,0,0,108,13,0,0,14,1,0,0,171,11,1,0,0,0,0,0,124,13,0,0,14,1,0,0,207,11,1,0,0,0,0,0,138,13,0,0,14,1,0,0,9,13,1,0,0,0,0,0,152,13,0,0,14,1, 0,0,229,13,1,0,0,0,0,0,170,13,0,0,14,1,0,0,105,15,1,0,0,0,0,0,184,13,0,0,14,1,0,0,15,16,1,0,0,0,0,0,200,13,0,0,14,1,0,0,51,16,1,0,0,0,0,0,214,13,0,0,14,1,0,0,109,17,1,0,0,0,0,0,232,13,0,0,14,1,0,0,73,18,1,0,0,0,0,0,254,13,0,0,14,1,0,0,205,19,1,0,0,0, 0,0,16,14,0,0,14,1,0,0,115,20,1,0,0,0,0,0,36,14,0,0,14,1,0,0,151,20,1,0,0,0,0,0,54,14,0,0,14,1,0,0,14,22,1,0,0,0,0,0,67,14,0,0,14,1,0,0,185,22,1,0,0,0,0,0,88,14,0,0,14,1,0,0,229,22,1,0,0,0,0,0,105,14,0,0,14,1,0,0,125,23,1,0,0,0,0,0,118,14,0,0,14,1,0, 0,246,23,1,0,0,0,0,0,132,14,0,0,14,1,0,0,51,24,1,0,0,0,0,0,147,14,0,0,14,1,0,0,250,24,1,0,0,0,0,0,163,14,0,0,14,1,0,0,79,25,1,0,0,0,0,0,183,14,0,0,14,1,0,0,220,25,1,0,0,0,0,0,201,14,0,0,14,1,0,0,119,27,1,0,0,0,0,0,217,14,0,0,14,1,0,0,50,28,1,0,0,0,0, 0,233,14,0,0,14,1,0,0,2,29,1,0,0,0,0,0,251,14,0,0,14,1,0,0,252,29,1,0,0,0,0,0,9,15,0,0,14,1,0,0,171,30,1,0,0,0,0,0,27,15,0,0,14,1,0,0,21,31,1,0,0,0,0,0,43,15,0,0,14,1,0,0,124,32,1,0,0,0,0,0,57,15,0,0,14,1,0,0,60,33,1,0,0,0,0,0,72,15,0,0,14,1,0,0,121, 33,1,0,0,0,0,0,88,15,0,0,14,1,0,0,32,34,1,0,0,0,0,0,102,15,0,0,14,1,0,0,113,34,1,0,0,0,0,0,120,15,0,0,14,1,0,0,46,35,1,0,0,0,0,0,134,15,0,0,14,1,0,0,233,35,1,0,0,0,0,0,148,15,0,0,14,1,0,0,115,36,1,0,0,0,0,0,164,15,0,0,14,1,0,0,83,37,1,0,0,0,0,0,174,15, 0,0,14,1,0,0,213,37,1,0,0,0,0,0,188,15,0,0,14,1,0,0,131,38,1,0,0,0,0,0,198,15,0,0,14,1,0,0,216,38,1,0,0,0,0,0,210,15,0,0,14,1,0,0,116,39,1,0,0,0,0,0,222,15,0,0,14,1,0,0,255,41,1,0,0,0,0,0,236,15,0,0,14,1,0,0,65,42,1,0,0,0,0,0,254,15,0,0,14,1,0,0,116, 43,1,0,0,0,0,0,12,16,0,0,14,1,0,0,108,44,1,0,0,0,0,0,25,16,0,0,14,1,0,0,234,45,1,0,0,0,0,0,38,16,0,0,14,1,0,0,221,46,1,0,0,0,0,0,51,16,0,0,14,1,0,0,34,47,1,0,0,0,0,0,68,16,0,0,14,1,0,0,211,47,1,0,0,0,0,0,81,16,0,0,14,1,0,0,173,48,1,0,0,0,0,0,97,16,0, 0,14,1,0,0,242,48,1,0,0,0,0,0,117,16,0,0,14,1,0,0,196,49,1,0,0,0,0,0,133,16,0,0,14,1,0,0,158,50,1,0,0,0,0,0,149,16,0,0,14,1,0,0,227,50,1,0,0,0,0,0,169,16,0,0,14,1,0,0,160,51,1,0,0,0,0,0,185,16,0,0,14,1,0,0,122,52,1,0,0,0,0,0,204,16,0,0,14,1,0,0,191,52, 1,0,0,0,0,0,227,16,0,0,14,1,0,0,128,53,1,0,0,0,0,0,246,16,0,0,14,1,0,0,90,54,1,0,0,0,0,0,9,17,0,0,14,1,0,0,159,54,1,0,0,0,0,0,32,17,0,0,14,1,0,0,124,55,1,0,0,0,0,0,51,17,0,0,14,1,0,0,86,56,1,0,0,0,0,0,70,17,0,0,14,1,0,0,155,56,1,0,0,0,0,0,93,17,0,0,14, 1,0,0,92,57,1,0,0,0,0,0,112,17,0,0,14,1,0,0,54,58,1,0,0,0,0,0,131,17,0,0,14,1,0,0,123,58,1,0,0,0,0,0,154,17,0,0,14,1,0,0,88,59,1,0,0,0,0,0,173,17,0,0,14,1,0,0,50,60,1,0,0,0,0,0,188,17,0,0,14,1,0,0,76,61,1,0,0,0,0,0,203,17,0,0,14,1,0,0,175,61,1,0,0,0, 0,0,220,17,0,0,14,1,0,0,67,62,1,0,0,0,0,0,235,17,0,0,14,1,0,0,240,62,1,0,0,0,0,0,250,17,0,0,14,1,0,0,62,63,1,0,0,0,0,0,11,18,0,0,14,1,0,0,203,63,1,0,0,0,0,0,26,18,0,0,14,1,0,0,28,65,1,0,0,0,0,0,41,18,0,0,14,1,0,0,127,65,1,0,0,0,0,0,58,18,0,0,14,1,0,0, 19,66,1,0,0,0,0,0,73,18,0,0,14,1,0,0,232,66,1,0,0,0,0,0,88,18,0,0,14,1,0,0,54,67,1,0,0,0,0,0,105,18,0,0,14,1,0,0,149,68,1,0,0,0,0,0,120,18,0,0,14,1,0,0,104,69,1,0,0,0,0,0,131,18,0,0,14,1,0,0,171,69,1,0,0,0,0,0,144,18,0,0,14,1,0,0,221,69,1,0,0,0,0,0,156, 18,0,0,14,1,0,0,242,69,1,0,0,0,0,0,167,18,0,0,14,1,0,0,95,70,1,0,0,0,0,0,180,18,0,0,14,1,0,0,25,71,1,0,0,0,0,0,200,18,0,0,14,1,0,0,79,71,1,0,0,0,0,0,216,18,0,0,14,1,0,0,123,71,1,0,0,0,0,0,233,18,0,0,14,1,0,0,150,71,1,0,0,0,0,0,250,18,0,0,14,1,0,0,177, 71,1,0,0,0,0,0,10,19,0,0,14,1,0,0,254,71,1,0,0,0,0,0,28,19,0,0,14,1,0,0,139,72,1,0,0,0,0,0,40,19,0,0,14,1,0,0,12,73,1,0,0,0,0,0,56,19,0,0,14,1,0,0,40,74,1,0,0,0,0,0,68,19,0,0,14,1,0,0,158,74,1,0,0,0,0,0,80,19,0,0,14,1,0,0,187,74,1,0,0,0,0,0,94,19,0,0, 14,1,0,0,129,75,1,0,0,0,0,0,103,19,0,0,14,1,0,0,195,75,1,0,0,0,0,0,116,19,0,0,14,1,0,0,139,77,1,0,0,0,0,0,125,19,0,0,14,1,0,0,217,77,1,0,0,0,0,0,140,19,0,0,14,1,0,0,144,78,1,0,0,0,0,0,151,19,0,0,14,1,0,0,32,79,1,0,0,0,0,0,160,19,0,0,14,1,0,0,161,79,1, 0,0,0,0,0,173,19,0,0,14,1,0,0,218,81,1,0,0,0,0,0,182,19,0,0,14,1,0,0,80,82,1,0,0,0,0,0,191,19,0,0,14,1,0,0,125,82,1,0,0,0,0,0,202,19,0,0,14,1,0,0,72,83,1,0,0,0,0,0,214,19,0,0,14,1,0,0,55,84,1,0,0,0,0,0,226,19,0,0,14,1,0,0,131,84,1,0,0,0,0,0,242,19,0, 0,14,1,0,0,144,88,1,0,0,0,0,0,254,19,0,0,14,1,0,0,12,90,1,0,0,0,0,0,9,20,0,0,14,1,0,0,97,90,1,0,0,0,0,0,24,20,0,0,14,1,0,0,247,90,1,0,0,0,0,0,35,20,0,0,14,1,0,0,65,91,1,0,0,0,0,0,48,20,0,0,14,1,0,0,115,100,1,0,0,0,0,0,55,20,0,0,14,1,0,0,197,100,1,0,0, 0,0,0,62,20,0,0,14,1,0,0,4,101,1,0,0,0,0,0,74,20,0,0,14,1,0,0,22,112,1,0,0,0,0,0,99,20,0,0,14,1,0,0,214,116,1,0,0,0,0,0,123,20,0,0,14,1,0,0,150,121,1,0,0,0,0,0,149,20,0,0,14,1,0,0,6,128,1,0,0,0,0,0,167,20,0,0,14,1,0,0,185,137,1,0,0,0,0,0,188,20,0,0,14, 1,0,0,223,137,1,0,0,0,0,0,209,20,0,0,14,1,0,0,13,138,1,0,0,0,0,0,230,20,0,0,14,1,0,0,57,138,1,0,0,0,0,0,252,20,0,0,14,1,0,0,103,138,1,0,0,0,0,0,19,21,0,0,14,1,0,0,183,140,1,0,0,0,0,0,45,21,0,0,14,1,0,0,5,146,1,0,0,0,0,0,70,21,0,0,14,1,0,0,83,151,1,0, 0,0,0,0,86,21,0,0,14,1,0,0,145,151,1,0,0,0,0,0,103,21,0,0,14,1,0,0,209,171,1,0,0,0,0,0,121,21,0,0,14,1,0,0,25,172,1,0,0,0,0,0,139,21,0,0,14,1,0,0,205,172,1,0,0,0,0,0,158,21,0,0,14,1,0,0,224,181,1,0,0,0,0,0,170,21,0,0,14,1,0,0,30,184,1,0,0,0,0,0,183,21, 0,0,14,1,0,0,60,184,1,0,0,0,0,0,199,21,0,0,14,1,0,0,179,188,1,0,0,0,0,0,213,21,0,0,14,1,0,0,245,188,1,0,0,0,0,0,226,21,0,0,14,1,0,0,79,189,1,0,0,0,0,0,240,21,0,0,14,1,0,0,131,189,1,0,0,0,0,0,253,21,0,0,14,1,0,0,35,192,1,0,0,0,0,0,9,22,0,0,14,1,0,0,14, 193,1,0,0,0,0,0,23,22,0,0,14,1,0,0,190,193,1,0,0,0,0,0,36,22,0,0,14,1,0,0,194,194,1,0,0,0,0,0,50,22,0,0,14,1,0,0,31,196,1,0,0,0,0,0,70,22,0,0,14,1,0,0,251,204,1,0,0,0,0,0,83,22,0,0,14,1,0,0,54,207,1,0,0,0,0,0,100,22,0,0,14,1,0,0,16,209,1,0,0,0,0,0,115, 22,0,0,14,1,0,0,82,209,1,0,0,0,0,0,129,22,0,0,14,1,0,0,172,209,1,0,0,0,0,0,143,22,0,0,14,1,0,0,239,212,1,0,0,0,0,0,156,22,0,0,14,1,0,0,234,213,1,0,0,0,0,0,171,22,0,0,14,1,0,0,154,214,1,0,0,0,0,0,185,22,0,0,14,1,0,0,145,215,1,0,0,0,0,0,200,22,0,0,14,1, 0,0,90,218,1,0,0,0,0,0,211,22,0,0,14,1,0,0,217,218,1,0,0,0,0,0,222,22,0,0,14,1,0,0,200,220,1,0,0,0,0,0,234,22,0,0,14,1,0,0,22,221,1,0,0,0,0,0,247,22,0,0,14,1,0,0,71,221,1,0,0,0,0,0,3,23,0,0,14,1,0,0,223,221,1,0,0,0,0,0,17,23,0,0,14,1,0,0,157,222,1,0, 0,0,0,0,31,23,0,0,14,1,0,0,63,223,1,0,0,0,0,0,42,23,0,0,14,1,0,0,123,224,1,0,0,0,0,0,52,23,0,0,14,1,0,0,212,231,1,0,0,0,0,0,68,23,0,0,14,1,0,0,81,237,1,0,0,0,0,0,80,23,0,0,14,1,0,0,165,237,1,0,0,0,0,0,91,23,0,0,14,1,0,0,241,2,2,0,0,0,0,0,114,23,0,0,14, 1,0,0,117,3,2,0,0,0,0,0,136,23,0,0,14,1,0,0,183,3,2,0,0,0,0,0,160,23,0,0,14,1,0,0,107,9,2,0,0,0,0,0,187,23,0,0,14,1,0,0,29,21,2,0,0,0,0,0,208,23,0,0,14,1,0,0,255,33,2,0,0,0,0,0,229,23,0,0,14,1,0,0,93,35,2,0,0,0,0,0,244,23,0,0,14,1,0,0,189,37,2,0,0,0, 0,0,13,24,0,0,14,1,0,0,108,40,2,0,0,0,0,0,27,24,0,0,14,1,0,0,45,42,2,0,0,0,0,0,54,24,0,0,14,1,0,0,231,42,2,0,0,0,0,0,73,24,0,0,14,1,0,0,11,58,2,0,0,0,0,0,86,24,0,0,14,1,0,0,51,60,2,0,0,0,0,0,100,24,0,0,14,1,0,0,204,63,2,0,0,0,0,0,123,24,0,0,14,1,0,0, 230,77,2,0,0,0,0,0,145,24,0,0,14,1,0,0,20,78,2,0,0,0,0,0,160,24,0,0,14,1,0,0,94,80,2,0,0,0,0,0,176,24,0,0,14,1,0,0,187,80,2,0,0,0,0,0,193,24,0,0,14,1,0,0,207,80,2,0,0,0,0,0,208,24,0,0,14,1,0,0,232,80,2,0,0,0,0,0,225,24,0,0,14,1,0,0,249,80,2,0,0,0,0,0, 240,24,0,0,14,1,0,0,7,81,2,0,0,0,0,0,252,24,0,0,14,1,0,0,59,81,2,0,0,0,0,0,10,25,0,0,14,1,0,0,160,81,2,0,0,0,0,0,23,25,0,0,14,1,0,0,79,84,2,0,0,0,0,0,40,25,0,0,14,1,0,0,245,86,2,0,0,0,0,0,54,25,0,0,14,1,0,0,139,87,2,0,0,0,0,0,67,25,0,0,14,1,0,0,212,89, 2,0,0,0,0,0,83,25,0,0,14,1,0,0,195,90,2,0,0,0,0,0,101,25,0,0,14,1,0,0,178,91,2,0,0,0,0,0,119,25,0,0,14,1,0,0,83,93,2,0,0,0,0,0,132,25,0,0,14,1,0,0,129,94,2,0,0,0,0,0,147,25,0,0,14,1,0,0,10,95,2,0,0,0,0,0,162,25,0,0,14,1,0,0,127,95,2,0,0,0,0,0,177,25, 0,0,14,1,0,0,244,95,2,0,0,0,0,0,192,25,0,0,14,1,0,0,40,96,2,0,0,0,0,0,207,25,0,0,14,1,0,0,92,96,2,0,0,0,0,0,222,25,0,0,14,1,0,0,202,96,2,0,0,0,0,0,235,25,0,0,14,1,0,0,41,99,2,0,0,0,0,0,249,25,0,0,14,1,0,0,224,101,2,0,0,0,0,0,7,26,0,0,14,1,0,0,193,116, 2,0,0,0,0,0,20,26,0,0,14,1,0,0,63,117,2,0,0,0,0,0,30,26,0,0,14,1,0,0,160,119,2,0,0,0,0,0,46,26,0,0,14,1,0,0,166,121,2,0,0,0,0,0,55,26,0,0,14,1,0,0,96,122,2,0,0,0,0,0,66,26,0,0,14,1,0,0,5,123,2,0,0,0,0,0,77,26,0,0,14,1,0,0,152,123,2,0,0,0,0,0,87,26,0, 0,14,1,0,0,202,123,2,0,0,0,0,0,98,26,0,0,14,1,0,0,252,123,2,0,0,0,0,0,110,26,0,0,14,1,0,0,249,124,2,0,0,0,0,0,121,26,0,0,14,1,0,0,50,125,2,0,0,0,0,0,135,26,0,0,14,1,0,0,137,125,2,0,0,0,0,0,146,26,0,0,14,1,0,0,165,125,2,0,0,0,0,0,158,26,0,0,14,1,0,0,192, 125,2,0,0,0,0,0,171,26,0,0,14,1,0,0,219,125,2,0,0,0,0,0,181,26,0,0,14,1,0,0,253,125,2,0,0,0,0,0,195,26,0,0,14,1,0,0,31,126,2,0,0,0,0,0,209,26,0,0,14,1,0,0,94,126,2,0,0,0,0,0,219,26,0,0,14,1,0,0,179,126,2,0,0,0,0,0,230,26,0,0,14,1,0,0,231,126,2,0,0,0, 0,0,239,26,0,0,14,1,0,0,27,127,2,0,0,0,0,0,254,26,0,0,14,1,0,0,107,127,2,0,0,0,0,0,9,27,0,0,14,1,0,0,159,127,2,0,0,0,0,0,19,27,0,0,14,1,0,0,194,127,2,0,0,0,0,0,32,27,0,0,14,1,0,0,229,127,2,0,0,0,0,0,43,27,0,0,14,1,0,0,8,128,2,0,0,0,0,0,58,27,0,0,14,1, 0,0,60,128,2,0,0,0,0,0,74,27,0,0,14,1,0,0,112,128,2,0,0,0,0,0,84,27,0,0,14,1,0,0,169,128,2,0,0,0,0,0,98,27,0,0,14,1,0,0,224,128,2,0,0,0,0,0,112,27,0,0,14,1,0,0,9,129,2,0,0,0,0,0,126,27,0,0,14,1,0,0,39,129,2,0,0,0,0,0,135,27,0,0,14,1,0,0,115,136,2,0,0, 0,0,0,156,27,0,0,14,1,0,0,153,136,2,0,0,0,0,0,164,27,0,0,14,1,0,0,152,141,2,0,0,0,0,0,182,27,0,0,14,1,0,0,197,141,2,0,0,0,0,0,202,27,0,0,14,1,0,0,115,146,2,0,0,0,0,0,224,27,0,0,14,1,0,0,161,146,2,0,0,0,0,0,245,27,0,0,14,1,0,0,199,146,2,0,0,0,0,0,11,28, 0,0,14,1,0,0,240,152,2,0,0,0,0,0,32,28,0,0,14,1,0,0,243,157,2,0,0,0,0,0,47,28,0,0,14,1,0,0,37,164,2,0,0,0,0,0,65,28,0,0,14,1,0,0,119,164,2,0,0,0,0,0,85,28,0,0,14,1,0,0,74,174,2,0,0,0,0,0,103,28,0,0,14,1,0,0,79,177,2,0,0,0,0,0,115,28,0,0,14,1,0,0,201, 178,2,0,0,0,0,0,144,28,0,0,14,1,0,0,44,180,2,0,0,0,0,0,161,28,0,0,14,1,0,0,70,181,2,0,0,0,0,0,176,28,0,0,14,1,0,0,93,182,2,0,0,0,0,0,190,28,0,0,14,1,0,0,205,182,2,0,0,0,0,0,212,28,0,0,14,1,0,0,147,183,2,0,0,0,0,0,223,28,0,0,14,1,0,0,65,188,2,0,0,0,0, 0,237,28,0,0,14,1,0,0,116,189,2,0,0,0,0,0,249,28,0,0,14,1,0,0,152,189,2,0,0,0,0,0,11,29,0,0,14,1,0,0,13,190,2,0,0,0,0,0,28,29,0,0,14,1,0,0,145,191,2,0,0,0,0,0,45,29,0,0,14,1,0,0,153,193,2,0,0,0,0,0,58,29,0,0,14,1,0,0,221,193,2,0,0,0,0,0,72,29,0,0,14, 1,0,0,174,194,2,0,0,0,0,0,93,29,0,0,14,1,0,0,244,195,2,0,0,0,0,0,109,29,0,0,14,1,0,0,200,217,2,0,0,0,0,0,136,29,0,0,14,1,0,0,127,222,2,0,0,0,0,0,147,29,0,0,14,1,0,0,4,224,2,0,0,0,0,0,160,29,0,0,14,1,0,0,172,224,2,0,0,0,0,0,173,29,0,0,14,1,0,0,84,225, 2,0,0,0,0,0,201,29,0,0,14,1,0,0,190,226,2,0,0,0,0,0,225,29,0,0,14,1,0,0,121,227,2,0,0,0,0,0,250,29,0,0,14,1,0,0,172,227,2,0,0,0,0,0,15,30,0,0,14,1,0,0,245,227,2,0,0,0,0,0,36,30,0,0,14,1,0,0,35,230,2,0,0,0,0,0,53,30,0,0,14,1,0,0,165,232,2,0,0,0,0,0,75, 30,0,0,14,1,0,0,46,235,2,0,0,0,0,0,93,30,0,0,14,1,0,0,211,236,2,0,0,0,0,0,116,30,0,0,14,1,0,0,9,237,2,0,0,0,0,0,135,30,0,0,14,1,0,0,0,238,2,0,0,0,0,0,151,30,0,0,14,1,0,0,180,241,2,0,0,0,0,0,170,30,0,0,14,1,0,0,134,243,2,0,0,0,0,0,189,30,0,0,14,1,0,0, 57,244,2,0,0,0,0,0,201,30,0,0,14,1,0,0,255,244,2,0,0,0,0,0,214,30,0,0,14,1,0,0,82,255,2,0,0,0,0,0,239,30,0,0,14,1,0,0,8,3,3,0,0,0,0,0,2,31,0,0,14,1,0,0,240,25,3,0,0,0,0,0,19,31,0,0,14,1,0,0,109,29,3,0,0,0,0,0,45,31,0,0,14,1,0,0,127,38,3,0,0,0,0,0,57, 31,0,0,14,1,0,0,63,43,3,0,0,0,0,0,74,31,0,0,14,1,0,0,81,46,3,0,0,0,0,0,91,31,0,0,14,1,0,0,215,46,3,0,0,0,0,0,106,31,0,0,14,1,0,0,115,48,3,0,0,0,0,0,119,31,0,0,14,1,0,0,59,49,3,0,0,0,0,0,138,31,0,0,14,1,0,0,165,49,3,0,0,0,0,0,158,31,0,0,14,1,0,0,221,49, 3,0,0,0,0,0,177,31,0,0,14,1,0,0,230,53,3,0,0,0,0,0,192,31,0,0,14,1,0,0,99,55,3,0,0,0,0,0,205,31,0,0,14,1,0,0,11,56,3,0,0,0,0,0,223,31,0,0,14,1,0,0,250,56,3,0,0,0,0,0,239,31,0,0,14,1,0,0,189,58,3,0,0,0,0,0,251,31,0,0,14,1,0,0,0,60,3,0,0,0,0,0,17,32,0, 0,14,1,0,0,110,60,3,0,0,0,0,0,33,32,0,0,14,1,0,0,171,61,3,0,0,0,0,0,47,32,0,0,14,1,0,0,30,62,3,0,0,0,0,0,65,32,0,0,14,1,0,0,4,63,3,0,0,0,0,0,83,32,0,0,14,1,0,0,170,63,3,0,0,0,0,0,100,32,0,0,14,1,0,0,1,68,3,0,0,0,0,0,113,32,0,0,14,1,0,0,167,74,3,0,0,0, 0,0,132,32,0,0,14,1,0,0,35,76,3,0,0,0,0,0,147,32,0,0,14,1,0,0,222,77,3,0,0,0,0,0,160,32,0,0,14,1,0,0,47,79,3,0,0,0,0,0,177,32,0,0,14,1,0,0,92,92,3,0,0,0,0,0,195,32,0,0,14,1,0,0,170,92,3,0,0,0,0,0,208,32,0,0,14,1,0,0,247,93,3,0,0,0,0,0,222,32,0,0,14,1, 0,0,169,102,3,0,0,0,0,0,236,32,0,0,14,1,0,0,93,103,3,0,0,0,0,0,250,32,0,0,14,1,0,0,176,103,3,0,0,0,0,0,8,33,0,0,14,1,0,0,3,104,3,0,0,0,0,0,22,33,0,0,14,1,0,0,244,104,3,0,0,0,0,0,36,33,0,0,14,1,0,0,135,116,3,0,0,0,0,0,47,33,0,0,14,1,0,0,84,132,3,0,0,0, 0,0,64,33,0,0,14,1,0,0,220,132,3,0,0,0,0,0,79,33,0,0,14,1,0,0,22,135,3,0,0,0,0,0,95,33,0,0,14,1,0,0,175,135,3,0,0,0,0,0,109,33,0,0,14,1,0,0,171,136,3,0,0,0,0,0,125,33,0,0,14,1,0,0,237,136,3,0,0,0,0,0,139,33,0,0,14,1,0,0,62,137,3,0,0,0,0,0,153,33,0,0, 14,1,0,0,149,139,3,0,0,0,0,0,166,33,0,0,14,1,0,0,228,143,3,0,0,0,0,0,183,33,0,0,14,1,0,0,42,144,3,0,0,0,0,0,200,33,0,0,14,1,0,0,182,144,3,0,0,0,0,0,221,33,0,0,14,1,0,0,244,144,3,0,0,0,0,0,241,33,0,0,14,1,0,0,175,157,3,0,0,0,0,0,1,34,0,0,14,1,0,0,59,158, 3,0,0,0,0,0,14,34,0,0,14,1,0,0,126,160,3,0,0,0,0,0,33,34,0,0,14,1,0,0,146,162,3,0,0,0,0,0,48,34,0,0,14,1,0,0,53,164,3,0,0,0,0,0,60,34,0,0,14,1,0,0,36,165,3,0,0,0,0,0,73,34,0,0,14,1,0,0,134,167,3,0,0,0,0,0,86,34,0,0,14,1,0,0,174,170,3,0,0,0,0,0,100,34, 0,0,14,1,0,0,20,174,3,0,0,0,0,0,114,34,0,0,14,1,0,0,132,174,3,0,0,0,0,0,131,34,0,0,14,1,0,0,219,174,3,0,0,0,0,0,148,34,0,0,14,1,0,0,17,175,3,0,0,0,0,0,163,34,0,0,14,1,0,0,230,175,3,0,0,0,0,0,176,34,0,0,14,1,0,0,59,176,3,0,0,0,0,0,190,34,0,0,14,1,0,0, 111,176,3,0,0,0,0,0,202,34,0,0,14,1,0,0,163,176,3,0,0,0,0,0,216,34,0,0,14,1,0,0,215,176,3,0,0,0,0,0,229,34,0,0,14,1,0,0,250,176,3,0,0,0,0,0,245,34,0,0,14,1,0,0,29,177,3,0,0,0,0,0,3,35,0,0,14,1,0,0,64,177,3,0,0,0,0,0,21,35,0,0,14,1,0,0,116,177,3,0,0,0, 0,0,40,35,0,0,14,1,0,0,168,177,3,0,0,0,0,0,53,35,0,0,14,1,0,0,225,177,3,0,0,0,0,0,75,35,0,0,14,1,0,0,249,177,3,0,0,0,0,0,97,35,0,0,14,1,0,0,17,178,3,0,0,0,0,0,111,35,0,0,14,1,0,0,35,186,3,0,0,0,0,0,132,35,0,0,14,1,0,0,73,186,3,0,0,0,0,0,144,35,0,0,14, 1,0,0,115,186,3,0,0,0,0,0,155,35,0,0,14,1,0,0,157,186,3,0,0,0,0,0,166,35,0,0,14,1,0,0,6,196,3,0,0,0,0,0,187,35,0,0,14,1,0,0,79,197,3,0,0,0,0,0,205,35,0,0,14,1,0,0,216,199,3,0,0,0,0,0,224,35,0,0,14,1,0,0,195,201,3,0,0,0,0,0,244,35,0,0,14,1,0,0,141,202, 3,0,0,0,0,0,9,36,0,0,14,1,0,0,164,203,3,0,0,0,0,0,26,36,0,0,14,1,0,0,39,205,3,0,0,0,0,0,47,36,0,0,14,1,0,0,141,206,3,0,0,0,0,0,64,36,0,0,14,1,0,0,16,207,3,0,0,0,0,0,78,36,0,0,14,1,0,0,115,212,3,0,0,0,0,0,98,36,0,0,14,1,0,0,170,214,3,0,0,0,0,0,111,36, 0,0,14,1,0,0,104,216,3,0,0,0,0,0,125,36,0,0,14,1,0,0,143,217,3,0,0,0,0,0,141,36,0,0,14,1,0,0,32,219,3,0,0,0,0,0,157,36,0,0,14,1,0,0,245,220,3,0,0,0,0,0,172,36,0,0,14,1,0,0,42,222,3,0,0,0,0,0,190,36,0,0,14,1,0,0,185,222,3,0,0,0,0,0,204,36,0,0,14,1,0,0, 34,223,3,0,0,0,0,0,219,36,0,0,14,1,0,0,86,223,3,0,0,0,0,0,232,36,0,0,14,1,0,0,138,223,3,0,0,0,0,0,247,36,0,0,14,1,0,0,224,223,3,0,0,0,0,0,6,37,0,0,14,1,0,0,20,224,3,0,0,0,0,0,20,37,0,0,14,1,0,0,55,224,3,0,0,0,0,0,37,37,0,0,14,1,0,0,90,224,3,0,0,0,0,0, 52,37,0,0,14,1,0,0,125,224,3,0,0,0,0,0,71,37,0,0,14,1,0,0,177,224,3,0,0,0,0,0,91,37,0,0,14,1,0,0,229,224,3,0,0,0,0,0,104,37,0,0,14,1,0,0,34,225,3,0,0,0,0,0,117,37,0,0,14,1,0,0,123,225,3,0,0,0,0,0,131,37,0,0,14,1,0,0,180,225,3,0,0,0,0,0,147,37,0,0,14, 1,0,0,223,225,3,0,0,0,0,0,162,37,0,0,14,1,0,0,43,227,3,0,0,0,0,0,180,37,0,0,14,1,0,0,124,227,3,0,0,0,0,0,193,37,0,0,14,1,0,0,35,236,3,0,0,0,0,0,214,37,0,0,14,1,0,0,73,236,3,0,0,0,0,0,228,37,0,0,14,1,0,0,203,241,3,0,0,0,0,0,240,37,0,0,14,1,0,0,70,242, 3,0,0,0,0,0,253,37,0,0,14,1,0,0,97,242,3,0,0,0,0,0,13,38,0,0,14,1,0,0,132,242,3,0,0,0,0,0,27,38,0,0,14,1,0,0,169,242,3,0,0,0,0,0,42,38,0,0,14,1,0,0,204,242,3,0,0,0,0,0,55,38,0,0,14,1,0,0,253,242,3,0,0,0,0,0,72,38,0,0,14,1,0,0,46,243,3,0,0,0,0,0,85,38, 0,0,14,1,0,0,71,244,3,0,0,0,0,0,97,38,0,0,14,1,0,0,243,248,3,0,0,0,0,0,118,38,0,0,14,1,0,0,31,249,3,0,0,0,0,0,133,38,0,0,14,1,0,0,25,250,3,0,0,0,0,0,147,38,0,0,14,1,0,0,122,251,3,0,0,0,0,0,160,38,0,0,14,1,0,0,254,251,3,0,0,0,0,0,174,38,0,0,14,1,0,0,25, 252,3,0,0,0,0,0,191,38,0,0,14,1,0,0,60,252,3,0,0,0,0,0,206,38,0,0,14,1,0,0,97,252,3,0,0,0,0,0,222,38,0,0,14,1,0,0,132,252,3,0,0,0,0,0,236,38,0,0,14,1,0,0,181,252,3,0,0,0,0,0,254,38,0,0,14,1,0,0,230,252,3,0,0,0,0,0,12,39,0,0,14,1,0,0,62,254,3,0,0,0,0, 0,30,39,0,0,14,1,0,0,4,255,3,0,0,0,0,0,59,39,0,0,14,1,0,0,104,0,4,0,0,0,0,0,72,39,0,0,14,1,0,0,101,4,4,0,0,0,0,0,88,39,0,0,14,1,0,0,137,5,4,0,0,0,0,0,103,39,0,0,14,1,0,0,66,12,4,0,0,0,0,0,122,39,0,0,14,1,0,0,192,12,4,0,0,0,0,0,138,39,0,0,14,1,0,0,178, 14,4,0,0,0,0,0,160,39,0,0,14,1,0,0,122,16,4,0,0,0,0,0,179,39,0,0,14,1,0,0,31,17,4,0,0,0,0,0,197,39,0,0,14,1,0,0,46,18,4,0,0,0,0,0,213,39,0,0,14,1,0,0,137,18,4,0,0,0,0,0,230,39,0,0,14,1,0,0,189,18,4,0,0,0,0,0,245,39,0,0,14,1,0,0,241,18,4,0,0,0,0,0,9,40, 0,0,14,1,0,0,152,19,4,0,0,0,0,0,26,40,0,0,14,1,0,0,204,19,4,0,0,0,0,0,42,40,0,0,14,1,0,0,239,19,4,0,0,0,0,0,61,40,0,0,14,1,0,0,18,20,4,0,0,0,0,0,78,40,0,0,14,1,0,0,53,20,4,0,0,0,0,0,99,40,0,0,14,1,0,0,105,20,4,0,0,0,0,0,121,40,0,0,14,1,0,0,157,20,4,0, 0,0,0,0,136,40,0,0,14,1,0,0,181,28,4,0,0,0,0,0,157,40,0,0,14,1,0,0,219,28,4,0,0,0,0,0,171,40,0,0,14,1,0,0,191,32,4,0,0,0,0,0,193,40,0,0,14,1,0,0,24,33,4,0,0,0,0,0,214,40,0,0,14,1,0,0,169,36,4,0,0,0,0,0,237,40,0,0,14,1,0,0,112,38,4,0,0,0,0,0,1,41,0,0, 14,1,0,0,19,42,4,0,0,0,0,0,22,41,0,0,14,1,0,0,168,44,4,0,0,0,0,0,44,41,0,0,14,1,0,0,139,45,4,0,0,0,0,0,67,41,0,0,14,1,0,0,47,47,4,0,0,0,0,0,86,41,0,0,14,1,0,0,172,48,4,0,0,0,0,0,109,41,0,0,14,1,0,0,244,50,4,0,0,0,0,0,128,41,0,0,14,1,0,0,117,51,4,0,0, 0,0,0,144,41,0,0,14,1,0,0,25,56,4,0,0,0,0,0,166,41,0,0,14,1,0,0,180,58,4,0,0,0,0,0,182,41,0,0,14,1,0,0,41,59,4,0,0,0,0,0,200,41,0,0,14,1,0,0,229,60,4,0,0,0,0,0,218,41,0,0,14,1,0,0,240,61,4,0,0,0,0,0,235,41,0,0,14,1,0,0,87,62,4,0,0,0,0,0,255,41,0,0,14, 1,0,0,148,63,4,0,0,0,0,0,14,42,0,0,14,1,0,0,217,63,4,0,0,0,0,0,36,42,0,0,14,1,0,0,152,64,4,0,0,0,0,0,53,42,0,0,14,1,0,0,212,64,4,0,0,0,0,0,69,42,0,0,14,1,0,0,95,65,4,0,0,0,0,0,86,42,0,0,14,1,0,0,147,65,4,0,0,0,0,0,101,42,0,0,14,1,0,0,199,65,4,0,0,0,0, 0,118,42,0,0,14,1,0,0,57,66,4,0,0,0,0,0,135,42,0,0,14,1,0,0,109,66,4,0,0,0,0,0,151,42,0,0,14,1,0,0,144,66,4,0,0,0,0,0,170,42,0,0,14,1,0,0,179,66,4,0,0,0,0,0,187,42,0,0,14,1,0,0,214,66,4,0,0,0,0,0,208,42,0,0,14,1,0,0,10,67,4,0,0,0,0,0,230,42,0,0,14,1, 0,0,189,67,4,0,0,0,0,0,245,42,0,0,14,1,0,0,22,68,4,0,0,0,0,0,4,43,0,0,14,1,0,0,46,68,4,0,0,0,0,0,20,43,0,0,14,1,0,0,103,68,4,0,0,0,0,0,40,43,0,0,14,1,0,0,181,68,4,0,0,0,0,0,55,43,0,0,14,1,0,0,194,70,4,0,0,0,0,0,76,43,0,0,14,1,0,0,232,70,4,0,0,0,0,0,92, 43,0,0,14,1,0,0,47,71,4,0,0,0,0,0,107,43,0,0,14,1,0,0,25,80,4,0,0,0,0,0,128,43,0,0,14,1,0,0,63,80,4,0,0,0,0,0,144,43,0,0,14,1,0,0,244,85,4,0,0,0,0,0,163,43,0,0,14,1,0,0,129,86,4,0,0,0,0,0,181,43,0,0,14,1,0,0,216,86,4,0,0,0,0,0,198,43,0,0,14,1,0,0,136, 94,4,0,0,0,0,0,212,43,0,0,14,1,0,0,240,101,4,0,0,0,0,0,229,43,0,0,14,1,0,0,75,102,4,0,0,0,0,0,3,44,0,0,14,1,0,0,122,103,4,0,0,0,0,0,31,44,0,0,14,1,0,0,59,107,4,0,0,0,0,0,44,44,0,0,14,1,0,0,155,108,4,0,0,0,0,0,59,44,0,0,14,1,0,0,111,115,4,0,0,0,0,0,87, 44,0,0,14,1,0,0,63,116,4,0,0,0,0,0,111,44,0,0,14,1,0,0,205,118,4,0,0,0,0,0,130,44,0,0,14,1,0,0,154,119,4,0,0,0,0,0,149,44,0,0,14,1,0,0,228,119,4,0,0,0,0,0,166,44,0,0,14,1,0,0,212,124,4,0,0,0,0,0,181,44,0,0,14,1,0,0,112,125,4,0,0,0,0,0,191,44,0,0,14,1, 0,0,200,125,4,0,0,0,0,0,200,44,0,0,14,1,0,0,25,126,4,0,0,0,0,0,216,44,0,0,14,1,0,0,137,136,4,0,0,0,0,0,238,44,0,0,14,1,0,0,188,155,4,0,0,0,0,0,254,44,0,0,14,1,0,0,208,157,4,0,0,0,0,0,21,45,0,0,14,1,0,0,253,158,4,0,0,0,0,0,36,45,0,0,14,1,0,0,186,159,4, 0,0,0,0,0,53,45,0,0,14,1,0,0,164,162,4,0,0,0,0,0,70,45,0,0,14,1,0,0,181,162,4,0,0,0,0,0,85,45,0,0,14,1,0,0,195,162,4,0,0,0,0,0,97,45,0,0,14,1,0,0,140,164,4,0,0,0,0,0,114,45,0,0,14,1,0,0,245,166,4,0,0,0,0,0,128,45,0,0,14,1,0,0,131,167,4,0,0,0,0,0,141, 45,0,0,14,1,0,0,14,168,4,0,0,0,0,0,160,45,0,0,14,1,0,0,46,169,4,0,0,0,0,0,173,45,0,0,14,1,0,0,68,170,4,0,0,0,0,0,191,45,0,0,14,1,0,0,133,178,4,0,0,0,0,0,214,45,0,0,14,1,0,0,68,179,4,0,0,0,0,0,238,45,0,0,14,1,0,0,155,181,4,0,0,0,0,0,5,46,0,0,14,1,0,0, 216,183,4,0,0,0,0,0,28,46,0,0,14,1,0,0,4,189,4,0,0,0,0,0,50,46,0,0,14,1,0,0,120,190,4,0,0,0,0,0,66,46,0,0,14,1,0,0,253,190,4,0,0,0,0,0,83,46,0,0,14,1,0,0,17,193,4,0,0,0,0,0,98,46,0,0,14,1,0,0,97,193,4,0,0,0,0,0,117,46,0,0,14,1,0,0,217,193,4,0,0,0,0,0, 133,46,0,0,14,1,0,0,79,195,4,0,0,0,0,0,150,46,0,0,14,1,0,0,217,195,4,0,0,0,0,0,176,46,0,0,14,1,0,0,69,196,4,0,0,0,0,0,203,46,0,0,14,1,0,0,178,196,4,0,0,0,0,0,227,46,0,0,14,1,0,0,132,200,4,0,0,0,0,0,250,46,0,0,14,1,0,0,221,200,4,0,0,0,0,0,18,47,0,0,14, 1,0,0,141,201,4,0,0,0,0,0,41,47,0,0,14,1,0,0,244,201,4,0,0,0,0,0,61,47,0,0,14,1,0,0,110,204,4,0,0,0,0,0,82,47,0,0,14,1,0,0,24,207,4,0,0,0,0,0,93,47,0,0,14,1,0,0,169,210,4,0,0,0,0,0,108,47,0,0,14,1,0,0,99,212,4,0,0,0,0,0,124,47,0,0,14,1,0,0,139,212,4, 0,0,0,0,0,138,47,0,0,14,1,0,0,175,212,4,0,0,0,0,0,154,47,0,0,14,1,0,0,211,212,4,0,0,0,0,0,166,47,0,0,14,1,0,0,19,213,4,0,0,0,0,0,181,47,0,0,14,1,0,0,27,214,4,0,0,0,0,0,192,47,0,0,14,1,0,0,207,217,4,0,0,0,0,0,206,47,0,0,14,1,0,0,160,219,4,0,0,0,0,0,219, 47,0,0,14,1,0,0,166,222,4,0,0,0,0,0,231,47,0,0,14,1,0,0,226,222,4,0,0,0,0,0,244,47,0,0,14,1,0,0,1,224,4,0,0,0,0,0,254,47,0,0,14,1,0,0,80,229,4,0,0,0,0,0,22,48,0,0,14,1,0,0,183,233,4,0,0,0,0,0,36,48,0,0,14,1,0,0,83,239,4,0,0,0,0,0,51,48,0,0,14,1,0,0,123, 239,4,0,0,0,0,0,64,48,0,0,14,1,0,0,159,239,4,0,0,0,0,0,79,48,0,0,14,1,0,0,195,239,4,0,0,0,0,0,89,48,0,0,14,1,0,0,64,255,4,0,0,0,0,0,101,48,0,0,14,1,0,0,243,0,5,0,0,0,0,0,113,48,0,0,14,1,0,0,139,1,5,0,0,0,0,0,129,48,0,0,14,1,0,0,219,4,5,0,0,0,0,0,149, 48,0,0,14,1,0,0,117,5,5,0,0,0,0,0,171,48,0,0,14,1,0,0,163,5,5,0,0,0,0,0,191,48,0,0,14,1,0,0,64,8,5,0,0,0,0,0,212,48,0,0,14,1,0,0,104,8,5,0,0,0,0,0,231,48,0,0,14,1,0,0,164,8,5,0,0,0,0,0,252,48,0,0,14,1,0,0,224,8,5,0,0,0,0,0,12,49,0,0,14,1,0,0,120,11,5, 0,0,0,0,0,31,49,0,0,14,1,0,0,172,12,5,0,0,0,0,0,47,49,0,0,14,1,0,0,207,15,5,0,0,0,0,0,65,49,0,0,14,1,0,0,202,17,5,0,0,0,0,0,82,49,0,0,14,1,0,0,212,17,5,0,0,0,0,0,100,49,0,0,14,1,0,0,143,20,5,0,0,0,0,0,116,49,0,0,14,1,0,0,71,22,5,0,0,0,0,0,134,49,0,0, 14,1,0,0,202,28,5,0,0,0,0,0,154,49,0,0,14,1,0,0,229,28,5,0,0,0,0,0,175,49,0,0,14,1,0,0,10,29,5,0,0,0,0,0,197,49,0,0,14,1,0,0,45,29,5,0,0,0,0,0,217,49,0,0,14,1,0,0,94,29,5,0,0,0,0,0,241,49,0,0,14,1,0,0,143,29,5,0,0,0,0,0,255,49,0,0,14,1,0,0,188,29,5,0, 0,0,0,0,14,50,0,0,14,1,0,0,250,29,5,0,0,0,0,0,30,50,0,0,14,1,0,0,57,30,5,0,0,0,0,0,44,50,0,0,14,1,0,0,110,30,5,0,0,0,0,0,57,50,0,0,14,1,0,0,185,30,5,0,0,0,0,0,71,50,0,0,14,1,0,0,247,30,5,0,0,0,0,0,84,50,0,0,14,1,0,0,66,31,5,0,0,0,0,0,102,50,0,0,14,1, 0,0,133,31,5,0,0,0,0,0,119,50,0,0,14,1,0,0,171,31,5,0,0,0,0,0,138,50,0,0,14,1,0,0,11,32,5,0,0,0,0,0,158,50,0,0,14,1,0,0,250,32,5,0,0,0,0,0,180,50,0,0,14,1,0,0,40,33,5,0,0,0,0,0,195,50,0,0,14,1,0,0,204,33,5,0,0,0,0,0,209,50,0,0,14,1,0,0,54,34,5,0,0,0, 0,0,223,50,0,0,14,1,0,0,113,36,5,0,0,0,0,0,238,50,0,0,14,1,0,0,66,37,5,0,0,0,0,0,255,50,0,0,14,1,0,0,133,37,5,0,0,0,0,0,13,51,0,0,14,1,0,0,176,37,5,0,0,0,0,0,27,51,0,0,14,1,0,0,23,38,5,0,0,0,0,0,38,51,0,0,14,1,0,0,232,38,5,0,0,0,0,0,50,51,0,0,14,1,0, 0,97,40,5,0,0,0,0,0,63,51,0,0,14,1,0,0,161,40,5,0,0,0,0,0,80,51,0,0,14,1,0,0,36,41,5,0,0,0,0,0,94,51,0,0,14,1,0,0,101,41,5,0,0,0,0,0,106,51,0,0,14,1,0,0,225,41,5,0,0,0,0,0,120,51,0,0,14,1,0,0,219,43,5,0,0,0,0,0,131,51,0,0,14,1,0,0,229,45,5,0,0,0,0,0, 144,51,0,0,14,1,0,0,29,47,5,0,0,0,0,0,157,51,0,0,14,1,0,0,115,50,5,0,0,0,0,0,178,51,0,0,14,1,0,0,202,51,5,0,0,0,0,0,194,51,0,0,14,1,0,0,39,52,5,0,0,0,0,0,205,51,0,0,14,1,0,0,46,58,5,0,0,0,0,0,217,51,0,0,14,1,0,0,120,58,5,0,0,0,0,0,235,51,0,0,14,1,0,0, 153,59,5,0,0,0,0,0,249,51,0,0,14,1,0,0,82,61,5,0,0,0,0,0,8,52,0,0,14,1,0,0,37,62,5,0,0,0,0,0,21,52,0,0,14,1,0,0,192,62,5,0,0,0,0,0,36,52,0,0,14,1,0,0,13,63,5,0,0,0,0,0,49,52,0,0,14,1,0,0,52,63,5,0,0,0,0,0,59,52,0,0,14,1,0,0,49,64,5,0,0,0,0,0,71,52,0, 0,14,1,0,0,96,81,5,0,0,0,0,0,86,52,0,0,14,1,0,0,42,98,5,0,0,0,0,0,102,52,0,0,14,1,0,0,168,98,5,0,0,0,0,0,115,52,0,0,14,1,0,0,183,100,5,0,0,0,0,0,134,52,0,0,14,1,0,0,134,102,5,0,0,0,0,0,147,52,0,0,14,1,0,0,82,103,5,0,0,0,0,0,162,52,0,0,14,1,0,0,124,104, 5,0,0,0,0,0,176,52,0,0,14,1,0,0,172,104,5,0,0,0,0,0,193,52,0,0,14,1,0,0,3,105,5,0,0,0,0,0,205,52,0,0,14,1,0,0,88,105,5,0,0,0,0,0,219,52,0,0,14,1,0,0,234,105,5,0,0,0,0,0,232,52,0,0,14,1,0,0,106,106,5,0,0,0,0,0,249,52,0,0,14,1,0,0,172,106,5,0,0,0,0,0,6, 53,0,0,14,1,0,0,1,107,5,0,0,0,0,0,20,53,0,0,14,1,0,0,53,107,5,0,0,0,0,0,32,53,0,0,14,1,0,0,105,107,5,0,0,0,0,0,46,53,0,0,14,1,0,0,157,107,5,0,0,0,0,0,59,53,0,0,14,1,0,0,192,107,5,0,0,0,0,0,75,53,0,0,14,1,0,0,227,107,5,0,0,0,0,0,89,53,0,0,14,1,0,0,6,108, 5,0,0,0,0,0,108,53,0,0,14,1,0,0,58,108,5,0,0,0,0,0,126,53,0,0,14,1,0,0,110,108,5,0,0,0,0,0,139,53,0,0,14,1,0,0,167,108,5,0,0,0,0,0,155,53,0,0,14,1,0,0,208,108,5,0,0,0,0,0,167,53,0,0,14,1,0,0,68,116,5,0,0,0,0,0,188,53,0,0,14,1,0,0,106,116,5,0,0,0,0,0, 199,53,0,0,14,1,0,0,142,121,5,0,0,0,0,0,210,53,0,0,14,1,0,0,244,122,5,0,0,0,0,0,235,53,0,0,14,1,0,0,5,125,5,0,0,0,0,0,247,53,0,0,14,1,0,0,254,125,5,0,0,0,0,0,8,54,0,0,14,1,0,0,98,126,5,0,0,0,0,0,22,54,0,0,14,1,0,0,92,128,5,0,0,0,0,0,35,54,0,0,14,1,0, 0,118,128,5,0,0,0,0,0,54,54,0,0,14,1,0,0,114,129,5,0,0,0,0,0,67,54,0,0,14,1,0,0,29,130,5,0,0,0,0,0,83,54,0,0,14,1,0,0,86,130,5,0,0,0,0,0,98,54,0,0,14,1,0,0,234,130,5,0,0,0,0,0,111,54,0,0,14,1,0,0,34,131,5,0,0,0,0,0,125,54,0,0,14,1,0,0,150,132,5,0,0,0, 0,0,134,54,0,0,14,1,0,0,110,133,5,0,0,0,0,0,147,54,0,0,14,1,0,0,55,135,5,0,0,0,0,0,157,54,0,0,14,1,0,0,98,135,5,0,0,0,0,0,168,54,0,0,14,1,0,0,213,135,5,0,0,0,0,0,177,54,0,0,14,1,0,0,105,137,5,0,0,0,0,0,187,54,0,0,14,1,0,0,130,139,5,0,0,0,0,0,198,54,0, 0,14,1,0,0,217,139,5,0,0,0,0,0,210,54,0,0,14,1,0,0,49,140,5,0,0,0,0,0,220,54,0,0,14,1,0,0,105,140,5,0,0,0,0,0,231,54,0,0,14,1,0,0,2,141,5,0,0,0,0,0,241,54,0,0,14,1,0,0,131,141,5,0,0,0,0,0,253,54,0,0,14,1,0,0,199,143,5,0,0,0,0,0,8,55,0,0,14,1,0,0,243, 143,5,0,0,0,0,0,20,55,0,0,14,1,0,0,110,144,5,0,0,0,0,0,33,55,0,0,14,1,0,0,196,144,5,0,0,0,0,0,50,55,0,0,14,1,0,0,98,146,5,0,0,0,0,0,65,55,0,0,14,1,0,0,212,146,5,0,0,0,0,0,78,55,0,0,14,1,0,0,61,147,5,0,0,0,0,0,93,55,0,0,14,1,0,0,101,151,5,0,0,0,0,0,107, 55,0,0,14,1,0,0,128,151,5,0,0,0,0,0,122,55,0,0,14,1,0,0,3,152,5,0,0,0,0,0,134,55,0,0,14,1,0,0,25,153,5,0,0,0,0,0,148,55,0,0,14,1,0,0,64,155,5,0,0,0,0,0,161,55,0,0,14,1,0,0,120,155,5,0,0,0,0,0,175,55,0,0,14,1,0,0,235,155,5,0,0,0,0,0,188,55,0,0,14,1,0, 0,78,156,5,0,0,0,0,0,205,55,0,0,14,1,0,0,174,157,5,0,0,0,0,0,219,55,0,0,14,1,0,0,205,157,5,0,0,0,0,0,234,55,0,0,14,1,0,0,112,170,5,0,0,0,0,0,250,55,0,0,14,1,0,0,252,170,5,0,0,0,0,0,7,56,0,0,14,1,0,0,63,173,5,0,0,0,0,0,26,56,0,0,14,1,0,0,83,175,5,0,0, 0,0,0,41,56,0,0,14,1,0,0,246,176,5,0,0,0,0,0,53,56,0,0,14,1,0,0,216,177,5,0,0,0,0,0,66,56,0,0,14,1,0,0,58,180,5,0,0,0,0,0,79,56,0,0,14,1,0,0,98,183,5,0,0,0,0,0,93,56,0,0,14,1,0,0,200,186,5,0,0,0,0,0,107,56,0,0,14,1,0,0,56,187,5,0,0,0,0,0,124,56,0,0,14, 1,0,0,143,187,5,0,0,0,0,0,141,56,0,0,14,1,0,0,197,187,5,0,0,0,0,0,156,56,0,0,14,1,0,0,154,188,5,0,0,0,0,0,169,56,0,0,14,1,0,0,239,188,5,0,0,0,0,0,183,56,0,0,14,1,0,0,35,189,5,0,0,0,0,0,195,56,0,0,14,1,0,0,87,189,5,0,0,0,0,0,209,56,0,0,14,1,0,0,139,189, 5,0,0,0,0,0,222,56,0,0,14,1,0,0,174,189,5,0,0,0,0,0,238,56,0,0,14,1,0,0,209,189,5,0,0,0,0,0,252,56,0,0,14,1,0,0,244,189,5,0,0,0,0,0,14,57,0,0,14,1,0,0,40,190,5,0,0,0,0,0,33,57,0,0,14,1,0,0,92,190,5,0,0,0,0,0,46,57,0,0,14,1,0,0,149,190,5,0,0,0,0,0,68, 57,0,0,14,1,0,0,173,190,5,0,0,0,0,0,90,57,0,0,14,1,0,0,197,190,5,0,0,0,0,0,104,57,0,0,14,1,0,0,167,198,5,0,0,0,0,0,125,57,0,0,14,1,0,0,205,198,5,0,0,0,0,0,137,57,0,0,14,1,0,0,247,198,5,0,0,0,0,0,148,57,0,0,14,1,0,0,33,199,5,0,0,0,0,0,159,57,0,0,14,1, 0,0,12,208,5,0,0,0,0,0,180,57,0,0,14,1,0,0,227,208,5,0,0,0,0,0,198,57,0,0,14,1,0,0,124,211,5,0,0,0,0,0,217,57,0,0,14,1,0,0,113,213,5,0,0,0,0,0,237,57,0,0,14,1,0,0,59,214,5,0,0,0,0,0,2,58,0,0,14,1,0,0,82,215,5,0,0,0,0,0,19,58,0,0,14,1,0,0,211,216,5,0, 0,0,0,0,40,58,0,0,14,1,0,0,57,218,5,0,0,0,0,0,57,58,0,0,14,1,0,0,188,218,5,0,0,0,0,0,71,58,0,0,14,1,0,0,8,224,5,0,0,0,0,0,91,58,0,0,14,1,0,0,70,226,5,0,0,0,0,0,105,58,0,0,14,1,0,0,109,227,5,0,0,0,0,0,121,58,0,0,14,1,0,0,254,228,5,0,0,0,0,0,137,58,0,0, 14,1,0,0,211,230,5,0,0,0,0,0,152,58,0,0,14,1,0,0,20,232,5,0,0,0,0,0,170,58,0,0,14,1,0,0,163,232,5,0,0,0,0,0,183,58,0,0,14,1,0,0,97,234,5,0,0,0,0,0,198,58,0,0,14,1,0,0,157,234,5,0,0,0,0,0,212,58,0,0,14,1,0,0,6,235,5,0,0,0,0,0,227,58,0,0,14,1,0,0,58,235, 5,0,0,0,0,0,240,58,0,0,14,1,0,0,110,235,5,0,0,0,0,0,255,58,0,0,14,1,0,0,196,235,5,0,0,0,0,0,14,59,0,0,14,1,0,0,248,235,5,0,0,0,0,0,28,59,0,0,14,1,0,0,27,236,5,0,0,0,0,0,45,59,0,0,14,1,0,0,62,236,5,0,0,0,0,0,60,59,0,0,14,1,0,0,97,236,5,0,0,0,0,0,79,59, 0,0,14,1,0,0,149,236,5,0,0,0,0,0,99,59,0,0,14,1,0,0,201,236,5,0,0,0,0,0,112,59,0,0,14,1,0,0,6,237,5,0,0,0,0,0,125,59,0,0,14,1,0,0,95,237,5,0,0,0,0,0,139,59,0,0,14,1,0,0,152,237,5,0,0,0,0,0,155,59,0,0,14,1,0,0,195,237,5,0,0,0,0,0,173,59,0,0,14,1,0,0,20, 238,5,0,0,0,0,0,186,59,0,0,14,1,0,0,170,246,5,0,0,0,0,0,207,59,0,0,14,1,0,0,208,246,5,0,0,0,0,0,221,59,0,0,14,1,0,0,82,252,5,0,0,0,0,0,236,59,0,0,14,1,0,0,46,253,5,0,0,0,0,0,252,59,0,0,14,1,0,0,205,254,5,0,0,0,0,0,12,60,0,0,14,1,0,0,77,255,5,0,0,0,0, 0,25,60,0,0,14,1,0,0,184,5,6,0,0,0,0,0,39,60,0,0,14,1,0,0,208,9,6,0,0,0,0,0,54,60,0,0,14,1,0,0,133,11,6,0,0,0,0,0,70,60,0,0,14,1,0,0,91,14,6,0,0,0,0,0,82,60,0,0,14,1,0,0,228,16,6,0,0,0,0,0,98,60,0,0,14,1,0,0,76,19,6,0,0,0,0,0,110,60,0,0,14,1,0,0,212, 19,6,0,0,0,0,0,119,60,0,0,14,1,0,0,9,22,6,0,0,0,0,0,129,60,0,0,14,1,0,0,16,25,6,0,0,0,0,0,144,60,0,0,14,1,0,0,209,26,6,0,0,0,0,0,155,60,0,0,14,1,0,0,16,28,6,0,0,0,0,0,164,60,0,0,14,1,0,0,196,28,6,0,0,0,0,0,174,60,0,0,14,1,0,0,248,28,6,0,0,0,0,0,182,60, 0,0,14,1,0,0,44,29,6,0,0,0,0,0,192,60,0,0,14,1,0,0,96,29,6,0,0,0,0,0,204,60,0,0,14,1,0,0,131,29,6,0,0,0,0,0,214,60,0,0,14,1,0,0,166,29,6,0,0,0,0,0,228,60,0,0,14,1,0,0,218,29,6,0,0,0,0,0,243,60,0,0,14,1,0,0,14,30,6,0,0,0,0,0,253,60,0,0,14,1,0,0,53,31, 6,0,0,0,0,0,5,61,0,0,14,1,0,0,92,32,6,0,0,0,0,0,14,61,0,0,14,1,0,0,255,32,6,0,0,0,0,0,22,61,0,0,14,1,0,0,243,39,6,0,0,0,0,0,43,61,0,0,14,1,0,0,25,40,6,0,0,0,0,0,52,61,0,0,14,1,0,0,54,51,6,0,0,0,0,0,73,61,0,0,14,1,0,0,92,51,6,0,0,0,0,0,95,61,0,0,14,1, 0,0,168,52,6,0,0,0,0,0,116,61,0,0,14,1,0,0,254,63,6,0,0,0,0,0,137,61,0,0,14,1,0,0,143,84,6,0,0,0,0,0,152,61,0,0,14,1,0,0,248,84,6,0,0,0,0,0,168,61,0,0,14,1,0,0,160,94,6,0,0,0,0,0,184,61,0,0,14,1,0,0,168,149,6,0,0,0,0,0,204,61,0,0,14,1,0,0,234,149,6,0, 0,0,0,0,220,61,0,0,14,1,0,0,83,150,6,0,0,0,0,0,239,61,0,0,14,1,0,0,220,150,6,0,0,0,0,0,0,62,0,0,14,1,0,0,98,151,6,0,0,0,0,0,18,62,0,0,14,1,0,0,235,151,6,0,0,0,0,0,34,62,0,0,14,1,0,0,37,168,6,0,0,0,0,0,53,62,0,0,14,1,0,0,31,169,6,0,0,0,0,0,69,62,0,0,14, 1,0,0,240,170,6,0,0,0,0,0,90,62,0,0,14,1,0,0,50,171,6,0,0,0,0,0,105,62,0,0,14,1,0,0,146,189,6,0,0,0,0,0,119,62,0,0,14,1,0,0,197,189,6,0,0,0,0,0,130,62,0,0,14,1,0,0,249,197,6,0,0,0,0,0,151,62,0,0,14,1,0,0,253,198,6,0,0,0,0,0,172,62,0,0,14,1,0,0,98,200, 6,0,0,0,0,0,185,62,0,0,14,1,0,0,159,200,6,0,0,0,0,0,197,62,0,0,14,1,0,0,64,201,6,0,0,0,0,0,212,62,0,0,14,1,0,0,251,201,6,0,0,0,0,0,225,62,0,0,14,1,0,0,218,202,6,0,0,0,0,0,239,62,0,0,14,1,0,0,149,203,6,0,0,0,0,0,251,62,0,0,14,1,0,0,180,204,6,0,0,0,0,0, 11,63,0,0,14,1,0,0,182,205,6,0,0,0,0,0,33,63,0,0,14,1,0,0,195,206,6,0,0,0,0,0,51,63,0,0,14,1,0,0,142,207,6,0,0,0,0,0,71,63,0,0,14,1,0,0,239,211,6,0,0,0,0,0,90,63,0,0,14,1,0,0,136,227,6,0,0,0,0,0,105,63,0,0,14,1,0,0,195,227,6,0,0,0,0,0,121,63,0,0,14,1, 0,0,8,228,6,0,0,0,0,0,138,63,0,0,14,1,0,0,75,228,6,0,0,0,0,0,156,63,0,0,14,1,0,0,142,228,6,0,0,0,0,0,171,63,0,0,14,1,0,0,223,228,6,0,0,0,0,0,190,63,0,0,14,1,0,0,64,244,6,0,0,0,0,0,211,63,0,0,14,1,0,0,216,247,6,0,0,0,0,0,231,63,0,0,14,1,0,0,120,251,6, 0,0,0,0,0,252,63,0,0,14,1,0,0,21,253,6,0,0,0,0,0,10,64,0,0,14,1,0,0,163,255,6,0,0,0,0,0,22,64,0,0,14,1,0,0,54,2,7,0,0,0,0,0,43,64,0,0,14,1,0,0,197,13,7,0,0,0,0,0,58,64,0,0,14,1,0,0,215,14,7,0,0,0,0,0,77,64,0,0,14,1,0,0,233,28,7,0,0,0,0,0,98,64,0,0,14, 1,0,0,15,29,7,0,0,0,0,0,119,64,0,0,14,1,0,0,46,30,7,0,0,0,0,0,144,64,0,0,14,1,0,0,52,30,7,0,0,0,0,0,163,64,0,0,14,1,0,0,106,32,7,0,0,0,0,0,188,64,0,0,14,1,0,0,112,32,7,0,0,0,0,0,213,64,0,0,14,1,0,0,118,32,7,0,0,0,0,0,232,64,0,0,14,1,0,0,240,32,7,0,0, 0,0,0,1,65,0,0,14,1,0,0,38,50,7,0,0,0,0,0,19,65,0,0,14,1,0,0,62,52,7,0,0,0,0,0,38,65,0,0,14,1,0,0,135,52,7,0,0,0,0,0,50,65,0,0,14,1,0,0,223,52,7,0,0,0,0,0,67,65,0,0,14,1,0,0,52,53,7,0,0,0,0,0,85,65,0,0,14,1,0,0,97,53,7,0,0,0,0,0,101,65,0,0,14,1,0,0,242, 56,7,0,0,0,0,0,124,65,0,0,14,1,0,0,247,58,7,0,0,0,0,0,147,65,0,0,14,1,0,0,198,62,7,0,0,0,0,0,171,65,0,0,14,1,0,0,74,67,7,0,0,0,0,0,187,65,0,0,14,1,0,0,239,68,7,0,0,0,0,0,209,65,0,0,14,1,0,0,49,69,7,0,0,0,0,0,225,65,0,0,14,1,0,0,50,70,7,0,0,0,0,0,241, 65,0,0,14,1,0,0,20,82,7,0,0,0,0,0,255,65,0,0,14,1,0,0,191,83,7,0,0,0,0,0,16,66,0,0,14,1,0,0,31,90,7,0,0,0,0,0,37,66,0,0,14,1,0,0,69,90,7,0,0,0,0,0,59,66,0,0,14,1,0,0,74,93,7,0,0,0,0,0,73,66,0,0,14,1,0,0,252,93,7,0,0,0,0,0,81,66,0,0,14,1,0,0,159,99,7, 0,0,0,0,0,99,66,0,0,14,1,0,0,40,100,7,0,0,0,0,0,124,66,0,0,14,1,0,0,75,119,7,0,0,0,0,0,143,66,0,0,14,1,0,0,164,125,7,0,0,0,0,0,165,66,0,0,14,1,0,0,133,126,7,0,0,0,0,0,181,66,0,0,14,1,0,0,64,128,7,0,0,0,0,0,203,66,0,0,14,1,0,0,110,128,7,0,0,0,0,0,214, 66,0,0,14,1,0,0,17,130,7,0,0,0,0,0,235,66,0,0,14,1,0,0,21,136,7,0,0,0,0,0,0,67,0,0,14,1,0,0,201,137,7,0,0,0,0,0,18,67,0,0,14,1,0,0,1,148,7,0,0,0,0,0,27,67,0,0,14,1,0,0,27,148,7,0,0,0,0,0,37,67,0,0,14,1,0,0,118,148,7,0,0,0,0,0,46,67,0,0,14,1,0,0,156,154, 7,0,0,0,0,0,58,67,0,0,14,1,0,0,76,155,7,0,0,0,0,0,66,67,0,0,14,1,0,0,250,155,7,0,0,0,0,0,75,67,0,0,14,1,0,0,220,156,7,0,0,0,0,0,86,67,0,0,14,1,0,0,220,157,7,0,0,0,0,0,93,67,0,0,14,1,0,0,187,180,7,0,0,0,0,0,103,67,0,0,14,1,0,0,233,180,7,0,0,0,0,0,115, 67,0,0,14,1,0,0,19,181,7,0,0,0,0,0,125,67,0,0,14,1,0,0,65,181,7,0,0,0,0,0,137,67,0,0,14,1,0,0,107,181,7,0,0,0,0,0,150,67,0,0,14,1,0,0,153,181,7,0,0,0,0,0,165,67,0,0,14,1,0,0,195,181,7,0,0,0,0,0,178,67,0,0,14,1,0,0,241,181,7,0,0,0,0,0,193,67,0,0,14,1, 0,0,27,182,7,0,0,0,0,0,206,67,0,0,14,1,0,0,73,182,7,0,0,0,0,0,221,67,0,0,14,1,0,0,115,182,7,0,0,0,0,0,234,67,0,0,14,1,0,0,161,182,7,0,0,0,0,0,249,67,0,0,14,1,0,0,37,185,7,0,0,0,0,0,5,68,0,0,14,1,0,0,128,185,7,0,0,0,0,0,22,68,0,0,14,1,0,0,160,185,7,0, 0,0,0,0,40,68,0,0,14,1,0,0,209,185,7,0,0,0,0,0,59,68,0,0,14,1,0,0,17,186,7,0,0,0,0,0,77,68,0,0,14,1,0,0,49,186,7,0,0,0,0,0,96,68,0,0,14,1,0,0,104,186,7,0,0,0,0,0,116,68,0,0,14,1,0,0,174,186,7,0,0,0,0,0,134,68,0,0,14,1,0,0,206,186,7,0,0,0,0,0,153,68,0, 0,14,1,0,0,255,186,7,0,0,0,0,0,173,68,0,0,14,1,0,0,63,187,7,0,0,0,0,0,189,68,0,0,14,1,0,0,95,187,7,0,0,0,0,0,206,68,0,0,14,1,0,0,188,187,7,0,0,0,0,0,224,68,0,0,14,1,0,0,40,188,7,0,0,0,0,0,240,68,0,0,14,1,0,0,72,188,7,0,0,0,0,0,1,69,0,0,14,1,0,0,161,188, 7,0,0,0,0,0,19,69,0,0,14,1,0,0,9,189,7,0,0,0,0,0,35,69,0,0,14,1,0,0,41,189,7,0,0,0,0,0,52,69,0,0,14,1,0,0,128,189,7,0,0,0,0,0,70,69,0,0,14,1,0,0,230,189,7,0,0,0,0,0,86,69,0,0,14,1,0,0,6,190,7,0,0,0,0,0,103,69,0,0,14,1,0,0,93,190,7,0,0,0,0,0,121,69,0, 0,14,1,0,0,195,190,7,0,0,0,0,0,133,69,0,0,14,1,0,0,30,191,7,0,0,0,0,0,148,69,0,0,14,1,0,0,62,191,7,0,0,0,0,0,164,69,0,0,14,1,0,0,144,191,7,0,0,0,0,0,181,69,0,0,14,1,0,0,241,191,7,0,0,0,0,0,196,69,0,0,14,1,0,0,17,192,7,0,0,0,0,0,212,69,0,0,14,1,0,0,99, 192,7,0,0,0,0,0,229,69,0,0,14,1,0,0,196,192,7,0,0,0,0,0,244,69,0,0,14,1,0,0,228,192,7,0,0,0,0,0,4,70,0,0,14,1,0,0,52,193,7,0,0,0,0,0,21,70,0,0,14,1,0,0,147,193,7,0,0,0,0,0,36,70,0,0,14,1,0,0,179,193,7,0,0,0,0,0,52,70,0,0,14,1,0,0,3,194,7,0,0,0,0,0,69, 70,0,0,14,1,0,0,98,194,7,0,0,0,0,0,84,70,0,0,14,1,0,0,130,194,7,0,0,0,0,0,100,70,0,0,14,1,0,0,210,194,7,0,0,0,0,0,117,70,0,0,14,1,0,0,49,195,7,0,0,0,0,0,132,70,0,0,14,1,0,0,81,195,7,0,0,0,0,0,148,70,0,0,14,1,0,0,161,195,7,0,0,0,0,0,165,70,0,0,14,1,0, 0,0,196,7,0,0,0,0,0,177,70,0,0,14,1,0,0,91,196,7,0,0,0,0,0,192,70,0,0,14,1,0,0,123,196,7,0,0,0,0,0,208,70,0,0,14,1,0,0,182,196,7,0,0,0,0,0,225,70,0,0,14,1,0,0,0,197,7,0,0,0,0,0,240,70,0,0,14,1,0,0,32,197,7,0,0,0,0,0,0,71,0,0,14,1,0,0,114,197,7,0,0,0, 0,0,17,71,0,0,14,1,0,0,211,197,7,0,0,0,0,0,32,71,0,0,14,1,0,0,243,197,7,0,0,0,0,0,48,71,0,0,14,1,0,0,46,198,7,0,0,0,0,0,65,71,0,0,14,1,0,0,120,198,7,0,0,0,0,0,80,71,0,0,14,1,0,0,152,198,7,0,0,0,0,0,96,71,0,0,14,1,0,0,234,198,7,0,0,0,0,0,113,71,0,0,14, 1,0,0,75,199,7,0,0,0,0,0,128,71,0,0,14,1,0,0,107,199,7,0,0,0,0,0,144,71,0,0,14,1,0,0,168,199,7,0,0,0,0,0,161,71,0,0,14,1,0,0,244,199,7,0,0,0,0,0,176,71,0,0,14,1,0,0,20,200,7,0,0,0,0,0,192,71,0,0,14,1,0,0,81,200,7,0,0,0,0,0,209,71,0,0,14,1,0,0,157,200, 7,0,0,0,0,0,224,71,0,0,14,1,0,0,189,200,7,0,0,0,0,0,240,71,0,0,14,1,0,0,30,201,7,0,0,0,0,0,1,72,0,0,14,1,0,0,142,201,7,0,0,0,0,0,17,72,0,0,14,1,0,0,174,201,7,0,0,0,0,0,34,72,0,0,14,1,0,0,26,202,7,0,0,0,0,0,52,72,0,0,14,1,0,0,64,202,7,0,0,0,0,0,68,72, 0,0,14,1,0,0,96,202,7,0,0,0,0,0,85,72,0,0,14,1,0,0,212,202,7,0,0,0,0,0,103,72,0,0,14,1,0,0,250,202,7,0,0,0,0,0,112,72,0,0,14,1,0,0,40,203,7,0,0,0,0,0,123,72,0,0,14,1,0,0,82,203,7,0,0,0,0,0,132,72,0,0,14,1,0,0,128,203,7,0,0,0,0,0,143,72,0,0,14,1,0,0,170, 203,7,0,0,0,0,0,152,72,0,0,14,1,0,0,216,203,7,0,0,0,0,0,163,72,0,0,14,1,0,0,68,204,7,0,0,0,0,0,173,72,0,0,14,1,0,0,114,204,7,0,0,0,0,0,185,72,0,0,14,1,0,0,156,204,7,0,0,0,0,0,196,72,0,0,14,1,0,0,231,204,7,0,0,0,0,0,209,72,0,0,14,1,0,0,97,205,7,0,0,0, 0,0,219,72,0,0,14,1,0,0,143,205,7,0,0,0,0,0,231,72,0,0,14,1,0,0,225,205,7,0,0,0,0,0,240,72,0,0,14,1,0,0,15,206,7,0,0,0,0,0,251,72,0,0,14,1,0,0,107,206,7,0,0,0,0,0,4,73,0,0,14,1,0,0,153,206,7,0,0,0,0,0,15,73,0,0,14,1,0,0,230,206,7,0,0,0,0,0,24,73,0,0, 14,1,0,0,20,207,7,0,0,0,0,0,35,73,0,0,14,1,0,0,68,207,7,0,0,0,0,0,45,73,0,0,14,1,0,0,114,207,7,0,0,0,0,0,57,73,0,0,14,1,0,0,183,207,7,0,0,0,0,0,67,73,0,0,14,1,0,0,37,208,7,0,0,0,0,0,78,73,0,0,14,1,0,0,175,208,7,0,0,0,0,0,90,73,0,0,14,1,0,0,72,209,7,0, 0,0,0,0,102,73,0,0,14,1,0,0,144,224,7,0,0,0,0,0,113,73,0,0,14,1,0,0,222,224,7,0,0,0,0,0,125,73,0,0,14,1,0,0,10,225,7,0,0,0,0,0,138,73,0,0,14,1,0,0,236,225,7,0,0,0,0,0,151,73,0,0,14,1,0,0,76,226,7,0,0,0,0,0,165,73,0,0,14,1,0,0,106,226,7,0,0,0,0,0,179, 73,0,0,14,1,0,0,142,226,7,0,0,0,0,0,194,73,0,0,14,1,0,0,104,227,7,0,0,0,0,0,208,73,0,0,14,1,0,0,201,227,7,0,0,0,0,0,223,73,0,0,14,1,0,0,236,227,7,0,0,0,0,0,240,73,0,0,14,1,0,0,31,228,7,0,0,0,0,0,3,74,0,0,14,1,0,0,89,228,7,0,0,0,0,0,18,74,0,0,14,1,0,0, 69,229,7,0,0,0,0,0,28,74,0,0,14,1,0,0,133,229,7,0,0,0,0,0,39,74,0,0,14,1,0,0,149,229,7,0,0,0,0,0,50,74,0,0,14,1,0,0,132,230,7,0,0,0,0,0,61,74,0,0,14,1,0,0,180,230,7,0,0,0,0,0,73,74,0,0,14,1,0,0,238,230,7,0,0,0,0,0,86,74,0,0,14,1,0,0,38,231,7,0,0,0,0, 0,100,74,0,0,14,1,0,0,94,231,7,0,0,0,0,0,111,74,0,0,14,1,0,0,164,231,7,0,0,0,0,0,126,74,0,0,14,1,0,0,234,231,7,0,0,0,0,0,136,74,0,0,14,1,0,0,55,232,7,0,0,0,0,0,148,74,0,0,14,1,0,0,42,233,7,0,0,0,0,0,162,74,0,0,14,1,0,0,69,233,7,0,0,0,0,0,177,74,0,0,14, 1,0,0,106,233,7,0,0,0,0,0,193,74,0,0,14,1,0,0,141,233,7,0,0,0,0,0,210,74,0,0,14,1,0,0,176,233,7,0,0,0,0,0,224,74,0,0,14,1,0,0,225,233,7,0,0,0,0,0,242,74,0,0,14,1,0,0,18,234,7,0,0,0,0,0,255,74,0,0,14,1,0,0,91,234,7,0,0,0,0,0,13,75,0,0,14,1,0,0,122,234, 7,0,0,0,0,0,28,75,0,0,14,1,0,0,118,235,7,0,0,0,0,0,40,75,0,0,14,1,0,0,199,235,7,0,0,0,0,0,53,75,0,0,14,1,0,0,19,236,7,0,0,0,0,0,65,75,0,0,14,1,0,0,140,236,7,0,0,0,0,0,78,75,0,0,14,1,0,0,254,236,7,0,0,0,0,0,89,75,0,0,14,1,0,0,40,237,7,0,0,0,0,0,101,75, 0,0,14,1,0,0,67,240,7,0,0,0,0,0,117,75,0,0,14,1,0,0,8,241,7,0,0,0,0,0,129,75,0,0,14,1,0,0,190,243,7,0,0,0,0,0,141,75,0,0,14,1,0,0,232,243,7,0,0,0,0,0,152,75,0,0,14,1,0,0,198,245,7,0,0,0,0,0,162,75,0,0,14,1,0,0,131,248,7,0,0,0,0,0,173,75,0,0,14,1,0,0, 222,249,7,0,0,0,0,0,194,75,0,0,14,1,0,0,12,250,7,0,0,0,0,0,208,75,0,0,14,1,0,0,153,250,7,0,0,0,0,0,220,75,0,0,14,1,0,0,233,250,7,0,0,0,0,0,233,75,0,0,14,1,0,0,58,251,7,0,0,0,0,0,244,75,0,0,14,1,0,0,104,251,7,0,0,0,0,0,3,76,0,0,14,1,0,0,35,252,7,0,0,0, 0,0,14,76,0,0,14,1,0,0,193,252,7,0,0,0,0,0,26,76,0,0,14,1,0,0,147,253,7,0,0,0,0,0,38,76,0,0,14,1,0,0,84,255,7,0,0,0,0,0,51,76,0,0,14,1,0,0,79,0,8,0,0,0,0,0,68,76,0,0,14,1,0,0,10,1,8,0,0,0,0,0,81,76,0,0,14,1,0,0,52,1,8,0,0,0,0,0,95,76,0,0,14,1,0,0,186, 1,8,0,0,0,0,0,108,76,0,0,14,1,0,0,31,4,8,0,0,0,0,0,122,76,0,0,14,1,0,0,114,5,8,0,0,0,0,0,140,76,0,0,14,1,0,0,18,6,8,0,0,0,0,0,154,76,0,0,14,1,0,0,56,6,8,0,0,0,0,0,171,76,0,0,14,1,0,0,112,6,8,0,0,0,0,0,186,76,0,0,14,1,0,0,167,6,8,0,0,0,0,0,202,76,0,0, 14,1,0,0,223,6,8,0,0,0,0,0,216,76,0,0,14,1,0,0,9,7,8,0,0,0,0,0,231,76,0,0,14,1,0,0,5,8,8,0,0,0,0,0,243,76,0,0,14,1,0,0,81,8,8,0,0,0,0,0,0,77,0,0,14,1,0,0,129,8,8,0,0,0,0,0,16,77,0,0,14,1,0,0,185,8,8,0,0,0,0,0,30,77,0,0,14,1,0,0,243,8,8,0,0,0,0,0,45,77, 0,0,14,1,0,0,43,9,8,0,0,0,0,0,58,77,0,0,14,1,0,0,113,9,8,0,0,0,0,0,75,77,0,0,14,1,0,0,183,9,8,0,0,0,0,0,89,77,0,0,14,1,0,0,128,10,8,0,0,0,0,0,100,77,0,0,14,1,0,0,233,10,8,0,0,0,0,0,113,77,0,0,14,1,0,0,51,11,8,0,0,0,0,0,126,77,0,0,14,1,0,0,157,11,8,0, 0,0,0,0,137,77,0,0,14,1,0,0,10,12,8,0,0,0,0,0,149,77,0,0,14,1,0,0,100,12,8,0,0,0,0,0,162,77,0,0,14,1,0,0,219,12,8,0,0,0,0,0,175,77,0,0,14,1,0,0,240,12,8,0,0,0,0,0,188,77,0,0,14,1,0,0,133,13,8,0,0,0,0,0,213,77,0,0,14,1,0,0,189,14,8,0,0,0,0,0,231,77,0, 0,14,1,0,0,63,15,8,0,0,0,0,0,251,77,0,0,14,1,0,0,148,16,8,0,0,0,0,0,16,78,0,0,14,1,0,0,116,17,8,0,0,0,0,0,34,78,0,0,14,1,0,0,155,17,8,0,0,0,0,0,54,78,0,0,14,1,0,0,74,18,8,0,0,0,0,0,64,78,0,0,14,1,0,0,191,18,8,0,0,0,0,0,75,78,0,0,14,1,0,0,249,18,8,0,0, 0,0,0,87,78,0,0,14,1,0,0,198,19,8,0,0,0,0,0,99,78,0,0,14,1,0,0,3,20,8,0,0,0,0,0,112,78,0,0,14,1,0,0,39,20,8,0,0,0,0,0,126,78,0,0,14,1,0,0,109,20,8,0,0,0,0,0,138,78,0,0,14,1,0,0,177,22,8,0,0,0,0,0,149,78,0,0,14,1,0,0,3,23,8,0,0,0,0,0,161,78,0,0,14,1,0, 0,42,23,8,0,0,0,0,0,174,78,0,0,14,1,0,0,70,23,8,0,0,0,0,0,184,78,0,0,14,1,0,0,97,23,8,0,0,0,0,0,197,78,0,0,14,1,0,0,4,27,8,0,0,0,0,0,214,78,0,0,14,1,0,0,245,27,8,0,0,0,0,0,230,78,0,0,14,1,0,0,16,28,8,0,0,0,0,0,247,78,0,0,14,1,0,0,48,28,8,0,0,0,0,0,5, 79,0,0,14,1,0,0,128,28,8,0,0,0,0,0,18,79,0,0,14,1,0,0,199,28,8,0,0,0,0,0,36,79,0,0,14,1,0,0,5,29,8,0,0,0,0,0,50,79,0,0,14,1,0,0,36,29,8,0,0,0,0,0,65,79,0,0,14,1,0,0,61,30,8,0,0,0,0,0,80,79,0,0,14,1,0,0,219,30,8,0,0,0,0,0,98,79,0,0,14,1,0,0,64,31,8,0, 0,0,0,0,114,79,0,0,14,1,0,0,94,31,8,0,0,0,0,0,134,79,0,0,14,1,0,0,129,31,8,0,0,0,0,0,150,79,0,0,14,1,0,0,160,31,8,0,0,0,0,0,167,79,0,0,14,1,0,0,74,32,8,0,0,0,0,0,182,79,0,0,14,1,0,0,248,32,8,0,0,0,0,0,200,79,0,0,14,1,0,0,93,33,8,0,0,0,0,0,216,79,0,0, 14,1,0,0,123,33,8,0,0,0,0,0,236,79,0,0,14,1,0,0,158,33,8,0,0,0,0,0,252,79,0,0,14,1,0,0,189,33,8,0,0,0,0,0,13,80,0,0,14,1,0,0,103,34,8,0,0,0,0,0,22,80,0,0,14,1,0,0,165,34,8,0,0,0,0,0,33,80,0,0,14,1,0,0,202,34,8,0,0,0,0,0,43,80,0,0,14,1,0,0,232,34,8,0, 0,0,0,0,54,80,0,0,14,1,0,0,38,35,8,0,0,0,0,0,67,80,0,0,14,1,0,0,75,35,8,0,0,0,0,0,79,80,0,0,14,1,0,0,105,35,8,0,0,0,0,0,92,80,0,0,14,1,0,0,205,35,8,0,0,0,0,0,106,80,0,0,14,1,0,0,37,36,8,0,0,0,0,0,120,80,0,0,14,1,0,0,67,36,8,0,0,0,0,0,131,80,0,0,14,1, 0,0,219,37,8,0,0,0,0,0,142,80,0,0,14,1,0,0,14,39,8,0,0,0,0,0,154,80,0,0,14,1,0,0,102,39,8,0,0,0,0,0,169,80,0,0,14,1,0,0,194,39,8,0,0,0,0,0,182,80,0,0,14,1,0,0,46,40,8,0,0,0,0,0,194,80,0,0,14,1,0,0,26,41,8,0,0,0,0,0,210,80,0,0,14,1,0,0,157,41,8,0,0,0, 0,0,223,80,0,0,14,1,0,0,94,42,8,0,0,0,0,0,235,80,0,0,14,1,0,0,177,42,8,0,0,0,0,0,247,80,0,0,14,1,0,0,241,42,8,0,0,0,0,0,4,81,0,0,14,1,0,0,156,43,8,0,0,0,0,0,16,81,0,0,14,1,0,0,81,45,8,0,0,0,0,0,32,81,0,0,14,1,0,0,56,47,8,0,0,0,0,0,47,81,0,0,14,1,0,0, 156,47,8,0,0,0,0,0,60,81,0,0,14,1,0,0,96,49,8,0,0,0,0,0,73,81,0,0,14,1,0,0,211,49,8,0,0,0,0,0,90,81,0,0,14,1,0,0,80,50,8,0,0,0,0,0,108,81,0,0,14,1,0,0,186,51,8,0,0,0,0,0,130,81,0,0,14,1,0,0,74,53,8,0,0,0,0,0,148,81,0,0,14,1,0,0,101,53,8,0,0,0,0,0,167, 81,0,0,14,1,0,0,13,54,8,0,0,0,0,0,185,81,0,0,14,1,0,0,138,54,8,0,0,0,0,0,204,81,0,0,14,1,0,0,236,55,8,0,0,0,0,0,227,81,0,0,14,1,0,0,132,57,8,0,0,0,0,0,246,81,0,0,14,1,0,0,159,57,8,0,0,0,0,0,10,82,0,0,14,1,0,0,71,58,8,0,0,0,0,0,26,82,0,0,14,1,0,0,217, 58,8,0,0,0,0,0,43,82,0,0,14,1,0,0,133,59,8,0,0,0,0,0,64,82,0,0,14,1,0,0,144,60,8,0,0,0,0,0,82,82,0,0,14,1,0,0,47,61,8,0,0,0,0,0,97,82,0,0,14,1,0,0,96,61,8,0,0,0,0,0,113,82,0,0,14,1,0,0,201,61,8,0,0,0,0,0,133,82,0,0,14,1,0,0,250,61,8,0,0,0,0,0,150,82, 0,0,14,1,0,0,133,62,8,0,0,0,0,0,167,82,0,0,14,1,0,0,182,62,8,0,0,0,0,0,185,82,0,0,14,1,0,0,225,62,8,0,0,0,0,0,207,82,0,0,14,1,0,0,24,63,8,0,0,0,0,0,226,82,0,0,14,1,0,0,163,63,8,0,0,0,0,0,236,82,0,0,14,1,0,0,104,65,8,0,0,0,0,0,248,82,0,0,14,1,0,0,204, 65,8,0,0,0,0,0,5,83,0,0,14,1,0,0,48,66,8,0,0,0,0,0,18,83,0,0,14,1,0,0,78,66,8,0,0,0,0,0,31,83,0,0,14,1,0,0,178,66,8,0,0,0,0,0,45,83,0,0,14,1,0,0,208,66,8,0,0,0,0,0,59,83,0,0,14,1,0,0,218,68,8,0,0,0,0,0,71,83,0,0,14,1,0,0,117,69,8,0,0,0,0,0,84,83,0,0, 14,1,0,0,82,70,8,0,0,0,0,0,97,83,0,0,14,1,0,0,112,70,8,0,0,0,0,0,111,83,0,0,14,1,0,0,178,71,8,0,0,0,0,0,122,83,0,0,14,1,0,0,176,72,8,0,0,0,0,0,134,83,0,0,14,1,0,0,185,73,8,0,0,0,0,0,146,83,0,0,14,1,0,0,215,73,8,0,0,0,0,0,159,83,0,0,14,1,0,0,25,75,8,0, 0,0,0,0,170,83,0,0,14,1,0,0,153,75,8,0,0,0,0,0,182,83,0,0,14,1,0,0,60,76,8,0,0,0,0,0,194,83,0,0,14,1,0,0,90,76,8,0,0,0,0,0,207,83,0,0,14,1,0,0,125,77,8,0,0,0,0,0,219,83,0,0,14,1,0,0,253,77,8,0,0,0,0,0,232,83,0,0,14,1,0,0,160,78,8,0,0,0,0,0,245,83,0,0, 14,1,0,0,190,78,8,0,0,0,0,0,3,84,0,0,14,1,0,0,221,79,8,0,0,0,0,0,16,84,0,0,14,1,0,0,93,80,8,0,0,0,0,0,30,84,0,0,14,1,0,0,0,81,8,0,0,0,0,0,44,84,0,0,14,1,0,0,30,81,8,0,0,0,0,0,59,84,0,0,14,1,0,0,61,82,8,0,0,0,0,0,76,84,0,0,14,1,0,0,216,82,8,0,0,0,0,0, 94,84,0,0,14,1,0,0,181,83,8,0,0,0,0,0,112,84,0,0,14,1,0,0,211,83,8,0,0,0,0,0,131,84,0,0,14,1,0,0,21,85,8,0,0,0,0,0,146,84,0,0,14,1,0,0,126,85,8,0,0,0,0,0,162,84,0,0,14,1,0,0,231,85,8,0,0,0,0,0,178,84,0,0,14,1,0,0,5,86,8,0,0,0,0,0,195,84,0,0,14,1,0,0, 140,87,8,0,0,0,0,0,215,84,0,0,14,1,0,0,5,88,8,0,0,0,0,0,236,84,0,0,14,1,0,0,110,88,8,0,0,0,0,0,1,85,0,0,14,1,0,0,140,88,8,0,0,0,0,0,23,85,0,0,14,1,0,0,151,89,8,0,0,0,0,0,36,85,0,0,14,1,0,0,232,89,8,0,0,0,0,0,51,85,0,0,14,1,0,0,40,90,8,0,0,0,0,0,66,85, 0,0,14,1,0,0,181,90,8,0,0,0,0,0,79,85,0,0,14,1,0,0,40,91,8,0,0,0,0,0,94,85,0,0,14,1,0,0,147,91,8,0,0,0,0,0,109,85,0,0,14,1,0,0,24,92,8,0,0,0,0,0,121,85,0,0,14,1,0,0,137,92,8,0,0,0,0,0,135,85,0,0,14,1,0,0,244,92,8,0,0,0,0,0,149,85,0,0,14,1,0,0,129,93, 8,0,0,0,0,0,161,85,0,0,14,1,0,0,210,93,8,0,0,0,0,0,175,85,0,0,14,1,0,0,100,94,8,0,0,0,0,0,189,85,0,0,14,1,0,0,233,94,8,0,0,0,0,0,202,85,0,0,14,1,0,0,58,95,8,0,0,0,0,0,217,85,0,0,14,1,0,0,163,95,8,0,0,0,0,0,232,85,0,0,14,1,0,0,40,96,8,0,0,0,0,0,246,85, 0,0,14,1,0,0,121,96,8,0,0,0,0,0,6,86,0,0,14,1,0,0,215,96,8,0,0,0,0,0,22,86,0,0,14,1,0,0,92,97,8,0,0,0,0,0,40,86,0,0,14,1,0,0,202,97,8,0,0,0,0,0,60,86,0,0,14,1,0,0,53,98,8,0,0,0,0,0,80,86,0,0,14,1,0,0,186,98,8,0,0,0,0,0,94,86,0,0,14,1,0,0,90,99,8,0,0, 0,0,0,109,86,0,0,14,1,0,0,25,100,8,0,0,0,0,0,125,86,0,0,14,1,0,0,6,101,8,0,0,0,0,0,140,86,0,0,14,1,0,0,121,101,8,0,0,0,0,0,156,86,0,0,14,1,0,0,198,101,8,0,0,0,0,0,172,86,0,0,14,1,0,0,153,102,8,0,0,0,0,0,187,86,0,0,14,1,0,0,254,102,8,0,0,0,0,0,204,86, 0,0,14,1,0,0,76,103,8,0,0,0,0,0,221,86,0,0,14,1,0,0,162,103,8,0,0,0,0,0,231,86,0,0,14,1,0,0,221,104,8,0,0,0,0,0,243,86,0,0,14,1,0,0,225,108,8,0,0,0,0,0,254,86,0,0,14,1,0,0,132,109,8,0,0,0,0,0,10,87,0,0,14,1,0,0,203,109,8,0,0,0,0,0,21,87,0,0,14,1,0,0, 246,109,8,0,0,0,0,0,33,87,0,0,14,1,0,0,201,110,8,0,0,0,0,0,42,87,0,0,14,1,0,0,32,111,8,0,0,0,0,0,53,87,0,0,14,1,0,0,113,112,8,0,0,0,0,0,64,87,0,0,14,1,0,0,199,112,8,0,0,0,0,0,75,87,0,0,14,1,0,0,7,113,8,0,0,0,0,0,86,87,0,0,14,1,0,0,46,114,8,0,0,0,0,0, 96,87,0,0,14,1,0,0,86,114,8,0,0,0,0,0,108,87,0,0,14,1,0,0,178,114,8,0,0,0,0,0,121,87,0,0,14,1,0,0,140,115,8,0,0,0,0,0,134,87,0,0,14,1,0,0,179,115,8,0,0,0,0,0,148,87,0,0,14,1,0,0,79,116,8,0,0,0,0,0,162,87,0,0,14,1,0,0,125,116,8,0,0,0,0,0,181,87,0,0,14, 1,0,0,165,116,8,0,0,0,0,0,197,87,0,0,14,1,0,0,20,117,8,0,0,0,0,0,213,87,0,0,14,1,0,0,113,117,8,0,0,0,0,0,230,87,0,0,14,1,0,0,166,117,8,0,0,0,0,0,248,87,0,0,14,1,0,0,6,118,8,0,0,0,0,0,6,88,0,0,14,1,0,0,212,118,8,0,0,0,0,0,18,88,0,0,14,1,0,0,37,119,8,0, 0,0,0,0,32,88,0,0,14,1,0,0,143,119,8,0,0,0,0,0,46,88,0,0,14,1,0,0,170,119,8,0,0,0,0,0,61,88,0,0,14,1,0,0,104,120,8,0,0,0,0,0,74,88,0,0,14,1,0,0,219,120,8,0,0,0,0,0,89,88,0,0,14,1,0,0,93,121,8,0,0,0,0,0,104,88,0,0,14,1,0,0,121,121,8,0,0,0,0,0,120,88,0, 0,14,1,0,0,186,121,8,0,0,0,0,0,134,88,0,0,14,1,0,0,45,122,8,0,0,0,0,0,150,88,0,0,14,1,0,0,211,122,8,0,0,0,0,0,163,88,0,0,14,1,0,0,56,123,8,0,0,0,0,0,180,88,0,0,14,1,0,0,18,125,8,0,0,0,0,0,194,88,0,0,14,1,0,0,50,125,8,0,0,0,0,0,214,88,0,0,14,1,0,0,114, 125,8,0,0,0,0,0,228,88,0,0,14,1,0,0,103,127,8,0,0,0,0,0,242,88,0,0,14,1,0,0,126,127,8,0,0,0,0,0,1,89,0,0,14,1,0,0,116,128,8,0,0,0,0,0,20,89,0,0,14,1,0,0,171,128,8,0,0,0,0,0,37,89,0,0,14,1,0,0,114,130,8,0,0,0,0,0,61,89,0,0,14,1,0,0,48,131,8,0,0,0,0,0, 77,89,0,0,14,1,0,0,35,134,8,0,0,0,0,0,94,89,0,0,14,1,0,0,84,134,8,0,0,0,0,0,112,89,0,0,14,1,0,0,212,134,8,0,0,0,0,0,123,89,0,0,14,1,0,0,155,135,8,0,0,0,0,0,137,89,0,0,14,1,0,0,230,135,8,0,0,0,0,0,151,89,0,0,14,1,0,0,199,138,8,0,0,0,0,0,163,89,0,0,14, 1,0,0,250,138,8,0,0,0,0,0,175,89,0,0,14,1,0,0,36,139,8,0,0,0,0,0,187,89,0,0,14,1,0,0,82,139,8,0,0,0,0,0,198,89,0,0,14,1,0,0,169,139,8,0,0,0,0,0,210,89,0,0,14,1,0,0,217,139,8,0,0,0,0,0,223,89,0,0,14,1,0,0,0,140,8,0,0,0,0,0,234,89,0,0,14,1,0,0,54,140,8, 0,0,0,0,0,246,89,0,0,14,1,0,0,245,140,8,0,0,0,0,0,3,90,0,0,14,1,0,0,18,142,8,0,0,0,0,0,16,90,0,0,14,1,0,0,65,142,8,0,0,0,0,0,29,90,0,0,14,1,0,0,52,143,8,0,0,0,0,0,41,90,0,0,14,1,0,0,108,143,8,0,0,0,0,0,55,90,0,0,14,1,0,0,36,144,8,0,0,0,0,0,70,90,0,0, 14,1,0,0,85,145,8,0,0,0,0,0,87,90,0,0,14,1,0,0,106,145,8,0,0,0,0,0,102,90,0,0,14,1,0,0,42,150,8,0,0,0,0,0,114,90,0,0,14,1,0,0,78,150,8,0,0,0,0,0,126,90,0,0,14,1,0,0,105,150,8,0,0,0,0,0,137,90,0,0,14,1,0,0,153,150,8,0,0,0,0,0,150,90,0,0,14,1,0,0,195,150, 8,0,0,0,0,0,162,90,0,0,14,1,0,0,222,150,8,0,0,0,0,0,174,90,0,0,14,1,0,0,249,150,8,0,0,0,0,0,185,90,0,0,14,1,0,0,145,151,8,0,0,0,0,0,198,90,0,0,14,1,0,0,159,152,8,0,0,0,0,0,210,90,0,0,14,1,0,0,230,152,8,0,0,0,0,0,223,90,0,0,14,1,0,0,41,153,8,0,0,0,0,0, 235,90,0,0,14,1,0,0,72,153,8,0,0,0,0,0,247,90,0,0,14,1,0,0,98,153,8,0,0,0,0,0,2,91,0,0,14,1,0,0,151,153,8,0,0,0,0,0,14,91,0,0,14,1,0,0,178,153,8,0,0,0,0,0,25,91,0,0,14,1,0,0,85,154,8,0,0,0,0,0,38,91,0,0,14,1,0,0,57,155,8,0,0,0,0,0,49,91,0,0,14,1,0,0, 110,156,8,0,0,0,0,0,61,91,0,0,14,1,0,0,85,158,8,0,0,0,0,0,71,91,0,0,14,1,0,0,125,158,8,0,0,0,0,0,82,91,0,0,14,1,0,0,166,158,8,0,0,0,0,0,92,91,0,0,14,1,0,0,222,158,8,0,0,0,0,0,103,91,0,0,14,1,0,0,249,158,8,0,0,0,0,0,113,91,0,0,14,1,0,0,246,159,8,0,0,0, 0,0,125,91,0,0,14,1,0,0,1,161,8,0,0,0,0,0,137,91,0,0,14,1,0,0,29,161,8,0,0,0,0,0,150,91,0,0,14,1,0,0,74,161,8,0,0,0,0,0,161,91,0,0,14,1,0,0,194,161,8,0,0,0,0,0,174,91,0,0,14,1,0,0,88,162,8,0,0,0,0,0,184,91,0,0,14,1,0,0,162,166,8,0,0,0,0,0,195,91,0,0, 14,1,0,0,58,167,8,0,0,0,0,0,206,91,0,0,14,1,0,0,190,168,8,0,0,0,0,0,217,91,0,0,14,1,0,0,185,171,8,0,0,0,0,0,229,91,0,0,14,1,0,0,227,171,8,0,0,0,0,0,241,91,0,0,14,1,0,0,31,172,8,0,0,0,0,0,253,91,0,0,14,1,0,0,145,178,8,0,0,0,0,0,11,92,0,0,14,1,0,0,197, 178,8,0,0,0,0,0,26,92,0,0,14,1,0,0,3,179,8,0,0,0,0,0,42,92,0,0,14,1,0,0,66,179,8,0,0,0,0,0,59,92,0,0,14,1,0,0,80,179,8,0,0,0,0,0,73,92,0,0,14,1,0,0,150,179,8,0,0,0,0,0,91,92,0,0,14,1,0,0,228,179,8,0,0,0,0,0,110,92,0,0,14,1,0,0,16,181,8,0,0,0,0,0,122, 92,0,0,14,1,0,0,71,184,8,0,0,0,0,0,143,92,0,0,14,1,0,0,115,184,8,0,0,0,0,0,164,92,0,0,14,4,0,0,224,85,9,0,0,0,0,0,181,92,0,0,14,4,0,0,0,86,9,0,0,0,0,0,203,92,0,0,14,4,0,0,72,87,9,0,0,0,0,0,219,92,0,0,14,4,0,0,76,87,9,0,0,0,0,0,235,92,0,0,30,5,0,0,80, 87,9,0,0,0,0,0,249,92,0,0,14,10,0,0,88,53,11,0,0,0,0,0,13,93,0,0,14,10,0,0,96,53,11,0,0,0,0,0,34,93,0,0,14,10,0,0,128,53,11,0,0,0,0,0,46,93,0,0,14,10,0,0,0,54,11,0,0,0,0,0,69,93,0,0,14,10,0,0,64,55,11,0,0,0,0,0,91,93,0,0,14,10,0,0,128,55,11,0,0,0,0,0, 109,93,0,0,14,10,0,0,32,57,11,0,0,0,0,0,118,93,0,0,14,10,0,0,128,57,11,0,0,0,0,0,134,93,0,0,14,10,0,0,176,57,11,0,0,0,0,0,143,93,0,0,14,10,0,0,224,57,11,0,0,0,0,0,157,93,0,0,14,10,0,0,160,59,11,0,0,0,0,0,165,93,0,0,14,10,0,0,0,60,11,0,0,0,0,0,173,93, 0,0,14,10,0,0,96,60,11,0,0,0,0,0,181,93,0,0,14,10,0,0,192,60,11,0,0,0,0,0,189,93,0,0,14,10,0,0,32,61,11,0,0,0,0,0,197,93,0,0,14,10,0,0,112,61,11,0,0,0,0,0,208,93,0,0,14,10,0,0,116,61,11,0,0,0,0,0,221,93,0,0,14,10,0,0,128,66,11,0,0,0,0,0,247,93,0,0,14, 10,0,0,40,67,11,0,0,0,0,0,17,94,0,0,14,10,0,0,132,67,11,0,0,0,0,0,34,94,0,0,14,10,0,0,192,67,11,0,0,0,0,0,53,94,0,0,14,10,0,0,224,67,11,0,0,0,0,0,62,94,0,0,14,10,0,0,40,68,11,0,0,0,0,0,78,94,0,0,14,10,0,0,64,68,11,0,0,0,0,0,89,94,0,0,14,10,0,0,140,68, 11,0,0,0,0,0,108,94,0,0,14,10,0,0,144,68,11,0,0,0,0,0,128,94,0,0,14,10,0,0,160,68,11,0,0,0,0,0,145,94,0,0,14,10,0,0,0,69,11,0,0,0,0,0,160,94,0,0,14,10,0,0,7,69,11,0,0,0,0,0,176,94,0,0,14,10,0,0,80,70,11,0,0,0,0,0,190,94,0,0,14,10,0,0,84,70,11,0,0,0,0, 0,205,94,0,0,14,10,0,0,88,70,11,0,0,0,0,0,216,94,0,0,14,10,0,0,92,70,11,0,0,0,0,0,228,94,0,0,14,10,0,0,96,70,11,0,0,0,0,0,242,94,0,0,14,10,0,0,4,71,11,0,0,0,0,0,8,95,0,0,14,11,0,0,128,71,11,0,0,0,0,0,20,95,0,0,14,11,0,0,136,71,11,0,0,0,0,0,38,95,0,0, 14,11,0,0,144,71,11,0,0,0,0,0,51,95,0,0,14,11,0,0,152,71,11,0,0,0,0,0,70,95,0,0,14,11,0,0,160,71,11,0,0,0,0,0,83,95,0,0,14,11,0,0,168,71,11,0,0,0,0,0,102,95,0,0,14,11,0,0,176,71,11,0,0,0,0,0,114,95,0,0,14,11,0,0,184,71,11,0,0,0,0,0,132,95,0,0,14,11,0, 0,192,71,11,0,0,0,0,0,143,95,0,0,14,11,0,0,200,71,11,0,0,0,0,0,160,95,0,0,14,11,0,0,208,71,11,0,0,0,0,0,171,95,0,0,14,11,0,0,216,71,11,0,0,0,0,0,188,95,0,0,14,11,0,0,224,71,11,0,0,0,0,0,200,95,0,0,14,11,0,0,232,71,11,0,0,0,0,0,222,95,0,0,14,11,0,0,240, 71,11,0,0,0,0,0,243,95,0,0,14,11,0,0,248,71,11,0,0,0,0,0,8,96,0,0,14,11,0,0,0,72,11,0,0,0,0,0,30,96,0,0,14,11,0,0,8,72,11,0,0,0,0,0,51,96,0,0,14,11,0,0,16,72,11,0,0,0,0,0,66,96,0,0,14,11,0,0,24,72,11,0,0,0,0,0,84,96,0,0,14,11,0,0,32,72,11,0,0,0,0,0,99, 96,0,0,14,11,0,0,40,72,11,0,0,0,0,0,115,96,0,0,14,11,0,0,48,72,11,0,0,0,0,0,131,96,0,0,14,11,0,0,56,72,11,0,0,0,0,0,148,96,0,0,14,11,0,0,64,72,11,0,0,0,0,0,166,96,0,0,14,11,0,0,72,72,11,0,0,0,0,0,185,96,0,0,14,11,0,0,80,72,11,0,0,0,0,0,207,96,0,0,14, 11,0,0,88,72,11,0,0,0,0,0,230,96,0,0,14,11,0,0,96,72,11,0,0,0,0,0,253,96,0,0,14,11,0,0,104,72,11,0,0,0,0,0,8,97,0,0,14,11,0,0,112,72,11,0,0,0,0,0,19,97,0,0,14,11,0,0,120,72,11,0,0,0,0,0,33,97,0,0,14,11,0,0,128,72,11,0,0,0,0,0,52,97,0,0,14,11,0,0,136, 72,11,0,0,0,0,0,70,97,0,0,14,11,0,0,144,72,11,0,0,0,0,0,83,97,0,0,14,11,0,0,152,72,11,0,0,0,0,0,97,97,0,0,14,11,0,0,160,72,11,0,0,0,0,0,112,97,0,0,14,11,0,0,168,72,11,0,0,0,0,0,127,97,0,0,14,11,0,0,176,72,11,0,0,0,0,0,143,97,0,0,14,11,0,0,184,72,11,0, 0,0,0,0,159,97,0,0,14,11,0,0,192,72,11,0,0,0,0,0,169,97,0,0,14,11,0,0,200,72,11,0,0,0,0,0,184,97,0,0,14,11,0,0,208,72,11,0,0,0,0,0,202,97,0,0,14,11,0,0,216,72,11,0,0,0,0,0,218,97,0,0,14,11,0,0,224,72,11,0,0,0,0,0,234,97,0,0,14,11,0,0,0,73,11,0,0,0,0, 0,246,97,0,0,14,11,0,0,32,73,11,0,0,0,0,0,4,98,0,0,14,11,0,0,32,77,11,0,0,0,0,0,23,98,0,0,14,11,0,0,32,93,11,0,0,0,0,0,39,98,0,0,14,11,0,0,40,93,11,0,0,0,0,0,54,98,0,0,14,11,0,0,48,93,11,0,0,0,0,0,71,98,0,0,14,11,0,0,56,93,11,0,0,0,0,0,88,98,0,0,14,11, 0,0,64,93,11,0,0,0,0,0,105,98,0,0,14,11,0,0,72,93,11,0,0,0,0,0,122,98,0,0,14,11,0,0,80,93,11,0,0,0,0,0,135,98,0,0,14,11,0,0,88,93,11,0,0,0,0,0,153,98,0,0,14,11,0,0,96,93,11,0,0,0,0,0,167,98,0,0,14,11,0,0,104,93,11,0,0,0,0,0,187,98,0,0,14,11,0,0,112,93, 11,0,0,0,0,0,198,98,0,0,14,11,0,0,120,93,11,0,0,0,0,0,209,98,0,0,14,11,0,0,128,93,11,0,0,0,0,0,226,98,0,0,14,11,0,0,136,93,11,0,0,0,0,0,239,98,0,0,14,11,0,0,144,93,11,0,0,0,0,0,1,99,0,0,14,11,0,0,152,93,11,0,0,0,0,0,15,99,0,0,14,11,0,0,160,93,11,0,0, 0,0,0,30,99,0,0,14,11,0,0,192,93,11,0,0,0,0,0,43,99,0,0,14,11,0,0,196,93,11,0,0,0,0,0,54,99,0,0,14,11,0,0,200,93,11,0,0,0,0,0,65,99,0,0,14,11,0,0,208,93,11,0,0,0,0,0,80,99,0,0,14,11,0,0,212,93,11,0,0,0,0,0,91,99,0,0,14,11,0,0,216,93,11,0,0,0,0,0,104, 99,0,0,14,11,0,0,224,93,11,0,0,0,0,0,121,99,0,0,14,11,0,0,232,94,11,0,0,0,0,0,142,99,0,0,14,11,0,0,240,94,11,0,0,0,0,0,159,99,0,0,14,11,0,0,248,94,11,0,0,0,0,0,180,99,0,0,14,11,0,0,0,95,11,0,0,0,0,0,204,99,0,0,14,11,0,0,8,95,11,0,0,0,0,0,212,99,0,0,14, 11,0,0,12,95,11,0,0,0,0,0,225,99,0,0,14,11,0,0,16,95,11,0,0,0,0,0,253,99,0,0,14,11,0,0,24,95,11,0,0,0,0,0,23,100,0,0,14,11,0,0,28,95,11,0,0,0,0,0,49,100,0,0,14,11,0,0,32,95,11,0,0,0,0,0,70,100,0,0,14,11,0,0,40,95,11,0,0,0,0,0,91,100,0,0,14,11,0,0,48, 95,11,0,0,0,0,0,111,100,0,0,14,11,0,0,56,95,11,0,0,0,0,0,132,100,0,0,14,11,0,0,64,95,11,0,0,0,0,0,152,100,0,0,14,11,0,0,72,95,11,0,0,0,0,0,169,100,0,0,14,11,0,0,80,95,11,0,0,0,0,0,192,100,0,0,14,11,0,0,88,95,11,0,0,0,0,0,214,100,0,0,14,11,0,0,92,95,11, 0,0,0,0,0,237,100,0,0,14,11,0,0,96,95,11,0,0,0,0,0,2,101,0,0,14,11,0,0,100,95,11,0,0,0,0,0,22,101,0,0,14,11,0,0,104,95,11,0,0,0,0,0,44,101,0,0,14,11,0,0,108,95,11,0,0,0,0,0,66,101,0,0,14,11,0,0,112,95,11,0,0,0,0,0,86,101,0,0,14,11,0,0,116,95,11,0,0,0, 0,0,107,101,0,0,14,11,0,0,120,95,11,0,0,0,0,0,118,101,0,0,14,11,0,0,128,95,11,0,0,0,0,0,131,101,0,0,14,11,0,0,132,95,11,0,0,0,0,0,141,101,0,0,14,11,0,0,136,95,11,0,0,0,0,0,157,101,0,0,14,11,0,0,144,95,11,0,0,0,0,0,173,101,0,0,14,11,0,0,152,95,11,0,0, 0,0,0,188,101,0,0,14,11,0,0,160,95,11,0,0,0,0,0,202,101,0,0,14,11,0,0,164,95,11,0,0,0,0,0,218,101,0,0,14,11,0,0,168,95,11,0,0,0,0,0,229,101,0,0,14,11,0,0,176,95,11,0,0,0,0,0,246,101,0,0,14,11,0,0,184,95,11,0,0,0,0,0,5,102,0,0,14,11,0,0,192,95,11,0,0, 0,0,0,21,102,0,0,14,11,0,0,200,95,11,0,0,0,0,0,34,102,0,0,14,11,0,0,208,95,11,0,0,0,0,0,54,102,0,0,14,11,0,0,216,95,11,0,0,0,0,0,78,102,0,0,14,11,0,0,224,95,11,0,0,0,0,0,94,102,0,0,14,11,0,0,232,95,11,0,0,0,0,0,116,102,0,0,14,11,0,0,240,95,11,0,0,0,0, 0,133,102,0,0,14,11,0,0,248,95,11,0,0,0,0,0,153,102,0,0,14,11,0,0,0,96,11,0,0,0,0,0,171,102,0,0,14,11,0,0,8,96,11,0,0,0,0,0,201,102,0,0,14,11,0,0,16,96,11,0,0,0,0,0,221,102,0,0,14,11,0,0,24,96,11,0,0,0,0,0,233,102,0,0,14,11,0,0,28,96,11,0,0,0,0,0,245, 102,0,0,14,11,0,0,32,96,11,0,0,0,0,0,9,103,0,0,14,11,0,0,36,96,11,0,0,0,0,0,29,103,0,0,14,11,0,0,40,96,11,0,0,0,0,0,52,103,0,0,14,11,0,0,48,96,11,0,0,0,0,0,68,103,0,0,14,11,0,0,56,96,11,0,0,0,0,0,81,103,0,0,14,11,0,0,64,96,11,0,0,0,0,0,95,103,0,0,14, 11,0,0,72,96,11,0,0,0,0,0,114,103,0,0,14,11,0,0,80,96,11,0,0,0,0,0,135,103,0,0,14,11,0,0,84,96,11,0,0,0,0,0,156,103,0,0,14,11,0,0,88,96,11,0,0,0,0,0,172,103,0,0,14,11,0,0,92,96,11,0,0,0,0,0,188,103,0,0,14,11,0,0,96,96,11,0,0,0,0,0,206,103,0,0,14,11,0, 0,104,96,11,0,0,0,0,0,220,103,0,0,14,11,0,0,112,96,11,0,0,0,0,0,238,103,0,0,14,11,0,0,120,96,11,0,0,0,0,0,253,103,0,0,14,11,0,0,128,96,11,0,0,0,0,0,2,104,0,0,14,11,0,0,136,96,11,0,0,0,0,0,19,104,0,0,14,11,0,0,144,96,11,0,0,0,0,0,36,104,0,0,14,11,0,0, 152,96,11,0,0,0,0,0,51,104,0,0,14,11,0,0,160,96,11,0,0,0,0,0,66,104,0,0,14,11,0,0,176,96,11,0,0,0,0,0,79,104,0,0,14,11,0,0,184,96,11,0,0,0,0,0,96,104,0,0,14,11,0,0,192,96,11,0,0,0,0,0,112,104,0,0,14,11,0,0,200,96,11,0,0,0,0,0,132,104,0,0,14,11,0,0,204, 96,11,0,0,0,0,0,158,104,0,0,14,11,0,0,208,96,11,0,0,0,0,0,178,104,0,0,14,11,0,0,212,96,11,0,0,0,0,0,197,104,0,0,14,11,0,0,216,96,11,0,0,0,0,0,223,104,0,0,14,11,0,0,220,96,11,0,0,0,0,0,243,104,0,0,14,11,0,0,224,96,11,0,0,0,0,0,6,105,0,0,14,11,0,0,232, 96,11,0,0,0,0,0,26,105,0,0,14,11,0,0,240,96,11,0,0,0,0,0,47,105,0,0,14,11,0,0,248,96,11,0,0,0,0,0,67,105,0,0,14,11,0,0,0,97,11,0,0,0,0,0,84,105,0,0,14,11,0,0,8,97,11,0,0,0,0,0,107,105,0,0,14,11,0,0,16,97,11,0,0,0,0,0,130,105,0,0,14,11,0,0,40,97,11,0, 0,0,0,0,161,105,0,0,14,11,0,0,48,97,11,0,0,0,0,0,186,105,0,0,14,11,0,0,56,97,11,0,0,0,0,0,212,105,0,0,14,11,0,0,64,97,11,0,0,0,0,0,237,105,0,0,14,11,0,0,72,97,11,0,0,0,0,0,3,106,0,0,14,11,0,0,80,97,11,0,0,0,0,0,31,106,0,0,14,11,0,0,96,97,11,0,0,0,0,0, 59,106,0,0,14,11,0,0,120,97,11,0,0,0,0,0,85,106,0,0,14,11,0,0,124,97,11,0,0,0,0,0,113,106,0,0,14,11,0,0,128,97,11,0,0,0,0,0,128,106,0,0,14,11,0,0,136,97,11,0,0,0,0,0,141,106,0,0,14,11,0,0,144,97,11,0,0,0,0,0,162,106,0,0,14,11,0,0,152,97,11,0,0,0,0,0, 176,106,0,0,14,11,0,0,160,97,11,0,0,0,0,0,190,106,0,0,14,11,0,0,168,97,11,0,0,0,0,0,201,106,0,0,14,11,0,0,176,97,11,0,0,0,0,0,212,106,0,0,14,11,0,0,184,97,11,0,0,0,0,0,224,106,0,0,14,11,0,0,192,97,11,0,0,0,0,0,239,106,0,0,14,11,0,0,200,97,11,0,0,0,0, 0,254,106,0,0,14,11,0,0,208,97,11,0,0,0,0,0,12,107,0,0,14,11,0,0,216,97,11,0,0,0,0,0,27,107,0,0,14,11,0,0,224,97,11,0,0,0,0,0,41,107,0,0,14,11,0,0,232,97,11,0,0,0,0,0,59,107,0,0,14,11,0,0,240,97,11,0,0,0,0,0,74,107,0,0,14,11,0,0,248,97,11,0,0,0,0,0,84, 107,0,0,14,11,0,0,0,98,11,0,0,0,0,0,99,107,0,0,14,11,0,0,32,98,11,0,0,0,0,0,108,107,0,0,14,11,0,0,32,130,11,0,0,0,0,0,123,107,0,0,14,11,0,0,40,130,11,0,0,0,0,0,133,107,0,0,14,11,0,0,48,130,11,0,0,0,0,0,145,107,0,0,14,11,0,0,56,130,11,0,0,0,0,0,158,107, 0,0,14,11,0,0,64,130,11,0,0,0,0,0,178,107,0,0,14,11,0,0,72,130,11,0,0,0,0,0,196,107,0,0,14,11,0,0,80,130,11,0,0,0,0,0,215,107,0,0,14,11,0,0,88,130,11,0,0,0,0,0,231,107,0,0,14,11,0,0,96,130,11,0,0,0,0,0,244,107,0,0,14,11,0,0,104,130,11,0,0,0,0,0,4,108, 0,0,14,11,0,0,112,130,11,0,0,0,0,0,16,108,0,0,14,11,0,0,120,130,11,0,0,0,0,0,39,108,0,0,14,11,0,0,128,130,11,0,0,0,0,0,56,108,0,0,14,11,0,0,132,130,11,0,0,0,0,0,69,108,0,0,14,11,0,0,136,130,11,0,0,0,0,0,94,108,0,0,14,11,0,0,140,130,11,0,0,0,0,0,124,108, 0,0,14,11,0,0,144,130,11,0,0,0,0,0,139,108,0,0,14,11,0,0,152,130,11,0,0,0,0,0,149,108,0,0,14,11,0,0,160,130,11,0,0,0,0,0,164,108,0,0,14,11,0,0,8,132,11,0,0,0,0,0,178,108,0,0,14,11,0,0,16,132,11,0,0,0,0,0,192,108,0,0,14,11,0,0,20,132,11,0,0,0,0,0,207, 108,0,0,14,11,0,0,24,132,11,0,0,0,0,0,225,108,0,0,14,11,0,0,28,132,11,0,0,0,0,0,240,108,0,0,14,11,0,0,32,132,11,0,0,0,0,0,252,108,0,0,14,11,0,0,192,132,11,0,0,0,0,0,10,109,0,0,14,11,0,0,196,132,11,0,0,0,0,0,28,109,0,0,14,11,0,0,200,132,11,0,0,0,0,0,44, 109,0,0,14,11,0,0,204,132,11,0,0,0,0,0,62,109,0,0,14,11,0,0,208,132,11,0,0,0,0,0,81,109,0,0,14,11,0,0,212,132,11,0,0,0,0,0,97,109,0,0,14,11,0,0,216,132,11,0,0,0,0,0,114,109,0,0,14,11,0,0,224,132,11,0,0,0,0,0,139,109,0,0,14,11,0,0,232,132,11,0,0,0,0,0, 167,109,0,0,14,11,0,0,240,132,11,0,0,0,0,0,181,109,0,0,14,11,0,0,244,132,11,0,0,0,0,0,193,109,0,0,14,11,0,0,248,132,11,0,0,0,0,0,204,109,0,0,14,11,0,0,252,132,11,0,0,0,0,0,216,109,0,0,14,11,0,0,0,133,11,0,0,0,0,0,229,109,0,0,14,11,0,0,16,133,11,0,0,0, 0,0,247,109,0,0,14,11,0,0,32,133,11,0,0,0,0,0,11,110,0,0,14,11,0,0,48,133,11,0,0,0,0,0,30,110,0,0,14,11,0,0,64,133,11,0,0,0,0,0,51,110,0,0,14,11,0,0,80,133,11,0,0,0,0,0,63,110,0,0,14,11,0,0,84,133,11,0,0,0,0,0,78,110,0,0,14,11,0,0,88,133,11,0,0,0,0,0, 94,110,0,0,14,11,0,0,92,133,11,0,0,0,0,0,118,110,0,0,14,11,0,0,96,133,11,0,0,0,0,0,137,110,0,0,14,11,0,0,100,133,11,0,0,0,0,0,157,110,0,0,14,11,0,0,112,133,11,0,0,0,0,0,168,110,0,0,14,11,0,0,128,133,11,0,0,0,0,0,182,110,0,0,14,11,0,0,132,133,11,0,0,0, 0,0,198,110,0,0,14,11,0,0,136,133,11,0,0,0,0,0,211,110,0,0,14,11,0,0,144,133,11,0,0,0,0,0,223,110,0,0,14,11,0,0,152,133,11,0,0,0,0,0,234,110,0,0,14,11,0,0,156,133,11,0,0,0,0,0,247,110,0,0,14,11,0,0,160,133,11,0,0,0,0,0,1,111,0,0,14,11,0,0,168,133,11, 0,0,0,0,0,21,111,0,0,14,11,0,0,176,133,11,0,0,0,0,0,39,111,0,0,14,11,0,0,184,133,11,0,0,0,0,0,51,111,0,0,14,11,0,0,192,133,11,0,0,0,0,0,67,111,0,0,14,11,0,0,196,133,11,0,0,0,0,0,83,111,0,0,14,11,0,0,200,133,11,0,0,0,0,0,99,111,0,0,14,11,0,0,204,133,11, 0,0,0,0,0,119,111,0,0,14,11,0,0,208,133,11,0,0,0,0,0,143,111,0,0,14,11,0,0,212,133,11,0,0,0,0,0,156,111,0,0,14,11,0,0,216,133,11,0,0,0,0,0,168,111,0,0,14,11,0,0,224,133,11,0,0,0,0,0,178,111,0,0,14,11,0,0,232,133,11,0,0,0,0,0,192,111,0,0,14,11,0,0,240, 133,11,0,0,0,0,0,209,111,0,0,14,11,0,0,248,133,11,0,0,0,0,0,222,111,0,0,14,11,0,0,252,133,11,0,0,0,0,0,238,111,0,0,14,11,0,0,0,134,11,0,0,0,0,0,0,112,0,0,14,11,0,0,4,134,11,0,0,0,0,0,19,112,0,0,14,11,0,0,8,134,11,0,0,0,0,0,35,112,0,0,14,11,0,0,12,134, 11,0,0,0,0,0,46,112,0,0,14,11,0,0,16,134,11,0,0,0,0,0,66,112,0,0,14,11,0,0,32,134,11,0,0,0,0,0,87,112,0,0,14,11,0,0,48,134,11,0,0,0,0,0,101,112,0,0,14,11,0,0,64,134,11,0,0,0,0,0,116,112,0,0,14,11,0,0,96,134,11,0,0,0,0,0,129,112,0,0,14,11,0,0,104,134, 11,0,0,0,0,0,143,112,0,0,14,11,0,0,128,134,11,0,0,0,0,0,157,112,0,0,14,11,0,0,128,135,11,0,0,0,0,0,168,112,0,0,14,11,0,0,136,135,11,0,0,0,0,0,179,112,0,0,14,11,0,0,144,135,11,0,0,0,0,0,191,112,0,0,14,11,0,0,152,135,11,0,0,0,0,0,203,112,0,0,14,11,0,0, 160,135,11,0,0,0,0,0,218,112,0,0,14,11,0,0,168,135,11,0,0,0,0,0,233,112,0,0,14,11,0,0,176,135,11,0,0,0,0,0,248,112,0,0,14,11,0,0,184,135,11,0,0,0,0,0,7,113,0,0,14,11,0,0,192,135,11,0,0,0,0,0,26,113,0,0,14,11,0,0,200,135,11,0,0,0,0,0,46,113,0,0,14,11, 0,0,208,135,11,0,0,0,0,0,66,113,0,0,14,11,0,0,216,135,11,0,0,0,0,0,84,113,0,0,14,11,0,0,224,135,11,0,0,0,0,0,102,113,0,0,14,11,0,0,232,135,11,0,0,0,0,0,120,113,0,0,14,11,0,0,240,135,11,0,0,0,0,0,138,113,0,0,14,11,0,0,248,135,11,0,0,0,0,0,155,113,0,0, 14,11,0,0,0,136,11,0,0,0,0,0,172,113,0,0,14,11,0,0,8,136,11,0,0,0,0,0,189,113,0,0,14,11,0,0,16,136,11,0,0,0,0,0,206,113,0,0,14,11,0,0,24,136,11,0,0,0,0,0,223,113,0,0,14,11,0,0,32,136,11,0,0,0,0,0,240,113,0,0,14,11,0,0,40,136,11,0,0,0,0,0,1,114,0,0,14, 11,0,0,48,136,11,0,0,0,0,0,18,114,0,0,14,11,0,0,56,136,11,0,0,0,0,0,35,114,0,0,14,11,0,0,64,136,11,0,0,0,0,0,52,114,0,0,14,11,0,0,72,136,11,0,0,0,0,0,69,114,0,0,14,11,0,0,80,136,11,0,0,0,0,0,86,114,0,0,14,11,0,0,88,136,11,0,0,0,0,0,103,114,0,0,14,11, 0,0,96,136,11,0,0,0,0,0,121,114,0,0,14,11,0,0,104,136,11,0,0,0,0,0,139,114,0,0,14,11,0,0,112,136,11,0,0,0,0,0,150,114,0,0,14,11,0,0,120,136,11,0,0,0,0,0,161,114,0,0,14,11,0,0,128,136,11,0,0,0,0,0,172,114,0,0,14,11,0,0,136,136,11,0,0,0,0,0,184,114,0,0, 14,11,0,0,144,136,11,0,0,0,0,0,197,114,0,0,14,11,0,0,152,136,11,0,0,0,0,0,209,114,0,0,14,11,0,0,160,136,11,0,0,0,0,0,220,114,0,0,14,11,0,0,168,136,11,0,0,0,0,0,231,114,0,0,14,11,0,0,176,136,11,0,0,0,0,0,242,114,0,0,14,11,0,0,184,136,11,0,0,0,0,0,254, 114,0,0,14,11,0,0,192,136,11,0,0,0,0,0,10,115,0,0,14,11,0,0,200,136,11,0,0,0,0,0,23,115,0,0,14,11,0,0,208,136,11,0,0,0,0,0,38,115,0,0,14,11,0,0,216,136,11,0,0,0,0,0,54,115,0,0,14,11,0,0,224,136,11,0,0,0,0,0,66,115,0,0,14,11,0,0,232,136,11,0,0,0,0,0,78, 115,0,0,14,11,0,0,240,136,11,0,0,0,0,0,93,115,0,0,14,11,0,0,248,136,11,0,0,0,0,0,105,115,0,0,14,11,0,0,0,137,11,0,0,0,0,0,117,115,0,0,14,11,0,0,8,137,11,0,0,0,0,0,130,115,0,0,14,11,0,0,16,137,11,0,0,0,0,0,142,115,0,0,14,11,0,0,24,137,11,0,0,0,0,0,156, 115,0,0,14,11,0,0,32,137,11,0,0,0,0,0,171,115,0,0,14,11,0,0,40,137,11,0,0,0,0,0,185,115,0,0,14,11,0,0,48,137,11,0,0,0,0,0,198,115,0,0,14,11,0,0,56,137,11,0,0,0,0,0,211,115,0,0,14,11,0,0,64,137,11,0,0,0,0,0,231,115,0,0,14,11,0,0,72,137,11,0,0,0,0,0,243, 115,0,0,14,11,0,0,80,137,11,0,0,0,0,0,1,116,0,0,14,11,0,0,88,137,11,0,0,0,0,0,14,116,0,0,14,11,0,0,96,137,11,0,0,0,0,0,29,116,0,0,14,11,0,0,104,137,11,0,0,0,0,0,44,116,0,0,14,11,0,0,112,137,11,0,0,0,0,0,58,116,0,0,14,11,0,0,120,137,11,0,0,0,0,0,74,116, 0,0,14,11,0,0,128,137,11,0,0,0,0,0,91,116,0,0,14,11,0,0,136,137,11,0,0,0,0,0,108,116,0,0,14,11,0,0,144,137,11,0,0,0,0,0,117,116,0,0,14,11,0,0,152,137,11,0,0,0,0,0,128,116,0,0,14,11,0,0,160,137,11,0,0,0,0,0,141,116,0,0,14,11,0,0,168,137,11,0,0,0,0,0,152, 116,0,0,14,11,0,0,176,137,11,0,0,0,0,0,165,116,0,0,14,11,0,0,184,137,11,0,0,0,0,0,180,116,0,0,14,11,0,0,192,137,11,0,0,0,0,0,193,116,0,0,14,11,0,0,200,137,11,0,0,0,0,0,205,116,0,0,14,11,0,0,204,137,11,0,0,0,0,0,216,116,0,0,14,11,0,0,208,137,11,0,0,0, 0,0,228,116,0,0,14,11,0,0,216,137,11,0,0,0,0,0,241,116,0,0,14,11,0,0,224,137,11,0,0,0,0,0,255,116,0,0,14,11,0,0,232,137,11,0,0,0,0,0,14,117,0,0,14,11,0,0,240,137,11,0,0,0,0,0,26,117,0,0,14,11,0,0,248,137,11,0,0,0,0,0,40,117,0,0,14,11,0,0,0,138,11,0,0, 0,0,0,51,117,0,0,14,11,0,0,8,138,11,0,0,0,0,0,64,117,0,0,14,11,0,0,16,138,11,0,0,0,0,0,75,117,0,0,14,11,0,0,24,138,11,0,0,0,0,0,88,117,0,0,14,11,0,0,32,138,11,0,0,0,0,0,100,117,0,0,14,11,0,0,40,138,11,0,0,0,0,0,114,117,0,0,14,11,0,0,48,138,11,0,0,0,0, 0,127,117,0,0,14,11,0,0,56,138,11,0,0,0,0,0,142,117,0,0,14,11,0,0,64,138,11,0,0,0,0,0,159,117,0,0,14,11,0,0,72,138,11,0,0,0,0,0,178,117,0,0,14,11,0,0,80,138,11,0,0,0,0,0,193,117,0,0,14,11,0,0,88,138,11,0,0,0,0,0,210,117,0,0,14,11,0,0,96,138,11,0,0,0, 0,0,230,117,0,0,14,11,0,0,104,138,11,0,0,0,0,0,252,117,0,0,14,11,0,0,112,138,11,0,0,0,0,0,11,118,0,0,14,11,0,0,120,138,11,0,0,0,0,0,26,118,0,0,14,11,0,0,128,138,11,0,0,0,0,0,40,118,0,0,14,11,0,0,136,138,11,0,0,0,0,0,54,118,0,0,14,11,0,0,144,138,11,0, 0,0,0,0,69,118,0,0,14,11,0,0,152,138,11,0,0,0,0,0,85,118,0,0,14,11,0,0,160,138,11,0,0,0,0,0,105,118,0,0,14,11,0,0,168,138,11,0,0,0,0,0,121,118,0,0,14,11,0,0,176,138,11,0,0,0,0,0,138,118,0,0,14,11,0,0,184,138,11,0,0,0,0,0,150,118,0,0,14,11,0,0,192,138, 11,0,0,0,0,0,161,118,0,0,14,11,0,0,200,138,11,0,0,0,0,0,175,118,0,0,14,11,0,0,208,138,11,0,0,0,0,0,191,118,0,0,14,11,0,0,216,138,11,0,0,0,0,0,209,118,0,0,14,11,0,0,224,138,11,0,0,0,0,0,223,118,0,0,14,11,0,0,232,138,11,0,0,0,0,0,238,118,0,0,14,11,0,0, 240,138,11,0,0,0,0,0,254,118,0,0,14,11,0,0,248,138,11,0,0,0,0,0,15,119,0,0,14,11,0,0,0,139,11,0,0,0,0,0,34,119,0,0,14,11,0,0,8,139,11,0,0,0,0,0,49,119,0,0,14,11,0,0,16,139,11,0,0,0,0,0,67,119,0,0,14,11,0,0,24,139,11,0,0,0,0,0,80,119,0,0,14,11,0,0,32, 139,11,0,0,0,0,0,96,119,0,0,14,11,0,0,40,139,11,0,0,0,0,0,109,119,0,0,14,11,0,0,48,139,11,0,0,0,0,0,122,119,0,0,14,11,0,0,56,139,11,0,0,0,0,0,134,119,0,0,14,11,0,0,64,139,11,0,0,0,0,0,147,119,0,0,14,11,0,0,72,139,11,0,0,0,0,0,159,119,0,0,14,11,0,0,80, 139,11,0,0,0,0,0,175,119,0,0,14,11,0,0,96,139,11,0,0,0,0,0,193,119,0,0,14,11,0,0,128,139,11,0,0,0,0,0,199,119,0,0,14,11,0,0,128,141,11,0,0,0,0,0,205,119,0,0,14,11,0,0,136,141,11,0,0,0,0,0,211,119,0,0,15,1,0,0,76,66,1,0,0,0,0,0,230,119,0,0,15,12,0,0,200, 153,11,0,0,0,0,0,243,119,0,0,15,1,0,0,49,66,2,0,0,0,0,0,2,120,0,0,15,1,0,0,81,38,2,0,0,0,0,0,14,120,0,0,15,1,0,0,241,58,2,0,0,0,0,0,35,120,0,0,15,1,0,0,159,231,4,0,0,0,0,0,52,120,0,0,15,1,0,0,247,35,2,0,0,0,0,0,63,120,0,0,15,1,0,0,173,58,2,0,0,0,0,0, 77,120,0,0,15,1,0,0,190,36,2,0,0,0,0,0,91,120,0,0,15,1,0,0,121,44,6,0,0,0,0,0,104,120,0,0,15,1,0,0,208,43,6,0,0,0,0,0,119,120,0,0,15,1,0,0,36,45,6,0,0,0,0,0,137,120,0,0,15,1,0,0,2,44,6,0,0,0,0,0,150,120,0,0,15,1,0,0,123,45,6,0,0,0,0,0,166,120,0,0,15, 1,0,0,30,44,6,0,0,0,0,0,182,120,0,0,15,1,0,0,163,45,6,0,0,0,0,0,201,120,0,0,15,1,0,0,253,45,6,0,0,0,0,0,214,120,0,0,15,1,0,0,176,229,7,0,0,0,0,0,226,120,0,0,15,1,0,0,36,64,6,0,0,0,0,0,238,120,0,0,15,1,0,0,59,68,6,0,0,0,0,0,0,121,0,0,15,1,0,0,16,71,6, 0,0,0,0,0,16,121,0,0,15,1,0,0,237,64,6,0,0,0,0,0,29,121,0,0,15,1,0,0,214,52,6,0,0,0,0,0,43,121,0,0,15,1,0,0,255,51,6,0,0,0,0,0,61,121,0,0,15,1,0,0,70,78,6,0,0,0,0,0,74,121,0,0,15,1,0,0,199,147,6,0,0,0,0,0,91,121,0,0,15,1,0,0,126,74,6,0,0,0,0,0,113,121, 0,0,15,1,0,0,199,51,6,0,0,0,0,0,126,121,0,0,15,1,0,0,92,74,6,0,0,0,0,0,143,121,0,0,15,1,0,0,112,61,6,0,0,0,0,0,159,121,0,0,15,1,0,0,108,74,6,0,0,0,0,0,174,121,0,0,15,1,0,0,57,146,6,0,0,0,0,0,188,121,0,0,15,1,0,0,140,51,6,0,0,0,0,0,200,121,0,0,15,1,0, 0,166,73,6,0,0,0,0,0,214,121,0,0,15,1,0,0,94,85,6,0,0,0,0,0,227,121,0,0,15,1,0,0,60,88,6,0,0,0,0,0,251,121,0,0,15,1,0,0,63,89,6,0,0,0,0,0,17,122,0,0,15,1,0,0,181,75,6,0,0,0,0,0,40,122,0,0,15,1,0,0,62,71,6,0,0,0,0,0,56,122,0,0,15,1,0,0,26,53,6,0,0,0,0, 0,69,122,0,0,15,1,0,0,66,90,6,0,0,0,0,0,83,122,0,0,15,1,0,0,77,223,1,0,0,0,0,0,102,122,0,0,15,1,0,0,66,119,2,0,0,0,0,0,120,122,0,0,15,1,0,0,18,116,2,0,0,0,0,0,130,122,0,0,15,1,0,0,111,112,2,0,0,0,0,0,147,122,0,0,15,1,0,0,165,111,2,0,0,0,0,0,163,122,0, 0,15,1,0,0,169,113,2,0,0,0,0,0,176,122,0,0,15,1,0,0,161,109,2,0,0,0,0,0,191,122,0,0,15,1,0,0,31,107,2,0,0,0,0,0,205,122,0,0,15,1,0,0,38,115,2,0,0,0,0,0,222,122,0,0,15,1,0,0,178,106,2,0,0,0,0,0,239,122,0,0,15,12,0,0,96,142,11,0,0,0,0,0,3,123,0,0,15,1, 0,0,171,166,7,0,0,0,0,0,8,123,0,0,15,1,0,0,231,199,0,0,0,0,0,0,27,123,0,0,15,1,0,0,218,95,3,0,0,0,0,0,44,123,0,0,15,1,0,0,70,99,3,0,0,0,0,0,62,123,0,0,15,1,0,0,63,53,5,0,0,0,0,0,75,123,0,0,15,1,0,0,255,25,5,0,0,0,0,0,87,123,0,0,15,12,0,0,152,142,11,0, 0,0,0,0,101,123,0,0,15,1,0,0,11,65,3,0,0,0,0,0,117,123,0,0,15,1,0,0,119,245,2,0,0,0,0,0,139,123,0,0,15,1,0,0,4,96,4,0,0,0,0,0,162,123,0,0,15,1,0,0,217,175,2,0,0,0,0,0,185,123,0,0,15,1,0,0,126,176,2,0,0,0,0,0,210,123,0,0,15,1,0,0,238,245,2,0,0,0,0,0,233, 123,0,0,15,1,0,0,255,167,2,0,0,0,0,0,247,123,0,0,15,1,0,0,168,225,2,0,0,0,0,0,10,124,0,0,15,1,0,0,5,98,4,0,0,0,0,0,32,124,0,0,15,1,0,0,63,6,3,0,0,0,0,0,48,124,0,0,15,1,0,0,196,19,3,0,0,0,0,0,66,124,0,0,15,1,0,0,143,168,2,0,0,0,0,0,86,124,0,0,15,12,0, 0,160,142,11,0,0,0,0,0,103,124,0,0,15,12,0,0,168,142,11,0,0,0,0,0,119,124,0,0,15,1,0,0,63,75,3,0,0,0,0,0,136,124,0,0,15,1,0,0,149,182,2,0,0,0,0,0,154,124,0,0,15,1,0,0,172,50,3,0,0,0,0,0,172,124,0,0,15,1,0,0,30,175,2,0,0,0,0,0,192,124,0,0,15,1,0,0,196, 57,5,0,0,0,0,0,210,124,0,0,15,1,0,0,239,172,2,0,0,0,0,0,223,124,0,0,15,1,0,0,200,143,2,0,0,0,0,0,239,124,0,0,15,1,0,0,39,191,2,0,0,0,0,0,0,125,0,0,15,1,0,0,193,142,2,0,0,0,0,0,19,125,0,0,15,1,0,0,133,144,2,0,0,0,0,0,41,125,0,0,15,1,0,0,167,144,2,0,0, 0,0,0,56,125,0,0,15,1,0,0,114,143,2,0,0,0,0,0,78,125,0,0,15,1,0,0,11,143,2,0,0,0,0,0,93,125,0,0,15,1,0,0,208,147,2,0,0,0,0,0,110,125,0,0,15,1,0,0,250,187,2,0,0,0,0,0,129,125,0,0,15,1,0,0,195,26,5,0,0,0,0,0,143,125,0,0,15,1,0,0,244,240,2,0,0,0,0,0,158, 125,0,0,15,1,0,0,37,27,5,0,0,0,0,0,173,125,0,0,15,1,0,0,146,26,5,0,0,0,0,0,189,125,0,0,15,1,0,0,84,25,5,0,0,0,0,0,205,125,0,0,15,1,0,0,78,186,2,0,0,0,0,0,227,125,0,0,15,1,0,0,35,19,3,0,0,0,0,0,247,125,0,0,15,1,0,0,108,186,2,0,0,0,0,0,7,126,0,0,15,1,0, 0,159,30,3,0,0,0,0,0,19,126,0,0,15,12,0,0,176,142,11,0,0,0,0,0,32,126,0,0,15,1,0,0,12,180,2,0,0,0,0,0,49,126,0,0,15,1,0,0,63,179,2,0,0,0,0,0,76,126,0,0,15,1,0,0,60,181,2,0,0,0,0,0,93,126,0,0,15,1,0,0,235,165,2,0,0,0,0,0,113,126,0,0,15,1,0,0,201,144,2, 0,0,0,0,0,134,126,0,0,15,1,0,0,167,169,2,0,0,0,0,0,146,126,0,0,15,1,0,0,56,47,2,0,0,0,0,0,164,126,0,0,15,1,0,0,144,44,3,0,0,0,0,0,182,126,0,0,15,1,0,0,28,39,3,0,0,0,0,0,197,126,0,0,15,1,0,0,203,18,3,0,0,0,0,0,211,126,0,0,15,1,0,0,32,27,3,0,0,0,0,0,227, 126,0,0,15,1,0,0,81,34,5,0,0,0,0,0,239,126,0,0,15,1,0,0,184,27,5,0,0,0,0,0,253,126,0,0,15,1,0,0,28,153,2,0,0,0,0,0,9,127,0,0,15,1,0,0,199,223,2,0,0,0,0,0,24,127,0,0,15,1,0,0,233,27,5,0,0,0,0,0,39,127,0,0,15,1,0,0,244,23,5,0,0,0,0,0,51,127,0,0,15,1,0, 0,26,28,5,0,0,0,0,0,66,127,0,0,15,1,0,0,122,198,2,0,0,0,0,0,79,127,0,0,15,1,0,0,241,180,2,0,0,0,0,0,102,127,0,0,15,1,0,0,236,42,3,0,0,0,0,0,116,127,0,0,15,1,0,0,179,252,2,0,0,0,0,0,135,127,0,0,15,1,0,0,7,144,2,0,0,0,0,0,157,127,0,0,15,1,0,0,42,171,2, 0,0,0,0,0,172,127,0,0,15,1,0,0,113,192,2,0,0,0,0,0,201,127,0,0,15,1,0,0,180,192,2,0,0,0,0,0,236,127,0,0,15,1,0,0,99,166,2,0,0,0,0,0,1,128,0,0,15,1,0,0,249,239,2,0,0,0,0,0,16,128,0,0,15,1,0,0,245,146,2,0,0,0,0,0,31,128,0,0,15,1,0,0,108,97,3,0,0,0,0,0, 52,128,0,0,15,1,0,0,207,100,3,0,0,0,0,0,74,128,0,0,15,1,0,0,175,177,2,0,0,0,0,0,90,128,0,0,15,1,0,0,133,53,3,0,0,0,0,0,117,128,0,0,15,1,0,0,98,190,2,0,0,0,0,0,136,128,0,0,15,1,0,0,150,96,3,0,0,0,0,0,152,128,0,0,15,1,0,0,249,99,3,0,0,0,0,0,169,128,0,0, 15,1,0,0,242,193,2,0,0,0,0,0,196,128,0,0,15,1,0,0,74,25,3,0,0,0,0,0,217,128,0,0,15,1,0,0,60,142,2,0,0,0,0,0,233,128,0,0,15,1,0,0,221,142,2,0,0,0,0,0,252,128,0,0,15,1,0,0,110,240,2,0,0,0,0,0,14,129,0,0,15,1,0,0,166,86,3,0,0,0,0,0,34,129,0,0,15,1,0,0,68, 250,2,0,0,0,0,0,51,129,0,0,15,1,0,0,213,222,2,0,0,0,0,0,67,129,0,0,15,1,0,0,31,187,2,0,0,0,0,0,84,129,0,0,15,1,0,0,111,42,3,0,0,0,0,0,104,129,0,0,15,1,0,0,2,51,3,0,0,0,0,0,128,129,0,0,15,1,0,0,62,190,2,0,0,0,0,0,148,129,0,0,15,1,0,0,249,57,5,0,0,0,0, 0,167,129,0,0,15,1,0,0,48,26,5,0,0,0,0,0,182,129,0,0,15,1,0,0,244,142,2,0,0,0,0,0,203,129,0,0,15,1,0,0,122,190,2,0,0,0,0,0,222,129,0,0,15,1,0,0,121,141,2,0,0,0,0,0,247,129,0,0,15,1,0,0,244,26,5,0,0,0,0,0,5,130,0,0,15,1,0,0,130,246,2,0,0,0,0,0,17,130, 0,0,15,1,0,0,86,27,5,0,0,0,0,0,32,130,0,0,15,1,0,0,97,26,5,0,0,0,0,0,48,130,0,0,15,1,0,0,135,27,5,0,0,0,0,0,64,130,0,0,15,12,0,0,184,142,11,0,0,0,0,0,82,130,0,0,15,1,0,0,175,98,4,0,0,0,0,0,102,130,0,0,15,1,0,0,57,198,0,0,0,0,0,0,108,130,0,0,15,1,0,0, 134,20,8,0,0,0,0,0,122,130,0,0,15,1,0,0,82,167,6,0,0,0,0,0,141,130,0,0,15,1,0,0,208,166,6,0,0,0,0,0,156,130,0,0,15,1,0,0,165,158,6,0,0,0,0,0,174,130,0,0,15,1,0,0,56,167,6,0,0,0,0,0,189,130,0,0,15,1,0,0,179,160,6,0,0,0,0,0,206,130,0,0,15,1,0,0,234,166, 6,0,0,0,0,0,224,130,0,0,15,1,0,0,30,167,6,0,0,0,0,0,241,130,0,0,15,1,0,0,4,167,6,0,0,0,0,0,3,131,0,0,15,1,0,0,138,168,6,0,0,0,0,0,25,131,0,0,15,1,0,0,10,169,6,0,0,0,0,0,43,131,0,0,15,1,0,0,180,167,6,0,0,0,0,0,62,131,0,0,15,1,0,0,160,167,6,0,0,0,0,0,77, 131,0,0,15,1,0,0,139,169,6,0,0,0,0,0,100,131,0,0,15,1,0,0,92,169,6,0,0,0,0,0,117,131,0,0,15,1,0,0,13,168,6,0,0,0,0,0,138,131,0,0,15,1,0,0,118,153,6,0,0,0,0,0,149,131,0,0,15,1,0,0,245,168,6,0,0,0,0,0,171,131,0,0,15,1,0,0,248,167,6,0,0,0,0,0,193,131,0, 0,15,1,0,0,201,167,6,0,0,0,0,0,214,131,0,0,15,1,0,0,134,167,6,0,0,0,0,0,237,131,0,0,15,1,0,0,110,169,6,0,0,0,0,0,4,132,0,0,15,1,0,0,66,169,6,0,0,0,0,0,21,132,0,0,15,1,0,0,108,167,6,0,0,0,0,0,38,132,0,0,15,1,0,0,193,237,6,0,0,0,0,0,51,132,0,0,15,1,0,0, 141,238,6,0,0,0,0,0,63,132,0,0,15,1,0,0,253,237,6,0,0,0,0,0,85,132,0,0,15,1,0,0,22,238,6,0,0,0,0,0,103,132,0,0,15,1,0,0,98,238,6,0,0,0,0,0,126,132,0,0,15,1,0,0,47,238,6,0,0,0,0,0,146,132,0,0,15,1,0,0,213,235,6,0,0,0,0,0,157,132,0,0,15,1,0,0,187,236,6, 0,0,0,0,0,168,132,0,0,15,12,0,0,32,145,11,0,0,0,0,0,183,132,0,0,15,1,0,0,46,236,6,0,0,0,0,0,196,132,0,0,15,1,0,0,31,225,0,0,0,0,0,0,209,132,0,0,15,1,0,0,186,188,6,0,0,0,0,0,220,132,0,0,15,1,0,0,7,146,0,0,0,0,0,0,232,132,0,0,15,1,0,0,168,145,0,0,0,0,0, 0,246,132,0,0,15,1,0,0,151,197,6,0,0,0,0,0,1,133,0,0,15,12,0,0,56,142,11,0,0,0,0,0,12,133,0,0,15,1,0,0,215,230,0,0,0,0,0,0,28,133,0,0,15,1,0,0,91,231,0,0,0,0,0,0,48,133,0,0,15,12,0,0,224,143,11,0,0,0,0,0,61,133,0,0,15,1,0,0,183,209,4,0,0,0,0,0,74,133, 0,0,15,10,0,0,64,54,11,0,0,0,0,0,96,133,0,0,15,1,0,0,129,70,0,0,0,0,0,0,116,133,0,0,15,1,0,0,230,107,0,0,0,0,0,0,131,133,0,0,15,1,0,0,159,141,0,0,0,0,0,0,144,133,0,0,15,1,0,0,62,149,0,0,0,0,0,0,157,133,0,0,15,1,0,0,154,162,0,0,0,0,0,0,172,133,0,0,15, 1,0,0,212,177,0,0,0,0,0,0,185,133,0,0,15,1,0,0,209,21,1,0,0,0,0,0,201,133,0,0,15,1,0,0,57,37,1,0,0,0,0,0,217,133,0,0,15,1,0,0,195,67,1,0,0,0,0,0,231,133,0,0,15,1,0,0,123,72,1,0,0,0,0,0,245,133,0,0,15,1,0,0,176,91,1,0,0,0,0,0,2,134,0,0,15,1,0,0,236,216, 1,0,0,0,0,0,21,134,0,0,15,1,0,0,26,4,2,0,0,0,0,0,35,134,0,0,15,1,0,0,227,179,7,0,0,0,0,0,44,134,0,0,15,12,0,0,0,142,11,0,0,0,0,0,65,134,0,0,15,1,0,0,170,57,1,0,0,0,0,0,86,134,0,0,15,1,0,0,79,180,7,0,0,0,0,0,95,134,0,0,15,12,0,0,8,142,11,0,0,0,0,0,116, 134,0,0,15,1,0,0,206,53,1,0,0,0,0,0,137,134,0,0,15,1,0,0,160,169,6,0,0,0,0,0,147,134,0,0,15,1,0,0,207,91,1,0,0,0,0,0,171,134,0,0,15,12,0,0,232,143,11,0,0,0,0,0,189,134,0,0,15,1,0,0,233,3,5,0,0,0,0,0,207,134,0,0,15,10,0,0,192,54,11,0,0,0,0,0,234,134,0, 0,15,1,0,0,138,224,1,0,0,0,0,0,243,134,0,0,15,1,0,0,42,147,0,0,0,0,0,0,1,135,0,0,15,1,0,0,231,18,0,0,0,0,0,0,15,135,0,0,15,1,0,0,42,109,0,0,0,0,0,0,35,135,0,0,15,1,0,0,3,218,1,0,0,0,0,0,49,135,0,0,15,1,0,0,161,226,1,0,0,0,0,0,59,135,0,0,15,1,0,0,130, 227,1,0,0,0,0,0,69,135,0,0,15,1,0,0,142,29,7,0,0,0,0,0,88,135,0,0,15,1,0,0,164,29,7,0,0,0,0,0,103,135,0,0,15,1,0,0,40,30,7,0,0,0,0,0,119,135,0,0,15,1,0,0,122,29,7,0,0,0,0,0,137,135,0,0,15,1,0,0,153,29,7,0,0,0,0,0,154,135,0,0,15,1,0,0,34,162,7,0,0,0,0, 0,163,135,0,0,15,12,0,0,160,141,11,0,0,0,0,0,180,135,0,0,15,1,0,0,36,136,0,0,0,0,0,0,197,135,0,0,15,1,0,0,128,162,7,0,0,0,0,0,204,135,0,0,15,1,0,0,124,62,1,0,0,0,0,0,223,135,0,0,15,1,0,0,150,199,0,0,0,0,0,0,234,135,0,0,15,1,0,0,240,204,4,0,0,0,0,0,2, 136,0,0,15,1,0,0,119,202,4,0,0,0,0,0,24,136,0,0,15,1,0,0,216,203,4,0,0,0,0,0,44,136,0,0,15,1,0,0,154,206,4,0,0,0,0,0,64,136,0,0,15,1,0,0,223,206,6,0,0,0,0,0,80,136,0,0,15,1,0,0,41,199,6,0,0,0,0,0,91,136,0,0,15,1,0,0,122,178,7,0,0,0,0,0,97,136,0,0,15, 12,0,0,16,142,11,0,0,0,0,0,115,136,0,0,15,1,0,0,238,51,1,0,0,0,0,0,133,136,0,0,15,1,0,0,40,102,2,0,0,0,0,0,148,136,0,0,15,1,0,0,6,137,2,0,0,0,0,0,162,136,0,0,15,1,0,0,178,201,2,0,0,0,0,0,178,136,0,0,15,1,0,0,92,79,3,0,0,0,0,0,194,136,0,0,15,1,0,0,147, 141,3,0,0,0,0,0,209,136,0,0,15,1,0,0,55,145,3,0,0,0,0,0,229,136,0,0,15,1,0,0,218,186,3,0,0,0,0,0,245,136,0,0,15,1,0,0,134,236,3,0,0,0,0,0,6,137,0,0,15,1,0,0,234,6,4,0,0,0,0,0,18,137,0,0,15,1,0,0,24,29,4,0,0,0,0,0,36,137,0,0,15,1,0,0,156,80,4,0,0,0,0, 0,52,137,0,0,15,1,0,0,181,120,4,0,0,0,0,0,71,137,0,0,15,1,0,0,172,169,4,0,0,0,0,0,87,137,0,0,15,1,0,0,159,18,5,0,0,0,0,0,105,137,0,0,15,1,0,0,117,81,5,0,0,0,0,0,119,137,0,0,15,1,0,0,167,116,5,0,0,0,0,0,135,137,0,0,15,1,0,0,72,158,5,0,0,0,0,0,154,137, 0,0,15,1,0,0,94,199,5,0,0,0,0,0,170,137,0,0,15,1,0,0,13,247,5,0,0,0,0,0,187,137,0,0,15,1,0,0,86,40,6,0,0,0,0,0,204,137,0,0,15,1,0,0,220,100,2,0,0,0,0,0,224,137,0,0,15,1,0,0,115,50,2,0,0,0,0,0,244,137,0,0,15,1,0,0,217,57,2,0,0,0,0,0,16,138,0,0,15,1,0, 0,231,54,2,0,0,0,0,0,47,138,0,0,15,1,0,0,85,53,2,0,0,0,0,0,73,138,0,0,15,12,0,0,72,142,11,0,0,0,0,0,87,138,0,0,15,1,0,0,65,41,2,0,0,0,0,0,104,138,0,0,15,1,0,0,94,86,2,0,0,0,0,0,126,138,0,0,15,1,0,0,172,85,2,0,0,0,0,0,148,138,0,0,15,1,0,0,191,42,2,0,0, 0,0,0,164,138,0,0,15,1,0,0,236,38,2,0,0,0,0,0,177,138,0,0,15,1,0,0,104,85,2,0,0,0,0,0,193,138,0,0,15,1,0,0,198,47,2,0,0,0,0,0,212,138,0,0,15,1,0,0,166,84,2,0,0,0,0,0,227,138,0,0,15,1,0,0,186,101,2,0,0,0,0,0,242,138,0,0,15,1,0,0,252,100,2,0,0,0,0,0,6, 139,0,0,15,1,0,0,170,86,2,0,0,0,0,0,24,139,0,0,15,1,0,0,7,85,2,0,0,0,0,0,41,139,0,0,15,1,0,0,61,84,2,0,0,0,0,0,59,139,0,0,15,1,0,0,137,85,2,0,0,0,0,0,71,139,0,0,15,10,0,0,32,53,11,0,0,0,0,0,94,139,0,0,15,1,0,0,22,171,6,0,0,0,0,0,102,139,0,0,15,1,0,0, 35,93,7,0,0,0,0,0,117,139,0,0,15,1,0,0,239,92,7,0,0,0,0,0,139,139,0,0,15,1,0,0,61,93,7,0,0,0,0,0,161,139,0,0,15,1,0,0,9,93,7,0,0,0,0,0,185,139,0,0,15,1,0,0,48,93,7,0,0,0,0,0,205,139,0,0,15,1,0,0,223,92,7,0,0,0,0,0,222,139,0,0,15,1,0,0,207,92,7,0,0,0, 0,0,240,139,0,0,15,1,0,0,22,93,7,0,0,0,0,0,254,139,0,0,15,1,0,0,252,92,7,0,0,0,0,0,25,140,0,0,15,1,0,0,53,197,6,0,0,0,0,0,35,140,0,0,15,1,0,0,193,187,6,0,0,0,0,0,42,140,0,0,15,1,0,0,128,197,6,0,0,0,0,0,53,140,0,0,15,1,0,0,112,27,8,0,0,0,0,0,75,140,0, 0,15,1,0,0,172,24,8,0,0,0,0,0,88,140,0,0,15,1,0,0,76,85,3,0,0,0,0,0,99,140,0,0,15,1,0,0,38,159,2,0,0,0,0,0,115,140,0,0,15,10,0,0,160,67,11,0,0,0,0,0,146,140,0,0,15,1,0,0,89,49,2,0,0,0,0,0,165,140,0,0,15,1,0,0,82,95,3,0,0,0,0,0,180,140,0,0,15,1,0,0,78, 90,3,0,0,0,0,0,193,140,0,0,15,1,0,0,241,86,3,0,0,0,0,0,207,140,0,0,15,1,0,0,47,218,2,0,0,0,0,0,223,140,0,0,15,1,0,0,67,216,2,0,0,0,0,0,243,140,0,0,15,1,0,0,65,112,3,0,0,0,0,0,3,141,0,0,15,1,0,0,135,112,3,0,0,0,0,0,19,141,0,0,15,1,0,0,157,69,5,0,0,0,0, 0,36,141,0,0,15,1,0,0,88,78,5,0,0,0,0,0,54,141,0,0,15,1,0,0,44,141,3,0,0,0,0,0,71,141,0,0,15,1,0,0,158,139,4,0,0,0,0,0,88,141,0,0,15,1,0,0,181,95,3,0,0,0,0,0,100,141,0,0,15,1,0,0,15,92,3,0,0,0,0,0,117,141,0,0,15,1,0,0,161,172,2,0,0,0,0,0,132,141,0,0, 15,1,0,0,218,221,2,0,0,0,0,0,148,141,0,0,15,1,0,0,224,78,3,0,0,0,0,0,165,141,0,0,15,1,0,0,191,162,2,0,0,0,0,0,178,141,0,0,15,1,0,0,67,91,3,0,0,0,0,0,190,141,0,0,15,1,0,0,58,152,2,0,0,0,0,0,202,141,0,0,15,1,0,0,243,163,2,0,0,0,0,0,217,141,0,0,15,1,0,0, 163,216,2,0,0,0,0,0,235,141,0,0,15,1,0,0,96,172,2,0,0,0,0,0,253,141,0,0,15,1,0,0,22,172,2,0,0,0,0,0,14,142,0,0,15,1,0,0,98,171,2,0,0,0,0,0,31,142,0,0,15,1,0,0,216,95,4,0,0,0,0,0,48,142,0,0,15,1,0,0,131,220,2,0,0,0,0,0,64,142,0,0,15,1,0,0,229,105,3,0, 0,0,0,0,81,142,0,0,15,1,0,0,123,107,3,0,0,0,0,0,98,142,0,0,15,1,0,0,172,95,4,0,0,0,0,0,110,142,0,0,15,1,0,0,14,91,4,0,0,0,0,0,132,142,0,0,15,1,0,0,246,88,4,0,0,0,0,0,150,142,0,0,15,1,0,0,217,114,3,0,0,0,0,0,164,142,0,0,15,1,0,0,223,90,3,0,0,0,0,0,178, 142,0,0,15,1,0,0,90,154,4,0,0,0,0,0,192,142,0,0,15,1,0,0,9,217,2,0,0,0,0,0,206,142,0,0,15,1,0,0,244,220,2,0,0,0,0,0,223,142,0,0,15,1,0,0,32,222,2,0,0,0,0,0,245,142,0,0,15,1,0,0,106,215,2,0,0,0,0,0,7,143,0,0,15,1,0,0,185,94,3,0,0,0,0,0,19,143,0,0,15,1, 0,0,190,18,5,0,0,0,0,0,31,143,0,0,15,10,0,0,128,67,11,0,0,0,0,0,44,143,0,0,15,1,0,0,216,103,4,0,0,0,0,0,65,143,0,0,15,1,0,0,17,109,3,0,0,0,0,0,82,143,0,0,15,1,0,0,169,110,3,0,0,0,0,0,99,143,0,0,15,1,0,0,73,23,7,0,0,0,0,0,118,143,0,0,15,1,0,0,185,16,7, 0,0,0,0,0,141,143,0,0,15,1,0,0,1,27,7,0,0,0,0,0,160,143,0,0,15,1,0,0,43,242,6,0,0,0,0,0,178,143,0,0,15,1,0,0,146,190,2,0,0,0,0,0,188,143,0,0,15,1,0,0,6,149,6,0,0,0,0,0,203,143,0,0,15,1,0,0,73,166,7,0,0,0,0,0,219,143,0,0,15,1,0,0,53,29,7,0,0,0,0,0,229, 143,0,0,15,1,0,0,187,190,6,0,0,0,0,0,240,143,0,0,15,1,0,0,220,94,7,0,0,0,0,0,2,144,0,0,15,1,0,0,12,75,3,0,0,0,0,0,12,144,0,0,15,1,0,0,235,245,6,0,0,0,0,0,25,144,0,0,15,1,0,0,124,178,8,0,0,0,0,0,43,144,0,0,15,1,0,0,109,178,8,0,0,0,0,0,65,144,0,0,15,1, 0,0,94,178,8,0,0,0,0,0,83,144,0,0,15,1,0,0,224,151,7,0,0,0,0,0,101,144,0,0,15,12,0,0,16,145,11,0,0,0,0,0,116,144,0,0,15,1,0,0,29,69,7,0,0,0,0,0,127,144,0,0,15,1,0,0,207,82,7,0,0,0,0,0,138,144,0,0,15,1,0,0,254,41,7,0,0,0,0,0,160,144,0,0,15,1,0,0,153,142, 2,0,0,0,0,0,178,144,0,0,15,1,0,0,81,151,7,0,0,0,0,0,202,144,0,0,15,1,0,0,40,153,7,0,0,0,0,0,229,144,0,0,15,1,0,0,190,153,7,0,0,0,0,0,250,144,0,0,15,1,0,0,218,43,3,0,0,0,0,0,11,145,0,0,15,1,0,0,148,211,2,0,0,0,0,0,26,145,0,0,15,1,0,0,207,214,2,0,0,0,0, 0,38,145,0,0,15,1,0,0,233,211,2,0,0,0,0,0,51,145,0,0,15,1,0,0,228,210,2,0,0,0,0,0,66,145,0,0,15,1,0,0,103,210,2,0,0,0,0,0,80,145,0,0,15,1,0,0,76,227,6,0,0,0,0,0,91,145,0,0,15,1,0,0,63,211,2,0,0,0,0,0,104,145,0,0,15,1,0,0,56,212,2,0,0,0,0,0,120,145,0, 0,15,1,0,0,105,214,2,0,0,0,0,0,130,145,0,0,15,1,0,0,61,122,5,0,0,0,0,0,146,145,0,0,15,1,0,0,91,123,5,0,0,0,0,0,161,145,0,0,15,1,0,0,217,124,5,0,0,0,0,0,176,145,0,0,15,1,0,0,101,124,5,0,0,0,0,0,195,145,0,0,15,1,0,0,241,123,5,0,0,0,0,0,214,145,0,0,15,1, 0,0,187,123,5,0,0,0,0,0,230,145,0,0,15,1,0,0,216,43,2,0,0,0,0,0,243,145,0,0,15,10,0,0,192,53,11,0,0,0,0,0,9,146,0,0,15,1,0,0,239,121,5,0,0,0,0,0,23,146,0,0,15,1,0,0,42,121,5,0,0,0,0,0,34,146,0,0,15,1,0,0,199,193,4,0,0,0,0,0,49,146,0,0,15,1,0,0,153,143, 3,0,0,0,0,0,65,146,0,0,15,1,0,0,65,144,3,0,0,0,0,0,86,146,0,0,15,1,0,0,249,156,3,0,0,0,0,0,99,146,0,0,15,1,0,0,243,152,3,0,0,0,0,0,119,146,0,0,15,1,0,0,2,152,3,0,0,0,0,0,138,146,0,0,15,1,0,0,143,154,3,0,0,0,0,0,154,146,0,0,15,1,0,0,192,149,3,0,0,0,0, 0,172,146,0,0,15,1,0,0,136,146,3,0,0,0,0,0,189,146,0,0,15,1,0,0,12,156,3,0,0,0,0,0,209,146,0,0,15,1,0,0,198,145,3,0,0,0,0,0,229,146,0,0,15,12,0,0,192,142,11,0,0,0,0,0,252,146,0,0,15,1,0,0,181,210,3,0,0,0,0,0,18,147,0,0,15,1,0,0,141,209,3,0,0,0,0,0,39, 147,0,0,15,1,0,0,215,205,3,0,0,0,0,0,53,147,0,0,15,12,0,0,0,143,11,0,0,0,0,0,77,147,0,0,15,1,0,0,67,35,2,0,0,0,0,0,94,147,0,0,15,1,0,0,95,34,2,0,0,0,0,0,111,147,0,0,15,1,0,0,66,33,2,0,0,0,0,0,129,147,0,0,15,1,0,0,43,34,2,0,0,0,0,0,147,147,0,0,15,1,0, 0,45,11,2,0,0,0,0,0,168,147,0,0,15,1,0,0,17,12,2,0,0,0,0,0,192,147,0,0,15,1,0,0,99,14,2,0,0,0,0,0,217,147,0,0,15,1,0,0,177,8,2,0,0,0,0,0,243,147,0,0,15,1,0,0,195,14,2,0,0,0,0,0,12,148,0,0,15,1,0,0,78,10,2,0,0,0,0,0,38,148,0,0,15,1,0,0,67,4,2,0,0,0,0, 0,56,148,0,0,15,1,0,0,42,4,2,0,0,0,0,0,74,148,0,0,15,1,0,0,210,22,2,0,0,0,0,0,88,148,0,0,15,10,0,0,160,61,11,0,0,0,0,0,106,148,0,0,15,1,0,0,19,14,2,0,0,0,0,0,129,148,0,0,15,1,0,0,128,24,2,0,0,0,0,0,144,148,0,0,15,1,0,0,146,21,2,0,0,0,0,0,158,148,0,0, 15,1,0,0,207,25,2,0,0,0,0,0,173,148,0,0,15,1,0,0,179,23,2,0,0,0,0,0,190,148,0,0,15,1,0,0,128,4,2,0,0,0,0,0,211,148,0,0,15,1,0,0,31,11,2,0,0,0,0,0,239,148,0,0,15,1,0,0,171,17,2,0,0,0,0,0,253,148,0,0,15,1,0,0,100,19,2,0,0,0,0,0,16,149,0,0,15,1,0,0,147, 18,2,0,0,0,0,0,34,149,0,0,15,1,0,0,92,4,2,0,0,0,0,0,55,149,0,0,15,1,0,0,199,6,2,0,0,0,0,0,77,149,0,0,15,1,0,0,150,7,2,0,0,0,0,0,98,149,0,0,15,1,0,0,66,22,2,0,0,0,0,0,110,149,0,0,15,1,0,0,105,25,2,0,0,0,0,0,129,149,0,0,15,1,0,0,100,5,2,0,0,0,0,0,150,149, 0,0,15,1,0,0,22,16,2,0,0,0,0,0,166,149,0,0,15,1,0,0,251,24,2,0,0,0,0,0,179,149,0,0,15,1,0,0,43,24,2,0,0,0,0,0,194,149,0,0,15,1,0,0,35,15,2,0,0,0,0,0,207,149,0,0,15,1,0,0,67,21,2,0,0,0,0,0,220,149,0,0,15,1,0,0,72,6,2,0,0,0,0,0,246,149,0,0,15,1,0,0,159, 24,2,0,0,0,0,0,2,150,0,0,15,10,0,0,192,65,11,0,0,0,0,0,17,150,0,0,15,10,0,0,32,62,11,0,0,0,0,0,33,150,0,0,15,10,0,0,160,51,11,0,0,0,0,0,54,150,0,0,15,1,0,0,203,227,1,0,0,0,0,0,61,150,0,0,15,1,0,0,45,205,6,0,0,0,0,0,73,150,0,0,15,1,0,0,58,225,6,0,0,0, 0,0,95,150,0,0,15,1,0,0,83,199,6,0,0,0,0,0,106,150,0,0,15,1,0,0,191,81,8,0,0,0,0,0,125,150,0,0,15,1,0,0,244,67,8,0,0,0,0,0,138,150,0,0,15,1,0,0,166,86,8,0,0,0,0,0,150,150,0,0,15,1,0,0,120,74,8,0,0,0,0,0,172,150,0,0,15,1,0,0,17,71,8,0,0,0,0,0,187,150, 0,0,15,1,0,0,95,79,8,0,0,0,0,0,205,150,0,0,15,1,0,0,116,84,8,0,0,0,0,0,228,150,0,0,15,1,0,0,251,76,8,0,0,0,0,0,250,150,0,0,15,1,0,0,38,89,8,0,0,0,0,0,13,151,0,0,15,1,0,0,103,68,8,0,0,0,0,0,27,151,0,0,15,1,0,0,95,189,8,0,0,0,0,0,44,151,0,0,15,1,0,0,164, 189,8,0,0,0,0,0,62,151,0,0,15,1,0,0,83,182,8,0,0,0,0,0,88,151,0,0,15,1,0,0,119,193,8,0,0,0,0,0,106,151,0,0,15,10,0,0,88,71,11,0,0,0,0,0,128,151,0,0,15,1,0,0,124,191,8,0,0,0,0,0,140,151,0,0,15,10,0,0,16,71,11,0,0,0,0,0,156,151,0,0,15,1,0,0,176,190,8,0, 0,0,0,0,168,151,0,0,15,1,0,0,186,191,8,0,0,0,0,0,185,151,0,0,15,1,0,0,48,182,8,0,0,0,0,0,210,151,0,0,15,1,0,0,130,195,8,0,0,0,0,0,227,151,0,0,15,1,0,0,84,192,8,0,0,0,0,0,248,151,0,0,15,10,0,0,64,71,11,0,0,0,0,0,17,152,0,0,15,1,0,0,197,191,8,0,0,0,0,0, 31,152,0,0,15,1,0,0,251,189,8,0,0,0,0,0,50,152,0,0,15,1,0,0,77,190,8,0,0,0,0,0,72,152,0,0,15,1,0,0,52,191,8,0,0,0,0,0,85,152,0,0,15,10,0,0,24,71,11,0,0,0,0,0,102,152,0,0,15,1,0,0,153,195,8,0,0,0,0,0,123,152,0,0,15,1,0,0,51,181,8,0,0,0,0,0,135,152,0,0, 15,1,0,0,134,182,8,0,0,0,0,0,153,152,0,0,15,10,0,0,40,71,11,0,0,0,0,0,169,152,0,0,15,10,0,0,48,71,11,0,0,0,0,0,188,152,0,0,15,1,0,0,58,194,8,0,0,0,0,0,204,152,0,0,15,10,0,0,104,71,11,0,0,0,0,0,224,152,0,0,15,1,0,0,229,191,8,0,0,0,0,0,238,152,0,0,15,10, 0,0,56,71,11,0,0,0,0,0,0,153,0,0,15,1,0,0,69,195,8,0,0,0,0,0,16,153,0,0,15,1,0,0,23,193,8,0,0,0,0,0,33,153,0,0,15,10,0,0,80,71,11,0,0,0,0,0,54,153,0,0,15,1,0,0,203,193,8,0,0,0,0,0,76,153,0,0,15,10,0,0,96,71,11,0,0,0,0,0,102,153,0,0,15,10,0,0,8,71,11, 0,0,0,0,0,119,153,0,0,15,1,0,0,182,187,8,0,0,0,0,0,141,153,0,0,15,1,0,0,64,186,8,0,0,0,0,0,162,153,0,0,15,1,0,0,29,183,8,0,0,0,0,0,181,153,0,0,15,1,0,0,161,184,8,0,0,0,0,0,202,153,0,0,15,1,0,0,195,192,8,0,0,0,0,0,223,153,0,0,15,10,0,0,72,71,11,0,0,0, 0,0,248,153,0,0,15,1,0,0,60,189,8,0,0,0,0,0,13,154,0,0,15,1,0,0,230,190,8,0,0,0,0,0,27,154,0,0,15,10,0,0,32,71,11,0,0,0,0,0,45,154,0,0,15,1,0,0,148,194,8,0,0,0,0,0,58,154,0,0,15,1,0,0,235,194,8,0,0,0,0,0,77,154,0,0,15,1,0,0,207,190,8,0,0,0,0,0,91,154, 0,0,15,1,0,0,3,180,8,0,0,0,0,0,109,154,0,0,15,1,0,0,62,180,8,0,0,0,0,0,129,154,0,0,15,1,0,0,96,148,2,0,0,0,0,0,149,154,0,0,15,1,0,0,22,152,2,0,0,0,0,0,175,154,0,0,15,1,0,0,22,148,2,0,0,0,0,0,196,154,0,0,15,12,0,0,208,153,11,0,0,0,0,0,215,154,0,0,15,12, 0,0,216,153,11,0,0,0,0,0,234,154,0,0,15,12,0,0,224,153,11,0,0,0,0,0,254,154,0,0,15,12,0,0,232,153,11,0,0,0,0,0,16,155,0,0,15,12,0,0,240,153,11,0,0,0,0,0,33,155,0,0,15,1,0,0,55,208,0,0,0,0,0,0,49,155,0,0,15,1,0,0,43,64,1,0,0,0,0,0,68,155,0,0,15,1,0,0, 92,252,6,0,0,0,0,0,81,155,0,0,15,1,0,0,14,252,6,0,0,0,0,0,93,155,0,0,15,1,0,0,48,229,6,0,0,0,0,0,105,155,0,0,15,1,0,0,239,189,6,0,0,0,0,0,118,155,0,0,15,1,0,0,90,49,0,0,0,0,0,0,129,155,0,0,15,1,0,0,177,48,0,0,0,0,0,0,142,155,0,0,15,1,0,0,177,193,0,0, 0,0,0,0,153,155,0,0,15,1,0,0,238,177,0,0,0,0,0,0,164,155,0,0,15,1,0,0,63,195,0,0,0,0,0,0,176,155,0,0,15,1,0,0,205,196,0,0,0,0,0,0,191,155,0,0,15,1,0,0,148,197,0,0,0,0,0,0,207,155,0,0,15,1,0,0,177,174,6,0,0,0,0,0,218,155,0,0,15,1,0,0,149,60,0,0,0,0,0, 0,229,155,0,0,15,1,0,0,232,59,0,0,0,0,0,0,242,155,0,0,15,1,0,0,26,23,0,0,0,0,0,0,255,155,0,0,15,1,0,0,145,22,0,0,0,0,0,0,14,156,0,0,15,1,0,0,245,177,7,0,0,0,0,0,20,156,0,0,15,12,0,0,24,142,11,0,0,0,0,0,38,156,0,0,15,1,0,0,18,50,1,0,0,0,0,0,56,156,0,0, 15,1,0,0,198,11,4,0,0,0,0,0,72,156,0,0,15,1,0,0,40,10,4,0,0,0,0,0,95,156,0,0,15,1,0,0,190,9,4,0,0,0,0,0,117,156,0,0,15,1,0,0,185,8,4,0,0,0,0,0,138,156,0,0,15,1,0,0,250,6,4,0,0,0,0,0,158,156,0,0,15,1,0,0,82,11,4,0,0,0,0,0,181,156,0,0,15,12,0,0,96,143, 11,0,0,0,0,0,207,156,0,0,15,1,0,0,180,33,4,0,0,0,0,0,233,156,0,0,15,1,0,0,71,54,4,0,0,0,0,0,1,157,0,0,15,1,0,0,62,33,4,0,0,0,0,0,17,157,0,0,15,1,0,0,62,50,4,0,0,0,0,0,33,157,0,0,15,1,0,0,86,34,4,0,0,0,0,0,49,157,0,0,15,12,0,0,160,143,11,0,0,0,0,0,75, 157,0,0,15,1,0,0,11,129,7,0,0,0,0,0,92,157,0,0,15,1,0,0,55,130,7,0,0,0,0,0,115,157,0,0,15,1,0,0,0,131,7,0,0,0,0,0,130,157,0,0,15,1,0,0,94,131,7,0,0,0,0,0,144,157,0,0,15,1,0,0,37,228,0,0,0,0,0,0,155,157,0,0,15,1,0,0,233,229,0,0,0,0,0,0,168,157,0,0,15, 1,0,0,69,172,6,0,0,0,0,0,182,157,0,0,15,12,0,0,248,144,11,0,0,0,0,0,190,157,0,0,15,1,0,0,187,187,6,0,0,0,0,0,198,157,0,0,15,1,0,0,170,215,6,0,0,0,0,0,211,157,0,0,15,1,0,0,250,216,6,0,0,0,0,0,227,157,0,0,15,1,0,0,89,224,6,0,0,0,0,0,249,157,0,0,15,1,0, 0,92,209,6,0,0,0,0,0,3,158,0,0,15,1,0,0,121,222,6,0,0,0,0,0,22,158,0,0,15,1,0,0,237,223,6,0,0,0,0,0,42,158,0,0,15,1,0,0,90,208,6,0,0,0,0,0,52,158,0,0,15,1,0,0,118,220,6,0,0,0,0,0,72,158,0,0,15,1,0,0,239,220,6,0,0,0,0,0,93,158,0,0,15,1,0,0,56,219,6,0, 0,0,0,0,117,158,0,0,15,1,0,0,132,218,6,0,0,0,0,0,130,158,0,0,15,1,0,0,76,218,6,0,0,0,0,0,144,158,0,0,15,1,0,0,104,221,6,0,0,0,0,0,160,158,0,0,15,1,0,0,58,223,6,0,0,0,0,0,177,158,0,0,15,1,0,0,218,221,6,0,0,0,0,0,196,158,0,0,15,1,0,0,134,223,6,0,0,0,0, 0,216,158,0,0,15,1,0,0,209,218,6,0,0,0,0,0,241,158,0,0,15,1,0,0,250,109,1,0,0,0,0,0,1,159,0,0,15,1,0,0,8,111,1,0,0,0,0,0,28,159,0,0,15,1,0,0,125,101,1,0,0,0,0,0,51,159,0,0,15,1,0,0,239,139,7,0,0,0,0,0,70,159,0,0,15,1,0,0,117,139,7,0,0,0,0,0,85,159,0, 0,15,1,0,0,139,214,6,0,0,0,0,0,102,159,0,0,15,1,0,0,21,212,6,0,0,0,0,0,115,159,0,0,15,1,0,0,22,213,6,0,0,0,0,0,129,159,0,0,15,1,0,0,34,215,6,0,0,0,0,0,142,159,0,0,15,1,0,0,196,225,6,0,0,0,0,0,165,159,0,0,15,1,0,0,16,215,6,0,0,0,0,0,183,159,0,0,15,1,0, 0,6,214,6,0,0,0,0,0,196,159,0,0,15,1,0,0,82,211,6,0,0,0,0,0,208,159,0,0,15,1,0,0,132,212,6,0,0,0,0,0,224,159,0,0,15,1,0,0,50,211,6,0,0,0,0,0,244,159,0,0,15,1,0,0,143,213,6,0,0,0,0,0,3,160,0,0,15,1,0,0,1,176,8,0,0,0,0,0,23,160,0,0,15,1,0,0,122,177,8,0, 0,0,0,0,37,160,0,0,15,1,0,0,217,173,8,0,0,0,0,0,60,160,0,0,15,1,0,0,9,173,8,0,0,0,0,0,76,160,0,0,15,1,0,0,82,175,8,0,0,0,0,0,95,160,0,0,15,1,0,0,170,176,8,0,0,0,0,0,119,160,0,0,15,1,0,0,169,174,8,0,0,0,0,0,142,160,0,0,15,1,0,0,62,39,0,0,0,0,0,0,154,160, 0,0,15,1,0,0,149,38,0,0,0,0,0,0,168,160,0,0,15,1,0,0,216,234,6,0,0,0,0,0,177,160,0,0,15,1,0,0,227,229,6,0,0,0,0,0,186,160,0,0,15,12,0,0,0,145,11,0,0,0,0,0,202,160,0,0,15,1,0,0,68,220,6,0,0,0,0,0,218,160,0,0,15,10,0,0,49,69,11,0,0,0,0,0,234,160,0,0,15, 10,0,0,40,69,11,0,0,0,0,0,250,160,0,0,15,1,0,0,148,234,6,0,0,0,0,0,9,161,0,0,15,1,0,0,232,164,7,0,0,0,0,0,19,161,0,0,15,1,0,0,192,231,0,0,0,0,0,0,27,161,0,0,15,1,0,0,66,232,6,0,0,0,0,0,43,161,0,0,15,1,0,0,247,234,6,0,0,0,0,0,53,161,0,0,15,1,0,0,232,186, 6,0,0,0,0,0,69,161,0,0,15,1,0,0,145,226,6,0,0,0,0,0,78,161,0,0,15,1,0,0,227,167,6,0,0,0,0,0,98,161,0,0,15,1,0,0,166,235,6,0,0,0,0,0,107,161,0,0,15,1,0,0,110,235,6,0,0,0,0,0,116,161,0,0,15,1,0,0,36,226,6,0,0,0,0,0,124,161,0,0,15,1,0,0,177,175,6,0,0,0, 0,0,135,161,0,0,15,12,0,0,8,145,11,0,0,0,0,0,151,161,0,0,15,1,0,0,32,235,6,0,0,0,0,0,163,161,0,0,15,1,0,0,17,234,6,0,0,0,0,0,174,161,0,0,15,1,0,0,160,233,6,0,0,0,0,0,186,161,0,0,15,1,0,0,63,233,6,0,0,0,0,0,212,161,0,0,15,1,0,0,71,235,6,0,0,0,0,0,223, 161,0,0,15,1,0,0,193,175,6,0,0,0,0,0,237,161,0,0,15,1,0,0,231,230,6,0,0,0,0,0,248,161,0,0,15,10,0,0,192,57,11,0,0,0,0,0,4,162,0,0,15,1,0,0,100,183,6,0,0,0,0,0,14,162,0,0,15,1,0,0,193,226,7,0,0,0,0,0,29,162,0,0,15,1,0,0,69,225,7,0,0,0,0,0,42,162,0,0,15, 1,0,0,181,228,7,0,0,0,0,0,58,162,0,0,15,12,0,0,240,143,11,0,0,0,0,0,70,162,0,0,15,1,0,0,100,228,4,0,0,0,0,0,82,162,0,0,15,10,0,0,128,54,11,0,0,0,0,0,103,162,0,0,15,1,0,0,17,15,0,0,0,0,0,0,115,162,0,0,15,1,0,0,142,14,0,0,0,0,0,0,129,162,0,0,15,1,0,0,20, 206,6,0,0,0,0,0,147,162,0,0,15,1,0,0,190,158,7,0,0,0,0,0,153,162,0,0,15,1,0,0,65,161,7,0,0,0,0,0,163,162,0,0,15,1,0,0,211,161,7,0,0,0,0,0,174,162,0,0,15,1,0,0,30,161,7,0,0,0,0,0,186,162,0,0,15,1,0,0,146,60,1,0,0,0,0,0,205,162,0,0,15,1,0,0,160,230,0,0, 0,0,0,0,219,162,0,0,15,1,0,0,225,178,7,0,0,0,0,0,228,162,0,0,15,12,0,0,32,142,11,0,0,0,0,0,249,162,0,0,15,1,0,0,166,59,1,0,0,0,0,0,14,163,0,0,15,1,0,0,136,40,1,0,0,0,0,0,24,163,0,0,15,1,0,0,22,41,1,0,0,0,0,0,33,163,0,0,15,1,0,0,214,41,1,0,0,0,0,0,41, 163,0,0,15,1,0,0,173,41,1,0,0,0,0,0,48,163,0,0,15,1,0,0,156,96,1,0,0,0,0,0,62,163,0,0,15,1,0,0,192,95,1,0,0,0,0,0,77,163,0,0,15,1,0,0,61,95,1,0,0,0,0,0,92,163,0,0,15,1,0,0,144,98,1,0,0,0,0,0,110,163,0,0,15,1,0,0,124,99,1,0,0,0,0,0,126,163,0,0,15,1,0, 0,39,198,6,0,0,0,0,0,139,163,0,0,15,1,0,0,98,179,7,0,0,0,0,0,148,163,0,0,15,12,0,0,40,142,11,0,0,0,0,0,169,163,0,0,15,1,0,0,202,55,1,0,0,0,0,0,190,163,0,0,15,1,0,0,64,245,7,0,0,0,0,0,203,163,0,0,15,1,0,0,210,141,4,0,0,0,0,0,219,163,0,0,15,1,0,0,12,141, 4,0,0,0,0,0,235,163,0,0,15,1,0,0,147,140,4,0,0,0,0,0,247,163,0,0,15,1,0,0,204,140,4,0,0,0,0,0,4,164,0,0,15,1,0,0,87,123,4,0,0,0,0,0,16,164,0,0,15,1,0,0,146,124,4,0,0,0,0,0,34,164,0,0,15,1,0,0,83,124,4,0,0,0,0,0,48,164,0,0,15,1,0,0,101,124,4,0,0,0,0,0, 63,164,0,0,15,1,0,0,87,140,4,0,0,0,0,0,77,164,0,0,15,1,0,0,244,142,4,0,0,0,0,0,88,164,0,0,15,1,0,0,97,148,4,0,0,0,0,0,101,164,0,0,15,1,0,0,58,122,4,0,0,0,0,0,112,164,0,0,15,1,0,0,183,136,4,0,0,0,0,0,126,164,0,0,15,1,0,0,91,141,4,0,0,0,0,0,140,164,0,0, 15,1,0,0,27,140,4,0,0,0,0,0,153,164,0,0,15,10,0,0,240,56,11,0,0,0,0,0,157,164,0,0,15,10,0,0,112,56,11,0,0,0,0,0,163,164,0,0,15,10,0,0,144,56,11,0,0,0,0,0,169,164,0,0,15,10,0,0,48,56,11,0,0,0,0,0,181,164,0,0,15,10,0,0,240,55,11,0,0,0,0,0,189,164,0,0,15, 10,0,0,176,55,11,0,0,0,0,0,198,164,0,0,15,10,0,0,16,56,11,0,0,0,0,0,206,164,0,0,15,10,0,0,144,55,11,0,0,0,0,0,217,164,0,0,15,10,0,0,80,56,11,0,0,0,0,0,227,164,0,0,15,10,0,0,208,55,11,0,0,0,0,0,237,164,0,0,15,10,0,0,176,56,11,0,0,0,0,0,242,164,0,0,15, 10,0,0,208,56,11,0,0,0,0,0,247,164,0,0,15,12,0,0,216,143,11,0,0,0,0,0,5,165,0,0,15,1,0,0,245,164,4,0,0,0,0,0,21,165,0,0,15,1,0,0,47,155,4,0,0,0,0,0,39,165,0,0,15,1,0,0,158,153,4,0,0,0,0,0,51,165,0,0,15,1,0,0,194,164,4,0,0,0,0,0,66,165,0,0,15,1,0,0,95, 53,0,0,0,0,0,0,83,165,0,0,15,1,0,0,195,52,0,0,0,0,0,0,102,165,0,0,15,1,0,0,190,64,0,0,0,0,0,0,119,165,0,0,15,1,0,0,30,64,0,0,0,0,0,0,138,165,0,0,15,1,0,0,117,25,0,0,0,0,0,0,157,165,0,0,15,1,0,0,253,24,0,0,0,0,0,0,178,165,0,0,15,1,0,0,110,43,0,0,0,0,0, 0,196,165,0,0,15,1,0,0,215,42,0,0,0,0,0,0,216,165,0,0,15,1,0,0,108,17,0,0,0,0,0,0,234,165,0,0,15,1,0,0,244,16,0,0,0,0,0,0,254,165,0,0,15,1,0,0,116,33,0,0,0,0,0,0,17,166,0,0,15,1,0,0,252,32,0,0,0,0,0,0,38,166,0,0,15,1,0,0,226,250,6,0,0,0,0,0,62,166,0, 0,15,1,0,0,70,211,6,0,0,0,0,0,80,166,0,0,15,1,0,0,197,235,6,0,0,0,0,0,102,166,0,0,15,1,0,0,96,246,6,0,0,0,0,0,125,166,0,0,15,1,0,0,15,247,6,0,0,0,0,0,137,166,0,0,15,1,0,0,24,239,7,0,0,0,0,0,151,166,0,0,15,1,0,0,134,231,0,0,0,0,0,0,167,166,0,0,15,12,0, 0,168,141,11,0,0,0,0,0,184,166,0,0,15,1,0,0,150,251,0,0,0,0,0,0,201,166,0,0,15,12,0,0,176,141,11,0,0,0,0,0,214,166,0,0,15,1,0,0,51,246,0,0,0,0,0,0,227,166,0,0,15,12,0,0,184,141,11,0,0,0,0,0,243,166,0,0,15,1,0,0,247,11,1,0,0,0,0,0,3,167,0,0,15,12,0,0, 192,141,11,0,0,0,0,0,19,167,0,0,15,12,0,0,200,141,11,0,0,0,0,0,39,167,0,0,15,1,0,0,191,20,1,0,0,0,0,0,59,167,0,0,15,1,0,0,91,16,1,0,0,0,0,0,75,167,0,0,15,12,0,0,208,141,11,0,0,0,0,0,89,167,0,0,15,1,0,0,199,235,0,0,0,0,0,0,103,167,0,0,15,12,0,0,216,141, 11,0,0,0,0,0,117,167,0,0,15,1,0,0,190,239,0,0,0,0,0,0,131,167,0,0,15,1,0,0,255,227,1,0,0,0,0,0,147,167,0,0,15,1,0,0,130,232,1,0,0,0,0,0,166,167,0,0,15,1,0,0,159,228,1,0,0,0,0,0,187,167,0,0,15,1,0,0,99,230,1,0,0,0,0,0,199,167,0,0,15,1,0,0,246,231,1,0, 0,0,0,0,219,167,0,0,15,1,0,0,34,200,6,0,0,0,0,0,236,167,0,0,15,12,0,0,224,141,11,0,0,0,0,0,252,167,0,0,15,1,0,0,183,1,1,0,0,0,0,0,12,168,0,0,15,1,0,0,194,43,1,0,0,0,0,0,28,168,0,0,15,12,0,0,232,141,11,0,0,0,0,0,44,168,0,0,15,12,0,0,240,141,11,0,0,0,0, 0,64,168,0,0,15,1,0,0,87,7,1,0,0,0,0,0,84,168,0,0,15,1,0,0,135,4,1,0,0,0,0,0,100,168,0,0,15,12,0,0,248,141,11,0,0,0,0,0,119,168,0,0,15,1,0,0,211,254,0,0,0,0,0,0,138,168,0,0,15,1,0,0,174,44,1,0,0,0,0,0,155,168,0,0,15,1,0,0,56,46,1,0,0,0,0,0,170,168,0, 0,15,12,0,0,64,142,11,0,0,0,0,0,184,168,0,0,15,1,0,0,55,89,1,0,0,0,0,0,198,168,0,0,15,12,0,0,48,142,11,0,0,0,0,0,213,168,0,0,15,1,0,0,33,48,1,0,0,0,0,0,228,168,0,0,15,1,0,0,202,56,7,0,0,0,0,0,249,168,0,0,15,1,0,0,39,56,7,0,0,0,0,0,13,169,0,0,15,1,0,0, 84,60,7,0,0,0,0,0,34,169,0,0,15,1,0,0,178,163,1,0,0,0,0,0,54,169,0,0,15,1,0,0,250,159,7,0,0,0,0,0,65,169,0,0,15,1,0,0,154,216,0,0,0,0,0,0,82,169,0,0,15,1,0,0,31,19,8,0,0,0,0,0,94,169,0,0,15,1,0,0,171,207,6,0,0,0,0,0,111,169,0,0,15,1,0,0,54,241,6,0,0, 0,0,0,124,169,0,0,15,1,0,0,157,54,7,0,0,0,0,0,139,169,0,0,15,12,0,0,72,145,11,0,0,0,0,0,160,169,0,0,15,1,0,0,37,102,7,0,0,0,0,0,174,169,0,0,15,10,0,0,132,68,11,0,0,0,0,0,188,169,0,0,15,10,0,0,136,68,11,0,0,0,0,0,208,169,0,0,15,1,0,0,52,82,7,0,0,0,0,0, 218,169,0,0,15,1,0,0,214,125,7,0,0,0,0,0,236,169,0,0,15,10,0,0,128,68,11,0,0,0,0,0,251,169,0,0,15,1,0,0,178,238,6,0,0,0,0,0,10,170,0,0,15,1,0,0,218,139,7,0,0,0,0,0,21,170,0,0,15,1,0,0,172,9,7,0,0,0,0,0,38,170,0,0,15,1,0,0,54,178,8,0,0,0,0,0,54,170,0, 0,15,1,0,0,177,62,7,0,0,0,0,0,71,170,0,0,15,12,0,0,76,145,11,0,0,0,0,0,82,170,0,0,15,12,0,0,116,145,11,0,0,0,0,0,98,170,0,0,15,1,0,0,141,148,7,0,0,0,0,0,116,170,0,0,15,12,0,0,120,145,11,0,0,0,0,0,133,170,0,0,15,12,0,0,112,145,11,0,0,0,0,0,147,170,0,0, 15,1,0,0,47,146,7,0,0,0,0,0,160,170,0,0,15,1,0,0,5,253,6,0,0,0,0,0,170,170,0,0,15,12,0,0,124,145,11,0,0,0,0,0,192,170,0,0,15,12,0,0,128,145,11,0,0,0,0,0,218,170,0,0,15,12,0,0,152,153,11,0,0,0,0,0,234,170,0,0,15,12,0,0,104,149,11,0,0,0,0,0,250,170,0,0, 15,12,0,0,128,149,11,0,0,0,0,0,16,171,0,0,15,1,0,0,122,100,7,0,0,0,0,0,33,171,0,0,15,10,0,0,168,57,11,0,0,0,0,0,44,171,0,0,15,10,0,0,224,69,11,0,0,0,0,0,54,171,0,0,15,1,0,0,228,93,7,0,0,0,0,0,70,171,0,0,15,10,0,0,68,70,11,0,0,0,0,0,86,171,0,0,15,1,0, 0,204,93,7,0,0,0,0,0,101,171,0,0,15,1,0,0,228,27,7,0,0,0,0,0,121,171,0,0,15,1,0,0,8,26,7,0,0,0,0,0,141,171,0,0,15,1,0,0,96,253,6,0,0,0,0,0,163,171,0,0,15,1,0,0,86,13,7,0,0,0,0,0,183,171,0,0,15,1,0,0,248,177,8,0,0,0,0,0,202,171,0,0,15,1,0,0,8,178,8,0, 0,0,0,0,223,171,0,0,15,1,0,0,71,13,7,0,0,0,0,0,244,171,0,0,15,1,0,0,64,119,7,0,0,0,0,0,4,172,0,0,15,1,0,0,101,13,7,0,0,0,0,0,19,172,0,0,15,1,0,0,166,49,7,0,0,0,0,0,36,172,0,0,15,1,0,0,48,13,7,0,0,0,0,0,47,172,0,0,15,1,0,0,240,196,6,0,0,0,0,0,63,172,0, 0,15,1,0,0,39,67,7,0,0,0,0,0,72,172,0,0,15,12,0,0,104,153,11,0,0,0,0,0,84,172,0,0,15,12,0,0,112,153,11,0,0,0,0,0,106,172,0,0,15,12,0,0,160,153,11,0,0,0,0,0,120,172,0,0,15,10,0,0,64,69,11,0,0,0,0,0,136,172,0,0,15,1,0,0,180,93,7,0,0,0,0,0,154,172,0,0,15, 12,0,0,40,145,11,0,0,0,0,0,168,172,0,0,15,12,0,0,80,145,11,0,0,0,0,0,184,172,0,0,15,1,0,0,66,178,8,0,0,0,0,0,203,172,0,0,15,1,0,0,82,126,7,0,0,0,0,0,223,172,0,0,15,12,0,0,120,153,11,0,0,0,0,0,235,172,0,0,15,1,0,0,218,25,7,0,0,0,0,0,249,172,0,0,15,1,0, 0,2,178,8,0,0,0,0,0,11,173,0,0,15,1,0,0,232,90,7,0,0,0,0,0,25,173,0,0,15,1,0,0,246,32,7,0,0,0,0,0,46,173,0,0,15,1,0,0,207,252,6,0,0,0,0,0,56,173,0,0,15,1,0,0,77,243,6,0,0,0,0,0,71,173,0,0,15,1,0,0,212,167,7,0,0,0,0,0,85,173,0,0,15,1,0,0,30,98,7,0,0,0, 0,0,95,173,0,0,15,1,0,0,109,52,7,0,0,0,0,0,111,173,0,0,15,10,0,0,96,69,11,0,0,0,0,0,130,173,0,0,15,10,0,0,160,69,11,0,0,0,0,0,150,173,0,0,15,1,0,0,157,93,7,0,0,0,0,0,171,173,0,0,15,10,0,0,76,69,11,0,0,0,0,0,184,173,0,0,15,10,0,0,72,69,11,0,0,0,0,0,198, 173,0,0,15,12,0,0,128,153,11,0,0,0,0,0,215,173,0,0,15,12,0,0,132,153,11,0,0,0,0,0,226,173,0,0,15,12,0,0,136,153,11,0,0,0,0,0,242,173,0,0,15,10,0,0,68,69,11,0,0,0,0,0,255,173,0,0,15,12,0,0,140,153,11,0,0,0,0,0,18,174,0,0,15,1,0,0,27,83,7,0,0,0,0,0,34, 174,0,0,15,1,0,0,59,136,7,0,0,0,0,0,53,174,0,0,15,1,0,0,30,178,8,0,0,0,0,0,68,174,0,0,15,1,0,0,36,168,7,0,0,0,0,0,78,174,0,0,15,12,0,0,84,145,11,0,0,0,0,0,95,174,0,0,15,12,0,0,24,145,11,0,0,0,0,0,105,174,0,0,15,1,0,0,37,72,7,0,0,0,0,0,118,174,0,0,15, 1,0,0,72,178,8,0,0,0,0,0,137,174,0,0,15,1,0,0,153,70,7,0,0,0,0,0,158,174,0,0,15,1,0,0,63,239,6,0,0,0,0,0,173,174,0,0,15,12,0,0,184,153,11,0,0,0,0,0,188,174,0,0,15,12,0,0,192,153,11,0,0,0,0,0,207,174,0,0,15,1,0,0,118,83,7,0,0,0,0,0,226,174,0,0,15,1,0, 0,177,70,7,0,0,0,0,0,240,174,0,0,15,1,0,0,140,142,7,0,0,0,0,0,252,174,0,0,15,1,0,0,115,90,7,0,0,0,0,0,17,175,0,0,15,1,0,0,86,10,7,0,0,0,0,0,35,175,0,0,15,1,0,0,60,178,8,0,0,0,0,0,52,175,0,0,15,1,0,0,191,13,7,0,0,0,0,0,68,175,0,0,15,1,0,0,90,55,7,0,0, 0,0,0,82,175,0,0,15,1,0,0,78,91,7,0,0,0,0,0,101,175,0,0,15,1,0,0,142,254,6,0,0,0,0,0,124,175,0,0,15,12,0,0,88,145,11,0,0,0,0,0,142,175,0,0,15,10,0,0,200,67,11,0,0,0,0,0,162,175,0,0,15,12,0,0,168,153,11,0,0,0,0,0,178,175,0,0,15,1,0,0,183,11,7,0,0,0,0, 0,193,175,0,0,15,1,0,0,199,26,7,0,0,0,0,0,212,175,0,0,15,1,0,0,98,2,7,0,0,0,0,0,236,175,0,0,15,1,0,0,179,27,7,0,0,0,0,0,1,176,0,0,15,1,0,0,234,150,7,0,0,0,0,0,20,176,0,0,15,1,0,0,131,150,7,0,0,0,0,0,40,176,0,0,15,1,0,0,175,152,7,0,0,0,0,0,57,176,0,0, 15,1,0,0,157,53,7,0,0,0,0,0,71,176,0,0,15,1,0,0,102,26,7,0,0,0,0,0,89,176,0,0,15,1,0,0,189,255,6,0,0,0,0,0,102,176,0,0,15,1,0,0,186,131,7,0,0,0,0,0,120,176,0,0,15,1,0,0,78,178,8,0,0,0,0,0,141,176,0,0,15,12,0,0,48,145,11,0,0,0,0,0,157,176,0,0,15,1,0,0, 85,54,7,0,0,0,0,0,172,176,0,0,15,12,0,0,96,145,11,0,0,0,0,0,185,176,0,0,15,12,0,0,104,145,11,0,0,0,0,0,199,176,0,0,15,1,0,0,94,72,7,0,0,0,0,0,213,176,0,0,15,12,0,0,176,153,11,0,0,0,0,0,229,176,0,0,15,12,0,0,56,145,11,0,0,0,0,0,239,176,0,0,15,12,0,0,64, 145,11,0,0,0,0,0,6,177,0,0,15,1,0,0,243,252,6,0,0,0,0,0,19,177,0,0,15,1,0,0,141,132,7,0,0,0,0,0,37,177,0,0,15,1,0,0,20,126,7,0,0,0,0,0,57,177,0,0,15,1,0,0,248,167,7,0,0,0,0,0,72,177,0,0,15,1,0,0,225,252,6,0,0,0,0,0,84,177,0,0,15,1,0,0,132,71,7,0,0,0, 0,0,100,177,0,0,15,10,0,0,0,71,11,0,0,0,0,0,116,177,0,0,15,12,0,0,144,153,11,0,0,0,0,0,129,177,0,0,15,1,0,0,160,63,7,0,0,0,0,0,139,177,0,0,15,1,0,0,10,92,0,0,0,0,0,0,158,177,0,0,15,1,0,0,36,77,0,0,0,0,0,0,177,177,0,0,15,1,0,0,72,86,0,0,0,0,0,0,197,177, 0,0,15,1,0,0,123,81,0,0,0,0,0,0,216,177,0,0,15,1,0,0,74,107,0,0,0,0,0,0,232,177,0,0,15,1,0,0,96,72,0,0,0,0,0,0,252,177,0,0,15,1,0,0,178,184,4,0,0,0,0,0,14,178,0,0,15,1,0,0,95,173,4,0,0,0,0,0,35,178,0,0,15,1,0,0,226,187,4,0,0,0,0,0,56,178,0,0,15,1,0,0, 0,188,4,0,0,0,0,0,77,178,0,0,15,1,0,0,32,190,4,0,0,0,0,0,92,178,0,0,15,1,0,0,100,174,4,0,0,0,0,0,111,178,0,0,15,1,0,0,213,175,4,0,0,0,0,0,131,178,0,0,15,1,0,0,72,177,4,0,0,0,0,0,147,178,0,0,15,1,0,0,179,170,4,0,0,0,0,0,161,178,0,0,15,1,0,0,83,188,4,0, 0,0,0,0,178,178,0,0,15,1,0,0,149,188,4,0,0,0,0,0,204,178,0,0,15,1,0,0,34,175,4,0,0,0,0,0,223,178,0,0,15,1,0,0,146,176,4,0,0,0,0,0,243,178,0,0,15,1,0,0,72,173,4,0,0,0,0,0,2,179,0,0,15,12,0,0,248,143,11,0,0,0,0,0,14,179,0,0,15,1,0,0,204,71,5,0,0,0,0,0, 31,179,0,0,15,1,0,0,246,78,5,0,0,0,0,0,49,179,0,0,15,1,0,0,139,65,5,0,0,0,0,0,60,179,0,0,15,1,0,0,77,79,5,0,0,0,0,0,72,179,0,0,15,10,0,0,0,55,11,0,0,0,0,0,93,179,0,0,15,1,0,0,205,112,3,0,0,0,0,0,104,179,0,0,15,1,0,0,211,113,3,0,0,0,0,0,115,179,0,0,15, 1,0,0,206,139,0,0,0,0,0,0,136,179,0,0,15,1,0,0,25,31,0,0,0,0,0,0,149,179,0,0,15,1,0,0,150,30,0,0,0,0,0,0,164,179,0,0,15,1,0,0,123,97,5,0,0,0,0,0,177,179,0,0,15,1,0,0,186,93,5,0,0,0,0,0,197,179,0,0,15,1,0,0,215,92,5,0,0,0,0,0,216,179,0,0,15,1,0,0,78,95, 5,0,0,0,0,0,232,179,0,0,15,1,0,0,78,90,5,0,0,0,0,0,250,179,0,0,15,1,0,0,235,86,5,0,0,0,0,0,11,180,0,0,15,1,0,0,203,96,5,0,0,0,0,0,31,180,0,0,15,1,0,0,27,86,5,0,0,0,0,0,51,180,0,0,15,12,0,0,0,144,11,0,0,0,0,0,74,180,0,0,15,1,0,0,18,174,7,0,0,0,0,0,86, 180,0,0,15,1,0,0,23,176,7,0,0,0,0,0,94,180,0,0,15,1,0,0,88,177,7,0,0,0,0,0,106,180,0,0,15,1,0,0,115,175,7,0,0,0,0,0,114,180,0,0,15,1,0,0,187,176,7,0,0,0,0,0,126,180,0,0,15,1,0,0,170,174,7,0,0,0,0,0,139,180,0,0,15,1,0,0,131,173,7,0,0,0,0,0,150,180,0,0, 15,1,0,0,125,168,7,0,0,0,0,0,161,180,0,0,15,1,0,0,62,175,7,0,0,0,0,0,172,180,0,0,15,1,0,0,166,168,7,0,0,0,0,0,182,180,0,0,15,1,0,0,246,169,7,0,0,0,0,0,193,180,0,0,15,1,0,0,228,171,7,0,0,0,0,0,207,180,0,0,15,1,0,0,60,172,7,0,0,0,0,0,221,180,0,0,15,1,0, 0,84,173,7,0,0,0,0,0,239,180,0,0,15,1,0,0,17,234,1,0,0,0,0,0,249,180,0,0,15,1,0,0,47,235,1,0,0,0,0,0,7,181,0,0,15,1,0,0,208,245,1,0,0,0,0,0,24,181,0,0,15,1,0,0,117,2,2,0,0,0,0,0,39,181,0,0,15,1,0,0,112,233,1,0,0,0,0,0,55,181,0,0,15,1,0,0,14,233,1,0,0, 0,0,0,67,181,0,0,15,1,0,0,124,233,1,0,0,0,0,0,85,181,0,0,15,1,0,0,204,232,1,0,0,0,0,0,96,181,0,0,15,1,0,0,82,92,1,0,0,0,0,0,118,181,0,0,15,1,0,0,2,93,1,0,0,0,0,0,143,181,0,0,15,1,0,0,189,93,1,0,0,0,0,0,170,181,0,0,15,1,0,0,53,21,8,0,0,0,0,0,181,181,0, 0,15,1,0,0,25,22,8,0,0,0,0,0,197,181,0,0,15,1,0,0,171,21,8,0,0,0,0,0,212,181,0,0,15,1,0,0,102,22,8,0,0,0,0,0,228,181,0,0,15,1,0,0,169,163,7,0,0,0,0,0,237,181,0,0,15,12,0,0,56,143,11,0,0,0,0,0,251,181,0,0,15,1,0,0,208,244,3,0,0,0,0,0,12,182,0,0,15,1,0, 0,203,245,3,0,0,0,0,0,30,182,0,0,15,1,0,0,94,243,3,0,0,0,0,0,44,182,0,0,15,1,0,0,155,243,3,0,0,0,0,0,61,182,0,0,15,1,0,0,182,243,3,0,0,0,0,0,77,182,0,0,15,12,0,0,64,143,11,0,0,0,0,0,92,182,0,0,15,1,0,0,17,1,4,0,0,0,0,0,111,182,0,0,15,1,0,0,160,255,3, 0,0,0,0,0,130,182,0,0,15,1,0,0,22,253,3,0,0,0,0,0,145,182,0,0,15,1,0,0,83,253,3,0,0,0,0,0,163,182,0,0,15,1,0,0,110,253,3,0,0,0,0,0,180,182,0,0,15,1,0,0,186,169,5,0,0,0,0,0,193,182,0,0,15,1,0,0,154,165,5,0,0,0,0,0,213,182,0,0,15,1,0,0,169,164,5,0,0,0, 0,0,232,182,0,0,15,1,0,0,54,167,5,0,0,0,0,0,248,182,0,0,15,1,0,0,121,162,5,0,0,0,0,0,10,183,0,0,15,1,0,0,56,159,5,0,0,0,0,0,27,183,0,0,15,1,0,0,205,168,5,0,0,0,0,0,47,183,0,0,15,1,0,0,118,158,5,0,0,0,0,0,67,183,0,0,15,12,0,0,64,144,11,0,0,0,0,0,90,183, 0,0,15,1,0,0,57,221,5,0,0,0,0,0,112,183,0,0,15,1,0,0,74,222,5,0,0,0,0,0,134,183,0,0,15,1,0,0,131,217,5,0,0,0,0,0,148,183,0,0,15,12,0,0,128,144,11,0,0,0,0,0,172,183,0,0,15,1,0,0,170,21,6,0,0,0,0,0,189,183,0,0,15,1,0,0,181,18,6,0,0,0,0,0,198,183,0,0,15, 12,0,0,192,144,11,0,0,0,0,0,217,183,0,0,15,1,0,0,33,153,4,0,0,0,0,0,228,183,0,0,15,1,0,0,110,151,4,0,0,0,0,0,239,183,0,0,15,1,0,0,61,152,4,0,0,0,0,0,253,183,0,0,15,1,0,0,203,182,7,0,0,0,0,0,16,184,0,0,15,1,0,0,205,209,7,0,0,0,0,0,36,184,0,0,15,1,0,0, 76,24,8,0,0,0,0,0,56,184,0,0,15,1,0,0,193,37,8,0,0,0,0,0,69,184,0,0,15,1,0,0,83,42,8,0,0,0,0,0,88,184,0,0,15,1,0,0,34,65,8,0,0,0,0,0,102,184,0,0,15,1,0,0,196,113,8,0,0,0,0,0,116,184,0,0,15,1,0,0,175,122,8,0,0,0,0,0,130,184,0,0,15,1,0,0,196,134,8,0,0, 0,0,0,143,184,0,0,15,1,0,0,136,145,8,0,0,0,0,0,158,184,0,0,15,1,0,0,234,172,8,0,0,0,0,0,172,184,0,0,15,1,0,0,75,217,1,0,0,0,0,0,184,184,0,0,15,1,0,0,1,217,1,0,0,0,0,0,198,184,0,0,15,1,0,0,84,188,6,0,0,0,0,0,206,184,0,0,15,1,0,0,60,232,6,0,0,0,0,0,210, 184,0,0,1,0,0,1,0,0,0,0,0,0,0,0,230,184,0,0,1,0,1,1,0,0,0,0,0,0,0,0,239,184,0,0,1,0,1,1,0,0,0,0,0,0,0,0,251,184,0,0,1,0,1,1,0,0,0,0,0,0,0,0,9,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,24,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,38,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,54,185, 0,0,1,0,1,1,0,0,0,0,0,0,0,0,69,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,87,185,0,0,1,0,0,1,0,0,0,0,0,0,0,0,106,185,0,0,1,0,0,1,0,0,0,0,0,0,0,0,117,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,131,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,145,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,160,185, 0,0,1,0,1,1,0,0,0,0,0,0,0,0,175,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,192,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,199,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,207,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,214,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,222,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,229,185, 0,0,1,0,1,1,0,0,0,0,0,0,0,0,235,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,241,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,247,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,253,185,0,0,1,0,1,1,0,0,0,0,0,0,0,0,4,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,12,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,19,186,0, 0,1,0,1,1,0,0,0,0,0,0,0,0,28,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,33,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,39,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,48,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,56,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,63,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,70,186,0,0,1,0, 1,1,0,0,0,0,0,0,0,0,76,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,81,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,87,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,95,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,103,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,110,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,117,186,0,0,1,0,1, 1,0,0,0,0,0,0,0,0,123,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,132,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,139,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,146,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,153,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,159,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,167,186,0,0,1,0, 1,1,0,0,0,0,0,0,0,0,182,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,190,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,198,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,206,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,221,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,235,186,0,0,1,0,1,1,0,0,0,0,0,0,0,0,243,186,0,0,1, 0,1,1,0,0,0,0,0,0,0,0,1,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,9,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,14,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,21,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,27,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,34,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,42,187,0,0,1,0,1,1,0, 0,0,0,0,0,0,0,50,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,58,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,64,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,72,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,80,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,87,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,92,187,0,0,1,0,1,1,0,0,0,0, 0,0,0,0,98,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,120,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,139,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,160,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,179,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,195,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,209,187,0,0,1,0,1,1,0,0,0,0, 0,0,0,0,232,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,252,187,0,0,1,0,1,1,0,0,0,0,0,0,0,0,16,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,39,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,61,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,75,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,98,188,0,0,1,0,1,1,0,0,0,0,0,0, 0,0,104,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,113,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,119,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,132,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,138,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,149,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,161,188,0,0,1,0,1,1,0,0,0,0,0, 0,0,0,169,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,180,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,188,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,193,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,199,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,206,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,216,188,0,0,1,0,1,1,0,0,0,0, 0,0,0,0,224,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,232,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,246,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,254,188,0,0,1,0,1,1,0,0,0,0,0,0,0,0,6,189,0,0,1,0,1,1,0,0,0,0,0,0,0,0,16,189,0,0,1,0,1,1,0,0,0,0,0,0,0,0,24,189,0,0,1,0,1,1,0,0,0,0,0, 0,0,0,33,189,0,0,1,0,1,1,0,0,0,0,0,0,0,0,42,189,0,0,1,0,1,1,0,0,0,0,0,0,0,0,51,189,0,0,1,0,1,1,0,0,0,0,0,0,0,0,59,189,0,0,1,0,1,1,0,0,0,0,0,0,0,0,67,189,0,0,1,0,1,1,0,0,0,0,0,0,0,0,75,189,0,0,1,0,1,1,0,0,0,0,0,0,0,0,82,189,0,0,1,0,1,1,0,0,0,0,0,0,0,0, 93,189,0,0,1,0,1,1,0,0,0,0,0,0,0,0,100,189,0,0,1,0,0,1,0,0,0,0,0,0,0,0,88,52,0,0,89,52,0,0,90,52,0,0,91,52,0,0,92,52,0,0,93,52,0,0,94,52,0,0,95,52,0,0,98,52,0,0,99,52,0,0,100,52,0,0,101,52,0,0,102,52,0,0,103,52,0,0,104,52,0,0,105,52,0,0,106,52,0,0,107, 52,0,0,108,52,0,0,109,52,0,0,110,52,0,0,111,52,0,0,112,52,0,0,113,52,0,0,114,52,0,0,115,52,0,0,116,52,0,0,117,52,0,0,118,52,0,0,119,52,0,0,120,52,0,0,121,52,0,0,122,52,0,0,123,52,0,0,124,52,0,0,125,52,0,0,126,52,0,0,127,52,0,0,128,52,0,0,129,52,0,0,130, 52,0,0,131,52,0,0,132,52,0,0,133,52,0,0,134,52,0,0,135,52,0,0,136,52,0,0,137,52,0,0,138,52,0,0,139,52,0,0,140,52,0,0,141,52,0,0,142,52,0,0,143,52,0,0,144,52,0,0,145,52,0,0,146,52,0,0,147,52,0,0,148,52,0,0,149,52,0,0,150,52,0,0,151,52,0,0,152,52,0,0,153, 52,0,0,154,52,0,0,155,52,0,0,156,52,0,0,157,52,0,0,158,52,0,0,159,52,0,0,160,52,0,0,161,52,0,0,162,52,0,0,163,52,0,0,164,52,0,0,165,52,0,0,166,52,0,0,167,52,0,0,168,52,0,0,169,52,0,0,170,52,0,0,171,52,0,0,172,52,0,0,173,52,0,0,174,52,0,0,175,52,0,0,176, 52,0,0,177,52,0,0,178,52,0,0,179,52,0,0,180,52,0,0,181,52,0,0,182,52,0,0,183,52,0,0,184,52,0,0,185,52,0,0,186,52,0,0,187,52,0,0,188,52,0,0,189,52,0,0,190,52,0,0,191,52,0,0,192,52,0,0,193,52,0,0,194,52,0,0,195,52,0,0,196,52,0,0,197,52,0,0,198,52,0,0,199, 52,0,0,200,52,0,0,87,52,0,0,96,52,0,0,97,52,0,0,0,0,0,64,0,0,0,64,88,52,0,0,89,52,0,0,90,52,0,0,91,52,0,0,92,52,0,0,93,52,0,0,94,52,0,0,95,52,0,0,98,52,0,0,99,52,0,0,100,52,0,0,101,52,0,0,102,52,0,0,103,52,0,0,104,52,0,0,105,52,0,0,106,52,0,0,107,52, 0,0,108,52,0,0,109,52,0,0,110,52,0,0,111,52,0,0,112,52,0,0,113,52,0,0,114,52,0,0,115,52,0,0,116,52,0,0,117,52,0,0,118,52,0,0,119,52,0,0,120,52,0,0,121,52,0,0,122,52,0,0,123,52,0,0,124,52,0,0,125,52,0,0,126,52,0,0,127,52,0,0,128,52,0,0,129,52,0,0,130, 52,0,0,131,52,0,0,132,52,0,0,133,52,0,0,134,52,0,0,135,52,0,0,136,52,0,0,137,52,0,0,138,52,0,0,139,52,0,0,140,52,0,0,141,52,0,0,142,52,0,0,143,52,0,0,144,52,0,0,145,52,0,0,146,52,0,0,147,52,0,0,148,52,0,0,149,52,0,0,150,52,0,0,151,52,0,0,152,52,0,0,153, 52,0,0,154,52,0,0,155,52,0,0,156,52,0,0,157,52,0,0,158,52,0,0,159,52,0,0,160,52,0,0,161,52,0,0,162,52,0,0,163,52,0,0,164,52,0,0,165,52,0,0,166,52,0,0,167,52,0,0,168,52,0,0,169,52,0,0,170,52,0,0,171,52,0,0,172,52,0,0,173,52,0,0,174,52,0,0,175,52,0,0,176, 52,0,0,177,52,0,0,178,52,0,0,179,52,0,0,180,52,0,0,181,52,0,0,182,52,0,0,183,52,0,0,184,52,0,0,185,52,0,0,186,52,0,0,187,52,0,0,188,52,0,0,189,52,0,0,190,52,0,0,191,52,0,0,192,52,0,0,193,52,0,0,194,52,0,0,195,52,0,0,196,52,0,0,197,52,0,0,198,52,0,0,199, 52,0,0,200,52,0,0,0,0,0,0,32,0,95,95,109,104,95,100,121,108,105,98,95,104,101,97,100,101,114,0,95,112,108,117,115,95,110,101,119,0,95,112,108,117,115,95,100,115,112,0,95,115,99,97,108,97,114,112,108,117,115,95,100,115,112,0,95,112,108,117,115,95,115, 101,116,117,112,0,95,109,105,110,117,115,95,110,101,119,0,95,109,105,110,117,115,95,100,115,112,0,95,115,99,97,108,97,114,109,105,110,117,115,95,100,115,112,0,95,109,105,110,117,115,95,115,101,116,117,112,0,95,116,105,109,101,115,95,110,101,119,0,95, 116,105,109,101,115,95,100,115,112,0,95,115,99,97,108,97,114,116,105,109,101,115,95,100,115,112,0,95,116,105,109,101,115,95,115,101,116,117,112,0,95,111,118,101,114,95,110,101,119,0,95,111,118,101,114,95,100,115,112,0,95,115,99,97,108,97,114,111,118, 101,114,95,100,115,112,0,95,111,118,101,114,95,115,101,116,117,112,0,95,109,97,120,95,110,101,119,0,95,109,97,120,95,100,115,112,0,95,115,99,97,108,97,114,109,97,120,95,100,115,112,0,95,109,97,120,95,115,101,116,117,112,0,95,109,105,110,95,110,101,119, 0,95,109,105,110,95,100,115,112,0,95,115,99,97,108,97,114,109,105,110,95,100,115,112,0,95,109,105,110,95,115,101,116,117,112,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100, 101,95,114,101,100,114,97,119,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101, 95,98,97,110,103,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,116,97,114,116,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,116,111,112,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,101,116,117, 112,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,112,108,97, 121,95,116,105,108,100,101,95,108,105,115,116,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,115,116,111,112,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,116,105,99,107,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,102,114, 101,101,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98, 114,101,97,100,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,102,114,101,101,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100, 101,95,110,101,119,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,102,114,101,101, 0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,111,115, 99,52,95,116,105,108,100,101,95,102,116,49,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,115,101,110,100,95,110,101,119,0,95,116,97,98,115, 101,110,100,95,112,101,114,102,111,114,109,0,95,116,97,98,115,101,110,100,95,100,115,112,0,95,116,97,98,115,101,110,100,95,115,101,116,117,112,0,95,116,97,98,114,101,99,101,105,118,101,95,112,101,114,102,111,114,109,0,95,116,97,98,114,101,99,101,105, 118,101,95,100,115,112,0,95,116,97,98,114,101,99,101,105,118,101,95,110,101,119,0,95,116,97,98,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,95,102,108,111,97,116,0,95,116,97,98,114,101,97,100,95,115,101,116,0,95,116, 97,98,114,101,97,100,95,110,101,119,0,95,116,97,98,114,101,97,100,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,52,95,102,108,111,97,116,0,95,116,97,98,114,101,97,100,52,95,115,101,116,0,95,116,97,98,114,101,97,100,52,95,110,101,119,0,95,116,97, 98,114,101,97,100,52,95,115,101,116,117,112,0,95,116,97,98,119,114,105,116,101,95,102,108,111,97,116,0,95,116,97,98,119,114,105,116,101,95,115,101,116,0,95,116,97,98,119,114,105,116,101,95,110,101,119,0,95,115,105,103,95,116,105,108,100,101,95,112,101, 114,102,111,114,109,0,95,115,105,103,95,116,105,108,100,101,95,112,101,114,102,56,0,95,115,105,103,95,116,105,108,100,101,95,102,108,111,97,116,0,95,115,105,103,95,116,105,108,100,101,95,100,115,112,0,95,115,105,103,95,116,105,108,100,101,95,110,101, 119,0,95,115,105,103,95,116,105,108,100,101,95,115,101,116,117,112,0,95,108,105,110,101,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,108,105,110,101,95,116,105,108,100,101,95,112,101,114,102,56,0,95,108,105,110,101,95,116,105,108,100,101, 95,102,108,111,97,116,0,95,108,105,110,101,95,116,105,108,100,101,95,115,116,111,112,0,95,108,105,110,101,95,116,105,108,100,101,95,100,115,112,0,95,108,105,110,101,95,116,105,108,100,101,95,110,101,119,0,95,108,105,110,101,95,116,105,108,100,101,95, 115,101,116,117,112,0,95,118,108,105,110,101,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,118,108,105,110,101,95,116,105,108,100,101,95,115,116,111,112,0,95,118,108,105,110,101,95,116,105,108,100,101,95,102,108,111,97,116,0,95,118,108,105, 110,101,95,116,105,108,100,101,95,100,115,112,0,95,118,108,105,110,101,95,116,105,108,100,101,95,110,101,119,0,95,118,108,105,110,101,95,116,105,108,100,101,95,115,101,116,117,112,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,110,101, 119,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,100,115,112,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,98,97,110,103,0,95,115, 110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101,116,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101,116,117,112,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,110,101,119,0,95,118,115,110,97,112,115, 104,111,116,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,100,115,112,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,98,97,110,103,0,95,118,115,110,97,112,115, 104,111,116,95,116,105,108,100,101,95,102,102,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101,116,117,112,0,95,101,110,118,95,116,105,108,100,101,95,110,101,119,0,95,101,110,118,95,116,105,108,100,101,95,112,101,114,102,111, 114,109,0,95,101,110,118,95,116,105,108,100,101,95,100,115,112,0,95,101,110,118,95,116,105,108,100,101,95,116,105,99,107,0,95,101,110,118,95,116,105,108,100,101,95,102,102,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,110,101,119, 0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,115,101,116,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,102,116,49,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,116,105,99,107,0,95,116,104, 114,101,115,104,111,108,100,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,102,102,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100, 97,99,95,110,101,119,0,95,100,97,99,95,100,115,112,0,95,100,97,99,95,102,114,101,101,0,95,100,97,99,95,115,101,116,117,112,0,95,97,100,99,95,110,101,119,0,95,97,100,99,95,100,115,112,0,95,97,100,99,95,102,114,101,101,0,95,97,100,99,95,115,101,116,117, 112,0,95,115,105,103,100,101,108,119,114,105,116,101,95,117,112,100,97,116,101,115,114,0,95,115,105,103,100,101,108,119,114,105,116,101,95,99,104,101,99,107,118,101,99,115,105,122,101,0,95,115,105,103,100,101,108,119,114,105,116,101,95,110,101,119,0, 95,115,105,103,100,101,108,119,114,105,116,101,95,112,101,114,102,111,114,109,0,95,115,105,103,100,101,108,119,114,105,116,101,95,100,115,112,0,95,115,105,103,100,101,108,119,114,105,116,101,95,102,114,101,101,0,95,115,105,103,100,101,108,119,114,105, 116,101,95,115,101,116,117,112,0,95,115,105,103,100,101,108,114,101,97,100,95,110,101,119,0,95,115,105,103,100,101,108,114,101,97,100,95,102,108,111,97,116,0,95,115,105,103,100,101,108,114,101,97,100,95,112,101,114,102,111,114,109,0,95,115,105,103,100, 101,108,114,101,97,100,95,100,115,112,0,95,115,105,103,100,101,108,114,101,97,100,95,115,101,116,117,112,0,95,115,105,103,118,100,95,110,101,119,0,95,115,105,103,118,100,95,112,101,114,102,111,114,109,0,95,115,105,103,118,100,95,100,115,112,0,95,115, 105,103,118,100,95,115,101,116,117,112,0,95,115,105,103,102,102,116,95,115,119,97,112,0,95,115,105,103,114,102,102,116,95,102,108,105,112,0,95,115,105,103,102,102,116,95,110,101,119,0,95,115,105,103,105,102,102,116,95,110,101,119,0,95,115,105,103,102, 102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,105,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,102,102,116,95,100,115,112,120,0,95,115,105,103,102,102,116,95,100,115,112,0,95,115,105,103,105,102,102,116,95,100,115,112,0,95,115, 105,103,102,102,116,95,115,101,116,117,112,0,95,115,105,103,114,102,102,116,95,110,101,119,0,95,115,105,103,114,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,114,102,102,116,95,100,115,112,0,95,115,105,103,114,102,102,116,95,115,101,116, 117,112,0,95,115,105,103,114,105,102,102,116,95,110,101,119,0,95,115,105,103,114,105,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,114,105,102,102,116,95,100,115,112,0,95,115,105,103,114,105,102,102,116,95,115,101,116,117,112,0,95,115,105, 103,102,114,97,109,112,95,110,101,119,0,95,115,105,103,102,114,97,109,112,95,112,101,114,102,111,114,109,0,95,115,105,103,102,114,97,109,112,95,100,115,112,0,95,115,105,103,102,114,97,109,112,95,115,101,116,117,112,0,95,115,105,103,104,105,112,95,110, 101,119,0,95,115,105,103,104,105,112,95,102,116,49,0,95,115,105,103,104,105,112,95,112,101,114,102,111,114,109,0,95,115,105,103,104,105,112,95,100,115,112,0,95,115,105,103,104,105,112,95,99,108,101,97,114,0,95,115,105,103,108,111,112,95,110,101,119,0, 95,115,105,103,108,111,112,95,102,116,49,0,95,115,105,103,108,111,112,95,99,108,101,97,114,0,95,115,105,103,108,111,112,95,112,101,114,102,111,114,109,0,95,115,105,103,108,111,112,95,100,115,112,0,95,115,105,103,98,112,95,110,101,119,0,95,115,105,103, 98,112,95,113,99,111,115,0,95,115,105,103,98,112,95,100,111,99,111,101,102,0,95,115,105,103,98,112,95,102,116,49,0,95,115,105,103,98,112,95,102,116,50,0,95,115,105,103,98,112,95,99,108,101,97,114,0,95,115,105,103,98,112,95,112,101,114,102,111,114,109, 0,95,115,105,103,98,112,95,100,115,112,0,95,115,105,103,98,105,113,117,97,100,95,110,101,119,0,95,115,105,103,98,105,113,117,97,100,95,112,101,114,102,111,114,109,0,95,115,105,103,98,105,113,117,97,100,95,108,105,115,116,0,95,115,105,103,98,105,113,117, 97,100,95,115,101,116,0,95,115,105,103,98,105,113,117,97,100,95,100,115,112,0,95,115,105,103,115,97,109,112,104,111,108,100,95,110,101,119,0,95,115,105,103,115,97,109,112,104,111,108,100,95,112,101,114,102,111,114,109,0,95,115,105,103,115,97,109,112, 104,111,108,100,95,100,115,112,0,95,115,105,103,115,97,109,112,104,111,108,100,95,114,101,115,101,116,0,95,115,105,103,115,97,109,112,104,111,108,100,95,115,101,116,0,95,115,105,103,114,112,111,108,101,95,110,101,119,0,95,115,105,103,114,112,111,108, 101,95,112,101,114,102,111,114,109,0,95,115,105,103,114,112,111,108,101,95,100,115,112,0,95,115,105,103,114,112,111,108,101,95,99,108,101,97,114,0,95,115,105,103,114,112,111,108,101,95,115,101,116,0,95,115,105,103,114,122,101,114,111,95,110,101,119,0, 95,115,105,103,114,122,101,114,111,95,112,101,114,102,111,114,109,0,95,115,105,103,114,122,101,114,111,95,100,115,112,0,95,115,105,103,114,122,101,114,111,95,99,108,101,97,114,0,95,115,105,103,114,122,101,114,111,95,115,101,116,0,95,115,105,103,114,122, 101,114,111,95,114,101,118,95,110,101,119,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,112,101,114,102,111,114,109,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,100,115,112,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,99, 108,101,97,114,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,115,101,116,0,95,115,105,103,99,112,111,108,101,95,110,101,119,0,95,115,105,103,99,112,111,108,101,95,112,101,114,102,111,114,109,0,95,115,105,103,99,112,111,108,101,95,100,115,112, 0,95,115,105,103,99,112,111,108,101,95,99,108,101,97,114,0,95,115,105,103,99,112,111,108,101,95,115,101,116,0,95,115,105,103,99,122,101,114,111,95,110,101,119,0,95,115,105,103,99,122,101,114,111,95,112,101,114,102,111,114,109,0,95,115,105,103,99,122, 101,114,111,95,100,115,112,0,95,115,105,103,99,122,101,114,111,95,99,108,101,97,114,0,95,115,105,103,99,122,101,114,111,95,115,101,116,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,110,101,119,0,95,115,105,103,99,122,101,114,111,95,114,101,118, 95,112,101,114,102,111,114,109,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,100,115,112,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,99,108,101,97,114,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,115,101,116,0,95,115,105,103, 115,101,110,100,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,115,105,103,115,101,110,100,95,112,101,114,102,111,114,109,0,95,115,105,103,115,101,110,100,95,100,115,112,0,95,115,105,103,115,101,110,100, 95,102,114,101,101,0,95,115,105,103,115,101,110,100,95,115,101,116,117,112,0,95,115,105,103,114,101,99,101,105,118,101,95,110,101,119,0,95,115,105,103,114,101,99,101,105,118,101,95,112,101,114,102,111,114,109,0,95,115,105,103,114,101,99,101,105,118,101, 95,112,101,114,102,56,0,95,115,105,103,114,101,99,101,105,118,101,95,115,101,116,0,95,115,105,103,114,101,99,101,105,118,101,95,100,115,112,0,95,115,105,103,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,115,105,103,99,97,116,99,104,95,110,101, 119,0,95,115,105,103,99,97,116,99,104,95,112,101,114,102,111,114,109,0,95,115,105,103,99,97,116,99,104,95,112,101,114,102,56,0,95,115,105,103,99,97,116,99,104,95,100,115,112,0,95,115,105,103,99,97,116,99,104,95,102,114,101,101,0,95,115,105,103,99,97, 116,99,104,95,115,101,116,117,112,0,95,115,105,103,116,104,114,111,119,95,110,101,119,0,95,115,105,103,116,104,114,111,119,95,112,101,114,102,111,114,109,0,95,115,105,103,116,104,114,111,119,95,115,101,116,0,95,115,105,103,116,104,114,111,119,95,100, 115,112,0,95,115,105,103,116,104,114,111,119,95,115,101,116,117,112,0,95,99,108,105,112,95,110,101,119,0,95,99,108,105,112,95,112,101,114,102,111,114,109,0,95,99,108,105,112,95,100,115,112,0,95,99,108,105,112,95,115,101,116,117,112,0,95,105,110,105,116, 95,114,115,113,114,116,0,95,115,105,103,114,115,113,114,116,95,110,101,119,0,95,115,105,103,114,115,113,114,116,95,112,101,114,102,111,114,109,0,95,115,105,103,114,115,113,114,116,95,100,115,112,0,95,115,105,103,115,113,114,116,95,110,101,119,0,95,115, 105,103,115,113,114,116,95,100,115,112,0,95,115,105,103,119,114,97,112,95,110,101,119,0,95,115,105,103,119,114,97,112,95,112,101,114,102,111,114,109,0,95,115,105,103,119,114,97,112,95,100,115,112,0,95,109,116,111,102,95,116,105,108,100,101,95,110,101, 119,0,95,109,116,111,102,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,109,116,111,102,95,116,105,108,100,101,95,100,115,112,0,95,102,116,111,109,95,116,105,108,100,101,95,110,101,119,0,95,102,116,111,109,95,116,105,108,100,101,95,112,101, 114,102,111,114,109,0,95,102,116,111,109,95,116,105,108,100,101,95,100,115,112,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,110,101,119,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,100,98,116, 111,114,109,115,95,116,105,108,100,101,95,100,115,112,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,110,101,119,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,114,109,115,116,111,100,98,95,116,105, 108,100,101,95,100,115,112,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,110,101,119,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,100,115,112, 0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,110,101,119,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,100,115,112,0,95,112,111,119,95,116, 105,108,100,101,95,110,101,119,0,95,112,111,119,95,116,105,108,100,101,95,100,115,112,0,95,112,111,119,95,116,105,108,100,101,95,115,101,116,117,112,0,95,101,120,112,95,116,105,108,100,101,95,110,101,119,0,95,101,120,112,95,116,105,108,100,101,95,100, 115,112,0,95,101,120,112,95,116,105,108,100,101,95,115,101,116,117,112,0,95,108,111,103,95,116,105,108,100,101,95,110,101,119,0,95,108,111,103,95,116,105,108,100,101,95,100,115,112,0,95,108,111,103,95,116,105,108,100,101,95,115,101,116,117,112,0,95,97, 98,115,95,116,105,108,100,101,95,110,101,119,0,95,97,98,115,95,116,105,108,100,101,95,100,115,112,0,95,97,98,115,95,116,105,108,100,101,95,115,101,116,117,112,0,95,112,114,105,110,116,95,112,101,114,102,111,114,109,0,95,112,114,105,110,116,95,100,115, 112,0,95,112,114,105,110,116,95,102,108,111,97,116,0,95,112,114,105,110,116,95,98,97,110,103,0,95,112,114,105,110,116,95,110,101,119,0,95,112,114,105,110,116,95,115,101,116,117,112,0,95,98,97,110,103,95,116,105,108,100,101,95,112,101,114,102,111,114, 109,0,95,98,97,110,103,95,116,105,108,100,101,95,100,115,112,0,95,98,97,110,103,95,116,105,108,100,101,95,116,105,99,107,0,95,98,97,110,103,95,116,105,108,100,101,95,102,114,101,101,0,95,98,97,110,103,95,116,105,108,100,101,95,110,101,119,0,95,98,97, 110,103,95,116,105,108,100,101,95,115,101,116,117,112,0,95,112,104,97,115,111,114,95,110,101,119,0,95,112,104,97,115,111,114,95,112,101,114,102,111,114,109,0,95,112,104,97,115,111,114,95,100,115,112,0,95,112,104,97,115,111,114,95,102,116,49,0,95,112, 104,97,115,111,114,95,115,101,116,117,112,0,95,99,111,115,95,110,101,119,0,95,99,111,115,95,112,101,114,102,111,114,109,0,95,99,111,115,95,100,115,112,0,95,99,111,115,95,109,97,107,101,116,97,98,108,101,0,95,99,111,115,95,115,101,116,117,112,0,95,111, 115,99,95,110,101,119,0,95,111,115,99,95,112,101,114,102,111,114,109,0,95,111,115,99,95,100,115,112,0,95,111,115,99,95,102,116,49,0,95,111,115,99,95,115,101,116,117,112,0,95,115,105,103,118,99,102,95,110,101,119,0,95,115,105,103,118,99,102,95,102,116, 49,0,95,115,105,103,118,99,102,95,112,101,114,102,111,114,109,0,95,115,105,103,118,99,102,95,100,115,112,0,95,110,111,105,115,101,95,110,101,119,0,95,110,111,105,115,101,95,112,101,114,102,111,114,109,0,95,110,111,105,115,101,95,100,115,112,0,95,110, 111,105,115,101,95,115,101,116,117,112,0,95,115,119,97,112,52,0,95,115,119,97,112,50,0,95,115,119,97,112,115,116,114,105,110,103,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,105,110,95,115,97,109,112,108,101,0,95,115,111,117,110,100,102, 105,108,101,95,120,102,101,114,105,110,95,102,108,111,97,116,0,95,115,111,117,110,100,102,105,108,101,114,95,119,114,105,116,101,97,114,103,112,97,114,115,101,0,95,99,114,101,97,116,101,95,115,111,117,110,100,102,105,108,101,0,95,95,95,105,110,108,105, 110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110, 99,112,121,95,99,104,107,0,95,115,111,117,110,100,102,105,108,101,95,102,105,110,105,115,104,119,114,105,116,101,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,111,117,116,95,115,97,109,112,108,101,0,95,115,111,117,110,100,102,105,108,101, 95,120,102,101,114,111,117,116,95,102,108,111,97,116,0,95,115,111,117,110,100,102,105,108,101,114,95,110,101,119,0,95,115,111,117,110,100,102,105,108,101,114,95,114,101,97,100,0,95,115,111,117,110,100,102,105,108,101,114,95,119,114,105,116,101,0,95,115, 111,117,110,100,102,105,108,101,114,95,115,101,116,117,112,0,95,114,101,97,100,115,102,95,99,104,105,108,100,95,109,97,105,110,0,95,114,101,97,100,115,102,95,110,101,119,0,95,114,101,97,100,115,102,95,116,105,99,107,0,95,114,101,97,100,115,102,95,112, 101,114,102,111,114,109,0,95,114,101,97,100,115,102,95,115,116,97,114,116,0,95,114,101,97,100,115,102,95,115,116,111,112,0,95,114,101,97,100,115,102,95,102,108,111,97,116,0,95,114,101,97,100,115,102,95,111,112,101,110,0,95,114,101,97,100,115,102,95,100, 115,112,0,95,114,101,97,100,115,102,95,112,114,105,110,116,0,95,114,101,97,100,115,102,95,102,114,101,101,0,95,114,101,97,100,115,102,95,115,101,116,117,112,0,95,119,114,105,116,101,115,102,95,99,104,105,108,100,95,109,97,105,110,0,95,119,114,105,116, 101,115,102,95,110,101,119,0,95,119,114,105,116,101,115,102,95,112,101,114,102,111,114,109,0,95,119,114,105,116,101,115,102,95,115,116,97,114,116,0,95,119,114,105,116,101,115,102,95,115,116,111,112,0,95,119,114,105,116,101,115,102,95,111,112,101,110, 0,95,119,114,105,116,101,115,102,95,100,115,112,0,95,119,114,105,116,101,115,102,95,112,114,105,110,116,0,95,119,114,105,116,101,115,102,95,102,114,101,101,0,95,119,114,105,116,101,115,102,95,115,101,116,117,112,0,95,98,108,111,99,107,95,110,101,119, 0,95,98,108,111,99,107,95,115,101,116,0,95,115,119,105,116,99,104,95,110,101,119,0,95,98,108,111,99,107,95,102,108,111,97,116,0,95,98,108,111,99,107,95,98,97,110,103,0,95,98,108,111,99,107,95,112,114,111,108,111,103,0,95,98,108,111,99,107,95,101,112, 105,108,111,103,0,95,98,108,111,99,107,95,100,115,112,0,95,100,115,112,95,100,111,110,101,0,95,115,105,103,110,97,108,95,110,101,119,108,105,107,101,0,95,117,103,101,110,95,105,110,100,101,120,0,95,117,103,101,110,95,100,111,105,116,0,95,115,97,109,112, 108,101,114,97,116,101,95,116,105,108,100,101,95,98,97,110,103,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100,101,95,110,101,119,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100,101,95,115,101,116,117,112,0,95,105,101,109, 103,117,105,95,105,110,105,116,95,115,121,109,50,100,111,108,108,97,114,97,114,103,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,115,104,97, 114,112,116,111,100,111,108,108,97,114,0,95,97,114,114,97,121,95,114,101,115,105,122,101,95,97,110,100,95,114,101,100,114,97,119,0,95,103,114,97,112,104,95,115,99,97,108,97,114,0,95,103,97,114,114,97,121,95,103,101,116,97,114,114,97,121,95,102,108,111, 97,116,111,110,108,121,0,95,103,97,114,114,97,121,95,102,105,116,116,111,103,114,97,112,104,0,95,103,97,114,114,97,121,95,102,114,101,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,0,95,97,114,114,97,121,95,100,111,99,108,105,99,107,95,101,108, 101,109,101,110,116,0,95,95,95,105,110,108,105,110,101,95,109,101,109,109,111,118,101,95,99,104,107,0,95,97,114,114,97,121,95,103,101,116,114,101,99,116,0,95,103,97,114,114,97,121,95,103,101,116,114,101,99,116,0,95,103,97,114,114,97,121,95,100,105,115, 112,108,97,99,101,0,95,103,97,114,114,97,121,95,115,101,108,101,99,116,0,95,103,97,114,114,97,121,95,97,99,116,105,118,97,116,101,0,95,103,97,114,114,97,121,95,100,101,108,101,116,101,0,95,103,97,114,114,97,121,95,118,105,115,0,95,103,97,114,114,97,121, 95,99,108,105,99,107,0,95,103,97,114,114,97,121,95,115,97,118,101,0,95,103,97,114,114,97,121,95,100,111,114,101,100,114,97,119,0,95,103,97,114,114,97,121,95,99,111,110,115,116,0,95,103,97,114,114,97,121,95,100,111,102,111,0,95,103,97,114,114,97,121,95, 115,105,110,101,115,117,109,0,95,103,97,114,114,97,121,95,99,111,115,105,110,101,115,117,109,0,95,103,97,114,114,97,121,95,110,111,114,109,97,108,105,122,101,0,95,103,97,114,114,97,121,95,108,105,115,116,0,95,103,97,114,114,97,121,95,98,111,117,110,100, 115,0,95,103,97,114,114,97,121,95,120,116,105,99,107,115,0,95,103,97,114,114,97,121,95,121,116,105,99,107,115,0,95,103,97,114,114,97,121,95,120,108,97,98,101,108,0,95,103,97,114,114,97,121,95,121,108,97,98,101,108,0,95,103,97,114,114,97,121,95,114,101, 110,97,109,101,0,95,103,97,114,114,97,121,95,114,101,97,100,0,95,103,97,114,114,97,121,95,119,114,105,116,101,0,95,103,97,114,114,97,121,95,112,114,105,110,116,0,95,98,110,103,95,103,101,116,114,101,99,116,0,95,98,110,103,95,115,97,118,101,0,95,98,110, 103,95,112,114,111,112,101,114,116,105,101,115,0,95,98,110,103,95,115,101,116,0,95,98,110,103,95,98,111,117,116,49,0,95,98,110,103,95,98,111,117,116,50,0,95,98,110,103,95,98,97,110,103,0,95,98,110,103,95,98,97,110,103,50,0,95,98,110,103,95,100,105,97, 108,111,103,0,95,98,110,103,95,99,108,105,99,107,0,95,98,110,103,95,110,101,119,99,108,105,99,107,0,95,98,110,103,95,102,108,111,97,116,0,95,98,110,103,95,115,121,109,98,111,108,0,95,98,110,103,95,112,111,105,110,116,101,114,0,95,98,110,103,95,108,105, 115,116,0,95,98,110,103,95,97,110,121,116,104,105,110,103,0,95,98,110,103,95,108,111,97,100,98,97,110,103,0,95,98,110,103,95,115,105,122,101,0,95,98,110,103,95,100,101,108,116,97,0,95,98,110,103,95,112,111,115,0,95,98,110,103,95,102,108,97,115,104,116, 105,109,101,0,95,98,110,103,95,99,111,108,111,114,0,95,98,110,103,95,115,101,110,100,0,95,98,110,103,95,114,101,99,101,105,118,101,0,95,98,110,103,95,108,97,98,101,108,0,95,98,110,103,95,108,97,98,101,108,95,112,111,115,0,95,98,110,103,95,108,97,98,101, 108,95,102,111,110,116,0,95,98,110,103,95,105,110,105,116,0,95,98,110,103,95,116,105,99,107,95,104,108,100,0,95,98,110,103,95,116,105,99,107,95,98,114,107,0,95,98,110,103,95,116,105,99,107,95,108,99,107,0,95,98,110,103,95,110,101,119,0,95,95,95,105,110, 108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,98,110,103,95,102,102,0,95,99,97,110,118,97,115,95,97,100,100,116,111,108,105,115,116,0,95,99,97,110,118,97,115,95,116,97,107,101,111,102,102,108,105,115,116,0,95,95,95,105,110,108,105,110, 101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,97,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109, 115,101,116,95,99,104,107,0,95,99,97,110,118,97,115,95,99,111,111,114,100,115,0,95,99,97,110,118,97,115,95,115,101,116,98,111,117,110,100,115,0,95,99,97,110,118,97,115,95,100,111,115,101,116,98,111,117,110,100,115,0,95,99,97,110,118,97,115,95,100,114, 97,119,108,105,110,101,115,0,95,99,97,110,118,97,115,95,112,111,112,0,95,99,97,110,118,97,115,95,108,111,97,100,98,97,110,103,97,98,115,116,114,97,99,116,105,111,110,115,0,95,99,97,110,118,97,115,95,114,101,108,111,99,97,116,101,0,95,115,117,98,99,97, 110,118,97,115,95,110,101,119,0,95,99,97,110,118,97,115,95,99,108,105,99,107,0,95,99,97,110,118,97,115,95,114,101,110,97,109,101,95,109,101,116,104,111,100,0,95,116,97,98,108,101,95,110,101,119,0,95,99,97,110,118,97,115,95,100,111,100,115,112,0,95,99, 97,110,118,97,115,95,100,115,112,0,95,99,97,110,118,97,115,95,115,116,97,114,116,95,100,115,112,0,95,99,97,110,118,97,115,95,115,116,111,112,95,100,115,112,0,95,103,108,105,115,116,95,114,101,100,114,97,119,97,108,108,0,95,100,101,99,108,97,114,101,95, 110,101,119,0,95,100,101,99,108,97,114,101,95,102,114,101,101,0,95,99,97,110,118,97,115,95,99,111,109,112,108,101,116,101,112,97,116,104,0,95,99,97,110,118,97,115,95,100,101,99,108,97,114,101,0,95,103,108,105,115,116,95,99,104,101,99,107,97,110,100,100, 101,115,101,108,101,99,116,97,108,108,0,95,103,108,105,115,116,95,110,116,104,0,95,99,97,110,118,97,115,95,117,110,100,111,0,95,99,97,110,118,97,115,95,114,101,100,111,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,100,105,115,99,111, 110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,100,105,115,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,99,111,110, 110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,99,117,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,99,117,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,109,111,118,101,0,95,99,97,110,118,97,115, 95,117,110,100,111,95,109,111,118,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,112,97,115,116,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,112,97,115,116,101,0,95,103,108,105,115,116,95,100,111,114,101,108,111,97,100,0,95, 99,97,110,118,97,115,95,102,105,110,100,104,105,116,98,111,120,0,95,99,97,110,118,97,115,95,114,105,103,104,116,99,108,105,99,107,0,95,101,100,105,116,111,114,95,110,101,119,0,95,101,100,105,116,111,114,95,102,114,101,101,0,95,99,97,110,118,97,115,95, 100,111,110,101,99,97,110,118,97,115,100,105,97,108,111,103,0,95,99,97,110,118,97,115,95,100,111,110,101,95,112,111,112,117,112,0,95,99,97,110,118,97,115,95,100,111,114,101,103,105,111,110,0,95,99,97,110,118,97,115,95,100,105,115,112,108,97,99,101,115, 101,108,101,99,116,105,111,110,0,95,100,101,108,97,121,95,109,111,118,101,0,95,103,108,105,115,116,95,102,105,110,100,100,105,114,116,121,0,95,99,97,110,118,97,115,95,109,101,110,117,102,111,110,116,0,95,99,97,110,118,97,115,95,100,111,102,105,110,100, 0,95,99,97,110,118,97,115,95,102,105,110,100,0,95,99,97,110,118,97,115,95,102,105,110,100,95,97,103,97,105,110,0,95,99,97,110,118,97,115,95,102,105,110,100,95,112,97,114,101,110,116,0,95,103,108,105,115,116,95,100,111,102,105,110,100,101,114,114,111, 114,0,95,99,97,110,118,97,115,95,100,111,99,111,112,121,0,95,99,97,110,118,97,115,95,99,111,112,121,0,95,99,97,110,118,97,115,95,99,108,101,97,114,108,105,110,101,0,95,99,97,110,118,97,115,95,100,111,99,108,101,97,114,0,95,99,97,110,118,97,115,95,99, 117,116,0,95,103,108,105,115,116,95,100,111,110,101,119,108,111,97,100,98,97,110,103,115,0,95,99,97,110,118,97,115,95,100,111,112,97,115,116,101,0,95,99,97,110,118,97,115,95,112,97,115,116,101,0,95,99,97,110,118,97,115,95,100,117,112,108,105,99,97,116, 101,0,95,99,97,110,118,97,115,95,115,101,108,101,99,116,97,108,108,0,95,99,97,110,118,97,115,95,114,101,115,101,108,101,99,116,0,95,99,97,110,118,97,115,95,116,105,100,121,0,95,99,97,110,118,97,115,95,116,101,120,116,101,100,105,116,111,114,0,95,99,97, 110,118,97,115,95,100,111,102,111,110,116,0,95,99,97,110,118,97,115,95,102,111,110,116,0,95,103,108,105,115,116,95,115,101,116,108,97,115,116,120,121,0,95,103,111,98,106,95,103,101,116,120,102,111,114,115,111,114,116,0,95,103,108,105,115,116,95,109,101, 114,103,101,0,95,103,108,105,115,116,95,100,111,115,111,114,116,0,95,103,114,97,112,104,95,98,111,117,110,100,115,0,95,103,114,97,112,104,95,120,116,105,99,107,115,0,95,103,114,97,112,104,95,121,116,105,99,107,115,0,95,103,114,97,112,104,95,120,108,97, 98,101,108,0,95,103,114,97,112,104,95,121,108,97,98,101,108,0,95,103,114,97,112,104,95,118,105,115,0,95,103,114,97,112,104,95,103,114,97,112,104,114,101,99,116,0,95,103,114,97,112,104,95,103,101,116,114,101,99,116,0,95,103,114,97,112,104,95,100,105,115, 112,108,97,99,101,0,95,103,114,97,112,104,95,115,101,108,101,99,116,0,95,103,114,97,112,104,95,97,99,116,105,118,97,116,101,0,95,103,114,97,112,104,95,100,101,108,101,116,101,0,95,103,114,97,112,104,95,109,111,116,105,111,110,0,95,103,114,97,112,104, 95,99,108,105,99,107,0,95,103,117,105,99,111,110,110,101,99,116,95,102,114,101,101,0,95,103,117,105,99,111,110,110,101,99,116,95,116,105,99,107,0,95,103,117,105,99,111,110,110,101,99,116,95,97,110,121,116,104,105,110,103,0,95,103,117,105,99,111,110,110, 101,99,116,95,115,105,103,110,111,102,102,0,95,104,114,97,100,105,111,95,103,101,116,114,101,99,116,0,95,104,114,97,100,105,111,95,115,97,118,101,0,95,104,114,97,100,105,111,95,112,114,111,112,101,114,116,105,101,115,0,95,104,114,97,100,105,111,95,100, 105,97,108,111,103,0,95,104,114,97,100,105,111,95,115,101,116,0,95,104,114,97,100,105,111,95,98,97,110,103,0,95,104,114,97,100,105,111,95,102,111,117,116,0,95,104,114,97,100,105,111,95,102,108,111,97,116,0,95,104,114,97,100,105,111,95,99,108,105,99,107, 0,95,104,114,97,100,105,111,95,110,101,119,99,108,105,99,107,0,95,104,114,97,100,105,111,95,108,111,97,100,98,97,110,103,0,95,104,114,97,100,105,111,95,110,117,109,98,101,114,0,95,104,114,97,100,105,111,95,115,105,122,101,0,95,104,114,97,100,105,111, 95,100,101,108,116,97,0,95,104,114,97,100,105,111,95,112,111,115,0,95,104,114,97,100,105,111,95,99,111,108,111,114,0,95,104,114,97,100,105,111,95,115,101,110,100,0,95,104,114,97,100,105,111,95,114,101,99,101,105,118,101,0,95,104,114,97,100,105,111,95, 108,97,98,101,108,0,95,104,114,97,100,105,111,95,108,97,98,101,108,95,112,111,115,0,95,104,114,97,100,105,111,95,108,97,98,101,108,95,102,111,110,116,0,95,104,114,97,100,105,111,95,105,110,105,116,0,95,104,114,97,100,105,111,95,100,111,117,98,108,101, 95,99,104,97,110,103,101,0,95,104,114,97,100,105,111,95,115,105,110,103,108,101,95,99,104,97,110,103,101,0,95,104,114,97,100,105,111,95,100,111,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,104,114,97,100, 105,111,95,110,101,119,0,95,104,100,105,97,108,95,110,101,119,0,95,104,114,97,100,105,111,95,102,102,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,117,112,100,97,116,101,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,110,101,119,0,95,104, 115,108,105,100,101,114,95,100,114,97,119,95,109,111,118,101,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,101,114,97,115,101,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,99,111,110,102,105,103,0,95,104,115,108,105,100,101,114,95,100, 114,97,119,95,105,111,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,115,101,108,101,99,116,0,95,104,115,108,105,100,101,114,95,103,101,116,114,101,99,116,0,95,104,115,108,105,100,101,114,95,115,97,118,101,0,95,104,115,108,105,100,101,114,95,112, 114,111,112,101,114,116,105,101,115,0,95,104,115,108,105,100,101,114,95,115,101,116,0,95,104,115,108,105,100,101,114,95,98,97,110,103,0,95,104,115,108,105,100,101,114,95,100,105,97,108,111,103,0,95,104,115,108,105,100,101,114,95,109,111,116,105,111,110, 0,95,104,115,108,105,100,101,114,95,99,108,105,99,107,0,95,104,115,108,105,100,101,114,95,110,101,119,99,108,105,99,107,0,95,104,115,108,105,100,101,114,95,115,105,122,101,0,95,104,115,108,105,100,101,114,95,100,101,108,116,97,0,95,104,115,108,105,100, 101,114,95,112,111,115,0,95,104,115,108,105,100,101,114,95,114,97,110,103,101,0,95,104,115,108,105,100,101,114,95,99,111,108,111,114,0,95,104,115,108,105,100,101,114,95,115,101,110,100,0,95,104,115,108,105,100,101,114,95,114,101,99,101,105,118,101,0, 95,104,115,108,105,100,101,114,95,108,97,98,101,108,0,95,104,115,108,105,100,101,114,95,108,97,98,101,108,95,112,111,115,0,95,104,115,108,105,100,101,114,95,108,97,98,101,108,95,102,111,110,116,0,95,104,115,108,105,100,101,114,95,108,111,103,0,95,104, 115,108,105,100,101,114,95,108,105,110,0,95,104,115,108,105,100,101,114,95,105,110,105,116,0,95,104,115,108,105,100,101,114,95,115,116,101,97,100,121,0,95,104,115,108,105,100,101,114,95,102,108,111,97,116,0,95,104,115,108,105,100,101,114,95,108,111,97, 100,98,97,110,103,0,95,104,115,108,105,100,101,114,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,104,115,108,105,100,101,114,95,102,114,101,101,0,95,118,105,110,108,101,116,95,110,101,119,0,95,118,105, 110,108,101,116,95,98,97,110,103,0,95,118,105,110,108,101,116,95,112,111,105,110,116,101,114,0,95,118,105,110,108,101,116,95,102,108,111,97,116,0,95,118,105,110,108,101,116,95,115,121,109,98,111,108,0,95,118,105,110,108,101,116,95,108,105,115,116,0,95, 118,105,110,108,101,116,95,97,110,121,116,104,105,110,103,0,95,118,105,110,108,101,116,95,102,114,101,101,0,95,118,105,110,108,101,116,95,100,115,112,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,118,105,110,108,101, 116,95,110,101,119,115,105,103,0,95,118,105,110,108,101,116,95,115,101,116,117,112,0,95,118,111,117,116,108,101,116,95,110,101,119,0,95,118,111,117,116,108,101,116,95,98,97,110,103,0,95,118,111,117,116,108,101,116,95,112,111,105,110,116,101,114,0,95, 118,111,117,116,108,101,116,95,102,108,111,97,116,0,95,118,111,117,116,108,101,116,95,115,121,109,98,111,108,0,95,118,111,117,116,108,101,116,95,108,105,115,116,0,95,118,111,117,116,108,101,116,95,97,110,121,116,104,105,110,103,0,95,118,111,117,116,108, 101,116,95,102,114,101,101,0,95,118,111,117,116,108,101,116,95,100,111,101,112,105,108,111,103,0,95,118,111,117,116,108,101,116,95,100,111,101,112,105,108,111,103,95,114,101,115,97,109,112,108,105,110,103,0,95,118,111,117,116,108,101,116,95,100,115,112, 0,95,118,111,117,116,108,101,116,95,110,101,119,115,105,103,0,95,118,111,117,116,108,101,116,95,115,101,116,117,112,0,95,109,121,95,99,97,110,118,97,115,95,103,101,116,114,101,99,116,0,95,109,121,95,99,97,110,118,97,115,95,115,97,118,101,0,95,109,121, 95,99,97,110,118,97,115,95,112,114,111,112,101,114,116,105,101,115,0,95,109,121,95,99,97,110,118,97,115,95,103,101,116,95,112,111,115,0,95,109,121,95,99,97,110,118,97,115,95,100,105,97,108,111,103,0,95,109,121,95,99,97,110,118,97,115,95,115,105,122,101, 0,95,109,121,95,99,97,110,118,97,115,95,100,101,108,116,97,0,95,109,121,95,99,97,110,118,97,115,95,112,111,115,0,95,109,121,95,99,97,110,118,97,115,95,118,105,115,95,115,105,122,101,0,95,109,121,95,99,97,110,118,97,115,95,99,111,108,111,114,0,95,109, 121,95,99,97,110,118,97,115,95,115,101,110,100,0,95,109,121,95,99,97,110,118,97,115,95,114,101,99,101,105,118,101,0,95,109,121,95,99,97,110,118,97,115,95,108,97,98,101,108,0,95,109,121,95,99,97,110,118,97,115,95,108,97,98,101,108,95,112,111,115,0,95, 109,121,95,99,97,110,118,97,115,95,108,97,98,101,108,95,102,111,110,116,0,95,109,121,95,99,97,110,118,97,115,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,109,121,95,99,97,110,118,97,115,95,102,102,0,95, 109,121,95,110,117,109,98,111,120,95,116,105,99,107,95,114,101,115,101,116,0,95,109,121,95,110,117,109,98,111,120,95,116,105,99,107,95,119,97,105,116,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,117,112,100,97,116,101,0,95,109,121,95,110, 117,109,98,111,120,95,100,114,97,119,95,110,101,119,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,109,111,118,101,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,101,114,97,115,101,0,95,109,121,95,110,117,109,98,111,120,95,100, 114,97,119,95,99,111,110,102,105,103,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,105,111,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,115,101,108,101,99,116,0,95,109,121,95,110,117,109,98,111,120,95,103,101,116,114,101, 99,116,0,95,109,121,95,110,117,109,98,111,120,95,115,97,118,101,0,95,109,121,95,110,117,109,98,111,120,95,112,114,111,112,101,114,116,105,101,115,0,95,109,121,95,110,117,109,98,111,120,95,98,97,110,103,0,95,109,121,95,110,117,109,98,111,120,95,100,105, 97,108,111,103,0,95,109,121,95,110,117,109,98,111,120,95,109,111,116,105,111,110,0,95,109,121,95,110,117,109,98,111,120,95,99,108,105,99,107,0,95,109,121,95,110,117,109,98,111,120,95,110,101,119,99,108,105,99,107,0,95,109,121,95,110,117,109,98,111,120, 95,115,101,116,0,95,109,121,95,110,117,109,98,111,120,95,108,111,103,95,104,101,105,103,104,116,0,95,109,121,95,110,117,109,98,111,120,95,102,108,111,97,116,0,95,109,121,95,110,117,109,98,111,120,95,115,105,122,101,0,95,109,121,95,110,117,109,98,111, 120,95,100,101,108,116,97,0,95,109,121,95,110,117,109,98,111,120,95,112,111,115,0,95,109,121,95,110,117,109,98,111,120,95,114,97,110,103,101,0,95,109,121,95,110,117,109,98,111,120,95,99,111,108,111,114,0,95,109,121,95,110,117,109,98,111,120,95,115,101, 110,100,0,95,109,121,95,110,117,109,98,111,120,95,114,101,99,101,105,118,101,0,95,109,121,95,110,117,109,98,111,120,95,108,97,98,101,108,0,95,109,121,95,110,117,109,98,111,120,95,108,97,98,101,108,95,112,111,115,0,95,109,121,95,110,117,109,98,111,120, 95,108,97,98,101,108,95,102,111,110,116,0,95,109,121,95,110,117,109,98,111,120,95,108,111,103,0,95,109,121,95,110,117,109,98,111,120,95,108,105,110,0,95,109,121,95,110,117,109,98,111,120,95,105,110,105,116,0,95,109,121,95,110,117,109,98,111,120,95,108, 111,97,100,98,97,110,103,0,95,109,121,95,110,117,109,98,111,120,95,107,101,121,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,109,121,95,110,117,109,98,111,120,95,108,105,115,116,0,95,109,121,95,110,117,109,98,111,120, 95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,109,121,95,110,117,109,98,111,120,95,102,114,101,101,0,95,99,97,110,118,97,115,95,115,99,97,110,98,105,110,98,117,102,0,95,99,97,110,118,97,115,95,114,101, 97,100,101,114,114,111,114,0,95,103,108,105,115,116,95,114,101,97,100,97,116,111,109,115,0,95,103,108,105,115,116,95,100,111,114,101,97,100,0,95,103,108,105,115,116,95,119,114,105,116,101,108,105,115,116,0,95,99,97,110,118,97,115,95,97,100,100,116,101, 109,112,108,97,116,101,115,102,111,114,115,99,97,108,97,114,0,95,99,97,110,118,97,115,95,97,100,100,116,101,109,112,108,97,116,101,115,102,111,114,108,105,115,116,0,95,103,108,105,115,116,95,119,114,105,116,101,0,95,99,97,110,118,97,115,95,115,97,118, 101,116,111,0,95,99,97,110,118,97,115,95,99,111,108,108,101,99,116,116,101,109,112,108,97,116,101,115,102,111,114,0,95,99,97,110,118,97,115,95,115,97,118,101,116,101,109,112,108,97,116,101,115,116,111,0,95,99,97,110,118,97,115,95,115,97,118,101,116,111, 102,105,108,101,0,95,99,97,110,118,97,115,95,109,101,110,117,115,97,118,101,97,115,0,95,99,97,110,118,97,115,95,109,101,110,117,115,97,118,101,0,95,114,116,101,120,116,95,103,101,116,116,121,112,101,0,95,102,105,114,115,116,111,110,101,0,95,108,97,115, 116,111,110,101,0,95,114,116,101,120,116,95,115,101,110,100,105,116,117,112,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,115,99,97,108,97,114,95,103,101,116,114,101,99,116,0,95,115,99,97,108,97,114,95,100,114,97, 119,115,101,108,101,99,116,114,101,99,116,0,95,115,99,97,108,97,114,95,115,101,108,101,99,116,0,95,115,99,97,108,97,114,95,100,105,115,112,108,97,99,101,0,95,115,99,97,108,97,114,95,97,99,116,105,118,97,116,101,0,95,115,99,97,108,97,114,95,100,101,108, 101,116,101,0,95,115,99,97,108,97,114,95,118,105,115,0,95,115,99,97,108,97,114,95,100,111,114,101,100,114,97,119,0,95,115,99,97,108,97,114,95,99,108,105,99,107,0,95,115,99,97,108,97,114,95,115,97,118,101,0,95,115,99,97,108,97,114,95,112,114,111,112,101, 114,116,105,101,115,0,95,115,99,97,108,97,114,95,102,114,101,101,0,95,100,97,116,97,115,108,111,116,95,109,97,116,99,104,101,115,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,119,111,114,100,115,0,95,116,101,109,112,108,97,116,101, 95,99,111,110,102,111,114,109,115,99,97,108,97,114,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,97,114,114,97,121,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,103,108,105,115,116,0,95,116,101,109,112,108,97,116, 101,95,117,115,101,116,101,109,112,108,97,116,101,0,95,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,103,116,101,109,112,108,97,116,101,95,100,111,110,101,119,0,95,103,116,101,109,112,108,97,116,101,95,110,101,119,0,95,103,116,101,109,112, 108,97,116,101,95,110,101,119,95,111,108,100,0,95,103,116,101,109,112,108,97,116,101,95,102,114,101,101,0,95,103,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,102,108,111,97,116,95,99,111, 110,115,116,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,115,121,109,98,111,108,95,99,111,110,115,116,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,102,108,111,97,116,95,118,97,114,0,95,102,105,101,108,100,100,101,115,99,95,115,101, 116,102,108,111,97,116,97,114,103,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,115,121,109,98,111,108,97,114,103,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,97,114,114,97,121,97,114,103,0,95,102,105,101,108,100,100,101,115,99,95, 103,101,116,102,108,111,97,116,0,95,102,105,101,108,100,100,101,115,99,95,103,101,116,115,121,109,98,111,108,0,95,99,117,114,118,101,95,110,101,119,0,95,99,117,114,118,101,95,103,101,116,114,101,99,116,0,95,99,117,114,118,101,95,100,105,115,112,108,97, 99,101,0,95,99,117,114,118,101,95,115,101,108,101,99,116,0,95,99,117,114,118,101,95,97,99,116,105,118,97,116,101,0,95,114,97,110,103,101,99,111,108,111,114,0,95,110,117,109,98,101,114,116,111,99,111,108,111,114,0,95,99,117,114,118,101,95,118,105,115, 0,95,99,117,114,118,101,95,109,111,116,105,111,110,0,95,99,117,114,118,101,95,99,108,105,99,107,0,95,99,117,114,118,101,95,102,114,101,101,0,95,99,117,114,118,101,95,115,101,116,117,112,0,95,112,108,111,116,95,110,101,119,0,95,112,108,111,116,95,114, 101,97,100,111,119,110,101,114,116,101,109,112,108,97,116,101,0,95,112,108,111,116,95,103,101,116,114,101,99,116,0,95,112,108,111,116,95,100,105,115,112,108,97,99,101,0,95,112,108,111,116,95,115,101,108,101,99,116,0,95,112,108,111,116,95,97,99,116,105, 118,97,116,101,0,95,112,108,111,116,95,118,105,115,0,95,112,108,111,116,95,99,108,105,99,107,0,95,112,108,111,116,95,115,101,116,117,112,0,95,100,114,97,119,110,117,109,98,101,114,95,110,101,119,0,95,100,114,97,119,110,117,109,98,101,114,95,115,112,114, 105,110,116,102,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,100,114,97,119,110,117,109,98,101,114,95,103,101,116,114,101,99,116,0,95,100,114,97,119,110,117,109,98,101,114,95,100,105,115,112,108,97,99,101,0,95,100, 114,97,119,110,117,109,98,101,114,95,115,101,108,101,99,116,0,95,100,114,97,119,110,117,109,98,101,114,95,97,99,116,105,118,97,116,101,0,95,100,114,97,119,110,117,109,98,101,114,95,118,105,115,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116, 105,111,110,0,95,100,114,97,119,110,117,109,98,101,114,95,107,101,121,0,95,100,114,97,119,110,117,109,98,101,114,95,99,108,105,99,107,0,95,100,114,97,119,110,117,109,98,101,114,95,102,114,101,101,0,95,100,114,97,119,110,117,109,98,101,114,95,115,101, 116,117,112,0,95,99,97,110,118,97,115,95,111,98,106,116,101,120,116,0,95,99,97,110,118,97,115,95,104,111,119,112,117,116,110,101,119,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,98,97,110,103,0,95,109,101,115,115,114,101,115,112,111,110, 100,101,114,95,102,108,111,97,116,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,115,121,109,98,111,108,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,108,105,115,116,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114, 95,97,110,121,116,104,105,110,103,0,95,109,101,115,115,97,103,101,95,98,97,110,103,0,95,109,101,115,115,97,103,101,95,102,108,111,97,116,0,95,109,101,115,115,97,103,101,95,115,121,109,98,111,108,0,95,109,101,115,115,97,103,101,95,108,105,115,116,0,95, 109,101,115,115,97,103,101,95,115,101,116,0,95,109,101,115,115,97,103,101,95,97,100,100,50,0,95,109,101,115,115,97,103,101,95,97,100,100,0,95,109,101,115,115,97,103,101,95,97,100,100,99,111,109,109,97,0,95,109,101,115,115,97,103,101,95,97,100,100,115, 101,109,105,0,95,109,101,115,115,97,103,101,95,97,100,100,100,111,108,108,97,114,0,95,109,101,115,115,97,103,101,95,97,100,100,100,111,108,108,115,121,109,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,109,101,115, 115,97,103,101,95,99,108,105,99,107,0,95,109,101,115,115,97,103,101,95,116,105,99,107,0,95,109,101,115,115,97,103,101,95,102,114,101,101,0,95,103,97,116,111,109,95,101,115,99,97,112,105,116,0,95,103,97,116,111,109,95,117,110,101,115,99,97,112,105,116, 0,95,103,97,116,111,109,95,114,101,100,114,97,119,0,95,103,97,116,111,109,95,114,101,116,101,120,116,0,95,103,97,116,111,109,95,115,101,116,0,95,103,97,116,111,109,95,98,97,110,103,0,95,103,97,116,111,109,95,102,108,111,97,116,0,95,103,97,116,111,109, 95,99,108,105,112,102,108,111,97,116,0,95,103,97,116,111,109,95,115,121,109,98,111,108,0,95,103,97,116,111,109,95,108,105,115,116,0,95,103,97,116,111,109,95,109,111,116,105,111,110,0,95,103,97,116,111,109,95,107,101,121,0,95,103,97,116,111,109,95,99, 108,105,99,107,0,95,103,97,116,111,109,95,112,97,114,97,109,0,95,103,97,116,111,109,95,103,101,116,119,104,101,114,101,108,97,98,101,108,0,95,103,97,116,111,109,95,100,105,115,112,108,97,99,101,0,95,103,97,116,111,109,95,118,105,115,0,95,103,97,116,111, 109,95,102,114,101,101,0,95,103,97,116,111,109,95,112,114,111,112,101,114,116,105,101,115,0,95,116,101,120,116,95,103,101,116,114,101,99,116,0,95,116,101,120,116,95,100,105,115,112,108,97,99,101,0,95,116,101,120,116,95,115,101,108,101,99,116,0,95,116, 101,120,116,95,97,99,116,105,118,97,116,101,0,95,116,101,120,116,95,100,101,108,101,116,101,0,95,116,101,120,116,95,118,105,115,0,95,116,101,120,116,95,99,108,105,99,107,0,95,116,101,120,116,95,97,110,121,116,104,105,110,103,0,95,116,111,103,103,108, 101,95,103,101,116,114,101,99,116,0,95,116,111,103,103,108,101,95,115,97,118,101,0,95,116,111,103,103,108,101,95,112,114,111,112,101,114,116,105,101,115,0,95,116,111,103,103,108,101,95,98,97,110,103,0,95,116,111,103,103,108,101,95,100,105,97,108,111, 103,0,95,116,111,103,103,108,101,95,99,108,105,99,107,0,95,116,111,103,103,108,101,95,110,101,119,99,108,105,99,107,0,95,116,111,103,103,108,101,95,115,101,116,0,95,116,111,103,103,108,101,95,102,108,111,97,116,0,95,116,111,103,103,108,101,95,102,111, 117,116,0,95,116,111,103,103,108,101,95,108,111,97,100,98,97,110,103,0,95,116,111,103,103,108,101,95,115,105,122,101,0,95,116,111,103,103,108,101,95,100,101,108,116,97,0,95,116,111,103,103,108,101,95,112,111,115,0,95,116,111,103,103,108,101,95,99,111, 108,111,114,0,95,116,111,103,103,108,101,95,115,101,110,100,0,95,116,111,103,103,108,101,95,114,101,99,101,105,118,101,0,95,116,111,103,103,108,101,95,108,97,98,101,108,0,95,116,111,103,103,108,101,95,108,97,98,101,108,95,102,111,110,116,0,95,116,111, 103,103,108,101,95,108,97,98,101,108,95,112,111,115,0,95,116,111,103,103,108,101,95,105,110,105,116,0,95,116,111,103,103,108,101,95,110,111,110,122,101,114,111,0,95,116,111,103,103,108,101,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116, 114,99,112,121,95,99,104,107,0,95,116,111,103,103,108,101,95,102,102,0,95,103,115,116,117,98,95,100,105,115,0,95,103,112,111,105,110,116,101,114,95,103,101,116,116,101,109,112,108,97,116,101,115,121,109,0,95,112,116,114,111,98,106,95,110,101,119,0,95, 112,116,114,111,98,106,95,116,114,97,118,101,114,115,101,0,95,112,116,114,111,98,106,95,118,110,101,120,116,0,95,112,116,114,111,98,106,95,110,101,120,116,0,95,112,116,114,111,98,106,95,115,101,110,100,119,105,110,100,111,119,0,95,112,116,114,111,98, 106,95,98,97,110,103,0,95,112,116,114,111,98,106,95,112,111,105,110,116,101,114,0,95,112,116,114,111,98,106,95,114,101,119,105,110,100,0,95,112,116,114,111,98,106,95,102,114,101,101,0,95,112,116,114,111,98,106,95,115,101,116,117,112,0,95,103,101,116, 95,110,101,119,0,95,103,101,116,95,112,111,105,110,116,101,114,0,95,103,101,116,95,102,114,101,101,0,95,103,101,116,95,115,101,116,117,112,0,95,115,101,116,95,110,101,119,0,95,115,101,116,95,98,97,110,103,0,95,115,101,116,95,102,108,111,97,116,0,95,115, 101,116,95,115,121,109,98,111,108,0,95,115,101,116,95,102,114,101,101,0,95,115,101,116,95,115,101,116,117,112,0,95,101,108,101,109,95,110,101,119,0,95,101,108,101,109,95,102,108,111,97,116,0,95,101,108,101,109,95,102,114,101,101,0,95,101,108,101,109, 95,115,101,116,117,112,0,95,103,101,116,115,105,122,101,95,110,101,119,0,95,103,101,116,115,105,122,101,95,112,111,105,110,116,101,114,0,95,103,101,116,115,105,122,101,95,115,101,116,117,112,0,95,115,101,116,115,105,122,101,95,110,101,119,0,95,115,101, 116,115,105,122,101,95,102,108,111,97,116,0,95,115,101,116,115,105,122,101,95,102,114,101,101,0,95,115,101,116,115,105,122,101,95,115,101,116,117,112,0,95,97,112,112,101,110,100,95,110,101,119,0,95,97,112,112,101,110,100,95,102,108,111,97,116,0,95,97, 112,112,101,110,100,95,102,114,101,101,0,95,97,112,112,101,110,100,95,115,101,116,117,112,0,95,115,117,98,108,105,115,116,95,110,101,119,0,95,115,117,98,108,105,115,116,95,112,111,105,110,116,101,114,0,95,115,117,98,108,105,115,116,95,102,114,101,101, 0,95,115,117,98,108,105,115,116,95,115,101,116,117,112,0,95,118,114,97,100,105,111,95,103,101,116,114,101,99,116,0,95,118,114,97,100,105,111,95,115,97,118,101,0,95,118,114,97,100,105,111,95,112,114,111,112,101,114,116,105,101,115,0,95,118,114,97,100, 105,111,95,100,105,97,108,111,103,0,95,118,114,97,100,105,111,95,115,101,116,0,95,118,114,97,100,105,111,95,98,97,110,103,0,95,118,114,97,100,105,111,95,102,111,117,116,0,95,118,114,97,100,105,111,95,102,108,111,97,116,0,95,118,114,97,100,105,111,95, 99,108,105,99,107,0,95,118,114,97,100,105,111,95,110,101,119,99,108,105,99,107,0,95,118,114,97,100,105,111,95,108,111,97,100,98,97,110,103,0,95,118,114,97,100,105,111,95,110,117,109,98,101,114,0,95,118,114,97,100,105,111,95,115,105,122,101,0,95,118,114, 97,100,105,111,95,100,101,108,116,97,0,95,118,114,97,100,105,111,95,112,111,115,0,95,118,114,97,100,105,111,95,99,111,108,111,114,0,95,118,114,97,100,105,111,95,115,101,110,100,0,95,118,114,97,100,105,111,95,114,101,99,101,105,118,101,0,95,118,114,97, 100,105,111,95,108,97,98,101,108,0,95,118,114,97,100,105,111,95,108,97,98,101,108,95,112,111,115,0,95,118,114,97,100,105,111,95,108,97,98,101,108,95,102,111,110,116,0,95,118,114,97,100,105,111,95,105,110,105,116,0,95,118,114,97,100,105,111,95,100,111, 117,98,108,101,95,99,104,97,110,103,101,0,95,118,114,97,100,105,111,95,115,105,110,103,108,101,95,99,104,97,110,103,101,0,95,118,114,97,100,105,111,95,100,111,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95, 118,114,97,100,105,111,95,110,101,119,0,95,118,100,105,97,108,95,110,101,119,0,95,118,114,97,100,105,111,95,102,102,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,110, 101,119,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,109,111,118,101,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,101,114,97,115,101,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,99,111,110,102,105,103,0,95,118,115,108,105,100, 101,114,95,100,114,97,119,95,105,111,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,115,108,105,100,101,114,95,103,101,116,114,101,99,116,0,95,118,115,108,105,100,101,114,95,115,97,118,101,0,95,118,115,108,105,100, 101,114,95,112,114,111,112,101,114,116,105,101,115,0,95,118,115,108,105,100,101,114,95,98,97,110,103,0,95,118,115,108,105,100,101,114,95,100,105,97,108,111,103,0,95,118,115,108,105,100,101,114,95,109,111,116,105,111,110,0,95,118,115,108,105,100,101,114, 95,99,108,105,99,107,0,95,118,115,108,105,100,101,114,95,110,101,119,99,108,105,99,107,0,95,118,115,108,105,100,101,114,95,115,101,116,0,95,118,115,108,105,100,101,114,95,102,108,111,97,116,0,95,118,115,108,105,100,101,114,95,115,105,122,101,0,95,118, 115,108,105,100,101,114,95,100,101,108,116,97,0,95,118,115,108,105,100,101,114,95,112,111,115,0,95,118,115,108,105,100,101,114,95,114,97,110,103,101,0,95,118,115,108,105,100,101,114,95,99,111,108,111,114,0,95,118,115,108,105,100,101,114,95,115,101,110, 100,0,95,118,115,108,105,100,101,114,95,114,101,99,101,105,118,101,0,95,118,115,108,105,100,101,114,95,108,97,98,101,108,0,95,118,115,108,105,100,101,114,95,108,97,98,101,108,95,112,111,115,0,95,118,115,108,105,100,101,114,95,108,97,98,101,108,95,102, 111,110,116,0,95,118,115,108,105,100,101,114,95,108,111,103,0,95,118,115,108,105,100,101,114,95,108,105,110,0,95,118,115,108,105,100,101,114,95,105,110,105,116,0,95,118,115,108,105,100,101,114,95,115,116,101,97,100,121,0,95,118,115,108,105,100,101,114, 95,108,111,97,100,98,97,110,103,0,95,118,115,108,105,100,101,114,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,118,115,108,105,100,101,114,95,102,114,101,101,0,95,118,117,95,117,112,100,97,116,101,95,114, 109,115,0,95,118,117,95,117,112,100,97,116,101,95,112,101,97,107,0,95,118,117,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,117,95,100,114,97,119,95,110,101,119,0,95,118,117,95,100,114,97,119,95,109,111,118,101,0,95,118,117,95,100,114,97,119,95, 101,114,97,115,101,0,95,118,117,95,100,114,97,119,95,99,111,110,102,105,103,0,95,118,117,95,100,114,97,119,95,105,111,0,95,118,117,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,117,95,103,101,116,114,101,99,116,0,95,118,117,95,115,97,118,101,0, 95,118,117,95,115,99,97,108,101,0,95,118,117,95,112,114,111,112,101,114,116,105,101,115,0,95,118,117,95,100,105,97,108,111,103,0,95,118,117,95,115,105,122,101,0,95,118,117,95,100,101,108,116,97,0,95,118,117,95,112,111,115,0,95,118,117,95,99,111,108,111, 114,0,95,118,117,95,114,101,99,101,105,118,101,0,95,118,117,95,108,97,98,101,108,0,95,118,117,95,108,97,98,101,108,95,112,111,115,0,95,118,117,95,108,97,98,101,108,95,102,111,110,116,0,95,118,117,95,102,108,111,97,116,0,95,118,117,95,102,116,49,0,95, 118,117,95,98,97,110,103,0,95,118,117,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,118,117,95,102,114,101,101,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,105, 110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,98,105,110,98,117,102,95,100,111, 111,112,101,110,0,95,98,105,110,98,117,102,95,100,111,102,111,112,101,110,0,95,98,105,110,98,117,102,95,99,111,110,118,101,114,116,0,95,112,100,95,100,101,102,97,117,108,116,97,110,121,116,104,105,110,103,0,95,112,100,95,100,101,102,97,117,108,116,98, 97,110,103,0,95,112,100,95,100,101,102,97,117,108,116,112,111,105,110,116,101,114,0,95,112,100,95,100,101,102,97,117,108,116,102,108,111,97,116,0,95,112,100,95,100,101,102,97,117,108,116,115,121,109,98,111,108,0,95,112,100,95,100,101,102,97,117,108,116, 108,105,115,116,0,95,112,100,95,102,108,111,97,116,102,111,114,115,105,103,110,97,108,0,95,99,108,97,115,115,95,110,111,115,97,118,101,102,110,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,97,100,100,102,105,108,101, 101,120,116,101,110,116,0,95,103,108,111,98,95,118,101,114,115,105,111,110,0,95,103,108,111,98,95,112,101,114,102,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116, 95,99,104,107,0,95,105,110,108,101,116,95,119,114,111,110,103,0,95,105,110,108,101,116,95,98,97,110,103,0,95,105,110,108,101,116,95,112,111,105,110,116,101,114,0,95,105,110,108,101,116,95,102,108,111,97,116,0,95,105,110,108,101,116,95,115,121,109,98, 111,108,0,95,105,110,108,101,116,95,108,105,115,116,0,95,105,110,108,101,116,95,97,110,121,116,104,105,110,103,0,95,112,111,105,110,116,101,114,105,110,108,101,116,95,112,111,105,110,116,101,114,0,95,102,108,111,97,116,105,110,108,101,116,95,102,108, 111,97,116,0,95,115,121,109,98,111,108,105,110,108,101,116,95,115,121,109,98,111,108,0,95,111,117,116,108,101,116,95,115,116,97,99,107,101,114,114,111,114,0,95,98,105,110,100,108,105,115,116,95,98,97,110,103,0,95,98,105,110,100,108,105,115,116,95,102, 108,111,97,116,0,95,98,105,110,100,108,105,115,116,95,115,121,109,98,111,108,0,95,98,105,110,100,108,105,115,116,95,112,111,105,110,116,101,114,0,95,98,105,110,100,108,105,115,116,95,108,105,115,116,0,95,98,105,110,100,108,105,115,116,95,97,110,121,116, 104,105,110,103,0,95,115,99,104,101,100,95,112,111,108,108,102,111,114,109,101,116,101,114,115,0,95,109,95,112,111,108,108,105,110,103,115,99,104,101,100,117,108,101,114,0,95,109,95,99,97,108,108,98,97,99,107,115,99,104,101,100,117,108,101,114,0,95,97, 117,100,105,111,95,105,115,111,112,101,110,0,95,97,117,100,105,111,95,105,110,105,116,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,97,117,100,105,111,95,103,101,116,100,101,118,115,0,95,115,121,115,95,108,105,115,116, 97,117,100,105,111,100,101,118,115,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,115,121,115,95,105,110,105,116,108,111,97,100,112,114,101,102, 101,114,101,110,99,101,115,0,95,115,121,115,95,103,101,116,112,114,101,102,101,114,101,110,99,101,0,95,115,121,115,95,100,111,110,101,108,111,97,100,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,105,110,105,116,115,97,118,101,112,114, 101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,112,117,116,112,114,101,102,101,114,101,110,99,101,0,95,115,121,115,95,100,111,110,101,115,97,118,101,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,100,111,109,105,99,114,111,115, 108,101,101,112,0,95,95,95,100,97,114,119,105,110,95,102,100,95,105,115,115,101,116,0,95,115,121,115,95,115,105,103,110,97,108,0,95,115,121,115,95,101,120,105,116,104,97,110,100,108,101,114,0,95,115,121,115,95,97,108,97,114,109,104,97,110,100,108,101, 114,0,95,115,121,115,95,104,117,112,104,97,110,100,108,101,114,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,100,111,114,101,97,100,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,103,101,116,117,100,112,0,95,115,121,115, 95,116,114,121,116,111,103,101,116,109,111,114,101,103,117,105,98,117,102,0,95,115,121,115,95,102,108,117,115,104,116,111,103,117,105,0,95,95,95,105,110,108,105,110,101,95,109,101,109,109,111,118,101,95,99,104,107,0,95,115,121,115,95,102,108,117,115, 104,113,117,101,117,101,0,95,115,121,115,95,112,111,108,108,95,116,111,103,117,105,0,95,95,79,83,83,119,97,112,73,110,116,49,54,0,95,115,121,115,95,100,111,95,108,111,97,100,95,108,105,98,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95, 99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,109,111,118,101,95,99,104,107,0,95,115,121,115,95,102,105,110,100,102,111,110,116,0,95,111,112,101,110,105,116,0,95,115,121,115,95,112,97,114,115,101,100,101,118,108,105,115,116,0,95,115,121, 115,95,103,101,116,109,117,108,116,105,100,101,118,99,104,97,110,110,101,108,115,0,95,115,121,115,95,97,102,116,101,114,97,114,103,112,97,114,115,101,0,95,115,121,115,95,97,100,100,114,101,102,101,114,101,110,99,101,112,97,116,104,0,95,115,121,115,95, 101,120,112,97,110,100,112,97,116,104,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,115,116,114,116,111,107,99,112,121,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,105,110, 108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,100,111,95,111,112,101,110,95,118,105,97,95,112,97,116,104,0,95,105,115,115,112,97,99,101,0,95,95,95,105,115,116,121,112,101,0,95,105,115,97,115,99,105,105,0,95,115,116,114,110,101,115,99,97, 112,101,0,95,100,111,112,111,115,116,0,95,100,111,101,114,114,111,114,0,95,100,111,118,101,114,98,111,115,101,0,95,100,111,98,117,103,0,95,109,116,111,102,95,110,101,119,0,95,109,116,111,102,95,102,108,111,97,116,0,95,102,116,111,109,95,110,101,119,0, 95,102,116,111,109,95,102,108,111,97,116,0,95,114,109,115,116,111,100,98,95,110,101,119,0,95,114,109,115,116,111,100,98,95,102,108,111,97,116,0,95,112,111,119,116,111,100,98,95,110,101,119,0,95,112,111,119,116,111,100,98,95,102,108,111,97,116,0,95,100, 98,116,111,112,111,119,95,110,101,119,0,95,100,98,116,111,112,111,119,95,102,108,111,97,116,0,95,100,98,116,111,114,109,115,95,110,101,119,0,95,100,98,116,111,114,109,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,110,101,119,0,95,98,105,110, 111,112,49,95,112,108,117,115,95,110,101,119,0,95,98,105,110,111,112,49,95,112,108,117,115,95,98,97,110,103,0,95,98,105,110,111,112,49,95,112,108,117,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,110,101,119,0,95,98,105, 110,111,112,49,95,109,105,110,117,115,95,98,97,110,103,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,110,101,119,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,98,97, 110,103,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,100,105,118,95,110,101,119,0,95,98,105,110,111,112,49,95,100,105,118,95,98,97,110,103,0,95,98,105,110,111,112,49,95,100,105,118,95,102,108,111, 97,116,0,95,98,105,110,111,112,49,95,112,111,119,95,110,101,119,0,95,98,105,110,111,112,49,95,112,111,119,95,98,97,110,103,0,95,98,105,110,111,112,49,95,112,111,119,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,109,97,120,95,110,101,119,0,95,98, 105,110,111,112,49,95,109,97,120,95,98,97,110,103,0,95,98,105,110,111,112,49,95,109,97,120,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,109,105,110,95,110,101,119,0,95,98,105,110,111,112,49,95,109,105,110,95,98,97,110,103,0,95,98,105,110,111,112, 49,95,109,105,110,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,110,101,119,0,95,98,105,110,111,112,50,95,101,101,95,110,101,119,0,95,98,105,110,111,112,50,95,101,101,95,98,97,110,103,0,95,98,105,110,111,112,50,95,101,101,95,102,108,111,97,116, 0,95,98,105,110,111,112,50,95,110,101,95,110,101,119,0,95,98,105,110,111,112,50,95,110,101,95,98,97,110,103,0,95,98,105,110,111,112,50,95,110,101,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,103,116,95,110,101,119,0,95,98,105,110,111,112,50,95, 103,116,95,98,97,110,103,0,95,98,105,110,111,112,50,95,103,116,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,108,116,95,110,101,119,0,95,98,105,110,111,112,50,95,108,116,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,116,95,102,108,111,97,116, 0,95,98,105,110,111,112,50,95,103,101,95,110,101,119,0,95,98,105,110,111,112,50,95,103,101,95,98,97,110,103,0,95,98,105,110,111,112,50,95,103,101,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,108,101,95,110,101,119,0,95,98,105,110,111,112,50,95, 108,101,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,101,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,110,101,119,0,95,98,105,110,111,112,51,95,98,97,95,110,101,119,0,95,98,105,110,111,112,50,95,98,97,95,98,97,110,103,0,95,98,105,110,111, 112,50,95,98,97,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,108,97,95,110,101,119,0,95,98,105,110,111,112,50,95,108,97,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,97,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,98,111,95,110,101, 119,0,95,98,105,110,111,112,50,95,98,111,95,98,97,110,103,0,95,98,105,110,111,112,50,95,98,111,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,108,111,95,110,101,119,0,95,98,105,110,111,112,50,95,108,111,95,98,97,110,103,0,95,98,105,110,111,112,50, 95,108,111,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,108,115,95,110,101,119,0,95,98,105,110,111,112,50,95,108,115,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,115,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,114,115,95,110,101, 119,0,95,98,105,110,111,112,50,95,114,115,95,98,97,110,103,0,95,98,105,110,111,112,50,95,114,115,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,112,99,95,110,101,119,0,95,98,105,110,111,112,50,95,112,99,95,98,97,110,103,0,95,98,105,110,111,112,50, 95,112,99,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,109,111,100,95,110,101,119,0,95,98,105,110,111,112,51,95,109,111,100,95,98,97,110,103,0,95,98,105,110,111,112,51,95,109,111,100,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,100,105, 118,95,110,101,119,0,95,98,105,110,111,112,51,95,100,105,118,95,98,97,110,103,0,95,98,105,110,111,112,51,95,100,105,118,95,102,108,111,97,116,0,95,115,105,110,95,110,101,119,0,95,115,105,110,95,102,108,111,97,116,0,95,99,111,115,95,110,101,119,0,95,99, 111,115,95,102,108,111,97,116,0,95,116,97,110,95,110,101,119,0,95,116,97,110,95,102,108,111,97,116,0,95,97,116,97,110,95,110,101,119,0,95,97,116,97,110,95,102,108,111,97,116,0,95,97,116,97,110,50,95,110,101,119,0,95,97,116,97,110,50,95,102,108,111,97, 116,0,95,115,113,114,116,95,110,101,119,0,95,115,113,114,116,95,102,108,111,97,116,0,95,108,111,103,95,110,101,119,0,95,108,111,103,95,102,108,111,97,116,0,95,101,120,112,95,110,101,119,0,95,101,120,112,95,102,108,111,97,116,0,95,97,98,115,95,110,101, 119,0,95,97,98,115,95,102,108,111,97,116,0,95,119,114,97,112,95,110,101,119,0,95,119,114,97,112,95,102,108,111,97,116,0,95,99,108,105,112,95,110,101,119,0,95,99,108,105,112,95,98,97,110,103,0,95,99,108,105,112,95,102,108,111,97,116,0,95,99,108,105,112, 95,115,101,116,117,112,0,95,112,100,105,110,116,95,110,101,119,0,95,112,100,105,110,116,95,98,97,110,103,0,95,112,100,105,110,116,95,102,108,111,97,116,0,95,112,100,102,108,111,97,116,95,110,101,119,0,95,112,100,102,108,111,97,116,95,110,101,119,50,0, 95,112,100,102,108,111,97,116,95,98,97,110,103,0,95,112,100,102,108,111,97,116,95,102,108,111,97,116,0,95,112,100,115,121,109,98,111,108,95,110,101,119,0,95,112,100,115,121,109,98,111,108,95,98,97,110,103,0,95,112,100,115,121,109,98,111,108,95,115,121, 109,98,111,108,0,95,112,100,115,121,109,98,111,108,95,97,110,121,116,104,105,110,103,0,95,112,100,115,121,109,98,111,108,95,108,105,115,116,0,95,98,97,110,103,95,110,101,119,0,95,98,97,110,103,95,110,101,119,50,0,95,98,97,110,103,95,98,97,110,103,0,95, 115,101,110,100,95,98,97,110,103,0,95,115,101,110,100,95,102,108,111,97,116,0,95,115,101,110,100,95,115,121,109,98,111,108,0,95,115,101,110,100,95,112,111,105,110,116,101,114,0,95,115,101,110,100,95,108,105,115,116,0,95,115,101,110,100,95,97,110,121, 116,104,105,110,103,0,95,115,101,110,100,95,110,101,119,0,95,115,101,110,100,95,115,101,116,117,112,0,95,114,101,99,101,105,118,101,95,98,97,110,103,0,95,114,101,99,101,105,118,101,95,102,108,111,97,116,0,95,114,101,99,101,105,118,101,95,115,121,109, 98,111,108,0,95,114,101,99,101,105,118,101,95,112,111,105,110,116,101,114,0,95,114,101,99,101,105,118,101,95,108,105,115,116,0,95,114,101,99,101,105,118,101,95,97,110,121,116,104,105,110,103,0,95,114,101,99,101,105,118,101,95,110,101,119,0,95,114,101, 99,101,105,118,101,95,102,114,101,101,0,95,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,115,101,108,49,95,102,108,111,97,116,0,95,115,101,108,49,95,115,121,109,98,111,108,0,95,115,101,108,50,95,102,108,111,97,116,0,95,115,101,108,50,95,115, 121,109,98,111,108,0,95,115,101,108,50,95,102,114,101,101,0,95,115,101,108,101,99,116,95,110,101,119,0,95,114,111,117,116,101,95,97,110,121,116,104,105,110,103,0,95,114,111,117,116,101,95,108,105,115,116,0,95,114,111,117,116,101,95,102,114,101,101,0, 95,114,111,117,116,101,95,110,101,119,0,95,112,97,99,107,95,110,101,119,0,95,112,97,99,107,95,98,97,110,103,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,112,97,99,107,95,112,111,105,110,116,101,114,0,95,112,97,99,107, 95,102,108,111,97,116,0,95,112,97,99,107,95,115,121,109,98,111,108,0,95,112,97,99,107,95,108,105,115,116,0,95,112,97,99,107,95,97,110,121,116,104,105,110,103,0,95,112,97,99,107,95,102,114,101,101,0,95,112,97,99,107,95,115,101,116,117,112,0,95,117,110, 112,97,99,107,95,110,101,119,0,95,117,110,112,97,99,107,95,108,105,115,116,0,95,117,110,112,97,99,107,95,97,110,121,116,104,105,110,103,0,95,117,110,112,97,99,107,95,102,114,101,101,0,95,117,110,112,97,99,107,95,115,101,116,117,112,0,95,116,114,105,103, 103,101,114,95,110,101,119,0,95,116,114,105,103,103,101,114,95,108,105,115,116,0,95,116,114,105,103,103,101,114,95,97,110,121,116,104,105,110,103,0,95,116,114,105,103,103,101,114,95,98,97,110,103,0,95,116,114,105,103,103,101,114,95,112,111,105,110,116, 101,114,0,95,116,114,105,103,103,101,114,95,102,108,111,97,116,0,95,116,114,105,103,103,101,114,95,115,121,109,98,111,108,0,95,116,114,105,103,103,101,114,95,102,114,101,101,0,95,116,114,105,103,103,101,114,95,115,101,116,117,112,0,95,115,112,105,103, 111,116,95,110,101,119,0,95,115,112,105,103,111,116,95,98,97,110,103,0,95,115,112,105,103,111,116,95,112,111,105,110,116,101,114,0,95,115,112,105,103,111,116,95,102,108,111,97,116,0,95,115,112,105,103,111,116,95,115,121,109,98,111,108,0,95,115,112,105, 103,111,116,95,108,105,115,116,0,95,115,112,105,103,111,116,95,97,110,121,116,104,105,110,103,0,95,115,112,105,103,111,116,95,115,101,116,117,112,0,95,109,111,115,101,115,95,110,101,119,0,95,109,111,115,101,115,95,102,108,111,97,116,0,95,109,111,115, 101,115,95,115,101,116,117,112,0,95,117,110,116,105,108,95,110,101,119,0,95,117,110,116,105,108,95,98,97,110,103,0,95,117,110,116,105,108,95,102,108,111,97,116,0,95,117,110,116,105,108,95,98,97,110,103,50,0,95,117,110,116,105,108,95,115,101,116,117,112, 0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,99,97,110,102,111,114,109,97,116,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,110,101,119,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,102,108,111,97,116,0,95,109,97,107,101, 102,105,108,101,110,97,109,101,95,115,121,109,98,111,108,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,101,116,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,101,116,117,112,0,95,115,119,97,112,95,110,101,119,0,95,115,119,97,112, 95,98,97,110,103,0,95,115,119,97,112,95,102,108,111,97,116,0,95,99,104,97,110,103,101,95,110,101,119,0,95,99,104,97,110,103,101,95,98,97,110,103,0,95,99,104,97,110,103,101,95,102,108,111,97,116,0,95,99,104,97,110,103,101,95,115,101,116,0,95,118,97,108, 117,101,95,110,101,119,0,95,118,97,108,117,101,95,98,97,110,103,0,95,118,97,108,117,101,95,102,108,111,97,116,0,95,118,97,108,117,101,95,102,102,0,95,118,97,108,117,101,95,115,101,116,117,112,0,95,103,102,120,115,116,117,98,95,111,102,102,108,105,115, 116,0,95,103,102,120,115,116,117,98,95,99,97,110,99,101,108,0,95,103,102,120,115,116,117,98,95,115,105,103,110,111,102,102,0,95,103,102,120,115,116,117,98,95,100,97,116,97,0,95,103,102,120,115,116,117,98,95,101,110,100,0,95,103,102,120,115,116,117,98, 95,97,110,121,116,104,105,110,103,0,95,103,102,120,115,116,117,98,95,102,114,101,101,0,95,103,102,120,115,116,117,98,95,115,101,116,117,112,0,95,111,112,101,110,112,97,110,101,108,95,110,101,119,0,95,111,112,101,110,112,97,110,101,108,95,115,121,109, 98,111,108,0,95,111,112,101,110,112,97,110,101,108,95,98,97,110,103,0,95,111,112,101,110,112,97,110,101,108,95,99,97,108,108,98,97,99,107,0,95,111,112,101,110,112,97,110,101,108,95,102,114,101,101,0,95,111,112,101,110,112,97,110,101,108,95,115,101,116, 117,112,0,95,115,97,118,101,112,97,110,101,108,95,110,101,119,0,95,115,97,118,101,112,97,110,101,108,95,115,121,109,98,111,108,0,95,115,97,118,101,112,97,110,101,108,95,98,97,110,103,0,95,115,97,118,101,112,97,110,101,108,95,99,97,108,108,98,97,99,107, 0,95,115,97,118,101,112,97,110,101,108,95,102,114,101,101,0,95,115,97,118,101,112,97,110,101,108,95,115,101,116,117,112,0,95,107,101,121,95,110,101,119,0,95,107,101,121,95,102,108,111,97,116,0,95,107,101,121,95,102,114,101,101,0,95,107,101,121,117,112, 95,110,101,119,0,95,107,101,121,117,112,95,102,108,111,97,116,0,95,107,101,121,117,112,95,102,114,101,101,0,95,107,101,121,110,97,109,101,95,110,101,119,0,95,107,101,121,110,97,109,101,95,108,105,115,116,0,95,107,101,121,110,97,109,101,95,102,114,101, 101,0,95,107,101,121,95,115,101,116,117,112,0,95,112,114,105,110,116,95,110,101,119,0,95,112,114,105,110,116,95,98,97,110,103,0,95,112,114,105,110,116,95,112,111,105,110,116,101,114,0,95,112,114,105,110,116,95,102,108,111,97,116,0,95,112,114,105,110, 116,95,108,105,115,116,0,95,112,114,105,110,116,95,97,110,121,116,104,105,110,103,0,95,112,114,105,110,116,95,115,101,116,117,112,0,95,97,116,111,109,115,95,99,111,112,121,0,95,97,108,105,115,116,95,105,110,105,116,0,95,97,108,105,115,116,95,99,108,101, 97,114,0,95,97,108,105,115,116,95,108,105,115,116,0,95,97,108,105,115,116,95,97,110,121,116,104,105,110,103,0,95,97,108,105,115,116,95,116,111,97,116,111,109,115,0,95,97,108,105,115,116,95,99,108,111,110,101,0,95,97,108,105,115,116,95,115,101,116,117, 112,0,95,108,105,115,116,95,97,112,112,101,110,100,95,110,101,119,0,95,108,105,115,116,95,97,112,112,101,110,100,95,108,105,115,116,0,95,108,105,115,116,95,97,112,112,101,110,100,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,97,112,112,101, 110,100,95,102,114,101,101,0,95,108,105,115,116,95,97,112,112,101,110,100,95,115,101,116,117,112,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,110,101,119,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,108,105,115,116,0,95,108,105,115, 116,95,112,114,101,112,101,110,100,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,102,114,101,101,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,115,101,116,117,112,0,95,108,105,115,116,95,115,112,108, 105,116,95,110,101,119,0,95,108,105,115,116,95,115,112,108,105,116,95,108,105,115,116,0,95,108,105,115,116,95,115,112,108,105,116,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,115,112,108,105,116,95,115,101,116,117,112,0,95,108,105,115,116, 95,116,114,105,109,95,110,101,119,0,95,108,105,115,116,95,116,114,105,109,95,108,105,115,116,0,95,108,105,115,116,95,116,114,105,109,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,116,114,105,109,95,115,101,116,117,112,0,95,108,105,115,116, 95,108,101,110,103,116,104,95,110,101,119,0,95,108,105,115,116,95,108,101,110,103,116,104,95,108,105,115,116,0,95,108,105,115,116,95,108,101,110,103,116,104,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,108,101,110,103,116,104,95,115,101, 116,117,112,0,95,108,105,115,116,95,110,101,119,0,95,109,105,100,105,105,110,95,110,101,119,0,95,109,105,100,105,105,110,95,108,105,115,116,0,95,109,105,100,105,105,110,95,102,114,101,101,0,95,115,121,115,101,120,105,110,95,110,101,119,0,95,115,121,115, 101,120,105,110,95,102,114,101,101,0,95,109,105,100,105,105,110,95,115,101,116,117,112,0,95,110,111,116,101,105,110,95,110,101,119,0,95,110,111,116,101,105,110,95,108,105,115,116,0,95,110,111,116,101,105,110,95,102,114,101,101,0,95,110,111,116,101,105, 110,95,115,101,116,117,112,0,95,99,116,108,105,110,95,110,101,119,0,95,99,116,108,105,110,95,108,105,115,116,0,95,99,116,108,105,110,95,102,114,101,101,0,95,99,116,108,105,110,95,115,101,116,117,112,0,95,112,103,109,105,110,95,110,101,119,0,95,112,103, 109,105,110,95,108,105,115,116,0,95,112,103,109,105,110,95,102,114,101,101,0,95,112,103,109,105,110,95,115,101,116,117,112,0,95,98,101,110,100,105,110,95,110,101,119,0,95,98,101,110,100,105,110,95,108,105,115,116,0,95,98,101,110,100,105,110,95,102,114, 101,101,0,95,98,101,110,100,105,110,95,115,101,116,117,112,0,95,116,111,117,99,104,105,110,95,110,101,119,0,95,116,111,117,99,104,105,110,95,108,105,115,116,0,95,116,111,117,99,104,105,110,95,102,114,101,101,0,95,116,111,117,99,104,105,110,95,115,101, 116,117,112,0,95,112,111,108,121,116,111,117,99,104,105,110,95,110,101,119,0,95,112,111,108,121,116,111,117,99,104,105,110,95,108,105,115,116,0,95,112,111,108,121,116,111,117,99,104,105,110,95,102,114,101,101,0,95,112,111,108,121,116,111,117,99,104,105, 110,95,115,101,116,117,112,0,95,109,105,100,105,99,108,107,105,110,95,110,101,119,0,95,109,105,100,105,99,108,107,105,110,95,108,105,115,116,0,95,109,105,100,105,99,108,107,105,110,95,102,114,101,101,0,95,109,105,100,105,99,108,107,105,110,95,115,101, 116,117,112,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,110,101,119,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,108,105,115,116,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,102,114,101,101,0,95, 109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,115,101,116,117,112,0,95,109,105,100,105,111,117,116,95,110,101,119,0,95,109,105,100,105,111,117,116,95,102,108,111,97,116,0,95,109,105,100,105,111,117,116,95,115,101,116,117,112,0,95,110,111, 116,101,111,117,116,95,110,101,119,0,95,110,111,116,101,111,117,116,95,102,108,111,97,116,0,95,110,111,116,101,111,117,116,95,115,101,116,117,112,0,95,99,116,108,111,117,116,95,110,101,119,0,95,99,116,108,111,117,116,95,102,108,111,97,116,0,95,99,116, 108,111,117,116,95,115,101,116,117,112,0,95,112,103,109,111,117,116,95,110,101,119,0,95,112,103,109,111,117,116,95,102,108,111,97,116,0,95,112,103,109,111,117,116,95,115,101,116,117,112,0,95,98,101,110,100,111,117,116,95,110,101,119,0,95,98,101,110,100, 111,117,116,95,102,108,111,97,116,0,95,98,101,110,100,111,117,116,95,115,101,116,117,112,0,95,116,111,117,99,104,111,117,116,95,110,101,119,0,95,116,111,117,99,104,111,117,116,95,102,108,111,97,116,0,95,116,111,117,99,104,111,117,116,95,115,101,116,117, 112,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,110,101,119,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,102,108,111,97,116,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,115,101,116,117,112,0,95,109,97,107,101,110,111,116, 101,95,110,101,119,0,95,109,97,107,101,110,111,116,101,95,116,105,99,107,0,95,109,97,107,101,110,111,116,101,95,102,108,111,97,116,0,95,109,97,107,101,110,111,116,101,95,115,116,111,112,0,95,109,97,107,101,110,111,116,101,95,99,108,101,97,114,0,95,109, 97,107,101,110,111,116,101,95,115,101,116,117,112,0,95,115,116,114,105,112,110,111,116,101,95,110,101,119,0,95,115,116,114,105,112,110,111,116,101,95,102,108,111,97,116,0,95,115,116,114,105,112,110,111,116,101,95,115,101,116,117,112,0,95,112,111,108, 121,95,110,101,119,0,95,112,111,108,121,95,102,108,111,97,116,0,95,112,111,108,121,95,115,116,111,112,0,95,112,111,108,121,95,99,108,101,97,114,0,95,112,111,108,121,95,102,114,101,101,0,95,112,111,108,121,95,115,101,116,117,112,0,95,98,97,103,95,110, 101,119,0,95,98,97,103,95,102,108,111,97,116,0,95,98,97,103,95,102,108,117,115,104,0,95,98,97,103,95,99,108,101,97,114,0,95,98,97,103,95,115,101,116,117,112,0,95,109,97,107,101,115,101,101,100,0,95,114,97,110,100,111,109,95,110,101,119,0,95,114,97,110, 100,111,109,95,98,97,110,103,0,95,114,97,110,100,111,109,95,115,101,101,100,0,95,114,97,110,100,111,109,95,115,101,116,117,112,0,95,108,111,97,100,98,97,110,103,95,110,101,119,0,95,108,111,97,100,98,97,110,103,95,108,111,97,100,98,97,110,103,0,95,108, 111,97,100,98,97,110,103,95,115,101,116,117,112,0,95,110,97,109,101,99,97,110,118,97,115,95,110,101,119,0,95,110,97,109,101,99,97,110,118,97,115,95,102,114,101,101,0,95,110,97,109,101,99,97,110,118,97,115,95,115,101,116,117,112,0,95,115,101,114,105,97, 108,95,102,108,111,97,116,0,95,115,101,114,105,97,108,95,110,101,119,0,95,115,101,114,105,97,108,95,115,101,116,117,112,0,95,99,112,117,116,105,109,101,95,98,97,110,103,0,95,99,112,117,116,105,109,101,95,98,97,110,103,50,0,95,99,112,117,116,105,109,101, 95,110,101,119,0,95,99,112,117,116,105,109,101,95,115,101,116,117,112,0,95,114,101,97,108,116,105,109,101,95,98,97,110,103,0,95,114,101,97,108,116,105,109,101,95,98,97,110,103,50,0,95,114,101,97,108,116,105,109,101,95,110,101,119,0,95,114,101,97,108, 116,105,109,101,95,115,101,116,117,112,0,95,110,101,116,115,101,110,100,95,110,101,119,0,95,110,101,116,115,101,110,100,95,99,111,110,110,101,99,116,0,95,95,79,83,83,119,97,112,73,110,116,49,54,0,95,110,101,116,115,101,110,100,95,100,105,115,99,111,110, 110,101,99,116,0,95,110,101,116,115,101,110,100,95,115,101,110,100,0,95,110,101,116,115,101,110,100,95,102,114,101,101,0,95,110,101,116,115,101,110,100,95,115,101,116,117,112,0,95,110,101,116,114,101,99,101,105,118,101,95,110,111,116,105,102,121,0,95, 110,101,116,114,101,99,101,105,118,101,95,100,111,105,116,0,95,110,101,116,114,101,99,101,105,118,101,95,99,111,110,110,101,99,116,112,111,108,108,0,95,110,101,116,114,101,99,101,105,118,101,95,110,101,119,0,95,110,101,116,114,101,99,101,105,118,101, 95,102,114,101,101,0,95,110,101,116,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,113,108,105,115,116,95,110,101,119,0,95,113,108,105,115,116,95,114,101,119,105,110,100,0,95,113,108,105,115,116,95,100,111,110,101,120,116,0,95,113,108,105,115, 116,95,110,101,120,116,0,95,113,108,105,115,116,95,98,97,110,103,0,95,113,108,105,115,116,95,116,105,99,107,0,95,113,108,105,115,116,95,97,100,100,0,95,113,108,105,115,116,95,97,100,100,50,0,95,113,108,105,115,116,95,99,108,101,97,114,0,95,113,108,105, 115,116,95,115,101,116,0,95,113,108,105,115,116,95,114,101,97,100,0,95,113,108,105,115,116,95,119,114,105,116,101,0,95,113,108,105,115,116,95,112,114,105,110,116,0,95,113,108,105,115,116,95,116,101,109,112,111,0,95,113,108,105,115,116,95,102,114,101, 101,0,95,116,101,120,116,102,105,108,101,95,110,101,119,0,95,116,101,120,116,102,105,108,101,95,98,97,110,103,0,95,116,101,120,116,102,105,108,101,95,114,101,119,105,110,100,0,95,116,101,120,116,102,105,108,101,95,102,114,101,101,0,95,100,101,108,97, 121,95,98,97,110,103,0,95,100,101,108,97,121,95,115,116,111,112,0,95,100,101,108,97,121,95,102,116,49,0,95,100,101,108,97,121,95,102,108,111,97,116,0,95,100,101,108,97,121,95,116,105,99,107,0,95,100,101,108,97,121,95,102,114,101,101,0,95,100,101,108, 97,121,95,110,101,119,0,95,100,101,108,97,121,95,115,101,116,117,112,0,95,109,101,116,114,111,95,116,105,99,107,0,95,109,101,116,114,111,95,102,108,111,97,116,0,95,109,101,116,114,111,95,98,97,110,103,0,95,109,101,116,114,111,95,115,116,111,112,0,95, 109,101,116,114,111,95,102,116,49,0,95,109,101,116,114,111,95,102,114,101,101,0,95,109,101,116,114,111,95,110,101,119,0,95,109,101,116,114,111,95,115,101,116,117,112,0,95,108,105,110,101,95,116,105,99,107,0,95,108,105,110,101,95,102,108,111,97,116,0, 95,108,105,110,101,95,102,116,49,0,95,108,105,110,101,95,115,116,111,112,0,95,108,105,110,101,95,115,101,116,0,95,108,105,110,101,95,102,114,101,101,0,95,108,105,110,101,95,110,101,119,0,95,108,105,110,101,95,115,101,116,117,112,0,95,116,105,109,101, 114,95,98,97,110,103,0,95,116,105,109,101,114,95,98,97,110,103,50,0,95,116,105,109,101,114,95,110,101,119,0,95,116,105,109,101,114,95,115,101,116,117,112,0,95,112,105,112,101,95,110,101,119,0,95,104,97,110,103,95,102,114,101,101,0,95,104,97,110,103,95, 116,105,99,107,0,95,112,105,112,101,95,108,105,115,116,0,95,112,105,112,101,95,102,108,117,115,104,0,95,112,105,112,101,95,99,108,101,97,114,0,95,112,105,112,101,95,115,101,116,117,112,0,95,108,105,98,112,100,114,101,99,98,97,110,103,0,95,108,105,98, 112,100,114,101,99,102,108,111,97,116,0,95,108,105,98,112,100,114,101,99,115,121,109,98,111,108,0,95,108,105,98,112,100,114,101,99,112,111,105,110,116,101,114,0,95,108,105,98,112,100,114,101,99,108,105,115,116,0,95,108,105,98,112,100,114,101,99,97,110, 121,116,104,105,110,103,0,95,108,105,98,112,100,114,101,99,101,105,118,101,95,102,114,101,101,0,95,103,101,116,95,111,98,106,101,99,116,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95, 109,101,109,99,112,121,95,99,104,107,0,95,111,102,102,115,101,116,115,70,114,111,109,85,84,70,56,0,95,116,114,97,105,108,105,110,103,66,121,116,101,115,70,111,114,85,84,70,56,0,95,102,108,111,97,116,95,116,111,95,115,104,111,114,116,0,95,115,104,111, 114,116,95,116,111,95,102,108,111,97,116,0,32,115,116,117,98,32,104,101,108,112,101,114,115,0,95,99,97,110,118,97,115,95,110,101,119,102,105,108,101,110,97,109,101,0,95,99,97,110,118,97,115,95,110,101,119,100,105,114,101,99,116,111,114,121,0,95,99,117, 114,115,111,114,108,105,115,116,0,95,115,99,97,108,97,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,103,97,116,111,109,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,99,108,97,115,115,95,101,120,116,101,114,110,95,100, 105,114,0,95,115,121,109,108,105,115,116,0,95,111,115,115,95,101,114,114,111,114,110,97,109,101,115,0,95,108,111,97,100,101,114,115,0,95,117,115,97,103,101,109,101,115,115,97,103,101,0,95,104,97,108,115,101,99,0,95,99,111,115,116,97,98,0,95,115,105,110, 116,97,98,0,95,99,111,115,119,114,107,0,95,115,105,110,119,114,107,0,95,105,110,105,116,46,51,57,53,55,0,95,100,111,103,100,111,111,46,53,51,53,55,0,95,103,97,114,114,97,121,95,97,114,114,97,121,116,101,109,112,108,97,116,101,102,105,108,101,0,95,103, 97,114,114,97,121,95,102,108,111,97,116,116,101,109,112,108,97,116,101,102,105,108,101,0,95,100,111,108,108,97,114,122,101,114,111,46,54,51,52,50,0,95,115,121,115,95,116,105,109,101,95,112,101,114,95,109,115,101,99,0,95,115,121,115,95,98,105,110,0,95, 115,99,104,101,100,95,117,115,101,97,117,100,105,111,0,95,115,121,115,95,109,117,116,101,120,0,95,97,117,100,105,111,95,110,97,117,100,105,111,105,110,100,101,118,0,95,97,117,100,105,111,95,110,97,117,100,105,111,111,117,116,100,101,118,0,95,100,101, 102,97,117,108,116,102,111,110,116,115,104,105,116,0,95,115,121,115,95,100,108,108,101,120,116,101,110,116,0,95,115,121,115,95,100,108,108,101,120,116,101,110,116,50,0,95,115,121,115,95,110,115,111,117,110,100,105,110,0,95,115,121,115,95,110,115,111, 117,110,100,111,117,116,0,95,115,121,115,95,110,99,104,105,110,0,95,115,121,115,95,110,99,104,111,117,116,0,95,115,121,115,95,102,111,110,116,108,105,115,116,0,95,114,97,110,100,111,109,95,110,101,120,116,115,101,101,100,46,53,52,48,54,0,95,112,108,117, 115,95,99,108,97,115,115,0,95,115,99,97,108,97,114,112,108,117,115,95,99,108,97,115,115,0,95,109,105,110,117,115,95,99,108,97,115,115,0,95,115,99,97,108,97,114,109,105,110,117,115,95,99,108,97,115,115,0,95,116,105,109,101,115,95,99,108,97,115,115,0,95, 115,99,97,108,97,114,116,105,109,101,115,95,99,108,97,115,115,0,95,111,118,101,114,95,99,108,97,115,115,0,95,115,99,97,108,97,114,111,118,101,114,95,99,108,97,115,115,0,95,109,97,120,95,99,108,97,115,115,0,95,115,99,97,108,97,114,109,97,120,95,99,108, 97,115,115,0,95,109,105,110,95,99,108,97,115,115,0,95,115,99,97,108,97,114,109,105,110,95,99,108,97,115,115,0,95,99,111,117,110,116,46,51,49,50,52,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,112,108,97, 121,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101, 95,99,108,97,115,115,0,95,116,97,98,115,101,110,100,95,99,108,97,115,115,0,95,116,97,98,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,52,95,99,108,97,115,115,0,95,116, 97,98,119,114,105,116,101,95,99,108,97,115,115,0,95,115,105,103,95,116,105,108,100,101,95,99,108,97,115,115,0,95,108,105,110,101,95,116,105,108,100,101,95,99,108,97,115,115,0,95,118,108,105,110,101,95,116,105,108,100,101,95,99,108,97,115,115,0,95,115, 110,97,112,115,104,111,116,95,116,105,108,100,101,95,99,108,97,115,115,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,99,108,97,115,115,0,95,100,97, 99,95,99,108,97,115,115,0,95,97,100,99,95,99,108,97,115,115,0,95,100,101,108,114,101,97,100,95,122,101,114,111,0,95,115,105,103,100,101,108,119,114,105,116,101,95,99,108,97,115,115,0,95,115,105,103,100,101,108,114,101,97,100,95,99,108,97,115,115,0,95, 115,105,103,118,100,95,99,108,97,115,115,0,95,115,105,103,102,102,116,95,99,108,97,115,115,0,95,115,105,103,105,102,102,116,95,99,108,97,115,115,0,95,115,105,103,114,102,102,116,95,99,108,97,115,115,0,95,115,105,103,114,105,102,102,116,95,99,108,97,115, 115,0,95,115,105,103,102,114,97,109,112,95,99,108,97,115,115,0,95,102,105,114,115,116,110,101,116,0,95,115,105,103,115,101,110,100,95,99,108,97,115,115,0,95,115,105,103,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,115,105,103,99,97,116,99,104, 95,99,108,97,115,115,0,95,115,105,103,116,104,114,111,119,95,99,108,97,115,115,0,95,99,108,105,112,95,99,108,97,115,115,0,95,114,115,113,114,116,95,101,120,112,116,97,98,0,95,114,115,113,114,116,95,109,97,110,116,105,115,115,97,116,97,98,0,95,115,105, 103,114,115,113,114,116,95,99,108,97,115,115,0,95,115,105,103,115,113,114,116,95,99,108,97,115,115,0,95,112,111,119,95,116,105,108,100,101,95,99,108,97,115,115,0,95,101,120,112,95,116,105,108,100,101,95,99,108,97,115,115,0,95,108,111,103,95,116,105,108, 100,101,95,99,108,97,115,115,0,95,97,98,115,95,116,105,108,100,101,95,99,108,97,115,115,0,95,112,114,105,110,116,95,99,108,97,115,115,0,95,98,97,110,103,95,116,105,108,100,101,95,99,108,97,115,115,0,95,112,104,97,115,111,114,95,99,108,97,115,115,0,95, 115,99,97,108,97,114,112,104,97,115,111,114,95,99,108,97,115,115,0,95,99,111,115,95,99,108,97,115,115,0,95,111,115,99,95,99,108,97,115,115,0,95,115,99,97,108,97,114,111,115,99,95,99,108,97,115,115,0,95,110,111,105,115,101,95,99,108,97,115,115,0,95,115, 111,117,110,100,102,105,108,101,114,95,99,108,97,115,115,0,95,114,101,97,100,115,102,95,99,108,97,115,115,0,95,119,114,105,116,101,115,102,95,99,108,97,115,115,0,95,117,103,101,110,95,115,111,114,116,110,111,0,95,117,103,101,110,95,108,111,117,100,0, 95,100,115,112,95,99,104,97,105,110,0,95,100,115,112,95,99,104,97,105,110,115,105,122,101,0,95,100,115,112,95,112,104,97,115,101,0,95,98,108,111,99,107,95,99,108,97,115,115,0,95,115,105,103,110,97,108,95,102,114,101,101,108,105,115,116,0,95,115,105,103, 110,97,108,95,102,114,101,101,98,111,114,114,111,119,101,100,0,95,115,105,103,110,97,108,95,117,115,101,100,108,105,115,116,0,95,117,103,101,110,95,99,117,114,114,101,110,116,99,111,110,116,101,120,116,0,95,115,97,109,112,108,101,114,97,116,101,95,116, 105,108,100,101,95,99,108,97,115,115,0,95,103,99,111,117,110,116,0,95,119,97,114,110,101,100,46,55,50,54,48,0,95,103,97,114,114,97,121,95,97,114,114,97,121,116,101,109,112,108,97,116,101,99,97,110,118,97,115,0,95,97,114,114,97,121,95,109,111,116,105, 111,110,95,120,99,117,109,117,108,97,116,105,118,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,121,99,117,109,117,108,97,116,105,118,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,120,102,105,101,108,100,0,95,97,114,114,97,121,95, 109,111,116,105,111,110,95,121,102,105,101,108,100,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,103,108,105,115,116,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,115,99,97,108,97,114,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95, 97,114,114,97,121,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,119,112,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,116,101,109,112,108,97,116,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,110,112,111,105,110,116,115,0,95,97, 114,114,97,121,95,109,111,116,105,111,110,95,101,108,101,109,115,105,122,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,97,108,116,107,101,121,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,105,110,105,116,120,0,95,97,114,114,97,121,95, 109,111,116,105,111,110,95,120,112,101,114,112,105,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,121,112,101,114,112,105,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,108,97,115,116,120,0,95,97,114,114,97,121,95,109,111,116,105, 111,110,95,102,97,116,116,101,110,0,95,98,110,103,95,99,108,97,115,115,0,95,103,99,111,117,110,116,46,54,52,57,50,0,95,116,97,98,99,111,117,110,116,0,95,99,97,110,118,97,115,95,110,101,119,97,114,103,99,0,95,99,97,110,118,97,115,95,110,101,119,97,114, 103,118,0,95,100,101,99,108,97,114,101,95,99,108,97,115,115,0,95,114,101,101,110,116,101,114,46,53,57,54,52,0,95,99,117,114,115,111,114,119,97,115,46,54,55,48,48,0,95,120,119,97,115,46,54,54,57,57,0,95,107,101,121,110,97,109,101,115,121,109,46,55,57, 51,53,0,95,107,101,121,117,112,115,121,109,46,55,57,51,52,0,95,107,101,121,110,117,109,115,121,109,46,55,57,51,51,0,95,99,111,112,121,95,98,105,110,98,117,102,0,95,99,97,110,118,97,115,95,116,101,120,116,99,111,112,121,98,117,102,0,95,99,97,110,118,97, 115,95,116,101,120,116,99,111,112,121,98,117,102,115,105,122,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,102,110,0,95,99,97,110,118,97,115,95,117,110,100,111,95,119,104,97,116,110,101,120,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,98, 117,102,0,95,99,97,110,118,97,115,95,117,110,100,111,95,99,97,110,118,97,115,0,95,99,97,110,118,97,115,95,117,110,100,111,95,110,97,109,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,97,108,114,101,97,100,121,95,115,101,116,95,109,111,118,101,0, 95,99,97,110,118,97,115,95,117,112,99,108,105,99,107,116,105,109,101,0,95,99,97,110,118,97,115,95,117,112,120,0,95,99,97,110,118,97,115,95,117,112,121,0,95,99,97,110,118,97,115,95,102,105,110,100,95,105,110,100,101,120,49,0,95,99,97,110,118,97,115,95, 102,105,110,100,95,105,110,100,101,120,50,0,95,99,97,110,118,97,115,95,102,105,110,100,95,119,104,111,108,101,119,111,114,100,0,95,99,97,110,118,97,115,95,102,105,110,100,98,117,102,0,95,112,97,115,116,101,95,111,110,115,101,116,0,95,112,97,115,116,101, 95,99,97,110,118,97,115,0,95,99,97,110,118,97,115,95,108,97,115,116,95,103,108,105,115,116,0,95,99,97,110,118,97,115,95,108,97,115,116,95,103,108,105,115,116,95,120,0,95,99,97,110,118,97,115,95,108,97,115,116,95,103,108,105,115,116,95,121,0,95,103,114, 97,112,104,95,108,97,115,116,120,112,105,120,0,95,103,114,97,112,104,95,108,97,115,116,121,112,105,120,0,95,103,117,105,99,111,110,110,101,99,116,95,99,108,97,115,115,0,95,104,114,97,100,105,111,95,99,108,97,115,115,0,95,104,114,97,100,105,111,95,111, 108,100,95,99,108,97,115,115,0,95,104,115,108,105,100,101,114,95,99,108,97,115,115,0,95,116,111,116,0,95,109,121,95,99,97,110,118,97,115,95,99,108,97,115,115,0,95,109,121,95,110,117,109,98,111,120,95,99,108,97,115,115,0,95,100,101,99,108,97,114,101,95, 99,108,97,115,115,0,95,114,116,101,120,116,95,101,110,116,101,114,101,100,0,95,119,97,114,110,101,100,46,54,51,56,52,0,95,103,116,101,109,112,108,97,116,101,95,99,108,97,115,115,0,95,116,101,109,112,108,97,116,101,95,99,108,97,115,115,0,95,99,117,114, 118,101,95,109,111,116,105,111,110,95,102,105,101,108,100,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,120,99,117,109,117,108,97,116,105,118,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,120,98,97,115,101,0,95,99,117,114,118,101, 95,109,111,116,105,111,110,95,120,112,101,114,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,121,99,117,109,117,108,97,116,105,118,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,121,98,97,115,101,0,95,99,117,114,118,101,95,109,111,116, 105,111,110,95,121,112,101,114,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,103,108,105,115,116,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,115,99,97,108,97,114,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,97,114,114,97,121, 0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,119,112,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,116,101,109,112,108,97,116,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,103,112,111,105,110,116,101,114,0,95,100,114,97,119, 110,117,109,98,101,114,95,109,111,116,105,111,110,95,121,99,117,109,117,108,97,116,105,118,101,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,103,108,105,115,116,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105, 111,110,95,115,99,97,108,97,114,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,97,114,114,97,121,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,119,112,0,95,100,114,97,119,110,117,109,98,101,114,95, 109,111,116,105,111,110,95,116,101,109,112,108,97,116,101,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,103,112,111,105,110,116,101,114,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,115,121,109,98, 111,108,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,102,105,114,115,116,107,101,121,0,95,109,101,115,115,97,103,101,95,99,108,97,115,115,0,95,103,97,116,111,109,95,99,108,97,115,115,0,95,109,101,115,115,114,101,115,112,111, 110,100,101,114,95,99,108,97,115,115,0,95,116,111,103,103,108,101,95,99,108,97,115,115,0,95,112,116,114,111,98,106,95,99,108,97,115,115,0,95,103,101,116,95,99,108,97,115,115,0,95,115,101,116,95,99,108,97,115,115,0,95,101,108,101,109,95,99,108,97,115, 115,0,95,103,101,116,115,105,122,101,95,99,108,97,115,115,0,95,115,101,116,115,105,122,101,95,99,108,97,115,115,0,95,97,112,112,101,110,100,95,99,108,97,115,115,0,95,115,117,98,108,105,115,116,95,99,108,97,115,115,0,95,118,114,97,100,105,111,95,99,108, 97,115,115,0,95,118,114,97,100,105,111,95,111,108,100,95,99,108,97,115,115,0,95,118,115,108,105,100,101,114,95,99,108,97,115,115,0,95,118,117,95,99,108,97,115,115,0,95,99,108,97,115,115,95,108,111,97,100,115,121,109,0,95,115,121,109,104,97,115,104,0, 95,116,114,121,105,110,103,97,108,114,101,97,100,121,0,95,109,97,120,99,108,97,115,115,0,95,115,116,97,99,107,99,111,117,110,116,0,95,105,110,108,101,116,95,99,108,97,115,115,0,95,112,111,105,110,116,101,114,105,110,108,101,116,95,99,108,97,115,115,0, 95,102,108,111,97,116,105,110,108,101,116,95,99,108,97,115,115,0,95,115,121,109,98,111,108,105,110,108,101,116,95,99,108,97,115,115,0,95,111,117,116,108,101,116,95,101,118,101,110,116,110,111,0,95,103,115,116,97,99,107,95,104,101,97,100,0,95,98,105,110, 100,108,105,115,116,95,99,108,97,115,115,0,95,108,97,115,116,112,111,112,112,101,100,0,95,112,100,95,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,0,95,111,115,115,95,114,101,115,121,110,99,112,104,97,115,101,0,95,111,115,115,95, 110,114,101,115,121,110,99,0,95,115,99,104,101,100,95,110,101,120,116,112,105,110,103,116,105,109,101,46,52,53,48,54,0,95,115,99,104,101,100,95,110,101,120,116,109,101,116,101,114,112,111,108,108,116,105,109,101,46,52,53,48,53,0,95,105,100,108,101,116, 105,109,101,46,52,54,50,57,0,95,115,121,115,95,113,117,105,116,0,95,115,121,115,95,104,105,115,116,111,103,114,97,109,0,95,115,121,115,95,104,105,115,116,116,105,109,101,0,95,115,99,104,101,100,95,100,105,100,100,115,112,0,95,115,99,104,101,100,95,100, 105,100,112,111,108,108,0,95,115,99,104,101,100,95,100,105,100,110,111,116,104,105,110,103,0,95,115,121,115,95,104,105,115,116,112,104,97,115,101,0,95,111,115,115,95,114,101,115,121,110,99,0,95,115,99,104,101,100,95,100,105,111,114,101,100,0,95,115,99, 104,101,100,95,100,105,111,114,101,100,116,105,109,101,0,95,115,99,104,101,100,95,109,101,116,101,114,115,111,110,0,95,115,99,104,101,100,95,108,97,115,116,105,110,99,108,105,112,0,95,115,99,104,101,100,95,108,97,115,116,111,117,116,99,108,105,112,0, 95,115,99,104,101,100,95,108,97,115,116,105,110,100,98,0,95,115,99,104,101,100,95,108,97,115,116,111,117,116,100,98,0,95,115,99,104,101,100,95,114,101,102,101,114,101,110,99,101,114,101,97,108,116,105,109,101,0,95,115,99,104,101,100,95,114,101,102,101, 114,101,110,99,101,108,111,103,105,99,97,108,116,105,109,101,0,95,105,110,105,116,116,101,100,46,53,51,52,49,0,95,115,121,115,95,109,101,116,101,114,115,0,95,115,121,115,95,105,110,109,97,120,0,95,115,121,115,95,111,117,116,109,97,120,0,95,97,117,100, 105,111,95,115,116,97,116,101,0,95,97,117,100,105,111,95,97,117,100,105,111,105,110,100,101,118,0,95,97,117,100,105,111,95,97,117,100,105,111,99,104,105,110,100,101,118,0,95,97,117,100,105,111,95,97,117,100,105,111,111,117,116,100,101,118,0,95,97,117, 100,105,111,95,97,117,100,105,111,99,104,111,117,116,100,101,118,0,95,97,117,100,105,111,95,114,97,116,101,0,95,97,117,100,105,111,95,97,100,118,97,110,99,101,0,95,97,117,100,105,111,95,99,97,108,108,98,97,99,107,0,95,97,117,100,105,111,95,99,97,108, 108,98,97,99,107,95,105,115,95,111,112,101,110,0,95,97,117,100,105,111,95,110,101,120,116,105,110,99,104,97,110,115,0,95,97,117,100,105,111,95,110,101,120,116,111,117,116,99,104,97,110,115,0,95,116,104,101,110,46,55,51,55,54,0,95,116,114,111,117,98,108, 101,46,55,52,55,56,0,95,114,101,101,110,116,101,114,101,100,46,56,51,48,49,0,95,115,121,115,95,110,102,100,112,111,108,108,0,95,115,121,115,95,102,100,112,111,108,108,0,95,115,121,115,95,109,97,120,102,100,0,95,115,121,115,95,103,117,105,115,111,99,107, 0,95,105,110,98,105,110,98,117,102,0,95,115,121,115,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,0,95,115,121,115,95,103,117,105,113,117,101,117,101,104,101,97,100,0,95,115,121,115,95,103,117,105,98,117,102,0,95,115,121,115,95,103,117,105, 98,117,102,104,101,97,100,0,95,115,121,115,95,103,117,105,98,117,102,116,97,105,108,0,95,115,121,115,95,103,117,105,98,117,102,115,105,122,101,0,95,115,121,115,95,119,97,105,116,105,110,103,102,111,114,112,105,110,103,0,95,115,121,115,95,98,121,116,101, 115,115,105,110,99,101,108,97,115,116,112,105,110,103,0,95,115,121,115,95,119,97,116,99,104,102,100,0,95,115,121,115,95,108,111,97,100,101,100,0,95,115,121,115,95,109,109,105,111,0,95,115,121,115,95,111,112,101,110,108,105,115,116,0,95,115,121,115,95, 109,101,115,115,97,103,101,108,105,115,116,0,95,115,121,115,95,118,101,114,115,105,111,110,0,95,115,121,115,95,109,97,105,110,95,115,114,97,116,101,0,95,115,121,115,95,109,97,105,110,95,97,100,118,97,110,99,101,0,95,115,121,115,95,109,97,105,110,95,99, 97,108,108,98,97,99,107,0,95,115,121,115,95,108,105,115,116,112,108,101,97,115,101,0,95,115,121,115,95,98,97,116,99,104,0,95,115,121,115,95,115,111,117,110,100,105,110,100,101,118,108,105,115,116,0,95,115,121,115,95,115,111,117,110,100,111,117,116,100, 101,118,108,105,115,116,0,95,115,121,115,95,99,104,105,110,108,105,115,116,0,95,115,121,115,95,99,104,111,117,116,108,105,115,116,0,95,115,97,105,100,105,116,46,52,55,57,51,0,95,101,114,114,111,114,95,111,98,106,101,99,116,0,95,101,114,114,111,114,95, 115,116,114,105,110,103,0,95,101,114,114,111,98,106,101,99,116,0,95,101,114,114,115,116,114,105,110,103,0,95,109,116,111,102,95,99,108,97,115,115,0,95,102,116,111,109,95,99,108,97,115,115,0,95,114,109,115,116,111,100,98,95,99,108,97,115,115,0,95,112, 111,119,116,111,100,98,95,99,108,97,115,115,0,95,100,98,116,111,112,111,119,95,99,108,97,115,115,0,95,100,98,116,111,114,109,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,112,108,117,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,109, 105,110,117,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,100,105,118,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,112,111,119,95,99,108,97,115,115,0,95,98,105,110, 111,112,49,95,109,97,120,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,109,105,110,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,101,101,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,110,101,95,99,108,97,115,115,0,95,98,105,110,111,112, 50,95,103,116,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,108,116,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,103,101,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,108,101,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,98,97,95, 99,108,97,115,115,0,95,98,105,110,111,112,51,95,108,97,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,98,111,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,108,111,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,108,115,95,99,108,97,115,115, 0,95,98,105,110,111,112,51,95,114,115,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,112,99,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,109,111,100,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,100,105,118,95,99,108,97,115,115,0,95,115, 105,110,95,99,108,97,115,115,0,95,99,111,115,95,99,108,97,115,115,0,95,116,97,110,95,99,108,97,115,115,0,95,97,116,97,110,95,99,108,97,115,115,0,95,97,116,97,110,50,95,99,108,97,115,115,0,95,115,113,114,116,95,99,108,97,115,115,0,95,108,111,103,95,99, 108,97,115,115,0,95,101,120,112,95,99,108,97,115,115,0,95,97,98,115,95,99,108,97,115,115,0,95,119,114,97,112,95,99,108,97,115,115,0,95,99,108,105,112,95,99,108,97,115,115,0,95,112,100,105,110,116,95,99,108,97,115,115,0,95,112,100,102,108,111,97,116,95, 99,108,97,115,115,0,95,112,100,115,121,109,98,111,108,95,99,108,97,115,115,0,95,98,97,110,103,95,99,108,97,115,115,0,95,115,101,110,100,95,99,108,97,115,115,0,95,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,115,101,108,49,95,99,108,97,115,115, 0,95,115,101,108,50,95,99,108,97,115,115,0,95,114,111,117,116,101,95,99,108,97,115,115,0,95,112,97,99,107,95,99,108,97,115,115,0,95,117,110,112,97,99,107,95,99,108,97,115,115,0,95,116,114,105,103,103,101,114,95,99,108,97,115,115,0,95,115,112,105,103, 111,116,95,99,108,97,115,115,0,95,109,111,115,101,115,95,99,108,97,115,115,0,95,117,110,116,105,108,95,99,108,97,115,115,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,99,108,97,115,115,0,95,115,119,97,112,95,99,108,97,115,115,0,95,99,104,97,110, 103,101,95,99,108,97,115,115,0,95,118,97,108,117,101,95,99,108,97,115,115,0,95,118,99,111,109,109,111,110,95,99,108,97,115,115,0,95,103,102,120,115,116,117,98,95,99,108,97,115,115,0,95,103,102,120,115,116,117,98,95,108,105,115,116,0,95,103,102,120,115, 116,117,98,95,98,105,110,98,117,102,0,95,111,112,101,110,112,97,110,101,108,95,99,108,97,115,115,0,95,115,97,118,101,112,97,110,101,108,95,99,108,97,115,115,0,95,107,101,121,95,115,121,109,0,95,107,101,121,117,112,95,115,121,109,0,95,107,101,121,110, 97,109,101,95,115,121,109,0,95,107,101,121,95,99,108,97,115,115,0,95,107,101,121,117,112,95,99,108,97,115,115,0,95,107,101,121,110,97,109,101,95,99,108,97,115,115,0,95,112,114,105,110,116,95,99,108,97,115,115,0,95,99,111,117,110,116,46,51,51,57,57,0, 95,112,114,101,118,46,51,51,57,56,0,95,109,105,100,105,105,110,95,115,121,109,0,95,115,121,115,101,120,105,110,95,115,121,109,0,95,109,105,100,105,105,110,95,99,108,97,115,115,0,95,115,121,115,101,120,105,110,95,99,108,97,115,115,0,95,110,111,116,101, 105,110,95,115,121,109,0,95,110,111,116,101,105,110,95,99,108,97,115,115,0,95,99,116,108,105,110,95,115,121,109,0,95,99,116,108,105,110,95,99,108,97,115,115,0,95,112,103,109,105,110,95,115,121,109,0,95,112,103,109,105,110,95,99,108,97,115,115,0,95,98, 101,110,100,105,110,95,115,121,109,0,95,98,101,110,100,105,110,95,99,108,97,115,115,0,95,116,111,117,99,104,105,110,95,115,121,109,0,95,116,111,117,99,104,105,110,95,99,108,97,115,115,0,95,112,111,108,121,116,111,117,99,104,105,110,95,115,121,109,0,95, 112,111,108,121,116,111,117,99,104,105,110,95,99,108,97,115,115,0,95,109,105,100,105,99,108,107,105,110,95,115,121,109,0,95,109,105,100,105,99,108,107,105,110,95,99,108,97,115,115,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,115,121, 109,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,99,108,97,115,115,0,95,109,105,100,105,111,117,116,95,99,108,97,115,115,0,95,110,111,116,101,111,117,116,95,99,108,97,115,115,0,95,99,116,108,111,117,116,95,99,108,97,115,115,0,95,112, 103,109,111,117,116,95,99,108,97,115,115,0,95,98,101,110,100,111,117,116,95,99,108,97,115,115,0,95,116,111,117,99,104,111,117,116,95,99,108,97,115,115,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,99,108,97,115,115,0,95,109,97,107,101,110,111, 116,101,95,99,108,97,115,115,0,95,115,116,114,105,112,110,111,116,101,95,99,108,97,115,115,0,95,112,111,108,121,95,99,108,97,115,115,0,95,98,97,103,95,99,108,97,115,115,0,95,114,97,110,100,111,109,95,99,108,97,115,115,0,95,108,111,97,100,98,97,110,103, 95,99,108,97,115,115,0,95,110,97,109,101,99,97,110,118,97,115,95,99,108,97,115,115,0,95,115,101,114,105,97,108,95,99,108,97,115,115,0,95,99,112,117,116,105,109,101,95,99,108,97,115,115,0,95,114,101,97,108,116,105,109,101,95,99,108,97,115,115,0,95,112, 108,101,97,115,101,119,97,114,110,46,52,52,53,53,0,95,108,97,115,116,119,97,114,110,116,105,109,101,46,52,52,53,52,0,95,110,101,116,115,101,110,100,95,99,108,97,115,115,0,95,110,101,116,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,113,108,105, 115,116,95,99,108,97,115,115,0,95,116,101,120,116,102,105,108,101,95,99,108,97,115,115,0,95,100,101,108,97,121,95,99,108,97,115,115,0,95,109,101,116,114,111,95,99,108,97,115,115,0,95,108,105,110,101,95,99,108,97,115,115,0,95,116,105,109,101,114,95,99, 108,97,115,115,0,95,112,105,112,101,95,99,108,97,115,115,0,95,108,105,98,112,100,114,101,99,95,99,108,97,115,115,0,95,116,105,99,107,115,95,112,101,114,95,98,117,102,102,101,114,0,95,97,114,103,118,0,95,99,117,114,114,0,95,97,114,103,99,0,95,97,98,115, 95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,97,108,105,115,116,95,99,108,97,115,115,0,95,97,114,114,97,121,95,100,111,99,108,105,99,107,0,95,97,114,114,97,121,95,102,114,101,101,0,95,97,114,114,97,121,95,103,101,116,99,111,111,114,100, 105,110,97,116,101,0,95,97,114,114,97,121,95,103,101,116,102,105,101,108,100,115,0,95,97,114,114,97,121,95,110,101,119,0,95,97,114,114,97,121,95,114,101,100,114,97,119,0,95,97,114,114,97,121,95,114,101,115,105,122,101,0,95,97,116,111,109,95,103,101,110, 115,121,109,0,95,97,116,111,109,95,103,101,116,102,108,111,97,116,0,95,97,116,111,109,95,103,101,116,102,108,111,97,116,97,114,103,0,95,97,116,111,109,95,103,101,116,105,110,116,0,95,97,116,111,109,95,103,101,116,105,110,116,97,114,103,0,95,97,116,111, 109,95,103,101,116,115,121,109,98,111,108,0,95,97,116,111,109,95,103,101,116,115,121,109,98,111,108,97,114,103,0,95,97,116,111,109,95,115,116,114,105,110,103,0,95,98,97,110,103,95,115,101,116,117,112,0,95,98,105,110,98,117,102,95,97,100,100,0,95,98,105, 110,98,117,102,95,97,100,100,98,105,110,98,117,102,0,95,98,105,110,98,117,102,95,97,100,100,115,101,109,105,0,95,98,105,110,98,117,102,95,97,100,100,118,0,95,98,105,110,98,117,102,95,99,108,101,97,114,0,95,98,105,110,98,117,102,95,100,117,112,108,105, 99,97,116,101,0,95,98,105,110,98,117,102,95,101,118,97,108,0,95,98,105,110,98,117,102,95,101,118,97,108,102,105,108,101,0,95,98,105,110,98,117,102,95,101,120,112,97,110,100,100,111,108,108,115,121,109,0,95,98,105,110,98,117,102,95,102,114,101,101,0,95, 98,105,110,98,117,102,95,103,101,116,110,97,116,111,109,0,95,98,105,110,98,117,102,95,103,101,116,116,101,120,116,0,95,98,105,110,98,117,102,95,103,101,116,118,101,99,0,95,98,105,110,98,117,102,95,109,97,116,99,104,0,95,98,105,110,98,117,102,95,110,101, 119,0,95,98,105,110,98,117,102,95,112,114,105,110,116,0,95,98,105,110,98,117,102,95,114,101,97,100,0,95,98,105,110,98,117,102,95,114,101,97,100,95,118,105,97,95,99,97,110,118,97,115,0,95,98,105,110,98,117,102,95,114,101,97,100,95,118,105,97,95,112,97, 116,104,0,95,98,105,110,98,117,102,95,114,101,97,108,105,122,101,100,111,108,108,115,121,109,0,95,98,105,110,98,117,102,95,114,101,115,116,111,114,101,0,95,98,105,110,98,117,102,95,116,101,120,116,0,95,98,105,110,98,117,102,95,119,114,105,116,101,0,95, 98,108,111,99,107,95,116,105,108,100,101,95,115,101,116,117,112,0,95,98,110,103,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,98,110,103,95,100,114,97,119,0,95,98,110,103,95,100,114,97,119,95,99,111,110,102,105,103,0,95,98,110,103,95,100,114,97, 119,95,101,114,97,115,101,0,95,98,110,103,95,100,114,97,119,95,105,111,0,95,98,110,103,95,100,114,97,119,95,109,111,118,101,0,95,98,110,103,95,100,114,97,119,95,110,101,119,0,95,98,110,103,95,100,114,97,119,95,115,101,108,101,99,116,0,95,98,110,103,95, 100,114,97,119,95,117,112,100,97,116,101,0,95,98,110,103,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,98,117,103,0,95,98,117,105,108,100,95,102,102,116,95,110,101,116,119,111,114,107,0,95,99,97,110,118,97,115,95,97,100,100,105,110,108, 101,116,0,95,99,97,110,118,97,115,95,97,100,100,111,117,116,108,101,116,0,95,99,97,110,118,97,115,95,97,116,111,109,0,95,99,97,110,118,97,115,95,98,110,103,0,95,99,97,110,118,97,115,95,99,108,97,115,115,0,95,99,97,110,118,97,115,95,99,111,110,110,101, 99,116,0,95,99,97,110,118,97,115,95,99,114,101,97,116,101,95,101,100,105,116,111,114,0,95,99,97,110,118,97,115,95,100,97,116,97,112,114,111,112,101,114,116,105,101,115,0,95,99,97,110,118,97,115,95,100,101,108,101,116,101,108,105,110,101,115,102,111,114, 0,95,99,97,110,118,97,115,95,100,101,108,101,116,101,108,105,110,101,115,102,111,114,105,111,0,95,99,97,110,118,97,115,95,100,101,115,116,114,111,121,95,101,100,105,116,111,114,0,95,99,97,110,118,97,115,95,100,105,114,116,121,0,95,99,97,110,118,97,115, 95,100,105,115,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,100,111,97,100,100,116,101,109,112,108,97,116,101,0,95,99,97,110,118,97,115,95,100,111,99,108,105,99,107,0,95,99,97,110,118,97,115,95,100,111,99,111,110,110,101,99,116,0,95,99,97,110, 118,97,115,95,100,114,97,119,114,101,100,114,101,99,116,0,95,99,97,110,118,97,115,95,100,115,112,115,116,97,116,101,0,95,99,97,110,118,97,115,95,101,100,105,116,105,110,103,0,95,99,97,110,118,97,115,95,101,100,105,116,109,111,100,101,0,95,99,97,110,118, 97,115,95,102,97,116,116,101,110,115,117,98,0,95,99,97,110,118,97,115,95,102,105,110,100,101,114,114,111,114,0,95,99,97,110,118,97,115,95,102,105,120,108,105,110,101,115,102,111,114,0,95,99,97,110,118,97,115,95,102,108,111,97,116,97,116,111,109,0,95, 99,97,110,118,97,115,95,102,114,101,101,0,95,99,97,110,118,97,115,95,103,101,116,97,114,103,115,0,95,99,97,110,118,97,115,95,103,101,116,98,108,111,99,107,0,95,99,97,110,118,97,115,95,103,101,116,99,117,114,114,101,110,116,0,95,99,97,110,118,97,115,95, 103,101,116,99,117,114,114,101,110,116,100,105,114,0,95,99,97,110,118,97,115,95,103,101,116,100,105,114,0,95,99,97,110,118,97,115,95,103,101,116,100,111,108,108,97,114,122,101,114,111,0,95,99,97,110,118,97,115,95,103,101,116,101,110,118,0,95,99,97,110, 118,97,115,95,103,101,116,105,110,100,101,120,0,95,99,97,110,118,97,115,95,103,101,116,114,111,111,116,102,111,114,0,95,99,97,110,118,97,115,95,104,100,105,97,108,0,95,99,97,110,118,97,115,95,104,105,116,98,111,120,0,95,99,97,110,118,97,115,95,104,114, 97,100,105,111,0,95,99,97,110,118,97,115,95,104,115,108,105,100,101,114,0,95,99,97,110,118,97,115,95,105,101,109,103,117,105,115,0,95,99,97,110,118,97,115,95,105,115,97,98,115,116,114,97,99,116,105,111,110,0,95,99,97,110,118,97,115,95,105,115,99,111, 110,110,101,99,116,101,100,0,95,99,97,110,118,97,115,95,105,115,116,97,98,108,101,0,95,99,97,110,118,97,115,95,107,101,121,0,95,99,97,110,118,97,115,95,108,105,115,116,0,95,99,97,110,118,97,115,95,108,111,97,100,98,97,110,103,0,95,99,97,110,118,97,115, 95,108,111,97,100,98,97,110,103,115,117,98,112,97,116,99,104,101,115,0,95,99,97,110,118,97,115,95,108,111,103,101,114,114,111,114,0,95,99,97,110,118,97,115,95,109,97,107,101,98,105,110,100,115,121,109,0,95,99,97,110,118,97,115,95,109,97,107,101,102,105, 108,101,110,97,109,101,0,95,99,97,110,118,97,115,95,109,97,112,0,95,99,97,110,118,97,115,95,109,101,110,117,97,114,114,97,121,0,95,99,97,110,118,97,115,95,109,101,110,117,99,108,111,115,101,0,95,99,97,110,118,97,115,95,109,111,116,105,111,110,0,95,99, 97,110,118,97,115,95,109,111,117,115,101,0,95,99,97,110,118,97,115,95,109,111,117,115,101,117,112,0,95,99,97,110,118,97,115,95,109,115,103,0,95,99,97,110,118,97,115,95,109,121,99,110,118,0,95,99,97,110,118,97,115,95,110,101,119,0,95,99,97,110,118,97, 115,95,110,111,117,110,100,111,0,95,99,97,110,118,97,115,95,110,117,109,98,111,120,0,95,99,97,110,118,97,115,95,111,98,106,0,95,99,97,110,118,97,115,95,111,98,106,102,111,114,0,95,99,97,110,118,97,115,95,111,112,101,110,0,95,99,97,110,118,97,115,95,112, 111,112,97,98,115,116,114,97,99,116,105,111,110,0,95,99,97,110,118,97,115,95,112,114,105,110,116,0,95,99,97,110,118,97,115,95,112,114,111,112,101,114,116,105,101,115,0,95,99,97,110,118,97,115,95,114,101,97,108,105,122,101,100,111,108,108,97,114,0,95, 99,97,110,118,97,115,95,114,101,100,114,97,119,0,95,99,97,110,118,97,115,95,114,101,100,114,97,119,97,108,108,102,111,114,116,101,109,112,108,97,116,101,0,95,99,97,110,118,97,115,95,114,101,100,114,97,119,97,108,108,102,111,114,116,101,109,112,108,97, 116,101,99,97,110,118,97,115,0,95,99,97,110,118,97,115,95,114,101,102,108,101,99,116,116,105,116,108,101,0,95,99,97,110,118,97,115,95,114,101,108,111,97,100,0,95,99,97,110,118,97,115,95,114,101,110,97,109,101,0,95,99,97,110,118,97,115,95,114,101,115, 111,114,116,105,110,108,101,116,115,0,95,99,97,110,118,97,115,95,114,101,115,111,114,116,111,117,116,108,101,116,115,0,95,99,97,110,118,97,115,95,114,101,115,116,111,114,101,0,95,99,97,110,118,97,115,95,114,101,115,116,111,114,101,99,111,110,110,101, 99,116,105,111,110,115,0,95,99,97,110,118,97,115,95,114,101,115,117,109,101,95,100,115,112,0,95,99,97,110,118,97,115,95,114,109,105,110,108,101,116,0,95,99,97,110,118,97,115,95,114,109,111,117,116,108,101,116,0,95,99,97,110,118,97,115,95,115,97,118,101, 100,101,99,108,97,114,97,116,105,111,110,115,116,111,0,95,99,97,110,118,97,115,95,115,101,108,101,99,116,105,110,114,101,99,116,0,95,99,97,110,118,97,115,95,115,101,116,97,114,103,115,0,95,99,97,110,118,97,115,95,115,101,116,99,117,114,114,101,110,116, 0,95,99,97,110,118,97,115,95,115,101,116,99,117,114,115,111,114,0,95,99,97,110,118,97,115,95,115,101,116,100,101,108,101,116,105,110,103,0,95,99,97,110,118,97,115,95,115,101,116,103,114,97,112,104,0,95,99,97,110,118,97,115,95,115,101,116,117,110,100, 111,0,95,99,97,110,118,97,115,95,115,104,111,119,116,101,120,116,0,95,99,97,110,118,97,115,95,115,116,97,114,116,109,111,116,105,111,110,0,95,99,97,110,118,97,115,95,115,116,111,119,99,111,110,110,101,99,116,105,111,110,115,0,95,99,97,110,118,97,115, 95,115,117,115,112,101,110,100,95,100,115,112,0,95,99,97,110,118,97,115,95,115,121,109,98,111,108,97,116,111,109,0,95,99,97,110,118,97,115,95,116,111,103,103,108,101,0,95,99,97,110,118,97,115,95,117,110,115,101,116,99,117,114,114,101,110,116,0,95,99, 97,110,118,97,115,95,117,112,100,97,116,101,95,100,115,112,0,95,99,97,110,118,97,115,95,117,112,100,97,116,101,119,105,110,100,111,119,108,105,115,116,0,95,99,97,110,118,97,115,95,118,100,105,97,108,0,95,99,97,110,118,97,115,95,118,105,115,0,95,99,97, 110,118,97,115,95,118,114,97,100,105,111,0,95,99,97,110,118,97,115,95,118,115,108,105,100,101,114,0,95,99,97,110,118,97,115,95,118,117,109,101,116,101,114,0,95,99,97,110,118,97,115,95,119,104,105,99,104,102,105,110,100,0,95,99,97,110,118,97,115,95,119, 114,105,116,101,115,99,97,108,97,114,0,95,99,102,102,116,0,95,99,104,97,110,103,101,95,115,101,116,117,112,0,95,99,108,97,115,115,95,97,100,100,97,110,121,116,104,105,110,103,0,95,99,108,97,115,115,95,97,100,100,98,97,110,103,0,95,99,108,97,115,115,95, 97,100,100,99,114,101,97,116,111,114,0,95,99,108,97,115,115,95,97,100,100,108,105,115,116,0,95,99,108,97,115,115,95,97,100,100,109,101,116,104,111,100,0,95,99,108,97,115,115,95,97,100,100,112,111,105,110,116,101,114,0,95,99,108,97,115,115,95,97,100,100, 115,121,109,98,111,108,0,95,99,108,97,115,115,95,100,111,97,100,100,102,108,111,97,116,0,95,99,108,97,115,115,95,100,111,109,97,105,110,115,105,103,110,97,108,105,110,0,95,99,108,97,115,115,95,103,101,116,104,101,108,112,100,105,114,0,95,99,108,97,115, 115,95,103,101,116,104,101,108,112,110,97,109,101,0,95,99,108,97,115,115,95,103,101,116,110,97,109,101,0,95,99,108,97,115,115,95,103,101,116,112,114,111,112,101,114,116,105,101,115,102,110,0,95,99,108,97,115,115,95,103,101,116,115,97,118,101,102,110, 0,95,99,108,97,115,115,95,105,115,100,114,97,119,99,111,109,109,97,110,100,0,95,99,108,97,115,115,95,110,101,119,0,95,99,108,97,115,115,95,115,101,116,95,101,120,116,101,114,110,95,100,105,114,0,95,99,108,97,115,115,95,115,101,116,100,114,97,119,99,111, 109,109,97,110,100,0,95,99,108,97,115,115,95,115,101,116,104,101,108,112,115,121,109,98,111,108,0,95,99,108,97,115,115,95,115,101,116,112,97,114,101,110,116,119,105,100,103,101,116,0,95,99,108,97,115,115,95,115,101,116,112,114,111,112,101,114,116,105, 101,115,102,110,0,95,99,108,97,115,115,95,115,101,116,115,97,118,101,102,110,0,95,99,108,97,115,115,95,115,101,116,119,105,100,103,101,116,0,95,99,108,111,99,107,95,100,101,108,97,121,0,95,99,108,111,99,107,95,102,114,101,101,0,95,99,108,111,99,107,95, 103,101,116,108,111,103,105,99,97,108,116,105,109,101,0,95,99,108,111,99,107,95,103,101,116,115,121,115,116,105,109,101,0,95,99,108,111,99,107,95,103,101,116,115,121,115,116,105,109,101,97,102,116,101,114,0,95,99,108,111,99,107,95,103,101,116,116,105, 109,101,115,105,110,99,101,0,95,99,108,111,99,107,95,110,101,119,0,95,99,108,111,99,107,95,115,101,116,0,95,99,108,111,99,107,95,115,101,116,108,105,115,116,0,95,99,108,111,99,107,95,117,110,115,101,116,0,95,99,111,109,112,117,116,101,95,102,102,116, 0,95,99,111,110,102,95,105,110,105,116,0,95,99,111,112,121,95,112,101,114,102,56,0,95,99,111,112,121,95,112,101,114,102,111,114,109,0,95,99,111,112,121,98,121,116,101,115,0,95,99,111,115,95,116,97,98,108,101,0,95,99,114,101,97,116,101,95,104,97,110,110, 105,110,103,0,95,99,114,101,97,116,101,95,114,101,99,116,97,110,103,117,108,97,114,0,95,99,117,114,118,101,95,99,108,97,115,115,0,95,99,117,114,118,101,95,102,108,111,97,116,0,95,99,117,114,118,101,95,119,105,100,103,101,116,98,101,104,97,118,105,111, 114,0,95,100,95,97,114,105,116,104,109,101,116,105,99,95,115,101,116,117,112,0,95,100,95,97,114,114,97,121,95,115,101,116,117,112,0,95,100,95,99,116,108,95,115,101,116,117,112,0,95,100,95,100,97,99,95,115,101,116,117,112,0,95,100,95,100,101,108,97,121, 95,115,101,116,117,112,0,95,100,95,102,102,116,95,115,101,116,117,112,0,95,100,95,102,105,108,116,101,114,95,115,101,116,117,112,0,95,100,95,103,108,111,98,97,108,95,115,101,116,117,112,0,95,100,95,109,97,116,104,95,115,101,116,117,112,0,95,100,95,109, 105,115,99,95,115,101,116,117,112,0,95,100,95,111,115,99,95,115,101,116,117,112,0,95,100,95,115,111,117,110,100,102,105,108,101,95,115,101,116,117,112,0,95,100,95,117,103,101,110,95,115,101,116,117,112,0,95,100,98,116,111,112,111,119,0,95,100,98,116, 111,112,111,119,95,116,105,108,100,101,95,99,108,97,115,115,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,98,116,111,114,109,115,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,99,108,97,115,115,0,95, 100,98,116,111,114,109,115,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,111,103,101,110,115,121,109,0,95,100,111,119,110,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,48,0,95,100,114,97,119,110,117,109,98,101,114,95,99,108, 97,115,115,0,95,100,114,97,119,110,117,109,98,101,114,95,102,108,111,97,116,0,95,100,114,97,119,110,117,109,98,101,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,100,115,112,95,97,100,100,0,95,100,115,112,95,97,100,100,95,99,111,112, 121,0,95,100,115,112,95,97,100,100,95,112,108,117,115,0,95,100,115,112,95,97,100,100,95,115,99,97,108,97,114,99,111,112,121,0,95,100,115,112,95,97,100,100,95,122,101,114,111,0,95,100,115,112,95,97,100,100,118,0,95,100,115,112,95,116,105,99,107,0,95,100, 117,109,109,121,95,99,108,111,115,101,95,97,117,100,105,111,0,95,100,117,109,109,121,95,103,101,116,100,101,118,115,0,95,100,117,109,109,121,95,108,105,115,116,100,101,118,115,0,95,100,117,109,109,121,95,111,112,101,110,95,97,117,100,105,111,0,95,100, 117,109,109,121,95,115,101,110,100,95,100,97,99,115,0,95,101,110,100,112,111,115,116,0,95,101,110,118,95,116,105,108,100,101,95,99,108,97,115,115,0,95,101,110,118,95,116,105,108,100,101,95,115,101,116,117,112,0,95,101,114,114,111,114,0,95,101,120,112, 95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,102,102,116,95,99,108,101,97,114,0,95,102,105,101,108,100,100,101,115,99,95,99,118,116,102,114,111,109,99,111,111,114,100,0,95,102,105,101,108,100,100,101,115,99,95,99,118,116,116,111,99,111, 111,114,100,0,95,102,105,101,108,100,100,101,115,99,95,103,101,116,99,111,111,114,100,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,99,111,111,114,100,0,95,102,108,111,97,116,105,110,108,101,116,95,110,101,119,0,95,102,114,101,101,98,121,116, 101,115,0,95,102,116,111,109,0,95,102,116,111,109,95,116,105,108,100,101,95,99,108,97,115,115,0,95,102,116,111,109,95,116,105,108,100,101,95,115,101,116,117,112,0,95,103,95,97,114,114,97,121,95,115,101,116,117,112,0,95,103,95,98,97,110,103,95,115,101, 116,117,112,0,95,103,95,99,97,110,118,97,115,95,115,101,116,117,112,0,95,103,95,101,100,105,116,111,114,95,115,101,116,117,112,0,95,103,95,103,114,97,112,104,95,115,101,116,117,112,0,95,103,95,103,117,105,99,111,110,110,101,99,116,95,115,101,116,117, 112,0,95,103,95,104,114,97,100,105,111,95,115,101,116,117,112,0,95,103,95,104,115,108,105,100,101,114,95,115,101,116,117,112,0,95,103,95,105,111,95,115,101,116,117,112,0,95,103,95,109,121,99,97,110,118,97,115,95,115,101,116,117,112,0,95,103,95,110,117, 109,98,111,120,95,115,101,116,117,112,0,95,103,95,114,101,97,100,119,114,105,116,101,95,115,101,116,117,112,0,95,103,95,115,99,97,108,97,114,95,115,101,116,117,112,0,95,103,95,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,103,95,116,101, 120,116,95,115,101,116,117,112,0,95,103,95,116,111,103,103,108,101,95,115,101,116,117,112,0,95,103,95,116,114,97,118,101,114,115,97,108,95,115,101,116,117,112,0,95,103,95,118,114,97,100,105,111,95,115,101,116,117,112,0,95,103,95,118,115,108,105,100,101, 114,95,115,101,116,117,112,0,95,103,95,118,117,109,101,116,101,114,95,115,101,116,117,112,0,95,103,97,114,114,97,121,95,97,109,98,105,103,101,110,100,105,97,110,0,95,103,97,114,114,97,121,95,97,114,114,97,121,100,105,97,108,111,103,0,95,103,97,114,114, 97,121,95,97,114,114,97,121,118,105,101,119,108,105,115,116,95,99,108,111,115,101,0,95,103,97,114,114,97,121,95,97,114,114,97,121,118,105,101,119,108,105,115,116,95,102,105,108,108,112,97,103,101,0,95,103,97,114,114,97,121,95,97,114,114,97,121,118,105, 101,119,108,105,115,116,95,110,101,119,0,95,103,97,114,114,97,121,95,99,108,97,115,115,0,95,103,97,114,114,97,121,95,103,101,116,97,114,114,97,121,0,95,103,97,114,114,97,121,95,103,101,116,102,108,111,97,116,97,114,114,97,121,0,95,103,97,114,114,97,121, 95,103,101,116,102,108,111,97,116,119,111,114,100,115,0,95,103,97,114,114,97,121,95,103,101,116,110,97,109,101,0,95,103,97,114,114,97,121,95,105,110,105,116,0,95,103,97,114,114,97,121,95,110,112,111,105,110,116,115,0,95,103,97,114,114,97,121,95,112,114, 111,112,101,114,116,105,101,115,0,95,103,97,114,114,97,121,95,114,101,100,114,97,119,0,95,103,97,114,114,97,121,95,114,101,115,105,122,101,0,95,103,97,114,114,97,121,95,114,101,115,105,122,101,95,108,111,110,103,0,95,103,97,114,114,97,121,95,115,101, 116,115,97,118,101,105,116,0,95,103,97,114,114,97,121,95,116,101,109,112,108,97,116,101,0,95,103,97,114,114,97,121,95,117,115,101,100,105,110,100,115,112,0,95,103,97,114,114,97,121,95,118,101,99,0,95,103,97,114,114,97,121,95,119,105,100,103,101,116,98, 101,104,97,118,105,111,114,0,95,103,101,110,115,121,109,0,95,103,101,116,95,115,121,115,95,100,97,99,115,114,0,95,103,101,116,95,115,121,115,95,109,97,105,110,95,97,100,118,97,110,99,101,0,95,103,101,116,95,115,121,115,95,115,99,104,101,100,97,100,118, 97,110,99,101,0,95,103,101,116,95,115,121,115,95,115,99,104,101,100,98,108,111,99,107,115,105,122,101,0,95,103,101,116,95,115,121,115,95,115,108,101,101,112,103,114,97,105,110,0,95,103,101,116,95,115,121,115,95,115,111,117,110,100,105,110,0,95,103,101, 116,95,115,121,115,95,115,111,117,110,100,111,117,116,0,95,103,101,116,95,115,121,115,95,116,105,109,101,0,95,103,101,116,95,115,121,115,95,116,105,109,101,95,112,101,114,95,100,115,112,95,116,105,99,107,0,95,103,101,116,98,121,116,101,115,0,95,103,101, 116,102,110,0,95,103,101,116,122,98,121,116,101,115,0,95,103,102,120,115,116,117,98,95,100,101,108,101,116,101,102,111,114,107,101,121,0,95,103,102,120,115,116,117,98,95,110,101,119,0,95,103,108,105,115,116,95,97,100,100,0,95,103,108,105,115,116,95,97, 100,100,103,108,105,115,116,0,95,103,108,105,115,116,95,97,109,114,101,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,115,0,95,103,108,105,115,116,95,97,114,114,97,121,100,105,97,108,111,103,0,95,103,108,105,115,116,95,99,108,101, 97,110,117,112,0,95,103,108,105,115,116,95,99,108,101,97,114,0,95,103,108,105,115,116,95,100,101,108,101,116,101,0,95,103,108,105,115,116,95,100,101,115,101,108,101,99,116,0,95,103,108,105,115,116,95,100,101,115,101,108,101,99,116,108,105,110,101,0,95, 103,108,105,115,116,95,100,112,105,120,116,111,100,120,0,95,103,108,105,115,116,95,100,112,105,120,116,111,100,121,0,95,103,108,105,115,116,95,100,114,97,119,105,111,102,111,114,0,95,103,108,105,115,116,95,101,114,97,115,101,105,111,102,111,114,0,95, 103,108,105,115,116,95,102,105,110,100,103,114,97,112,104,0,95,103,108,105,115,116,95,102,105,110,100,114,116,101,120,116,0,95,103,108,105,115,116,95,102,114,101,101,0,95,103,108,105,115,116,95,103,101,116,99,97,110,118,97,115,0,95,103,108,105,115,116, 95,103,101,116,102,111,110,116,0,95,103,108,105,115,116,95,103,101,116,105,110,100,101,120,0,95,103,108,105,115,116,95,103,101,116,110,101,120,116,120,121,0,95,103,108,105,115,116,95,103,108,105,115,116,0,95,103,108,105,115,116,95,103,114,97,98,0,95, 103,108,105,115,116,95,105,110,105,116,0,95,103,108,105,115,116,95,105,115,103,114,97,112,104,0,95,103,108,105,115,116,95,105,115,115,101,108,101,99,116,101,100,0,95,103,108,105,115,116,95,105,115,116,111,112,108,101,118,101,108,0,95,103,108,105,115, 116,95,105,115,118,105,115,105,98,108,101,0,95,103,108,105,115,116,95,109,101,110,117,95,111,112,101,110,0,95,103,108,105,115,116,95,109,101,114,103,101,102,105,108,101,0,95,103,108,105,115,116,95,110,111,115,101,108,101,99,116,0,95,103,108,105,115,116, 95,112,105,120,101,108,115,116,111,120,0,95,103,108,105,115,116,95,112,105,120,101,108,115,116,111,121,0,95,103,108,105,115,116,95,114,101,97,100,0,95,103,108,105,115,116,95,114,101,97,100,102,114,111,109,98,105,110,98,117,102,0,95,103,108,105,115,116, 95,114,101,97,100,115,99,97,108,97,114,0,95,103,108,105,115,116,95,114,101,100,114,97,119,0,95,103,108,105,115,116,95,114,101,116,101,120,116,0,95,103,108,105,115,116,95,115,99,97,108,97,114,0,95,103,108,105,115,116,95,115,101,108,101,99,116,0,95,103, 108,105,115,116,95,115,101,108,101,99,116,97,108,108,0,95,103,108,105,115,116,95,115,101,108,101,99,116,105,111,110,105,110,100,101,120,0,95,103,108,105,115,116,95,115,101,108,101,99,116,108,105,110,101,0,95,103,108,105,115,116,95,115,111,114,116,0,95, 103,108,105,115,116,95,116,101,120,116,0,95,103,108,105,115,116,95,118,97,108,105,100,0,95,103,108,105,115,116,95,119,114,105,116,101,116,111,98,105,110,98,117,102,0,95,103,108,105,115,116,95,120,116,111,112,105,120,101,108,115,0,95,103,108,105,115,116, 95,121,116,111,112,105,120,101,108,115,0,95,103,108,111,98,95,97,117,100,105,111,95,100,105,97,108,111,103,0,95,103,108,111,98,95,97,117,100,105,111,95,112,114,111,112,101,114,116,105,101,115,0,95,103,108,111,98,95,97,117,100,105,111,95,115,101,116,97, 112,105,0,95,103,108,111,98,95,97,117,100,105,111,115,116,97,116,117,115,0,95,103,108,111,98,95,100,115,112,0,95,103,108,111,98,95,101,118,97,108,102,105,108,101,0,95,103,108,111,98,95,102,105,110,100,101,114,114,111,114,0,95,103,108,111,98,95,102,111, 111,0,95,103,108,111,98,95,105,110,105,116,0,95,103,108,111,98,95,105,110,105,116,102,114,111,109,103,117,105,0,95,103,108,111,98,95,107,101,121,0,95,103,108,111,98,95,109,101,116,101,114,115,0,95,103,108,111,98,95,109,105,100,105,95,100,105,97,108,111, 103,0,95,103,108,111,98,95,109,105,100,105,95,112,114,111,112,101,114,116,105,101,115,0,95,103,108,111,98,95,109,105,100,105,95,115,101,116,97,112,105,0,95,103,108,111,98,95,112,97,116,104,95,100,105,97,108,111,103,0,95,103,108,111,98,95,112,100,111, 98,106,101,99,116,0,95,103,108,111,98,95,112,105,110,103,0,95,103,108,111,98,95,113,117,105,116,0,95,103,108,111,98,95,115,97,118,101,112,114,101,102,101,114,101,110,99,101,115,0,95,103,108,111,98,95,115,101,116,102,105,108,101,110,97,109,101,0,95,103, 108,111,98,95,115,116,97,114,116,95,112,97,116,104,95,100,105,97,108,111,103,0,95,103,108,111,98,95,115,116,97,114,116,95,115,116,97,114,116,117,112,95,100,105,97,108,111,103,0,95,103,108,111,98,95,115,116,97,114,116,117,112,95,100,105,97,108,111,103, 0,95,103,108,111,98,95,118,101,114,105,102,121,113,117,105,116,0,95,103,111,98,106,95,97,99,116,105,118,97,116,101,0,95,103,111,98,106,95,99,108,105,99,107,0,95,103,111,98,106,95,100,101,108,101,116,101,0,95,103,111,98,106,95,100,105,115,112,108,97,99, 101,0,95,103,111,98,106,95,103,101,116,114,101,99,116,0,95,103,111,98,106,95,115,97,118,101,0,95,103,111,98,106,95,115,101,108,101,99,116,0,95,103,111,98,106,95,115,104,111,117,108,100,118,105,115,0,95,103,111,98,106,95,118,105,115,0,95,103,112,111,105, 110,116,101,114,95,99,104,101,99,107,0,95,103,112,111,105,110,116,101,114,95,99,111,112,121,0,95,103,112,111,105,110,116,101,114,95,105,110,105,116,0,95,103,112,111,105,110,116,101,114,95,115,101,116,97,114,114,97,121,0,95,103,112,111,105,110,116,101, 114,95,115,101,116,103,108,105,115,116,0,95,103,112,111,105,110,116,101,114,95,117,110,115,101,116,0,95,103,114,97,112,104,95,97,114,114,97,121,0,95,103,114,97,112,104,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,103,115,116,117,98,95, 99,117,116,111,102,102,0,95,103,115,116,117,98,95,110,101,119,0,95,103,116,101,109,112,108,97,116,101,95,103,101,116,0,95,103,117,105,99,111,110,110,101,99,116,95,110,101,119,0,95,103,117,105,99,111,110,110,101,99,116,95,110,111,116,97,114,103,101,116, 0,95,104,114,97,100,105,111,95,100,114,97,119,0,95,104,114,97,100,105,111,95,100,114,97,119,95,99,111,110,102,105,103,0,95,104,114,97,100,105,111,95,100,114,97,119,95,101,114,97,115,101,0,95,104,114,97,100,105,111,95,100,114,97,119,95,105,111,0,95,104, 114,97,100,105,111,95,100,114,97,119,95,109,111,118,101,0,95,104,114,97,100,105,111,95,100,114,97,119,95,110,101,119,0,95,104,114,97,100,105,111,95,100,114,97,119,95,115,101,108,101,99,116,0,95,104,114,97,100,105,111,95,100,114,97,119,95,117,112,100, 97,116,101,0,95,104,114,97,100,105,111,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,104,115,108,105,100,101,114,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,104,115,108,105,100,101,114,95,99,104,101,99,107,95,119,105,100,116,104, 0,95,104,115,108,105,100,101,114,95,100,114,97,119,0,95,104,115,108,105,100,101,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,105,101,109,95,102,115,116,121,108,101,116,111,105,110,116,0,95,105,101,109,95,105,110,116,116,111,102,115, 116,121,108,101,0,95,105,101,109,95,105,110,116,116,111,115,121,109,97,114,103,115,0,95,105,101,109,95,115,121,109,97,114,103,115,116,111,105,110,116,0,95,105,101,109,103,117,105,95,97,108,108,95,99,111,108,50,115,97,118,101,0,95,105,101,109,103,117, 105,95,97,108,108,95,99,111,108,102,114,111,109,108,111,97,100,0,95,105,101,109,103,117,105,95,97,108,108,95,100,111,108,108,97,114,50,114,97,117,116,101,0,95,105,101,109,103,117,105,95,97,108,108,95,100,111,108,108,97,114,97,114,103,50,115,121,109,0, 95,105,101,109,103,117,105,95,97,108,108,95,114,97,117,116,101,50,100,111,108,108,97,114,0,95,105,101,109,103,117,105,95,97,108,108,95,115,121,109,50,100,111,108,108,97,114,97,114,103,0,95,105,101,109,103,117,105,95,99,108,105,112,95,102,111,110,116, 0,95,105,101,109,103,117,105,95,99,108,105,112,95,115,105,122,101,0,95,105,101,109,103,117,105,95,99,111,108,111,114,0,95,105,101,109,103,117,105,95,99,111,108,111,114,95,104,101,120,0,95,105,101,109,103,117,105,95,99,111,109,112,97,116,105,98,108,101, 95,99,111,108,0,95,105,101,109,103,117,105,95,100,101,108,101,116,101,0,95,105,101,109,103,117,105,95,100,101,108,116,97,0,95,105,101,109,103,117,105,95,100,105,97,108,111,103,0,95,105,101,109,103,117,105,95,100,105,115,112,108,97,99,101,0,95,105,101, 109,103,117,105,95,100,111,108,108,97,114,50,114,97,117,116,101,0,95,105,101,109,103,117,105,95,102,105,114,115,116,95,100,111,108,108,97,114,97,114,103,50,115,121,109,0,95,105,101,109,103,117,105,95,108,97,98,101,108,0,95,105,101,109,103,117,105,95, 108,97,98,101,108,95,102,111,110,116,0,95,105,101,109,103,117,105,95,108,97,98,101,108,95,112,111,115,0,95,105,101,109,103,117,105,95,109,111,100,117,108,111,95,99,111,108,111,114,0,95,105,101,109,103,117,105,95,110,101,119,95,100,111,103,101,116,110, 97,109,101,0,95,105,101,109,103,117,105,95,110,101,119,95,103,101,116,110,97,109,101,115,0,95,105,101,109,103,117,105,95,112,111,115,0,95,105,101,109,103,117,105,95,112,114,111,112,101,114,116,105,101,115,0,95,105,101,109,103,117,105,95,114,97,117,116, 101,50,100,111,108,108,97,114,0,95,105,101,109,103,117,105,95,114,101,99,101,105,118,101,0,95,105,101,109,103,117,105,95,115,97,118,101,0,95,105,101,109,103,117,105,95,115,101,108,101,99,116,0,95,105,101,109,103,117,105,95,115,101,110,100,0,95,105,101, 109,103,117,105,95,115,105,122,101,0,95,105,101,109,103,117,105,95,118,101,114,105,102,121,95,115,110,100,95,110,101,95,114,99,118,0,95,105,101,109,103,117,105,95,118,105,115,0,95,105,101,109,103,117,105,95,118,117,95,99,111,108,0,95,105,101,109,103, 117,105,95,118,117,95,100,98,50,105,0,95,105,101,109,103,117,105,95,118,117,95,115,99,97,108,101,95,115,116,114,0,95,105,108,111,103,50,0,95,105,110,108,101,116,95,102,114,101,101,0,95,105,110,108,101,116,95,103,101,116,115,105,103,110,97,108,105,110, 100,101,120,0,95,105,110,108,101,116,95,110,101,119,0,95,105,110,109,105,100,105,95,97,102,116,101,114,116,111,117,99,104,0,95,105,110,109,105,100,105,95,98,121,116,101,0,95,105,110,109,105,100,105,95,99,108,107,0,95,105,110,109,105,100,105,95,99,111, 110,116,114,111,108,99,104,97,110,103,101,0,95,105,110,109,105,100,105,95,110,111,116,101,111,110,0,95,105,110,109,105,100,105,95,112,105,116,99,104,98,101,110,100,0,95,105,110,109,105,100,105,95,112,111,108,121,97,102,116,101,114,116,111,117,99,104, 0,95,105,110,109,105,100,105,95,112,114,111,103,114,97,109,99,104,97,110,103,101,0,95,105,110,109,105,100,105,95,114,101,97,108,116,105,109,101,105,110,0,95,105,110,109,105,100,105,95,115,121,115,101,120,0,95,108,105,98,112,100,95,97,100,100,95,102,108, 111,97,116,0,95,108,105,98,112,100,95,97,100,100,95,115,121,109,98,111,108,0,95,108,105,98,112,100,95,97,100,100,95,116,111,95,115,101,97,114,99,104,95,112,97,116,104,0,95,108,105,98,112,100,95,97,102,116,101,114,116,111,117,99,104,0,95,108,105,98,112, 100,95,97,102,116,101,114,116,111,117,99,104,104,111,111,107,0,95,108,105,98,112,100,95,98,97,110,103,0,95,108,105,98,112,100,95,98,97,110,103,104,111,111,107,0,95,108,105,98,112,100,95,98,105,110,100,0,95,108,105,98,112,100,95,98,108,111,99,107,115, 105,122,101,0,95,108,105,98,112,100,95,99,108,101,97,114,95,115,101,97,114,99,104,95,112,97,116,104,0,95,108,105,98,112,100,95,99,108,111,115,101,102,105,108,101,0,95,108,105,98,112,100,95,99,111,110,116,114,111,108,99,104,97,110,103,101,0,95,108,105, 98,112,100,95,99,111,110,116,114,111,108,99,104,97,110,103,101,104,111,111,107,0,95,108,105,98,112,100,95,101,120,105,115,116,115,0,95,108,105,98,112,100,95,102,105,110,105,115,104,95,108,105,115,116,0,95,108,105,98,112,100,95,102,105,110,105,115,104, 95,109,101,115,115,97,103,101,0,95,108,105,98,112,100,95,102,108,111,97,116,0,95,108,105,98,112,100,95,102,108,111,97,116,104,111,111,107,0,95,108,105,98,112,100,95,103,101,116,100,111,108,108,97,114,122,101,114,111,0,95,108,105,98,112,100,95,105,110, 105,116,0,95,108,105,98,112,100,95,105,110,105,116,95,97,117,100,105,111,0,95,108,105,98,112,100,95,108,105,115,116,104,111,111,107,0,95,108,105,98,112,100,95,109,101,115,115,97,103,101,104,111,111,107,0,95,108,105,98,112,100,95,109,105,100,105,98,121, 116,101,0,95,108,105,98,112,100,95,109,105,100,105,98,121,116,101,104,111,111,107,0,95,108,105,98,112,100,95,110,111,116,101,111,110,0,95,108,105,98,112,100,95,110,111,116,101,111,110,104,111,111,107,0,95,108,105,98,112,100,95,111,112,101,110,102,105, 108,101,0,95,108,105,98,112,100,95,112,105,116,99,104,98,101,110,100,0,95,108,105,98,112,100,95,112,105,116,99,104,98,101,110,100,104,111,111,107,0,95,108,105,98,112,100,95,112,111,108,121,97,102,116,101,114,116,111,117,99,104,0,95,108,105,98,112,100, 95,112,111,108,121,97,102,116,101,114,116,111,117,99,104,104,111,111,107,0,95,108,105,98,112,100,95,112,114,105,110,116,104,111,111,107,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,100,111,117,98,108,101,0,95,108,105,98,112,100,95,112,114, 111,99,101,115,115,95,102,108,111,97,116,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,114,97,119,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,115,104,111,114,116,0,95,108,105,98,112,100,95,112,114,111,103,114,97,109,99,104,97, 110,103,101,0,95,108,105,98,112,100,95,112,114,111,103,114,97,109,99,104,97,110,103,101,104,111,111,107,0,95,108,105,98,112,100,95,115,116,97,114,116,95,109,101,115,115,97,103,101,0,95,108,105,98,112,100,95,115,121,109,98,111,108,0,95,108,105,98,112, 100,95,115,121,109,98,111,108,104,111,111,107,0,95,108,105,98,112,100,95,115,121,115,101,120,0,95,108,105,98,112,100,95,115,121,115,114,101,97,108,116,105,109,101,0,95,108,105,98,112,100,95,117,110,98,105,110,100,0,95,108,105,98,112,100,114,101,99,101, 105,118,101,95,110,101,119,0,95,108,105,98,112,100,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,108,105,110,101,116,114,97,118,101,114,115,101,114,95,110,101,120,116,0,95,108,105,110,101,116,114,97,118,101,114,115,101,114,95,115,107,105,112, 111,98,106,101,99,116,0,95,108,105,110,101,116,114,97,118,101,114,115,101,114,95,115,116,97,114,116,0,95,108,105,115,116,95,97,112,112,101,110,100,95,99,108,97,115,115,0,95,108,105,115,116,95,108,101,110,103,116,104,95,99,108,97,115,115,0,95,108,105, 115,116,95,112,114,101,112,101,110,100,95,99,108,97,115,115,0,95,108,105,115,116,95,115,112,108,105,116,95,99,108,97,115,115,0,95,108,105,115,116,95,116,114,105,109,95,99,108,97,115,115,0,95,108,111,97,100,95,114,101,103,105,115,116,101,114,115,0,95, 108,111,103,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,109,95,98,97,116,99,104,109,97,105,110,0,95,109,95,109,97,105,110,108,111,111,112,0,95,109,95,112,100,95,115,101,116,117,112,0,95,109,97,120,95,100,101,102,97,117,108,116,0,95,109, 97,120,95,112,101,114,102,56,0,95,109,97,120,95,112,101,114,102,111,114,109,0,95,109,97,121,101,114,95,102,102,116,0,95,109,97,121,101,114,95,102,104,116,0,95,109,97,121,101,114,95,105,102,102,116,0,95,109,97,121,101,114,95,114,101,97,108,102,102,116, 0,95,109,97,121,101,114,95,114,101,97,108,105,102,102,116,0,95,109,101,115,115,95,105,110,105,116,0,95,109,105,110,95,112,101,114,102,56,0,95,109,105,110,95,112,101,114,102,111,114,109,0,95,109,105,110,117,115,95,112,101,114,102,56,0,95,109,105,110,117, 115,95,112,101,114,102,111,114,109,0,95,109,116,111,102,0,95,109,116,111,102,95,116,105,108,100,101,95,99,108,97,115,115,0,95,109,116,111,102,95,116,105,108,100,101,95,115,101,116,117,112,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,0,95,109, 121,95,99,97,110,118,97,115,95,100,114,97,119,95,99,111,110,102,105,103,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,101,114,97,115,101,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,109,111,118,101,0,95,109,121,95,99,97,110,118, 97,115,95,100,114,97,119,95,110,101,119,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,115,101,108,101,99,116,0,95,109,121,95,99,97,110,118,97,115,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,109,121,95,110,117,109,98,111, 120,95,99,97,108,99,95,102,111,110,116,119,105,100,116,104,0,95,109,121,95,110,117,109,98,111,120,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,109,121,95,110,117,109,98,111,120,95,99,108,105,112,0,95,109,121,95,110,117,109,98,111,120,95,100,114, 97,119,0,95,109,121,95,110,117,109,98,111,120,95,102,116,111,97,0,95,109,121,95,110,117,109,98,111,120,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,110,97,109,101,108,105,115,116,95,97,112,112,101,110,100,0,95,110,97,109,101,108,105, 115,116,95,97,112,112,101,110,100,95,102,105,108,101,115,0,95,110,97,109,101,108,105,115,116,95,102,114,101,101,0,95,110,97,109,101,108,105,115,116,95,103,101,116,0,95,110,101,116,95,97,108,108,111,99,0,95,110,101,116,95,100,101,97,108,108,111,99,0,95, 110,101,119,95,97,110,121,116,104,105,110,103,0,95,110,101,119,101,115,116,0,95,110,117,108,108,102,110,0,95,111,98,106,95,99,111,110,110,101,99,116,0,95,111,98,106,95,100,105,115,99,111,110,110,101,99,116,0,95,111,98,106,95,102,105,110,100,115,105,103, 110,97,108,115,99,97,108,97,114,0,95,111,98,106,95,105,110,105,116,0,95,111,98,106,95,105,115,115,105,103,110,97,108,105,110,108,101,116,0,95,111,98,106,95,105,115,115,105,103,110,97,108,111,117,116,108,101,116,0,95,111,98,106,95,108,105,115,116,0,95, 111,98,106,95,109,111,118,101,105,110,108,101,116,102,105,114,115,116,0,95,111,98,106,95,109,111,118,101,111,117,116,108,101,116,102,105,114,115,116,0,95,111,98,106,95,110,101,120,116,116,114,97,118,101,114,115,101,111,117,116,108,101,116,0,95,111,98, 106,95,110,105,110,108,101,116,115,0,95,111,98,106,95,110,111,117,116,108,101,116,115,0,95,111,98,106,95,110,115,105,103,105,110,108,101,116,115,0,95,111,98,106,95,110,115,105,103,111,117,116,108,101,116,115,0,95,111,98,106,95,115,105,103,105,110,108, 101,116,105,110,100,101,120,0,95,111,98,106,95,115,105,103,111,117,116,108,101,116,105,110,100,101,120,0,95,111,98,106,95,115,116,97,114,116,116,114,97,118,101,114,115,101,111,117,116,108,101,116,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108, 101,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108,101,95,118,105,97,95,99,97,110,118,97,115,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108,101,95,118,105,97,95,102,100,0,95,111,112,101,110,95,118,105,97,95,104,101,108,112,112,97,116, 104,0,95,111,112,101,110,95,118,105,97,95,112,97,116,104,0,95,111,117,116,108,101,116,95,97,110,121,116,104,105,110,103,0,95,111,117,116,108,101,116,95,98,97,110,103,0,95,111,117,116,108,101,116,95,102,108,111,97,116,0,95,111,117,116,108,101,116,95,102, 114,101,101,0,95,111,117,116,108,101,116,95,103,101,116,115,105,103,110,97,108,105,110,100,101,120,0,95,111,117,116,108,101,116,95,103,101,116,115,121,109,98,111,108,0,95,111,117,116,108,101,116,95,108,105,115,116,0,95,111,117,116,108,101,116,95,110, 101,119,0,95,111,117,116,108,101,116,95,112,111,105,110,116,101,114,0,95,111,117,116,108,101,116,95,115,101,116,115,116,97,99,107,108,105,109,0,95,111,117,116,108,101,116,95,115,121,109,98,111,108,0,95,111,117,116,109,105,100,105,95,97,102,116,101,114, 116,111,117,99,104,0,95,111,117,116,109,105,100,105,95,98,121,116,101,0,95,111,117,116,109,105,100,105,95,99,111,110,116,114,111,108,99,104,97,110,103,101,0,95,111,117,116,109,105,100,105,95,110,111,116,101,111,110,0,95,111,117,116,109,105,100,105,95, 112,105,116,99,104,98,101,110,100,0,95,111,117,116,109,105,100,105,95,112,111,108,121,97,102,116,101,114,116,111,117,99,104,0,95,111,117,116,109,105,100,105,95,112,114,111,103,114,97,109,99,104,97,110,103,101,0,95,111,118,101,114,95,112,101,114,102,56, 0,95,111,118,101,114,95,112,101,114,102,111,114,109,0,95,112,100,95,98,97,110,103,0,95,112,100,95,98,105,110,100,0,95,112,100,95,99,97,110,118,97,115,109,97,107,101,114,0,95,112,100,95,99,104,101,99,107,111,98,106,101,99,116,0,95,112,100,95,99,111,109, 112,105,108,101,100,97,116,101,0,95,112,100,95,99,111,109,112,105,108,101,116,105,109,101,0,95,112,100,95,100,111,108,111,97,100,98,97,110,103,0,95,112,100,95,101,114,114,111,114,0,95,112,100,95,102,102,116,0,95,112,100,95,102,105,110,100,98,121,99,108, 97,115,115,0,95,112,100,95,102,108,111,97,116,0,95,112,100,95,102,111,114,119,97,114,100,109,101,115,115,0,95,112,100,95,102,114,101,101,0,95,112,100,95,103,101,116,112,97,114,101,110,116,119,105,100,103,101,116,0,95,112,100,95,105,110,105,116,0,95,112, 100,95,108,105,115,116,0,95,112,100,95,110,101,119,0,95,112,100,95,110,101,119,101,115,116,0,95,112,100,95,111,98,106,101,99,116,109,97,107,101,114,0,95,112,100,95,112,111,105,110,116,101,114,0,95,112,100,95,112,111,112,115,121,109,0,95,112,100,95,112, 117,115,104,115,121,109,0,95,112,100,95,115,101,116,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,0,95,112,100,95,115,121,109,98,111,108,0,95,112,100,95,116,121,112,101,100,109,101,115,115,0,95,112,100,95,117,110,98,105,110,100,0, 95,112,100,95,118,101,114,115,105,111,110,0,95,112,100,95,118,109,101,115,115,0,95,112,100,102,108,111,97,116,95,115,101,116,117,112,0,95,112,100,105,110,116,95,115,101,116,117,112,0,95,112,100,115,121,109,98,111,108,95,115,101,116,117,112,0,95,112,108, 111,116,95,99,108,97,115,115,0,95,112,108,111,116,95,102,108,111,97,116,0,95,112,108,111,116,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,112,108,117,115,95,112,101,114,102,56,0,95,112,108,117,115,95,112,101,114,102,111,114,109,0,95, 112,111,105,110,116,101,114,105,110,108,101,116,95,110,101,119,0,95,112,111,115,116,0,95,112,111,115,116,97,116,111,109,0,95,112,111,115,116,102,108,111,97,116,0,95,112,111,115,116,115,116,114,105,110,103,0,95,112,111,119,95,116,105,108,100,101,95,112, 101,114,102,111,114,109,0,95,112,111,119,101,114,95,111,102,95,116,119,111,0,95,112,111,119,116,111,100,98,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,99,108,97,115,115,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,115,101,116, 117,112,0,95,113,56,95,114,115,113,114,116,0,95,113,56,95,115,113,114,116,0,95,113,114,115,113,114,116,0,95,113,115,113,114,116,0,95,114,101,115,97,109,112,108,101,95,100,115,112,0,95,114,101,115,97,109,112,108,101,95,102,114,101,101,0,95,114,101,115, 97,109,112,108,101,95,105,110,105,116,0,95,114,101,115,97,109,112,108,101,102,114,111,109,95,100,115,112,0,95,114,101,115,97,109,112,108,101,116,111,95,100,115,112,0,95,114,101,115,105,122,101,98,121,116,101,115,0,95,114,109,115,116,111,100,98,0,95,114, 109,115,116,111,100,98,95,116,105,108,100,101,95,99,108,97,115,115,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,115,101,116,117,112,0,95,114,111,117,116,101,95,115,101,116,117,112,0,95,114,116,101,120,116,95,97,99,116,105,118,97,116,101, 0,95,114,116,101,120,116,95,100,105,115,112,108,97,99,101,0,95,114,116,101,120,116,95,100,114,97,119,0,95,114,116,101,120,116,95,101,114,97,115,101,0,95,114,116,101,120,116,95,102,114,101,101,0,95,114,116,101,120,116,95,103,101,116,115,101,108,116,101, 120,116,0,95,114,116,101,120,116,95,103,101,116,116,97,103,0,95,114,116,101,120,116,95,103,101,116,116,101,120,116,0,95,114,116,101,120,116,95,104,101,105,103,104,116,0,95,114,116,101,120,116,95,107,101,121,0,95,114,116,101,120,116,95,109,111,117,115, 101,0,95,114,116,101,120,116,95,110,101,119,0,95,114,116,101,120,116,95,114,101,116,101,120,116,0,95,114,116,101,120,116,95,115,101,108,101,99,116,0,95,114,116,101,120,116,95,119,105,100,116,104,0,95,115,95,0,95,115,95,95,78,0,95,115,95,95,88,0,95,115, 95,97,110,121,116,104,105,110,103,0,95,115,95,98,97,110,103,0,95,115,95,102,108,111,97,116,0,95,115,95,108,105,115,116,0,95,115,95,112,111,105,110,116,101,114,0,95,115,95,115,105,103,110,97,108,0,95,115,95,115,121,109,98,111,108,0,95,115,95,120,0,95, 115,95,121,0,95,115,99,97,108,97,114,95,99,108,97,115,115,0,95,115,99,97,108,97,114,95,100,111,99,108,105,99,107,0,95,115,99,97,108,97,114,95,103,101,116,98,97,115,101,120,121,0,95,115,99,97,108,97,114,95,110,101,119,0,95,115,99,97,108,97,114,95,114, 101,100,114,97,119,0,95,115,99,97,108,97,114,109,97,120,95,112,101,114,102,56,0,95,115,99,97,108,97,114,109,97,120,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,109,105,110,95,112,101,114,102,56,0,95,115,99,97,108,97,114,109,105,110,95,112, 101,114,102,111,114,109,0,95,115,99,97,108,97,114,109,105,110,117,115,95,112,101,114,102,56,0,95,115,99,97,108,97,114,109,105,110,117,115,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,111,118,101,114,95,112,101,114,102,56,0,95,115,99,97,108, 97,114,111,118,101,114,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,112,108,117,115,95,112,101,114,102,56,0,95,115,99,97,108,97,114,112,108,117,115,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,116,105,109,101,115,95,112,101,114, 102,56,0,95,115,99,97,108,97,114,116,105,109,101,115,95,112,101,114,102,111,114,109,0,95,115,99,104,101,100,95,97,117,100,105,111,95,99,97,108,108,98,97,99,107,102,110,0,95,115,99,104,101,100,95,103,101,116,101,118,101,110,116,110,111,0,95,115,99,104, 101,100,95,114,101,111,112,101,110,109,101,112,108,101,97,115,101,0,95,115,99,104,101,100,95,115,101,116,95,117,115,105,110,103,95,97,117,100,105,111,0,95,115,99,104,101,100,95,116,105,99,107,0,95,115,101,108,101,99,116,95,115,101,116,117,112,0,95,115, 104,111,114,116,95,116,111,95,102,108,111,97,116,0,95,115,105,103,98,105,113,117,97,100,95,99,108,97,115,115,0,95,115,105,103,98,105,113,117,97,100,95,115,101,116,117,112,0,95,115,105,103,98,112,95,99,108,97,115,115,0,95,115,105,103,98,112,95,115,101, 116,117,112,0,95,115,105,103,99,112,111,108,101,95,99,108,97,115,115,0,95,115,105,103,99,112,111,108,101,95,115,101,116,117,112,0,95,115,105,103,99,122,101,114,111,95,99,108,97,115,115,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,99,108,97,115, 115,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,115,101,116,117,112,0,95,115,105,103,99,122,101,114,111,95,115,101,116,117,112,0,95,115,105,103,104,105,112,95,99,108,97,115,115,0,95,115,105,103,104,105,112,95,115,101,116,117,112,0,95,115,105, 103,108,111,112,95,99,108,97,115,115,0,95,115,105,103,108,111,112,95,115,101,116,117,112,0,95,115,105,103,110,97,108,95,99,108,101,97,110,117,112,0,95,115,105,103,110,97,108,95,99,111,109,112,97,116,105,98,108,101,0,95,115,105,103,110,97,108,95,109,97, 107,101,114,101,117,115,97,98,108,101,0,95,115,105,103,110,97,108,95,110,101,119,0,95,115,105,103,110,97,108,95,115,101,116,98,111,114,114,111,119,101,100,0,95,115,105,103,110,97,108,105,110,108,101,116,95,110,101,119,0,95,115,105,103,114,112,111,108, 101,95,99,108,97,115,115,0,95,115,105,103,114,112,111,108,101,95,115,101,116,117,112,0,95,115,105,103,114,115,113,114,116,95,115,101,116,117,112,0,95,115,105,103,114,122,101,114,111,95,99,108,97,115,115,0,95,115,105,103,114,122,101,114,111,95,114,101, 118,95,99,108,97,115,115,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,115,101,116,117,112,0,95,115,105,103,114,122,101,114,111,95,115,101,116,117,112,0,95,115,105,103,115,97,109,112,104,111,108,100,95,99,108,97,115,115,0,95,115,105,103,115, 97,109,112,104,111,108,100,95,115,101,116,117,112,0,95,115,105,103,115,113,114,116,95,112,101,114,102,111,114,109,0,95,115,105,103,115,113,114,116,95,115,101,116,117,112,0,95,115,105,103,118,99,102,95,99,108,97,115,115,0,95,115,105,103,118,99,102,95, 115,101,116,117,112,0,95,115,105,103,119,114,97,112,95,99,108,97,115,115,0,95,115,105,103,119,114,97,112,95,115,101,116,117,112,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,102,114,101,101,0,95,115,111,99,107,101,116,114,101,99,101,105, 118,101,114,95,110,101,119,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,114,101,97,100,0,95,115,111,117,110,100,102,105,108,101,114,95,100,111,119,114,105,116,101,0,95,115,116,97,114,116,112,111,115,116,0,95,115,116,111,114,101,95,114, 101,103,105,115,116,101,114,115,0,95,115,119,97,112,95,115,101,116,117,112,0,95,115,121,109,98,111,108,105,110,108,101,116,95,110,101,119,0,95,115,121,115,95,97,100,100,104,105,115,116,0,95,115,121,115,95,97,100,100,112,111,108,108,102,110,0,95,115,121, 115,95,97,100,118,97,110,99,101,95,115,97,109,112,108,101,115,0,95,115,121,115,95,97,114,103,112,97,114,115,101,0,95,115,121,115,95,97,117,100,105,111,97,112,105,0,95,115,121,115,95,97,117,100,105,111,97,112,105,111,112,101,110,101,100,0,95,115,121,115, 95,98,97,105,108,0,95,115,121,115,95,98,97,115,104,102,105,108,101,110,97,109,101,0,95,115,121,115,95,98,108,111,99,107,115,105,122,101,0,95,115,121,115,95,99,108,101,97,114,104,105,115,116,0,95,115,121,115,95,99,108,111,115,101,0,95,115,121,115,95,99, 108,111,115,101,95,97,117,100,105,111,0,95,115,121,115,95,99,108,111,115,101,95,109,105,100,105,0,95,115,121,115,95,99,108,111,115,101,115,111,99,107,101,116,0,95,115,121,115,95,100,97,99,115,114,0,95,115,121,115,95,100,101,98,117,103,108,101,118,101, 108,0,95,115,121,115,95,100,101,99,111,100,101,100,105,97,108,111,103,0,95,115,121,115,95,100,101,102,97,117,108,116,102,111,110,116,0,95,115,121,115,95,100,101,102,101,97,116,114,116,0,95,115,121,115,95,100,111,102,108,97,103,115,0,95,115,121,115,95, 101,120,105,116,0,95,115,121,115,95,101,120,116,101,114,110,97,108,115,99,104,101,100,108,105,98,0,95,115,121,115,95,101,120,116,101,114,110,97,108,115,99,104,101,100,108,105,98,110,97,109,101,0,95,115,121,115,95,101,120,116,101,114,110,108,105,115,116, 0,95,115,121,115,95,101,120,116,114,97,102,108,97,103,115,0,95,115,121,115,95,101,120,116,114,97,102,108,97,103,115,115,116,114,105,110,103,0,95,115,121,115,95,102,105,110,100,112,114,111,103,100,105,114,0,95,115,121,115,95,102,108,97,103,115,0,95,115, 121,115,95,102,111,110,116,0,95,115,121,115,95,102,111,110,116,104,101,105,103,104,116,0,95,115,121,115,95,102,111,110,116,119,101,105,103,104,116,0,95,115,121,115,95,102,111,110,116,119,105,100,116,104,0,95,115,121,115,95,103,101,116,95,97,117,100,105, 111,95,97,112,105,115,0,95,115,121,115,95,103,101,116,95,97,117,100,105,111,95,100,101,118,115,0,95,115,121,115,95,103,101,116,95,97,117,100,105,111,95,112,97,114,97,109,115,0,95,115,121,115,95,103,101,116,95,105,110,99,104,97,110,110,101,108,115,0,95, 115,121,115,95,103,101,116,95,109,105,100,105,95,97,112,105,115,0,95,115,121,115,95,103,101,116,95,109,105,100,105,95,112,97,114,97,109,115,0,95,115,121,115,95,103,101,116,95,111,117,116,99,104,97,110,110,101,108,115,0,95,115,121,115,95,103,101,116,98, 108,107,115,105,122,101,0,95,115,121,115,95,103,101,116,109,101,116,101,114,115,0,95,115,121,115,95,103,101,116,114,101,97,108,116,105,109,101,0,95,115,121,115,95,103,101,116,115,114,0,95,115,121,115,95,103,101,116,118,101,114,115,105,111,110,0,95,115, 121,115,95,103,117,105,0,95,115,121,115,95,103,117,105,99,109,100,0,95,115,121,115,95,103,117,105,115,101,116,112,111,114,116,110,117,109,98,101,114,0,95,115,121,115,95,104,101,108,112,112,97,116,104,0,95,115,121,115,95,104,105,112,114,105,111,114,105, 116,121,0,95,115,121,115,95,104,111,115,116,102,111,110,116,115,105,122,101,0,95,115,121,115,95,105,100,108,101,104,111,111,107,0,95,115,121,115,95,105,110,99,104,97,110,110,101,108,115,0,95,115,121,115,95,105,110,105,116,109,105,100,105,113,117,101, 117,101,0,95,115,121,115,95,105,115,97,98,115,111,108,117,116,101,112,97,116,104,0,95,115,121,115,95,108,105,98,100,105,114,0,95,115,121,115,95,108,105,115,116,100,101,118,115,0,95,115,121,115,95,108,105,115,116,109,105,100,105,100,101,118,115,0,95,115, 121,115,95,108,111,97,100,95,108,105,98,0,95,115,121,115,95,108,111,97,100,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,108,111,99,107,0,95,115,121,115,95,108,111,103,95,101,114,114,111,114,0,95,115,121,115,95,108,111,103,101,114,114, 111,114,0,95,115,121,115,95,109,97,105,110,0,95,115,121,115,95,109,105,99,114,111,115,108,101,101,112,0,95,115,121,115,95,109,105,100,105,105,110,100,101,118,108,105,115,116,0,95,115,121,115,95,109,105,100,105,111,117,116,100,101,118,108,105,115,116, 0,95,115,121,115,95,110,101,97,114,101,115,116,102,111,110,116,115,105,122,101,0,95,115,121,115,95,110,109,105,100,105,105,110,0,95,115,121,115,95,110,109,105,100,105,111,117,116,0,95,115,121,115,95,110,111,97,117,116,111,112,97,116,99,104,0,95,115,121, 115,95,110,111,103,117,105,0,95,115,121,115,95,110,111,108,111,97,100,98,97,110,103,0,95,115,121,115,95,110,111,115,108,101,101,112,0,95,115,121,115,95,111,108,100,116,99,108,118,101,114,115,105,111,110,0,95,115,121,115,95,111,110,108,111,97,100,108, 105,115,116,0,95,115,121,115,95,111,112,101,110,95,97,98,115,111,108,117,116,101,0,95,115,121,115,95,111,112,101,110,95,109,105,100,105,0,95,115,121,115,95,111,117,99,104,0,95,115,121,115,95,111,117,116,99,104,97,110,110,101,108,115,0,95,115,121,115, 95,112,101,114,102,0,95,115,121,115,95,112,111,108,108,103,117,105,0,95,115,121,115,95,112,111,108,108,109,105,100,105,113,117,101,117,101,0,95,115,121,115,95,112,114,101,116,101,110,100,103,117,105,98,121,116,101,115,0,95,115,121,115,95,112,114,105, 110,116,104,105,115,116,0,95,115,121,115,95,112,114,105,110,116,104,111,111,107,0,95,115,121,115,95,112,114,105,110,116,116,111,115,116,100,101,114,114,0,95,115,121,115,95,112,117,116,111,110,108,111,97,100,108,105,115,116,0,95,115,121,115,95,113,117, 101,117,101,103,117,105,0,95,115,121,115,95,114,99,102,105,108,101,0,95,115,121,115,95,114,101,103,105,115,116,101,114,95,108,111,97,100,101,114,0,95,115,121,115,95,114,101,111,112,101,110,95,97,117,100,105,111,0,95,115,121,115,95,114,101,111,112,101, 110,95,109,105,100,105,0,95,115,121,115,95,114,101,112,111,114,116,105,100,108,101,0,95,115,121,115,95,114,109,112,111,108,108,102,110,0,95,115,121,115,95,114,117,110,95,115,99,104,101,100,117,108,101,114,0,95,115,121,115,95,115,97,118,101,95,97,117, 100,105,111,95,112,97,114,97,109,115,0,95,115,121,115,95,115,99,104,101,100,97,100,118,97,110,99,101,0,95,115,121,115,95,115,99,104,101,100,98,108,111,99,107,115,105,122,101,0,95,115,121,115,95,115,101,97,114,99,104,112,97,116,104,0,95,115,121,115,95, 115,101,110,100,95,100,97,99,115,0,95,115,121,115,95,115,101,116,95,97,117,100,105,111,95,97,112,105,0,95,115,121,115,95,115,101,116,95,97,117,100,105,111,95,115,101,116,116,105,110,103,115,0,95,115,121,115,95,115,101,116,95,97,117,100,105,111,95,115, 116,97,116,101,0,95,115,121,115,95,115,101,116,95,101,120,116,114,97,112,97,116,104,0,95,115,121,115,95,115,101,116,95,115,101,97,114,99,104,112,97,116,104,0,95,115,121,115,95,115,101,116,95,115,116,97,114,116,117,112,0,95,115,121,115,95,115,101,116, 97,108,97,114,109,0,95,115,121,115,95,115,101,116,98,108,111,99,107,115,105,122,101,0,95,115,121,115,95,115,101,116,99,104,115,114,0,95,115,121,115,95,115,101,116,101,120,116,114,97,112,97,116,104,0,95,115,121,115,95,115,101,116,109,105,100,105,116,105, 109,101,100,105,102,102,0,95,115,121,115,95,115,108,101,101,112,103,114,97,105,110,0,95,115,121,115,95,115,111,99,107,101,114,114,111,114,0,95,115,121,115,95,115,111,117,110,100,105,110,0,95,115,121,115,95,115,111,117,110,100,111,117,116,0,95,115,121, 115,95,115,116,97,114,116,103,117,105,0,95,115,121,115,95,115,116,97,116,105,99,112,97,116,104,0,95,115,121,115,95,116,105,109,101,0,95,115,121,115,95,116,105,109,101,95,112,101,114,95,100,115,112,95,116,105,99,107,0,95,115,121,115,95,116,114,121,108, 111,99,107,0,95,115,121,115,95,116,114,121,116,111,111,112,101,110,111,110,101,0,95,115,121,115,95,117,110,98,97,115,104,102,105,108,101,110,97,109,101,0,95,115,121,115,95,117,110,105,120,101,114,114,111,114,0,95,115,121,115,95,117,110,108,111,99,107, 0,95,115,121,115,95,117,110,113,117,101,117,101,103,117,105,0,95,115,121,115,95,117,115,101,115,116,100,112,97,116,104,0,95,115,121,115,95,118,101,114,98,111,115,101,0,95,115,121,115,95,118,103,117,105,0,95,116,97,98,111,115,99,52,95,116,105,108,100, 101,95,115,101,116,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,119,114,105, 116,101,95,115,101,116,117,112,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,101,116,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,0,95,116,101,109,112,108,97,116,101,95,102,105,110,100,95,102,105,101,108,100,0, 95,116,101,109,112,108,97,116,101,95,102,105,110,100,98,121,110,97,109,101,0,95,116,101,109,112,108,97,116,101,95,102,105,110,100,99,97,110,118,97,115,0,95,116,101,109,112,108,97,116,101,95,102,114,101,101,0,95,116,101,109,112,108,97,116,101,95,103,101, 116,102,108,111,97,116,0,95,116,101,109,112,108,97,116,101,95,103,101,116,115,121,109,98,111,108,0,95,116,101,109,112,108,97,116,101,95,109,97,116,99,104,0,95,116,101,109,112,108,97,116,101,95,110,101,119,0,95,116,101,109,112,108,97,116,101,95,110,111, 116,105,102,121,0,95,116,101,109,112,108,97,116,101,95,110,111,116,105,102,121,102,111,114,115,99,97,108,97,114,0,95,116,101,109,112,108,97,116,101,95,115,101,116,102,108,111,97,116,0,95,116,101,109,112,108,97,116,101,95,115,101,116,115,121,109,98,111, 108,0,95,116,101,109,112,108,97,116,101,95,115,105,122,101,0,95,116,101,120,116,95,99,108,97,115,115,0,95,116,101,120,116,95,100,114,97,119,98,111,114,100,101,114,0,95,116,101,120,116,95,101,114,97,115,101,98,111,114,100,101,114,0,95,116,101,120,116, 95,115,97,118,101,0,95,116,101,120,116,95,115,101,116,116,111,0,95,116,101,120,116,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,116,101,120,116,95,120,112,105,120,0,95,116,101,120,116,95,121,112,105,120,0,95,116,104,114,101,115,104,111, 108,100,95,116,105,108,100,101,95,100,115,112,0,95,116,105,109,101,115,95,112,101,114,102,56,0,95,116,105,109,101,115,95,112,101,114,102,111,114,109,0,95,116,111,103,103,108,101,95,100,114,97,119,0,95,116,111,103,103,108,101,95,100,114,97,119,95,99,111, 110,102,105,103,0,95,116,111,103,103,108,101,95,100,114,97,119,95,101,114,97,115,101,0,95,116,111,103,103,108,101,95,100,114,97,119,95,105,111,0,95,116,111,103,103,108,101,95,100,114,97,119,95,109,111,118,101,0,95,116,111,103,103,108,101,95,100,114,97, 119,95,110,101,119,0,95,116,111,103,103,108,101,95,100,114,97,119,95,115,101,108,101,99,116,0,95,116,111,103,103,108,101,95,100,114,97,119,95,117,112,100,97,116,101,0,95,116,111,103,103,108,101,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114, 0,95,117,56,95,99,104,97,114,110,117,109,0,95,117,56,95,100,101,99,0,95,117,56,95,100,101,99,95,112,116,114,0,95,117,56,95,105,110,99,0,95,117,56,95,105,110,99,95,112,116,114,0,95,117,56,95,110,101,120,116,99,104,97,114,0,95,117,56,95,111,102,102,115, 101,116,0,95,117,56,95,115,101,113,108,101,110,0,95,117,56,95,115,116,114,108,101,110,0,95,117,56,95,116,111,117,99,115,0,95,117,56,95,116,111,117,116,102,56,0,95,117,56,95,119,99,95,110,98,121,116,101,115,0,95,117,56,95,119,99,95,116,111,117,116,102, 56,0,95,117,56,95,119,99,95,116,111,117,116,102,56,95,110,117,108,0,95,117,103,101,110,95,97,100,100,0,95,117,103,101,110,95,99,111,110,110,101,99,116,0,95,117,103,101,110,95,100,111,110,101,95,103,114,97,112,104,0,95,117,103,101,110,95,103,101,116,105, 111,115,105,103,0,95,117,103,101,110,95,103,101,116,115,111,114,116,110,111,0,95,117,103,101,110,95,115,116,97,114,116,0,95,117,103,101,110,95,115,116,97,114,116,95,103,114,97,112,104,0,95,117,103,101,110,95,115,116,111,112,0,95,117,112,115,97,109,112, 108,105,110,103,95,112,101,114,102,111,114,109,95,48,0,95,117,112,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,104,111,108,100,0,95,117,112,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,108,105,110,101,97,114,0, 95,118,97,108,117,101,95,103,101,116,0,95,118,97,108,117,101,95,103,101,116,102,108,111,97,116,0,95,118,97,108,117,101,95,114,101,108,101,97,115,101,0,95,118,97,108,117,101,95,115,101,116,102,108,111,97,116,0,95,118,101,114,98,111,115,101,0,95,118,105, 110,108,101,116,95,99,108,97,115,115,0,95,118,105,110,108,101,116,95,100,111,112,114,111,108,111,103,0,95,118,105,110,108,101,116,95,100,115,112,112,114,111,108,111,103,0,95,118,105,110,108,101,116,95,103,101,116,105,116,0,95,118,105,110,108,101,116, 95,105,115,115,105,103,110,97,108,0,95,118,105,110,108,101,116,95,112,101,114,102,111,114,109,0,95,118,111,117,116,108,101,116,95,99,108,97,115,115,0,95,118,111,117,116,108,101,116,95,100,115,112,101,112,105,108,111,103,0,95,118,111,117,116,108,101,116, 95,100,115,112,112,114,111,108,111,103,0,95,118,111,117,116,108,101,116,95,103,101,116,105,116,0,95,118,111,117,116,108,101,116,95,105,115,115,105,103,110,97,108,0,95,118,111,117,116,108,101,116,95,112,101,114,102,111,114,109,0,95,118,114,97,100,105, 111,95,100,114,97,119,0,95,118,114,97,100,105,111,95,100,114,97,119,95,99,111,110,102,105,103,0,95,118,114,97,100,105,111,95,100,114,97,119,95,101,114,97,115,101,0,95,118,114,97,100,105,111,95,100,114,97,119,95,105,111,0,95,118,114,97,100,105,111,95, 100,114,97,119,95,109,111,118,101,0,95,118,114,97,100,105,111,95,100,114,97,119,95,110,101,119,0,95,118,114,97,100,105,111,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,114,97,100,105,111,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,114, 97,100,105,111,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,118,115,108,105,100,101,114,95,99,104,101,99,107,95,104,101,105,103,104,116,0,95,118,115,108,105,100,101,114,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,118,115,108, 105,100,101,114,95,100,114,97,119,0,95,118,115,108,105,100,101,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,118,117,95,99,104,101,99,107,95,104,101,105,103,104,116,0,95,118,117,95,100,114,97,119,0,95,118,117,95,119,105,100,103,101, 116,98,101,104,97,118,105,111,114,0,95,119,111,114,100,95,102,114,101,101,0,95,119,111,114,100,95,105,110,105,116,0,95,119,111,114,100,95,114,101,115,116,111,114,101,0,95,120,95,97,99,111,117,115,116,105,99,115,95,115,101,116,117,112,0,95,120,95,97,114, 105,116,104,109,101,116,105,99,95,115,101,116,117,112,0,95,120,95,99,111,110,110,101,99,116,105,118,101,95,115,101,116,117,112,0,95,120,95,103,117,105,95,115,101,116,117,112,0,95,120,95,105,110,116,101,114,102,97,99,101,95,115,101,116,117,112,0,95,120, 95,108,105,115,116,95,115,101,116,117,112,0,95,120,95,109,105,100,105,95,115,101,116,117,112,0,95,120,95,109,105,115,99,95,115,101,116,117,112,0,95,120,95,110,101,116,95,115,101,116,117,112,0,95,120,95,113,108,105,115,116,95,115,101,116,117,112,0,95, 120,95,116,105,109,101,95,115,101,116,117,112,0,95,122,101,114,111,95,112,101,114,102,56,0,95,122,101,114,111,95,112,101,114,102,111,114,109,0,95,122,103,101,116,102,110,0,95,122,122,0,95,95,68,101,102,97,117,108,116,82,117,110,101,76,111,99,97,108,101, 0,95,95,95,101,114,114,111,114,0,95,95,95,109,97,115,107,114,117,110,101,0,95,95,95,109,101,109,99,112,121,95,99,104,107,0,95,95,95,109,101,109,109,111,118,101,95,99,104,107,0,95,95,95,109,101,109,115,101,116,95,99,104,107,0,95,95,95,115,110,112,114, 105,110,116,102,95,99,104,107,0,95,95,95,115,112,114,105,110,116,102,95,99,104,107,0,95,95,95,115,116,97,99,107,95,99,104,107,95,102,97,105,108,0,95,95,95,115,116,97,99,107,95,99,104,107,95,103,117,97,114,100,0,95,95,95,115,116,100,101,114,114,112,0, 95,95,95,115,116,114,99,97,116,95,99,104,107,0,95,95,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,115,116,114,110,99,97,116,95,99,104,107,0,95,95,95,115,116,114,110,99,112,121,95,99,104,107,0,95,95,95,118,115,110,112,114,105,110,116,102,95,99,104, 107,0,95,95,101,120,105,116,0,95,97,99,99,101,112,116,0,95,97,116,97,110,50,0,95,97,116,97,110,50,102,0,95,97,116,97,110,102,0,95,97,116,111,102,0,95,97,116,111,105,0,95,97,116,111,108,0,95,98,105,110,100,0,95,98,122,101,114,111,0,95,99,97,108,108,111, 99,0,95,99,108,111,115,101,0,95,99,111,110,110,101,99,116,0,95,99,111,115,0,95,99,111,115,102,0,95,100,108,101,114,114,111,114,0,95,100,108,111,112,101,110,0,95,100,108,115,121,109,0,95,101,120,101,99,108,0,95,101,120,105,116,0,95,101,120,112,0,95,101, 120,112,102,0,95,102,99,108,111,115,101,0,95,102,100,111,112,101,110,0,95,102,108,111,111,114,0,95,102,111,112,101,110,0,95,102,111,114,107,0,95,102,112,114,105,110,116,102,0,95,102,112,117,116,99,0,95,102,112,117,116,115,0,95,102,114,101,97,100,0,95, 102,114,101,101,0,95,102,115,99,97,110,102,0,95,102,115,116,97,116,36,73,78,79,68,69,54,52,0,95,102,119,114,105,116,101,0,95,103,101,116,99,119,100,0,95,103,101,116,101,110,118,0,95,103,101,116,104,111,115,116,98,121,110,97,109,101,0,95,103,101,116,116, 105,109,101,111,102,100,97,121,0,95,103,101,116,117,105,100,0,95,103,108,111,98,36,73,78,79,68,69,54,52,0,95,108,105,115,116,101,110,0,95,108,111,103,0,95,108,111,103,49,48,0,95,108,111,103,102,0,95,108,115,101,101,107,0,95,109,97,108,108,111,99,0,95, 109,101,109,99,112,121,0,95,109,101,109,115,101,116,0,95,111,112,101,110,0,95,112,99,108,111,115,101,0,95,112,101,114,114,111,114,0,95,112,111,112,101,110,0,95,112,111,119,0,95,112,111,119,102,0,95,112,116,104,114,101,97,100,95,99,111,110,100,95,100, 101,115,116,114,111,121,0,95,112,116,104,114,101,97,100,95,99,111,110,100,95,105,110,105,116,0,95,112,116,104,114,101,97,100,95,99,111,110,100,95,115,105,103,110,97,108,0,95,112,116,104,114,101,97,100,95,99,111,110,100,95,119,97,105,116,0,95,112,116, 104,114,101,97,100,95,99,114,101,97,116,101,0,95,112,116,104,114,101,97,100,95,106,111,105,110,0,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,100,101,115,116,114,111,121,0,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,105,110,105, 116,0,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,108,111,99,107,0,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,116,114,121,108,111,99,107,0,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,117,110,108,111,99,107,0,95,112, 116,104,114,101,97,100,95,115,101,108,102,0,95,112,116,104,114,101,97,100,95,115,101,116,115,99,104,101,100,112,97,114,97,109,0,95,114,101,97,100,0,95,114,101,97,108,108,111,99,0,95,114,101,99,118,0,95,115,101,108,101,99,116,36,49,48,53,48,0,95,115,101, 110,100,0,95,115,101,116,105,116,105,109,101,114,0,95,115,101,116,115,111,99,107,111,112,116,0,95,115,101,116,117,105,100,0,95,115,105,103,97,99,116,105,111,110,0,95,115,105,103,110,97,108,0,95,115,105,110,0,95,115,105,110,102,0,95,115,108,101,101,112, 0,95,115,110,112,114,105,110,116,102,0,95,115,111,99,107,101,116,0,95,115,115,99,97,110,102,0,95,115,116,97,116,36,73,78,79,68,69,54,52,0,95,115,116,114,99,104,114,0,95,115,116,114,99,109,112,0,95,115,116,114,101,114,114,111,114,0,95,115,116,114,108, 101,110,0,95,115,116,114,110,99,109,112,0,95,115,116,114,110,99,112,121,0,95,115,116,114,114,99,104,114,0,95,115,116,114,115,116,114,0,95,115,116,114,116,111,108,0,95,115,121,115,116,101,109,0,95,116,105,109,101,115,0,95,118,115,110,112,114,105,110,116, 102,0,95,119,114,105,116,101,0,100,121,108,100,95,115,116,117,98,95,98,105,110,100,101,114,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,0,112,117,114, 101,45,100,97,116,97,47,115,114,99,47,100,95,97,114,105,116,104,109,101,116,105,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101, 45,100,97,116,97,47,115,114,99,47,100,95,97,114,105,116,104,109,101,116,105,99,46,111,0,95,112,108,117,115,95,110,101,119,0,95,112,108,117,115,95,112,101,114,102,111,114,109,0,95,112,108,117,115,95,112,101,114,102,56,0,95,115,99,97,108,97,114,112,108, 117,115,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,112,108,117,115,95,112,101,114,102,56,0,95,100,115,112,95,97,100,100,95,112,108,117,115,0,95,112,108,117,115,95,100,115,112,0,95,115,99,97,108,97,114,112,108,117,115,95,100,115,112,0,95, 112,108,117,115,95,115,101,116,117,112,0,95,109,105,110,117,115,95,110,101,119,0,95,109,105,110,117,115,95,112,101,114,102,111,114,109,0,95,109,105,110,117,115,95,112,101,114,102,56,0,95,115,99,97,108,97,114,109,105,110,117,115,95,112,101,114,102,111, 114,109,0,95,115,99,97,108,97,114,109,105,110,117,115,95,112,101,114,102,56,0,95,109,105,110,117,115,95,100,115,112,0,95,115,99,97,108,97,114,109,105,110,117,115,95,100,115,112,0,95,109,105,110,117,115,95,115,101,116,117,112,0,95,116,105,109,101,115, 95,110,101,119,0,95,116,105,109,101,115,95,112,101,114,102,111,114,109,0,95,116,105,109,101,115,95,112,101,114,102,56,0,95,115,99,97,108,97,114,116,105,109,101,115,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,116,105,109,101,115,95,112,101, 114,102,56,0,95,116,105,109,101,115,95,100,115,112,0,95,115,99,97,108,97,114,116,105,109,101,115,95,100,115,112,0,95,116,105,109,101,115,95,115,101,116,117,112,0,95,111,118,101,114,95,110,101,119,0,95,111,118,101,114,95,112,101,114,102,111,114,109,0, 95,111,118,101,114,95,112,101,114,102,56,0,95,115,99,97,108,97,114,111,118,101,114,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,111,118,101,114,95,112,101,114,102,56,0,95,111,118,101,114,95,100,115,112,0,95,115,99,97,108,97,114,111,118,101, 114,95,100,115,112,0,95,111,118,101,114,95,115,101,116,117,112,0,95,109,97,120,95,110,101,119,0,95,109,97,120,95,112,101,114,102,111,114,109,0,95,109,97,120,95,112,101,114,102,56,0,95,115,99,97,108,97,114,109,97,120,95,112,101,114,102,111,114,109,0,95, 115,99,97,108,97,114,109,97,120,95,112,101,114,102,56,0,95,109,97,120,95,100,115,112,0,95,115,99,97,108,97,114,109,97,120,95,100,115,112,0,95,109,97,120,95,115,101,116,117,112,0,95,109,105,110,95,110,101,119,0,95,109,105,110,95,112,101,114,102,111,114, 109,0,95,109,105,110,95,112,101,114,102,56,0,95,115,99,97,108,97,114,109,105,110,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,109,105,110,95,112,101,114,102,56,0,95,109,105,110,95,100,115,112,0,95,115,99,97,108,97,114,109,105,110,95,100,115, 112,0,95,109,105,110,95,115,101,116,117,112,0,95,100,95,97,114,105,116,104,109,101,116,105,99,95,115,101,116,117,112,0,95,112,108,117,115,95,99,108,97,115,115,0,95,115,99,97,108,97,114,112,108,117,115,95,99,108,97,115,115,0,95,109,105,110,117,115,95, 99,108,97,115,115,0,95,115,99,97,108,97,114,109,105,110,117,115,95,99,108,97,115,115,0,95,116,105,109,101,115,95,99,108,97,115,115,0,95,115,99,97,108,97,114,116,105,109,101,115,95,99,108,97,115,115,0,95,111,118,101,114,95,99,108,97,115,115,0,95,115,99, 97,108,97,114,111,118,101,114,95,99,108,97,115,115,0,95,109,97,120,95,99,108,97,115,115,0,95,115,99,97,108,97,114,109,97,120,95,99,108,97,115,115,0,95,109,105,110,95,99,108,97,115,115,0,95,115,99,97,108,97,114,109,105,110,95,99,108,97,115,115,0,112,117, 114,101,45,100,97,116,97,47,115,114,99,47,100,95,97,114,114,97,121,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116, 97,47,115,114,99,47,100,95,97,114,114,97,121,46,111,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,114,101,100,114,97,119,0,95,116,97,98,119,114,105,116,101,95,116, 105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101, 95,98,97,110,103,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,116,97,114,116,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,116,111,112,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,101,116,117, 112,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,112,108,97, 121,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,108,105,115,116,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,115,116,111,112,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,116,105, 99,107,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,102,114,101,101,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,114,101,97,100, 95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,102, 114,101,101,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95, 116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,102,114,101,101,0,95,116,97,98,114,101,97,100,52,95,116, 105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,115,101, 116,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,102,116,49,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,115,101,110,100,95,110, 101,119,0,95,116,97,98,115,101,110,100,95,112,101,114,102,111,114,109,0,95,116,97,98,115,101,110,100,95,100,115,112,0,95,116,97,98,115,101,110,100,95,115,101,116,117,112,0,95,116,97,98,114,101,99,101,105,118,101,95,112,101,114,102,111,114,109,0,95,116, 97,98,114,101,99,101,105,118,101,95,100,115,112,0,95,116,97,98,114,101,99,101,105,118,101,95,110,101,119,0,95,116,97,98,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,95,102,108,111,97,116,0,95,116,97,98,114,101,97,100, 95,115,101,116,0,95,116,97,98,114,101,97,100,95,110,101,119,0,95,116,97,98,114,101,97,100,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,52,95,102,108,111,97,116,0,95,116,97,98,114,101,97,100,52,95,115,101,116,0,95,116,97,98,114,101,97,100,52,95, 110,101,119,0,95,116,97,98,114,101,97,100,52,95,115,101,116,117,112,0,95,116,97,98,119,114,105,116,101,95,102,108,111,97,116,0,95,116,97,98,119,114,105,116,101,95,115,101,116,0,95,116,97,98,119,114,105,116,101,95,110,101,119,0,95,116,97,98,119,114,105, 116,101,95,115,101,116,117,112,0,95,100,95,97,114,114,97,121,95,115,101,116,117,112,0,95,99,111,117,110,116,46,51,49,50,52,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,112,108,97,121,95,116,105,108,100, 101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,99,108,97,115,115,0, 95,116,97,98,115,101,110,100,95,99,108,97,115,115,0,95,116,97,98,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,52,95,99,108,97,115,115,0,95,116,97,98,119,114,105,116,101, 95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,99,116,108,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117, 114,101,45,100,97,116,97,47,115,114,99,47,100,95,99,116,108,46,111,0,95,115,105,103,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,115,105,103,95,116,105,108,100,101,95,112,101,114,102,56,0,95,100,115,112,95,97,100,100,95,115,99,97,108,97, 114,99,111,112,121,0,95,115,105,103,95,116,105,108,100,101,95,102,108,111,97,116,0,95,115,105,103,95,116,105,108,100,101,95,100,115,112,0,95,115,105,103,95,116,105,108,100,101,95,110,101,119,0,95,115,105,103,95,116,105,108,100,101,95,115,101,116,117, 112,0,95,108,105,110,101,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,108,105,110,101,95,116,105,108,100,101,95,112,101,114,102,56,0,95,108,105,110,101,95,116,105,108,100,101,95,102,108,111,97,116,0,95,108,105,110,101,95,116,105,108,100, 101,95,115,116,111,112,0,95,108,105,110,101,95,116,105,108,100,101,95,100,115,112,0,95,108,105,110,101,95,116,105,108,100,101,95,110,101,119,0,95,108,105,110,101,95,116,105,108,100,101,95,115,101,116,117,112,0,95,118,108,105,110,101,95,116,105,108,100, 101,95,112,101,114,102,111,114,109,0,95,118,108,105,110,101,95,116,105,108,100,101,95,115,116,111,112,0,95,118,108,105,110,101,95,116,105,108,100,101,95,102,108,111,97,116,0,95,118,108,105,110,101,95,116,105,108,100,101,95,100,115,112,0,95,118,108,105, 110,101,95,116,105,108,100,101,95,110,101,119,0,95,118,108,105,110,101,95,116,105,108,100,101,95,115,101,116,117,112,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,110,101,119,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101, 95,112,101,114,102,111,114,109,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,100,115,112,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,98,97,110,103,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101, 116,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101,116,117,112,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,110,101,119,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,112,101,114,102,111, 114,109,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,100,115,112,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,98,97,110,103,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,102,102,0,95,118,115, 110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101,116,117,112,0,95,101,110,118,95,116,105,108,100,101,95,110,101,119,0,95,101,110,118,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,101,110,118,95,116,105,108,100,101,95,100,115, 112,0,95,101,110,118,95,116,105,108,100,101,95,116,105,99,107,0,95,101,110,118,95,116,105,108,100,101,95,102,102,0,95,101,110,118,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,110,101, 119,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,115,101,116,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,102,116,49,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,116,105,99,107,0,95,116, 104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,100,115,112,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,102,102,0,95,116,104, 114,101,115,104,111,108,100,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,95,99,116,108,95,115,101,116,117,112,0,95,115,105,103,95,116,105,108,100,101,95,99,108,97,115,115,0,95,108,105,110,101,95,116,105,108,100,101,95,99,108,97,115,115,0,95, 118,108,105,110,101,95,116,105,108,100,101,95,99,108,97,115,115,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,99,108,97,115,115,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,104,114,101,115, 104,111,108,100,95,116,105,108,100,101,95,99,108,97,115,115,0,95,101,110,118,95,116,105,108,100,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,100,97,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115, 115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,100,97,99,46,111,0,95,100,97,99,95,110,101,119,0,95,100,97,99,95,100,115,112,0,95,100,97,99,95,102,114, 101,101,0,95,100,97,99,95,115,101,116,117,112,0,95,97,100,99,95,110,101,119,0,95,99,111,112,121,95,112,101,114,102,111,114,109,0,95,99,111,112,121,95,112,101,114,102,56,0,95,100,115,112,95,97,100,100,95,99,111,112,121,0,95,97,100,99,95,100,115,112,0, 95,97,100,99,95,102,114,101,101,0,95,97,100,99,95,115,101,116,117,112,0,95,100,95,100,97,99,95,115,101,116,117,112,0,95,100,97,99,95,99,108,97,115,115,0,95,97,100,99,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,100, 101,108,97,121,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,100,101,108,97,121,46,111, 0,95,115,105,103,100,101,108,119,114,105,116,101,95,117,112,100,97,116,101,115,114,0,95,115,105,103,100,101,108,119,114,105,116,101,95,99,104,101,99,107,118,101,99,115,105,122,101,0,95,115,105,103,100,101,108,119,114,105,116,101,95,110,101,119,0,95,115, 105,103,100,101,108,119,114,105,116,101,95,112,101,114,102,111,114,109,0,95,115,105,103,100,101,108,119,114,105,116,101,95,100,115,112,0,95,115,105,103,100,101,108,119,114,105,116,101,95,102,114,101,101,0,95,115,105,103,100,101,108,119,114,105,116,101, 95,115,101,116,117,112,0,95,115,105,103,100,101,108,114,101,97,100,95,110,101,119,0,95,115,105,103,100,101,108,114,101,97,100,95,102,108,111,97,116,0,95,115,105,103,100,101,108,114,101,97,100,95,112,101,114,102,111,114,109,0,95,115,105,103,100,101,108, 114,101,97,100,95,100,115,112,0,95,115,105,103,100,101,108,114,101,97,100,95,115,101,116,117,112,0,95,115,105,103,118,100,95,110,101,119,0,95,115,105,103,118,100,95,112,101,114,102,111,114,109,0,95,115,105,103,118,100,95,100,115,112,0,95,115,105,103, 118,100,95,115,101,116,117,112,0,95,100,95,100,101,108,97,121,95,115,101,116,117,112,0,95,100,101,108,114,101,97,100,95,122,101,114,111,0,95,115,105,103,100,101,108,119,114,105,116,101,95,99,108,97,115,115,0,95,115,105,103,100,101,108,114,101,97,100, 95,99,108,97,115,115,0,95,115,105,103,118,100,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,102,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108, 105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,102,116,46,111,0,95,115,105,103,102,102,116,95,115,119,97,112,0,95,115,105,103,114,102,102,116,95,102,108,105,112,0,95,115,105,103,102,102,116,95,110, 101,119,0,95,115,105,103,105,102,102,116,95,110,101,119,0,95,115,105,103,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,105,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,102,102,116,95,100,115,112,120,0,95,115,105,103,102,102, 116,95,100,115,112,0,95,115,105,103,105,102,102,116,95,100,115,112,0,95,115,105,103,102,102,116,95,115,101,116,117,112,0,95,115,105,103,114,102,102,116,95,110,101,119,0,95,115,105,103,114,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,114, 102,102,116,95,100,115,112,0,95,115,105,103,114,102,102,116,95,115,101,116,117,112,0,95,115,105,103,114,105,102,102,116,95,110,101,119,0,95,115,105,103,114,105,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,114,105,102,102,116,95,100,115, 112,0,95,115,105,103,114,105,102,102,116,95,115,101,116,117,112,0,95,115,105,103,102,114,97,109,112,95,110,101,119,0,95,115,105,103,102,114,97,109,112,95,112,101,114,102,111,114,109,0,95,115,105,103,102,114,97,109,112,95,100,115,112,0,95,115,105,103, 102,114,97,109,112,95,115,101,116,117,112,0,95,100,95,102,102,116,95,115,101,116,117,112,0,95,115,105,103,102,102,116,95,99,108,97,115,115,0,95,115,105,103,105,102,102,116,95,99,108,97,115,115,0,95,115,105,103,114,102,102,116,95,99,108,97,115,115,0,95, 115,105,103,114,105,102,102,116,95,99,108,97,115,115,0,95,115,105,103,102,114,97,109,112,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,102,116,95,109,97,121,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115, 114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,102,116,95,109,97,121,101,114,46,111,0,95,109,97,121,101,114,95,102,104,116,0,95,109, 97,121,101,114,95,102,102,116,0,95,109,97,121,101,114,95,105,102,102,116,0,95,109,97,121,101,114,95,114,101,97,108,102,102,116,0,95,109,97,121,101,114,95,114,101,97,108,105,102,102,116,0,95,104,97,108,115,101,99,0,95,99,111,115,116,97,98,0,95,115,105, 110,116,97,98,0,95,99,111,115,119,114,107,0,95,115,105,110,119,114,107,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,102,116,114,111,117,116,105,110,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111, 106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,102,116,114,111,117,116,105,110,101,46,111,0,95,99,102,102,116,0,95,102,102,116,95,99,108,101,97,114,0,95,98,117,105, 108,100,95,102,102,116,95,110,101,116,119,111,114,107,0,95,108,111,97,100,95,114,101,103,105,115,116,101,114,115,0,95,115,116,111,114,101,95,114,101,103,105,115,116,101,114,115,0,95,99,111,109,112,117,116,101,95,102,102,116,0,95,110,101,116,95,97,108, 108,111,99,0,95,110,101,116,95,100,101,97,108,108,111,99,0,95,112,111,119,101,114,95,111,102,95,116,119,111,0,95,99,114,101,97,116,101,95,104,97,110,110,105,110,103,0,95,99,114,101,97,116,101,95,114,101,99,116,97,110,103,117,108,97,114,0,95,115,104,111, 114,116,95,116,111,95,102,108,111,97,116,0,95,112,100,95,102,102,116,0,95,102,105,114,115,116,110,101,116,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,105,108,116,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115, 115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,105,108,116,101,114,46,111,0,95,115,105,103,104,105,112,95,110,101,119,0,95,115,105,103,104,105, 112,95,102,116,49,0,95,115,105,103,104,105,112,95,112,101,114,102,111,114,109,0,95,115,105,103,104,105,112,95,100,115,112,0,95,115,105,103,104,105,112,95,99,108,101,97,114,0,95,115,105,103,104,105,112,95,115,101,116,117,112,0,95,115,105,103,108,111,112, 95,110,101,119,0,95,115,105,103,108,111,112,95,102,116,49,0,95,115,105,103,108,111,112,95,99,108,101,97,114,0,95,115,105,103,108,111,112,95,112,101,114,102,111,114,109,0,95,115,105,103,108,111,112,95,100,115,112,0,95,115,105,103,108,111,112,95,115,101, 116,117,112,0,95,115,105,103,98,112,95,110,101,119,0,95,115,105,103,98,112,95,113,99,111,115,0,95,115,105,103,98,112,95,100,111,99,111,101,102,0,95,115,105,103,98,112,95,102,116,49,0,95,115,105,103,98,112,95,102,116,50,0,95,115,105,103,98,112,95,99,108, 101,97,114,0,95,115,105,103,98,112,95,112,101,114,102,111,114,109,0,95,115,105,103,98,112,95,100,115,112,0,95,115,105,103,98,112,95,115,101,116,117,112,0,95,115,105,103,98,105,113,117,97,100,95,110,101,119,0,95,115,105,103,98,105,113,117,97,100,95,112, 101,114,102,111,114,109,0,95,115,105,103,98,105,113,117,97,100,95,108,105,115,116,0,95,115,105,103,98,105,113,117,97,100,95,115,101,116,0,95,115,105,103,98,105,113,117,97,100,95,100,115,112,0,95,115,105,103,98,105,113,117,97,100,95,115,101,116,117,112, 0,95,115,105,103,115,97,109,112,104,111,108,100,95,110,101,119,0,95,115,105,103,115,97,109,112,104,111,108,100,95,112,101,114,102,111,114,109,0,95,115,105,103,115,97,109,112,104,111,108,100,95,100,115,112,0,95,115,105,103,115,97,109,112,104,111,108,100, 95,114,101,115,101,116,0,95,115,105,103,115,97,109,112,104,111,108,100,95,115,101,116,0,95,115,105,103,115,97,109,112,104,111,108,100,95,115,101,116,117,112,0,95,115,105,103,114,112,111,108,101,95,110,101,119,0,95,115,105,103,114,112,111,108,101,95,112, 101,114,102,111,114,109,0,95,115,105,103,114,112,111,108,101,95,100,115,112,0,95,115,105,103,114,112,111,108,101,95,99,108,101,97,114,0,95,115,105,103,114,112,111,108,101,95,115,101,116,0,95,115,105,103,114,112,111,108,101,95,115,101,116,117,112,0,95, 115,105,103,114,122,101,114,111,95,110,101,119,0,95,115,105,103,114,122,101,114,111,95,112,101,114,102,111,114,109,0,95,115,105,103,114,122,101,114,111,95,100,115,112,0,95,115,105,103,114,122,101,114,111,95,99,108,101,97,114,0,95,115,105,103,114,122, 101,114,111,95,115,101,116,0,95,115,105,103,114,122,101,114,111,95,115,101,116,117,112,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,110,101,119,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,112,101,114,102,111,114,109,0,95,115,105, 103,114,122,101,114,111,95,114,101,118,95,100,115,112,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,99,108,101,97,114,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,115,101,116,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,115, 101,116,117,112,0,95,115,105,103,99,112,111,108,101,95,110,101,119,0,95,115,105,103,99,112,111,108,101,95,112,101,114,102,111,114,109,0,95,115,105,103,99,112,111,108,101,95,100,115,112,0,95,115,105,103,99,112,111,108,101,95,99,108,101,97,114,0,95,115, 105,103,99,112,111,108,101,95,115,101,116,0,95,115,105,103,99,112,111,108,101,95,115,101,116,117,112,0,95,115,105,103,99,122,101,114,111,95,110,101,119,0,95,115,105,103,99,122,101,114,111,95,112,101,114,102,111,114,109,0,95,115,105,103,99,122,101,114, 111,95,100,115,112,0,95,115,105,103,99,122,101,114,111,95,99,108,101,97,114,0,95,115,105,103,99,122,101,114,111,95,115,101,116,0,95,115,105,103,99,122,101,114,111,95,115,101,116,117,112,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,110,101,119, 0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,112,101,114,102,111,114,109,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,100,115,112,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,99,108,101,97,114,0,95,115,105,103,99,122,101,114, 111,95,114,101,118,95,115,101,116,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,115,101,116,117,112,0,95,100,95,102,105,108,116,101,114,95,115,101,116,117,112,0,95,115,105,103,98,105,113,117,97,100,95,99,108,97,115,115,0,95,115,105,103,98,112, 95,99,108,97,115,115,0,95,115,105,103,99,112,111,108,101,95,99,108,97,115,115,0,95,115,105,103,99,122,101,114,111,95,99,108,97,115,115,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,99,108,97,115,115,0,95,115,105,103,104,105,112,95,99,108,97,115, 115,0,95,115,105,103,108,111,112,95,99,108,97,115,115,0,95,115,105,103,114,112,111,108,101,95,99,108,97,115,115,0,95,115,105,103,114,122,101,114,111,95,99,108,97,115,115,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,99,108,97,115,115,0,95,115, 105,103,115,97,109,112,104,111,108,100,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,103,108,111,98,97,108,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47, 108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,103,108,111,98,97,108,46,111,0,95,115,105,103,115,101,110,100,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104, 107,0,47,117,115,114,47,105,110,99,108,117,100,101,47,115,101,99,117,114,101,47,95,115,116,114,105,110,103,46,104,0,95,115,105,103,115,101,110,100,95,112,101,114,102,111,114,109,0,95,115,105,103,115,101,110,100,95,100,115,112,0,95,115,105,103,115,101, 110,100,95,102,114,101,101,0,95,115,105,103,115,101,110,100,95,115,101,116,117,112,0,95,115,105,103,114,101,99,101,105,118,101,95,110,101,119,0,95,115,105,103,114,101,99,101,105,118,101,95,112,101,114,102,111,114,109,0,95,115,105,103,114,101,99,101,105, 118,101,95,112,101,114,102,56,0,95,115,105,103,114,101,99,101,105,118,101,95,115,101,116,0,95,115,105,103,114,101,99,101,105,118,101,95,100,115,112,0,95,115,105,103,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,115,105,103,99,97,116,99,104,95, 110,101,119,0,95,115,105,103,99,97,116,99,104,95,112,101,114,102,111,114,109,0,95,115,105,103,99,97,116,99,104,95,112,101,114,102,56,0,95,115,105,103,99,97,116,99,104,95,100,115,112,0,95,115,105,103,99,97,116,99,104,95,102,114,101,101,0,95,115,105,103, 99,97,116,99,104,95,115,101,116,117,112,0,95,115,105,103,116,104,114,111,119,95,110,101,119,0,95,115,105,103,116,104,114,111,119,95,112,101,114,102,111,114,109,0,95,115,105,103,116,104,114,111,119,95,115,101,116,0,95,115,105,103,116,104,114,111,119,95, 100,115,112,0,95,115,105,103,116,104,114,111,119,95,115,101,116,117,112,0,95,100,95,103,108,111,98,97,108,95,115,101,116,117,112,0,95,115,105,103,115,101,110,100,95,99,108,97,115,115,0,95,115,105,103,114,101,99,101,105,118,101,95,99,108,97,115,115,0, 95,115,105,103,99,97,116,99,104,95,99,108,97,115,115,0,95,115,105,103,116,104,114,111,119,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,109,97,116,104,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115, 47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,109,97,116,104,46,111,0,95,99,108,105,112,95,110,101,119,0,95,99,108,105,112,95,112,101,114,102,111,114, 109,0,95,99,108,105,112,95,100,115,112,0,95,99,108,105,112,95,115,101,116,117,112,0,95,105,110,105,116,95,114,115,113,114,116,0,95,113,56,95,114,115,113,114,116,0,95,113,56,95,115,113,114,116,0,95,113,115,113,114,116,0,95,113,114,115,113,114,116,0,95, 115,105,103,114,115,113,114,116,95,110,101,119,0,95,115,105,103,114,115,113,114,116,95,112,101,114,102,111,114,109,0,95,115,105,103,114,115,113,114,116,95,100,115,112,0,95,115,105,103,114,115,113,114,116,95,115,101,116,117,112,0,95,115,105,103,115,113, 114,116,95,110,101,119,0,95,115,105,103,115,113,114,116,95,112,101,114,102,111,114,109,0,95,115,105,103,115,113,114,116,95,100,115,112,0,95,115,105,103,115,113,114,116,95,115,101,116,117,112,0,95,115,105,103,119,114,97,112,95,110,101,119,0,95,115,105, 103,119,114,97,112,95,112,101,114,102,111,114,109,0,95,115,105,103,119,114,97,112,95,100,115,112,0,95,115,105,103,119,114,97,112,95,115,101,116,117,112,0,95,109,116,111,102,95,116,105,108,100,101,95,110,101,119,0,95,109,116,111,102,95,116,105,108,100, 101,95,112,101,114,102,111,114,109,0,95,109,116,111,102,95,116,105,108,100,101,95,100,115,112,0,95,109,116,111,102,95,116,105,108,100,101,95,115,101,116,117,112,0,95,102,116,111,109,95,116,105,108,100,101,95,110,101,119,0,95,102,116,111,109,95,116,105, 108,100,101,95,112,101,114,102,111,114,109,0,95,102,116,111,109,95,116,105,108,100,101,95,100,115,112,0,95,102,116,111,109,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,110,101,119,0,95,100,98, 116,111,114,109,115,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,100,115,112,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,115,101,116,117,112,0,95,114,109,115,116,111,100, 98,95,116,105,108,100,101,95,110,101,119,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,100,115,112,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101, 95,115,101,116,117,112,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,110,101,119,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,100,115,112,0, 95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,115,101,116,117,112,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,110,101,119,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,112,111,119,116, 111,100,98,95,116,105,108,100,101,95,100,115,112,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,115,101,116,117,112,0,95,112,111,119,95,116,105,108,100,101,95,110,101,119,0,95,112,111,119,95,116,105,108,100,101,95,112,101,114,102,111,114,109, 0,95,112,111,119,95,116,105,108,100,101,95,100,115,112,0,95,112,111,119,95,116,105,108,100,101,95,115,101,116,117,112,0,95,101,120,112,95,116,105,108,100,101,95,110,101,119,0,95,101,120,112,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,101, 120,112,95,116,105,108,100,101,95,100,115,112,0,95,101,120,112,95,116,105,108,100,101,95,115,101,116,117,112,0,95,108,111,103,95,116,105,108,100,101,95,110,101,119,0,95,108,111,103,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,108,111,103, 95,116,105,108,100,101,95,100,115,112,0,95,108,111,103,95,116,105,108,100,101,95,115,101,116,117,112,0,95,97,98,115,95,116,105,108,100,101,95,110,101,119,0,95,97,98,115,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,97,98,115,95,116,105,108, 100,101,95,100,115,112,0,95,97,98,115,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,95,109,97,116,104,95,115,101,116,117,112,0,95,99,108,105,112,95,99,108,97,115,115,0,95,114,115,113,114,116,95,101,120,112,116,97,98,0,95,114,115,113,114,116, 95,109,97,110,116,105,115,115,97,116,97,98,0,95,115,105,103,114,115,113,114,116,95,99,108,97,115,115,0,95,115,105,103,115,113,114,116,95,99,108,97,115,115,0,95,112,111,119,95,116,105,108,100,101,95,99,108,97,115,115,0,95,101,120,112,95,116,105,108,100, 101,95,99,108,97,115,115,0,95,108,111,103,95,116,105,108,100,101,95,99,108,97,115,115,0,95,97,98,115,95,116,105,108,100,101,95,99,108,97,115,115,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,99,108,97,115,115,0,95,100,98,116,111,114,109,115, 95,116,105,108,100,101,95,99,108,97,115,115,0,95,102,116,111,109,95,116,105,108,100,101,95,99,108,97,115,115,0,95,109,116,111,102,95,116,105,108,100,101,95,99,108,97,115,115,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,99,108,97,115,115, 0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,99,108,97,115,115,0,95,115,105,103,119,114,97,112,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,109,105,115,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115, 114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,109,105,115,99,46,111,0,95,112,114,105,110,116,95,112,101,114,102,111,114,109,0,95,112,114, 105,110,116,95,100,115,112,0,95,112,114,105,110,116,95,102,108,111,97,116,0,95,112,114,105,110,116,95,98,97,110,103,0,95,112,114,105,110,116,95,110,101,119,0,95,112,114,105,110,116,95,115,101,116,117,112,0,95,98,97,110,103,95,116,105,108,100,101,95,112, 101,114,102,111,114,109,0,95,98,97,110,103,95,116,105,108,100,101,95,100,115,112,0,95,98,97,110,103,95,116,105,108,100,101,95,116,105,99,107,0,95,98,97,110,103,95,116,105,108,100,101,95,102,114,101,101,0,95,98,97,110,103,95,116,105,108,100,101,95,110, 101,119,0,95,98,97,110,103,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,95,109,105,115,99,95,115,101,116,117,112,0,95,112,114,105,110,116,95,99,108,97,115,115,0,95,98,97,110,103,95,116,105,108,100,101,95,99,108,97,115,115,0,112,117,114,101, 45,100,97,116,97,47,115,114,99,47,100,95,111,115,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114, 99,47,100,95,111,115,99,46,111,0,95,112,104,97,115,111,114,95,110,101,119,0,95,112,104,97,115,111,114,95,112,101,114,102,111,114,109,0,95,112,104,97,115,111,114,95,100,115,112,0,95,112,104,97,115,111,114,95,102,116,49,0,95,112,104,97,115,111,114,95,115, 101,116,117,112,0,95,99,111,115,95,110,101,119,0,95,99,111,115,95,112,101,114,102,111,114,109,0,95,99,111,115,95,100,115,112,0,95,99,111,115,95,109,97,107,101,116,97,98,108,101,0,95,99,111,115,95,115,101,116,117,112,0,95,111,115,99,95,110,101,119,0,95, 111,115,99,95,112,101,114,102,111,114,109,0,95,111,115,99,95,100,115,112,0,95,111,115,99,95,102,116,49,0,95,111,115,99,95,115,101,116,117,112,0,95,115,105,103,118,99,102,95,110,101,119,0,95,115,105,103,118,99,102,95,102,116,49,0,95,115,105,103,118,99, 102,95,112,101,114,102,111,114,109,0,95,115,105,103,118,99,102,95,100,115,112,0,95,115,105,103,118,99,102,95,115,101,116,117,112,0,95,110,111,105,115,101,95,110,101,119,0,95,110,111,105,115,101,95,112,101,114,102,111,114,109,0,95,110,111,105,115,101, 95,100,115,112,0,95,110,111,105,115,101,95,115,101,116,117,112,0,95,100,95,111,115,99,95,115,101,116,117,112,0,95,105,110,105,116,46,51,57,53,55,0,95,112,104,97,115,111,114,95,99,108,97,115,115,0,95,115,99,97,108,97,114,112,104,97,115,111,114,95,99,108, 97,115,115,0,95,99,111,115,95,99,108,97,115,115,0,95,111,115,99,95,99,108,97,115,115,0,95,115,99,97,108,97,114,111,115,99,95,99,108,97,115,115,0,95,110,111,105,115,101,95,99,108,97,115,115,0,95,99,111,115,95,116,97,98,108,101,0,95,115,105,103,118,99, 102,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,114,101,115,97,109,112,108,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108, 105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,114,101,115,97,109,112,108,101,46,111,0,95,100,111,119,110,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,48,0,95,117,112,115,97,109,112,108,105,110,103,95,112, 101,114,102,111,114,109,95,48,0,95,117,112,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,104,111,108,100,0,95,117,112,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,108,105,110,101,97,114,0,95,114,101,115,97,109,112, 108,101,95,105,110,105,116,0,95,114,101,115,97,109,112,108,101,95,102,114,101,101,0,95,114,101,115,97,109,112,108,101,95,100,115,112,0,95,114,101,115,97,109,112,108,101,102,114,111,109,95,100,115,112,0,95,114,101,115,97,109,112,108,101,116,111,95,100, 115,112,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,115,111,117,110,100,102,105,108,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112, 100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,115,111,117,110,100,102,105,108,101,46,111,0,95,115,119,97,112,52,0,95,115,119,97,112,50,0,95,115,119,97,112,115,116,114,105,110,103,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108, 101,95,118,105,97,95,102,100,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108,101,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108,101,95,118,105,97,95,99,97,110,118,97,115,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,105, 110,95,115,97,109,112,108,101,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,105,110,95,102,108,111,97,116,0,95,115,111,117,110,100,102,105,108,101,114,95,119,114,105,116,101,97,114,103,112,97,114,115,101,0,95,99,114,101,97,116,101,95,115, 111,117,110,100,102,105,108,101,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99, 104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,115,111,117,110,100,102,105,108,101,95,102,105,110,105,115,104,119,114,105,116,101,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,111,117,116,95, 115,97,109,112,108,101,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,111,117,116,95,102,108,111,97,116,0,95,115,111,117,110,100,102,105,108,101,114,95,110,101,119,0,95,115,111,117,110,100,102,105,108,101,114,95,114,101,97,100,0,95,115,111, 117,110,100,102,105,108,101,114,95,100,111,119,114,105,116,101,0,95,115,111,117,110,100,102,105,108,101,114,95,119,114,105,116,101,0,95,115,111,117,110,100,102,105,108,101,114,95,115,101,116,117,112,0,95,114,101,97,100,115,102,95,99,104,105,108,100,95, 109,97,105,110,0,95,114,101,97,100,115,102,95,110,101,119,0,95,114,101,97,100,115,102,95,116,105,99,107,0,95,114,101,97,100,115,102,95,112,101,114,102,111,114,109,0,95,114,101,97,100,115,102,95,115,116,97,114,116,0,95,114,101,97,100,115,102,95,115,116, 111,112,0,95,114,101,97,100,115,102,95,102,108,111,97,116,0,95,114,101,97,100,115,102,95,111,112,101,110,0,95,114,101,97,100,115,102,95,100,115,112,0,95,114,101,97,100,115,102,95,112,114,105,110,116,0,95,114,101,97,100,115,102,95,102,114,101,101,0,95, 114,101,97,100,115,102,95,115,101,116,117,112,0,95,119,114,105,116,101,115,102,95,99,104,105,108,100,95,109,97,105,110,0,95,119,114,105,116,101,115,102,95,110,101,119,0,95,119,114,105,116,101,115,102,95,112,101,114,102,111,114,109,0,95,119,114,105,116, 101,115,102,95,115,116,97,114,116,0,95,119,114,105,116,101,115,102,95,115,116,111,112,0,95,119,114,105,116,101,115,102,95,111,112,101,110,0,95,119,114,105,116,101,115,102,95,100,115,112,0,95,119,114,105,116,101,115,102,95,112,114,105,110,116,0,95,119, 114,105,116,101,115,102,95,102,114,101,101,0,95,119,114,105,116,101,115,102,95,115,101,116,117,112,0,95,100,95,115,111,117,110,100,102,105,108,101,95,115,101,116,117,112,0,95,100,111,103,100,111,111,46,53,51,53,55,0,95,115,111,117,110,100,102,105,108, 101,114,95,99,108,97,115,115,0,95,114,101,97,100,115,102,95,99,108,97,115,115,0,95,119,114,105,116,101,115,102,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,117,103,101,110,46,99,0,47,85,115,101,114,115,47,114,117,115, 115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,117,103,101,110,46,111,0,95,122,101,114,111,95,112,101,114,102,111,114,109,0,95,122, 101,114,111,95,112,101,114,102,56,0,95,100,115,112,95,97,100,100,95,122,101,114,111,0,95,98,108,111,99,107,95,110,101,119,0,95,98,108,111,99,107,95,115,101,116,0,95,115,119,105,116,99,104,95,110,101,119,0,95,98,108,111,99,107,95,102,108,111,97,116,0, 95,98,108,111,99,107,95,98,97,110,103,0,95,98,108,111,99,107,95,112,114,111,108,111,103,0,95,98,108,111,99,107,95,101,112,105,108,111,103,0,95,98,108,111,99,107,95,100,115,112,0,95,98,108,111,99,107,95,116,105,108,100,101,95,115,101,116,117,112,0,95, 100,115,112,95,100,111,110,101,0,95,100,115,112,95,97,100,100,0,95,100,115,112,95,97,100,100,118,0,95,100,115,112,95,116,105,99,107,0,95,105,108,111,103,50,0,95,115,105,103,110,97,108,95,99,108,101,97,110,117,112,0,95,115,105,103,110,97,108,95,109,97, 107,101,114,101,117,115,97,98,108,101,0,95,115,105,103,110,97,108,95,110,101,119,0,95,115,105,103,110,97,108,95,110,101,119,108,105,107,101,0,95,115,105,103,110,97,108,95,115,101,116,98,111,114,114,111,119,101,100,0,95,115,105,103,110,97,108,95,99,111, 109,112,97,116,105,98,108,101,0,95,117,103,101,110,95,115,116,111,112,0,95,117,103,101,110,95,115,116,97,114,116,0,95,117,103,101,110,95,103,101,116,115,111,114,116,110,111,0,95,117,103,101,110,95,115,116,97,114,116,95,103,114,97,112,104,0,95,117,103, 101,110,95,97,100,100,0,95,117,103,101,110,95,99,111,110,110,101,99,116,0,95,117,103,101,110,95,105,110,100,101,120,0,95,117,103,101,110,95,100,111,105,116,0,95,117,103,101,110,95,100,111,110,101,95,103,114,97,112,104,0,95,117,103,101,110,95,103,101, 116,105,111,115,105,103,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100,101,95,98,97,110,103,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100,101,95,110,101,119,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100, 101,95,115,101,116,117,112,0,95,100,95,117,103,101,110,95,115,101,116,117,112,0,95,117,103,101,110,95,115,111,114,116,110,111,0,95,117,103,101,110,95,108,111,117,100,0,95,100,115,112,95,99,104,97,105,110,0,95,100,115,112,95,99,104,97,105,110,115,105, 122,101,0,95,100,115,112,95,112,104,97,115,101,0,95,98,108,111,99,107,95,99,108,97,115,115,0,95,115,105,103,110,97,108,95,102,114,101,101,108,105,115,116,0,95,115,105,103,110,97,108,95,102,114,101,101,98,111,114,114,111,119,101,100,0,95,115,105,103,110, 97,108,95,117,115,101,100,108,105,115,116,0,95,117,103,101,110,95,99,117,114,114,101,110,116,99,111,110,116,101,120,116,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114, 99,47,103,95,97,108,108,95,103,117,105,115,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103, 95,97,108,108,95,103,117,105,115,46,111,0,95,105,101,109,103,117,105,95,99,108,105,112,95,115,105,122,101,0,95,105,101,109,103,117,105,95,99,108,105,112,95,102,111,110,116,0,95,105,101,109,103,117,105,95,109,111,100,117,108,111,95,99,111,108,111,114, 0,95,105,101,109,103,117,105,95,100,111,108,108,97,114,50,114,97,117,116,101,0,95,105,101,109,103,117,105,95,114,97,117,116,101,50,100,111,108,108,97,114,0,95,105,101,109,103,117,105,95,118,101,114,105,102,121,95,115,110,100,95,110,101,95,114,99,118, 0,95,105,101,109,103,117,105,95,110,101,119,95,100,111,103,101,116,110,97,109,101,0,95,105,101,109,103,117,105,95,110,101,119,95,103,101,116,110,97,109,101,115,0,95,105,101,109,103,117,105,95,97,108,108,95,100,111,108,108,97,114,97,114,103,50,115,121, 109,0,95,105,101,109,103,117,105,95,105,110,105,116,95,115,121,109,50,100,111,108,108,97,114,97,114,103,0,95,105,101,109,103,117,105,95,97,108,108,95,115,121,109,50,100,111,108,108,97,114,97,114,103,0,95,105,101,109,103,117,105,95,102,105,114,115,116, 95,100,111,108,108,97,114,97,114,103,50,115,121,109,0,95,105,101,109,103,117,105,95,97,108,108,95,99,111,108,50,115,97,118,101,0,95,105,101,109,103,117,105,95,97,108,108,95,99,111,108,102,114,111,109,108,111,97,100,0,95,105,101,109,103,117,105,95,99, 111,109,112,97,116,105,98,108,101,95,99,111,108,0,95,105,101,109,103,117,105,95,97,108,108,95,100,111,108,108,97,114,50,114,97,117,116,101,0,95,105,101,109,103,117,105,95,97,108,108,95,114,97,117,116,101,50,100,111,108,108,97,114,0,95,105,101,109,103, 117,105,95,115,101,110,100,0,95,105,101,109,103,117,105,95,114,101,99,101,105,118,101,0,95,105,101,109,103,117,105,95,108,97,98,101,108,0,95,105,101,109,103,117,105,95,108,97,98,101,108,95,112,111,115,0,95,105,101,109,103,117,105,95,108,97,98,101,108, 95,102,111,110,116,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,105,101,109,103,117,105,95,115,105,122,101,0,95,105,101,109,103,117,105,95,100,101,108,116,97,0,95,105,101,109,103,117,105,95,112,111,115,0,95,105,101, 109,103,117,105,95,99,111,108,111,114,0,95,105,101,109,103,117,105,95,100,105,115,112,108,97,99,101,0,95,105,101,109,103,117,105,95,115,101,108,101,99,116,0,95,105,101,109,103,117,105,95,100,101,108,101,116,101,0,95,105,101,109,103,117,105,95,118,105, 115,0,95,105,101,109,103,117,105,95,115,97,118,101,0,95,105,101,109,103,117,105,95,112,114,111,112,101,114,116,105,101,115,0,95,105,101,109,103,117,105,95,100,105,97,108,111,103,0,95,105,101,109,95,105,110,116,116,111,115,121,109,97,114,103,115,0,95, 95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,105,101,109,95,115,121,109,97,114,103,115,116,111,105,110,116,0,95,105,101,109,95,105,110,116,116,111,102,115,116,121,108,101,0,95,105,101,109,95,102,115,116,121,108,101,116, 111,105,110,116,0,95,105,101,109,103,117,105,95,118,117,95,115,99,97,108,101,95,115,116,114,0,95,105,101,109,103,117,105,95,99,111,108,111,114,95,104,101,120,0,95,105,101,109,103,117,105,95,118,117,95,100,98,50,105,0,95,105,101,109,103,117,105,95,118, 117,95,99,111,108,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,97,114,114,97,121,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112, 117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,97,114,114,97,121,46,111,0,95,115,104,97,114,112,116,111,100,111,108,108,97,114,0,95,97,114,114,97,121,95,110,101,119,0,95,97,114,114,97,121,95,114,101,115,105,122,101,0,95,97,114,114,97,121,95,114, 101,115,105,122,101,95,97,110,100,95,114,101,100,114,97,119,0,95,97,114,114,97,121,95,102,114,101,101,0,95,103,97,114,114,97,121,95,105,110,105,116,0,95,103,114,97,112,104,95,115,99,97,108,97,114,0,95,103,97,114,114,97,121,95,103,101,116,97,114,114,97, 121,0,95,103,97,114,114,97,121,95,103,101,116,97,114,114,97,121,95,102,108,111,97,116,111,110,108,121,0,95,103,97,114,114,97,121,95,103,101,116,110,97,109,101,0,95,103,97,114,114,97,121,95,102,105,116,116,111,103,114,97,112,104,0,95,103,114,97,112,104, 95,97,114,114,97,121,0,95,99,97,110,118,97,115,95,109,101,110,117,97,114,114,97,121,0,95,103,97,114,114,97,121,95,112,114,111,112,101,114,116,105,101,115,0,95,103,108,105,115,116,95,97,114,114,97,121,100,105,97,108,111,103,0,95,103,97,114,114,97,121, 95,97,114,114,97,121,100,105,97,108,111,103,0,95,103,97,114,114,97,121,95,97,114,114,97,121,118,105,101,119,108,105,115,116,95,110,101,119,0,95,103,97,114,114,97,121,95,97,114,114,97,121,118,105,101,119,108,105,115,116,95,102,105,108,108,112,97,103,101, 0,95,103,97,114,114,97,121,95,97,114,114,97,121,118,105,101,119,108,105,115,116,95,99,108,111,115,101,0,95,103,97,114,114,97,121,95,102,114,101,101,0,95,97,114,114,97,121,95,114,101,100,114,97,119,0,95,97,114,114,97,121,95,103,101,116,99,111,111,114, 100,105,110,97,116,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,0,95,97,114,114,97,121,95,100,111,99,108,105,99,107,95,101,108,101,109,101,110,116,0,95,97,114,114,97,121,95,100,111,99,108,105,99,107,0,95,95,95,105,110,108,105,110,101,95,109, 101,109,109,111,118,101,95,99,104,107,0,95,97,114,114,97,121,95,103,101,116,114,101,99,116,0,95,103,97,114,114,97,121,95,103,101,116,114,101,99,116,0,95,103,97,114,114,97,121,95,100,105,115,112,108,97,99,101,0,95,103,97,114,114,97,121,95,115,101,108, 101,99,116,0,95,103,97,114,114,97,121,95,97,99,116,105,118,97,116,101,0,95,103,97,114,114,97,121,95,100,101,108,101,116,101,0,95,103,97,114,114,97,121,95,118,105,115,0,95,103,97,114,114,97,121,95,99,108,105,99,107,0,95,103,97,114,114,97,121,95,115,97, 118,101,0,95,103,97,114,114,97,121,95,117,115,101,100,105,110,100,115,112,0,95,103,97,114,114,97,121,95,100,111,114,101,100,114,97,119,0,95,103,97,114,114,97,121,95,114,101,100,114,97,119,0,95,103,97,114,114,97,121,95,116,101,109,112,108,97,116,101,0, 95,103,97,114,114,97,121,95,110,112,111,105,110,116,115,0,95,103,97,114,114,97,121,95,118,101,99,0,95,103,97,114,114,97,121,95,103,101,116,102,108,111,97,116,119,111,114,100,115,0,95,103,97,114,114,97,121,95,103,101,116,102,108,111,97,116,97,114,114, 97,121,0,95,103,97,114,114,97,121,95,115,101,116,115,97,118,101,105,116,0,95,103,97,114,114,97,121,95,99,111,110,115,116,0,95,103,97,114,114,97,121,95,100,111,102,111,0,95,103,97,114,114,97,121,95,115,105,110,101,115,117,109,0,95,103,97,114,114,97,121, 95,99,111,115,105,110,101,115,117,109,0,95,103,97,114,114,97,121,95,110,111,114,109,97,108,105,122,101,0,95,103,97,114,114,97,121,95,108,105,115,116,0,95,103,97,114,114,97,121,95,98,111,117,110,100,115,0,95,103,97,114,114,97,121,95,120,116,105,99,107, 115,0,95,103,97,114,114,97,121,95,121,116,105,99,107,115,0,95,103,97,114,114,97,121,95,120,108,97,98,101,108,0,95,103,97,114,114,97,121,95,121,108,97,98,101,108,0,95,103,97,114,114,97,121,95,114,101,110,97,109,101,0,95,103,97,114,114,97,121,95,114,101, 97,100,0,95,103,97,114,114,97,121,95,119,114,105,116,101,0,95,103,97,114,114,97,121,95,97,109,98,105,103,101,110,100,105,97,110,0,95,103,97,114,114,97,121,95,114,101,115,105,122,101,95,108,111,110,103,0,95,103,97,114,114,97,121,95,114,101,115,105,122, 101,0,95,103,97,114,114,97,121,95,112,114,105,110,116,0,95,103,95,97,114,114,97,121,95,115,101,116,117,112,0,95,103,97,114,114,97,121,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,103,97,114,114,97,121,95,97,114,114,97,121,116,101,109, 112,108,97,116,101,102,105,108,101,0,95,103,97,114,114,97,121,95,102,108,111,97,116,116,101,109,112,108,97,116,101,102,105,108,101,0,95,103,99,111,117,110,116,0,95,119,97,114,110,101,100,46,55,50,54,48,0,95,103,97,114,114,97,121,95,97,114,114,97,121, 116,101,109,112,108,97,116,101,99,97,110,118,97,115,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,120,99,117,109,117,108,97,116,105,118,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,121,99,117,109,117,108,97,116,105,118,101,0,95,97, 114,114,97,121,95,109,111,116,105,111,110,95,120,102,105,101,108,100,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,121,102,105,101,108,100,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,103,108,105,115,116,0,95,97,114,114,97,121,95,109,111, 116,105,111,110,95,115,99,97,108,97,114,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,97,114,114,97,121,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,119,112,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,116,101,109,112,108,97,116, 101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,110,112,111,105,110,116,115,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,101,108,101,109,115,105,122,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,97,108,116,107,101,121,0,95, 97,114,114,97,121,95,109,111,116,105,111,110,95,105,110,105,116,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,120,112,101,114,112,105,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,121,112,101,114,112,105,120,0,95,97,114,114,97,121, 95,109,111,116,105,111,110,95,108,97,115,116,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,102,97,116,116,101,110,0,95,103,97,114,114,97,121,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,98,97,110,103,46,99, 0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,98,97,110,103,46,111,0,95,98,110,103,95,100,114, 97,119,95,117,112,100,97,116,101,0,95,98,110,103,95,100,114,97,119,95,110,101,119,0,95,98,110,103,95,100,114,97,119,95,109,111,118,101,0,95,98,110,103,95,100,114,97,119,95,101,114,97,115,101,0,95,98,110,103,95,100,114,97,119,95,99,111,110,102,105,103, 0,95,98,110,103,95,100,114,97,119,95,105,111,0,95,98,110,103,95,100,114,97,119,95,115,101,108,101,99,116,0,95,98,110,103,95,100,114,97,119,0,95,98,110,103,95,103,101,116,114,101,99,116,0,95,98,110,103,95,115,97,118,101,0,95,98,110,103,95,99,104,101,99, 107,95,109,105,110,109,97,120,0,95,98,110,103,95,112,114,111,112,101,114,116,105,101,115,0,95,98,110,103,95,115,101,116,0,95,98,110,103,95,98,111,117,116,49,0,95,98,110,103,95,98,111,117,116,50,0,95,98,110,103,95,98,97,110,103,0,95,98,110,103,95,98,97, 110,103,50,0,95,98,110,103,95,100,105,97,108,111,103,0,95,98,110,103,95,99,108,105,99,107,0,95,98,110,103,95,110,101,119,99,108,105,99,107,0,95,98,110,103,95,102,108,111,97,116,0,95,98,110,103,95,115,121,109,98,111,108,0,95,98,110,103,95,112,111,105, 110,116,101,114,0,95,98,110,103,95,108,105,115,116,0,95,98,110,103,95,97,110,121,116,104,105,110,103,0,95,98,110,103,95,108,111,97,100,98,97,110,103,0,95,98,110,103,95,115,105,122,101,0,95,98,110,103,95,100,101,108,116,97,0,95,98,110,103,95,112,111,115, 0,95,98,110,103,95,102,108,97,115,104,116,105,109,101,0,95,98,110,103,95,99,111,108,111,114,0,95,98,110,103,95,115,101,110,100,0,95,98,110,103,95,114,101,99,101,105,118,101,0,95,98,110,103,95,108,97,98,101,108,0,95,98,110,103,95,108,97,98,101,108,95, 112,111,115,0,95,98,110,103,95,108,97,98,101,108,95,102,111,110,116,0,95,98,110,103,95,105,110,105,116,0,95,98,110,103,95,116,105,99,107,95,104,108,100,0,95,98,110,103,95,116,105,99,107,95,98,114,107,0,95,98,110,103,95,116,105,99,107,95,108,99,107,0, 95,98,110,103,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,98,110,103,95,102,102,0,95,103,95,98,97,110,103,95,115,101,116,117,112,0,95,98,110,103,95,99,108,97,115,115,0,95,98,110,103,95,119,105,100,103, 101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,99,97,110,118,97,115,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47, 108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,99,97,110,118,97,115,46,111,0,95,99,97,110,118,97,115,95,117,112,100,97,116,101,119,105,110,100,111,119,108,105,115,116,0,95,99,97,110,118,97,115,95,97,100,100,116,111,108, 105,115,116,0,95,99,97,110,118,97,115,95,116,97,107,101,111,102,102,108,105,115,116,0,95,99,97,110,118,97,115,95,115,101,116,97,114,103,115,0,95,103,108,111,98,95,115,101,116,102,105,108,101,110,97,109,101,0,95,99,97,110,118,97,115,95,103,101,116,99, 117,114,114,101,110,116,0,95,99,97,110,118,97,115,95,115,101,116,99,117,114,114,101,110,116,0,95,99,97,110,118,97,115,95,117,110,115,101,116,99,117,114,114,101,110,116,0,95,99,97,110,118,97,115,95,103,101,116,101,110,118,0,95,99,97,110,118,97,115,95, 103,101,116,100,111,108,108,97,114,122,101,114,111,0,95,99,97,110,118,97,115,95,103,101,116,97,114,103,115,0,95,99,97,110,118,97,115,95,114,101,97,108,105,122,101,100,111,108,108,97,114,0,95,99,97,110,118,97,115,95,103,101,116,99,117,114,114,101,110, 116,100,105,114,0,95,99,97,110,118,97,115,95,103,101,116,100,105,114,0,95,99,97,110,118,97,115,95,109,97,107,101,102,105,108,101,110,97,109,101,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105, 110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,97,116,95,99,104,107,0,95,99,97,110,118,97,115,95,114,101,110,97,109,101,0,95,99,97,110,118,97,115,95,103,101,116,105,110,100,101,120,0,95,108,105, 110,101,116,114,97,118,101,114,115,101,114,95,115,116,97,114,116,0,95,108,105,110,101,116,114,97,118,101,114,115,101,114,95,110,101,120,116,0,95,108,105,110,101,116,114,97,118,101,114,115,101,114,95,115,107,105,112,111,98,106,101,99,116,0,95,103,108, 105,115,116,95,105,110,105,116,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,99,97,110,118,97,115,95,110,101,119,0,95,99,97,110,118,97,115,95,99,111,111,114,100,115,0,95,103,108,105,115,116,95,97,100,100,103,108,105, 115,116,0,95,103,108,105,115,116,95,103,108,105,115,116,0,95,103,108,105,115,116,95,105,115,103,114,97,112,104,0,95,99,97,110,118,97,115,95,115,101,116,98,111,117,110,100,115,0,95,99,97,110,118,97,115,95,100,111,115,101,116,98,111,117,110,100,115,0,95, 99,97,110,118,97,115,95,109,97,107,101,98,105,110,100,115,121,109,0,95,99,97,110,118,97,115,95,114,101,102,108,101,99,116,116,105,116,108,101,0,95,99,97,110,118,97,115,95,100,105,114,116,121,0,95,99,97,110,118,97,115,95,100,114,97,119,114,101,100,114, 101,99,116,0,95,99,97,110,118,97,115,95,109,97,112,0,95,99,97,110,118,97,115,95,114,101,100,114,97,119,0,95,103,108,105,115,116,95,109,101,110,117,95,111,112,101,110,0,95,103,108,105,115,116,95,105,115,118,105,115,105,98,108,101,0,95,103,108,105,115, 116,95,105,115,116,111,112,108,101,118,101,108,0,95,103,108,105,115,116,95,103,101,116,102,111,110,116,0,95,99,97,110,118,97,115,95,102,114,101,101,0,95,99,97,110,118,97,115,95,100,114,97,119,108,105,110,101,115,0,95,99,97,110,118,97,115,95,102,105,120, 108,105,110,101,115,102,111,114,0,95,99,97,110,118,97,115,95,100,101,108,101,116,101,108,105,110,101,115,102,111,114,0,95,99,97,110,118,97,115,95,100,101,108,101,116,101,108,105,110,101,115,102,111,114,105,111,0,95,99,97,110,118,97,115,95,112,111,112, 0,95,99,97,110,118,97,115,95,114,101,115,116,111,114,101,0,95,99,97,110,118,97,115,95,108,111,97,100,98,97,110,103,97,98,115,116,114,97,99,116,105,111,110,115,0,95,99,97,110,118,97,115,95,108,111,97,100,98,97,110,103,115,117,98,112,97,116,99,104,101, 115,0,95,99,97,110,118,97,115,95,108,111,97,100,98,97,110,103,0,95,99,97,110,118,97,115,95,114,101,108,111,99,97,116,101,0,95,99,97,110,118,97,115,95,112,111,112,97,98,115,116,114,97,99,116,105,111,110,0,95,99,97,110,118,97,115,95,108,111,103,101,114, 114,111,114,0,95,115,117,98,99,97,110,118,97,115,95,110,101,119,0,95,99,97,110,118,97,115,95,99,108,105,99,107,0,95,99,97,110,118,97,115,95,102,97,116,116,101,110,115,117,98,0,95,99,97,110,118,97,115,95,114,101,110,97,109,101,95,109,101,116,104,111,100, 0,95,116,97,98,108,101,95,110,101,119,0,95,99,97,110,118,97,115,95,105,115,97,98,115,116,114,97,99,116,105,111,110,0,95,99,97,110,118,97,115,95,105,115,116,97,98,108,101,0,95,99,97,110,118,97,115,95,115,104,111,119,116,101,120,116,0,95,99,97,110,118, 97,115,95,103,101,116,114,111,111,116,102,111,114,0,95,99,97,110,118,97,115,95,100,111,100,115,112,0,95,99,97,110,118,97,115,95,100,115,112,0,95,99,97,110,118,97,115,95,115,116,97,114,116,95,100,115,112,0,95,99,97,110,118,97,115,95,115,116,111,112,95, 100,115,112,0,95,99,97,110,118,97,115,95,115,117,115,112,101,110,100,95,100,115,112,0,95,99,97,110,118,97,115,95,114,101,115,117,109,101,95,100,115,112,0,95,99,97,110,118,97,115,95,117,112,100,97,116,101,95,100,115,112,0,95,103,108,111,98,95,100,115, 112,0,95,99,97,110,118,97,115,95,103,101,116,98,108,111,99,107,0,95,103,108,105,115,116,95,114,101,100,114,97,119,97,108,108,0,95,99,97,110,118,97,115,95,114,101,100,114,97,119,97,108,108,102,111,114,116,101,109,112,108,97,116,101,0,95,99,97,110,118, 97,115,95,114,101,100,114,97,119,97,108,108,102,111,114,116,101,109,112,108,97,116,101,99,97,110,118,97,115,0,95,100,101,99,108,97,114,101,95,110,101,119,0,95,100,101,99,108,97,114,101,95,102,114,101,101,0,95,99,97,110,118,97,115,95,115,97,118,101,100, 101,99,108,97,114,97,116,105,111,110,115,116,111,0,95,99,97,110,118,97,115,95,99,111,109,112,108,101,116,101,112,97,116,104,0,95,99,97,110,118,97,115,95,100,101,99,108,97,114,101,0,95,99,97,110,118,97,115,95,111,112,101,110,0,95,103,95,99,97,110,118, 97,115,95,115,101,116,117,112,0,95,99,97,110,118,97,115,95,110,101,119,102,105,108,101,110,97,109,101,0,95,99,97,110,118,97,115,95,110,101,119,100,105,114,101,99,116,111,114,121,0,95,103,108,105,115,116,95,118,97,108,105,100,0,95,100,111,108,108,97,114, 122,101,114,111,46,54,51,52,50,0,95,103,99,111,117,110,116,46,54,52,57,50,0,95,116,97,98,99,111,117,110,116,0,95,99,97,110,118,97,115,95,110,101,119,97,114,103,99,0,95,99,97,110,118,97,115,95,110,101,119,97,114,103,118,0,95,100,101,99,108,97,114,101, 95,99,108,97,115,115,0,95,99,97,110,118,97,115,95,99,108,97,115,115,0,95,99,97,110,118,97,115,95,100,115,112,115,116,97,116,101,0,95,99,97,110,118,97,115,95,101,100,105,116,105,110,103,0,95,99,97,110,118,97,115,95,108,105,115,116,0,95,99,97,110,118,97, 115,95,119,104,105,99,104,102,105,110,100,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,101,100,105,116,111,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112, 100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,101,100,105,116,111,114,46,111,0,95,103,111,98,106,95,103,101,116,114,101,99,116,0,95,103,111,98,106,95,100,105,115,112,108,97,99,101,0,95,103,111,98,106,95,115,101, 108,101,99,116,0,95,103,111,98,106,95,97,99,116,105,118,97,116,101,0,95,103,111,98,106,95,100,101,108,101,116,101,0,95,103,111,98,106,95,115,104,111,117,108,100,118,105,115,0,95,103,111,98,106,95,118,105,115,0,95,103,111,98,106,95,99,108,105,99,107,0, 95,103,108,105,115,116,95,115,101,108,101,99,116,108,105,110,101,0,95,103,108,105,115,116,95,100,101,115,101,108,101,99,116,108,105,110,101,0,95,103,108,105,115,116,95,105,115,115,101,108,101,99,116,101,100,0,95,103,108,105,115,116,95,115,101,108,101, 99,116,0,95,103,108,105,115,116,95,99,104,101,99,107,97,110,100,100,101,115,101,108,101,99,116,97,108,108,0,95,103,108,105,115,116,95,100,101,115,101,108,101,99,116,0,95,103,108,105,115,116,95,110,111,115,101,108,101,99,116,0,95,103,108,105,115,116,95, 115,101,108,101,99,116,97,108,108,0,95,103,108,105,115,116,95,103,101,116,105,110,100,101,120,0,95,103,108,105,115,116,95,115,101,108,101,99,116,105,111,110,105,110,100,101,120,0,95,103,108,105,115,116,95,110,116,104,0,95,99,97,110,118,97,115,95,115, 101,116,117,110,100,111,0,95,99,97,110,118,97,115,95,110,111,117,110,100,111,0,95,99,97,110,118,97,115,95,117,110,100,111,0,95,99,97,110,118,97,115,95,114,101,100,111,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,100,105,115,99,111,110, 110,101,99,116,0,95,99,97,110,118,97,115,95,100,105,115,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,100,105,115,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,99,111,110,110,101, 99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,99,117,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,99,117,116,0,95,99,97,110,118,97,115,95,117,110, 100,111,95,115,101,116,95,109,111,118,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,109,111,118,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,112,97,115,116,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,112,97,115,116, 101,0,95,103,108,105,115,116,95,100,111,114,101,108,111,97,100,0,95,99,97,110,118,97,115,95,114,101,108,111,97,100,0,95,99,97,110,118,97,115,95,115,101,116,99,117,114,115,111,114,0,95,99,97,110,118,97,115,95,104,105,116,98,111,120,0,95,99,97,110,118, 97,115,95,102,105,110,100,104,105,116,98,111,120,0,95,99,97,110,118,97,115,95,114,105,103,104,116,99,108,105,99,107,0,95,101,100,105,116,111,114,95,110,101,119,0,95,101,100,105,116,111,114,95,102,114,101,101,0,95,99,97,110,118,97,115,95,99,114,101,97, 116,101,95,101,100,105,116,111,114,0,95,99,97,110,118,97,115,95,100,101,115,116,114,111,121,95,101,100,105,116,111,114,0,95,99,97,110,118,97,115,95,118,105,115,0,95,99,97,110,118,97,115,95,115,101,116,103,114,97,112,104,0,95,99,97,110,118,97,115,95,112, 114,111,112,101,114,116,105,101,115,0,95,99,97,110,118,97,115,95,100,111,110,101,99,97,110,118,97,115,100,105,97,108,111,103,0,95,99,97,110,118,97,115,95,100,111,110,101,95,112,111,112,117,112,0,95,99,97,110,118,97,115,95,100,111,99,108,105,99,107,0, 95,99,97,110,118,97,115,95,109,111,117,115,101,0,95,99,97,110,118,97,115,95,105,115,99,111,110,110,101,99,116,101,100,0,95,99,97,110,118,97,115,95,100,111,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,115,101,108,101,99,116,105,110,114,101,99, 116,0,95,99,97,110,118,97,115,95,100,111,114,101,103,105,111,110,0,95,99,97,110,118,97,115,95,109,111,117,115,101,117,112,0,95,99,97,110,118,97,115,95,100,105,115,112,108,97,99,101,115,101,108,101,99,116,105,111,110,0,95,99,97,110,118,97,115,95,107,101, 121,0,95,100,101,108,97,121,95,109,111,118,101,0,95,99,97,110,118,97,115,95,109,111,116,105,111,110,0,95,99,97,110,118,97,115,95,115,116,97,114,116,109,111,116,105,111,110,0,95,99,97,110,118,97,115,95,112,114,105,110,116,0,95,103,108,105,115,116,95,102, 105,110,100,100,105,114,116,121,0,95,103,108,111,98,95,118,101,114,105,102,121,113,117,105,116,0,95,99,97,110,118,97,115,95,109,101,110,117,99,108,111,115,101,0,95,99,97,110,118,97,115,95,109,101,110,117,102,111,110,116,0,95,99,97,110,118,97,115,95,100, 111,102,105,110,100,0,95,99,97,110,118,97,115,95,102,105,110,100,0,95,99,97,110,118,97,115,95,102,105,110,100,95,97,103,97,105,110,0,95,99,97,110,118,97,115,95,102,105,110,100,95,112,97,114,101,110,116,0,95,103,108,105,115,116,95,100,111,102,105,110, 100,101,114,114,111,114,0,95,99,97,110,118,97,115,95,102,105,110,100,101,114,114,111,114,0,95,99,97,110,118,97,115,95,115,116,111,119,99,111,110,110,101,99,116,105,111,110,115,0,95,99,97,110,118,97,115,95,114,101,115,116,111,114,101,99,111,110,110,101, 99,116,105,111,110,115,0,95,99,97,110,118,97,115,95,100,111,99,111,112,121,0,95,99,97,110,118,97,115,95,99,111,112,121,0,95,99,97,110,118,97,115,95,99,108,101,97,114,108,105,110,101,0,95,99,97,110,118,97,115,95,100,111,99,108,101,97,114,0,95,99,97,110, 118,97,115,95,99,117,116,0,95,103,108,105,115,116,95,100,111,110,101,119,108,111,97,100,98,97,110,103,115,0,95,99,97,110,118,97,115,95,100,111,112,97,115,116,101,0,95,99,97,110,118,97,115,95,112,97,115,116,101,0,95,99,97,110,118,97,115,95,100,117,112, 108,105,99,97,116,101,0,95,99,97,110,118,97,115,95,115,101,108,101,99,116,97,108,108,0,95,99,97,110,118,97,115,95,114,101,115,101,108,101,99,116,0,95,99,97,110,118,97,115,95,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,116,105,100,121,0,95, 99,97,110,118,97,115,95,116,101,120,116,101,100,105,116,111,114,0,95,103,108,111,98,95,107,101,121,0,95,99,97,110,118,97,115,95,101,100,105,116,109,111,100,101,0,95,99,97,110,118,97,115,95,100,111,102,111,110,116,0,95,99,97,110,118,97,115,95,102,111, 110,116,0,95,103,108,105,115,116,95,103,101,116,110,101,120,116,120,121,0,95,103,108,105,115,116,95,115,101,116,108,97,115,116,120,121,0,95,103,95,101,100,105,116,111,114,95,115,101,116,117,112,0,95,99,117,114,115,111,114,108,105,115,116,0,95,103,108, 105,115,116,95,97,109,114,101,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,115,0,95,114,101,101,110,116,101,114,46,53,57,54,52,0,95,99,117,114,115,111,114,119,97,115,46,54,55,48,48,0,95,120,119,97,115,46,54,54,57,57,0,95,107,101, 121,110,97,109,101,115,121,109,46,55,57,51,53,0,95,107,101,121,117,112,115,121,109,46,55,57,51,52,0,95,107,101,121,110,117,109,115,121,109,46,55,57,51,51,0,95,99,111,112,121,95,98,105,110,98,117,102,0,95,99,97,110,118,97,115,95,116,101,120,116,99,111, 112,121,98,117,102,0,95,99,97,110,118,97,115,95,116,101,120,116,99,111,112,121,98,117,102,115,105,122,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,102,110,0,95,99,97,110,118,97,115,95,117,110,100,111,95,119,104,97,116,110,101,120,116,0,95,99,97, 110,118,97,115,95,117,110,100,111,95,98,117,102,0,95,99,97,110,118,97,115,95,117,110,100,111,95,99,97,110,118,97,115,0,95,99,97,110,118,97,115,95,117,110,100,111,95,110,97,109,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,97,108,114,101,97,100, 121,95,115,101,116,95,109,111,118,101,0,95,99,97,110,118,97,115,95,117,112,99,108,105,99,107,116,105,109,101,0,95,99,97,110,118,97,115,95,117,112,120,0,95,99,97,110,118,97,115,95,117,112,121,0,95,99,97,110,118,97,115,95,102,105,110,100,95,105,110,100, 101,120,49,0,95,99,97,110,118,97,115,95,102,105,110,100,95,105,110,100,101,120,50,0,95,99,97,110,118,97,115,95,102,105,110,100,95,119,104,111,108,101,119,111,114,100,0,95,99,97,110,118,97,115,95,102,105,110,100,98,117,102,0,95,112,97,115,116,101,95,111, 110,115,101,116,0,95,112,97,115,116,101,95,99,97,110,118,97,115,0,95,99,97,110,118,97,115,95,108,97,115,116,95,103,108,105,115,116,0,95,99,97,110,118,97,115,95,108,97,115,116,95,103,108,105,115,116,95,120,0,95,99,97,110,118,97,115,95,108,97,115,116,95, 103,108,105,115,116,95,121,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,103,114,97,112,104,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112, 100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,103,114,97,112,104,46,111,0,95,103,108,105,115,116,95,97,100,100,0,95,99,97,110,118,97,115,95,115,101,116,100,101,108,101,116,105,110,103,0,95,103,108,105,115,116,95,100,101,108,101,116, 101,0,95,103,108,105,115,116,95,99,108,101,97,114,0,95,103,108,105,115,116,95,114,101,116,101,120,116,0,95,103,108,105,115,116,95,103,114,97,98,0,95,103,108,105,115,116,95,103,101,116,99,97,110,118,97,115,0,95,103,111,98,106,95,103,101,116,120,102,111, 114,115,111,114,116,0,95,103,108,105,115,116,95,109,101,114,103,101,0,95,103,108,105,115,116,95,100,111,115,111,114,116,0,95,103,108,105,115,116,95,115,111,114,116,0,95,103,108,105,115,116,95,99,108,101,97,110,117,112,0,95,103,108,105,115,116,95,102, 114,101,101,0,95,99,97,110,118,97,115,95,97,100,100,105,110,108,101,116,0,95,99,97,110,118,97,115,95,114,109,105,110,108,101,116,0,95,99,97,110,118,97,115,95,114,101,115,111,114,116,105,110,108,101,116,115,0,95,99,97,110,118,97,115,95,97,100,100,111, 117,116,108,101,116,0,95,99,97,110,118,97,115,95,114,109,111,117,116,108,101,116,0,95,99,97,110,118,97,115,95,114,101,115,111,114,116,111,117,116,108,101,116,115,0,95,103,114,97,112,104,95,98,111,117,110,100,115,0,95,103,114,97,112,104,95,120,116,105, 99,107,115,0,95,103,114,97,112,104,95,121,116,105,99,107,115,0,95,103,114,97,112,104,95,120,108,97,98,101,108,0,95,103,114,97,112,104,95,121,108,97,98,101,108,0,95,103,108,105,115,116,95,112,105,120,101,108,115,116,111,120,0,95,103,108,105,115,116,95, 112,105,120,101,108,115,116,111,121,0,95,103,108,105,115,116,95,120,116,111,112,105,120,101,108,115,0,95,103,108,105,115,116,95,121,116,111,112,105,120,101,108,115,0,95,103,108,105,115,116,95,100,112,105,120,116,111,100,120,0,95,103,108,105,115,116,95, 100,112,105,120,116,111,100,121,0,95,116,101,120,116,95,120,112,105,120,0,95,116,101,120,116,95,121,112,105,120,0,95,103,108,105,115,116,95,114,101,100,114,97,119,0,95,103,114,97,112,104,95,118,105,115,0,95,103,114,97,112,104,95,103,114,97,112,104,114, 101,99,116,0,95,103,114,97,112,104,95,103,101,116,114,101,99,116,0,95,103,114,97,112,104,95,100,105,115,112,108,97,99,101,0,95,103,114,97,112,104,95,115,101,108,101,99,116,0,95,103,114,97,112,104,95,97,99,116,105,118,97,116,101,0,95,103,114,97,112,104, 95,100,101,108,101,116,101,0,95,103,114,97,112,104,95,109,111,116,105,111,110,0,95,103,114,97,112,104,95,99,108,105,99,107,0,95,103,108,105,115,116,95,102,105,110,100,103,114,97,112,104,0,95,103,95,103,114,97,112,104,95,115,101,116,117,112,0,95,103,114, 97,112,104,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,103,114,97,112,104,95,108,97,115,116,120,112,105,120,0,95,103,114,97,112,104,95,108,97,115,116,121,112,105,120,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,103,117, 105,99,111,110,110,101,99,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,103,117,105, 99,111,110,110,101,99,116,46,111,0,95,103,117,105,99,111,110,110,101,99,116,95,110,101,119,0,95,103,117,105,99,111,110,110,101,99,116,95,102,114,101,101,0,95,103,117,105,99,111,110,110,101,99,116,95,116,105,99,107,0,95,103,117,105,99,111,110,110,101, 99,116,95,110,111,116,97,114,103,101,116,0,95,103,117,105,99,111,110,110,101,99,116,95,97,110,121,116,104,105,110,103,0,95,103,117,105,99,111,110,110,101,99,116,95,115,105,103,110,111,102,102,0,95,103,95,103,117,105,99,111,110,110,101,99,116,95,115,101, 116,117,112,0,95,103,117,105,99,111,110,110,101,99,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,104,100,105,97,108,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114, 111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,104,100,105,97,108,46,111,0,95,104,114,97,100,105,111,95,100,114,97,119,95,117,112,100,97,116,101,0,95,104,114,97,100,105,111,95,100,114,97, 119,95,110,101,119,0,95,104,114,97,100,105,111,95,100,114,97,119,95,109,111,118,101,0,95,104,114,97,100,105,111,95,100,114,97,119,95,101,114,97,115,101,0,95,104,114,97,100,105,111,95,100,114,97,119,95,99,111,110,102,105,103,0,95,104,114,97,100,105,111, 95,100,114,97,119,95,105,111,0,95,104,114,97,100,105,111,95,100,114,97,119,95,115,101,108,101,99,116,0,95,104,114,97,100,105,111,95,100,114,97,119,0,95,104,114,97,100,105,111,95,103,101,116,114,101,99,116,0,95,104,114,97,100,105,111,95,115,97,118,101, 0,95,104,114,97,100,105,111,95,112,114,111,112,101,114,116,105,101,115,0,95,104,114,97,100,105,111,95,100,105,97,108,111,103,0,95,104,114,97,100,105,111,95,115,101,116,0,95,104,114,97,100,105,111,95,98,97,110,103,0,95,104,114,97,100,105,111,95,102,111, 117,116,0,95,104,114,97,100,105,111,95,102,108,111,97,116,0,95,104,114,97,100,105,111,95,99,108,105,99,107,0,95,104,114,97,100,105,111,95,110,101,119,99,108,105,99,107,0,95,104,114,97,100,105,111,95,108,111,97,100,98,97,110,103,0,95,104,114,97,100,105, 111,95,110,117,109,98,101,114,0,95,104,114,97,100,105,111,95,115,105,122,101,0,95,104,114,97,100,105,111,95,100,101,108,116,97,0,95,104,114,97,100,105,111,95,112,111,115,0,95,104,114,97,100,105,111,95,99,111,108,111,114,0,95,104,114,97,100,105,111,95, 115,101,110,100,0,95,104,114,97,100,105,111,95,114,101,99,101,105,118,101,0,95,104,114,97,100,105,111,95,108,97,98,101,108,0,95,104,114,97,100,105,111,95,108,97,98,101,108,95,112,111,115,0,95,104,114,97,100,105,111,95,108,97,98,101,108,95,102,111,110, 116,0,95,104,114,97,100,105,111,95,105,110,105,116,0,95,104,114,97,100,105,111,95,100,111,117,98,108,101,95,99,104,97,110,103,101,0,95,104,114,97,100,105,111,95,115,105,110,103,108,101,95,99,104,97,110,103,101,0,95,104,114,97,100,105,111,95,100,111,110, 101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,104,114,97,100,105,111,95,110,101,119,0,95,104,100,105,97,108,95,110,101,119,0,95,104,114,97,100,105,111,95,102,102,0,95,103,95,104,114,97,100,105,111,95,115,101, 116,117,112,0,95,104,114,97,100,105,111,95,99,108,97,115,115,0,95,104,114,97,100,105,111,95,111,108,100,95,99,108,97,115,115,0,95,104,114,97,100,105,111,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115, 114,99,47,103,95,104,115,108,105,100,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103, 95,104,115,108,105,100,101,114,46,111,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,117,112,100,97,116,101,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,110,101,119,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,109,111,118,101, 0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,101,114,97,115,101,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,99,111,110,102,105,103,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,105,111,0,95,104,115,108,105,100,101,114,95,100, 114,97,119,95,115,101,108,101,99,116,0,95,104,115,108,105,100,101,114,95,100,114,97,119,0,95,104,115,108,105,100,101,114,95,103,101,116,114,101,99,116,0,95,104,115,108,105,100,101,114,95,115,97,118,101,0,95,104,115,108,105,100,101,114,95,99,104,101,99, 107,95,119,105,100,116,104,0,95,104,115,108,105,100,101,114,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,104,115,108,105,100,101,114,95,112,114,111,112,101,114,116,105,101,115,0,95,104,115,108,105,100,101,114,95,115,101,116,0,95,104,115,108,105, 100,101,114,95,98,97,110,103,0,95,104,115,108,105,100,101,114,95,100,105,97,108,111,103,0,95,104,115,108,105,100,101,114,95,109,111,116,105,111,110,0,95,104,115,108,105,100,101,114,95,99,108,105,99,107,0,95,104,115,108,105,100,101,114,95,110,101,119, 99,108,105,99,107,0,95,104,115,108,105,100,101,114,95,115,105,122,101,0,95,104,115,108,105,100,101,114,95,100,101,108,116,97,0,95,104,115,108,105,100,101,114,95,112,111,115,0,95,104,115,108,105,100,101,114,95,114,97,110,103,101,0,95,104,115,108,105,100, 101,114,95,99,111,108,111,114,0,95,104,115,108,105,100,101,114,95,115,101,110,100,0,95,104,115,108,105,100,101,114,95,114,101,99,101,105,118,101,0,95,104,115,108,105,100,101,114,95,108,97,98,101,108,0,95,104,115,108,105,100,101,114,95,108,97,98,101,108, 95,112,111,115,0,95,104,115,108,105,100,101,114,95,108,97,98,101,108,95,102,111,110,116,0,95,104,115,108,105,100,101,114,95,108,111,103,0,95,104,115,108,105,100,101,114,95,108,105,110,0,95,104,115,108,105,100,101,114,95,105,110,105,116,0,95,104,115,108, 105,100,101,114,95,115,116,101,97,100,121,0,95,104,115,108,105,100,101,114,95,102,108,111,97,116,0,95,104,115,108,105,100,101,114,95,108,111,97,100,98,97,110,103,0,95,104,115,108,105,100,101,114,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115, 116,114,99,112,121,95,99,104,107,0,95,104,115,108,105,100,101,114,95,102,114,101,101,0,95,103,95,104,115,108,105,100,101,114,95,115,101,116,117,112,0,95,104,115,108,105,100,101,114,95,99,108,97,115,115,0,95,104,115,108,105,100,101,114,95,119,105,100, 103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,105,111,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98, 112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,105,111,46,111,0,95,118,105,110,108,101,116,95,110,101,119,0,95,118,105,110,108,101,116,95,98,97,110,103,0,95,118,105,110,108,101,116,95,112,111,105,110,116,101,114,0,95,118,105,110, 108,101,116,95,102,108,111,97,116,0,95,118,105,110,108,101,116,95,115,121,109,98,111,108,0,95,118,105,110,108,101,116,95,108,105,115,116,0,95,118,105,110,108,101,116,95,97,110,121,116,104,105,110,103,0,95,118,105,110,108,101,116,95,102,114,101,101,0, 95,118,105,110,108,101,116,95,103,101,116,105,116,0,95,118,105,110,108,101,116,95,105,115,115,105,103,110,97,108,0,95,118,105,110,108,101,116,95,112,101,114,102,111,114,109,0,95,118,105,110,108,101,116,95,100,115,112,0,95,118,105,110,108,101,116,95,100, 111,112,114,111,108,111,103,0,95,118,105,110,108,101,116,95,100,115,112,112,114,111,108,111,103,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,118,105,110,108,101,116,95,110,101,119,115,105,103,0,95,118,105,110,108,101, 116,95,115,101,116,117,112,0,95,118,111,117,116,108,101,116,95,110,101,119,0,95,118,111,117,116,108,101,116,95,98,97,110,103,0,95,118,111,117,116,108,101,116,95,112,111,105,110,116,101,114,0,95,118,111,117,116,108,101,116,95,102,108,111,97,116,0,95,118, 111,117,116,108,101,116,95,115,121,109,98,111,108,0,95,118,111,117,116,108,101,116,95,108,105,115,116,0,95,118,111,117,116,108,101,116,95,97,110,121,116,104,105,110,103,0,95,118,111,117,116,108,101,116,95,102,114,101,101,0,95,118,111,117,116,108,101, 116,95,103,101,116,105,116,0,95,118,111,117,116,108,101,116,95,105,115,115,105,103,110,97,108,0,95,118,111,117,116,108,101,116,95,112,101,114,102,111,114,109,0,95,118,111,117,116,108,101,116,95,100,111,101,112,105,108,111,103,0,95,118,111,117,116,108, 101,116,95,100,111,101,112,105,108,111,103,95,114,101,115,97,109,112,108,105,110,103,0,95,118,111,117,116,108,101,116,95,100,115,112,112,114,111,108,111,103,0,95,118,111,117,116,108,101,116,95,100,115,112,0,95,118,111,117,116,108,101,116,95,100,115,112, 101,112,105,108,111,103,0,95,118,111,117,116,108,101,116,95,110,101,119,115,105,103,0,95,118,111,117,116,108,101,116,95,115,101,116,117,112,0,95,103,95,105,111,95,115,101,116,117,112,0,95,116,111,116,0,95,118,105,110,108,101,116,95,99,108,97,115,115, 0,95,118,111,117,116,108,101,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,109,121,99,97,110,118,97,115,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47, 108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,109,121,99,97,110,118,97,115,46,111,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,110,101,119,0,95,109,121,95,99,97,110,118,97,115,95,100, 114,97,119,95,109,111,118,101,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,101,114,97,115,101,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,99,111,110,102,105,103,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,115, 101,108,101,99,116,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,0,95,109,121,95,99,97,110,118,97,115,95,103,101,116,114,101,99,116,0,95,109,121,95,99,97,110,118,97,115,95,115,97,118,101,0,95,109,121,95,99,97,110,118,97,115,95,112,114,111,112, 101,114,116,105,101,115,0,95,109,121,95,99,97,110,118,97,115,95,103,101,116,95,112,111,115,0,95,109,121,95,99,97,110,118,97,115,95,100,105,97,108,111,103,0,95,109,121,95,99,97,110,118,97,115,95,115,105,122,101,0,95,109,121,95,99,97,110,118,97,115,95, 100,101,108,116,97,0,95,109,121,95,99,97,110,118,97,115,95,112,111,115,0,95,109,121,95,99,97,110,118,97,115,95,118,105,115,95,115,105,122,101,0,95,109,121,95,99,97,110,118,97,115,95,99,111,108,111,114,0,95,109,121,95,99,97,110,118,97,115,95,115,101,110, 100,0,95,109,121,95,99,97,110,118,97,115,95,114,101,99,101,105,118,101,0,95,109,121,95,99,97,110,118,97,115,95,108,97,98,101,108,0,95,109,121,95,99,97,110,118,97,115,95,108,97,98,101,108,95,112,111,115,0,95,109,121,95,99,97,110,118,97,115,95,108,97,98, 101,108,95,102,111,110,116,0,95,109,121,95,99,97,110,118,97,115,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,109,121,95,99,97,110,118,97,115,95,102,102,0,95,103,95,109,121,99,97,110,118,97,115,95,115, 101,116,117,112,0,95,109,121,95,99,97,110,118,97,115,95,99,108,97,115,115,0,95,109,121,95,99,97,110,118,97,115,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,110,117,109,98,111,120, 46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,110,117,109,98,111,120,46,111,0,95,109, 121,95,110,117,109,98,111,120,95,116,105,99,107,95,114,101,115,101,116,0,95,109,121,95,110,117,109,98,111,120,95,116,105,99,107,95,119,97,105,116,0,95,109,121,95,110,117,109,98,111,120,95,99,108,105,112,0,95,109,121,95,110,117,109,98,111,120,95,99,97, 108,99,95,102,111,110,116,119,105,100,116,104,0,95,109,121,95,110,117,109,98,111,120,95,102,116,111,97,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,117,112,100,97,116,101,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,110, 101,119,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,109,111,118,101,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,101,114,97,115,101,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,99,111,110,102,105,103,0,95, 109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,105,111,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,115,101,108,101,99,116,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,0,95,109,121,95,110,117,109,98,111,120,95,103,101, 116,114,101,99,116,0,95,109,121,95,110,117,109,98,111,120,95,115,97,118,101,0,95,109,121,95,110,117,109,98,111,120,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,109,121,95,110,117,109,98,111,120,95,112,114,111,112,101,114,116,105,101,115,0,95,109, 121,95,110,117,109,98,111,120,95,98,97,110,103,0,95,109,121,95,110,117,109,98,111,120,95,100,105,97,108,111,103,0,95,109,121,95,110,117,109,98,111,120,95,109,111,116,105,111,110,0,95,109,121,95,110,117,109,98,111,120,95,99,108,105,99,107,0,95,109,121, 95,110,117,109,98,111,120,95,110,101,119,99,108,105,99,107,0,95,109,121,95,110,117,109,98,111,120,95,115,101,116,0,95,109,121,95,110,117,109,98,111,120,95,108,111,103,95,104,101,105,103,104,116,0,95,109,121,95,110,117,109,98,111,120,95,102,108,111,97, 116,0,95,109,121,95,110,117,109,98,111,120,95,115,105,122,101,0,95,109,121,95,110,117,109,98,111,120,95,100,101,108,116,97,0,95,109,121,95,110,117,109,98,111,120,95,112,111,115,0,95,109,121,95,110,117,109,98,111,120,95,114,97,110,103,101,0,95,109,121, 95,110,117,109,98,111,120,95,99,111,108,111,114,0,95,109,121,95,110,117,109,98,111,120,95,115,101,110,100,0,95,109,121,95,110,117,109,98,111,120,95,114,101,99,101,105,118,101,0,95,109,121,95,110,117,109,98,111,120,95,108,97,98,101,108,0,95,109,121,95, 110,117,109,98,111,120,95,108,97,98,101,108,95,112,111,115,0,95,109,121,95,110,117,109,98,111,120,95,108,97,98,101,108,95,102,111,110,116,0,95,109,121,95,110,117,109,98,111,120,95,108,111,103,0,95,109,121,95,110,117,109,98,111,120,95,108,105,110,0,95, 109,121,95,110,117,109,98,111,120,95,105,110,105,116,0,95,109,121,95,110,117,109,98,111,120,95,108,111,97,100,98,97,110,103,0,95,109,121,95,110,117,109,98,111,120,95,107,101,121,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107, 0,95,109,121,95,110,117,109,98,111,120,95,108,105,115,116,0,95,109,121,95,110,117,109,98,111,120,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,109,121,95,110,117,109,98,111,120,95,102,114,101,101,0,95, 103,95,110,117,109,98,111,120,95,115,101,116,117,112,0,95,109,121,95,110,117,109,98,111,120,95,99,108,97,115,115,0,95,109,121,95,110,117,109,98,111,120,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115, 114,99,47,103,95,114,101,97,100,119,114,105,116,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114, 99,47,103,95,114,101,97,100,119,114,105,116,101,46,111,0,95,99,97,110,118,97,115,95,115,99,97,110,98,105,110,98,117,102,0,95,99,97,110,118,97,115,95,114,101,97,100,101,114,114,111,114,0,95,103,108,105,115,116,95,114,101,97,100,97,116,111,109,115,0,95, 103,108,105,115,116,95,114,101,97,100,115,99,97,108,97,114,0,95,103,108,105,115,116,95,114,101,97,100,102,114,111,109,98,105,110,98,117,102,0,95,103,108,105,115,116,95,100,111,114,101,97,100,0,95,103,108,105,115,116,95,114,101,97,100,0,95,103,108,105, 115,116,95,109,101,114,103,101,102,105,108,101,0,95,99,97,110,118,97,115,95,100,97,116,97,112,114,111,112,101,114,116,105,101,115,0,95,99,97,110,118,97,115,95,100,111,97,100,100,116,101,109,112,108,97,116,101,0,95,99,97,110,118,97,115,95,119,114,105, 116,101,115,99,97,108,97,114,0,95,103,108,105,115,116,95,119,114,105,116,101,108,105,115,116,0,95,99,97,110,118,97,115,95,97,100,100,116,101,109,112,108,97,116,101,115,102,111,114,115,99,97,108,97,114,0,95,99,97,110,118,97,115,95,97,100,100,116,101,109, 112,108,97,116,101,115,102,111,114,108,105,115,116,0,95,103,108,105,115,116,95,119,114,105,116,101,116,111,98,105,110,98,117,102,0,95,103,108,105,115,116,95,119,114,105,116,101,0,95,99,97,110,118,97,115,95,115,97,118,101,116,111,0,95,99,97,110,118,97, 115,95,99,111,108,108,101,99,116,116,101,109,112,108,97,116,101,115,102,111,114,0,95,99,97,110,118,97,115,95,115,97,118,101,116,101,109,112,108,97,116,101,115,116,111,0,95,99,97,110,118,97,115,95,115,97,118,101,116,111,102,105,108,101,0,95,99,97,110, 118,97,115,95,109,101,110,117,115,97,118,101,97,115,0,95,99,97,110,118,97,115,95,109,101,110,117,115,97,118,101,0,95,103,95,114,101,97,100,119,114,105,116,101,95,115,101,116,117,112,0,95,100,101,99,108,97,114,101,95,99,108,97,115,115,0,112,117,114,101, 45,100,97,116,97,47,115,114,99,47,103,95,114,116,101,120,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47, 115,114,99,47,103,95,114,116,101,120,116,46,111,0,95,114,116,101,120,116,95,110,101,119,0,95,114,116,101,120,116,95,102,114,101,101,0,95,114,116,101,120,116,95,103,101,116,116,97,103,0,95,114,116,101,120,116,95,103,101,116,116,101,120,116,0,95,114,116, 101,120,116,95,103,101,116,115,101,108,116,101,120,116,0,95,114,116,101,120,116,95,103,101,116,116,121,112,101,0,95,102,105,114,115,116,111,110,101,0,95,108,97,115,116,111,110,101,0,95,114,116,101,120,116,95,115,101,110,100,105,116,117,112,0,95,95,95, 105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,114,116,101,120,116,95,114,101,116,101,120,116,0,95,103,108,105,115,116,95,102,105,110,100,114,116,101,120,116,0,95,114,116,101,120,116,95,119,105,100,116,104,0,95,114,116,101,120, 116,95,104,101,105,103,104,116,0,95,114,116,101,120,116,95,100,114,97,119,0,95,114,116,101,120,116,95,101,114,97,115,101,0,95,114,116,101,120,116,95,100,105,115,112,108,97,99,101,0,95,114,116,101,120,116,95,115,101,108,101,99,116,0,95,114,116,101,120, 116,95,97,99,116,105,118,97,116,101,0,95,114,116,101,120,116,95,107,101,121,0,95,114,116,101,120,116,95,109,111,117,115,101,0,95,114,116,101,120,116,95,101,110,116,101,114,101,100,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,115,99,97,108, 97,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,115,99,97,108,97,114,46,111,0,95, 119,111,114,100,95,105,110,105,116,0,95,119,111,114,100,95,114,101,115,116,111,114,101,0,95,119,111,114,100,95,102,114,101,101,0,95,115,99,97,108,97,114,95,110,101,119,0,95,103,108,105,115,116,95,115,99,97,108,97,114,0,95,115,99,97,108,97,114,95,103, 101,116,98,97,115,101,120,121,0,95,115,99,97,108,97,114,95,103,101,116,114,101,99,116,0,95,115,99,97,108,97,114,95,100,114,97,119,115,101,108,101,99,116,114,101,99,116,0,95,115,99,97,108,97,114,95,115,101,108,101,99,116,0,95,115,99,97,108,97,114,95,100, 105,115,112,108,97,99,101,0,95,115,99,97,108,97,114,95,97,99,116,105,118,97,116,101,0,95,115,99,97,108,97,114,95,100,101,108,101,116,101,0,95,115,99,97,108,97,114,95,118,105,115,0,95,115,99,97,108,97,114,95,100,111,114,101,100,114,97,119,0,95,115,99, 97,108,97,114,95,114,101,100,114,97,119,0,95,115,99,97,108,97,114,95,100,111,99,108,105,99,107,0,95,115,99,97,108,97,114,95,99,108,105,99,107,0,95,115,99,97,108,97,114,95,115,97,118,101,0,95,115,99,97,108,97,114,95,112,114,111,112,101,114,116,105,101, 115,0,95,115,99,97,108,97,114,95,102,114,101,101,0,95,103,95,115,99,97,108,97,114,95,115,101,116,117,112,0,95,115,99,97,108,97,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,115,99,97,108,97,114,95,99,108,97,115,115,0,112,117,114,101, 45,100,97,116,97,47,115,114,99,47,103,95,116,101,109,112,108,97,116,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97, 116,97,47,115,114,99,47,103,95,116,101,109,112,108,97,116,101,46,111,0,95,100,97,116,97,115,108,111,116,95,109,97,116,99,104,101,115,0,95,116,101,109,112,108,97,116,101,95,110,101,119,0,95,116,101,109,112,108,97,116,101,95,115,105,122,101,0,95,116,101, 109,112,108,97,116,101,95,102,105,110,100,95,102,105,101,108,100,0,95,116,101,109,112,108,97,116,101,95,103,101,116,102,108,111,97,116,0,95,116,101,109,112,108,97,116,101,95,115,101,116,102,108,111,97,116,0,95,116,101,109,112,108,97,116,101,95,103,101, 116,115,121,109,98,111,108,0,95,116,101,109,112,108,97,116,101,95,115,101,116,115,121,109,98,111,108,0,95,116,101,109,112,108,97,116,101,95,109,97,116,99,104,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,119,111,114,100,115,0,95,116, 101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,115,99,97,108,97,114,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,97,114,114,97,121,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,103,108,105,115,116,0, 95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,0,95,116,101,109,112,108,97,116,101,95,102,105,110,100,98,121,110,97,109,101,0,95,116,101,109,112,108,97,116,101,95,102,105,110,100,99,97,110,118,97,115,0,95,116,101,109,112,108,97,116,101, 95,110,111,116,105,102,121,0,95,116,101,109,112,108,97,116,101,95,110,111,116,105,102,121,102,111,114,115,99,97,108,97,114,0,95,116,101,109,112,108,97,116,101,95,117,115,101,116,101,109,112,108,97,116,101,0,95,116,101,109,112,108,97,116,101,95,102,114, 101,101,0,95,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,103,116,101,109,112,108,97,116,101,95,100,111,110,101,119,0,95,103,116,101,109,112,108,97,116,101,95,110,101,119,0,95,103,116,101,109,112,108,97,116,101,95,110,101,119,95,111,108, 100,0,95,103,116,101,109,112,108,97,116,101,95,103,101,116,0,95,103,116,101,109,112,108,97,116,101,95,102,114,101,101,0,95,103,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,102,108,111,97, 116,95,99,111,110,115,116,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,115,121,109,98,111,108,95,99,111,110,115,116,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,102,108,111,97,116,95,118,97,114,0,95,102,105,101,108,100,100,101,115, 99,95,115,101,116,102,108,111,97,116,97,114,103,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,115,121,109,98,111,108,97,114,103,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,97,114,114,97,121,97,114,103,0,95,102,105,101,108,100,100, 101,115,99,95,103,101,116,102,108,111,97,116,0,95,102,105,101,108,100,100,101,115,99,95,99,118,116,116,111,99,111,111,114,100,0,95,102,105,101,108,100,100,101,115,99,95,103,101,116,99,111,111,114,100,0,95,102,105,101,108,100,100,101,115,99,95,103,101, 116,115,121,109,98,111,108,0,95,102,105,101,108,100,100,101,115,99,95,99,118,116,102,114,111,109,99,111,111,114,100,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,99,111,111,114,100,0,95,99,117,114,118,101,95,110,101,119,0,95,99,117,114,118,101, 95,102,108,111,97,116,0,95,99,117,114,118,101,95,103,101,116,114,101,99,116,0,95,99,117,114,118,101,95,100,105,115,112,108,97,99,101,0,95,99,117,114,118,101,95,115,101,108,101,99,116,0,95,99,117,114,118,101,95,97,99,116,105,118,97,116,101,0,95,114,97, 110,103,101,99,111,108,111,114,0,95,110,117,109,98,101,114,116,111,99,111,108,111,114,0,95,99,117,114,118,101,95,118,105,115,0,95,99,117,114,118,101,95,109,111,116,105,111,110,0,95,99,117,114,118,101,95,99,108,105,99,107,0,95,99,117,114,118,101,95,102, 114,101,101,0,95,99,117,114,118,101,95,115,101,116,117,112,0,95,112,108,111,116,95,110,101,119,0,95,112,108,111,116,95,102,108,111,97,116,0,95,112,108,111,116,95,114,101,97,100,111,119,110,101,114,116,101,109,112,108,97,116,101,0,95,97,114,114,97,121, 95,103,101,116,102,105,101,108,100,115,0,95,112,108,111,116,95,103,101,116,114,101,99,116,0,95,112,108,111,116,95,100,105,115,112,108,97,99,101,0,95,112,108,111,116,95,115,101,108,101,99,116,0,95,112,108,111,116,95,97,99,116,105,118,97,116,101,0,95,112, 108,111,116,95,118,105,115,0,95,112,108,111,116,95,99,108,105,99,107,0,95,112,108,111,116,95,115,101,116,117,112,0,95,100,114,97,119,110,117,109,98,101,114,95,110,101,119,0,95,100,114,97,119,110,117,109,98,101,114,95,102,108,111,97,116,0,95,100,114,97, 119,110,117,109,98,101,114,95,115,112,114,105,110,116,102,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,100,114,97,119,110,117,109,98,101,114,95,103,101,116,114,101,99,116,0,95,100,114,97,119,110,117,109,98,101,114, 95,100,105,115,112,108,97,99,101,0,95,100,114,97,119,110,117,109,98,101,114,95,115,101,108,101,99,116,0,95,100,114,97,119,110,117,109,98,101,114,95,97,99,116,105,118,97,116,101,0,95,100,114,97,119,110,117,109,98,101,114,95,118,105,115,0,95,100,114,97, 119,110,117,109,98,101,114,95,109,111,116,105,111,110,0,95,100,114,97,119,110,117,109,98,101,114,95,107,101,121,0,95,100,114,97,119,110,117,109,98,101,114,95,99,108,105,99,107,0,95,100,114,97,119,110,117,109,98,101,114,95,102,114,101,101,0,95,100,114, 97,119,110,117,109,98,101,114,95,115,101,116,117,112,0,95,103,95,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,99,117,114,118,101,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,112,108,111,116,95,119,105,100,103,101,116,98, 101,104,97,118,105,111,114,0,95,100,114,97,119,110,117,109,98,101,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,119,97,114,110,101,100,46,54,51,56,52,0,95,103,116,101,109,112,108,97,116,101,95,99,108,97,115,115,0,95,116,101,109,112, 108,97,116,101,95,99,108,97,115,115,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,102,105,101,108,100,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,120,99,117,109,117,108,97,116,105,118,101,0,95,99,117,114,118,101,95,109,111,116,105,111, 110,95,120,98,97,115,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,120,112,101,114,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,121,99,117,109,117,108,97,116,105,118,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,121,98, 97,115,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,121,112,101,114,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,103,108,105,115,116,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,115,99,97,108,97,114,0,95,99,117,114,118, 101,95,109,111,116,105,111,110,95,97,114,114,97,121,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,119,112,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,116,101,109,112,108,97,116,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110, 95,103,112,111,105,110,116,101,114,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,121,99,117,109,117,108,97,116,105,118,101,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,103,108,105,115,116,0,95,100, 114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,115,99,97,108,97,114,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,97,114,114,97,121,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,119, 112,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,116,101,109,112,108,97,116,101,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,103,112,111,105,110,116,101,114,0,95,100,114,97,119,110,117,109,98,101, 114,95,109,111,116,105,111,110,95,115,121,109,98,111,108,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,102,105,114,115,116,107,101,121,0,95,99,117,114,118,101,95,99,108,97,115,115,0,95,100,114,97,119,110,117,109,98,101,114, 95,99,108,97,115,115,0,95,112,108,111,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,116,101,120,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108, 105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,116,101,120,116,46,111,0,95,103,108,105,115,116,95,116,101,120,116,0,95,99,97,110,118,97,115,95,111,98,106,116,101,120,116,0,95,99,97,110,118,97,115,95,104, 111,119,112,117,116,110,101,119,0,95,99,97,110,118,97,115,95,111,98,106,0,95,99,97,110,118,97,115,95,105,101,109,103,117,105,115,0,95,99,97,110,118,97,115,95,98,110,103,0,95,99,97,110,118,97,115,95,116,111,103,103,108,101,0,95,99,97,110,118,97,115,95, 118,115,108,105,100,101,114,0,95,99,97,110,118,97,115,95,104,115,108,105,100,101,114,0,95,99,97,110,118,97,115,95,104,100,105,97,108,0,95,99,97,110,118,97,115,95,118,100,105,97,108,0,95,99,97,110,118,97,115,95,104,114,97,100,105,111,0,95,99,97,110,118, 97,115,95,118,114,97,100,105,111,0,95,99,97,110,118,97,115,95,118,117,109,101,116,101,114,0,95,99,97,110,118,97,115,95,109,121,99,110,118,0,95,99,97,110,118,97,115,95,110,117,109,98,111,120,0,95,99,97,110,118,97,115,95,111,98,106,102,111,114,0,95,109, 101,115,115,114,101,115,112,111,110,100,101,114,95,98,97,110,103,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,102,108,111,97,116,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,115,121,109,98,111,108,0,95,109,101,115,115,114, 101,115,112,111,110,100,101,114,95,108,105,115,116,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,97,110,121,116,104,105,110,103,0,95,109,101,115,115,97,103,101,95,98,97,110,103,0,95,109,101,115,115,97,103,101,95,102,108,111,97,116,0,95, 109,101,115,115,97,103,101,95,115,121,109,98,111,108,0,95,109,101,115,115,97,103,101,95,108,105,115,116,0,95,109,101,115,115,97,103,101,95,115,101,116,0,95,109,101,115,115,97,103,101,95,97,100,100,50,0,95,109,101,115,115,97,103,101,95,97,100,100,0,95, 109,101,115,115,97,103,101,95,97,100,100,99,111,109,109,97,0,95,109,101,115,115,97,103,101,95,97,100,100,115,101,109,105,0,95,109,101,115,115,97,103,101,95,97,100,100,100,111,108,108,97,114,0,95,109,101,115,115,97,103,101,95,97,100,100,100,111,108,108, 115,121,109,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,109,101,115,115,97,103,101,95,99,108,105,99,107,0,95,109,101,115,115,97,103,101,95,116,105,99,107,0,95,109,101,115,115,97,103,101,95,102,114,101,101,0,95, 99,97,110,118,97,115,95,109,115,103,0,95,103,97,116,111,109,95,101,115,99,97,112,105,116,0,95,103,97,116,111,109,95,117,110,101,115,99,97,112,105,116,0,95,103,97,116,111,109,95,114,101,100,114,97,119,0,95,103,97,116,111,109,95,114,101,116,101,120,116, 0,95,103,97,116,111,109,95,115,101,116,0,95,103,97,116,111,109,95,98,97,110,103,0,95,103,97,116,111,109,95,102,108,111,97,116,0,95,103,97,116,111,109,95,99,108,105,112,102,108,111,97,116,0,95,103,97,116,111,109,95,115,121,109,98,111,108,0,95,103,97,116, 111,109,95,108,105,115,116,0,95,103,97,116,111,109,95,109,111,116,105,111,110,0,95,103,97,116,111,109,95,107,101,121,0,95,103,97,116,111,109,95,99,108,105,99,107,0,95,103,97,116,111,109,95,112,97,114,97,109,0,95,103,97,116,111,109,95,103,101,116,119, 104,101,114,101,108,97,98,101,108,0,95,103,97,116,111,109,95,100,105,115,112,108,97,99,101,0,95,103,97,116,111,109,95,118,105,115,0,95,99,97,110,118,97,115,95,97,116,111,109,0,95,99,97,110,118,97,115,95,102,108,111,97,116,97,116,111,109,0,95,99,97,110, 118,97,115,95,115,121,109,98,111,108,97,116,111,109,0,95,103,97,116,111,109,95,102,114,101,101,0,95,103,97,116,111,109,95,112,114,111,112,101,114,116,105,101,115,0,95,116,101,120,116,95,103,101,116,114,101,99,116,0,95,116,101,120,116,95,100,105,115,112, 108,97,99,101,0,95,116,101,120,116,95,115,101,108,101,99,116,0,95,116,101,120,116,95,97,99,116,105,118,97,116,101,0,95,116,101,120,116,95,100,101,108,101,116,101,0,95,116,101,120,116,95,118,105,115,0,95,116,101,120,116,95,99,108,105,99,107,0,95,116,101, 120,116,95,115,97,118,101,0,95,103,108,105,115,116,95,100,114,97,119,105,111,102,111,114,0,95,116,101,120,116,95,100,114,97,119,98,111,114,100,101,114,0,95,103,108,105,115,116,95,101,114,97,115,101,105,111,102,111,114,0,95,116,101,120,116,95,101,114, 97,115,101,98,111,114,100,101,114,0,95,116,101,120,116,95,115,101,116,116,111,0,95,116,101,120,116,95,97,110,121,116,104,105,110,103,0,95,103,95,116,101,120,116,95,115,101,116,117,112,0,95,116,101,120,116,95,119,105,100,103,101,116,98,101,104,97,118, 105,111,114,0,95,103,97,116,111,109,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,109,101,115,115,97,103,101,95,99,108,97,115,115,0,95,103,97,116,111,109,95,99,108,97,115,115,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95, 99,108,97,115,115,0,95,116,101,120,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,116,111,103,103,108,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103, 47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,116,111,103,103,108,101,46,111,0,95,116,111,103,103,108,101,95,100,114,97,119,95,117,112,100,97,116,101,0,95,116,111,103,103,108,101,95,100,114,97, 119,95,110,101,119,0,95,116,111,103,103,108,101,95,100,114,97,119,95,109,111,118,101,0,95,116,111,103,103,108,101,95,100,114,97,119,95,101,114,97,115,101,0,95,116,111,103,103,108,101,95,100,114,97,119,95,99,111,110,102,105,103,0,95,116,111,103,103,108, 101,95,100,114,97,119,95,105,111,0,95,116,111,103,103,108,101,95,100,114,97,119,95,115,101,108,101,99,116,0,95,116,111,103,103,108,101,95,100,114,97,119,0,95,116,111,103,103,108,101,95,103,101,116,114,101,99,116,0,95,116,111,103,103,108,101,95,115,97, 118,101,0,95,116,111,103,103,108,101,95,112,114,111,112,101,114,116,105,101,115,0,95,116,111,103,103,108,101,95,98,97,110,103,0,95,116,111,103,103,108,101,95,100,105,97,108,111,103,0,95,116,111,103,103,108,101,95,99,108,105,99,107,0,95,116,111,103,103, 108,101,95,110,101,119,99,108,105,99,107,0,95,116,111,103,103,108,101,95,115,101,116,0,95,116,111,103,103,108,101,95,102,108,111,97,116,0,95,116,111,103,103,108,101,95,102,111,117,116,0,95,116,111,103,103,108,101,95,108,111,97,100,98,97,110,103,0,95, 116,111,103,103,108,101,95,115,105,122,101,0,95,116,111,103,103,108,101,95,100,101,108,116,97,0,95,116,111,103,103,108,101,95,112,111,115,0,95,116,111,103,103,108,101,95,99,111,108,111,114,0,95,116,111,103,103,108,101,95,115,101,110,100,0,95,116,111, 103,103,108,101,95,114,101,99,101,105,118,101,0,95,116,111,103,103,108,101,95,108,97,98,101,108,0,95,116,111,103,103,108,101,95,108,97,98,101,108,95,102,111,110,116,0,95,116,111,103,103,108,101,95,108,97,98,101,108,95,112,111,115,0,95,116,111,103,103, 108,101,95,105,110,105,116,0,95,116,111,103,103,108,101,95,110,111,110,122,101,114,111,0,95,116,111,103,103,108,101,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,116,111,103,103,108,101,95,102,102,0,95, 103,95,116,111,103,103,108,101,95,115,101,116,117,112,0,95,116,111,103,103,108,101,95,99,108,97,115,115,0,95,116,111,103,103,108,101,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,116, 114,97,118,101,114,115,97,108,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,116,114,97, 118,101,114,115,97,108,46,111,0,95,103,115,116,117,98,95,110,101,119,0,95,103,115,116,117,98,95,100,105,115,0,95,103,115,116,117,98,95,99,117,116,111,102,102,0,95,103,112,111,105,110,116,101,114,95,99,104,101,99,107,0,95,103,112,111,105,110,116,101,114, 95,103,101,116,116,101,109,112,108,97,116,101,115,121,109,0,95,103,112,111,105,110,116,101,114,95,99,111,112,121,0,95,103,112,111,105,110,116,101,114,95,117,110,115,101,116,0,95,103,112,111,105,110,116,101,114,95,115,101,116,103,108,105,115,116,0,95, 103,112,111,105,110,116,101,114,95,115,101,116,97,114,114,97,121,0,95,103,112,111,105,110,116,101,114,95,105,110,105,116,0,95,112,116,114,111,98,106,95,110,101,119,0,95,112,116,114,111,98,106,95,116,114,97,118,101,114,115,101,0,95,112,116,114,111,98, 106,95,118,110,101,120,116,0,95,112,116,114,111,98,106,95,110,101,120,116,0,95,112,116,114,111,98,106,95,115,101,110,100,119,105,110,100,111,119,0,95,112,116,114,111,98,106,95,98,97,110,103,0,95,112,116,114,111,98,106,95,112,111,105,110,116,101,114,0, 95,112,116,114,111,98,106,95,114,101,119,105,110,100,0,95,112,116,114,111,98,106,95,102,114,101,101,0,95,112,116,114,111,98,106,95,115,101,116,117,112,0,95,103,101,116,95,110,101,119,0,95,103,101,116,95,112,111,105,110,116,101,114,0,95,103,101,116,95, 102,114,101,101,0,95,103,101,116,95,115,101,116,117,112,0,95,115,101,116,95,110,101,119,0,95,115,101,116,95,98,97,110,103,0,95,115,101,116,95,102,108,111,97,116,0,95,115,101,116,95,115,121,109,98,111,108,0,95,115,101,116,95,102,114,101,101,0,95,115,101, 116,95,115,101,116,117,112,0,95,101,108,101,109,95,110,101,119,0,95,101,108,101,109,95,102,108,111,97,116,0,95,101,108,101,109,95,102,114,101,101,0,95,101,108,101,109,95,115,101,116,117,112,0,95,103,101,116,115,105,122,101,95,110,101,119,0,95,103,101, 116,115,105,122,101,95,112,111,105,110,116,101,114,0,95,103,101,116,115,105,122,101,95,115,101,116,117,112,0,95,115,101,116,115,105,122,101,95,110,101,119,0,95,115,101,116,115,105,122,101,95,102,108,111,97,116,0,95,115,101,116,115,105,122,101,95,102, 114,101,101,0,95,115,101,116,115,105,122,101,95,115,101,116,117,112,0,95,97,112,112,101,110,100,95,110,101,119,0,95,97,112,112,101,110,100,95,102,108,111,97,116,0,95,97,112,112,101,110,100,95,102,114,101,101,0,95,97,112,112,101,110,100,95,115,101,116, 117,112,0,95,115,117,98,108,105,115,116,95,110,101,119,0,95,115,117,98,108,105,115,116,95,112,111,105,110,116,101,114,0,95,115,117,98,108,105,115,116,95,102,114,101,101,0,95,115,117,98,108,105,115,116,95,115,101,116,117,112,0,95,103,95,116,114,97,118, 101,114,115,97,108,95,115,101,116,117,112,0,95,112,116,114,111,98,106,95,99,108,97,115,115,0,95,103,101,116,95,99,108,97,115,115,0,95,115,101,116,95,99,108,97,115,115,0,95,101,108,101,109,95,99,108,97,115,115,0,95,103,101,116,115,105,122,101,95,99,108, 97,115,115,0,95,115,101,116,115,105,122,101,95,99,108,97,115,115,0,95,97,112,112,101,110,100,95,99,108,97,115,115,0,95,115,117,98,108,105,115,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,100,105,97,108,46,99, 0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,100,105,97,108,46,111,0,95,118,114,97,100, 105,111,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,114,97,100,105,111,95,100,114,97,119,95,110,101,119,0,95,118,114,97,100,105,111,95,100,114,97,119,95,109,111,118,101,0,95,118,114,97,100,105,111,95,100,114,97,119,95,101,114,97,115,101,0,95, 118,114,97,100,105,111,95,100,114,97,119,95,99,111,110,102,105,103,0,95,118,114,97,100,105,111,95,100,114,97,119,95,105,111,0,95,118,114,97,100,105,111,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,114,97,100,105,111,95,100,114,97,119,0,95,118, 114,97,100,105,111,95,103,101,116,114,101,99,116,0,95,118,114,97,100,105,111,95,115,97,118,101,0,95,118,114,97,100,105,111,95,112,114,111,112,101,114,116,105,101,115,0,95,118,114,97,100,105,111,95,100,105,97,108,111,103,0,95,118,114,97,100,105,111,95, 115,101,116,0,95,118,114,97,100,105,111,95,98,97,110,103,0,95,118,114,97,100,105,111,95,102,111,117,116,0,95,118,114,97,100,105,111,95,102,108,111,97,116,0,95,118,114,97,100,105,111,95,99,108,105,99,107,0,95,118,114,97,100,105,111,95,110,101,119,99,108, 105,99,107,0,95,118,114,97,100,105,111,95,108,111,97,100,98,97,110,103,0,95,118,114,97,100,105,111,95,110,117,109,98,101,114,0,95,118,114,97,100,105,111,95,115,105,122,101,0,95,118,114,97,100,105,111,95,100,101,108,116,97,0,95,118,114,97,100,105,111, 95,112,111,115,0,95,118,114,97,100,105,111,95,99,111,108,111,114,0,95,118,114,97,100,105,111,95,115,101,110,100,0,95,118,114,97,100,105,111,95,114,101,99,101,105,118,101,0,95,118,114,97,100,105,111,95,108,97,98,101,108,0,95,118,114,97,100,105,111,95, 108,97,98,101,108,95,112,111,115,0,95,118,114,97,100,105,111,95,108,97,98,101,108,95,102,111,110,116,0,95,118,114,97,100,105,111,95,105,110,105,116,0,95,118,114,97,100,105,111,95,100,111,117,98,108,101,95,99,104,97,110,103,101,0,95,118,114,97,100,105, 111,95,115,105,110,103,108,101,95,99,104,97,110,103,101,0,95,118,114,97,100,105,111,95,100,111,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,118,114,97,100,105,111,95,110,101,119,0,95,118,100,105,97,108,95, 110,101,119,0,95,118,114,97,100,105,111,95,102,102,0,95,103,95,118,114,97,100,105,111,95,115,101,116,117,112,0,95,118,114,97,100,105,111,95,99,108,97,115,115,0,95,118,114,97,100,105,111,95,111,108,100,95,99,108,97,115,115,0,95,118,114,97,100,105,111, 95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,115,108,105,100,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103, 47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,115,108,105,100,101,114,46,111,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,115,108,105,100,101,114,95, 100,114,97,119,95,110,101,119,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,109,111,118,101,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,101,114,97,115,101,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,99,111,110,102,105,103, 0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,105,111,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,115,108,105,100,101,114,95,100,114,97,119,0,95,118,115,108,105,100,101,114,95,103,101,116,114,101,99,116, 0,95,118,115,108,105,100,101,114,95,115,97,118,101,0,95,118,115,108,105,100,101,114,95,99,104,101,99,107,95,104,101,105,103,104,116,0,95,118,115,108,105,100,101,114,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,118,115,108,105,100,101,114,95,112, 114,111,112,101,114,116,105,101,115,0,95,118,115,108,105,100,101,114,95,98,97,110,103,0,95,118,115,108,105,100,101,114,95,100,105,97,108,111,103,0,95,118,115,108,105,100,101,114,95,109,111,116,105,111,110,0,95,118,115,108,105,100,101,114,95,99,108,105, 99,107,0,95,118,115,108,105,100,101,114,95,110,101,119,99,108,105,99,107,0,95,118,115,108,105,100,101,114,95,115,101,116,0,95,118,115,108,105,100,101,114,95,102,108,111,97,116,0,95,118,115,108,105,100,101,114,95,115,105,122,101,0,95,118,115,108,105,100, 101,114,95,100,101,108,116,97,0,95,118,115,108,105,100,101,114,95,112,111,115,0,95,118,115,108,105,100,101,114,95,114,97,110,103,101,0,95,118,115,108,105,100,101,114,95,99,111,108,111,114,0,95,118,115,108,105,100,101,114,95,115,101,110,100,0,95,118,115, 108,105,100,101,114,95,114,101,99,101,105,118,101,0,95,118,115,108,105,100,101,114,95,108,97,98,101,108,0,95,118,115,108,105,100,101,114,95,108,97,98,101,108,95,112,111,115,0,95,118,115,108,105,100,101,114,95,108,97,98,101,108,95,102,111,110,116,0,95, 118,115,108,105,100,101,114,95,108,111,103,0,95,118,115,108,105,100,101,114,95,108,105,110,0,95,118,115,108,105,100,101,114,95,105,110,105,116,0,95,118,115,108,105,100,101,114,95,115,116,101,97,100,121,0,95,118,115,108,105,100,101,114,95,108,111,97,100, 98,97,110,103,0,95,118,115,108,105,100,101,114,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,118,115,108,105,100,101,114,95,102,114,101,101,0,95,103,95,118,115,108,105,100,101,114,95,115,101,116,117,112, 0,95,118,115,108,105,100,101,114,95,99,108,97,115,115,0,95,118,115,108,105,100,101,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,117,109,101,116,101,114,46,99,0,47,85,115,101, 114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,117,109,101,116,101,114,46,111,0,95,118,117,95,117,112,100, 97,116,101,95,114,109,115,0,95,118,117,95,117,112,100,97,116,101,95,112,101,97,107,0,95,118,117,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,117,95,100,114,97,119,95,110,101,119,0,95,118,117,95,100,114,97,119,95,109,111,118,101,0,95,118,117,95, 100,114,97,119,95,101,114,97,115,101,0,95,118,117,95,100,114,97,119,95,99,111,110,102,105,103,0,95,118,117,95,100,114,97,119,95,105,111,0,95,118,117,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,117,95,100,114,97,119,0,95,118,117,95,103,101,116, 114,101,99,116,0,95,118,117,95,115,97,118,101,0,95,118,117,95,99,104,101,99,107,95,104,101,105,103,104,116,0,95,118,117,95,115,99,97,108,101,0,95,118,117,95,112,114,111,112,101,114,116,105,101,115,0,95,118,117,95,100,105,97,108,111,103,0,95,118,117,95, 115,105,122,101,0,95,118,117,95,100,101,108,116,97,0,95,118,117,95,112,111,115,0,95,118,117,95,99,111,108,111,114,0,95,118,117,95,114,101,99,101,105,118,101,0,95,118,117,95,108,97,98,101,108,0,95,118,117,95,108,97,98,101,108,95,112,111,115,0,95,118,117, 95,108,97,98,101,108,95,102,111,110,116,0,95,118,117,95,102,108,111,97,116,0,95,118,117,95,102,116,49,0,95,118,117,95,98,97,110,103,0,95,118,117,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,118,117,95, 102,114,101,101,0,95,103,95,118,117,109,101,116,101,114,95,115,101,116,117,112,0,95,118,117,95,99,108,97,115,115,0,95,118,117,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,97,116,111, 109,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,97,116,111,109,46,111,0,95,97,116,111, 109,95,103,101,116,102,108,111,97,116,0,95,97,116,111,109,95,103,101,116,105,110,116,0,95,97,116,111,109,95,103,101,116,115,121,109,98,111,108,0,95,97,116,111,109,95,103,101,110,115,121,109,0,95,97,116,111,109,95,103,101,116,102,108,111,97,116,97,114, 103,0,95,97,116,111,109,95,103,101,116,105,110,116,97,114,103,0,95,97,116,111,109,95,103,101,116,115,121,109,98,111,108,97,114,103,0,95,97,116,111,109,95,115,116,114,105,110,103,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107, 0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,98,105,110,98,117,102,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109, 112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,98,105,110,98,117,102,46,111,0,95,98,105,110,98,117,102,95,110,101,119,0,95,98,105,110,98,117,102,95,102,114,101,101,0,95,98,105,110, 98,117,102,95,100,117,112,108,105,99,97,116,101,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,98,105,110,98,117,102,95,99,108,101,97,114,0,95,98,105,110,98,117,102,95,116,101,120,116,0,95,98,105,110,98,117,102,95,103, 101,116,116,101,120,116,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,98,105,110,98,117,102,95,97,100,100,0,95,98,105,110,98,117,102,95,97,100,100,118,0,95,98,105,110,98,117,102,95,97,100,100,98,105,110,98,117,102,0, 95,98,105,110,98,117,102,95,97,100,100,115,101,109,105,0,95,98,105,110,98,117,102,95,114,101,115,116,111,114,101,0,95,98,105,110,98,117,102,95,112,114,105,110,116,0,95,98,105,110,98,117,102,95,103,101,116,110,97,116,111,109,0,95,98,105,110,98,117,102, 95,103,101,116,118,101,99,0,95,98,105,110,98,117,102,95,101,120,112,97,110,100,100,111,108,108,115,121,109,0,95,98,105,110,98,117,102,95,114,101,97,108,105,122,101,100,111,108,108,115,121,109,0,95,98,105,110,98,117,102,95,101,118,97,108,0,95,98,105,110, 98,117,102,95,100,111,111,112,101,110,0,95,98,105,110,98,117,102,95,100,111,102,111,112,101,110,0,95,98,105,110,98,117,102,95,114,101,97,100,0,95,98,105,110,98,117,102,95,114,101,97,100,95,118,105,97,95,99,97,110,118,97,115,0,95,98,105,110,98,117,102, 95,114,101,97,100,95,118,105,97,95,112,97,116,104,0,95,98,105,110,98,117,102,95,119,114,105,116,101,0,95,98,105,110,98,117,102,95,99,111,110,118,101,114,116,0,95,98,105,110,98,117,102,95,109,97,116,99,104,0,95,98,105,110,98,117,102,95,101,118,97,108, 102,105,108,101,0,95,103,108,111,98,95,101,118,97,108,102,105,108,101,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,99,108,97,115,115,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111, 103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,99,108,97,115,115,46,111,0,95,112,100,95,100,101,102,97,117,108,116,97,110,121,116,104,105,110,103,0,95,112,100,95,100,101,102,97,117,108,116, 98,97,110,103,0,95,112,100,95,100,101,102,97,117,108,116,112,111,105,110,116,101,114,0,95,112,100,95,100,101,102,97,117,108,116,102,108,111,97,116,0,95,112,100,95,100,101,102,97,117,108,116,115,121,109,98,111,108,0,95,112,100,95,100,101,102,97,117,108, 116,108,105,115,116,0,95,99,108,97,115,115,95,110,101,119,0,95,99,108,97,115,115,95,97,100,100,99,114,101,97,116,111,114,0,95,99,108,97,115,115,95,97,100,100,109,101,116,104,111,100,0,95,99,108,97,115,115,95,97,100,100,98,97,110,103,0,95,99,108,97,115, 115,95,97,100,100,112,111,105,110,116,101,114,0,95,99,108,97,115,115,95,100,111,97,100,100,102,108,111,97,116,0,95,99,108,97,115,115,95,97,100,100,115,121,109,98,111,108,0,95,99,108,97,115,115,95,97,100,100,108,105,115,116,0,95,99,108,97,115,115,95,97, 100,100,97,110,121,116,104,105,110,103,0,95,99,108,97,115,115,95,115,101,116,119,105,100,103,101,116,0,95,99,108,97,115,115,95,115,101,116,112,97,114,101,110,116,119,105,100,103,101,116,0,95,99,108,97,115,115,95,103,101,116,110,97,109,101,0,95,99,108, 97,115,115,95,103,101,116,104,101,108,112,110,97,109,101,0,95,99,108,97,115,115,95,115,101,116,104,101,108,112,115,121,109,98,111,108,0,95,112,100,95,103,101,116,112,97,114,101,110,116,119,105,100,103,101,116,0,95,99,108,97,115,115,95,115,101,116,100, 114,97,119,99,111,109,109,97,110,100,0,95,99,108,97,115,115,95,105,115,100,114,97,119,99,111,109,109,97,110,100,0,95,112,100,95,102,108,111,97,116,102,111,114,115,105,103,110,97,108,0,95,99,108,97,115,115,95,100,111,109,97,105,110,115,105,103,110,97, 108,105,110,0,95,99,108,97,115,115,95,115,101,116,95,101,120,116,101,114,110,95,100,105,114,0,95,99,108,97,115,115,95,103,101,116,104,101,108,112,100,105,114,0,95,99,108,97,115,115,95,110,111,115,97,118,101,102,110,0,95,99,108,97,115,115,95,115,101,116, 115,97,118,101,102,110,0,95,99,108,97,115,115,95,103,101,116,115,97,118,101,102,110,0,95,99,108,97,115,115,95,115,101,116,112,114,111,112,101,114,116,105,101,115,102,110,0,95,99,108,97,115,115,95,103,101,116,112,114,111,112,101,114,116,105,101,115,102, 110,0,95,100,111,103,101,110,115,121,109,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,103,101,110,115,121,109,0,95,97,100,100,102,105,108,101,101,120,116,101,110,116,0,95,110,101,119,95,97,110,121,116,104,105,110,103, 0,95,109,101,115,115,95,105,110,105,116,0,95,112,100,95,110,101,119,101,115,116,0,95,112,100,95,116,121,112,101,100,109,101,115,115,0,95,112,100,95,118,109,101,115,115,0,95,112,100,95,102,111,114,119,97,114,100,109,101,115,115,0,95,110,117,108,108,102, 110,0,95,103,101,116,102,110,0,95,122,103,101,116,102,110,0,95,99,108,97,115,115,95,101,120,116,101,114,110,95,100,105,114,0,95,115,95,112,111,105,110,116,101,114,0,95,115,95,102,108,111,97,116,0,95,115,95,115,121,109,98,111,108,0,95,115,95,98,97,110, 103,0,95,115,95,108,105,115,116,0,95,115,95,97,110,121,116,104,105,110,103,0,95,115,95,115,105,103,110,97,108,0,95,115,95,95,78,0,95,115,95,95,88,0,95,115,95,120,0,95,115,95,121,0,95,115,95,0,95,115,121,109,108,105,115,116,0,95,99,108,97,115,115,95,108, 111,97,100,115,121,109,0,95,115,121,109,104,97,115,104,0,95,116,114,121,105,110,103,97,108,114,101,97,100,121,0,95,110,101,119,101,115,116,0,95,112,100,95,99,97,110,118,97,115,109,97,107,101,114,0,95,112,100,95,111,98,106,101,99,116,109,97,107,101,114, 0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,99,111,110,102,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100, 97,116,97,47,115,114,99,47,109,95,99,111,110,102,46,111,0,95,99,111,110,102,95,105,110,105,116,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,103,108,111,98,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106, 47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,103,108,111,98,46,111,0,95,103,108,111,98,95,118,101,114,115,105,111,110,0,95,103,108,111,98,95,112,101,114,102,0,95,109,97, 120,95,100,101,102,97,117,108,116,0,95,103,108,111,98,95,105,110,105,116,0,95,115,121,115,95,103,101,116,118,101,114,115,105,111,110,0,95,109,97,120,99,108,97,115,115,0,95,103,108,111,98,95,112,100,111,98,106,101,99,116,0,95,115,121,115,95,112,101,114, 102,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,109,101,109,111,114,121,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114, 101,45,100,97,116,97,47,115,114,99,47,109,95,109,101,109,111,114,121,46,111,0,95,103,101,116,98,121,116,101,115,0,95,103,101,116,122,98,121,116,101,115,0,95,99,111,112,121,98,121,116,101,115,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121, 95,99,104,107,0,95,114,101,115,105,122,101,98,121,116,101,115,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,102,114,101,101,98,121,116,101,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,111,98,106,46, 99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,111,98,106,46,111,0,95,105,110,108,101,116, 95,110,101,119,0,95,115,105,103,110,97,108,105,110,108,101,116,95,110,101,119,0,95,105,110,108,101,116,95,119,114,111,110,103,0,95,105,110,108,101,116,95,98,97,110,103,0,95,105,110,108,101,116,95,112,111,105,110,116,101,114,0,95,105,110,108,101,116,95, 102,108,111,97,116,0,95,105,110,108,101,116,95,115,121,109,98,111,108,0,95,105,110,108,101,116,95,108,105,115,116,0,95,105,110,108,101,116,95,97,110,121,116,104,105,110,103,0,95,105,110,108,101,116,95,102,114,101,101,0,95,112,111,105,110,116,101,114, 105,110,108,101,116,95,112,111,105,110,116,101,114,0,95,112,111,105,110,116,101,114,105,110,108,101,116,95,110,101,119,0,95,102,108,111,97,116,105,110,108,101,116,95,102,108,111,97,116,0,95,102,108,111,97,116,105,110,108,101,116,95,110,101,119,0,95,115, 121,109,98,111,108,105,110,108,101,116,95,115,121,109,98,111,108,0,95,115,121,109,98,111,108,105,110,108,101,116,95,110,101,119,0,95,111,98,106,95,108,105,115,116,0,95,111,98,106,95,105,110,105,116,0,95,111,117,116,108,101,116,95,115,101,116,115,116, 97,99,107,108,105,109,0,95,115,99,104,101,100,95,103,101,116,101,118,101,110,116,110,111,0,95,111,117,116,108,101,116,95,110,101,119,0,95,111,117,116,108,101,116,95,115,116,97,99,107,101,114,114,111,114,0,95,111,117,116,108,101,116,95,98,97,110,103,0, 95,111,117,116,108,101,116,95,112,111,105,110,116,101,114,0,95,111,117,116,108,101,116,95,102,108,111,97,116,0,95,111,117,116,108,101,116,95,115,121,109,98,111,108,0,95,111,117,116,108,101,116,95,108,105,115,116,0,95,111,117,116,108,101,116,95,97,110, 121,116,104,105,110,103,0,95,111,117,116,108,101,116,95,103,101,116,115,121,109,98,111,108,0,95,111,117,116,108,101,116,95,102,114,101,101,0,95,111,98,106,95,99,111,110,110,101,99,116,0,95,111,98,106,95,100,105,115,99,111,110,110,101,99,116,0,95,111, 98,106,95,110,111,117,116,108,101,116,115,0,95,111,98,106,95,110,105,110,108,101,116,115,0,95,111,98,106,95,115,116,97,114,116,116,114,97,118,101,114,115,101,111,117,116,108,101,116,0,95,111,98,106,95,110,101,120,116,116,114,97,118,101,114,115,101,111, 117,116,108,101,116,0,95,112,100,95,99,104,101,99,107,111,98,106,101,99,116,0,95,111,98,106,95,109,111,118,101,105,110,108,101,116,102,105,114,115,116,0,95,111,98,106,95,109,111,118,101,111,117,116,108,101,116,102,105,114,115,116,0,95,111,98,106,95,110, 115,105,103,105,110,108,101,116,115,0,95,111,98,106,95,115,105,103,105,110,108,101,116,105,110,100,101,120,0,95,111,98,106,95,105,115,115,105,103,110,97,108,105,110,108,101,116,0,95,111,98,106,95,110,115,105,103,111,117,116,108,101,116,115,0,95,111,98, 106,95,115,105,103,111,117,116,108,101,116,105,110,100,101,120,0,95,111,98,106,95,105,115,115,105,103,110,97,108,111,117,116,108,101,116,0,95,111,98,106,95,102,105,110,100,115,105,103,110,97,108,115,99,97,108,97,114,0,95,105,110,108,101,116,95,103,101, 116,115,105,103,110,97,108,105,110,100,101,120,0,95,111,117,116,108,101,116,95,103,101,116,115,105,103,110,97,108,105,110,100,101,120,0,95,115,116,97,99,107,99,111,117,110,116,0,95,105,110,108,101,116,95,99,108,97,115,115,0,95,112,111,105,110,116,101, 114,105,110,108,101,116,95,99,108,97,115,115,0,95,102,108,111,97,116,105,110,108,101,116,95,99,108,97,115,115,0,95,115,121,109,98,111,108,105,110,108,101,116,95,99,108,97,115,115,0,95,111,117,116,108,101,116,95,101,118,101,110,116,110,111,0,112,117,114, 101,45,100,97,116,97,47,115,114,99,47,109,95,112,100,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114, 99,47,109,95,112,100,46,111,0,95,112,100,95,110,101,119,0,95,112,100,95,102,114,101,101,0,95,103,111,98,106,95,115,97,118,101,0,95,98,105,110,100,108,105,115,116,95,98,97,110,103,0,95,98,105,110,100,108,105,115,116,95,102,108,111,97,116,0,95,98,105,110, 100,108,105,115,116,95,115,121,109,98,111,108,0,95,98,105,110,100,108,105,115,116,95,112,111,105,110,116,101,114,0,95,98,105,110,100,108,105,115,116,95,108,105,115,116,0,95,98,105,110,100,108,105,115,116,95,97,110,121,116,104,105,110,103,0,95,109,95, 112,100,95,115,101,116,117,112,0,95,112,100,95,98,105,110,100,0,95,112,100,95,117,110,98,105,110,100,0,95,122,122,0,95,112,100,95,102,105,110,100,98,121,99,108,97,115,115,0,95,112,100,95,115,101,116,108,111,97,100,105,110,103,97,98,115,116,114,97,99, 116,105,111,110,0,95,112,100,95,112,117,115,104,115,121,109,0,95,112,100,95,112,111,112,115,121,109,0,95,112,100,95,100,111,108,111,97,100,98,97,110,103,0,95,112,100,95,98,97,110,103,0,95,112,100,95,102,108,111,97,116,0,95,112,100,95,112,111,105,110, 116,101,114,0,95,112,100,95,115,121,109,98,111,108,0,95,112,100,95,108,105,115,116,0,95,112,100,95,105,110,105,116,0,95,103,115,116,97,99,107,95,104,101,97,100,0,95,98,105,110,100,108,105,115,116,95,99,108,97,115,115,0,95,108,97,115,116,112,111,112,112, 101,100,0,95,112,100,95,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,115,99,104,101,100,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106, 47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,115,99,104,101,100,46,111,0,95,115,99,104,101,100,95,114,101,111,112,101,110,109,101,112,108,101,97,115,101,0,95,99,108,111, 99,107,95,110,101,119,0,95,99,108,111,99,107,95,117,110,115,101,116,0,95,99,108,111,99,107,95,115,101,116,0,95,99,108,111,99,107,95,100,101,108,97,121,0,95,99,108,111,99,107,95,103,101,116,108,111,103,105,99,97,108,116,105,109,101,0,95,99,108,111,99, 107,95,103,101,116,115,121,115,116,105,109,101,0,95,99,108,111,99,107,95,103,101,116,116,105,109,101,115,105,110,99,101,0,95,99,108,111,99,107,95,103,101,116,115,121,115,116,105,109,101,97,102,116,101,114,0,95,99,108,111,99,107,95,102,114,101,101,0,95, 115,121,115,95,99,108,101,97,114,104,105,115,116,0,95,115,121,115,95,112,114,105,110,116,104,105,115,116,0,95,115,121,115,95,97,100,100,104,105,115,116,0,95,103,108,111,98,95,97,117,100,105,111,115,116,97,116,117,115,0,95,115,121,115,95,108,111,103,95, 101,114,114,111,114,0,95,115,99,104,101,100,95,112,111,108,108,102,111,114,109,101,116,101,114,115,0,95,103,108,111,98,95,109,101,116,101,114,115,0,95,115,99,104,101,100,95,115,101,116,95,117,115,105,110,103,95,97,117,100,105,111,0,95,115,99,104,101, 100,95,116,105,99,107,0,95,109,95,112,111,108,108,105,110,103,115,99,104,101,100,117,108,101,114,0,95,115,99,104,101,100,95,97,117,100,105,111,95,99,97,108,108,98,97,99,107,102,110,0,95,109,95,99,97,108,108,98,97,99,107,115,99,104,101,100,117,108,101, 114,0,95,109,95,109,97,105,110,108,111,111,112,0,95,109,95,98,97,116,99,104,109,97,105,110,0,95,115,121,115,95,108,111,99,107,0,95,115,121,115,95,117,110,108,111,99,107,0,95,115,121,115,95,116,114,121,108,111,99,107,0,95,115,121,115,95,101,120,105,116, 0,95,111,115,115,95,101,114,114,111,114,110,97,109,101,115,0,95,115,121,115,95,116,105,109,101,95,112,101,114,95,109,115,101,99,0,95,115,121,115,95,115,99,104,101,100,98,108,111,99,107,115,105,122,101,0,95,115,121,115,95,98,105,110,0,95,115,99,104,101, 100,95,117,115,101,97,117,100,105,111,0,95,115,121,115,95,109,117,116,101,120,0,95,111,115,115,95,114,101,115,121,110,99,112,104,97,115,101,0,95,111,115,115,95,110,114,101,115,121,110,99,0,95,115,99,104,101,100,95,110,101,120,116,112,105,110,103,116, 105,109,101,46,52,53,48,54,0,95,115,99,104,101,100,95,110,101,120,116,109,101,116,101,114,112,111,108,108,116,105,109,101,46,52,53,48,53,0,95,105,100,108,101,116,105,109,101,46,52,54,50,57,0,95,115,121,115,95,113,117,105,116,0,95,115,121,115,95,104,105, 115,116,111,103,114,97,109,0,95,115,121,115,95,104,105,115,116,116,105,109,101,0,95,115,99,104,101,100,95,100,105,100,100,115,112,0,95,115,99,104,101,100,95,100,105,100,112,111,108,108,0,95,115,99,104,101,100,95,100,105,100,110,111,116,104,105,110,103, 0,95,115,121,115,95,104,105,115,116,112,104,97,115,101,0,95,111,115,115,95,114,101,115,121,110,99,0,95,115,99,104,101,100,95,100,105,111,114,101,100,0,95,115,99,104,101,100,95,100,105,111,114,101,100,116,105,109,101,0,95,115,99,104,101,100,95,109,101, 116,101,114,115,111,110,0,95,115,99,104,101,100,95,108,97,115,116,105,110,99,108,105,112,0,95,115,99,104,101,100,95,108,97,115,116,111,117,116,99,108,105,112,0,95,115,99,104,101,100,95,108,97,115,116,105,110,100,98,0,95,115,99,104,101,100,95,108,97,115, 116,111,117,116,100,98,0,95,115,99,104,101,100,95,114,101,102,101,114,101,110,99,101,114,101,97,108,116,105,109,101,0,95,115,99,104,101,100,95,114,101,102,101,114,101,110,99,101,108,111,103,105,99,97,108,116,105,109,101,0,95,99,108,111,99,107,95,115, 101,116,108,105,115,116,0,95,115,121,115,95,105,100,108,101,104,111,111,107,0,95,115,121,115,95,115,108,101,101,112,103,114,97,105,110,0,95,115,121,115,95,116,105,109,101,0,95,115,121,115,95,116,105,109,101,95,112,101,114,95,100,115,112,95,116,105,99, 107,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,97,117,100,105,111,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101, 45,100,97,116,97,47,115,114,99,47,115,95,97,117,100,105,111,46,111,0,95,97,117,100,105,111,95,105,115,111,112,101,110,0,95,115,121,115,95,103,101,116,95,97,117,100,105,111,95,112,97,114,97,109,115,0,95,115,121,115,95,115,97,118,101,95,97,117,100,105, 111,95,112,97,114,97,109,115,0,95,97,117,100,105,111,95,105,110,105,116,0,95,115,121,115,95,115,101,116,99,104,115,114,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,115,121,115,95,115,101,116,95,97,117,100,105,111,95, 115,101,116,116,105,110,103,115,0,95,115,121,115,95,99,108,111,115,101,95,97,117,100,105,111,0,95,115,121,115,95,114,101,111,112,101,110,95,97,117,100,105,111,0,95,115,121,115,95,115,101,110,100,95,100,97,99,115,0,95,115,121,115,95,103,101,116,115,114, 0,95,115,121,115,95,103,101,116,95,111,117,116,99,104,97,110,110,101,108,115,0,95,115,121,115,95,103,101,116,95,105,110,99,104,97,110,110,101,108,115,0,95,115,121,115,95,103,101,116,109,101,116,101,114,115,0,95,115,121,115,95,114,101,112,111,114,116, 105,100,108,101,0,95,97,117,100,105,111,95,103,101,116,100,101,118,115,0,95,115,121,115,95,108,105,115,116,97,117,100,105,111,100,101,118,115,0,95,103,108,111,98,95,97,117,100,105,111,95,112,114,111,112,101,114,116,105,101,115,0,95,103,108,111,98,95, 97,117,100,105,111,95,100,105,97,108,111,103,0,95,115,121,115,95,108,105,115,116,100,101,118,115,0,95,115,121,115,95,103,101,116,95,97,117,100,105,111,95,100,101,118,115,0,95,115,121,115,95,115,101,116,98,108,111,99,107,115,105,122,101,0,95,115,121,115, 95,115,101,116,95,97,117,100,105,111,95,97,112,105,0,95,103,108,111,98,95,97,117,100,105,111,95,115,101,116,97,112,105,0,95,115,121,115,95,115,101,116,95,97,117,100,105,111,95,115,116,97,116,101,0,95,115,121,115,95,103,101,116,95,97,117,100,105,111,95, 97,112,105,115,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,103,108,111,98,95,102,111,111,0,95,115,121,115,95,98,108,111,99,107,115,105,122,101, 0,95,115,121,115,95,97,117,100,105,111,97,112,105,0,95,115,121,115,95,97,117,100,105,111,97,112,105,111,112,101,110,101,100,0,95,97,117,100,105,111,95,110,97,117,100,105,111,105,110,100,101,118,0,95,97,117,100,105,111,95,110,97,117,100,105,111,111,117, 116,100,101,118,0,95,105,110,105,116,116,101,100,46,53,51,52,49,0,95,115,121,115,95,109,101,116,101,114,115,0,95,115,121,115,95,105,110,109,97,120,0,95,115,121,115,95,111,117,116,109,97,120,0,95,97,117,100,105,111,95,115,116,97,116,101,0,95,97,117,100, 105,111,95,97,117,100,105,111,105,110,100,101,118,0,95,97,117,100,105,111,95,97,117,100,105,111,99,104,105,110,100,101,118,0,95,97,117,100,105,111,95,97,117,100,105,111,111,117,116,100,101,118,0,95,97,117,100,105,111,95,97,117,100,105,111,99,104,111, 117,116,100,101,118,0,95,97,117,100,105,111,95,114,97,116,101,0,95,97,117,100,105,111,95,97,100,118,97,110,99,101,0,95,97,117,100,105,111,95,99,97,108,108,98,97,99,107,0,95,97,117,100,105,111,95,99,97,108,108,98,97,99,107,95,105,115,95,111,112,101,110, 0,95,97,117,100,105,111,95,110,101,120,116,105,110,99,104,97,110,115,0,95,97,117,100,105,111,95,110,101,120,116,111,117,116,99,104,97,110,115,0,95,115,121,115,95,97,100,118,97,110,99,101,95,115,97,109,112,108,101,115,0,95,115,121,115,95,100,97,99,115, 114,0,95,115,121,115,95,105,110,99,104,97,110,110,101,108,115,0,95,115,121,115,95,111,117,116,99,104,97,110,110,101,108,115,0,95,115,121,115,95,115,99,104,101,100,97,100,118,97,110,99,101,0,95,115,121,115,95,115,111,117,110,100,105,110,0,95,115,121,115, 95,115,111,117,110,100,111,117,116,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,97,117,100,105,111,95,100,117,109,109,121,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108, 105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,97,117,100,105,111,95,100,117,109,109,121,46,111,0,95,100,117,109,109,121,95,111,112,101,110,95,97,117,100,105,111,0,95,100,117,109,109,121,95,99,108,111, 115,101,95,97,117,100,105,111,0,95,100,117,109,109,121,95,115,101,110,100,95,100,97,99,115,0,95,100,117,109,109,121,95,103,101,116,100,101,118,115,0,95,100,117,109,109,121,95,108,105,115,116,100,101,118,115,0,112,117,114,101,45,100,97,116,97,47,115,114, 99,47,115,95,102,105,108,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,102,105,108, 101,46,111,0,95,115,121,115,95,105,110,105,116,108,111,97,100,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,103,101,116,112,114,101,102,101,114,101,110,99,101,0,95,115,121,115,95,100,111,110,101,108,111,97,100,112,114,101,102,101,114, 101,110,99,101,115,0,95,115,121,115,95,105,110,105,116,115,97,118,101,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,112,117,116,112,114,101,102,101,114,101,110,99,101,0,95,115,121,115,95,100,111,110,101,115,97,118,101,112,114,101,102, 101,114,101,110,99,101,115,0,95,115,121,115,95,108,111,97,100,112,114,101,102,101,114,101,110,99,101,115,0,95,103,108,111,98,95,115,97,118,101,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,102,108,97,103,115,0,95,115,121,115,95,100,101, 102,101,97,116,114,116,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,105,110,116,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100, 47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,105,110,116,101,114,46,111,0,95,115,121,115,95,103,101,116,114,101,97,108,116,105,109,101,0,95,115,121,115,95,100,111,109,105,99,114,111,115,108,101,101,112,0,95,95,95,100,97,114,119,105,110, 95,102,100,95,105,115,115,101,116,0,47,117,115,114,47,105,110,99,108,117,100,101,47,115,121,115,47,95,115,116,114,117,99,116,115,46,104,0,95,115,121,115,95,109,105,99,114,111,115,108,101,101,112,0,95,115,121,115,95,115,105,103,110,97,108,0,95,115,121, 115,95,101,120,105,116,104,97,110,100,108,101,114,0,95,115,121,115,95,97,108,97,114,109,104,97,110,100,108,101,114,0,95,115,121,115,95,104,117,112,104,97,110,100,108,101,114,0,95,115,121,115,95,115,101,116,97,108,97,114,109,0,95,115,121,115,95,115,111, 99,107,101,114,114,111,114,0,95,115,121,115,95,97,100,100,112,111,108,108,102,110,0,95,115,121,115,95,114,109,112,111,108,108,102,110,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,110,101,119,0,95,115,111,99,107,101,116,114,101,99,101, 105,118,101,114,95,102,114,101,101,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,100,111,114,101,97,100,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,103,101,116,117,100,112,0,95,115,111,99,107,101,116,114,101,99,101,105, 118,101,114,95,114,101,97,100,0,95,115,121,115,95,99,108,111,115,101,115,111,99,107,101,116,0,95,115,121,115,95,116,114,121,116,111,103,101,116,109,111,114,101,103,117,105,98,117,102,0,95,115,121,115,95,118,103,117,105,0,95,115,121,115,95,103,117,105, 0,95,115,121,115,95,102,108,117,115,104,116,111,103,117,105,0,95,95,95,105,110,108,105,110,101,95,109,101,109,109,111,118,101,95,99,104,107,0,95,103,108,111,98,95,112,105,110,103,0,95,115,121,115,95,102,108,117,115,104,113,117,101,117,101,0,95,115,121, 115,95,112,111,108,108,95,116,111,103,117,105,0,95,115,121,115,95,112,114,101,116,101,110,100,103,117,105,98,121,116,101,115,0,95,115,121,115,95,113,117,101,117,101,103,117,105,0,95,115,121,115,95,117,110,113,117,101,117,101,103,117,105,0,95,115,121, 115,95,112,111,108,108,103,117,105,0,95,115,121,115,95,115,116,97,114,116,103,117,105,0,95,95,79,83,83,119,97,112,73,110,116,49,54,0,47,117,115,114,47,105,110,99,108,117,100,101,47,108,105,98,107,101,114,110,47,105,51,56,54,47,95,79,83,66,121,116,101, 79,114,100,101,114,46,104,0,95,115,121,115,95,98,97,105,108,0,95,103,108,111,98,95,113,117,105,116,0,95,100,101,102,97,117,108,116,102,111,110,116,115,104,105,116,0,95,116,104,101,110,46,55,51,55,54,0,95,116,114,111,117,98,108,101,46,55,52,55,56,0,95, 114,101,101,110,116,101,114,101,100,46,56,51,48,49,0,95,115,121,115,95,110,102,100,112,111,108,108,0,95,115,121,115,95,102,100,112,111,108,108,0,95,115,121,115,95,109,97,120,102,100,0,95,115,121,115,95,103,117,105,115,111,99,107,0,95,105,110,98,105,110, 98,117,102,0,95,115,121,115,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,0,95,115,121,115,95,103,117,105,113,117,101,117,101,104,101,97,100,0,95,115,121,115,95,103,117,105,98,117,102,0,95,115,121,115,95,103,117,105,98,117,102,104,101,97,100, 0,95,115,121,115,95,103,117,105,98,117,102,116,97,105,108,0,95,115,121,115,95,103,117,105,98,117,102,115,105,122,101,0,95,115,121,115,95,119,97,105,116,105,110,103,102,111,114,112,105,110,103,0,95,115,121,115,95,98,121,116,101,115,115,105,110,99,101, 108,97,115,116,112,105,110,103,0,95,115,121,115,95,119,97,116,99,104,102,100,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,108,111,97,100,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109, 112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,108,111,97,100,101,114,46,111,0,95,115,121,115,95,111,110,108,111,97,100,108,105,115,116,0,95,115,121,115,95,112,117,116,111,110,108, 111,97,100,108,105,115,116,0,95,115,121,115,95,100,111,95,108,111,97,100,95,108,105,98,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,109,111,118,101,95,99,104,107,0,95,115, 121,115,95,114,101,103,105,115,116,101,114,95,108,111,97,100,101,114,0,95,115,121,115,95,108,111,97,100,95,108,105,98,0,95,115,121,115,95,114,117,110,95,115,99,104,101,100,117,108,101,114,0,95,108,111,97,100,101,114,115,0,95,115,121,115,95,100,108,108, 101,120,116,101,110,116,0,95,115,121,115,95,100,108,108,101,120,116,101,110,116,50,0,95,115,121,115,95,108,111,97,100,101,100,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,109,97,105,110,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114, 117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,109,97,105,110,46,111,0,95,103,101,116,95,115,121,115,95,115,111,117,110,100,111,117,116,0,95, 103,101,116,95,115,121,115,95,115,111,117,110,100,105,110,0,95,103,101,116,95,115,121,115,95,109,97,105,110,95,97,100,118,97,110,99,101,0,95,103,101,116,95,115,121,115,95,116,105,109,101,95,112,101,114,95,100,115,112,95,116,105,99,107,0,95,103,101,116, 95,115,121,115,95,115,99,104,101,100,98,108,111,99,107,115,105,122,101,0,95,103,101,116,95,115,121,115,95,116,105,109,101,0,95,103,101,116,95,115,121,115,95,100,97,99,115,114,0,95,103,101,116,95,115,121,115,95,115,108,101,101,112,103,114,97,105,110,0, 95,103,101,116,95,115,121,115,95,115,99,104,101,100,97,100,118,97,110,99,101,0,95,115,121,115,95,102,105,110,100,102,111,110,116,0,95,115,121,115,95,110,101,97,114,101,115,116,102,111,110,116,115,105,122,101,0,95,115,121,115,95,104,111,115,116,102,111, 110,116,115,105,122,101,0,95,115,121,115,95,102,111,110,116,119,105,100,116,104,0,95,115,121,115,95,102,111,110,116,104,101,105,103,104,116,0,95,111,112,101,110,105,116,0,95,103,108,111,98,95,105,110,105,116,102,114,111,109,103,117,105,0,95,115,121,115, 95,109,97,105,110,0,95,115,121,115,95,112,97,114,115,101,100,101,118,108,105,115,116,0,95,115,121,115,95,103,101,116,109,117,108,116,105,100,101,118,99,104,97,110,110,101,108,115,0,95,115,121,115,95,102,105,110,100,112,114,111,103,100,105,114,0,95,115, 121,115,95,97,114,103,112,97,114,115,101,0,95,115,121,115,95,103,101,116,98,108,107,115,105,122,101,0,95,115,121,115,95,97,102,116,101,114,97,114,103,112,97,114,115,101,0,95,115,121,115,95,97,100,100,114,101,102,101,114,101,110,99,101,112,97,116,104, 0,95,112,100,95,118,101,114,115,105,111,110,0,95,117,115,97,103,101,109,101,115,115,97,103,101,0,95,112,100,95,99,111,109,112,105,108,101,116,105,109,101,0,95,112,100,95,99,111,109,112,105,108,101,100,97,116,101,0,95,115,121,115,95,104,105,112,114,105, 111,114,105,116,121,0,95,115,121,115,95,110,111,115,108,101,101,112,0,95,115,121,115,95,110,109,105,100,105,111,117,116,0,95,115,121,115,95,110,109,105,100,105,105,110,0,95,115,121,115,95,109,105,100,105,105,110,100,101,118,108,105,115,116,0,95,115,121, 115,95,109,105,100,105,111,117,116,100,101,118,108,105,115,116,0,95,115,121,115,95,102,111,110,116,0,95,115,121,115,95,102,111,110,116,119,101,105,103,104,116,0,95,115,121,115,95,110,115,111,117,110,100,105,110,0,95,115,121,115,95,110,115,111,117,110, 100,111,117,116,0,95,115,121,115,95,110,99,104,105,110,0,95,115,121,115,95,110,99,104,111,117,116,0,95,115,121,115,95,102,111,110,116,108,105,115,116,0,95,115,121,115,95,109,109,105,111,0,95,115,121,115,95,111,112,101,110,108,105,115,116,0,95,115,121, 115,95,109,101,115,115,97,103,101,108,105,115,116,0,95,115,121,115,95,118,101,114,115,105,111,110,0,95,115,121,115,95,109,97,105,110,95,115,114,97,116,101,0,95,115,121,115,95,109,97,105,110,95,97,100,118,97,110,99,101,0,95,115,121,115,95,109,97,105,110, 95,99,97,108,108,98,97,99,107,0,95,115,121,115,95,108,105,115,116,112,108,101,97,115,101,0,95,115,121,115,95,98,97,116,99,104,0,95,115,121,115,95,115,111,117,110,100,105,110,100,101,118,108,105,115,116,0,95,115,121,115,95,115,111,117,110,100,111,117, 116,100,101,118,108,105,115,116,0,95,115,121,115,95,99,104,105,110,108,105,115,116,0,95,115,121,115,95,99,104,111,117,116,108,105,115,116,0,95,115,121,115,95,100,101,98,117,103,108,101,118,101,108,0,95,115,121,115,95,100,101,102,97,117,108,116,102,111, 110,116,0,95,115,121,115,95,101,120,116,101,114,110,97,108,115,99,104,101,100,108,105,98,0,95,115,121,115,95,101,120,116,101,114,110,97,108,115,99,104,101,100,108,105,98,110,97,109,101,0,95,115,121,115,95,101,120,116,114,97,102,108,97,103,115,0,95,115, 121,115,95,101,120,116,114,97,102,108,97,103,115,115,116,114,105,110,103,0,95,115,121,115,95,103,117,105,99,109,100,0,95,115,121,115,95,103,117,105,115,101,116,112,111,114,116,110,117,109,98,101,114,0,95,115,121,115,95,108,105,98,100,105,114,0,95,115, 121,115,95,110,111,97,117,116,111,112,97,116,99,104,0,95,115,121,115,95,110,111,103,117,105,0,95,115,121,115,95,110,111,108,111,97,100,98,97,110,103,0,95,115,121,115,95,111,108,100,116,99,108,118,101,114,115,105,111,110,0,95,115,121,115,95,118,101,114, 98,111,115,101,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,112,97,116,104,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117, 114,101,45,100,97,116,97,47,115,114,99,47,115,95,112,97,116,104,46,111,0,95,115,121,115,95,98,97,115,104,102,105,108,101,110,97,109,101,0,95,115,121,115,95,117,110,98,97,115,104,102,105,108,101,110,97,109,101,0,95,115,121,115,95,105,115,97,98,115,111, 108,117,116,101,112,97,116,104,0,95,115,121,115,95,101,120,112,97,110,100,112,97,116,104,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,115,116,114,116,111,107,99,112,121,0,95,110,97,109,101,108,105,115,116,95,97, 112,112,101,110,100,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,110,97,109,101,108,105,115,116,95,97,112,112,101,110,100,95,102,105,108,101,115,0,95,110,97,109,101,108,105,115,116,95,102,114,101,101,0,95,110,97,109, 101,108,105,115,116,95,103,101,116,0,95,115,121,115,95,115,101,116,101,120,116,114,97,112,97,116,104,0,95,115,121,115,95,116,114,121,116,111,111,112,101,110,111,110,101,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,115, 121,115,95,111,112,101,110,95,97,98,115,111,108,117,116,101,0,95,100,111,95,111,112,101,110,95,118,105,97,95,112,97,116,104,0,95,111,112,101,110,95,118,105,97,95,112,97,116,104,0,95,115,121,115,95,99,108,111,115,101,0,95,111,112,101,110,95,118,105,97, 95,104,101,108,112,112,97,116,104,0,95,115,121,115,95,114,99,102,105,108,101,0,95,115,121,115,95,100,111,102,108,97,103,115,0,95,105,115,115,112,97,99,101,0,47,117,115,114,47,105,110,99,108,117,100,101,47,99,116,121,112,101,46,104,0,95,95,95,105,115, 116,121,112,101,0,95,105,115,97,115,99,105,105,0,95,115,121,115,95,100,101,99,111,100,101,100,105,97,108,111,103,0,95,115,121,115,95,115,101,116,95,115,101,97,114,99,104,112,97,116,104,0,95,115,121,115,95,115,101,116,95,101,120,116,114,97,112,97,116, 104,0,95,103,108,111,98,95,115,116,97,114,116,95,112,97,116,104,95,100,105,97,108,111,103,0,95,103,108,111,98,95,112,97,116,104,95,100,105,97,108,111,103,0,95,115,121,115,95,115,101,116,95,115,116,97,114,116,117,112,0,95,103,108,111,98,95,115,116,97, 114,116,95,115,116,97,114,116,117,112,95,100,105,97,108,111,103,0,95,103,108,111,98,95,115,116,97,114,116,117,112,95,100,105,97,108,111,103,0,95,115,121,115,95,117,115,101,115,116,100,112,97,116,104,0,95,115,121,115,95,101,120,116,101,114,110,108,105, 115,116,0,95,115,121,115,95,104,101,108,112,112,97,116,104,0,95,115,121,115,95,115,101,97,114,99,104,112,97,116,104,0,95,115,121,115,95,115,116,97,116,105,99,112,97,116,104,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,112,114,105,110,116, 46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,112,114,105,110,116,46,111,0,95,115,116, 114,110,101,115,99,97,112,101,0,95,100,111,112,111,115,116,0,95,100,111,101,114,114,111,114,0,95,100,111,118,101,114,98,111,115,101,0,95,100,111,98,117,103,0,95,112,111,115,116,0,95,115,116,97,114,116,112,111,115,116,0,95,112,111,115,116,115,116,114, 105,110,103,0,95,112,111,115,116,97,116,111,109,0,95,112,111,115,116,102,108,111,97,116,0,95,101,110,100,112,111,115,116,0,95,101,114,114,111,114,0,95,118,101,114,98,111,115,101,0,95,112,100,95,101,114,114,111,114,0,95,103,108,111,98,95,102,105,110,100, 101,114,114,111,114,0,95,98,117,103,0,95,115,121,115,95,108,111,103,101,114,114,111,114,0,95,115,121,115,95,117,110,105,120,101,114,114,111,114,0,95,115,121,115,95,111,117,99,104,0,95,115,97,105,100,105,116,46,52,55,57,51,0,95,101,114,114,111,114,95, 111,98,106,101,99,116,0,95,101,114,114,111,114,95,115,116,114,105,110,103,0,95,101,114,114,111,98,106,101,99,116,0,95,101,114,114,115,116,114,105,110,103,0,95,115,121,115,95,112,114,105,110,116,104,111,111,107,0,95,115,121,115,95,112,114,105,110,116, 116,111,115,116,100,101,114,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,117,116,102,56,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112, 100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,117,116,102,56,46,111,0,95,117,56,95,115,101,113,108,101,110,0,95,117,56,95,116,111,117,99,115,0,95,117,56,95,116,111,117,116,102,56,0,95,117,56,95,119,99,95,110,98,121,116,101,115,0,95, 117,56,95,119,99,95,116,111,117,116,102,56,0,95,117,56,95,119,99,95,116,111,117,116,102,56,95,110,117,108,0,95,117,56,95,111,102,102,115,101,116,0,95,117,56,95,99,104,97,114,110,117,109,0,95,117,56,95,110,101,120,116,99,104,97,114,0,95,117,56,95,115, 116,114,108,101,110,0,95,117,56,95,105,110,99,0,95,117,56,95,100,101,99,0,95,117,56,95,105,110,99,95,112,116,114,0,95,117,56,95,100,101,99,95,112,116,114,0,95,111,102,102,115,101,116,115,70,114,111,109,85,84,70,56,0,95,116,114,97,105,108,105,110,103, 66,121,116,101,115,70,111,114,85,84,70,56,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,97,99,111,117,115,116,105,99,115,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105, 98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,97,99,111,117,115,116,105,99,115,46,111,0,95,109,116,111,102,0,95,102,116,111,109,0,95,112,111,119,116,111,100,98,0,95,114,109,115,116,111,100,98,0,95,100,98, 116,111,112,111,119,0,95,100,98,116,111,114,109,115,0,95,109,116,111,102,95,110,101,119,0,95,109,116,111,102,95,102,108,111,97,116,0,95,102,116,111,109,95,110,101,119,0,95,102,116,111,109,95,102,108,111,97,116,0,95,114,109,115,116,111,100,98,95,110,101, 119,0,95,114,109,115,116,111,100,98,95,102,108,111,97,116,0,95,112,111,119,116,111,100,98,95,110,101,119,0,95,112,111,119,116,111,100,98,95,102,108,111,97,116,0,95,100,98,116,111,112,111,119,95,110,101,119,0,95,100,98,116,111,112,111,119,95,102,108,111, 97,116,0,95,100,98,116,111,114,109,115,95,110,101,119,0,95,100,98,116,111,114,109,115,95,102,108,111,97,116,0,95,120,95,97,99,111,117,115,116,105,99,115,95,115,101,116,117,112,0,95,109,116,111,102,95,99,108,97,115,115,0,95,102,116,111,109,95,99,108,97, 115,115,0,95,114,109,115,116,111,100,98,95,99,108,97,115,115,0,95,112,111,119,116,111,100,98,95,99,108,97,115,115,0,95,100,98,116,111,112,111,119,95,99,108,97,115,115,0,95,100,98,116,111,114,109,115,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116, 97,47,115,114,99,47,120,95,97,114,105,116,104,109,101,116,105,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97, 47,115,114,99,47,120,95,97,114,105,116,104,109,101,116,105,99,46,111,0,95,98,105,110,111,112,49,95,110,101,119,0,95,98,105,110,111,112,49,95,112,108,117,115,95,110,101,119,0,95,98,105,110,111,112,49,95,112,108,117,115,95,98,97,110,103,0,95,98,105,110, 111,112,49,95,112,108,117,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,110,101,119,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,98,97,110,103,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,102,108,111,97, 116,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,110,101,119,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,98,97,110,103,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,100,105,118, 95,110,101,119,0,95,98,105,110,111,112,49,95,100,105,118,95,98,97,110,103,0,95,98,105,110,111,112,49,95,100,105,118,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,112,111,119,95,110,101,119,0,95,98,105,110,111,112,49,95,112,111,119,95,98,97,110, 103,0,95,98,105,110,111,112,49,95,112,111,119,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,109,97,120,95,110,101,119,0,95,98,105,110,111,112,49,95,109,97,120,95,98,97,110,103,0,95,98,105,110,111,112,49,95,109,97,120,95,102,108,111,97,116,0,95, 98,105,110,111,112,49,95,109,105,110,95,110,101,119,0,95,98,105,110,111,112,49,95,109,105,110,95,98,97,110,103,0,95,98,105,110,111,112,49,95,109,105,110,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,110,101,119,0,95,98,105,110,111,112,50,95,101, 101,95,110,101,119,0,95,98,105,110,111,112,50,95,101,101,95,98,97,110,103,0,95,98,105,110,111,112,50,95,101,101,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,110,101,95,110,101,119,0,95,98,105,110,111,112,50,95,110,101,95,98,97,110,103,0,95,98, 105,110,111,112,50,95,110,101,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,103,116,95,110,101,119,0,95,98,105,110,111,112,50,95,103,116,95,98,97,110,103,0,95,98,105,110,111,112,50,95,103,116,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95, 108,116,95,110,101,119,0,95,98,105,110,111,112,50,95,108,116,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,116,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,103,101,95,110,101,119,0,95,98,105,110,111,112,50,95,103,101,95,98,97,110,103,0,95, 98,105,110,111,112,50,95,103,101,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,108,101,95,110,101,119,0,95,98,105,110,111,112,50,95,108,101,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,101,95,102,108,111,97,116,0,95,98,105,110,111,112,51, 95,110,101,119,0,95,98,105,110,111,112,51,95,98,97,95,110,101,119,0,95,98,105,110,111,112,50,95,98,97,95,98,97,110,103,0,95,98,105,110,111,112,50,95,98,97,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,108,97,95,110,101,119,0,95,98,105,110,111,112, 50,95,108,97,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,97,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,98,111,95,110,101,119,0,95,98,105,110,111,112,50,95,98,111,95,98,97,110,103,0,95,98,105,110,111,112,50,95,98,111,95,102,108,111,97, 116,0,95,98,105,110,111,112,51,95,108,111,95,110,101,119,0,95,98,105,110,111,112,50,95,108,111,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,111,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,108,115,95,110,101,119,0,95,98,105,110,111,112,50, 95,108,115,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,115,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,114,115,95,110,101,119,0,95,98,105,110,111,112,50,95,114,115,95,98,97,110,103,0,95,98,105,110,111,112,50,95,114,115,95,102,108,111,97, 116,0,95,98,105,110,111,112,51,95,112,99,95,110,101,119,0,95,98,105,110,111,112,50,95,112,99,95,98,97,110,103,0,95,98,105,110,111,112,50,95,112,99,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,109,111,100,95,110,101,119,0,95,98,105,110,111,112, 51,95,109,111,100,95,98,97,110,103,0,95,98,105,110,111,112,51,95,109,111,100,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,100,105,118,95,110,101,119,0,95,98,105,110,111,112,51,95,100,105,118,95,98,97,110,103,0,95,98,105,110,111,112,51,95,100,105, 118,95,102,108,111,97,116,0,95,115,105,110,95,110,101,119,0,95,115,105,110,95,102,108,111,97,116,0,95,99,111,115,95,110,101,119,0,95,99,111,115,95,102,108,111,97,116,0,95,116,97,110,95,110,101,119,0,95,116,97,110,95,102,108,111,97,116,0,95,97,116,97, 110,95,110,101,119,0,95,97,116,97,110,95,102,108,111,97,116,0,95,97,116,97,110,50,95,110,101,119,0,95,97,116,97,110,50,95,102,108,111,97,116,0,95,115,113,114,116,95,110,101,119,0,95,115,113,114,116,95,102,108,111,97,116,0,95,108,111,103,95,110,101,119, 0,95,108,111,103,95,102,108,111,97,116,0,95,101,120,112,95,110,101,119,0,95,101,120,112,95,102,108,111,97,116,0,95,97,98,115,95,110,101,119,0,95,97,98,115,95,102,108,111,97,116,0,95,119,114,97,112,95,110,101,119,0,95,119,114,97,112,95,102,108,111,97, 116,0,95,99,108,105,112,95,110,101,119,0,95,99,108,105,112,95,98,97,110,103,0,95,99,108,105,112,95,102,108,111,97,116,0,95,99,108,105,112,95,115,101,116,117,112,0,95,120,95,97,114,105,116,104,109,101,116,105,99,95,115,101,116,117,112,0,95,98,105,110, 111,112,49,95,112,108,117,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,100,105,118,95,99,108,97,115, 115,0,95,98,105,110,111,112,49,95,112,111,119,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,109,97,120,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,109,105,110,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,101,101,95,99,108,97,115,115, 0,95,98,105,110,111,112,50,95,110,101,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,103,116,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,108,116,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,103,101,95,99,108,97,115,115,0,95,98,105,110, 111,112,50,95,108,101,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,98,97,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,108,97,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,98,111,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,108, 111,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,108,115,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,114,115,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,112,99,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,109,111,100,95,99,108, 97,115,115,0,95,98,105,110,111,112,51,95,100,105,118,95,99,108,97,115,115,0,95,115,105,110,95,99,108,97,115,115,0,95,99,111,115,95,99,108,97,115,115,0,95,116,97,110,95,99,108,97,115,115,0,95,97,116,97,110,95,99,108,97,115,115,0,95,97,116,97,110,50,95, 99,108,97,115,115,0,95,115,113,114,116,95,99,108,97,115,115,0,95,108,111,103,95,99,108,97,115,115,0,95,101,120,112,95,99,108,97,115,115,0,95,97,98,115,95,99,108,97,115,115,0,95,119,114,97,112,95,99,108,97,115,115,0,95,99,108,105,112,95,99,108,97,115, 115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,99,111,110,110,101,99,116,105,118,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100, 47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,99,111,110,110,101,99,116,105,118,101,46,111,0,95,112,100,105,110,116,95,110,101,119,0,95,112,100,105,110,116,95,98,97,110,103,0,95,112,100,105,110,116,95,102,108,111,97,116,0,95,112,100,105, 110,116,95,115,101,116,117,112,0,95,112,100,102,108,111,97,116,95,110,101,119,0,95,112,100,102,108,111,97,116,95,110,101,119,50,0,95,112,100,102,108,111,97,116,95,98,97,110,103,0,95,112,100,102,108,111,97,116,95,102,108,111,97,116,0,95,112,100,102,108, 111,97,116,95,115,101,116,117,112,0,95,112,100,115,121,109,98,111,108,95,110,101,119,0,95,112,100,115,121,109,98,111,108,95,98,97,110,103,0,95,112,100,115,121,109,98,111,108,95,115,121,109,98,111,108,0,95,112,100,115,121,109,98,111,108,95,97,110,121, 116,104,105,110,103,0,95,112,100,115,121,109,98,111,108,95,108,105,115,116,0,95,112,100,115,121,109,98,111,108,95,115,101,116,117,112,0,95,98,97,110,103,95,110,101,119,0,95,98,97,110,103,95,110,101,119,50,0,95,98,97,110,103,95,98,97,110,103,0,95,98,97, 110,103,95,115,101,116,117,112,0,95,115,101,110,100,95,98,97,110,103,0,95,115,101,110,100,95,102,108,111,97,116,0,95,115,101,110,100,95,115,121,109,98,111,108,0,95,115,101,110,100,95,112,111,105,110,116,101,114,0,95,115,101,110,100,95,108,105,115,116, 0,95,115,101,110,100,95,97,110,121,116,104,105,110,103,0,95,115,101,110,100,95,110,101,119,0,95,115,101,110,100,95,115,101,116,117,112,0,95,114,101,99,101,105,118,101,95,98,97,110,103,0,95,114,101,99,101,105,118,101,95,102,108,111,97,116,0,95,114,101, 99,101,105,118,101,95,115,121,109,98,111,108,0,95,114,101,99,101,105,118,101,95,112,111,105,110,116,101,114,0,95,114,101,99,101,105,118,101,95,108,105,115,116,0,95,114,101,99,101,105,118,101,95,97,110,121,116,104,105,110,103,0,95,114,101,99,101,105,118, 101,95,110,101,119,0,95,114,101,99,101,105,118,101,95,102,114,101,101,0,95,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,115,101,108,49,95,102,108,111,97,116,0,95,115,101,108,49,95,115,121,109,98,111,108,0,95,115,101,108,50,95,102,108,111,97, 116,0,95,115,101,108,50,95,115,121,109,98,111,108,0,95,115,101,108,50,95,102,114,101,101,0,95,115,101,108,101,99,116,95,110,101,119,0,95,115,101,108,101,99,116,95,115,101,116,117,112,0,95,114,111,117,116,101,95,97,110,121,116,104,105,110,103,0,95,114, 111,117,116,101,95,108,105,115,116,0,95,114,111,117,116,101,95,102,114,101,101,0,95,114,111,117,116,101,95,110,101,119,0,95,114,111,117,116,101,95,115,101,116,117,112,0,95,112,97,99,107,95,110,101,119,0,95,112,97,99,107,95,98,97,110,103,0,95,95,95,105, 110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,112,97,99,107,95,112,111,105,110,116,101,114,0,95,112,97,99,107,95,102,108,111,97,116,0,95,112,97,99,107,95,115,121,109,98,111,108,0,95,112,97,99,107,95,108,105,115,116,0,95,112,97,99,107, 95,97,110,121,116,104,105,110,103,0,95,112,97,99,107,95,102,114,101,101,0,95,112,97,99,107,95,115,101,116,117,112,0,95,117,110,112,97,99,107,95,110,101,119,0,95,117,110,112,97,99,107,95,108,105,115,116,0,95,117,110,112,97,99,107,95,97,110,121,116,104, 105,110,103,0,95,117,110,112,97,99,107,95,102,114,101,101,0,95,117,110,112,97,99,107,95,115,101,116,117,112,0,95,116,114,105,103,103,101,114,95,110,101,119,0,95,116,114,105,103,103,101,114,95,108,105,115,116,0,95,116,114,105,103,103,101,114,95,97,110, 121,116,104,105,110,103,0,95,116,114,105,103,103,101,114,95,98,97,110,103,0,95,116,114,105,103,103,101,114,95,112,111,105,110,116,101,114,0,95,116,114,105,103,103,101,114,95,102,108,111,97,116,0,95,116,114,105,103,103,101,114,95,115,121,109,98,111,108, 0,95,116,114,105,103,103,101,114,95,102,114,101,101,0,95,116,114,105,103,103,101,114,95,115,101,116,117,112,0,95,115,112,105,103,111,116,95,110,101,119,0,95,115,112,105,103,111,116,95,98,97,110,103,0,95,115,112,105,103,111,116,95,112,111,105,110,116, 101,114,0,95,115,112,105,103,111,116,95,102,108,111,97,116,0,95,115,112,105,103,111,116,95,115,121,109,98,111,108,0,95,115,112,105,103,111,116,95,108,105,115,116,0,95,115,112,105,103,111,116,95,97,110,121,116,104,105,110,103,0,95,115,112,105,103,111, 116,95,115,101,116,117,112,0,95,109,111,115,101,115,95,110,101,119,0,95,109,111,115,101,115,95,102,108,111,97,116,0,95,109,111,115,101,115,95,115,101,116,117,112,0,95,117,110,116,105,108,95,110,101,119,0,95,117,110,116,105,108,95,98,97,110,103,0,95,117, 110,116,105,108,95,102,108,111,97,116,0,95,117,110,116,105,108,95,98,97,110,103,50,0,95,117,110,116,105,108,95,115,101,116,117,112,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,99,97,110,102,111,114,109,97,116,0,95,109,97,107,101,102,105, 108,101,110,97,109,101,95,110,101,119,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,102,108,111,97,116,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,121,109,98,111,108,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,101, 116,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,101,116,117,112,0,95,115,119,97,112,95,110,101,119,0,95,115,119,97,112,95,98,97,110,103,0,95,115,119,97,112,95,102,108,111,97,116,0,95,115,119,97,112,95,115,101,116,117,112,0,95,99,104,97, 110,103,101,95,110,101,119,0,95,99,104,97,110,103,101,95,98,97,110,103,0,95,99,104,97,110,103,101,95,102,108,111,97,116,0,95,99,104,97,110,103,101,95,115,101,116,0,95,99,104,97,110,103,101,95,115,101,116,117,112,0,95,118,97,108,117,101,95,103,101,116, 0,95,118,97,108,117,101,95,114,101,108,101,97,115,101,0,95,118,97,108,117,101,95,103,101,116,102,108,111,97,116,0,95,118,97,108,117,101,95,115,101,116,102,108,111,97,116,0,95,118,97,108,117,101,95,110,101,119,0,95,118,97,108,117,101,95,98,97,110,103, 0,95,118,97,108,117,101,95,102,108,111,97,116,0,95,118,97,108,117,101,95,102,102,0,95,118,97,108,117,101,95,115,101,116,117,112,0,95,120,95,99,111,110,110,101,99,116,105,118,101,95,115,101,116,117,112,0,95,112,100,105,110,116,95,99,108,97,115,115,0,95, 112,100,102,108,111,97,116,95,99,108,97,115,115,0,95,112,100,115,121,109,98,111,108,95,99,108,97,115,115,0,95,98,97,110,103,95,99,108,97,115,115,0,95,115,101,110,100,95,99,108,97,115,115,0,95,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,115,101, 108,49,95,99,108,97,115,115,0,95,115,101,108,50,95,99,108,97,115,115,0,95,114,111,117,116,101,95,99,108,97,115,115,0,95,112,97,99,107,95,99,108,97,115,115,0,95,117,110,112,97,99,107,95,99,108,97,115,115,0,95,116,114,105,103,103,101,114,95,99,108,97,115, 115,0,95,115,112,105,103,111,116,95,99,108,97,115,115,0,95,109,111,115,101,115,95,99,108,97,115,115,0,95,117,110,116,105,108,95,99,108,97,115,115,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,99,108,97,115,115,0,95,115,119,97,112,95,99,108,97, 115,115,0,95,99,104,97,110,103,101,95,99,108,97,115,115,0,95,118,97,108,117,101,95,99,108,97,115,115,0,95,118,99,111,109,109,111,110,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,103,117,105,46,99,0,47,85,115,101,114, 115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,103,117,105,46,111,0,95,103,102,120,115,116,117,98,95,110,101,119, 0,95,103,102,120,115,116,117,98,95,111,102,102,108,105,115,116,0,95,103,102,120,115,116,117,98,95,100,101,108,101,116,101,102,111,114,107,101,121,0,95,103,102,120,115,116,117,98,95,99,97,110,99,101,108,0,95,103,102,120,115,116,117,98,95,115,105,103,110, 111,102,102,0,95,103,102,120,115,116,117,98,95,100,97,116,97,0,95,103,102,120,115,116,117,98,95,101,110,100,0,95,103,102,120,115,116,117,98,95,97,110,121,116,104,105,110,103,0,95,103,102,120,115,116,117,98,95,102,114,101,101,0,95,103,102,120,115,116, 117,98,95,115,101,116,117,112,0,95,111,112,101,110,112,97,110,101,108,95,110,101,119,0,95,111,112,101,110,112,97,110,101,108,95,115,121,109,98,111,108,0,95,111,112,101,110,112,97,110,101,108,95,98,97,110,103,0,95,111,112,101,110,112,97,110,101,108,95, 99,97,108,108,98,97,99,107,0,95,111,112,101,110,112,97,110,101,108,95,102,114,101,101,0,95,111,112,101,110,112,97,110,101,108,95,115,101,116,117,112,0,95,115,97,118,101,112,97,110,101,108,95,110,101,119,0,95,115,97,118,101,112,97,110,101,108,95,115,121, 109,98,111,108,0,95,115,97,118,101,112,97,110,101,108,95,98,97,110,103,0,95,115,97,118,101,112,97,110,101,108,95,99,97,108,108,98,97,99,107,0,95,115,97,118,101,112,97,110,101,108,95,102,114,101,101,0,95,115,97,118,101,112,97,110,101,108,95,115,101,116, 117,112,0,95,107,101,121,95,110,101,119,0,95,107,101,121,95,102,108,111,97,116,0,95,107,101,121,95,102,114,101,101,0,95,107,101,121,117,112,95,110,101,119,0,95,107,101,121,117,112,95,102,108,111,97,116,0,95,107,101,121,117,112,95,102,114,101,101,0,95, 107,101,121,110,97,109,101,95,110,101,119,0,95,107,101,121,110,97,109,101,95,108,105,115,116,0,95,107,101,121,110,97,109,101,95,102,114,101,101,0,95,107,101,121,95,115,101,116,117,112,0,95,120,95,103,117,105,95,115,101,116,117,112,0,95,103,102,120,115, 116,117,98,95,99,108,97,115,115,0,95,103,102,120,115,116,117,98,95,108,105,115,116,0,95,103,102,120,115,116,117,98,95,98,105,110,98,117,102,0,95,111,112,101,110,112,97,110,101,108,95,99,108,97,115,115,0,95,115,97,118,101,112,97,110,101,108,95,99,108, 97,115,115,0,95,107,101,121,95,115,121,109,0,95,107,101,121,117,112,95,115,121,109,0,95,107,101,121,110,97,109,101,95,115,121,109,0,95,107,101,121,95,99,108,97,115,115,0,95,107,101,121,117,112,95,99,108,97,115,115,0,95,107,101,121,110,97,109,101,95,99, 108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,105,110,116,101,114,102,97,99,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98, 112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,105,110,116,101,114,102,97,99,101,46,111,0,95,112,114,105,110,116,95,110,101,119,0,95,112,114,105,110,116,95,98,97,110,103,0,95,112,114,105,110,116,95,112,111,105,110,116,101,114,0,95, 112,114,105,110,116,95,102,108,111,97,116,0,95,112,114,105,110,116,95,108,105,115,116,0,95,112,114,105,110,116,95,97,110,121,116,104,105,110,103,0,95,112,114,105,110,116,95,115,101,116,117,112,0,95,120,95,105,110,116,101,114,102,97,99,101,95,115,101, 116,117,112,0,95,112,114,105,110,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,108,105,115,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105, 98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,108,105,115,116,46,111,0,95,97,116,111,109,115,95,99,111,112,121,0,95,97,108,105,115,116,95,105,110,105,116,0,95,97,108,105,115,116,95,99,108,101,97,114,0,95, 97,108,105,115,116,95,108,105,115,116,0,95,97,108,105,115,116,95,97,110,121,116,104,105,110,103,0,95,97,108,105,115,116,95,116,111,97,116,111,109,115,0,95,97,108,105,115,116,95,99,108,111,110,101,0,95,97,108,105,115,116,95,115,101,116,117,112,0,95,108, 105,115,116,95,97,112,112,101,110,100,95,110,101,119,0,95,108,105,115,116,95,97,112,112,101,110,100,95,108,105,115,116,0,95,108,105,115,116,95,97,112,112,101,110,100,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,97,112,112,101,110,100,95, 102,114,101,101,0,95,108,105,115,116,95,97,112,112,101,110,100,95,115,101,116,117,112,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,110,101,119,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,108,105,115,116,0,95,108,105,115,116,95,112, 114,101,112,101,110,100,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,102,114,101,101,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,115,101,116,117,112,0,95,108,105,115,116,95,115,112,108,105,116,95, 110,101,119,0,95,108,105,115,116,95,115,112,108,105,116,95,108,105,115,116,0,95,108,105,115,116,95,115,112,108,105,116,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,115,112,108,105,116,95,115,101,116,117,112,0,95,108,105,115,116,95,116,114, 105,109,95,110,101,119,0,95,108,105,115,116,95,116,114,105,109,95,108,105,115,116,0,95,108,105,115,116,95,116,114,105,109,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,116,114,105,109,95,115,101,116,117,112,0,95,108,105,115,116,95,108,101, 110,103,116,104,95,110,101,119,0,95,108,105,115,116,95,108,101,110,103,116,104,95,108,105,115,116,0,95,108,105,115,116,95,108,101,110,103,116,104,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,108,101,110,103,116,104,95,115,101,116,117,112, 0,95,108,105,115,116,95,110,101,119,0,95,120,95,108,105,115,116,95,115,101,116,117,112,0,95,97,108,105,115,116,95,99,108,97,115,115,0,95,108,105,115,116,95,97,112,112,101,110,100,95,99,108,97,115,115,0,95,108,105,115,116,95,108,101,110,103,116,104,95, 99,108,97,115,115,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,99,108,97,115,115,0,95,108,105,115,116,95,115,112,108,105,116,95,99,108,97,115,115,0,95,108,105,115,116,95,116,114,105,109,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97, 47,115,114,99,47,120,95,109,105,100,105,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95, 109,105,100,105,46,111,0,95,109,105,100,105,105,110,95,110,101,119,0,95,109,105,100,105,105,110,95,108,105,115,116,0,95,109,105,100,105,105,110,95,102,114,101,101,0,95,115,121,115,101,120,105,110,95,110,101,119,0,95,115,121,115,101,120,105,110,95,102, 114,101,101,0,95,109,105,100,105,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,98,121,116,101,0,95,105,110,109,105,100,105,95,115,121,115,101,120,0,95,110,111,116,101,105,110,95,110,101,119,0,95,110,111,116,101,105,110,95,108,105,115, 116,0,95,110,111,116,101,105,110,95,102,114,101,101,0,95,110,111,116,101,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,110,111,116,101,111,110,0,95,99,116,108,105,110,95,110,101,119,0,95,99,116,108,105,110,95,108,105,115,116,0,95,99, 116,108,105,110,95,102,114,101,101,0,95,99,116,108,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,99,111,110,116,114,111,108,99,104,97,110,103,101,0,95,112,103,109,105,110,95,110,101,119,0,95,112,103,109,105,110,95,108,105,115,116,0,95, 112,103,109,105,110,95,102,114,101,101,0,95,112,103,109,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,112,114,111,103,114,97,109,99,104,97,110,103,101,0,95,98,101,110,100,105,110,95,110,101,119,0,95,98,101,110,100,105,110,95,108,105, 115,116,0,95,98,101,110,100,105,110,95,102,114,101,101,0,95,98,101,110,100,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,112,105,116,99,104,98,101,110,100,0,95,116,111,117,99,104,105,110,95,110,101,119,0,95,116,111,117,99,104,105,110, 95,108,105,115,116,0,95,116,111,117,99,104,105,110,95,102,114,101,101,0,95,116,111,117,99,104,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,97,102,116,101,114,116,111,117,99,104,0,95,112,111,108,121,116,111,117,99,104,105,110,95,110, 101,119,0,95,112,111,108,121,116,111,117,99,104,105,110,95,108,105,115,116,0,95,112,111,108,121,116,111,117,99,104,105,110,95,102,114,101,101,0,95,112,111,108,121,116,111,117,99,104,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,112,111, 108,121,97,102,116,101,114,116,111,117,99,104,0,95,109,105,100,105,99,108,107,105,110,95,110,101,119,0,95,109,105,100,105,99,108,107,105,110,95,108,105,115,116,0,95,109,105,100,105,99,108,107,105,110,95,102,114,101,101,0,95,109,105,100,105,99,108,107, 105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,99,108,107,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,110,101,119,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,108,105,115,116,0,95,109,105,100,105,114, 101,97,108,116,105,109,101,105,110,95,102,114,101,101,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,114,101,97,108,116,105,109,101,105,110,0,95,109,105,100,105,111,117,116,95,110,101, 119,0,95,109,105,100,105,111,117,116,95,102,108,111,97,116,0,95,109,105,100,105,111,117,116,95,115,101,116,117,112,0,95,110,111,116,101,111,117,116,95,110,101,119,0,95,110,111,116,101,111,117,116,95,102,108,111,97,116,0,95,110,111,116,101,111,117,116, 95,115,101,116,117,112,0,95,99,116,108,111,117,116,95,110,101,119,0,95,99,116,108,111,117,116,95,102,108,111,97,116,0,95,99,116,108,111,117,116,95,115,101,116,117,112,0,95,112,103,109,111,117,116,95,110,101,119,0,95,112,103,109,111,117,116,95,102,108, 111,97,116,0,95,112,103,109,111,117,116,95,115,101,116,117,112,0,95,98,101,110,100,111,117,116,95,110,101,119,0,95,98,101,110,100,111,117,116,95,102,108,111,97,116,0,95,98,101,110,100,111,117,116,95,115,101,116,117,112,0,95,116,111,117,99,104,111,117, 116,95,110,101,119,0,95,116,111,117,99,104,111,117,116,95,102,108,111,97,116,0,95,116,111,117,99,104,111,117,116,95,115,101,116,117,112,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,110,101,119,0,95,112,111,108,121,116,111,117,99,104,111,117, 116,95,102,108,111,97,116,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,115,101,116,117,112,0,95,109,97,107,101,110,111,116,101,95,110,101,119,0,95,109,97,107,101,110,111,116,101,95,116,105,99,107,0,95,109,97,107,101,110,111,116,101,95,102,108, 111,97,116,0,95,109,97,107,101,110,111,116,101,95,115,116,111,112,0,95,109,97,107,101,110,111,116,101,95,99,108,101,97,114,0,95,109,97,107,101,110,111,116,101,95,115,101,116,117,112,0,95,115,116,114,105,112,110,111,116,101,95,110,101,119,0,95,115,116, 114,105,112,110,111,116,101,95,102,108,111,97,116,0,95,115,116,114,105,112,110,111,116,101,95,115,101,116,117,112,0,95,112,111,108,121,95,110,101,119,0,95,112,111,108,121,95,102,108,111,97,116,0,95,112,111,108,121,95,115,116,111,112,0,95,112,111,108, 121,95,99,108,101,97,114,0,95,112,111,108,121,95,102,114,101,101,0,95,112,111,108,121,95,115,101,116,117,112,0,95,98,97,103,95,110,101,119,0,95,98,97,103,95,102,108,111,97,116,0,95,98,97,103,95,102,108,117,115,104,0,95,98,97,103,95,99,108,101,97,114, 0,95,98,97,103,95,115,101,116,117,112,0,95,120,95,109,105,100,105,95,115,101,116,117,112,0,95,99,111,117,110,116,46,51,51,57,57,0,95,112,114,101,118,46,51,51,57,56,0,95,109,105,100,105,105,110,95,115,121,109,0,95,115,121,115,101,120,105,110,95,115,121, 109,0,95,109,105,100,105,105,110,95,99,108,97,115,115,0,95,115,121,115,101,120,105,110,95,99,108,97,115,115,0,95,110,111,116,101,105,110,95,115,121,109,0,95,110,111,116,101,105,110,95,99,108,97,115,115,0,95,99,116,108,105,110,95,115,121,109,0,95,99,116, 108,105,110,95,99,108,97,115,115,0,95,112,103,109,105,110,95,115,121,109,0,95,112,103,109,105,110,95,99,108,97,115,115,0,95,98,101,110,100,105,110,95,115,121,109,0,95,98,101,110,100,105,110,95,99,108,97,115,115,0,95,116,111,117,99,104,105,110,95,115, 121,109,0,95,116,111,117,99,104,105,110,95,99,108,97,115,115,0,95,112,111,108,121,116,111,117,99,104,105,110,95,115,121,109,0,95,112,111,108,121,116,111,117,99,104,105,110,95,99,108,97,115,115,0,95,109,105,100,105,99,108,107,105,110,95,115,121,109,0, 95,109,105,100,105,99,108,107,105,110,95,99,108,97,115,115,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,115,121,109,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,99,108,97,115,115,0,95,109,105,100,105,111,117,116,95, 99,108,97,115,115,0,95,110,111,116,101,111,117,116,95,99,108,97,115,115,0,95,99,116,108,111,117,116,95,99,108,97,115,115,0,95,112,103,109,111,117,116,95,99,108,97,115,115,0,95,98,101,110,100,111,117,116,95,99,108,97,115,115,0,95,116,111,117,99,104,111, 117,116,95,99,108,97,115,115,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,99,108,97,115,115,0,95,109,97,107,101,110,111,116,101,95,99,108,97,115,115,0,95,115,116,114,105,112,110,111,116,101,95,99,108,97,115,115,0,95,112,111,108,121,95,99,108, 97,115,115,0,95,98,97,103,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,109,105,115,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100, 47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,109,105,115,99,46,111,0,95,109,97,107,101,115,101,101,100,0,95,114,97,110,100,111,109,95,110,101,119,0,95,114,97,110,100,111,109,95,98,97,110,103,0,95,114,97,110,100,111, 109,95,115,101,101,100,0,95,114,97,110,100,111,109,95,115,101,116,117,112,0,95,108,111,97,100,98,97,110,103,95,110,101,119,0,95,108,111,97,100,98,97,110,103,95,108,111,97,100,98,97,110,103,0,95,108,111,97,100,98,97,110,103,95,115,101,116,117,112,0,95, 110,97,109,101,99,97,110,118,97,115,95,110,101,119,0,95,110,97,109,101,99,97,110,118,97,115,95,102,114,101,101,0,95,110,97,109,101,99,97,110,118,97,115,95,115,101,116,117,112,0,95,115,101,114,105,97,108,95,102,108,111,97,116,0,95,115,101,114,105,97,108, 95,110,101,119,0,95,115,101,114,105,97,108,95,115,101,116,117,112,0,95,99,112,117,116,105,109,101,95,98,97,110,103,0,95,99,112,117,116,105,109,101,95,98,97,110,103,50,0,95,99,112,117,116,105,109,101,95,110,101,119,0,95,99,112,117,116,105,109,101,95,115, 101,116,117,112,0,95,114,101,97,108,116,105,109,101,95,98,97,110,103,0,95,114,101,97,108,116,105,109,101,95,98,97,110,103,50,0,95,114,101,97,108,116,105,109,101,95,110,101,119,0,95,114,101,97,108,116,105,109,101,95,115,101,116,117,112,0,95,120,95,109, 105,115,99,95,115,101,116,117,112,0,95,114,97,110,100,111,109,95,110,101,120,116,115,101,101,100,46,53,52,48,54,0,95,114,97,110,100,111,109,95,99,108,97,115,115,0,95,108,111,97,100,98,97,110,103,95,99,108,97,115,115,0,95,110,97,109,101,99,97,110,118, 97,115,95,99,108,97,115,115,0,95,115,101,114,105,97,108,95,99,108,97,115,115,0,95,99,112,117,116,105,109,101,95,99,108,97,115,115,0,95,114,101,97,108,116,105,109,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,110, 101,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,110,101,116,46,111,0,95,110,101, 116,115,101,110,100,95,110,101,119,0,95,110,101,116,115,101,110,100,95,99,111,110,110,101,99,116,0,95,95,79,83,83,119,97,112,73,110,116,49,54,0,95,110,101,116,115,101,110,100,95,100,105,115,99,111,110,110,101,99,116,0,95,110,101,116,115,101,110,100,95, 115,101,110,100,0,95,110,101,116,115,101,110,100,95,102,114,101,101,0,95,110,101,116,115,101,110,100,95,115,101,116,117,112,0,95,110,101,116,114,101,99,101,105,118,101,95,110,111,116,105,102,121,0,95,110,101,116,114,101,99,101,105,118,101,95,100,111, 105,116,0,95,110,101,116,114,101,99,101,105,118,101,95,99,111,110,110,101,99,116,112,111,108,108,0,95,110,101,116,114,101,99,101,105,118,101,95,110,101,119,0,95,110,101,116,114,101,99,101,105,118,101,95,102,114,101,101,0,95,110,101,116,114,101,99,101, 105,118,101,95,115,101,116,117,112,0,95,120,95,110,101,116,95,115,101,116,117,112,0,95,112,108,101,97,115,101,119,97,114,110,46,52,52,53,53,0,95,108,97,115,116,119,97,114,110,116,105,109,101,46,52,52,53,52,0,95,110,101,116,115,101,110,100,95,99,108,97, 115,115,0,95,110,101,116,114,101,99,101,105,118,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,113,108,105,115,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114, 111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,113,108,105,115,116,46,111,0,95,113,108,105,115,116,95,110,101,119,0,95,113,108,105,115,116,95,114,101,119,105,110,100,0,95,113,108,105,115, 116,95,100,111,110,101,120,116,0,95,113,108,105,115,116,95,110,101,120,116,0,95,113,108,105,115,116,95,98,97,110,103,0,95,113,108,105,115,116,95,116,105,99,107,0,95,113,108,105,115,116,95,97,100,100,0,95,113,108,105,115,116,95,97,100,100,50,0,95,113, 108,105,115,116,95,99,108,101,97,114,0,95,113,108,105,115,116,95,115,101,116,0,95,113,108,105,115,116,95,114,101,97,100,0,95,113,108,105,115,116,95,119,114,105,116,101,0,95,113,108,105,115,116,95,112,114,105,110,116,0,95,113,108,105,115,116,95,116,101, 109,112,111,0,95,113,108,105,115,116,95,102,114,101,101,0,95,116,101,120,116,102,105,108,101,95,110,101,119,0,95,116,101,120,116,102,105,108,101,95,98,97,110,103,0,95,116,101,120,116,102,105,108,101,95,114,101,119,105,110,100,0,95,116,101,120,116,102, 105,108,101,95,102,114,101,101,0,95,120,95,113,108,105,115,116,95,115,101,116,117,112,0,95,113,108,105,115,116,95,99,108,97,115,115,0,95,116,101,120,116,102,105,108,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,116, 105,109,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,116,105,109,101,46,111,0,95, 100,101,108,97,121,95,98,97,110,103,0,95,100,101,108,97,121,95,115,116,111,112,0,95,100,101,108,97,121,95,102,116,49,0,95,100,101,108,97,121,95,102,108,111,97,116,0,95,100,101,108,97,121,95,116,105,99,107,0,95,100,101,108,97,121,95,102,114,101,101,0, 95,100,101,108,97,121,95,110,101,119,0,95,100,101,108,97,121,95,115,101,116,117,112,0,95,109,101,116,114,111,95,116,105,99,107,0,95,109,101,116,114,111,95,102,108,111,97,116,0,95,109,101,116,114,111,95,98,97,110,103,0,95,109,101,116,114,111,95,115,116, 111,112,0,95,109,101,116,114,111,95,102,116,49,0,95,109,101,116,114,111,95,102,114,101,101,0,95,109,101,116,114,111,95,110,101,119,0,95,109,101,116,114,111,95,115,101,116,117,112,0,95,108,105,110,101,95,116,105,99,107,0,95,108,105,110,101,95,102,108, 111,97,116,0,95,108,105,110,101,95,102,116,49,0,95,108,105,110,101,95,115,116,111,112,0,95,108,105,110,101,95,115,101,116,0,95,108,105,110,101,95,102,114,101,101,0,95,108,105,110,101,95,110,101,119,0,95,108,105,110,101,95,115,101,116,117,112,0,95,116, 105,109,101,114,95,98,97,110,103,0,95,116,105,109,101,114,95,98,97,110,103,50,0,95,116,105,109,101,114,95,110,101,119,0,95,116,105,109,101,114,95,115,101,116,117,112,0,95,112,105,112,101,95,110,101,119,0,95,104,97,110,103,95,102,114,101,101,0,95,104, 97,110,103,95,116,105,99,107,0,95,112,105,112,101,95,108,105,115,116,0,95,112,105,112,101,95,102,108,117,115,104,0,95,112,105,112,101,95,99,108,101,97,114,0,95,112,105,112,101,95,115,101,116,117,112,0,95,120,95,116,105,109,101,95,115,101,116,117,112, 0,95,100,101,108,97,121,95,99,108,97,115,115,0,95,109,101,116,114,111,95,99,108,97,115,115,0,95,108,105,110,101,95,99,108,97,115,115,0,95,116,105,109,101,114,95,99,108,97,115,115,0,95,112,105,112,101,95,99,108,97,115,115,0,108,105,98,112,100,95,119,114, 97,112,112,101,114,47,115,95,108,105,98,112,100,109,105,100,105,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,108,105,98,112,100,95,119,114,97, 112,112,101,114,47,115,95,108,105,98,112,100,109,105,100,105,46,111,0,95,111,117,116,109,105,100,105,95,110,111,116,101,111,110,0,95,111,117,116,109,105,100,105,95,99,111,110,116,114,111,108,99,104,97,110,103,101,0,95,111,117,116,109,105,100,105,95,112, 114,111,103,114,97,109,99,104,97,110,103,101,0,95,111,117,116,109,105,100,105,95,112,105,116,99,104,98,101,110,100,0,95,111,117,116,109,105,100,105,95,97,102,116,101,114,116,111,117,99,104,0,95,111,117,116,109,105,100,105,95,112,111,108,121,97,102,116, 101,114,116,111,117,99,104,0,95,111,117,116,109,105,100,105,95,98,121,116,101,0,95,115,121,115,95,103,101,116,95,109,105,100,105,95,97,112,105,115,0,95,115,121,115,95,108,105,115,116,109,105,100,105,100,101,118,115,0,95,115,121,115,95,103,101,116,95, 109,105,100,105,95,112,97,114,97,109,115,0,95,115,121,115,95,111,112,101,110,95,109,105,100,105,0,95,115,121,115,95,99,108,111,115,101,95,109,105,100,105,0,95,115,121,115,95,114,101,111,112,101,110,95,109,105,100,105,0,95,115,121,115,95,105,110,105,116, 109,105,100,105,113,117,101,117,101,0,95,115,121,115,95,112,111,108,108,109,105,100,105,113,117,101,117,101,0,95,115,121,115,95,115,101,116,109,105,100,105,116,105,109,101,100,105,102,102,0,95,103,108,111,98,95,109,105,100,105,95,115,101,116,97,112,105, 0,95,103,108,111,98,95,109,105,100,105,95,112,114,111,112,101,114,116,105,101,115,0,95,103,108,111,98,95,109,105,100,105,95,100,105,97,108,111,103,0,108,105,98,112,100,95,119,114,97,112,112,101,114,47,120,95,108,105,98,112,100,114,101,99,101,105,118, 101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,108,105,98,112,100,95,119,114,97,112,112,101,114,47,120,95,108,105,98,112,100,114,101,99,101, 105,118,101,46,111,0,95,108,105,98,112,100,114,101,99,98,97,110,103,0,95,108,105,98,112,100,114,101,99,102,108,111,97,116,0,95,108,105,98,112,100,114,101,99,115,121,109,98,111,108,0,95,108,105,98,112,100,114,101,99,112,111,105,110,116,101,114,0,95,108, 105,98,112,100,114,101,99,108,105,115,116,0,95,108,105,98,112,100,114,101,99,97,110,121,116,104,105,110,103,0,95,108,105,98,112,100,114,101,99,101,105,118,101,95,102,114,101,101,0,95,108,105,98,112,100,114,101,99,101,105,118,101,95,110,101,119,0,95,108, 105,98,112,100,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,108,105,98,112,100,114,101,99,95,99,108,97,115,115,0,108,105,98,112,100,95,119,114,97,112,112,101,114,47,122,95,108,105,98,112,100,46,99,0,47,85,115,101,114,115,47,114,117,115,115, 114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,108,105,98,112,100,95,119,114,97,112,112,101,114,47,122,95,108,105,98,112,100,46,111,0,95,103,101,116,95,111,98,106,101,99,116,0,95,108,105,98,112, 100,95,105,110,105,116,0,95,108,105,98,112,100,95,99,108,101,97,114,95,115,101,97,114,99,104,95,112,97,116,104,0,95,108,105,98,112,100,95,97,100,100,95,116,111,95,115,101,97,114,99,104,95,112,97,116,104,0,95,108,105,98,112,100,95,105,110,105,116,95,97, 117,100,105,111,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,114,97,119,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,108,105,98, 112,100,95,112,114,111,99,101,115,115,95,115,104,111,114,116,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,102,108,111,97,116,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,100,111,117,98,108,101,0,95,108,105,98,112,100,95,115,116, 97,114,116,95,109,101,115,115,97,103,101,0,95,108,105,98,112,100,95,97,100,100,95,102,108,111,97,116,0,95,108,105,98,112,100,95,97,100,100,95,115,121,109,98,111,108,0,95,108,105,98,112,100,95,102,105,110,105,115,104,95,108,105,115,116,0,95,108,105,98, 112,100,95,102,105,110,105,115,104,95,109,101,115,115,97,103,101,0,95,108,105,98,112,100,95,98,105,110,100,0,95,108,105,98,112,100,95,117,110,98,105,110,100,0,95,108,105,98,112,100,95,115,121,109,98,111,108,0,95,108,105,98,112,100,95,102,108,111,97,116, 0,95,108,105,98,112,100,95,98,97,110,103,0,95,108,105,98,112,100,95,98,108,111,99,107,115,105,122,101,0,95,108,105,98,112,100,95,101,120,105,115,116,115,0,95,108,105,98,112,100,95,110,111,116,101,111,110,0,95,108,105,98,112,100,95,99,111,110,116,114, 111,108,99,104,97,110,103,101,0,95,108,105,98,112,100,95,112,114,111,103,114,97,109,99,104,97,110,103,101,0,95,108,105,98,112,100,95,112,105,116,99,104,98,101,110,100,0,95,108,105,98,112,100,95,97,102,116,101,114,116,111,117,99,104,0,95,108,105,98,112, 100,95,112,111,108,121,97,102,116,101,114,116,111,117,99,104,0,95,108,105,98,112,100,95,109,105,100,105,98,121,116,101,0,95,108,105,98,112,100,95,115,121,115,101,120,0,95,108,105,98,112,100,95,115,121,115,114,101,97,108,116,105,109,101,0,95,108,105,98, 112,100,95,111,112,101,110,102,105,108,101,0,95,108,105,98,112,100,95,99,108,111,115,101,102,105,108,101,0,95,108,105,98,112,100,95,103,101,116,100,111,108,108,97,114,122,101,114,111,0,95,102,108,111,97,116,95,116,111,95,115,104,111,114,116,0,95,115, 104,111,114,116,95,116,111,95,102,108,111,97,116,0,95,108,105,98,112,100,95,112,114,105,110,116,104,111,111,107,0,95,108,105,98,112,100,95,98,97,110,103,104,111,111,107,0,95,108,105,98,112,100,95,102,108,111,97,116,104,111,111,107,0,95,108,105,98,112, 100,95,115,121,109,98,111,108,104,111,111,107,0,95,108,105,98,112,100,95,108,105,115,116,104,111,111,107,0,95,108,105,98,112,100,95,109,101,115,115,97,103,101,104,111,111,107,0,95,108,105,98,112,100,95,110,111,116,101,111,110,104,111,111,107,0,95,108, 105,98,112,100,95,99,111,110,116,114,111,108,99,104,97,110,103,101,104,111,111,107,0,95,108,105,98,112,100,95,112,114,111,103,114,97,109,99,104,97,110,103,101,104,111,111,107,0,95,108,105,98,112,100,95,112,105,116,99,104,98,101,110,100,104,111,111,107, 0,95,108,105,98,112,100,95,97,102,116,101,114,116,111,117,99,104,104,111,111,107,0,95,108,105,98,112,100,95,112,111,108,121,97,102,116,101,114,116,111,117,99,104,104,111,111,107,0,95,108,105,98,112,100,95,109,105,100,105,98,121,116,101,104,111,111,107, 0,95,116,105,99,107,115,95,112,101,114,95,98,117,102,102,101,114,0,95,97,114,103,118,0,95,99,117,114,114,0,95,97,114,103,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,250,237,254,7,0,0,0,3,0,0,0,6,0,0,0,9,0,0,0,172,4,0,0,133,0,16,0,1,0,0,0,208,1,0,0,95,95,84, 69,88,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,9,0,0,0,0,0,0,144,9,0,7,0,0,0,5,0,0,0,6,0,0,0,0,0,0,0,95,95,116,101,120,116,0,0,0,0,0,0,0,0,0,0,95,95,84,69,88,84,0,0,0,0,0,0,0,0,0,0,164,11,0,0,184,239,8,0,164,11,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,128,0,0,0, 0,0,0,0,0,95,95,99,115,116,114,105,110,103,0,0,0,0,0,0,0,95,95,84,69,88,84,0,0,0,0,0,0,0,0,0,0,92,251,8,0,131,135,0,0,92,251,8,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,95,95,99,111,110,115,116,0,0,0,0,0,0,0,0,0,95,95,84,69,88,84,0,0,0,0,0,0, 0,0,0,0,224,130,9,0,208,5,0,0,224,130,9,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,115,121,109,98,111,108,95,115,116,117,98,0,0,0,95,95,84,69,88,84,0,0,0,0,0,0,0,0,0,0,176,136,9,0,154,2,0,0,176,136,9,0,1,0,0,0,0,0,0,0,0,0,0,0,8,5,0,128,0, 0,0,0,6,0,0,0,95,95,115,116,117,98,95,104,101,108,112,101,114,0,0,0,95,95,84,69,88,84,0,0,0,0,0,0,0,0,0,0,74,139,9,0,98,4,0,0,74,139,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,128,0,0,0,0,0,0,0,0,95,95,117,110,119,105,110,100,95,105,110,102,111,0,0,0,95,95,84, 69,88,84,0,0,0,0,0,0,0,0,0,0,176,143,9,0,72,0,0,0,176,143,9,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,140,1,0,0,95,95,68,65,84,65,0,0,0,0,0,0,0,0,0,0,0,144,9,0,0,80,0,0,0,144,9,0,0,32,0,0,7,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,95,95,110,108, 95,115,121,109,98,111,108,95,112,116,114,0,95,95,68,65,84,65,0,0,0,0,0,0,0,0,0,0,0,144,9,0,232,2,0,0,0,144,9,0,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,111,0,0,0,0,0,0,0,95,95,108,97,95,115,121,109,98,111,108,95,112,116,114,0,95,95,68,65,84,65,0,0,0,0,0,0,0,0, 0,0,232,146,9,0,188,1,0,0,232,146,9,0,2,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,41,1,0,0,0,0,0,0,95,95,100,97,116,97,0,0,0,0,0,0,0,0,0,0,95,95,68,65,84,65,0,0,0,0,0,0,0,0,0,0,192,148,9,0,252,14,0,0,192,148,9,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95, 95,98,115,115,0,0,0,0,0,0,0,0,0,0,0,95,95,68,65,84,65,0,0,0,0,0,0,0,0,0,0,192,163,9,0,8,48,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,95,95,99,111,109,109,111,110,0,0,0,0,0,0,0,0,95,95,68,65,84,65,0,0,0,0,0,0,0,0,0,0,224,211,9,0,56,10, 0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,56,0,0,0,95,95,76,73,78,75,69,68,73,84,0,0,0,0,0,0,0,224,9,0,0,112,4,0,0,176,9,0,212,99,4,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,52,0,0,0,24,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,64,108, 111,97,100,101,114,95,112,97,116,104,47,108,105,98,112,100,46,100,121,108,105,98,0,0,0,0,27,0,0,0,24,0,0,0,108,175,75,98,159,80,209,129,158,39,148,147,230,95,89,174,34,0,0,128,48,0,0,0,0,176,9,0,48,0,0,0,48,176,9,0,88,0,0,0,0,0,0,0,0,0,0,0,136,176,9, 0,44,8,0,0,180,184,9,0,180,75,0,0,2,0,0,0,24,0,0,0,104,4,10,0,200,52,0,0,40,132,12,0,172,143,1,0,11,0,0,0,80,0,0,0,0,0,0,0,98,48,0,0,98,48,0,0,243,3,0,0,85,52,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,125,12,0,152,1,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,52,0,0,0,24,0,0,0,2,0,0,0,1,2,125,0,0,0,1,0,47,117,115,114,47,108,105,98,47,108,105,98,83,121,115,116,101,109,46,66,46,100,121,108,105,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,12,1,126,14,141, 131,172,239,8,0,137,4,36,232,189,181,7,0,131,125,12,0,116,117,141,131,20,152,9,0,139,0,137,4,36,232,26,241,6,0,137,69,244,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,246,222,6,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0, 0,0,232,228,61,6,0,139,69,244,217,88,32,139,85,244,141,131,88,132,9,0,139,0,137,68,36,4,137,20,36,232,153,227,6,0,139,85,244,141,131,48,119,9,0,139,0,137,66,28,139,69,244,137,69,228,235,104,141,131,16,152,9,0,139,0,137,4,36,232,165,240,6,0,137,69,240, 139,85,240,139,77,240,141,131,88,132,9,0,139,0,137,68,36,12,141,131,88,132,9,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,212,214,6,0,139,85,240,141,131,88,132,9,0,139,0,137,68,36,4,137,20,36,232,47,227,6,0,139,85,240,141,131,48,119,9,0,139,0,137,66, 28,139,69,240,137,69,228,139,69,228,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,235,37,139,69,244,243,15, 16,8,139,69,240,243,15,16,0,243,15,88,193,139,69,236,243,15,17,0,131,69,236,4,131,69,244,4,131,69,240,4,255,77,232,131,125,232,255,117,210,139,69,8,131,192,20,201,195,85,137,229,131,236,88,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0, 137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,233,87,1,0,0,139,69,244,139,0,137,69,228,139,69,244,131,192,4,139,0,137,69,224,139,69,244,131,192,8,139,0,137,69,220,139,69,244,131,192,12,139,0,137,69,216,139,69,244, 131,192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0,137,69,204,139,69,244,131,192,28,139,0,137,69,200,139,69,240,139,0,137,69,196,139,69,240,131,192,4,139,0,137,69,192,139,69,240,131,192,8,139,0,137,69,188,139, 69,240,131,192,12,139,0,137,69,184,139,69,240,131,192,16,139,0,137,69,180,139,69,240,131,192,20,139,0,137,69,176,139,69,240,131,192,24,139,0,137,69,172,139,69,240,131,192,28,139,0,137,69,168,243,15,16,69,228,243,15,88,69,196,139,69,236,243,15,17,0,139, 69,236,131,192,4,243,15,16,69,224,243,15,88,69,192,243,15,17,0,139,69,236,131,192,8,243,15,16,69,220,243,15,88,69,188,243,15,17,0,139,69,236,131,192,12,243,15,16,69,216,243,15,88,69,184,243,15,17,0,139,69,236,131,192,16,243,15,16,69,212,243,15,88,69, 180,243,15,17,0,139,69,236,131,192,20,243,15,16,69,208,243,15,88,69,176,243,15,17,0,139,69,236,131,192,24,243,15,16,69,204,243,15,88,69,172,243,15,17,0,139,69,236,131,192,28,243,15,16,69,200,243,15,88,69,168,243,15,17,0,131,109,232,8,131,69,244,32,131, 69,240,32,131,69,236,32,131,125,232,0,15,133,159,254,255,255,139,69,8,131,192,20,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139, 0,137,69,232,235,27,139,69,244,243,15,16,0,243,15,88,69,240,139,69,236,243,15,17,0,131,69,236,4,131,69,244,4,255,77,232,131,125,232,255,117,220,139,69,8,131,192,20,201,195,85,137,229,131,236,56,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139, 0,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,233,254,0,0,0,139,69,244,139,0,137,69,228,139,69,244,131,192,4,139,0,137,69,224,139,69,244,131,192,8,139,0,137,69,220,139,69,244,131,192,12,139,0,137,69,216, 139,69,244,131,192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0,137,69,204,139,69,244,131,192,28,139,0,137,69,200,243,15,16,69,228,243,15,88,69,240,139,69,236,243,15,17,0,139,69,236,131,192,4,243,15,16,69,224, 243,15,88,69,240,243,15,17,0,139,69,236,131,192,8,243,15,16,69,220,243,15,88,69,240,243,15,17,0,139,69,236,131,192,12,243,15,16,69,216,243,15,88,69,240,243,15,17,0,139,69,236,131,192,16,243,15,16,69,212,243,15,88,69,240,243,15,17,0,139,69,236,131,192, 20,243,15,16,69,208,243,15,88,69,240,243,15,17,0,139,69,236,131,192,24,243,15,16,69,204,243,15,88,69,240,243,15,17,0,139,69,236,131,192,28,243,15,16,69,200,243,15,88,69,240,243,15,17,0,131,109,232,8,131,69,244,32,131,69,236,32,131,125,232,0,15,133,248, 254,255,255,139,69,8,131,192,20,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,20,131,224,7,133,192,116,52,139,69,20,137,68,36,20,139,69,16,137,68,36,16,139,69,12,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,4,0,0,0,141,131,63,252,255,255,137, 4,36,232,65,205,1,0,235,50,139,69,20,137,68,36,20,139,69,16,137,68,36,16,139,69,12,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,4,0,0,0,141,131,169,252,255,255,137,4,36,232,13,205,1,0,131,196,36,91,201,195,85,137,229,86,131,236,20,139,69,12,139,0,139, 16,139,69,12,131,192,8,139,0,139,72,4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,12,137,76,36,8,137,116,36,4,137,4,36,232,61,255,255,255,131,196,20,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139, 0,131,224,7,133,192,116,72,139,69,12,139,0,139,16,139,69,12,131,192,4,139,0,139,72,4,139,117,8,131,198,32,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,127,253,255,255,137,4,36,232,95,204,1,0, 235,70,139,69,12,139,0,139,16,139,69,12,131,192,4,139,0,139,72,4,139,117,8,131,198,32,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,225,253,255,255,137,4,36,232,23,204,1,0,131,196,32,91,94,201, 195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,183,249,255,255,141,131,139,233,8,0,137,4,36,232,189,181,6,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,109, 170,6,0,137,194,141,131,211,145,9,0,137,16,141,131,203,239,8,0,137,4,36,232,113,181,6,0,137,194,141,139,252,254,255,255,141,131,211,145,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,52,174,6,0,141,131,211,145,9,0,139,0,199,68,36, 4,28,0,0,0,137,4,36,232,237,178,6,0,141,131,142,233,8,0,137,4,36,232,35,181,6,0,137,194,141,131,211,145,9,0,139,0,137,84,36,4,137,4,36,232,47,178,6,0,141,131,139,233,8,0,137,4,36,232,255,180,6,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12, 36,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,179,169,6,0,137,194,141,131,215,145,9,0,137,16,141,131,215,145,9,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,105,178,6,0,141,131,203,239,8,0,137,4,36,232,159,180,6,0,137,194,141,139,66,255,255, 255,141,131,215,145,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,98,173,6,0,141,131,142,233,8,0,137,4,36,232,105,180,6,0,137,194,141,131,215,145,9,0,139,0,137,84,36,4,137,4,36,232,117,177,6,0,131,196,32,91,94,201,195,85,137,229, 83,131,236,52,232,0,0,0,0,91,131,125,12,1,126,14,141,131,6,232,8,0,137,4,36,232,238,173,7,0,131,125,12,0,116,117,141,131,77,144,9,0,139,0,137,4,36,232,75,233,6,0,137,69,244,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,39,215,6,0,139,69, 16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,21,54,6,0,139,69,244,217,88,32,139,85,244,141,131,137,124,9,0,139,0,137,68,36,4,137,20,36,232,202,219,6,0,139,85,244,141,131,97,111,9,0,139,0,137,66,28,139,69,244,137,69,228,235,104,141,131,73, 144,9,0,139,0,137,4,36,232,214,232,6,0,137,69,240,139,85,240,139,77,240,141,131,137,124,9,0,139,0,137,68,36,12,141,131,137,124,9,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,5,207,6,0,139,85,240,141,131,137,124,9,0,139,0,137,68,36,4,137,20,36,232,96, 219,6,0,139,85,240,141,131,97,111,9,0,139,0,137,66,28,139,69,240,137,69,228,139,69,228,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131, 192,16,139,0,137,69,232,235,43,139,69,244,243,15,16,8,139,69,240,243,15,16,0,15,40,209,243,15,92,208,15,40,194,139,69,236,243,15,17,0,131,69,236,4,131,69,244,4,131,69,240,4,255,77,232,131,125,232,255,117,204,139,69,8,131,192,20,201,195,85,137,229,131, 236,88,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,233,87,1,0,0,139,69,244,139,0,137,69,228,139,69,244,131,192,4,139,0,137,69,224,139,69,244,131,192, 8,139,0,137,69,220,139,69,244,131,192,12,139,0,137,69,216,139,69,244,131,192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0,137,69,204,139,69,244,131,192,28,139,0,137,69,200,139,69,240,139,0,137,69,196,139,69,240, 131,192,4,139,0,137,69,192,139,69,240,131,192,8,139,0,137,69,188,139,69,240,131,192,12,139,0,137,69,184,139,69,240,131,192,16,139,0,137,69,180,139,69,240,131,192,20,139,0,137,69,176,139,69,240,131,192,24,139,0,137,69,172,139,69,240,131,192,28,139,0,137, 69,168,243,15,16,69,228,243,15,92,69,196,139,69,236,243,15,17,0,139,69,236,131,192,4,243,15,16,69,224,243,15,92,69,192,243,15,17,0,139,69,236,131,192,8,243,15,16,69,220,243,15,92,69,188,243,15,17,0,139,69,236,131,192,12,243,15,16,69,216,243,15,92,69, 184,243,15,17,0,139,69,236,131,192,16,243,15,16,69,212,243,15,92,69,180,243,15,17,0,139,69,236,131,192,20,243,15,16,69,208,243,15,92,69,176,243,15,17,0,139,69,236,131,192,24,243,15,16,69,204,243,15,92,69,172,243,15,17,0,139,69,236,131,192,28,243,15,16, 69,200,243,15,92,69,168,243,15,17,0,131,109,232,8,131,69,244,32,131,69,240,32,131,69,236,32,131,125,232,0,15,133,159,254,255,255,139,69,8,131,192,20,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,139,0,137, 69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,235,27,139,69,244,243,15,16,0,243,15,92,69,240,139,69,236,243,15,17,0,131,69,236,4,131,69,244,4,255,77,232,131,125,232,255,117,220,139,69,8,131,192,20,201,195,85,137,229, 131,236,56,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,233,254,0,0,0,139,69,244,139,0,137,69,228,139,69,244,131,192,4,139,0,137,69,224,139,69, 244,131,192,8,139,0,137,69,220,139,69,244,131,192,12,139,0,137,69,216,139,69,244,131,192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0,137,69,204,139,69,244,131,192,28,139,0,137,69,200,243,15,16,69,228,243,15, 92,69,240,139,69,236,243,15,17,0,139,69,236,131,192,4,243,15,16,69,224,243,15,92,69,240,243,15,17,0,139,69,236,131,192,8,243,15,16,69,220,243,15,92,69,240,243,15,17,0,139,69,236,131,192,12,243,15,16,69,216,243,15,92,69,240,243,15,17,0,139,69,236,131, 192,16,243,15,16,69,212,243,15,92,69,240,243,15,17,0,139,69,236,131,192,20,243,15,16,69,208,243,15,92,69,240,243,15,17,0,139,69,236,131,192,24,243,15,16,69,204,243,15,92,69,240,243,15,17,0,139,69,236,131,192,28,243,15,16,69,200,243,15,92,69,240,243,15, 17,0,131,109,232,8,131,69,244,32,131,69,236,32,131,125,232,0,15,133,248,254,255,255,139,69,8,131,192,20,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,0,131,224,7,133,192,116,77,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0, 139,72,4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,56,252,255,255,137,4,36,232,78,197,1,0,235,75,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72, 4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,168,252,255,255,137,4,36,232,1,197,1,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91, 139,69,12,139,0,139,0,131,224,7,133,192,116,72,139,69,12,139,0,139,16,139,69,12,131,192,4,139,0,139,72,4,139,117,8,131,198,32,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,141,253,255,255,137, 4,36,232,152,196,1,0,235,70,139,69,12,139,0,139,16,139,69,12,131,192,4,139,0,139,72,4,139,117,8,131,198,32,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,239,253,255,255,137,4,36,232,80,196,1, 0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,191,249,255,255,141,131,237,225,8,0,137,4,36,232,246,173,6,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116, 36,4,137,4,36,232,166,162,6,0,137,194,141,131,20,138,9,0,137,16,141,131,20,138,9,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,92,171,6,0,141,131,4,232,8,0,137,4,36,232,146,173,6,0,137,194,141,139,135,254,255,255,141,131,20,138,9,0,139,0,199,68,36,12,0,0, 0,0,137,84,36,8,137,76,36,4,137,4,36,232,85,166,6,0,141,131,199,225,8,0,137,4,36,232,92,173,6,0,137,194,141,131,20,138,9,0,139,0,137,84,36,4,137,4,36,232,104,170,6,0,141,131,237,225,8,0,137,4,36,232,56,173,6,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0, 0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,236,161,6,0,137,194,141,131,24,138,9,0,137,16,141,131,24,138,9,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,162,170,6,0,141,131,4,232,8,0,137,4,36,232,216,172,6,0,137,194,141,139, 66,255,255,255,141,131,24,138,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,155,165,6,0,141,131,199,225,8,0,137,4,36,232,162,172,6,0,137,194,141,131,24,138,9,0,139,0,137,84,36,4,137,4,36,232,174,169,6,0,131,196,32,91,94,201,195, 85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,12,1,126,14,141,131,94,224,8,0,137,4,36,232,39,166,7,0,131,125,12,0,116,117,141,131,142,136,9,0,139,0,137,4,36,232,132,225,6,0,137,69,244,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,96,207, 6,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,78,46,6,0,139,69,244,217,88,32,139,85,244,141,131,194,116,9,0,139,0,137,68,36,4,137,20,36,232,3,212,6,0,139,85,244,141,131,154,103,9,0,139,0,137,66,28,139,69,244,137,69,228,235,104, 141,131,138,136,9,0,139,0,137,4,36,232,15,225,6,0,137,69,240,139,85,240,139,77,240,141,131,194,116,9,0,139,0,137,68,36,12,141,131,194,116,9,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,62,199,6,0,139,85,240,141,131,194,116,9,0,139,0,137,68,36,4,137, 20,36,232,153,211,6,0,139,85,240,141,131,154,103,9,0,139,0,137,66,28,139,69,240,137,69,228,139,69,228,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69, 236,139,69,8,131,192,16,139,0,137,69,232,235,37,139,69,244,243,15,16,8,139,69,240,243,15,16,0,243,15,89,193,139,69,236,243,15,17,0,131,69,236,4,131,69,244,4,131,69,240,4,255,77,232,131,125,232,255,117,210,139,69,8,131,192,20,201,195,85,137,229,131,236, 88,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,233,87,1,0,0,139,69,244,139,0,137,69,228,139,69,244,131,192,4,139,0,137,69,224,139,69,244,131,192,8,139, 0,137,69,220,139,69,244,131,192,12,139,0,137,69,216,139,69,244,131,192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0,137,69,204,139,69,244,131,192,28,139,0,137,69,200,139,69,240,139,0,137,69,196,139,69,240,131, 192,4,139,0,137,69,192,139,69,240,131,192,8,139,0,137,69,188,139,69,240,131,192,12,139,0,137,69,184,139,69,240,131,192,16,139,0,137,69,180,139,69,240,131,192,20,139,0,137,69,176,139,69,240,131,192,24,139,0,137,69,172,139,69,240,131,192,28,139,0,137,69, 168,243,15,16,69,228,243,15,89,69,196,139,69,236,243,15,17,0,139,69,236,131,192,4,243,15,16,69,224,243,15,89,69,192,243,15,17,0,139,69,236,131,192,8,243,15,16,69,220,243,15,89,69,188,243,15,17,0,139,69,236,131,192,12,243,15,16,69,216,243,15,89,69,184, 243,15,17,0,139,69,236,131,192,16,243,15,16,69,212,243,15,89,69,180,243,15,17,0,139,69,236,131,192,20,243,15,16,69,208,243,15,89,69,176,243,15,17,0,139,69,236,131,192,24,243,15,16,69,204,243,15,89,69,172,243,15,17,0,139,69,236,131,192,28,243,15,16,69, 200,243,15,89,69,168,243,15,17,0,131,109,232,8,131,69,244,32,131,69,240,32,131,69,236,32,131,125,232,0,15,133,159,254,255,255,139,69,8,131,192,20,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,139,0,137,69, 240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,235,27,139,69,244,243,15,16,0,243,15,89,69,240,139,69,236,243,15,17,0,131,69,236,4,131,69,244,4,255,77,232,131,125,232,255,117,220,139,69,8,131,192,20,201,195,85,137,229,131, 236,56,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,233,254,0,0,0,139,69,244,139,0,137,69,228,139,69,244,131,192,4,139,0,137,69,224,139,69,244, 131,192,8,139,0,137,69,220,139,69,244,131,192,12,139,0,137,69,216,139,69,244,131,192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0,137,69,204,139,69,244,131,192,28,139,0,137,69,200,243,15,16,69,228,243,15,89,69, 240,139,69,236,243,15,17,0,139,69,236,131,192,4,243,15,16,69,224,243,15,89,69,240,243,15,17,0,139,69,236,131,192,8,243,15,16,69,220,243,15,89,69,240,243,15,17,0,139,69,236,131,192,12,243,15,16,69,216,243,15,89,69,240,243,15,17,0,139,69,236,131,192,16, 243,15,16,69,212,243,15,89,69,240,243,15,17,0,139,69,236,131,192,20,243,15,16,69,208,243,15,89,69,240,243,15,17,0,139,69,236,131,192,24,243,15,16,69,204,243,15,89,69,240,243,15,17,0,139,69,236,131,192,28,243,15,16,69,200,243,15,89,69,240,243,15,17,0, 131,109,232,8,131,69,244,32,131,69,236,32,131,125,232,0,15,133,248,254,255,255,139,69,8,131,192,20,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,0,131,224,7,133,192,116,77,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139, 72,4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,62,252,255,255,137,4,36,232,141,189,1,0,235,75,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72,4, 139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,168,252,255,255,137,4,36,232,64,189,1,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139, 69,12,139,0,139,0,131,224,7,133,192,116,72,139,69,12,139,0,139,16,139,69,12,131,192,4,139,0,139,72,4,139,117,8,131,198,32,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,141,253,255,255,137,4,36, 232,215,188,1,0,235,70,139,69,12,139,0,139,16,139,69,12,131,192,4,139,0,139,72,4,139,117,8,131,198,32,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,239,253,255,255,137,4,36,232,143,188,1,0,131, 196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,197,249,255,255,141,131,75,218,8,0,137,4,36,232,53,166,6,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4, 137,4,36,232,229,154,6,0,137,194,141,131,91,130,9,0,137,16,141,131,91,130,9,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,155,163,6,0,141,131,67,224,8,0,137,4,36,232,209,165,6,0,137,194,141,139,135,254,255,255,141,131,91,130,9,0,139,0,199,68,36,12,0,0,0, 0,137,84,36,8,137,76,36,4,137,4,36,232,148,158,6,0,141,131,6,218,8,0,137,4,36,232,155,165,6,0,137,194,141,131,91,130,9,0,139,0,137,84,36,4,137,4,36,232,167,162,6,0,141,131,75,218,8,0,137,4,36,232,119,165,6,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0, 199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,43,154,6,0,137,194,141,131,95,130,9,0,137,16,141,131,95,130,9,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,225,162,6,0,141,131,67,224,8,0,137,4,36,232,23,165,6,0,137,194,141,139, 66,255,255,255,141,131,95,130,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,218,157,6,0,141,131,6,218,8,0,137,4,36,232,225,164,6,0,137,194,141,131,95,130,9,0,139,0,137,84,36,4,137,4,36,232,237,161,6,0,131,196,32,91,94,201,195,85, 137,229,83,131,236,52,232,0,0,0,0,91,131,125,12,1,126,14,141,131,188,216,8,0,137,4,36,232,102,158,7,0,131,125,12,0,116,117,141,131,213,128,9,0,139,0,137,4,36,232,195,217,6,0,137,69,244,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,159,199, 6,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,141,38,6,0,139,69,244,217,88,32,139,85,244,141,131,1,109,9,0,139,0,137,68,36,4,137,20,36,232,66,204,6,0,139,85,244,141,131,217,95,9,0,139,0,137,66,28,139,69,244,137,69,228,235,104,141, 131,209,128,9,0,139,0,137,4,36,232,78,217,6,0,137,69,240,139,85,240,139,77,240,141,131,1,109,9,0,139,0,137,68,36,12,141,131,1,109,9,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,125,191,6,0,139,85,240,141,131,1,109,9,0,139,0,137,68,36,4,137,20,36,232, 216,203,6,0,139,85,240,141,131,217,95,9,0,139,0,137,66,28,139,69,240,137,69,228,139,69,228,131,196,52,91,201,195,85,137,229,131,236,56,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137, 69,236,139,69,8,131,192,16,139,0,137,69,232,235,89,139,69,240,139,0,137,69,228,131,69,240,4,141,129,205,94,9,0,243,15,16,0,15,46,69,228,117,4,122,2,235,26,139,69,244,243,15,16,0,15,40,200,243,15,94,77,228,243,15,17,77,212,131,69,244,4,235,15,141,129, 205,94,9,0,243,15,16,0,243,15,17,69,212,139,69,236,243,15,16,77,212,243,15,17,8,131,69,236,4,255,77,232,131,125,232,255,117,158,139,69,8,131,192,20,201,195,85,137,229,129,236,152,0,0,0,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192, 8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,233,56,3,0,0,139,69,244,139,0,137,69,228,139,69,244,131,192,4,139,0,137,69,224,139,69,244,131,192,8,139,0,137,69,220,139,69,244,131,192,12,139,0,137,69,216,139, 69,244,131,192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0,137,69,204,139,69,244,131,192,28,139,0,137,69,200,139,69,240,139,0,137,69,196,139,69,240,131,192,4,139,0,137,69,192,139,69,240,131,192,8,139,0,137,69, 188,139,69,240,131,192,12,139,0,137,69,184,139,69,240,131,192,16,139,0,137,69,180,139,69,240,131,192,20,139,0,137,69,176,139,69,240,131,192,24,139,0,137,69,172,139,69,240,131,192,28,139,0,137,69,168,141,129,38,94,9,0,243,15,16,0,15,46,69,196,117,4,122, 2,235,23,243,15,16,69,228,15,40,200,243,15,94,77,196,243,15,17,141,108,255,255,255,235,18,141,129,38,94,9,0,243,15,16,0,243,15,17,133,108,255,255,255,139,69,236,243,15,16,141,108,255,255,255,243,15,17,8,139,69,236,131,192,4,137,133,112,255,255,255,141, 129,38,94,9,0,243,15,16,0,15,46,69,192,117,4,122,2,235,23,243,15,16,69,224,15,40,200,243,15,94,77,192,243,15,17,141,116,255,255,255,235,18,141,129,38,94,9,0,243,15,16,0,243,15,17,133,116,255,255,255,243,15,16,133,116,255,255,255,139,133,112,255,255,255, 243,15,17,0,139,69,236,131,192,8,137,133,120,255,255,255,141,129,38,94,9,0,243,15,16,0,15,46,69,188,117,4,122,2,235,23,243,15,16,69,220,15,40,200,243,15,94,77,188,243,15,17,141,124,255,255,255,235,18,141,129,38,94,9,0,243,15,16,0,243,15,17,133,124,255, 255,255,243,15,16,133,124,255,255,255,139,133,120,255,255,255,243,15,17,0,139,69,236,131,192,12,137,69,128,141,129,38,94,9,0,243,15,16,0,15,46,69,184,117,4,122,2,235,20,243,15,16,69,216,15,40,200,243,15,94,77,184,243,15,17,77,132,235,15,141,129,38,94, 9,0,243,15,16,0,243,15,17,69,132,243,15,16,69,132,139,69,128,243,15,17,0,139,69,236,131,192,16,137,69,136,141,129,38,94,9,0,243,15,16,0,15,46,69,180,117,4,122,2,235,20,243,15,16,69,212,15,40,200,243,15,94,77,180,243,15,17,77,140,235,15,141,129,38,94, 9,0,243,15,16,0,243,15,17,69,140,243,15,16,69,140,139,69,136,243,15,17,0,139,69,236,131,192,20,137,69,144,141,129,38,94,9,0,243,15,16,0,15,46,69,176,117,4,122,2,235,20,243,15,16,69,208,15,40,200,243,15,94,77,176,243,15,17,77,148,235,15,141,129,38,94, 9,0,243,15,16,0,243,15,17,69,148,243,15,16,69,148,139,69,144,243,15,17,0,139,69,236,131,192,24,137,69,152,141,129,38,94,9,0,243,15,16,0,15,46,69,172,117,4,122,2,235,20,243,15,16,69,204,15,40,200,243,15,94,77,172,243,15,17,77,156,235,15,141,129,38,94, 9,0,243,15,16,0,243,15,17,69,156,243,15,16,69,156,139,69,152,243,15,17,0,139,69,236,131,192,28,137,69,160,141,129,38,94,9,0,243,15,16,0,15,46,69,168,117,4,122,2,235,20,243,15,16,69,200,15,40,200,243,15,94,77,168,243,15,17,77,164,235,15,141,129,38,94, 9,0,243,15,16,0,243,15,17,69,164,243,15,16,69,164,139,69,160,243,15,17,0,131,109,232,8,131,69,244,32,131,69,240,32,131,69,236,32,131,125,232,0,15,133,190,252,255,255,139,69,8,131,192,20,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,131,192,4, 139,0,137,69,244,139,69,8,131,192,8,139,0,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,141,129,159,90,9,0,243,15,16,0,15,46,69,240,117,4,122,2,235,49,141,129,163,90,9,0,243,15,16,0,243,15,94,69,240,243,15, 17,69,240,235,27,139,69,244,243,15,16,0,243,15,89,69,240,139,69,236,243,15,17,0,131,69,236,4,131,69,244,4,255,77,232,131,125,232,255,117,220,139,69,8,131,192,20,201,195,85,137,229,131,236,56,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8, 131,192,8,139,0,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,141,129,15,90,9,0,243,15,16,0,15,46,69,240,117,7,122,5,233,23,1,0,0,141,129,19,90,9,0,243,15,16,0,243,15,94,69,240,243,15,17,69,240,233,254,0,0, 0,139,69,244,139,0,137,69,228,139,69,244,131,192,4,139,0,137,69,224,139,69,244,131,192,8,139,0,137,69,220,139,69,244,131,192,12,139,0,137,69,216,139,69,244,131,192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0, 137,69,204,139,69,244,131,192,28,139,0,137,69,200,243,15,16,69,228,243,15,89,69,240,139,69,236,243,15,17,0,139,69,236,131,192,4,243,15,16,69,224,243,15,89,69,240,243,15,17,0,139,69,236,131,192,8,243,15,16,69,220,243,15,89,69,240,243,15,17,0,139,69,236, 131,192,12,243,15,16,69,216,243,15,89,69,240,243,15,17,0,139,69,236,131,192,16,243,15,16,69,212,243,15,89,69,240,243,15,17,0,139,69,236,131,192,20,243,15,16,69,208,243,15,89,69,240,243,15,17,0,139,69,236,131,192,24,243,15,16,69,204,243,15,89,69,240,243, 15,17,0,139,69,236,131,192,28,243,15,16,69,200,243,15,89,69,240,243,15,17,0,131,109,232,8,131,69,244,32,131,69,236,32,131,125,232,0,15,133,248,254,255,255,139,69,8,131,192,20,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,0,131, 224,7,133,192,116,77,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72,4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,187,249,255,255,137,4,36,232,73, 179,1,0,235,75,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72,4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,95,250,255,255,137,4,36,232,252,178, 1,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,0,131,224,7,133,192,116,72,139,69,12,139,0,139,16,139,69,12,131,192,4,139,0,139,72,4,139,117,8,131,198,32,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137, 116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,46,253,255,255,137,4,36,232,147,178,1,0,235,70,139,69,12,139,0,139,16,139,69,12,131,192,4,139,0,139,72,4,139,117,8,131,198,32,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36, 8,199,68,36,4,4,0,0,0,141,131,190,253,255,255,137,4,36,232,75,178,1,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,66,247,255,255,141,131,38,208,8,0,137,4,36,232,241,155,6,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199, 68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,161,144,6,0,137,194,141,131,31,120,9,0,137,16,141,131,31,120,9,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,87,153,6,0,141,131,255,213,8,0,137,4,36,232,141,155,6,0,137, 194,141,139,135,254,255,255,141,131,31,120,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,80,148,6,0,141,131,194,207,8,0,137,4,36,232,87,155,6,0,137,194,141,131,31,120,9,0,139,0,137,84,36,4,137,4,36,232,99,152,6,0,141,131,38,208, 8,0,137,4,36,232,51,155,6,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,231,143,6,0,137,194,141,131,35,120,9,0,137,16,141,131,35,120,9,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232, 157,152,6,0,141,131,255,213,8,0,137,4,36,232,211,154,6,0,137,194,141,139,66,255,255,255,141,131,35,120,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,150,147,6,0,141,131,194,207,8,0,137,4,36,232,157,154,6,0,137,194,141,131,35,120, 9,0,139,0,137,84,36,4,137,4,36,232,169,151,6,0,131,196,32,91,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,12,1,126,14,141,131,151,206,8,0,137,4,36,232,34,148,7,0,131,125,12,0,116,117,141,131,153,118,9,0,139,0,137,4,36,232,127,207,6,0,137, 69,244,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,91,189,6,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,73,28,6,0,139,69,244,217,88,32,139,85,244,141,131,189,98,9,0,139,0,137,68,36,4,137,20,36,232,254,193,6,0,139, 85,244,141,131,149,85,9,0,139,0,137,66,28,139,69,244,137,69,228,235,104,141,131,149,118,9,0,139,0,137,4,36,232,10,207,6,0,137,69,240,139,85,240,139,77,240,141,131,189,98,9,0,139,0,137,68,36,12,141,131,189,98,9,0,139,0,137,68,36,8,137,84,36,4,137,12,36, 232,57,181,6,0,139,85,240,141,131,189,98,9,0,139,0,137,68,36,4,137,20,36,232,148,193,6,0,139,85,240,141,131,149,85,9,0,139,0,137,66,28,139,69,240,137,69,228,139,69,228,131,196,52,91,201,195,85,137,229,131,236,56,139,69,8,131,192,4,139,0,137,69,244,139, 69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,235,75,139,69,244,139,0,137,69,228,131,69,244,4,139,69,240,139,0,137,69,224,131,69,240,4,243,15,16,69,228,15,46,69,224,119,2,235,12,243,15,16,69, 228,243,15,17,69,212,235,10,243,15,16,69,224,243,15,17,69,212,139,69,236,243,15,16,69,212,243,15,17,0,131,69,236,4,255,77,232,131,125,232,255,117,172,139,69,8,131,192,20,201,195,85,137,229,129,236,152,0,0,0,139,69,8,131,192,4,139,0,137,69,244,139,69, 8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,233,152,2,0,0,139,69,244,139,0,137,69,228,139,69,244,131,192,4,139,0,137,69,224,139,69,244,131,192,8,139,0,137,69,220,139,69,244,131,192,12,139,0,137, 69,216,139,69,244,131,192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0,137,69,204,139,69,244,131,192,28,139,0,137,69,200,139,69,240,139,0,137,69,196,139,69,240,131,192,4,139,0,137,69,192,139,69,240,131,192,8, 139,0,137,69,188,139,69,240,131,192,12,139,0,137,69,184,139,69,240,131,192,16,139,0,137,69,180,139,69,240,131,192,20,139,0,137,69,176,139,69,240,131,192,24,139,0,137,69,172,139,69,240,131,192,28,139,0,137,69,168,243,15,16,69,228,15,46,69,196,119,2,235, 15,243,15,16,69,228,243,15,17,133,108,255,255,255,235,13,243,15,16,69,196,243,15,17,133,108,255,255,255,139,69,236,243,15,16,133,108,255,255,255,243,15,17,0,139,69,236,131,192,4,137,133,112,255,255,255,243,15,16,69,224,15,46,69,192,119,2,235,15,243,15, 16,69,224,243,15,17,133,116,255,255,255,235,13,243,15,16,69,192,243,15,17,133,116,255,255,255,243,15,16,133,116,255,255,255,139,133,112,255,255,255,243,15,17,0,139,69,236,131,192,8,137,133,120,255,255,255,243,15,16,69,220,15,46,69,188,119,2,235,15,243, 15,16,69,220,243,15,17,133,124,255,255,255,235,13,243,15,16,69,188,243,15,17,133,124,255,255,255,243,15,16,133,124,255,255,255,139,133,120,255,255,255,243,15,17,0,139,69,236,131,192,12,137,69,128,243,15,16,69,216,15,46,69,184,119,2,235,12,243,15,16,69, 216,243,15,17,69,132,235,10,243,15,16,69,184,243,15,17,69,132,243,15,16,69,132,139,69,128,243,15,17,0,139,69,236,131,192,16,137,69,136,243,15,16,69,212,15,46,69,180,119,2,235,12,243,15,16,69,212,243,15,17,69,140,235,10,243,15,16,69,180,243,15,17,69,140, 243,15,16,69,140,139,69,136,243,15,17,0,139,69,236,131,192,20,137,69,144,243,15,16,69,208,15,46,69,176,119,2,235,12,243,15,16,69,208,243,15,17,69,148,235,10,243,15,16,69,176,243,15,17,69,148,243,15,16,69,148,139,69,144,243,15,17,0,139,69,236,131,192, 24,137,69,152,243,15,16,69,204,15,46,69,172,119,2,235,12,243,15,16,69,204,243,15,17,69,156,235,10,243,15,16,69,172,243,15,17,69,156,243,15,16,69,156,139,69,152,243,15,17,0,139,69,236,131,192,28,137,69,160,243,15,16,69,200,15,46,69,168,119,2,235,12,243, 15,16,69,200,243,15,17,69,164,235,10,243,15,16,69,168,243,15,17,69,164,243,15,16,69,164,139,69,160,243,15,17,0,131,109,232,8,131,69,244,32,131,69,240,32,131,69,236,32,131,125,232,0,15,133,94,253,255,255,139,69,8,131,192,20,201,195,85,137,229,131,236, 56,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,235,63,139,69,244,139,0,137,69,228,131,69,244,4,243,15,16,69,240,15,46,69,228,119,2,235,12,243, 15,16,69,240,243,15,17,69,212,235,10,243,15,16,69,228,243,15,17,69,212,139,69,236,243,15,16,69,212,243,15,17,0,131,69,236,4,255,77,232,131,125,232,255,117,184,139,69,8,131,192,20,201,195,85,137,229,131,236,120,139,69,8,131,192,4,139,0,137,69,244,139, 69,8,131,192,8,139,0,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,233,24,2,0,0,139,69,244,139,0,137,69,228,139,69,244,131,192,4,139,0,137,69,224,139,69,244,131,192,8,139,0,137,69,220,139,69,244,131,192,12, 139,0,137,69,216,139,69,244,131,192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0,137,69,204,139,69,244,131,192,28,139,0,137,69,200,243,15,16,69,228,15,46,69,240,119,2,235,12,243,15,16,69,228,243,15,17,69,140, 235,10,243,15,16,69,240,243,15,17,69,140,139,69,236,243,15,16,69,140,243,15,17,0,139,69,236,131,192,4,137,69,144,243,15,16,69,224,15,46,69,240,119,2,235,12,243,15,16,69,224,243,15,17,69,148,235,10,243,15,16,69,240,243,15,17,69,148,243,15,16,69,148,139, 69,144,243,15,17,0,139,69,236,131,192,8,137,69,152,243,15,16,69,220,15,46,69,240,119,2,235,12,243,15,16,69,220,243,15,17,69,156,235,10,243,15,16,69,240,243,15,17,69,156,243,15,16,69,156,139,69,152,243,15,17,0,139,69,236,131,192,12,137,69,160,243,15,16, 69,216,15,46,69,240,119,2,235,12,243,15,16,69,216,243,15,17,69,164,235,10,243,15,16,69,240,243,15,17,69,164,243,15,16,69,164,139,69,160,243,15,17,0,139,69,236,131,192,16,137,69,168,243,15,16,69,212,15,46,69,240,119,2,235,12,243,15,16,69,212,243,15,17, 69,172,235,10,243,15,16,69,240,243,15,17,69,172,243,15,16,69,172,139,69,168,243,15,17,0,139,69,236,131,192,20,137,69,176,243,15,16,69,208,15,46,69,240,119,2,235,12,243,15,16,69,208,243,15,17,69,180,235,10,243,15,16,69,240,243,15,17,69,180,243,15,16,69, 180,139,69,176,243,15,17,0,139,69,236,131,192,24,137,69,184,243,15,16,69,204,15,46,69,240,119,2,235,12,243,15,16,69,204,243,15,17,69,188,235,10,243,15,16,69,240,243,15,17,69,188,243,15,16,69,188,139,69,184,243,15,17,0,139,69,236,131,192,28,137,69,192, 243,15,16,69,200,15,46,69,240,119,2,235,12,243,15,16,69,200,243,15,17,69,196,235,10,243,15,16,69,240,243,15,17,69,196,243,15,16,69,196,139,69,192,243,15,17,0,131,109,232,8,131,69,244,32,131,69,236,32,131,125,232,0,15,133,222,253,255,255,139,69,8,131, 192,20,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,0,131,224,7,133,192,116,77,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72,4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16, 137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,150,249,255,255,137,4,36,232,224,168,1,0,235,75,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72,4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137, 116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,38,250,255,255,137,4,36,232,147,168,1,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,0,131,224,7,133,192,116,72,139,69,12,139,0,139,16,139,69,12,131,192,4,139, 0,139,72,4,139,117,8,131,198,32,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,79,252,255,255,137,4,36,232,42,168,1,0,235,70,139,69,12,139,0,139,16,139,69,12,131,192,4,139,0,139,72,4,139,117,8, 131,198,32,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,213,252,255,255,137,4,36,232,226,167,1,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,29,247,255,255,141, 131,222,197,8,0,137,4,36,232,136,145,6,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,56,134,6,0,137,194,141,131,190,109,9,0,137,16,141,131,190,109,9,0,139,0,199,68, 36,4,28,0,0,0,137,4,36,232,238,142,6,0,141,131,150,203,8,0,137,4,36,232,36,145,6,0,137,194,141,139,135,254,255,255,141,131,190,109,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,231,137,6,0,141,131,89,197,8,0,137,4,36,232,238,144, 6,0,137,194,141,131,190,109,9,0,139,0,137,84,36,4,137,4,36,232,250,141,6,0,141,131,222,197,8,0,137,4,36,232,202,144,6,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,126,133,6,0,137, 194,141,131,194,109,9,0,137,16,141,131,194,109,9,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,52,142,6,0,141,131,150,203,8,0,137,4,36,232,106,144,6,0,137,194,141,139,66,255,255,255,141,131,194,109,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137, 4,36,232,45,137,6,0,141,131,89,197,8,0,137,4,36,232,52,144,6,0,137,194,141,131,194,109,9,0,139,0,137,84,36,4,137,4,36,232,64,141,6,0,131,196,32,91,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,12,1,126,14,141,131,81,196,8,0,137,4,36,232, 185,137,7,0,131,125,12,0,116,117,141,131,56,108,9,0,139,0,137,4,36,232,22,197,6,0,137,69,244,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,242,178,6,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,224,17,6,0,139,69,244, 217,88,28,139,85,244,141,131,84,88,9,0,139,0,137,68,36,4,137,20,36,232,149,183,6,0,139,85,244,141,131,44,75,9,0,139,0,137,66,32,139,69,244,137,69,228,235,104,141,131,52,108,9,0,139,0,137,4,36,232,161,196,6,0,137,69,240,139,85,240,139,77,240,141,131,84, 88,9,0,139,0,137,68,36,12,141,131,84,88,9,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,208,170,6,0,139,85,240,141,131,84,88,9,0,139,0,137,68,36,4,137,20,36,232,43,183,6,0,139,85,240,141,131,44,75,9,0,139,0,137,66,28,139,69,240,137,69,228,139,69,228, 131,196,52,91,201,195,85,137,229,131,236,56,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,235,79,139,69,244,139,0,137,69,228,131,69,244,4,139,69,240,139, 0,137,69,224,131,69,240,4,243,15,16,77,228,243,15,16,69,224,15,46,193,119,2,235,12,243,15,16,69,228,243,15,17,69,212,235,10,243,15,16,69,224,243,15,17,69,212,139,69,236,243,15,16,69,212,243,15,17,0,131,69,236,4,255,77,232,131,125,232,255,117,168,139, 69,8,131,192,20,201,195,85,137,229,129,236,152,0,0,0,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,233,184,2,0,0,139,69,244,139,0,137,69,228,139,69,244, 131,192,4,139,0,137,69,224,139,69,244,131,192,8,139,0,137,69,220,139,69,244,131,192,12,139,0,137,69,216,139,69,244,131,192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0,137,69,204,139,69,244,131,192,28,139,0,137, 69,200,139,69,240,139,0,137,69,196,139,69,240,131,192,4,139,0,137,69,192,139,69,240,131,192,8,139,0,137,69,188,139,69,240,131,192,12,139,0,137,69,184,139,69,240,131,192,16,139,0,137,69,180,139,69,240,131,192,20,139,0,137,69,176,139,69,240,131,192,24, 139,0,137,69,172,139,69,240,131,192,28,139,0,137,69,168,243,15,16,77,228,243,15,16,69,196,15,46,193,119,2,235,15,243,15,16,69,228,243,15,17,133,108,255,255,255,235,13,243,15,16,69,196,243,15,17,133,108,255,255,255,139,69,236,243,15,16,133,108,255,255, 255,243,15,17,0,139,69,236,131,192,4,137,133,112,255,255,255,243,15,16,77,224,243,15,16,69,192,15,46,193,119,2,235,15,243,15,16,69,224,243,15,17,133,116,255,255,255,235,13,243,15,16,69,192,243,15,17,133,116,255,255,255,243,15,16,133,116,255,255,255,139, 133,112,255,255,255,243,15,17,0,139,69,236,131,192,8,137,133,120,255,255,255,243,15,16,77,220,243,15,16,69,188,15,46,193,119,2,235,15,243,15,16,69,220,243,15,17,133,124,255,255,255,235,13,243,15,16,69,188,243,15,17,133,124,255,255,255,243,15,16,133,124, 255,255,255,139,133,120,255,255,255,243,15,17,0,139,69,236,131,192,12,137,69,128,243,15,16,77,216,243,15,16,69,184,15,46,193,119,2,235,12,243,15,16,69,216,243,15,17,69,132,235,10,243,15,16,69,184,243,15,17,69,132,243,15,16,69,132,139,69,128,243,15,17, 0,139,69,236,131,192,16,137,69,136,243,15,16,77,212,243,15,16,69,180,15,46,193,119,2,235,12,243,15,16,69,212,243,15,17,69,140,235,10,243,15,16,69,180,243,15,17,69,140,243,15,16,69,140,139,69,136,243,15,17,0,139,69,236,131,192,20,137,69,144,243,15,16, 77,208,243,15,16,69,176,15,46,193,119,2,235,12,243,15,16,69,208,243,15,17,69,148,235,10,243,15,16,69,176,243,15,17,69,148,243,15,16,69,148,139,69,144,243,15,17,0,139,69,236,131,192,24,137,69,152,243,15,16,77,204,243,15,16,69,172,15,46,193,119,2,235,12, 243,15,16,69,204,243,15,17,69,156,235,10,243,15,16,69,172,243,15,17,69,156,243,15,16,69,156,139,69,152,243,15,17,0,139,69,236,131,192,28,137,69,160,243,15,16,77,200,243,15,16,69,168,15,46,193,119,2,235,12,243,15,16,69,200,243,15,17,69,164,235,10,243, 15,16,69,168,243,15,17,69,164,243,15,16,69,164,139,69,160,243,15,17,0,131,109,232,8,131,69,244,32,131,69,240,32,131,69,236,32,131,125,232,0,15,133,62,253,255,255,139,69,8,131,192,20,201,195,85,137,229,131,236,56,139,69,8,131,192,4,139,0,137,69,244,139, 69,8,131,192,8,139,0,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,235,67,139,69,244,139,0,137,69,228,131,69,244,4,243,15,16,77,240,243,15,16,69,228,15,46,193,119,2,235,12,243,15,16,69,240,243,15,17,69,212, 235,10,243,15,16,69,228,243,15,17,69,212,139,69,236,243,15,16,69,212,243,15,17,0,131,69,236,4,255,77,232,131,125,232,255,117,180,139,69,8,131,192,20,201,195,85,137,229,131,236,120,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,139,0,137, 69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,233,56,2,0,0,139,69,244,139,0,137,69,228,139,69,244,131,192,4,139,0,137,69,224,139,69,244,131,192,8,139,0,137,69,220,139,69,244,131,192,12,139,0,137,69,216,139,69,244,131, 192,16,139,0,137,69,212,139,69,244,131,192,20,139,0,137,69,208,139,69,244,131,192,24,139,0,137,69,204,139,69,244,131,192,28,139,0,137,69,200,243,15,16,77,228,243,15,16,69,240,15,46,193,119,2,235,12,243,15,16,69,228,243,15,17,69,140,235,10,243,15,16,69, 240,243,15,17,69,140,139,69,236,243,15,16,69,140,243,15,17,0,139,69,236,131,192,4,137,69,144,243,15,16,77,224,243,15,16,69,240,15,46,193,119,2,235,12,243,15,16,69,224,243,15,17,69,148,235,10,243,15,16,69,240,243,15,17,69,148,243,15,16,69,148,139,69,144, 243,15,17,0,139,69,236,131,192,8,137,69,152,243,15,16,77,220,243,15,16,69,240,15,46,193,119,2,235,12,243,15,16,69,220,243,15,17,69,156,235,10,243,15,16,69,240,243,15,17,69,156,243,15,16,69,156,139,69,152,243,15,17,0,139,69,236,131,192,12,137,69,160,243, 15,16,77,216,243,15,16,69,240,15,46,193,119,2,235,12,243,15,16,69,216,243,15,17,69,164,235,10,243,15,16,69,240,243,15,17,69,164,243,15,16,69,164,139,69,160,243,15,17,0,139,69,236,131,192,16,137,69,168,243,15,16,77,212,243,15,16,69,240,15,46,193,119,2, 235,12,243,15,16,69,212,243,15,17,69,172,235,10,243,15,16,69,240,243,15,17,69,172,243,15,16,69,172,139,69,168,243,15,17,0,139,69,236,131,192,20,137,69,176,243,15,16,77,208,243,15,16,69,240,15,46,193,119,2,235,12,243,15,16,69,208,243,15,17,69,180,235, 10,243,15,16,69,240,243,15,17,69,180,243,15,16,69,180,139,69,176,243,15,17,0,139,69,236,131,192,24,137,69,184,243,15,16,77,204,243,15,16,69,240,15,46,193,119,2,235,12,243,15,16,69,204,243,15,17,69,188,235,10,243,15,16,69,240,243,15,17,69,188,243,15,16, 69,188,139,69,184,243,15,17,0,139,69,236,131,192,28,137,69,192,243,15,16,77,200,243,15,16,69,240,15,46,193,119,2,235,12,243,15,16,69,200,243,15,17,69,196,235,10,243,15,16,69,240,243,15,17,69,196,243,15,16,69,196,139,69,192,243,15,17,0,131,109,232,8,131, 69,244,32,131,69,236,32,131,125,232,0,15,133,190,253,255,255,139,69,8,131,192,20,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,0,131,224,7,133,192,116,77,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72,4,139,69,12,131, 192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,78,249,255,255,137,4,36,232,47,158,1,0,235,75,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72,4,139,69,12,131,192,4, 139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,226,249,255,255,137,4,36,232,226,157,1,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139, 0,131,224,7,133,192,116,72,139,69,12,139,0,139,16,139,69,12,131,192,4,139,0,139,72,4,139,117,8,131,198,28,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,43,252,255,255,137,4,36,232,121,157,1,0, 235,70,139,69,12,139,0,139,16,139,69,12,131,192,4,139,0,139,72,4,139,117,8,131,198,28,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,181,252,255,255,137,4,36,232,49,157,1,0,131,196,32,91,94,201, 195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,213,246,255,255,141,131,80,187,8,0,137,4,36,232,215,134,6,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,135, 123,6,0,137,194,141,131,21,99,9,0,137,16,141,131,21,99,9,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,61,132,6,0,141,131,229,192,8,0,137,4,36,232,115,134,6,0,137,194,141,139,135,254,255,255,141,131,21,99,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76, 36,4,137,4,36,232,54,127,6,0,141,131,168,186,8,0,137,4,36,232,61,134,6,0,137,194,141,131,21,99,9,0,139,0,137,84,36,4,137,4,36,232,73,131,6,0,141,131,80,187,8,0,137,4,36,232,25,134,6,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199, 68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,205,122,6,0,137,194,141,131,25,99,9,0,137,16,141,131,25,99,9,0,139,0,199,68,36,4,32,0,0,0,137,4,36,232,131,131,6,0,141,131,229,192,8,0,137,4,36,232,185,133,6,0,137,194,141,139,66,255,255,255,141,131,25, 99,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,124,126,6,0,141,131,168,186,8,0,137,4,36,232,131,133,6,0,137,194,141,131,25,99,9,0,139,0,137,84,36,4,137,4,36,232,143,130,6,0,131,196,32,91,94,201,195,85,137,229,131,236,8,232,124, 207,255,255,232,62,215,255,255,232,250,222,255,255,232,57,233,255,255,232,157,243,255,255,232,73,254,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,105,97,9,0,139,0,137,4,36,232,89,186,6,0,137,69,244,139,69,244,199,64,28,255,255,255, 127,139,85,244,139,69,8,137,66,40,139,85,244,141,131,85,64,9,0,139,0,137,66,44,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,55,77,9,0,139,0,139,16,139,69,8,139,64,40,137,84,36,4,137,4,36,232,163,191,6,0,137,69,244, 131,125,244,0,117,16,141,131,83,185,8,0,137,4,36,232,147,131,7,0,235,11,139,69,244,137,4,36,232,80,11,2,0,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131, 192,12,139,0,137,69,236,139,69,244,139,64,28,137,69,232,139,69,244,139,64,32,137,69,228,139,69,244,139,64,36,133,192,15,132,185,0,0,0,139,69,228,59,69,232,15,142,163,0,0,0,139,85,232,139,69,228,41,208,137,69,224,139,69,244,139,80,36,139,69,232,193,224, 2,141,4,2,137,69,220,139,69,224,59,69,236,126,6,139,69,236,137,69,224,139,69,224,1,69,232,235,66,139,69,240,139,0,137,69,216,131,69,240,4,141,69,216,139,0,37,0,0,0,96,133,192,116,17,141,69,216,139,0,37,0,0,0,96,61,0,0,0,96,117,11,141,131,184,63,9,0,139, 0,137,69,216,139,85,216,139,69,220,137,16,131,69,220,4,255,77,224,131,125,224,255,117,181,139,69,232,59,69,228,124,18,139,69,244,137,4,36,232,194,254,255,255,199,69,232,255,255,255,127,139,85,244,139,69,232,137,66,28,235,10,139,69,244,199,64,28,255,255, 255,127,139,69,8,131,192,16,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,139,69,12,137,66,40,141,131,209,75,9,0,139,0,139,16,139,69,8,139,64,40,137,84,36,4,137,4,36,232,52,190,6,0,137,69,244,131,125,244,0,117,57,139,69,12,139, 0,15,182,0,132,192,116,33,139,69,8,139,64,40,139,0,137,68,36,8,141,131,3,184,8,0,137,68,36,4,139,69,8,137,4,36,232,208,128,7,0,139,69,8,199,64,36,0,0,0,0,235,91,139,69,8,131,192,36,139,85,8,131,194,32,137,68,36,8,137,84,36,4,139,69,244,137,4,36,232,164, 10,2,0,133,192,117,45,139,69,8,139,64,40,139,0,137,68,36,8,141,131,33,184,8,0,137,68,36,4,139,69,8,137,4,36,232,128,128,7,0,139,69,8,199,64,36,0,0,0,0,235,11,139,69,244,137,4,36,232,255,8,2,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0, 91,139,69,8,139,64,40,137,68,36,4,139,69,8,137,4,36,232,9,255,255,255,139,69,12,139,0,139,16,139,69,12,139,0,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,12,254,255,255,137,4,36,232,150,152,1,0,131,196,36,91,201, 195,85,137,229,131,236,8,139,69,8,199,64,28,0,0,0,0,201,195,85,137,229,131,236,24,232,0,0,0,0,89,141,129,99,61,9,0,243,15,16,8,243,15,16,69,12,15,46,193,119,2,235,14,243,15,16,69,12,243,15,44,192,137,69,244,235,7,199,69,244,0,0,0,0,139,69,8,139,85,244, 137,80,28,201,195,85,137,229,131,236,24,139,69,8,139,64,28,61,255,255,255,127,116,21,139,69,8,137,4,36,232,247,252,255,255,139,69,8,199,64,28,255,255,255,127,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,148,252,255,255,141,131,144,182,8, 0,137,4,36,232,191,129,6,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,48,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,111,118,6,0,137,194,141,131,9,94,9,0,137,16,141,131,9,94,9,0,139,0,199,68,36,4,44,0,0,0,137, 4,36,232,37,127,6,0,141,131,205,187,8,0,137,4,36,232,91,129,6,0,137,194,141,139,25,255,255,255,141,131,9,94,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,30,122,6,0,141,131,29,188,8,0,137,4,36,232,37,129,6,0,137,194,141,139,68,254, 255,255,141,131,9,94,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,224,121,6,0,141,131,154,182,8,0,137,4,36,232,231,128,6,0,137,194,141,139,201,255,255,255,141,131,9,94,9,0,139,0,199,68,36,12,0,0,0,0,137,84, 36,8,137,76,36,4,137,4,36,232,170,121,6,0,141,131,159,182,8,0,137,4,36,232,177,128,6,0,137,194,141,139,135,255,255,255,141,131,9,94,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,108,121,6,0,141,147,117,255,255, 255,141,131,9,94,9,0,139,0,137,84,36,4,137,4,36,232,226,124,6,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,141,92,9,0,139,0,137,4,36,232,121,181,6,0,137,69,244,141,131,164,3,0,0,137,68,36,4,139,69,244,137,4,36,232,115,190, 6,0,137,194,139,69,244,137,80,52,139,69,244,199,64,32,255,255,255,127,139,69,244,199,64,40,0,0,0,0,139,85,244,139,69,8,137,66,48,139,85,244,141,131,157,72,9,0,139,0,137,68,36,4,137,20,36,232,243,167,6,0,139,85,244,141,131,165,72,9,0,139,0,137,68,36,4, 137,20,36,232,220,167,6,0,137,194,139,69,244,137,80,28,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,232,139,69,244,139, 64,32,137,69,228,139,69,244,139,80,40,139,69,244,139,64,36,57,194,15,78,194,137,69,224,139,69,244,139,64,44,133,192,15,132,216,0,0,0,139,69,228,59,69,224,15,141,204,0,0,0,139,85,228,139,69,224,41,208,137,69,220,139,69,244,139,80,44,139,69,228,193,224, 2,141,4,2,137,69,236,139,69,220,59,69,232,126,6,139,69,232,137,69,220,139,85,220,139,69,232,41,208,137,69,216,139,69,220,1,69,228,235,18,139,69,236,139,16,139,69,240,137,16,131,69,240,4,131,69,236,4,255,77,220,131,125,220,255,117,229,139,69,228,59,69, 224,124,70,139,69,244,139,80,52,141,131,244,58,9,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,5,191,6,0,139,69,244,199,64,32,255,255,255,127,235,17,139,69,240,141,147,220,58,9,0,139,18,137,16,131,69,240,4,255,77,216,131,125,216,255,117,230,235,9,139, 85,244,139,69,228,137,66,32,139,69,8,131,192,16,137,69,212,235,35,139,69,240,141,147,220,58,9,0,139,18,137,16,131,69,240,4,255,77,232,131,125,232,255,117,230,139,69,8,131,192,16,137,69,212,139,69,212,131,196,68,91,201,195,85,137,229,83,131,236,36,232, 0,0,0,0,91,139,85,8,139,69,12,137,66,48,141,131,188,70,9,0,139,0,139,16,139,69,8,139,64,48,137,84,36,4,137,4,36,232,31,185,6,0,137,69,244,131,125,244,0,117,57,139,69,12,139,0,15,182,0,132,192,116,33,139,69,8,139,64,48,139,0,137,68,36,8,141,131,64,179, 8,0,137,68,36,4,139,69,8,137,4,36,232,187,123,7,0,139,69,8,199,64,44,0,0,0,0,235,91,139,69,8,131,192,44,139,85,8,131,194,36,137,68,36,8,137,84,36,4,139,69,244,137,4,36,232,143,5,2,0,133,192,117,45,139,69,8,139,64,48,139,0,137,68,36,8,141,131,92,179,8, 0,137,68,36,4,139,69,8,137,4,36,232,107,123,7,0,139,69,8,199,64,44,0,0,0,0,235,11,139,69,244,137,4,36,232,234,3,2,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,48,137,68,36,4,139,69,8,137,4,36,232,9,255,255,255,139,69, 12,139,0,139,16,139,69,12,139,0,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,211,253,255,255,137,4,36,232,129,147,1,0,131,196,36,91,201,195,85,137,229,131,236,56,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4, 36,0,0,0,0,232,92,255,5,0,217,93,224,243,15,44,69,224,137,69,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,55,255,5,0,217,93,228,243,15,44,69,228,137,69,240,131,125,244,0,121,7,199,69,244,0,0,0,0,131,125,240,0,127,12,139,69,8,199, 64,40,255,255,255,127,235,14,139,69,240,139,85,244,1,194,139,69,8,137,80,40,139,85,8,139,69,244,137,66,32,201,195,85,137,229,131,236,8,139,69,8,199,64,32,255,255,255,127,201,195,85,137,229,131,236,24,139,69,8,139,64,28,137,4,36,232,67,165,6,0,201,195, 85,137,229,131,236,24,139,69,8,139,64,52,137,4,36,232,209,189,6,0,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,220,255,255,255,141,187,22,252,255,255,141,131,129,177,8,0,137,4,36,232,91,124,6,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0, 0,199,68,36,16,0,0,0,0,199,68,36,12,56,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,15,113,6,0,137,194,141,131,175,88,9,0,137,16,141,131,111,182,8,0,137,4,36,232,19,124,6,0,137,194,141,139,208,254,255,255,141,131,175,88,9,0,139,0,199,68,36,12,0,0,0,0, 137,84,36,8,137,76,36,4,137,4,36,232,214,116,6,0,141,131,60,177,8,0,137,4,36,232,221,123,6,0,137,194,141,139,180,255,255,255,141,131,175,88,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,160,116,6,0,141,131,191,182,8,0,137,4,36,232, 167,123,6,0,137,194,141,139,251,253,255,255,141,131,175,88,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,98,116,6,0,141,147,44,255,255,255,141,131,175,88,9,0,139,0,137,84,36,4,137,4,36,232,28,120,6,0,131,196, 44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,134,87,9,0,139,0,137,4,36,232,110,176,6,0,137,69,244,139,85,244,139,69,8,137,66,36,139,69,244,199,64,32,0,0,0,0,141,131,162,182,8,0,137,4,36,232,20,123,6,0,139,85,244,137,68,36,4,137, 20,36,232,9,163,6,0,139,85,244,141,131,106,54,9,0,139,0,137,66,40,139,69,244,131,196,36,91,201,195,85,137,229,131,236,56,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69, 8,131,192,16,139,0,137,69,232,139,69,244,139,64,32,137,69,224,139,69,244,139,64,28,72,137,69,228,131,125,224,0,116,115,199,69,220,0,0,0,0,235,70,139,69,240,243,15,16,0,243,15,44,192,137,69,216,131,69,240,4,131,125,216,0,121,9,199,69,216,0,0,0,0,235,14, 139,69,216,59,69,228,126,6,139,69,228,137,69,216,139,69,216,193,224,2,3,69,224,139,16,139,69,236,137,16,131,69,236,4,255,69,220,139,69,220,59,69,232,124,178,139,69,8,131,192,20,137,69,212,235,35,139,69,236,141,145,4,54,9,0,139,18,137,16,131,69,236,4, 255,77,232,131,125,232,255,117,230,139,69,8,131,192,20,137,69,212,139,69,212,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,139,69,12,137,66,36,141,131,84,66,9,0,139,0,139,16,139,69,8,139,64,36,137,84,36,4,137,4,36,232,183,180,6,0,137,69,244, 131,125,244,0,117,57,139,69,12,139,0,15,182,0,132,192,116,33,139,69,8,139,64,36,139,0,137,68,36,8,141,131,30,175,8,0,137,68,36,4,139,69,8,137,4,36,232,83,119,7,0,139,69,8,199,64,32,0,0,0,0,235,91,139,69,8,131,192,32,139,85,8,131,194,28,137,68,36,8,137, 84,36,4,139,69,244,137,4,36,232,39,1,2,0,133,192,117,45,139,69,8,139,64,36,139,0,137,68,36,8,141,131,58,175,8,0,137,68,36,4,139,69,8,137,4,36,232,3,119,7,0,139,69,8,199,64,32,0,0,0,0,235,11,139,69,244,137,4,36,232,130,255,1,0,131,196,36,91,201,195,85, 137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,36,137,68,36,4,139,69,8,137,4,36,232,9,255,255,255,139,69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,20,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199, 68,36,4,4,0,0,0,141,131,68,254,255,255,137,4,36,232,10,143,1,0,131,196,36,91,201,195,85,137,229,131,236,8,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,234,255,255,255,141,187,104,253,255,255,141,131,14,174,8,0,137,4,36,232,162,120,6, 0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,86,109,6,0,137,194,141,131,250,84,9,0,137,16,141,131,250,84,9,0,139,0,199,68,36,4,40,0,0,0,137,4,36,232,12,118,6,0,141,131,182, 178,8,0,137,4,36,232,66,120,6,0,137,194,141,139,127,255,255,255,141,131,250,84,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,5,113,6,0,141,131,6,179,8,0,137,4,36,232,12,120,6,0,137,194,141,139,170,254,255,255,141,131,250,84,9,0, 139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,199,112,6,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,9,84,9,0,139,0,137,4,36,232,237,172,6,0,137,69,244,139,85,244,139,69,8,137,66, 36,139,69,244,199,64,32,0,0,0,0,141,131,33,179,8,0,137,4,36,232,147,119,6,0,139,85,244,137,68,36,4,137,20,36,232,136,159,6,0,139,69,244,131,192,44,139,85,244,137,68,36,4,137,20,36,232,153,154,6,0,139,85,244,141,131,233,50,9,0,139,0,137,66,40,139,85,244, 141,131,233,50,9,0,139,0,137,66,44,139,69,244,131,196,36,91,201,195,85,137,229,131,236,104,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232, 139,69,244,139,64,32,137,69,224,139,69,244,243,15,16,64,44,243,15,90,192,242,15,17,69,176,139,69,244,139,64,28,131,232,3,137,69,228,131,125,224,0,15,132,171,1,0,0,199,69,216,0,0,0,0,233,119,1,0,0,139,69,240,243,15,16,0,243,15,90,192,242,15,88,69,176, 242,15,17,69,168,131,69,240,4,242,15,16,69,168,242,15,44,192,137,69,212,131,125,212,0,127,20,199,69,212,1,0,0,0,141,129,96,50,9,0,139,0,137,69,208,235,58,139,69,212,59,69,228,126,19,139,69,228,137,69,212,141,129,100,50,9,0,139,0,137,69,208,235,31,242, 15,42,69,212,242,15,16,77,168,102,15,40,209,242,15,92,208,102,15,40,194,242,15,90,192,243,15,17,69,208,139,69,212,193,224,2,3,69,224,137,69,220,139,69,220,131,232,4,139,0,137,69,204,139,69,220,139,0,137,69,200,139,69,220,131,192,4,139,0,137,69,196,139, 69,220,131,192,8,139,0,137,69,192,243,15,16,69,196,243,15,92,69,200,243,15,17,69,188,243,15,90,109,200,243,15,90,117,208,243,15,90,125,188,243,15,90,77,208,141,129,128,50,9,0,242,15,16,0,102,15,40,208,242,15,92,209,102,15,40,202,141,129,136,50,9,0,242, 15,16,0,102,15,40,217,242,15,89,216,243,15,16,69,192,15,40,208,243,15,92,85,204,243,15,16,77,188,141,129,104,50,9,0,243,15,16,0,243,15,89,193,243,15,88,194,15,40,224,243,15,89,101,208,243,15,16,69,204,243,15,88,192,15,40,208,243,15,88,85,192,243,15,16, 77,200,141,129,104,50,9,0,243,15,16,0,243,15,89,193,243,15,88,194,243,15,88,196,243,15,90,192,242,15,89,195,242,15,88,199,242,15,89,198,242,15,88,197,242,15,90,192,139,69,236,243,15,17,0,131,69,236,4,255,69,216,139,69,216,59,69,232,15,140,125,254,255, 255,139,69,8,131,192,20,137,69,164,235,35,139,69,236,141,145,96,50,9,0,139,18,137,16,131,69,236,4,255,77,232,131,125,232,255,117,230,139,69,8,131,192,20,137,69,164,139,69,164,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,139,69,12,137,66,36, 141,131,97,61,9,0,139,0,139,16,139,69,8,139,64,36,137,84,36,4,137,4,36,232,196,175,6,0,137,69,244,131,125,244,0,117,57,139,69,12,139,0,15,182,0,132,192,116,33,139,69,8,139,64,36,139,0,137,68,36,8,141,131,110,170,8,0,137,68,36,4,139,69,8,137,4,36,232, 96,114,7,0,139,69,8,199,64,32,0,0,0,0,235,91,139,69,8,131,192,32,139,85,8,131,194,28,137,68,36,8,137,84,36,4,139,69,244,137,4,36,232,52,252,1,0,133,192,117,45,139,69,8,139,64,36,139,0,137,68,36,8,141,131,141,170,8,0,137,68,36,4,139,69,8,137,4,36,232, 16,114,7,0,139,69,8,199,64,32,0,0,0,0,235,11,139,69,244,137,4,36,232,143,250,1,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,36,137,68,36,4,139,69,8,137,4,36,232,9,255,255,255,139,69,12,139,0,139,8,139,69,12,131,192, 4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,20,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,4,0,0,0,141,131,245,252,255,255,137,4,36,232,23,138,1,0,131,196,36,91,201,195,85,137,229,131,236,8,201,195,85,137,229,87,86,83,131,236,44, 232,0,0,0,0,91,141,179,234,255,255,255,141,187,246,251,255,255,141,131,98,169,8,0,137,4,36,232,175,115,6,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,48,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,99,104,6,0,137,194, 141,131,11,80,9,0,137,16,141,131,11,80,9,0,139,0,199,68,36,4,40,0,0,0,137,4,36,232,25,113,6,0,141,131,195,173,8,0,137,4,36,232,79,115,6,0,137,194,141,139,127,255,255,255,141,131,11,80,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232, 18,108,6,0,141,131,19,174,8,0,137,4,36,232,25,115,6,0,137,194,141,139,170,254,255,255,141,131,11,80,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,212,107,6,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236, 36,232,0,0,0,0,91,141,131,26,79,9,0,139,0,137,4,36,232,250,167,6,0,137,69,244,139,85,244,139,69,8,137,66,40,139,69,244,199,64,36,0,0,0,0,139,85,244,141,131,2,46,9,0,139,0,137,66,28,139,85,244,141,131,6,46,9,0,139,0,137,66,32,141,131,46,174,8,0,137,4, 36,232,132,114,6,0,139,85,244,137,68,36,4,137,20,36,232,121,154,6,0,141,131,42,174,8,0,137,4,36,232,103,114,6,0,139,85,244,139,77,244,137,68,36,12,141,131,42,59,9,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,215,141,6,0,139,85,244,141,131,246,45,9,0, 139,0,137,66,44,139,69,244,131,196,36,91,201,195,85,137,229,131,236,120,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,244,139,64, 28,137,69,224,243,15,16,77,224,141,129,72,45,9,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,220,139,69,244,243,15,16,64,56,243,15,89,69,224,243,15,17,69,216,139,69,244,139,64,36,137,69,208,243,15,90,77,224,139,69,244,242,15,16, 64,48,242,15,89,200,141,129,116,45,9,0,242,15,16,0,242,15,88,193,242,15,17,69,160,131,125,208,0,15,132,38,2,0,0,141,129,116,45,9,0,242,15,16,0,242,15,17,69,168,139,69,172,137,69,228,233,84,1,0,0,242,15,16,69,160,242,15,17,69,168,139,69,240,243,15,16, 0,243,15,89,69,216,243,15,90,200,242,15,16,69,160,242,15,88,193,242,15,17,69,160,131,69,240,4,139,69,172,35,69,220,193,224,2,3,69,208,137,69,204,139,69,228,137,69,172,242,15,16,77,168,141,129,116,45,9,0,242,15,16,0,102,15,40,209,242,15,92,208,102,15, 40,194,242,15,90,192,243,15,17,69,196,139,69,204,139,0,137,69,192,139,69,204,131,192,4,139,0,137,69,188,139,69,204,131,192,8,139,0,137,69,184,139,69,204,131,192,12,139,0,137,69,180,243,15,16,69,184,243,15,92,69,188,243,15,17,69,176,243,15,90,109,188, 243,15,90,117,196,243,15,90,125,176,243,15,90,77,196,141,129,100,45,9,0,242,15,16,0,102,15,40,208,242,15,92,209,102,15,40,202,141,129,108,45,9,0,242,15,16,0,102,15,40,217,242,15,89,216,243,15,16,69,180,15,40,208,243,15,92,85,192,243,15,16,77,176,141, 129,76,45,9,0,243,15,16,0,243,15,89,193,243,15,88,194,15,40,224,243,15,89,101,196,243,15,16,69,192,243,15,88,192,15,40,208,243,15,88,85,180,243,15,16,77,188,141,129,76,45,9,0,243,15,16,0,243,15,89,193,243,15,88,194,243,15,88,196,243,15,90,192,242,15, 89,195,242,15,88,199,242,15,89,198,242,15,88,197,242,15,90,192,139,69,236,243,15,17,0,131,69,236,4,255,77,232,131,125,232,255,15,133,159,254,255,255,243,15,90,77,224,141,129,116,45,9,0,242,15,16,0,242,15,89,193,242,15,17,69,168,139,69,172,137,69,228, 243,15,90,77,224,141,129,116,45,9,0,242,15,16,0,242,15,89,200,141,129,116,45,9,0,242,15,16,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,88,69,160,242,15,17,69,168,139,69,228,137,69,172,242,15,16,85,168,243,15,90,77,224,141,129,124,45,9,0,242,15, 16,0,242,15,89,193,102,15,40,202,242,15,88,200,139,69,244,243,15,16,64,32,243,15,90,192,242,15,89,193,139,69,244,242,15,17,64,48,139,69,8,131,192,20,137,69,148,235,35,139,69,236,141,145,68,45,9,0,139,18,137,16,131,69,236,4,255,77,232,131,125,232,255, 117,230,139,69,8,131,192,20,137,69,148,139,69,148,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,139,69,12,137,66,40,141,131,136,55,9,0,139,0,139,16,139,69,8,139,64,40,137,84,36,4,137,4,36,232,235,169,6,0,137,69,244,131,125,244,0,117,60,139, 69,12,139,0,15,182,0,132,192,116,33,139,69,8,139,64,40,139,0,137,68,36,8,141,131,221,164,8,0,137,68,36,4,139,69,8,137,4,36,232,135,108,7,0,139,69,8,199,64,36,0,0,0,0,233,235,0,0,0,139,69,8,131,192,36,137,68,36,8,141,69,236,137,68,36,4,139,69,244,137, 4,36,232,91,246,1,0,133,192,117,48,139,69,8,139,64,40,139,0,137,68,36,8,141,131,249,164,8,0,137,68,36,4,139,69,8,137,4,36,232,55,108,7,0,139,69,8,199,64,36,0,0,0,0,233,155,0,0,0,139,69,236,131,232,3,137,69,240,139,69,236,131,232,3,137,4,36,232,176,134, 1,0,137,193,184,1,0,0,0,211,224,57,69,240,116,63,139,85,236,139,69,8,139,64,40,139,0,137,84,36,12,137,68,36,8,141,131,24,165,8,0,137,68,36,4,139,69,8,137,4,36,232,219,107,7,0,139,69,8,199,64,36,0,0,0,0,139,69,244,137,4,36,232,92,244,1,0,235,55,243,15, 42,69,240,139,69,8,243,15,17,64,28,242,15,42,77,240,141,131,124,42,9,0,242,15,16,0,242,15,94,193,242,15,90,192,139,69,8,243,15,17,64,32,139,69,244,137,4,36,232,35,244,1,0,131,196,36,91,201,195,85,137,229,131,236,8,243,15,90,69,12,139,69,8,242,15,17,64, 48,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,243,15,16,72,8,141,131,227,40,9,0,243,15,16,0,243,15,94,193,139,69,8,243,15,17,64,56,139,69,8,139,64,40,137,68,36,4,139,69,8,137,4,36,232,65,254,255,255,139,69,12,139,0,139,8,139,69,12, 131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,20,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,4,0,0,0,141,131,144,251,255,255,137,4,36,232,118,131,1,0,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179, 81,250,255,255,141,131,69,163,8,0,137,4,36,232,29,109,6,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,60,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,205,97,6,0,137,194,141,131,119,73,9,0,137,16,141,131,119,73,9, 0,139,0,199,68,36,4,44,0,0,0,137,4,36,232,131,106,6,0,141,131,43,167,8,0,137,4,36,232,185,108,6,0,137,194,141,139,104,255,255,255,141,131,119,73,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,124,101,6,0,141,131,123,167,8,0,137,4, 36,232,131,108,6,0,137,194,141,139,235,253,255,255,141,131,119,73,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,62,101,6,0,141,131,135,168,8,0,137,4,36,232,69,108,6,0,137,194,141,139,83,255,255,255,141,131,119, 73,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,0,101,6,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,75,72,9,0,139,0,137,4,36,232,39,161,6,0,137,69,244,139,69,244,199,64,36,0,0, 0,0,139,85,244,139,69,8,137,66,40,139,85,244,141,131,35,39,9,0,139,0,137,66,44,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0, 137,69,236,139,69,244,139,64,28,137,69,232,139,69,244,139,64,36,137,69,228,139,69,244,139,64,28,133,192,15,132,168,0,0,0,235,66,139,69,240,139,0,137,69,224,131,69,240,4,141,69,224,139,0,37,0,0,0,96,133,192,116,17,141,69,224,139,0,37,0,0,0,96,61,0,0,0, 96,117,11,141,131,217,38,9,0,139,0,137,69,224,139,85,224,139,69,232,137,16,131,69,232,4,255,77,236,131,125,236,255,117,181,255,77,228,131,125,228,255,117,73,141,131,5,52,9,0,139,0,139,16,139,69,244,139,64,40,137,84,36,4,137,4,36,232,218,165,6,0,137,69, 220,131,125,220,0,117,16,141,131,212,161,8,0,137,4,36,232,202,105,7,0,235,11,139,69,220,137,4,36,232,135,241,1,0,139,69,244,139,64,32,137,69,228,139,85,244,139,69,228,137,66,36,139,69,8,131,192,16,131,196,52,91,201,195,85,137,229,83,131,236,68,232,0, 0,0,0,91,141,131,3,51,9,0,139,0,139,16,139,69,8,139,64,40,137,84,36,4,137,4,36,232,111,165,6,0,137,69,236,131,125,236,0,117,57,139,69,8,139,64,40,139,0,15,182,0,132,192,15,132,9,1,0,0,139,69,8,139,64,40,139,0,137,68,36,8,141,131,222,160,8,0,137,68,36, 4,139,69,8,137,4,36,232,4,104,7,0,233,227,0,0,0,139,69,8,131,192,28,137,68,36,8,141,69,240,137,68,36,4,139,69,236,137,4,36,232,226,241,1,0,133,192,117,38,139,69,8,139,64,40,139,0,137,68,36,8,141,131,250,160,8,0,137,68,36,4,139,69,8,137,4,36,232,190,103, 7,0,233,157,0,0,0,139,69,12,139,0,139,0,137,69,232,139,69,12,139,0,243,15,16,72,8,243,15,42,69,232,15,40,209,243,15,94,208,15,40,194,243,15,44,192,137,69,228,131,125,228,0,127,7,199,69,228,1,0,0,0,139,85,8,139,69,228,137,66,32,139,69,8,139,64,36,59,69, 228,126,9,139,85,8,139,69,228,137,66,36,139,69,240,57,69,232,125,6,139,69,232,137,69,240,139,69,236,137,4,36,232,226,239,1,0,139,85,240,139,69,12,139,0,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,242,254,255,255, 137,4,36,232,165,127,1,0,131,196,68,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,83,253,255,255,141,131,195,159,8,0,137,4,36,232,76,105,6,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,48,0,0,0,199,68,36, 8,0,0,0,0,137,116,36,4,137,4,36,232,252,93,6,0,137,194,141,131,170,69,9,0,137,16,141,131,170,69,9,0,139,0,199,68,36,4,44,0,0,0,137,4,36,232,178,102,6,0,141,131,90,163,8,0,137,4,36,232,232,104,6,0,137,194,141,139,159,254,255,255,141,131,170,69,9,0,139, 0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,171,97,6,0,131,196,32,91,94,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,244, 139,64,28,137,69,232,131,125,232,0,116,99,139,69,244,139,64,32,137,69,228,235,18,139,69,232,139,16,139,69,240,137,16,131,69,240,4,131,69,232,4,255,77,228,131,125,228,255,117,229,139,69,244,139,80,32,139,69,236,41,208,137,69,228,235,17,139,69,240,141, 145,207,35,9,0,139,18,137,16,131,69,240,4,255,77,228,131,125,228,255,117,230,235,26,139,69,240,141,145,207,35,9,0,139,18,137,16,131,69,240,4,255,77,236,131,125,236,255,117,230,139,69,8,131,192,16,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131, 74,48,9,0,139,0,139,16,139,69,8,139,64,36,137,84,36,4,137,4,36,232,182,162,6,0,137,69,244,131,125,244,0,117,57,139,69,8,139,64,36,139,0,15,182,0,132,192,15,132,201,0,0,0,139,69,8,139,64,36,139,0,137,68,36,8,141,131,37,158,8,0,137,68,36,4,139,69,8,137, 4,36,232,75,101,7,0,233,163,0,0,0,139,69,8,131,192,28,139,85,8,131,194,32,137,68,36,8,137,84,36,4,139,69,244,137,4,36,232,38,239,1,0,133,192,117,35,139,69,8,139,64,36,139,0,137,68,36,8,141,131,106,158,8,0,137,68,36,4,139,69,8,137,4,36,232,2,101,7,0,235, 93,139,69,8,139,80,32,139,69,12,139,0,139,0,57,194,126,13,139,69,12,139,0,139,16,139,69,8,137,80,32,139,69,244,137,4,36,232,109,237,1,0,139,69,12,139,0,139,16,139,69,12,139,0,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0, 141,131,68,255,255,255,137,4,36,232,44,125,1,0,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,54,67,9,0,139,0,137,4,36,232,14,156,6,0,137,69,244,139,85,244,139,69,8,137,66,36,139,85,244,141,131,50,47,9,0,139,0,137,68,36,4,137,20, 36,232,185,142,6,0,139,69,244,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,170,255,255,255,141,131,45,157,8,0,137,4,36,232,138,102,6,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,199, 68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,58,91,6,0,137,194,141,131,236,66,9,0,137,16,141,131,152,160,8,0,137,4,36,232,62,102,6,0,137,194,141,139,150,254,255,255,141,131,236,66,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,1,95, 6,0,131,196,32,91,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,80,46,9,0,139,0,139,16,139,69,8,139,64,28,137,84,36,4,137,4,36,232,188,160,6,0,137,69,244,131,125,244,0,117,38,139,69,8,139,64,28,139,0,137,68,36,8,141,131,157,156,8,0,137,68, 36,4,139,69,8,137,4,36,232,100,99,7,0,233,178,0,0,0,141,69,236,137,68,36,8,141,69,240,137,68,36,4,139,69,244,137,4,36,232,69,237,1,0,133,192,117,35,139,69,8,139,64,28,139,0,137,68,36,8,141,131,175,156,8,0,137,68,36,4,139,69,8,137,4,36,232,33,99,7,0,235, 114,243,15,16,69,12,243,15,44,192,137,69,232,131,125,232,0,121,9,199,69,232,0,0,0,0,235,15,139,69,240,57,69,232,124,7,139,69,240,72,137,69,232,139,69,240,133,192,116,25,139,69,232,193,224,2,137,194,139,69,236,141,4,2,243,15,16,0,243,15,17,69,228,235, 15,141,131,36,33,9,0,243,15,16,0,243,15,17,69,228,139,69,8,139,64,12,243,15,16,69,228,243,15,17,68,36,4,137,4,36,232,191,142,6,0,131,196,52,91,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,28,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141, 131,51,65,9,0,139,0,137,4,36,232,7,154,6,0,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,141,131,55,45,9,0,139,0,137,68,36,4,137,20,36,232,178,140,6,0,139,69,244,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,170,255,255, 255,141,131,97,155,8,0,137,4,36,232,131,100,6,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,51,89,6,0,137,194,141,131,233,64,9,0,137,16,141,147,137,254,255,255,141, 131,233,64,9,0,139,0,137,84,36,4,137,4,36,232,200,96,6,0,141,131,225,158,8,0,137,4,36,232,29,100,6,0,137,194,141,139,153,255,255,255,141,131,233,64,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,216,92,6,0,131, 196,32,91,94,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,141,131,39,44,9,0,139,0,139,16,139,69,8,139,64,28,137,84,36,4,137,4,36,232,147,158,6,0,137,69,244,131,125,244,0,117,38,139,69,8,139,64,28,139,0,137,68,36,8,141,131,116,154,8,0,137,68,36,4,139, 69,8,137,4,36,232,59,97,7,0,233,21,2,0,0,141,69,236,137,68,36,8,141,69,240,137,68,36,4,139,69,244,137,4,36,232,28,235,1,0,133,192,117,38,139,69,8,139,64,28,139,0,137,68,36,8,141,131,171,154,8,0,137,68,36,4,139,69,8,137,4,36,232,248,96,7,0,233,210,1,0, 0,139,69,240,131,248,3,127,31,139,69,8,139,80,12,141,131,251,30,9,0,139,0,137,68,36,4,137,20,36,232,227,140,6,0,233,171,1,0,0,141,131,255,30,9,0,243,15,16,0,15,46,69,12,115,2,235,31,139,69,236,131,192,4,139,16,139,69,8,139,64,12,137,84,36,4,137,4,36, 232,178,140,6,0,233,122,1,0,0,139,69,240,131,232,2,243,15,42,200,243,15,16,69,12,15,46,193,115,2,235,40,139,69,236,141,80,248,139,69,240,193,224,2,141,4,2,139,16,139,69,8,139,64,12,137,84,36,4,137,4,36,232,116,140,6,0,233,60,1,0,0,243,15,16,69,12,243, 15,44,192,137,69,232,139,69,240,131,232,2,59,69,232,127,9,139,69,240,131,232,3,137,69,232,139,69,232,193,224,2,137,194,139,69,236,141,4,2,137,69,204,243,15,42,77,232,243,15,16,69,12,243,15,92,193,243,15,17,69,208,139,69,204,131,232,4,139,0,137,69,228, 139,69,204,139,0,137,69,224,139,69,204,131,192,4,139,0,137,69,220,139,69,204,131,192,8,139,0,137,69,216,243,15,16,69,220,243,15,92,69,224,243,15,17,69,212,243,15,90,109,224,243,15,90,117,208,243,15,90,125,212,243,15,90,77,208,141,131,27,31,9,0,242,15, 16,0,102,15,40,208,242,15,92,209,102,15,40,202,141,131,35,31,9,0,242,15,16,0,102,15,40,217,242,15,89,216,243,15,16,69,216,15,40,208,243,15,92,85,228,243,15,16,77,212,141,131,3,31,9,0,243,15,16,0,243,15,89,193,243,15,88,194,15,40,224,243,15,89,101,208, 243,15,16,69,228,243,15,88,192,15,40,208,243,15,88,85,216,243,15,16,77,224,141,131,3,31,9,0,243,15,16,0,243,15,89,193,243,15,88,194,243,15,88,196,243,15,90,192,242,15,89,195,242,15,88,199,242,15,89,198,242,15,88,197,242,15,90,192,139,69,8,139,64,12,243, 15,17,68,36,4,137,4,36,232,51,139,6,0,131,196,68,91,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,28,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,171,61,9,0,139,0,137,4,36,232,123,150,6,0,137,69,244,139,85,244,139,69,8,137,66,28,139, 85,244,141,131,171,41,9,0,139,0,137,68,36,4,137,20,36,232,38,137,6,0,139,69,244,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,170,255,255,255,141,131,251,151,8,0,137,4,36,232,247,96,6,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0, 0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,167,85,6,0,137,194,141,131,97,61,9,0,137,16,141,147,38,253,255,255,141,131,97,61,9,0,139,0,137,84,36,4,137,4,36,232,60,93,6,0,141,131,85,155,8,0,137,4,36,232, 145,96,6,0,137,194,141,139,153,255,255,255,141,131,97,61,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,76,89,6,0,131,196,32,91,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,155,40,9,0,139,0,139, 16,139,69,8,139,64,28,137,84,36,4,137,4,36,232,7,155,6,0,137,69,236,131,125,236,0,117,38,139,69,8,139,64,28,139,0,137,68,36,8,141,131,232,150,8,0,137,68,36,4,139,69,8,137,4,36,232,175,93,7,0,233,138,0,0,0,141,69,232,137,68,36,8,141,69,240,137,68,36,4, 139,69,236,137,4,36,232,144,231,1,0,133,192,117,35,139,69,8,139,64,28,139,0,137,68,36,8,141,131,70,151,8,0,137,68,36,4,139,69,8,137,4,36,232,108,93,7,0,235,74,139,69,8,243,15,16,64,32,243,15,44,192,137,69,228,131,125,228,0,121,9,199,69,228,0,0,0,0,235, 15,139,69,240,57,69,228,124,7,139,69,240,72,137,69,228,139,69,228,193,224,2,137,194,139,69,232,1,194,139,69,12,137,2,139,69,236,137,4,36,232,31,230,1,0,131,196,52,91,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,28,201,195,85,137,229,83,131, 236,36,232,0,0,0,0,91,141,131,174,59,9,0,139,0,137,4,36,232,122,148,6,0,137,69,244,139,85,244,141,131,118,26,9,0,139,0,137,66,32,139,85,244,139,69,8,137,66,28,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,63,130,6,0,139,69,244,131,196,36, 91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,158,255,255,255,141,131,21,150,8,0,137,4,36,232,234,94,6,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232, 154,83,6,0,137,194,141,131,88,59,9,0,137,16,141,147,165,254,255,255,141,131,88,59,9,0,139,0,137,84,36,4,137,4,36,232,47,91,6,0,141,131,72,153,8,0,137,4,36,232,132,94,6,0,137,194,141,139,141,255,255,255,141,131,88,59,9,0,139,0,199,68,36,16,0,0,0,0,199, 68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,63,87,6,0,131,196,32,91,94,201,195,85,137,229,131,236,8,232,97,220,255,255,232,185,225,255,255,232,109,229,255,255,232,91,234,255,255,232,239,240,255,255,232,187,244,255,255,232,120,247,255,255,232, 122,249,255,255,232,1,253,255,255,232,9,255,255,255,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,235,12,139,85,240,139,69,244,137,2,131,69,240,4,255,77, 236,131,125,236,255,117,235,139,69,8,131,192,16,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,235,93,139,85,240,139,69,244,137,2,139,85,240,131,194,4,139, 69,244,137,2,139,85,240,131,194,8,139,69,244,137,2,139,85,240,131,194,12,139,69,244,137,2,139,85,240,131,194,16,139,69,244,137,2,139,85,240,131,194,20,139,69,244,137,2,139,85,240,131,194,24,139,69,244,137,2,139,85,240,131,194,28,139,69,244,137,2,131, 109,236,8,131,69,240,32,131,125,236,0,117,157,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,16,131,224,7,133,192,116,45,139,69,16,137,68,36,16,139,69,12,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,22,255, 255,255,137,4,36,232,36,115,1,0,235,43,139,69,16,137,68,36,16,139,69,12,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,94,255,255,255,137,4,36,232,247,114,1,0,131,196,36,91,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,28,201, 195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,139,0,139,64,4,139,85,8,131,194,28,137,76,36,16,137,68,36,12,137,84,36,8,199,68,36,4,3,0,0,0,141,131,144,254,255,255,137,4,36,232,156,114,1,0,131,196,36,91,201,195,85,137,229, 83,131,236,36,232,0,0,0,0,91,141,131,182,56,9,0,139,0,137,4,36,232,126,145,6,0,137,69,244,139,85,244,139,69,8,137,66,28,141,131,178,151,8,0,137,4,36,232,46,92,6,0,139,85,244,137,68,36,4,137,20,36,232,35,132,6,0,139,69,244,131,196,36,91,201,195,85,137, 229,86,83,131,236,32,232,0,0,0,0,91,141,179,164,255,255,255,141,131,40,147,8,0,137,4,36,232,244,91,6,0,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,164,80,6,0,137,194, 141,131,102,56,9,0,137,16,141,147,73,255,255,255,141,131,102,56,9,0,139,0,137,84,36,4,137,4,36,232,57,88,6,0,141,131,2,150,8,0,137,4,36,232,142,91,6,0,137,194,141,139,90,255,255,255,141,131,102,56,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36, 4,137,4,36,232,81,84,6,0,131,196,32,91,94,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,244,139,64,32,137,69,232,141,69,232,139,0,37,0, 0,0,96,133,192,116,17,141,69,232,139,0,37,0,0,0,96,61,0,0,0,96,117,20,141,129,117,22,9,0,139,0,137,69,232,139,85,232,139,69,244,137,80,32,139,69,244,139,64,64,133,192,15,132,130,0,0,0,139,69,244,243,15,16,72,56,139,69,244,243,15,16,64,48,243,15,89,193, 243,15,44,192,137,69,228,131,125,228,0,117,7,199,69,228,1,0,0,0,139,85,244,139,69,228,137,66,60,139,69,244,243,15,16,72,28,139,69,244,243,15,16,64,32,243,15,92,200,243,15,42,69,228,15,40,209,243,15,94,208,15,40,194,139,69,244,243,15,17,64,36,139,69,244, 243,15,16,72,44,139,69,244,243,15,16,64,36,243,15,89,193,139,69,244,243,15,17,64,40,139,69,244,199,64,64,0,0,0,0,139,69,244,139,64,60,133,192,116,99,139,69,244,139,64,32,137,69,224,235,34,139,85,240,139,69,224,137,2,131,69,240,4,139,69,244,243,15,16, 72,40,243,15,16,69,224,243,15,88,193,243,15,17,69,224,255,77,236,131,125,236,255,117,213,139,69,244,243,15,16,72,32,139,69,244,243,15,16,64,36,243,15,88,193,139,69,244,243,15,17,64,32,139,69,244,139,64,60,141,80,255,139,69,244,137,80,60,235,44,139,69, 244,139,80,28,139,69,244,137,80,32,139,69,244,139,64,32,137,69,220,235,12,139,85,240,139,69,220,137,2,131,69,240,4,255,77,236,131,125,236,255,117,235,139,69,8,131,192,16,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244, 139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,244,139,64,32,137,69,232,141,69,232,139,0,37,0,0,0,96,133,192,116,17,141,69,232,139,0,37,0,0,0,96,61,0,0,0,96,117,20,141,129,219,20,9,0,139,0,137,69,232,139,85,232,139,69, 244,137,80,32,139,69,244,139,64,64,133,192,15,132,130,0,0,0,139,69,244,243,15,16,72,56,139,69,244,243,15,16,64,48,243,15,89,193,243,15,44,192,137,69,228,131,125,228,0,117,7,199,69,228,1,0,0,0,139,85,244,139,69,228,137,66,60,139,69,244,243,15,16,72,28, 139,69,244,243,15,16,64,32,243,15,92,200,243,15,42,69,228,15,40,209,243,15,94,208,15,40,194,139,69,244,243,15,17,64,36,139,69,244,243,15,16,72,44,139,69,244,243,15,16,64,36,243,15,89,193,139,69,244,243,15,17,64,40,139,69,244,199,64,64,0,0,0,0,139,69, 244,139,64,60,133,192,116,99,139,69,244,139,64,32,137,69,224,235,34,139,85,240,139,69,224,137,2,131,69,240,4,139,69,244,243,15,16,72,40,243,15,16,69,224,243,15,88,193,243,15,17,69,224,255,77,236,131,125,236,255,117,213,139,69,244,243,15,16,72,32,139, 69,244,243,15,16,64,36,243,15,88,193,139,69,244,243,15,17,64,32,139,69,244,139,64,60,141,80,255,139,69,244,137,80,60,235,122,139,69,244,139,80,28,139,69,244,137,80,32,139,69,244,139,64,32,137,69,220,235,93,139,85,240,139,69,220,137,2,139,85,240,131,194, 4,139,69,220,137,2,139,85,240,131,194,8,139,69,220,137,2,139,85,240,131,194,12,139,69,220,137,2,139,85,240,131,194,16,139,69,220,137,2,139,85,240,131,194,20,139,69,220,137,2,139,85,240,131,194,24,139,69,220,137,2,139,85,240,131,194,28,139,69,220,137, 2,131,109,236,8,131,69,240,32,131,125,236,0,117,157,139,69,8,131,192,16,201,195,85,137,229,131,236,8,232,0,0,0,0,89,139,69,8,243,15,16,72,52,141,129,243,18,9,0,243,15,16,0,15,46,193,115,2,235,45,139,85,8,139,69,12,137,66,32,139,69,8,139,80,32,139,69, 8,137,80,28,139,69,8,199,64,64,0,0,0,0,139,69,8,139,80,64,139,69,8,137,80,60,235,45,139,85,8,139,69,12,137,66,28,139,69,8,199,64,64,1,0,0,0,139,69,8,139,80,52,139,69,8,137,80,56,139,85,8,141,129,243,18,9,0,139,0,137,66,52,201,195,85,137,229,131,236,8, 139,69,8,139,80,32,139,69,8,137,80,28,139,69,8,199,64,64,0,0,0,0,139,69,8,139,80,64,139,69,8,137,80,60,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,0,131,224,7,133,192,116,54,139,69,12,139,0,139,16,139,69,12,139,0,139,64,4,137, 84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,199,251,255,255,137,4,36,232,20,109,1,0,235,52,139,69,12,139,0,139,16,139,69,12,139,0,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,97,253,255, 255,137,4,36,232,222,108,1,0,139,69,12,139,0,139,0,242,15,42,200,141,131,103,18,9,0,242,15,16,0,242,15,94,193,242,15,90,192,139,69,8,243,15,17,64,44,139,69,12,139,0,243,15,16,72,8,139,69,12,139,0,139,0,105,192,232,3,0,0,243,15,42,192,15,40,209,243,15, 94,208,15,40,194,139,69,8,243,15,17,64,48,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,170,50,9,0,139,0,137,4,36,232,110,139,6,0,137,69,244,141,131,162,145,8,0,137,4,36,232,39,86,6,0,139,85,244,137,68,36,4,137,20,36,232,28,126, 6,0,139,69,244,131,192,52,139,85,244,137,68,36,4,137,20,36,232,45,121,6,0,139,69,244,199,64,64,0,0,0,0,139,69,244,139,80,64,139,69,244,137,80,60,139,85,244,141,131,106,17,9,0,139,0,137,66,56,139,69,244,139,80,56,139,69,244,137,80,52,139,69,244,139,80, 52,139,69,244,137,80,28,139,69,244,139,80,28,139,69,244,137,80,32,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,202,140,8,0,137,4,36,232,151,85,6,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,68,0, 0,0,199,68,36,8,0,0,0,0,141,131,81,255,255,255,137,68,36,4,137,20,36,232,71,74,6,0,137,194,141,131,7,50,9,0,137,16,141,147,201,253,255,255,141,131,7,50,9,0,139,0,137,84,36,4,137,4,36,232,220,81,6,0,141,131,159,143,8,0,137,4,36,232,49,85,6,0,137,194,141, 139,116,254,255,255,141,131,7,50,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,244,77,6,0,141,131,108,138,8,0,137,4,36,232,251,84,6,0,137,194,141,139,74,254,255,255,141,131,7,50,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76, 36,4,137,4,36,232,190,77,6,0,131,196,36,91,201,195,85,137,229,83,131,236,116,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,244,242,15,16,64,28,242,15,17,69,216,139,69, 244,242,15,16,64,36,242,15,17,69,208,139,69,244,242,15,16,64,60,242,15,17,69,200,139,69,244,242,15,16,64,52,242,15,17,69,192,139,69,244,242,15,16,64,44,242,15,17,4,36,232,18,149,6,0,221,93,160,242,15,42,69,236,242,15,89,69,200,242,15,16,77,160,242,15, 92,200,102,15,40,193,242,15,17,69,184,139,69,244,139,64,88,137,69,228,199,69,232,0,0,0,0,233,239,1,0,0,242,15,16,69,184,242,15,88,69,200,242,15,17,69,176,131,125,228,0,15,132,83,1,0,0,139,69,228,242,15,16,72,8,242,15,16,69,176,102,15,46,193,119,5,233, 59,1,0,0,139,69,244,242,15,16,72,68,242,15,16,69,176,102,15,46,193,115,2,235,32,139,69,244,243,15,16,64,76,243,15,90,192,242,15,17,69,216,141,131,250,15,9,0,242,15,16,0,242,15,17,69,208,139,69,228,242,15,16,8,139,69,228,242,15,16,64,8,102,15,46,193,115, 2,235,34,139,69,228,243,15,16,64,16,243,15,90,192,242,15,17,69,216,141,131,250,15,9,0,242,15,16,0,242,15,17,69,208,235,120,139,69,228,243,15,16,64,16,243,15,90,192,102,15,40,208,242,15,92,85,216,139,69,228,242,15,16,8,139,69,228,242,15,16,64,8,102,15, 40,217,242,15,92,216,102,15,40,195,102,15,40,202,242,15,94,200,102,15,40,193,242,15,17,69,168,139,69,228,242,15,16,72,8,242,15,16,69,176,242,15,92,193,102,15,40,200,242,15,89,77,168,242,15,16,69,216,242,15,88,193,242,15,17,69,216,242,15,16,69,168,242, 15,89,69,200,242,15,17,69,208,139,69,244,242,15,16,69,208,242,15,17,64,36,139,69,228,139,80,16,139,69,244,137,80,76,139,69,228,242,15,16,0,139,69,244,242,15,17,64,68,139,69,228,139,80,20,139,69,244,137,80,88,199,68,36,4,24,0,0,0,139,69,228,137,4,36,232, 57,110,6,0,139,69,244,139,64,88,137,69,228,233,163,254,255,255,139,69,244,242,15,16,72,68,242,15,16,69,176,102,15,46,193,115,2,235,66,139,69,244,243,15,16,64,76,243,15,90,192,242,15,17,69,216,139,85,244,141,131,250,15,9,0,242,15,16,0,242,15,17,66,36, 139,69,244,242,15,16,64,36,242,15,17,69,208,139,85,244,141,131,42,16,9,0,242,15,16,0,242,15,17,66,68,242,15,90,69,216,139,69,240,243,15,17,0,131,69,240,4,242,15,16,69,216,242,15,88,69,208,242,15,17,69,216,242,15,16,69,176,242,15,17,69,184,255,69,232, 139,69,232,59,69,236,15,140,5,254,255,255,139,69,244,242,15,16,69,216,242,15,17,64,28,139,69,8,131,192,16,131,196,116,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,88,137,69,244,235,34,139,69,244,139,64,20,137,69,240,199,68,36,4, 24,0,0,0,139,69,244,137,4,36,232,79,109,6,0,139,69,240,137,69,244,131,125,244,0,117,216,139,69,8,199,64,88,0,0,0,0,139,85,8,141,131,62,13,9,0,242,15,16,0,242,15,17,66,36,139,85,8,141,131,38,13,9,0,139,0,137,66,84,139,69,8,139,80,84,139,69,8,137,80,80, 139,69,8,242,15,16,64,28,242,15,90,192,139,69,8,243,15,17,64,76,139,85,8,141,131,110,13,9,0,242,15,16,0,242,15,17,66,68,131,196,36,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,242,15,16,64,44,242,15,17,4,36,232,9,146,6,0,221,93,216,139, 69,8,243,15,16,72,80,141,131,132,12,9,0,243,15,16,0,15,46,193,118,2,235,15,139,69,8,243,15,16,64,80,243,15,17,69,196,235,15,141,131,132,12,9,0,243,15,16,0,243,15,17,69,196,243,15,16,69,196,243,15,17,69,244,139,69,8,139,64,84,137,69,240,243,15,90,69,240, 242,15,88,69,216,242,15,17,69,208,199,69,228,0,0,0,0,141,69,12,139,0,37,0,0,0,96,133,192,116,17,141,69,12,139,0,37,0,0,0,96,61,0,0,0,96,117,11,141,131,132,12,9,0,139,0,137,69,12,141,131,132,12,9,0,243,15,16,0,15,46,69,240,119,2,235,33,243,15,16,69,12, 243,15,90,192,139,69,8,242,15,17,64,28,139,69,8,137,4,36,232,132,254,255,255,233,128,1,0,0,199,4,36,24,0,0,0,232,16,106,6,0,137,69,224,139,69,8,139,64,88,133,192,116,83,139,69,8,139,64,88,242,15,16,64,8,102,15,46,69,208,119,65,139,69,8,139,64,88,242, 15,16,64,8,102,15,46,69,208,117,70,122,68,139,69,8,139,64,88,242,15,16,8,139,69,8,139,64,88,242,15,16,64,8,102,15,46,200,119,18,141,131,132,12,9,0,243,15,16,0,15,46,69,244,115,2,235,23,139,69,8,139,64,88,137,69,228,139,85,8,139,69,224,137,66,88,233,172, 0,0,0,139,69,8,139,64,88,137,69,236,235,94,139,69,232,242,15,16,64,8,102,15,46,69,208,119,56,139,69,232,242,15,16,64,8,102,15,46,69,208,117,58,122,56,139,69,232,242,15,16,8,139,69,232,242,15,16,64,8,102,15,46,200,119,18,141,131,132,12,9,0,243,15,16,0, 15,46,69,244,115,2,235,17,139,69,232,137,69,228,139,85,236,139,69,224,137,66,20,235,73,139,69,232,137,69,236,139,69,236,139,64,20,137,69,232,131,125,232,0,117,147,139,85,236,139,69,224,137,66,20,199,69,228,0,0,0,0,235,34,139,69,228,139,64,20,137,69,236, 199,68,36,4,24,0,0,0,139,69,228,137,4,36,232,217,106,6,0,139,69,236,137,69,228,131,125,228,0,117,216,139,69,224,199,64,20,0,0,0,0,139,85,12,139,69,224,137,80,16,139,69,224,242,15,16,69,208,242,15,17,64,8,243,15,90,69,244,242,15,88,69,208,139,69,224,242, 15,17,0,139,85,8,141,131,132,12,9,0,139,0,137,66,84,139,69,8,139,80,84,139,69,8,137,80,80,131,196,84,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,16,139,69,12,139,0,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199, 68,36,4,3,0,0,0,141,131,49,250,255,255,137,4,36,232,250,100,1,0,139,69,12,139,0,243,15,16,64,8,243,15,90,200,141,131,111,10,9,0,242,15,16,0,102,15,40,209,242,15,94,208,102,15,40,194,139,69,8,242,15,17,64,52,139,69,12,139,0,243,15,16,64,8,243,15,90,200, 141,131,111,10,9,0,242,15,16,0,242,15,94,193,139,69,8,242,15,17,64,60,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,204,42,9,0,139,0,137,4,36,232,140,131,6,0,137,69,244,141,131,192,137,8,0,137,4,36,232,69,78,6,0,139,85,244,137, 68,36,4,137,20,36,232,58,118,6,0,139,69,244,131,192,80,139,85,244,137,68,36,4,137,20,36,232,75,113,6,0,139,69,244,131,192,84,139,85,244,137,68,36,4,137,20,36,232,54,113,6,0,139,85,244,141,131,136,9,9,0,139,0,137,66,84,139,69,244,139,80,84,139,69,244, 137,80,80,139,85,244,141,131,160,9,9,0,242,15,16,0,242,15,17,66,36,139,69,244,242,15,16,64,36,139,69,244,242,15,17,64,28,232,64,142,6,0,139,69,244,221,88,44,139,69,244,199,64,88,0,0,0,0,139,85,244,141,131,160,9,9,0,242,15,16,0,242,15,17,66,52,139,85, 244,141,131,208,9,9,0,242,15,16,0,242,15,17,66,68,139,69,244,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,112,251,255,255,141,131,171,132,8,0,137,4,36,232,108,77,6,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68, 36,12,92,0,0,0,137,116,36,8,141,131,14,255,255,255,137,68,36,4,137,20,36,232,32,66,6,0,137,194,141,131,230,41,9,0,137,16,141,147,18,252,255,255,141,131,230,41,9,0,139,0,137,84,36,4,137,4,36,232,181,73,6,0,141,131,122,135,8,0,137,4,36,232,10,77,6,0,137, 194,141,139,119,254,255,255,141,131,230,41,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,205,69,6,0,141,131,71,130,8,0,137,4,36,232,212,76,6,0,137,194,141,139,112,251,255,255,141,131,230,41,9,0,139,0,199,68,36,12,0,0,0,0,137,84, 36,8,137,76,36,4,137,4,36,232,151,69,6,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,2,41,9,0,139,0,137,4,36,232,190,129,6,0,137,69,244,139,85,244,141,131,186,7,9,0,139,0,137,66,28,139,85,244,141,131,238,20,9,0,139,0,137, 68,36,4,137,20,36,232,100,116,6,0,139,85,244,141,131,186,7,9,0,139,0,137,66,32,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,244,139,16,139,69,240,137,16,139,69,8, 131,192,12,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,77,8,131,193,28,139,69,12,139,0,139,64,4,141,80,252,139,69,12,139,0,139,0,193,224,2,141,4,2,137,76,36,12,137,68,36,8,199,68,36,4,2,0,0,0,141,131,198,255,255,255,137,4,36,232,3,98,1,0,131, 196,20,91,201,195,85,137,229,131,236,24,139,69,8,139,80,28,139,69,8,139,64,12,137,84,36,4,137,4,36,232,104,117,6,0,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,28,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,192,130,8,0,137,4,36, 232,128,75,6,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,141,131,234,254,255,255,137,68,36,4,137,20,36,232,48,64,6,0,137,194,141,131,248,39,9,0,137,16,141,131,248,39,9,0,139,0,199,68,36,4,32,0,0,0,137, 4,36,232,230,72,6,0,141,131,136,133,8,0,137,4,36,232,28,75,6,0,137,194,141,139,116,255,255,255,141,131,248,39,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,223,67,6,0,141,131,216,133,8,0,137,4,36,232,230,74,6,0,137,194,141,139,227, 255,255,255,141,131,248,39,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,161,67,6,0,141,147,195,255,255,255,141,131,248,39,9,0,139,0,137,84,36,4,137,4,36,232,23,71,6,0,131,196,36,91,201,195,85,137,229,83,131, 236,36,232,0,0,0,0,91,141,131,247,38,9,0,139,0,137,4,36,232,175,127,6,0,137,69,244,139,85,244,141,131,223,18,9,0,139,0,137,68,36,4,137,20,36,232,99,114,6,0,139,85,244,141,131,171,5,9,0,139,0,137,66,40,139,69,244,199,64,28,0,0,0,0,139,69,244,199,64,36, 0,0,0,0,139,69,244,199,64,32,0,0,0,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,240,139,64,36,137,69,236,139,69,240,139,64,28,137,69,232,199,69,228,0,0,0,0,235, 27,139,69,228,193,224,2,137,194,3,85,236,139,69,228,193,224,2,3,69,244,139,0,137,2,255,69,228,139,69,228,59,69,232,124,221,232,64,138,6,0,139,69,240,221,88,48,139,69,240,199,64,32,1,0,0,0,139,69,8,131,192,12,201,195,85,137,229,83,131,236,36,232,0,0,0, 0,91,139,69,12,139,0,139,0,137,69,244,139,69,8,139,64,28,59,69,244,116,82,139,69,8,139,64,36,133,192,116,31,139,69,8,139,64,28,141,20,133,0,0,0,0,139,69,8,139,64,36,137,84,36,4,137,4,36,232,218,100,6,0,139,69,244,193,224,2,137,4,36,232,230,98,6,0,137, 194,139,69,8,137,80,36,139,69,8,199,64,32,0,0,0,0,139,85,8,139,69,244,137,66,28,139,69,12,139,0,243,15,16,72,8,141,131,8,5,9,0,243,15,16,0,15,40,209,243,15,94,208,15,40,194,139,69,8,243,15,17,64,44,139,69,12,139,0,139,80,4,139,69,8,137,68,36,12,137,84, 36,8,199,68,36,4,2,0,0,0,141,131,125,255,255,255,137,4,36,232,33,95,1,0,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,64,32,133,192,116,103,139,69,8,242,15,16,64,48,242,15,17,4,36,232,122,137,6,0,221,93,224,139,69,8,243,15, 16,64,44,243,15,90,192,242,15,89,69,224,242,15,44,192,137,69,240,131,125,240,0,121,9,199,69,240,0,0,0,0,235,21,139,69,8,139,64,28,59,69,240,127,10,139,69,8,139,64,28,72,137,69,240,139,69,8,139,80,36,139,69,240,193,224,2,141,4,2,139,0,137,69,244,235,11, 141,131,255,3,9,0,139,0,137,69,244,139,69,8,139,80,12,139,69,244,137,68,36,4,137,20,36,232,6,114,6,0,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,139,64,36,133,192,116,31,139,69,8,139,64,28,141,20,133,0,0,0,0,139,69,8,139,64,36,137,84,36,4,137, 4,36,232,137,99,6,0,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,194,255,255,255,141,131,67,127,8,0,137,4,36,232,243,71,6,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,56,0,0,0,137,116,36,8,141,131,114,253,255,255,137, 68,36,4,137,20,36,232,167,60,6,0,137,194,141,131,117,36,9,0,137,16,141,131,117,36,9,0,139,0,199,68,36,4,40,0,0,0,137,4,36,232,93,69,6,0,141,131,1,130,8,0,137,4,36,232,147,71,6,0,137,194,141,139,85,254,255,255,141,131,117,36,9,0,139,0,199,68,36,12,0,0, 0,0,137,84,36,8,137,76,36,4,137,4,36,232,86,64,6,0,141,147,30,255,255,255,141,131,117,36,9,0,139,0,137,84,36,4,137,4,36,232,204,67,6,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,243,15,16,69,8,243,15,44,192,137,69,244,243,15, 16,69,12,243,15,44,192,137,69,240,131,125,244,0,127,7,199,69,244,0,4,0,0,131,125,240,0,127,15,139,85,244,137,208,193,232,31,1,208,209,248,137,69,240,139,69,244,141,80,31,133,192,15,72,194,193,248,5,64,59,69,240,126,18,139,69,244,141,80,31,133,192,15, 72,194,193,248,5,64,137,69,240,139,69,244,193,224,2,5,0,1,0,0,137,4,36,232,85,96,6,0,137,69,232,131,125,232,0,117,26,141,131,131,126,8,0,137,4,36,232,46,67,7,0,199,69,204,0,0,0,0,233,101,1,0,0,141,131,150,15,9,0,139,0,139,0,137,4,36,232,202,123,6,0,137, 69,236,139,85,236,139,69,232,137,66,36,139,85,236,139,69,244,137,66,52,139,69,236,199,64,40,0,0,0,0,139,85,236,139,69,240,137,66,44,199,69,228,0,0,0,0,235,21,139,77,228,139,85,236,141,131,94,2,9,0,139,0,137,68,138,60,255,69,228,131,125,228,31,126,229, 199,69,228,0,0,0,0,235,107,139,69,228,193,224,2,137,198,3,117,232,242,15,42,77,228,141,131,182,2,9,0,242,15,16,0,242,15,89,200,242,15,42,69,244,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,4,36,232,147,7,9,0,221,93,208,141,131,126,2,9,0,242,15, 16,0,102,15,40,200,242,15,92,77,208,242,15,42,69,244,102,15,40,209,242,15,94,208,102,15,40,194,242,15,90,192,243,15,17,6,255,69,228,139,69,228,59,69,244,124,141,235,24,139,69,228,193,224,2,137,194,3,85,232,141,131,94,2,9,0,139,0,137,2,255,69,228,139, 69,244,131,192,64,59,69,228,127,221,141,131,203,4,0,0,137,68,36,4,139,69,236,137,4,36,232,218,131,6,0,137,194,139,69,236,137,80,32,141,131,132,216,8,0,137,4,36,232,124,69,6,0,139,85,236,137,68,36,4,137,20,36,232,113,109,6,0,137,194,139,69,236,137,80, 28,139,85,236,141,131,94,2,9,0,139,0,137,130,188,0,0,0,139,69,236,199,128,192,0,0,0,64,0,0,0,139,69,236,137,69,204,139,69,204,131,196,64,91,94,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139, 0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,236,193,224,2,1,69,240,139,69,244,139,64,40,137,69,232,139,69,244,131,192,60,137,69,228,235,127,139,69,244,139,80,36,139,69,232,193,224,2,141,4,2,137,69,224,139,69,240,137,69,220,139,69,228,139, 0,137,69,216,199,69,212,0,0,0,0,235,57,131,109,220,4,139,69,224,243,15,16,16,139,69,220,243,15,16,8,139,69,220,243,15,16,0,243,15,89,193,15,40,202,243,15,89,200,243,15,16,69,216,243,15,88,193,243,15,17,69,216,131,69,224,4,255,69,212,139,69,212,59,69, 236,124,191,139,85,228,139,69,216,137,2,139,69,244,139,64,48,1,69,232,131,69,228,4,139,69,244,139,64,52,59,69,232,15,143,114,255,255,255,139,85,228,141,131,76,0,9,0,139,0,137,2,139,69,244,139,64,40,137,194,43,85,236,139,69,244,137,80,40,139,69,244,139, 64,40,133,192,15,137,131,0,0,0,139,69,244,139,80,60,139,69,244,137,80,56,139,69,244,139,64,48,137,69,232,139,69,244,131,192,60,137,69,228,235,26,139,69,228,131,192,4,139,16,139,69,228,137,16,139,69,244,139,64,48,1,69,232,131,69,228,4,139,69,244,139,64, 52,59,69,232,127,219,139,85,228,141,131,76,0,9,0,139,0,137,2,139,69,244,139,64,48,137,194,43,85,236,139,69,244,137,80,40,139,69,244,139,64,32,137,194,141,131,100,0,9,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,209,131,6,0,139,69,8,131,192,16,131,196, 68,91,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,139,69,8,139,80,44,139,69,12,139,0,139,0,137,193,137,208,193,250,31,247,249,137,208,133,192,116,52,139,69,8,139,80,44,139,69,12,139,0,139,0,141,12,2,139,69,8,139,80,44,139,69,12,139,0,139,0,137, 198,137,208,193,250,31,247,254,137,208,137,202,41,194,139,69,8,137,80,48,235,12,139,69,8,139,80,44,139,69,8,137,80,48,139,69,12,139,0,139,16,139,69,8,139,128,192,0,0,0,57,194,126,120,139,69,8,139,80,52,139,69,12,139,0,139,0,141,4,2,141,12,133,0,0,0,0, 139,69,8,139,80,52,139,69,8,139,128,192,0,0,0,141,4,2,141,20,133,0,0,0,0,139,69,8,139,64,36,137,76,36,8,137,84,36,4,137,4,36,232,91,93,6,0,137,69,244,131,125,244,0,117,16,141,131,250,122,8,0,137,4,36,232,139,60,7,0,235,77,139,85,244,139,69,8,137,80,36, 139,69,12,139,0,139,16,139,69,8,137,144,192,0,0,0,139,69,12,139,0,139,16,139,69,12,139,0,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,95,254,255,255,137,4,36,232,170,88,1,0,131,196,48,91,94,201,195,85,137,229,131, 236,24,139,69,8,139,64,56,137,4,36,232,236,75,7,0,139,69,8,139,64,28,217,92,36,4,137,4,36,232,6,108,6,0,201,195,85,137,229,131,236,24,139,69,8,139,64,32,137,4,36,232,129,131,6,0,139,69,8,139,80,52,139,69,8,139,128,192,0,0,0,141,4,2,141,20,133,0,0,0,0, 139,69,8,139,64,36,137,84,36,4,137,4,36,232,125,93,6,0,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,177,255,255,255,141,187,177,250,255,255,141,131,115,121,8,0,137,4,36,232,224,65,6,0,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68, 36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,196,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,140,54,6,0,137,194,141,131,84,10,9,0,139,0,137,16,141,131,84,10,9,0,139,0,139,0,199,68,36,4,188,0,0,0,137,4,36,232,62,63,6,0,141,131,244,123,8,0,137,4,36, 232,116,65,6,0,137,194,141,139,88,254,255,255,141,131,84,10,9,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,53,58,6,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,167,29,9,0,139,0,137,4,36,232, 91,118,6,0,137,69,244,139,69,244,199,64,44,0,0,0,0,139,85,244,141,131,87,252,8,0,139,0,137,66,56,141,131,125,1,0,0,137,68,36,4,139,69,244,137,4,36,232,61,127,6,0,137,194,139,69,244,137,80,36,139,85,244,141,131,135,9,9,0,139,0,137,68,36,4,137,20,36,232, 218,104,6,0,137,194,139,69,244,137,80,28,139,85,244,141,131,135,9,9,0,139,0,137,68,36,4,137,20,36,232,187,104,6,0,137,194,139,69,244,137,80,32,141,131,139,124,8,0,137,4,36,232,161,64,6,0,139,85,244,139,77,244,137,68,36,12,141,131,139,9,9,0,139,0,137, 68,36,8,137,84,36,4,137,12,36,232,17,92,6,0,139,85,244,141,131,87,252,8,0,139,0,137,66,60,139,85,244,141,131,87,252,8,0,139,0,137,66,40,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,9, 0,0,0,139,69,244,131,196,52,91,201,195,85,137,229,131,236,8,243,15,16,69,20,15,46,69,12,119,2,235,6,139,69,12,137,69,20,139,85,8,139,69,12,137,66,48,139,85,8,139,69,16,137,66,64,139,85,8,139,69,20,137,66,52,139,85,8,139,69,24,137,66,68,201,195,85,137, 229,131,236,8,232,0,0,0,0,89,141,129,10,251,8,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,15,182,208,139,69,8,137,80,44,139,85,8,141,129,10,251,8,0,139,0,137,66,56,201,195,85,137,229,131,236,24,139,69,8,139,64,44,133,192,116,16,139,69,8,139, 64,28,137,4,36,232,66,104,6,0,235,14,139,69,8,139,64,32,137,4,36,232,50,104,6,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,240,243, 15,16,72,56,141,131,158,250,8,0,243,15,16,0,15,46,200,119,2,235,39,139,69,240,243,15,16,72,56,139,69,240,243,15,16,64,60,15,40,209,243,15,92,208,15,40,194,139,69,240,243,15,17,64,56,233,196,0,0,0,139,69,240,139,64,44,133,192,15,132,173,0,0,0,235,80,139, 69,244,243,15,16,8,139,69,240,243,15,16,64,52,15,46,193,119,2,235,54,139,69,240,139,80,36,141,131,182,250,8,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,249,126,6,0,139,69,240,199,64,44,0,0,0,0,139,69,240,139,80,68,139,69,240,137,80,56,235,104,131,69, 244,4,255,77,236,131,125,236,255,117,167,235,89,139,69,244,243,15,16,8,139,69,240,243,15,16,64,48,15,46,200,115,2,235,54,139,69,240,139,80,36,141,131,182,250,8,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,158,126,6,0,139,69,240,199,64,44,1,0,0,0,139, 69,240,139,80,64,139,69,240,137,80,56,235,13,131,69,244,4,255,77,236,131,125,236,255,117,167,139,69,8,131,192,16,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,0,242,15,42,200,141,131,176,249,8,0,242,15,16,0,242,15, 89,200,139,69,12,139,0,243,15,16,64,8,243,15,90,192,102,15,40,209,242,15,94,208,102,15,40,194,242,15,90,192,139,69,8,243,15,17,64,60,139,69,12,139,0,139,16,139,69,12,139,0,139,72,4,137,84,36,16,139,69,8,137,68,36,12,137,76,36,8,199,68,36,4,3,0,0,0,141, 131,182,254,255,255,137,4,36,232,252,83,1,0,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,64,36,137,4,36,232,252,126,6,0,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,141,179,220,255,255,255,141,187,95,252,255,255,141,131,30,117,8, 0,137,4,36,232,134,61,6,0,199,68,36,36,0,0,0,0,199,68,36,32,6,0,0,0,199,68,36,28,6,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,72,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,34,50,6,0,137,194,141,131,18,26,9,0,137, 16,141,131,18,26,9,0,139,0,199,68,36,4,40,0,0,0,137,4,36,232,216,58,6,0,141,131,234,119,8,0,137,4,36,232,14,61,6,0,137,194,141,139,110,253,255,255,141,131,18,26,9,0,139,0,199,68,36,28,0,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0, 0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,177,53,6,0,141,131,246,120,8,0,137,4,36,232,184,60,6,0,137,194,141,139,173,253,255,255,141,131,18,26,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232, 115,53,6,0,141,131,154,119,8,0,137,4,36,232,122,60,6,0,137,194,141,139,86,255,255,255,141,131,18,26,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,61,53,6,0,131,196,60,91,94,95,201,195,85,137,229,131,236,8,232,41,224,255,255,232, 136,230,255,255,232,167,238,255,255,232,149,240,255,255,232,22,244,255,255,232,29,250,255,255,232,114,254,255,255,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,141,131,135,24,9,0,139,0,137,4,36,232,55,113,6,0,137,69,244,131,125,12,0,117,60,141,69, 220,137,69,16,199,69,12,2,0,0,0,199,69,220,1,0,0,0,141,131,55,247,8,0,139,0,137,69,224,141,69,220,131,192,8,199,0,1,0,0,0,141,69,220,141,80,8,141,131,147,247,8,0,139,0,137,66,4,139,85,244,139,69,12,137,66,28,139,69,12,193,224,2,137,4,36,232,49,85,6,0, 137,194,139,69,244,137,80,32,199,69,236,0,0,0,0,235,45,139,69,244,139,80,32,139,69,236,193,224,2,141,52,2,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,236,137,4,36,232,249,189,5,0,137,6,255,69,236,139,69,236,59,69,12,124,203,199,69,236,1,0,0,0, 235,45,139,85,244,139,77,244,141,131,91,4,9,0,139,0,137,68,36,12,141,131,91,4,9,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,190,86,6,0,255,69,236,139,69,236,59,69,12,124,203,139,85,244,141,131,51,247,8,0,139,0,137,66,36,139,69,244,131,196,48,91,94, 201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,139,69,8,139,64,28,137,69,244,139,69,8,139,64,32,137,69,240,139,69,12,137,69,236,233,155,0,0,0,139,69,240,139,0,72,137,69,232,139,69,236,139,0,139,0,131,248,64,116,16,141,131,132,114,8,0,137,4,36,232, 55,55,7,0,235,110,131,125,232,0,120,104,232,21,155,6,0,59,69,232,126,94,139,69,232,193,224,8,137,194,141,131,93,3,9,0,139,0,139,0,141,12,2,139,69,236,139,0,139,112,4,139,69,232,193,224,8,137,194,141,131,93,3,9,0,139,0,139,0,141,4,2,199,68,36,20,64,0, 0,0,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,89,3,9,0,139,0,137,4,36,232,124,80,1,0,131,69,240,4,131,69,236,4,255,77,244,131,125,244,255,15,133,88,255,255,255,131,196,48,91,94,201,195,85,137,229,131,236,24,139,69,8,139,64,28, 141,20,133,0,0,0,0,139,69,8,139,64,32,137,84,36,4,137,4,36,232,124,85,6,0,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,203,255,255,255,141,187,219,253,255,255,141,131,152,113,8,0,137,4,36,232,223,57,6,0,199,68,36,24,0,0,0,0,199,68,36, 20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,147,46,6,0,137,194,141,131,111,22,9,0,137,16,141,131,111,22,9,0,139,0,199,68,36,4,36,0,0,0,137,4,36,232,73,55,6,0,141,131,243,115,8,0,137,4,36,232,127,57,6, 0,137,194,141,139,241,254,255,255,141,131,111,22,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,11,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,58,50,6,0,141,131,157,113,8,0,137,4,36,232,65,57,6,0,137,194,141,131,111,22,9,0,139,0,137,84,36,4,137,4,36,232, 77,54,6,0,131,196,44,91,94,95,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,141,131,143,21,9,0,139,0,137,4,36,232,59,110,6,0,137,69,244,131,125,12,0,117,60,141,69,220,137,69,16,199,69,12,2,0,0,0,199,69,220,1,0,0,0,141,131,59,244,8,0,139,0,137,69, 224,141,69,220,131,192,8,199,0,1,0,0,0,141,69,220,141,80,8,141,131,151,244,8,0,139,0,137,66,4,139,85,244,139,69,12,137,66,28,139,69,12,193,224,2,137,4,36,232,53,82,6,0,137,194,139,69,244,137,80,32,199,69,236,0,0,0,0,235,45,139,69,244,139,80,32,139,69, 236,193,224,2,141,52,2,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,236,137,4,36,232,253,186,5,0,137,6,255,69,236,139,69,236,59,69,12,124,203,199,69,236,0,0,0,0,235,26,139,69,244,141,147,95,1,9,0,139,18,137,84,36,4,137,4,36,232,71,96,6,0,255,69, 236,139,69,236,59,69,12,124,222,139,69,244,131,196,48,91,94,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,235,18,139,69,244,139,16,139,69,240,137,16,131,69,240, 4,131,69,244,4,255,77,236,131,125,236,255,117,229,139,69,8,131,192,16,201,195,85,137,229,131,236,56,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,233,182,0,0,0,139,69,244,139,0,137,69,232, 139,69,244,131,192,4,139,0,137,69,228,139,69,244,131,192,8,139,0,137,69,224,139,69,244,131,192,12,139,0,137,69,220,139,69,244,131,192,16,139,0,137,69,216,139,69,244,131,192,20,139,0,137,69,212,139,69,244,131,192,24,139,0,137,69,208,139,69,244,131,192, 28,139,0,137,69,204,139,85,240,139,69,232,137,2,139,85,240,131,194,4,139,69,228,137,2,139,85,240,131,194,8,139,69,224,137,2,139,85,240,131,194,12,139,69,220,137,2,139,85,240,131,194,16,139,69,216,137,2,139,85,240,131,194,20,139,69,212,137,2,139,85,240, 131,194,24,139,69,208,137,2,139,85,240,131,194,28,139,69,204,137,2,131,109,236,8,131,69,244,32,131,69,240,32,131,125,236,0,15,133,64,255,255,255,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,16,131,224,7,133,192,116,45,139, 69,16,137,68,36,16,139,69,12,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,180,254,255,255,137,4,36,232,221,76,1,0,235,43,139,69,16,137,68,36,16,139,69,12,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,0,255,255,255,137, 4,36,232,176,76,1,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,28,137,69,244,139,69,8,139,64,32,137,69,240,139,69,12,137,69,236,233,136,0,0,0,139,69,240,139,0,72,137,69,232,139,69,236,139,0,139,0,131,248,64,116,16,141, 131,26,110,8,0,137,4,36,232,168,50,7,0,235,91,131,125,232,0,120,61,232,158,150,6,0,59,69,232,126,51,139,69,236,139,0,139,72,4,139,69,232,193,224,8,137,194,141,131,210,254,8,0,139,0,139,0,141,4,2,199,68,36,8,64,0,0,0,137,76,36,4,137,4,36,232,251,254,255, 255,235,24,139,69,236,139,0,139,64,4,199,68,36,4,64,0,0,0,137,4,36,232,134,69,1,0,131,69,240,4,131,69,236,4,255,77,244,131,125,244,255,15,133,107,255,255,255,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,64,28,141,20,133,0,0,0,0,139,69,8,139, 64,32,137,84,36,4,137,4,36,232,1,81,6,0,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,203,255,255,255,141,187,92,252,255,255,141,131,66,109,8,0,137,4,36,232,100,53,6,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199, 68,36,12,36,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,24,42,6,0,137,194,141,131,248,17,9,0,137,16,141,131,120,111,8,0,137,4,36,232,28,53,6,0,137,194,141,139,6,255,255,255,141,131,248,17,9,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,11,0,0,0,137,84,36, 8,137,76,36,4,137,4,36,232,215,45,6,0,141,131,34,109,8,0,137,4,36,232,222,52,6,0,137,194,141,131,248,17,9,0,139,0,137,84,36,4,137,4,36,232,234,49,6,0,131,196,44,91,94,95,201,195,85,137,229,131,236,8,232,173,250,255,255,232,35,255,255,255,201,195,85,137, 229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16,64,32,15,40,200,243,15,89,77,12,141,131,39,240,8,0,243,15,16,0,243,15,89,193,243,15,44,192,137,69,244,131,125,244,0,127,7,199,69,244,1,0,0,0,139,69,244,247,216,131,224,3,1,69,244,131,69,244,64,139,69, 8,139,64,36,59,69,244,116,74,139,69,244,193,224,2,131,192,16,137,193,139,69,8,139,64,36,193,224,2,131,192,16,137,194,139,69,8,139,64,40,137,76,36,8,137,84,36,4,137,4,36,232,162,78,6,0,137,194,139,69,8,137,80,40,139,85,8,139,69,244,137,66,36,139,69,8, 199,64,44,4,0,0,0,131,196,36,91,201,195,85,137,229,86,131,236,4,139,69,8,139,112,52,232,109,81,1,0,57,198,116,22,139,85,8,139,69,12,137,66,56,232,91,81,1,0,137,194,139,69,8,137,80,52,131,196,4,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131, 72,16,9,0,139,0,137,4,36,232,236,104,6,0,137,69,244,139,69,8,139,0,15,182,0,132,192,117,17,141,131,144,107,8,0,137,4,36,232,153,51,6,0,137,69,8,139,85,244,139,69,8,137,68,36,4,137,20,36,232,59,108,6,0,139,85,244,139,69,8,137,66,28,139,85,244,139,69,12, 137,66,32,139,69,244,199,64,36,0,0,0,0,199,4,36,16,0,0,0,232,232,76,6,0,137,194,139,69,244,137,80,40,139,69,244,199,64,48,0,0,0,0,139,69,244,199,64,56,0,0,0,0,139,85,244,141,131,232,238,8,0,139,0,137,66,60,139,69,244,131,196,36,91,201,195,85,137,229, 131,236,56,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,240,139,64,8,137,69,232,139,69,240,139,0,137,69,228,139,69,240,139,64,4,137,69,224,139,69,232,193,224,2,3,69, 224,137,69,220,139,85,224,131,194,16,139,69,240,139,0,193,224,2,141,4,2,137,69,216,139,69,236,1,69,232,233,150,0,0,0,139,69,244,139,0,137,69,212,131,69,244,4,141,69,212,139,0,37,0,0,0,96,133,192,116,17,141,69,212,139,0,37,0,0,0,96,61,0,0,0,96,117,11, 141,129,63,238,8,0,139,0,137,69,212,139,69,212,139,85,220,137,2,131,69,220,4,139,69,220,59,69,216,117,76,139,69,216,131,232,16,139,16,139,69,224,137,16,139,85,224,131,194,4,139,69,216,131,232,12,139,0,137,2,139,85,224,131,194,8,139,69,216,131,232,8,139, 0,137,2,139,85,224,131,194,12,139,69,216,131,232,4,139,0,137,2,139,69,224,131,192,16,137,69,220,139,69,228,41,69,232,255,77,236,131,125,236,255,15,133,93,255,255,255,139,85,240,139,69,232,137,66,8,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36, 232,0,0,0,0,91,139,69,12,139,0,139,16,139,77,8,131,193,36,139,69,12,139,0,139,64,4,137,84,36,16,137,76,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,206,254,255,255,137,4,36,232,240,71,1,0,232,52,79,1,0,137,194,139,69,8,137,80,48,139,69,12,139,0,139, 0,137,68,36,4,139,69,8,137,4,36,232,151,253,255,255,139,69,12,139,0,139,64,8,137,68,36,4,139,69,8,137,4,36,232,215,252,255,255,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36,232,251,106,6,0,139,69,8,139, 64,36,193,224,2,131,192,16,137,194,139,69,8,139,64,40,137,84,36,4,137,4,36,232,182,76,6,0,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,181,255,255,255,141,187,97,253,255,255,141,131,253,104,8,0,137,4,36,232,25,49,6,0,199,68,36,28,0,0, 0,0,199,68,36,24,6,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,64,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,197,37,6,0,137,194,141,131,181,13,9,0,137,16,141,131,181,13,9,0,139,0,199,68,36,4,60,0,0,0,137,4,36,232,123,46,6,0,141,131, 45,107,8,0,137,4,36,232,177,48,6,0,137,194,141,139,49,255,255,255,141,131,181,13,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,116,41,6,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,250,12,9,0,139, 0,137,4,36,232,154,101,6,0,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,141,131,154,235,8,0,139,0,137,66,40,139,85,244,141,131,154,235,8,0,139,0,137,66,44,139,69,244,199,64,48,0,0,0,0,139,69,12,137,68,36,4,139,69,244,137,4,36,232,32,0,0,0,139, 85,244,141,131,190,248,8,0,139,0,137,68,36,4,137,20,36,232,13,88,6,0,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,117,12,9,0,139,16,139,69,8,139,64,28,137,84,36,4,137,4,36,232,175,106,6,0,137,69,240,139,85,8,139,69, 12,137,66,32,131,125,240,0,15,132,176,0,0,0,139,69,240,139,64,36,137,69,236,139,69,8,243,15,16,72,40,139,69,8,243,15,16,64,32,243,15,89,193,243,15,90,200,141,131,133,235,8,0,242,15,16,0,242,15,88,193,242,15,44,192,243,15,42,200,139,69,8,243,15,16,64, 44,243,15,88,200,139,69,8,139,64,48,243,15,42,192,15,40,209,243,15,92,208,15,40,194,243,15,44,208,139,69,8,137,80,36,139,69,8,139,64,36,243,15,42,200,139,69,8,243,15,16,64,44,15,46,193,119,2,235,20,139,69,8,243,15,16,64,44,243,15,44,208,139,69,8,137, 80,36,235,34,139,69,8,139,80,36,139,69,240,139,64,36,131,232,64,57,194,126,15,139,69,240,139,64,36,141,80,192,139,69,8,137,80,36,131,196,36,91,201,195,85,137,229,131,236,56,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69, 8,131,192,12,139,0,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,240,139,64,8,43,69,236,137,69,228,139,69,240,139,0,137,69,224,139,69,240,139,64,4,137,69,220,139,85,220,131,194,16,139,69,240,139,0,193,224,2,141,4,2,137,69,212,131,125,228, 0,121,6,139,69,224,1,69,228,139,69,228,193,224,2,3,69,220,137,69,216,235,35,139,69,216,139,16,139,69,244,137,16,131,69,244,4,131,69,216,4,139,69,216,59,69,212,117,9,139,69,224,193,224,2,41,69,216,255,77,232,131,125,232,255,117,212,139,69,8,131,192,20, 201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,141,131,206,10,9,0,139,16,139,69,8,139,64,28,137,84,36,4,137,4,36,232,8,105,6,0,137,69,244,139,69,12,139,0,243,15,16,64,8,243,15,90,200,141,131,230,233,8,0,242,15,16,0,242,15,89,193,242,15,90,192,139, 69,8,243,15,17,64,40,139,69,12,139,0,139,0,243,15,42,192,139,69,8,243,15,17,64,44,131,125,244,0,15,132,175,0,0,0,139,69,12,139,0,139,64,8,137,68,36,4,139,69,244,137,4,36,232,37,249,255,255,139,69,12,139,0,139,0,137,68,36,4,139,69,244,137,4,36,232,184, 249,255,255,139,69,244,139,112,48,232,44,75,1,0,57,198,116,11,139,69,244,139,64,56,137,69,228,235,7,199,69,228,0,0,0,0,139,69,8,139,85,228,137,80,48,139,69,8,139,64,32,137,68,36,4,139,69,8,137,4,36,232,126,253,255,255,139,69,12,139,0,139,16,139,77,8, 131,193,36,139,117,244,131,198,36,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,64,255,255,255,137,4,36,232,110,67,1,0,235,41,139,69,8,139,64,28,139,0,15,182,0,132,192,116,26,139,69,8,139,64, 28,139,0,137,68,36,4,141,131,34,102,8,0,137,4,36,232,142,41,7,0,131,196,64,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,125,252,255,255,141,131,243,100,8,0,137,4,36,232,233,44,6,0,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36, 20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,52,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,145,33,6,0,137,194,141,131,131,9,9,0,137,16,141,131,247,102,8,0,137,4,36,232,149,44,6,0,137,194,141,139,164,254,255,255,141,131,131,9,9,0,139,0,199,68, 36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,88,37,6,0,141,147,254,252,255,255,141,131,131,9,9,0,139,0,137,84,36,4,137,4,36,232,240,40,6,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,201,8,9,0,139,0,137,4,36,232,101, 97,6,0,137,69,244,139,69,8,139,0,15,182,0,132,192,117,17,141,131,62,100,8,0,137,4,36,232,18,44,6,0,137,69,8,139,85,244,139,69,8,137,66,28,139,85,244,141,131,101,231,8,0,139,0,137,66,32,139,69,244,199,64,36,0,0,0,0,139,85,244,141,131,137,244,8,0,139,0, 137,68,36,4,137,20,36,232,219,83,6,0,139,85,244,141,131,97,231,8,0,139,0,137,66,40,139,69,244,131,196,36,91,201,195,85,137,229,131,236,88,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0, 137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,8,131,192,20,139,0,137,69,228,139,69,236,139,0,137,69,224,139,85,228,139,69,224,41,208,72,243,15,42,192,243,15,17,69,220,139,69,228,72,243,15,42,192,243,15,17,69,216,139,69,236,139,64,4,137,69,212, 139,69,236,139,64,8,193,224,2,3,69,212,137,69,204,139,69,232,139,64,36,243,15,42,192,243,15,17,69,200,233,180,1,0,0,139,69,232,243,15,16,72,32,139,69,244,243,15,16,0,243,15,89,193,243,15,92,69,200,243,15,17,69,196,131,69,244,4,243,15,16,77,196,141,129, 62,231,8,0,243,15,16,0,15,46,193,119,2,235,11,141,129,62,231,8,0,139,0,137,69,196,243,15,16,69,196,15,46,69,220,119,2,235,6,139,69,220,137,69,196,243,15,16,69,196,243,15,88,69,216,243,15,17,69,196,243,15,16,77,216,141,129,218,230,8,0,243,15,16,0,15,40, 209,243,15,92,208,15,40,194,243,15,17,69,216,243,15,16,69,196,243,15,44,192,137,69,188,243,15,42,77,188,243,15,16,69,196,243,15,92,193,243,15,17,69,192,139,69,188,193,224,2,137,194,139,69,204,41,208,137,69,208,139,69,212,131,192,16,59,69,208,118,9,139, 69,224,193,224,2,1,69,208,139,69,208,131,232,12,139,0,137,69,172,139,69,208,131,232,8,139,0,137,69,176,139,69,208,131,232,4,139,0,137,69,180,139,69,208,139,0,137,69,184,243,15,16,69,176,243,15,92,69,180,243,15,17,69,168,243,15,90,109,180,243,15,90,117, 192,243,15,90,125,168,243,15,90,77,192,141,129,246,230,8,0,242,15,16,0,102,15,40,208,242,15,92,209,102,15,40,202,141,129,254,230,8,0,242,15,16,0,102,15,40,217,242,15,89,216,243,15,16,69,172,15,40,208,243,15,92,85,184,243,15,16,77,168,141,129,222,230, 8,0,243,15,16,0,243,15,89,193,243,15,88,194,15,40,224,243,15,89,101,192,243,15,16,69,184,243,15,88,192,15,40,208,243,15,88,85,172,243,15,16,77,180,141,129,222,230,8,0,243,15,16,0,243,15,89,193,243,15,88,194,243,15,88,196,243,15,90,192,242,15,89,195,242, 15,88,199,242,15,89,198,242,15,88,197,242,15,90,192,139,69,240,243,15,17,0,131,69,240,4,255,77,228,131,125,228,255,15,133,63,254,255,255,139,69,8,131,192,24,201,195,85,137,229,87,86,83,131,236,76,232,0,0,0,0,91,141,131,212,5,9,0,139,16,139,69,8,139,64, 28,137,84,36,4,137,4,36,232,14,100,6,0,137,69,228,139,69,12,139,0,243,15,16,64,8,243,15,90,200,141,131,236,228,8,0,242,15,16,0,242,15,89,193,242,15,90,192,139,69,8,243,15,17,64,32,131,125,228,0,15,132,143,0,0,0,139,69,12,139,0,139,0,137,68,36,4,139,69, 228,137,4,36,232,232,244,255,255,139,69,228,139,112,48,232,92,70,1,0,57,198,116,11,139,69,228,139,64,56,137,69,212,235,7,199,69,212,0,0,0,0,139,69,8,139,85,212,137,80,36,139,69,12,139,0,139,16,139,77,228,131,193,36,139,69,12,131,192,4,139,0,139,112,4, 139,69,12,139,0,139,120,4,137,84,36,24,139,69,8,137,68,36,20,137,76,36,16,137,116,36,12,137,124,36,8,199,68,36,4,5,0,0,0,141,131,147,253,255,255,137,4,36,232,167,62,1,0,235,26,139,69,8,139,64,28,139,0,137,68,36,4,141,131,85,97,8,0,137,4,36,232,214,36, 7,0,131,196,76,91,94,95,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,249,251,255,255,141,131,67,96,8,0,137,4,36,232,48,40,6,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,199,68,36,8,0,0,0,0,137,116, 36,4,137,4,36,232,224,28,6,0,137,194,141,131,206,4,9,0,137,16,141,131,62,98,8,0,137,4,36,232,228,39,6,0,137,194,141,139,228,254,255,255,141,131,206,4,9,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,167,32,6,0,141,131,206,4,9,0,139, 0,199,68,36,4,40,0,0,0,137,4,36,232,96,37,6,0,131,196,32,91,94,201,195,85,137,229,131,236,8,232,80,246,255,255,232,130,250,255,255,232,54,255,255,255,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240, 139,69,8,131,192,12,139,0,137,69,236,235,34,139,69,244,139,0,137,69,232,139,69,240,139,16,139,69,244,137,16,139,85,240,139,69,232,137,2,131,69,244,4,131,69,240,4,255,77,236,131,125,236,255,117,213,139,69,8,131,192,16,201,195,85,137,229,131,236,24,232, 0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,235,34,131,109,240,4,139,69,244,243,15,16,8,141,129,192,226,8,0,15,40,0,15,87,193,139,69,240,243,15,17,0,131,69,244,4,255,77,236,131, 125,236,255,117,213,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,73,3,9,0,139,0,137,4,36,232,225,91,6,0,137,69,244,141,131,21,98,8,0,137,4,36,232,154,38,6,0,139,85,244,137,68,36,4,137,20,36,232,143,78,6,0,141,131,21,98, 8,0,137,4,36,232,125,38,6,0,139,85,244,137,68,36,4,137,20,36,232,114,78,6,0,139,85,244,139,77,244,141,131,5,239,8,0,139,0,137,68,36,12,141,131,5,239,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,214,65,6,0,139,85,244,141,131,221,225,8,0,139,0,137,66, 28,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,178,2,9,0,139,0,137,4,36,232,70,91,6,0,137,69,244,141,131,122,97,8,0,137,4,36,232,255,37,6,0,139,85,244,137,68,36,4,137,20,36,232,244,77,6,0,141,131,122,97,8,0,137,4, 36,232,226,37,6,0,139,85,244,137,68,36,4,137,20,36,232,215,77,6,0,139,85,244,139,77,244,141,131,106,238,8,0,139,0,137,68,36,12,141,131,106,238,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,59,65,6,0,139,85,244,141,131,66,225,8,0,139,0,137,66,28,139, 69,244,131,196,36,91,201,195,85,137,229,131,236,40,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,240,137,68,36,8,139,69,244,137,68,36,4,139,69,236,137,4,36,232,1,27,0,0,139,69,8,131, 192,16,201,195,85,137,229,131,236,40,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,240,137,68,36,8,139,69,244,137,68,36,4,139,69,236,137,4,36,232,64,28,0,0,139,69,8,131,192,16,201, 195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,12,139,0,139,0,137,69,244,139,69,12,139,0,139,64,4,137,69,240,139,69,12,131,192,4,139,0,139,64,4,137,69,236,139,69,12,131,192,8,139,0,139,64,4,137,69,232,139,69,12,131,192,12,139,0,139,64,4,137,69,228, 139,69,232,59,69,236,117,56,139,69,228,59,69,240,117,48,139,69,244,137,68,36,16,139,69,228,137,68,36,12,139,69,232,137,68,36,8,199,68,36,4,3,0,0,0,141,131,112,253,255,255,137,4,36,232,172,58,1,0,233,206,0,0,0,139,69,232,59,69,236,117,92,139,69,244,137, 68,36,16,139,69,228,137,68,36,12,139,69,236,137,68,36,8,199,68,36,4,3,0,0,0,141,131,95,237,8,0,139,0,137,4,36,232,114,58,1,0,139,69,244,137,68,36,16,139,69,232,137,68,36,12,139,69,240,137,68,36,8,199,68,36,4,3,0,0,0,141,131,95,237,8,0,139,0,137,4,36, 232,69,58,1,0,235,106,139,69,232,59,69,240,116,45,139,69,244,137,68,36,16,139,69,232,137,68,36,12,139,69,240,137,68,36,8,199,68,36,4,3,0,0,0,141,131,95,237,8,0,139,0,137,4,36,232,14,58,1,0,139,69,228,59,69,236,116,45,139,69,244,137,68,36,16,139,69,228, 137,68,36,12,139,69,236,137,68,36,8,199,68,36,4,3,0,0,0,141,131,95,237,8,0,139,0,137,4,36,232,217,57,1,0,139,69,12,131,192,12,139,0,139,72,4,139,69,12,131,192,8,139,0,139,80,4,139,69,244,137,68,36,16,137,76,36,12,137,84,36,8,199,68,36,4,3,0,0,0,139,69, 16,137,4,36,232,161,57,1,0,131,196,68,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,204,253,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,63,254,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141, 131,229,253,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,16,254,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,29,91,8,0,137,4,36,232,241,34,6,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68, 36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,56,252,255,255,137,68,36,4,137,20,36,232,161,23,6,0,137,194,141,131,141,255,8,0,137,16,141,131,141,255,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,87,32,6,0,141,131,249,92,8,0,137,4,36,232,141,34,6,0,137,194, 141,139,150,255,255,255,141,131,141,255,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,80,27,6,0,141,131,34,91,8,0,137,4,36,232,87,34,6,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0, 141,131,211,252,255,255,137,68,36,4,137,20,36,232,7,23,6,0,137,194,141,131,145,255,8,0,137,16,141,131,145,255,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,189,31,6,0,141,131,249,92,8,0,137,4,36,232,243,33,6,0,137,194,141,139,197,255,255,255,141,131,145, 255,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,182,26,6,0,141,131,29,91,8,0,137,4,36,232,189,33,6,0,137,194,141,131,145,255,8,0,139,0,137,84,36,4,137,4,36,232,201,30,6,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0, 0,0,91,141,131,42,254,8,0,139,0,137,4,36,232,186,86,6,0,137,69,244,141,131,238,92,8,0,137,4,36,232,115,33,6,0,139,85,244,137,68,36,4,137,20,36,232,104,73,6,0,141,131,238,92,8,0,137,4,36,232,86,33,6,0,139,85,244,137,68,36,4,137,20,36,232,75,73,6,0,139, 85,244,141,131,182,220,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,244,137,68,36,4,139,69,240,137,4,36,232,191,25,0,0,139,69,8,131,192,12,201, 195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,139,69,12,139,0,139,0,137,69,244,139,69,244,209,248,137,69,240,139,69,12,139,0,139,64,4,137,69,236,139,69,12,131,192,4,139,0,139,64,4,137,69,232,139,69,12,131,192,8,139,0,139,64,4,137,69,228,131,125,244, 3,127,19,141,131,21,89,8,0,137,4,36,232,27,29,7,0,233,26,1,0,0,139,69,236,59,69,232,116,45,139,69,244,137,68,36,16,139,69,232,137,68,36,12,139,69,236,137,68,36,8,199,68,36,4,3,0,0,0,141,131,86,233,8,0,139,0,137,4,36,232,150,54,1,0,139,69,244,137,68,36, 12,139,69,232,137,68,36,8,199,68,36,4,2,0,0,0,141,131,189,255,255,255,137,4,36,232,114,54,1,0,139,77,240,73,139,69,240,193,224,2,137,198,3,117,228,139,85,232,131,194,4,139,69,240,193,224,2,141,4,2,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,3, 0,0,0,141,131,195,249,255,255,137,4,36,232,50,54,1,0,139,69,240,72,137,193,131,225,248,139,85,232,131,194,4,139,69,240,193,224,2,141,4,2,137,76,36,4,137,4,36,232,148,47,1,0,139,69,240,72,137,198,131,230,7,139,77,232,131,193,4,139,69,240,72,131,224,248, 137,194,139,69,240,141,4,2,193,224,2,141,4,1,137,116,36,4,137,4,36,232,100,47,1,0,139,69,240,193,224,2,137,194,3,85,228,139,69,240,137,68,36,4,137,20,36,232,74,47,1,0,199,68,36,4,1,0,0,0,139,69,228,137,4,36,232,55,47,1,0,131,196,64,91,94,201,195,85,137, 229,83,131,236,36,232,0,0,0,0,91,141,131,171,87,8,0,137,4,36,232,94,31,6,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,204,253,255,255,137,68,36,4,137,20,36,232,14,20,6,0,137,194,141,131,2,252,8, 0,137,16,141,131,2,252,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,196,28,6,0,141,131,102,89,8,0,137,4,36,232,250,30,6,0,137,194,141,139,115,254,255,255,141,131,2,252,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,189,23,6,0,141, 131,138,87,8,0,137,4,36,232,196,30,6,0,137,194,141,131,2,252,8,0,139,0,137,84,36,4,137,4,36,232,208,27,6,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,53,251,8,0,139,0,137,4,36,232,193,83,6,0,137,69,244,139,85,244,139,77,244, 141,131,229,230,8,0,139,0,137,68,36,12,141,131,229,230,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,240,57,6,0,141,131,245,89,8,0,137,4,36,232,80,30,6,0,139,85,244,137,68,36,4,137,20,36,232,69,70,6,0,139,85,244,141,131,189,217,8,0,139,0,137,66,28, 139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,244,137,68,36,4,139,69,240,137,4,36,232,123,23,0,0,139,69,8,131,192,12,201,195,85,137,229,83,131,236,68,232,0,0,0,0, 91,139,69,12,139,0,139,0,137,69,244,139,69,244,209,248,137,69,240,139,69,12,139,0,139,64,4,137,69,236,139,69,12,131,192,4,139,0,139,64,4,137,69,232,139,69,12,131,192,8,139,0,139,64,4,137,69,228,131,125,244,3,127,19,141,131,16,86,8,0,137,4,36,232,22,26, 7,0,233,252,0,0,0,139,69,232,59,69,228,117,101,139,77,240,73,139,69,244,193,224,2,3,69,228,139,85,228,131,194,4,137,76,36,16,137,68,36,12,137,84,36,8,199,68,36,4,3,0,0,0,141,131,190,246,255,255,137,4,36,232,137,51,1,0,139,69,240,64,137,68,36,16,139,69, 228,137,68,36,12,139,69,236,137,68,36,8,199,68,36,4,3,0,0,0,141,131,81,230,8,0,139,0,137,4,36,232,91,51,1,0,235,107,139,69,236,59,69,228,116,46,139,69,240,64,137,68,36,16,139,69,228,137,68,36,12,139,69,236,137,68,36,8,199,68,36,4,3,0,0,0,141,131,81,230, 8,0,139,0,137,4,36,232,35,51,1,0,139,77,240,73,139,69,244,193,224,2,3,69,228,139,85,232,131,194,4,137,76,36,16,137,68,36,12,137,84,36,8,199,68,36,4,3,0,0,0,141,131,190,246,255,255,137,4,36,232,238,50,1,0,139,69,244,137,68,36,12,139,69,228,137,68,36,8, 199,68,36,4,2,0,0,0,141,131,190,255,255,255,137,4,36,232,202,50,1,0,131,196,68,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,203,84,8,0,137,4,36,232,120,28,6,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68, 36,8,0,0,0,0,141,131,223,253,255,255,137,68,36,4,137,20,36,232,40,17,6,0,137,194,141,131,32,249,8,0,137,16,141,131,32,249,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,222,25,6,0,141,131,128,86,8,0,137,4,36,232,20,28,6,0,137,194,141,139,147,254,255,255, 141,131,32,249,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,215,20,6,0,141,131,164,84,8,0,137,4,36,232,222,27,6,0,137,194,141,131,32,249,8,0,139,0,137,84,36,4,137,4,36,232,234,24,6,0,131,196,36,91,201,195,85,137,229,83,131,236, 36,232,0,0,0,0,91,141,131,83,248,8,0,139,0,137,4,36,232,219,80,6,0,137,69,244,139,85,244,139,77,244,141,131,255,227,8,0,139,0,137,68,36,12,141,131,255,227,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,10,55,6,0,141,131,15,87,8,0,137,4,36,232,106,27, 6,0,139,85,244,137,68,36,4,137,20,36,232,95,67,6,0,141,131,15,87,8,0,137,4,36,232,77,27,6,0,139,85,244,137,68,36,4,137,20,36,232,66,67,6,0,139,85,244,141,131,215,214,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,131,236,88,232,0,0,0, 0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,141,129,61,214,8,0,139,0,137,69,228,139,69,244,139,0,137,69,224,139,69,244,131,192,4,139,0,137,69,220, 141,129,61,214,8,0,139,0,137,69,216,139,69,240,139,0,137,69,212,139,69,240,131,192,4,139,0,137,69,208,139,69,8,131,192,20,139,0,137,69,204,139,69,204,64,137,69,200,141,129,65,214,8,0,139,0,137,69,196,243,15,42,77,204,243,15,42,69,204,243,15,89,200,141, 129,65,214,8,0,243,15,16,0,243,15,94,193,243,15,17,69,192,131,69,244,8,131,69,240,8,139,85,236,141,129,61,214,8,0,139,0,137,2,139,69,236,139,16,139,69,232,137,16,131,69,232,4,131,69,236,4,131,109,204,2,233,129,1,0,0,139,69,224,137,69,228,139,69,220,137, 69,224,139,69,244,139,0,137,69,220,131,69,244,4,139,69,212,137,69,216,139,69,208,137,69,212,139,69,240,139,0,137,69,208,131,69,240,4,243,15,16,69,228,15,40,200,243,15,88,77,220,141,129,205,214,8,0,243,15,16,0,243,15,89,193,243,15,88,69,224,243,15,17, 69,188,243,15,16,69,216,15,40,200,243,15,88,77,208,141,129,205,214,8,0,243,15,16,0,243,15,89,193,243,15,88,69,212,243,15,17,69,184,243,15,16,69,188,15,40,200,243,15,89,77,188,243,15,16,69,184,243,15,89,69,184,243,15,88,193,243,15,17,69,180,243,15,90, 69,180,141,129,213,214,8,0,102,15,46,0,119,5,233,135,0,0,0,243,15,16,69,228,243,15,92,69,220,15,40,200,243,15,89,77,188,243,15,16,69,216,243,15,92,69,208,243,15,89,69,184,243,15,88,200,243,15,16,69,180,243,15,88,192,15,40,209,243,15,94,208,15,40,194, 243,15,17,69,172,243,15,16,69,172,141,129,157,214,8,0,15,46,0,119,22,243,15,16,69,172,141,129,209,214,8,0,243,15,16,8,15,46,200,119,2,235,19,141,129,61,214,8,0,139,0,137,69,180,139,69,180,137,69,176,235,34,243,15,16,69,196,243,15,88,69,172,243,15,17, 69,176,235,17,141,129,61,214,8,0,139,0,137,69,180,139,69,180,137,69,176,139,85,236,139,69,176,137,2,131,69,236,4,243,15,16,69,192,243,15,89,69,180,139,69,232,243,15,17,0,131,69,232,4,243,15,16,77,196,141,129,65,214,8,0,243,15,16,0,243,15,88,193,243,15, 17,69,196,255,77,204,131,125,204,255,15,133,114,254,255,255,235,31,139,85,236,141,129,61,214,8,0,139,0,137,2,139,69,236,139,16,139,69,232,137,16,131,69,232,4,131,69,236,4,255,77,200,131,125,200,255,117,216,139,69,8,131,192,24,201,195,85,137,229,87,86, 83,131,236,60,232,0,0,0,0,91,139,69,12,139,0,139,0,137,69,228,139,69,228,209,248,137,69,224,131,125,228,3,127,19,141,131,194,80,8,0,137,4,36,232,204,20,7,0,233,147,0,0,0,139,69,12,131,192,12,139,0,139,120,4,139,69,12,131,192,8,139,0,139,80,4,139,69,12, 131,192,4,139,0,139,72,4,139,69,12,139,0,139,112,4,139,69,224,137,68,36,24,137,124,36,20,137,84,36,16,137,76,36,12,137,116,36,8,199,68,36,4,5,0,0,0,141,131,80,253,255,255,137,4,36,232,38,46,1,0,139,69,12,131,192,12,139,0,139,72,4,139,69,12,131,192,12, 139,0,139,80,4,139,69,224,137,68,36,16,137,76,36,12,137,84,36,8,199,68,36,4,3,0,0,0,141,131,228,224,8,0,139,0,137,4,36,232,233,45,1,0,131,196,60,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,7,80,8,0,137,4,36,232,149,23,6,0,137,194, 199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,226,251,255,255,137,68,36,4,137,20,36,232,69,12,6,0,137,194,141,131,65,244,8,0,137,16,141,131,65,244,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,251,20,6,0,141, 131,157,81,8,0,137,4,36,232,49,23,6,0,137,194,141,139,31,255,255,255,141,131,65,244,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,244,15,6,0,131,196,36,91,201,195,85,137,229,131,236,8,232,236,243,255,255,232,122,247,255,255,232, 91,250,255,255,232,57,255,255,255,201,195,85,137,229,83,129,236,244,0,0,0,232,0,0,0,0,91,199,69,208,0,0,0,0,199,69,240,1,0,0,0,199,69,236,0,0,0,0,235,94,139,69,12,209,248,137,69,244,235,3,209,125,244,139,69,244,49,69,236,139,69,244,35,69,236,133,192, 116,237,139,69,240,59,69,236,126,54,139,69,240,193,224,2,3,69,8,139,0,137,69,204,139,69,240,193,224,2,137,194,3,85,8,139,69,236,193,224,2,3,69,8,139,0,137,2,139,69,236,193,224,2,137,194,3,85,8,139,69,204,137,2,255,69,240,139,69,240,59,69,12,124,154,199, 69,244,0,0,0,0,235,3,255,69,244,139,77,244,184,1,0,0,0,211,224,59,69,12,124,238,131,101,244,1,131,125,244,0,15,133,243,0,0,0,139,69,8,137,69,220,139,69,12,193,224,2,3,69,8,137,69,216,233,203,0,0,0,139,69,220,243,15,16,8,139,69,220,131,192,4,243,15,16, 0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,196,139,69,220,243,15,16,8,139,69,220,131,192,4,243,15,16,0,243,15,88,193,243,15,17,69,200,139,69,220,131,192,8,243,15,16,8,139,69,220,131,192,12,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17, 69,188,139,69,220,131,192,8,243,15,16,8,139,69,220,131,192,12,243,15,16,0,243,15,88,193,243,15,17,69,192,139,69,220,131,192,8,243,15,16,69,200,243,15,92,69,192,243,15,17,0,243,15,16,69,200,243,15,88,69,192,139,69,220,243,15,17,0,139,69,220,131,192,12, 243,15,16,69,196,243,15,92,69,188,243,15,17,0,139,69,220,131,192,4,243,15,16,69,196,243,15,88,69,188,243,15,17,0,131,69,220,16,139,69,220,59,69,216,15,130,41,255,255,255,233,93,2,0,0,139,69,8,137,69,220,139,69,12,193,224,2,3,69,8,137,69,216,139,69,220, 131,192,4,137,69,212,233,49,2,0,0,139,69,220,243,15,16,8,139,69,212,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,180,139,69,220,243,15,16,8,139,69,212,243,15,16,0,243,15,88,193,243,15,17,69,184,139,69,220,131,192,8,243,15,16,8,139,69,212, 131,192,8,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,172,139,69,220,131,192,8,243,15,16,8,139,69,212,131,192,8,243,15,16,0,243,15,88,193,243,15,17,69,176,139,69,220,131,192,16,243,15,16,8,139,69,212,131,192,16,243,15,16,0,15,40,209,243, 15,92,208,15,40,194,243,15,17,69,164,139,69,220,131,192,16,243,15,16,8,139,69,212,131,192,16,243,15,16,0,243,15,88,193,243,15,17,69,168,139,69,220,131,192,24,243,15,16,8,139,69,212,131,192,24,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69, 156,139,69,220,131,192,24,243,15,16,8,139,69,212,131,192,24,243,15,16,0,243,15,88,193,243,15,17,69,160,243,15,16,69,184,243,15,92,69,176,243,15,17,69,144,243,15,16,69,184,243,15,88,69,176,243,15,17,69,148,243,15,16,69,180,243,15,92,69,172,243,15,17,69, 140,243,15,16,69,180,243,15,88,69,172,243,15,17,69,152,243,15,16,69,168,243,15,92,69,160,243,15,17,69,128,243,15,16,69,168,243,15,88,69,160,243,15,17,69,136,243,15,90,77,156,141,131,153,210,8,0,242,15,16,0,242,15,89,193,242,15,90,192,243,15,17,133,124, 255,255,255,243,15,90,77,164,141,131,153,210,8,0,242,15,16,0,242,15,89,193,242,15,90,192,243,15,17,69,132,139,69,220,131,192,16,243,15,16,69,148,243,15,92,69,136,243,15,17,0,243,15,16,69,148,243,15,88,69,136,139,69,220,243,15,17,0,139,69,220,131,192, 24,243,15,16,69,144,243,15,92,69,128,243,15,17,0,139,69,220,131,192,8,243,15,16,69,144,243,15,88,69,128,243,15,17,0,139,69,212,131,192,16,243,15,16,69,152,243,15,92,69,132,243,15,17,0,243,15,16,69,152,243,15,88,69,132,139,69,212,243,15,17,0,139,69,212, 131,192,24,243,15,16,69,140,243,15,92,133,124,255,255,255,243,15,17,0,139,69,212,131,192,8,243,15,16,69,140,243,15,88,133,124,255,255,255,243,15,17,0,131,69,220,32,131,69,212,32,139,69,220,59,69,216,15,130,195,253,255,255,131,125,12,15,15,142,125,8,0, 0,131,69,244,2,139,77,244,184,1,0,0,0,211,224,137,69,240,139,69,240,1,192,137,69,236,139,69,236,1,192,137,69,228,139,69,240,3,69,236,137,69,232,139,69,240,209,248,137,69,224,139,69,8,137,69,220,139,69,224,193,224,2,3,69,220,137,69,212,139,69,12,193,224, 2,3,69,8,137,69,216,139,69,220,243,15,16,8,139,69,240,193,224,2,3,69,220,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,133,100,255,255,255,139,69,220,243,15,16,8,139,69,240,193,224,2,3,69,220,243,15,16,0,243,15,88,193,243,15,17,133,104,255, 255,255,139,69,236,193,224,2,3,69,220,243,15,16,8,139,69,232,193,224,2,3,69,220,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,133,84,255,255,255,139,69,236,193,224,2,3,69,220,243,15,16,8,139,69,232,193,224,2,3,69,220,243,15,16,0,243,15,88,193, 243,15,17,133,92,255,255,255,139,69,236,193,224,2,3,69,220,243,15,16,133,104,255,255,255,243,15,92,133,92,255,255,255,243,15,17,0,243,15,16,133,104,255,255,255,243,15,88,133,92,255,255,255,139,69,220,243,15,17,0,139,69,232,193,224,2,3,69,220,243,15,16, 133,100,255,255,255,243,15,92,133,84,255,255,255,243,15,17,0,139,69,240,193,224,2,3,69,220,243,15,16,133,100,255,255,255,243,15,88,133,84,255,255,255,243,15,17,0,139,69,212,243,15,16,8,139,69,240,193,224,2,3,69,212,243,15,16,0,15,40,209,243,15,92,208, 15,40,194,243,15,17,133,96,255,255,255,139,69,212,243,15,16,8,139,69,240,193,224,2,3,69,212,243,15,16,0,243,15,88,193,243,15,17,133,108,255,255,255,139,69,232,193,224,2,3,69,212,243,15,16,0,243,15,90,200,141,131,153,210,8,0,242,15,16,0,242,15,89,193, 242,15,90,192,243,15,17,133,80,255,255,255,139,69,236,193,224,2,3,69,212,243,15,16,0,243,15,90,200,141,131,153,210,8,0,242,15,16,0,242,15,89,193,242,15,90,192,243,15,17,133,88,255,255,255,139,69,236,193,224,2,3,69,212,243,15,16,133,108,255,255,255,243, 15,92,133,88,255,255,255,243,15,17,0,243,15,16,133,108,255,255,255,243,15,88,133,88,255,255,255,139,69,212,243,15,17,0,139,69,232,193,224,2,3,69,212,243,15,16,133,96,255,255,255,243,15,92,133,80,255,255,255,243,15,17,0,139,69,240,193,224,2,3,69,212,243, 15,16,133,96,255,255,255,243,15,88,133,80,255,255,255,243,15,17,0,139,69,228,193,224,2,1,69,212,139,69,228,193,224,2,1,69,220,139,69,220,59,69,216,15,130,210,253,255,255,199,133,76,255,255,255,2,0,0,0,235,66,139,141,76,255,255,255,139,149,76,255,255, 255,141,131,25,232,8,0,139,20,144,141,131,217,232,8,0,137,20,136,139,141,76,255,255,255,139,149,76,255,255,255,141,131,121,232,8,0,139,20,144,141,131,57,233,8,0,137,20,136,255,133,76,255,255,255,139,133,76,255,255,255,59,69,244,126,179,199,69,208,0,0, 0,0,141,131,253,209,8,0,139,0,137,133,116,255,255,255,141,131,249,209,8,0,139,0,137,133,120,255,255,255,199,133,112,255,255,255,1,0,0,0,233,89,5,0,0,255,69,208,199,133,64,255,255,255,0,0,0,0,235,6,255,133,64,255,255,255,139,141,64,255,255,255,139,69, 208,211,248,131,224,1,133,192,116,232,139,149,64,255,255,255,139,69,244,41,208,137,133,64,255,255,255,139,149,64,255,255,255,141,131,57,233,8,0,139,4,144,137,133,120,255,255,255,139,149,64,255,255,255,141,131,217,232,8,0,139,4,144,137,133,116,255,255, 255,131,189,64,255,255,255,1,15,142,217,0,0,0,139,149,64,255,255,255,139,69,244,41,208,131,192,2,137,133,60,255,255,255,235,6,255,133,60,255,255,255,139,141,60,255,255,255,139,69,208,211,248,131,224,1,132,192,117,232,139,149,60,255,255,255,139,69,244, 41,208,137,133,60,255,255,255,139,141,64,255,255,255,139,149,64,255,255,255,141,131,185,231,8,0,243,15,16,20,144,139,149,64,255,255,255,74,141,131,57,233,8,0,243,15,16,12,144,139,149,60,255,255,255,141,131,57,233,8,0,243,15,16,4,144,243,15,88,193,243, 15,89,194,141,131,57,233,8,0,243,15,17,4,136,139,141,64,255,255,255,139,149,64,255,255,255,141,131,185,231,8,0,243,15,16,20,144,139,149,64,255,255,255,74,141,131,217,232,8,0,243,15,16,12,144,139,149,60,255,255,255,141,131,217,232,8,0,243,15,16,4,144, 243,15,88,193,243,15,89,194,141,131,217,232,8,0,243,15,17,4,136,243,15,16,133,116,255,255,255,15,40,200,243,15,89,141,116,255,255,255,243,15,16,133,120,255,255,255,243,15,89,133,120,255,255,255,15,40,209,243,15,92,208,15,40,194,243,15,17,133,72,255,255, 255,243,15,16,133,116,255,255,255,243,15,89,133,120,255,255,255,243,15,88,192,243,15,17,133,68,255,255,255,139,69,12,193,224,2,3,69,8,137,69,216,139,133,112,255,255,255,193,224,2,3,69,8,137,69,220,139,69,240,193,224,2,137,194,3,85,8,139,133,112,255,255, 255,193,224,2,137,209,41,193,137,200,137,69,212,139,69,240,193,224,2,3,69,220,243,15,16,0,15,40,200,243,15,89,141,68,255,255,255,139,69,240,193,224,2,3,69,212,243,15,16,0,243,15,89,133,72,255,255,255,15,40,209,243,15,92,208,15,40,194,243,15,17,133,52, 255,255,255,139,69,240,193,224,2,3,69,220,243,15,16,0,15,40,200,243,15,89,141,72,255,255,255,139,69,240,193,224,2,3,69,212,243,15,16,0,243,15,89,133,68,255,255,255,243,15,88,193,243,15,17,133,56,255,255,255,139,69,220,243,15,16,0,243,15,92,133,56,255, 255,255,243,15,17,133,40,255,255,255,139,69,220,243,15,16,0,243,15,88,133,56,255,255,255,243,15,17,133,44,255,255,255,139,69,212,243,15,16,0,243,15,92,133,52,255,255,255,243,15,17,133,36,255,255,255,139,69,212,243,15,16,0,243,15,88,133,52,255,255,255, 243,15,17,133,48,255,255,255,139,69,232,193,224,2,3,69,220,243,15,16,0,15,40,200,243,15,89,141,68,255,255,255,139,69,232,193,224,2,3,69,212,243,15,16,0,243,15,89,133,72,255,255,255,15,40,209,243,15,92,208,15,40,194,243,15,17,133,52,255,255,255,139,69, 232,193,224,2,3,69,220,243,15,16,0,15,40,200,243,15,89,141,72,255,255,255,139,69,232,193,224,2,3,69,212,243,15,16,0,243,15,89,133,68,255,255,255,243,15,88,193,243,15,17,133,56,255,255,255,139,69,236,193,224,2,3,69,220,243,15,16,0,243,15,92,133,56,255, 255,255,243,15,17,133,24,255,255,255,139,69,236,193,224,2,3,69,220,243,15,16,0,243,15,88,133,56,255,255,255,243,15,17,133,32,255,255,255,139,69,236,193,224,2,3,69,212,243,15,16,0,243,15,92,133,52,255,255,255,243,15,17,133,20,255,255,255,139,69,236,193, 224,2,3,69,212,243,15,16,0,243,15,88,133,52,255,255,255,243,15,17,133,28,255,255,255,243,15,16,133,120,255,255,255,15,40,200,243,15,89,141,32,255,255,255,243,15,16,133,116,255,255,255,243,15,89,133,20,255,255,255,15,40,209,243,15,92,208,15,40,194,243, 15,17,133,52,255,255,255,243,15,16,133,116,255,255,255,15,40,200,243,15,89,141,32,255,255,255,243,15,16,133,120,255,255,255,243,15,89,133,20,255,255,255,243,15,88,193,243,15,17,133,56,255,255,255,139,69,236,193,224,2,3,69,220,243,15,16,133,44,255,255, 255,243,15,92,133,56,255,255,255,243,15,17,0,243,15,16,133,44,255,255,255,243,15,88,133,56,255,255,255,139,69,220,243,15,17,0,139,69,232,193,224,2,3,69,212,243,15,16,133,36,255,255,255,243,15,92,133,52,255,255,255,243,15,17,0,139,69,240,193,224,2,3,69, 212,243,15,16,133,36,255,255,255,243,15,88,133,52,255,255,255,243,15,17,0,243,15,16,133,116,255,255,255,15,40,200,243,15,89,141,28,255,255,255,243,15,16,133,120,255,255,255,243,15,89,133,24,255,255,255,15,40,209,243,15,92,208,15,40,194,243,15,17,133, 52,255,255,255,243,15,16,133,120,255,255,255,15,40,200,243,15,89,141,28,255,255,255,243,15,16,133,116,255,255,255,243,15,89,133,24,255,255,255,243,15,88,193,243,15,17,133,56,255,255,255,139,69,236,193,224,2,3,69,212,243,15,16,133,48,255,255,255,243,15, 92,133,56,255,255,255,243,15,17,0,243,15,16,133,48,255,255,255,243,15,88,133,56,255,255,255,139,69,212,243,15,17,0,139,69,232,193,224,2,3,69,220,243,15,16,133,40,255,255,255,243,15,92,133,52,255,255,255,243,15,17,0,139,69,240,193,224,2,3,69,220,243,15, 16,133,40,255,255,255,243,15,88,133,52,255,255,255,243,15,17,0,139,69,228,193,224,2,1,69,212,139,69,228,193,224,2,1,69,220,139,69,220,59,69,216,15,130,126,252,255,255,255,133,112,255,255,255,139,133,112,255,255,255,59,69,224,15,140,152,250,255,255,139, 69,228,59,69,12,15,140,131,247,255,255,129,196,244,0,0,0,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,199,69,212,1,0,0,0,139,69,8,72,137,69,208,139,85,8,137,208,193,232,31,1,208,209,248,137,69,204,233,34,1,0,0,139,69,212,193,224,2,3,69,12,139,0, 137,69,244,139,69,208,193,224,2,3,69,12,139,0,137,69,240,243,15,16,69,244,243,15,88,69,240,243,15,17,69,228,243,15,16,69,244,243,15,92,69,240,243,15,17,69,224,139,69,212,193,224,2,3,69,16,139,0,137,69,236,139,69,208,193,224,2,3,69,16,139,0,137,69,232, 243,15,16,69,236,243,15,88,69,232,243,15,17,69,220,243,15,16,69,236,243,15,92,69,232,243,15,17,69,216,139,69,212,193,224,2,137,194,3,85,12,243,15,16,69,228,15,40,200,243,15,88,77,216,141,131,14,198,8,0,243,15,16,0,243,15,89,193,243,15,17,2,139,69,208, 193,224,2,137,194,3,85,12,243,15,16,69,228,15,40,200,243,15,92,77,216,141,131,14,198,8,0,243,15,16,0,243,15,89,193,243,15,17,2,139,69,212,193,224,2,137,194,3,85,16,243,15,16,69,220,15,40,200,243,15,92,77,224,141,131,14,198,8,0,243,15,16,0,243,15,89,193, 243,15,17,2,139,69,208,193,224,2,137,194,3,85,16,243,15,16,69,220,15,40,200,243,15,88,77,224,141,131,14,198,8,0,243,15,16,0,243,15,89,193,243,15,17,2,255,69,212,255,77,208,139,69,212,59,69,204,15,140,210,254,255,255,139,69,8,137,68,36,4,139,69,12,137, 4,36,232,251,241,255,255,139,69,8,137,68,36,4,139,69,16,137,4,36,232,233,241,255,255,131,196,68,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,137,68,36,4,139,69,12,137,4,36,232,196,241,255,255,139,69,8,137,68,36,4,139,69,16,137,4,36,232, 178,241,255,255,199,69,212,1,0,0,0,139,69,8,72,137,69,208,139,85,8,137,208,193,232,31,1,208,209,248,137,69,204,233,34,1,0,0,139,69,212,193,224,2,3,69,12,139,0,137,69,244,139,69,208,193,224,2,3,69,12,139,0,137,69,240,243,15,16,69,244,243,15,88,69,240, 243,15,17,69,228,243,15,16,69,244,243,15,92,69,240,243,15,17,69,224,139,69,212,193,224,2,3,69,16,139,0,137,69,236,139,69,208,193,224,2,3,69,16,139,0,137,69,232,243,15,16,69,236,243,15,88,69,232,243,15,17,69,220,243,15,16,69,236,243,15,92,69,232,243,15, 17,69,216,139,69,212,193,224,2,137,194,3,85,16,243,15,16,69,220,15,40,200,243,15,88,77,224,141,131,135,196,8,0,243,15,16,0,243,15,89,193,243,15,17,2,139,69,208,193,224,2,137,194,3,85,16,243,15,16,69,220,15,40,200,243,15,92,77,224,141,131,135,196,8,0, 243,15,16,0,243,15,89,193,243,15,17,2,139,69,212,193,224,2,137,194,3,85,12,243,15,16,69,228,15,40,200,243,15,92,77,216,141,131,135,196,8,0,243,15,16,0,243,15,89,193,243,15,17,2,139,69,208,193,224,2,137,194,3,85,12,243,15,16,69,228,15,40,200,243,15,88, 77,216,141,131,135,196,8,0,243,15,16,0,243,15,89,193,243,15,17,2,255,69,212,255,77,208,139,69,212,59,69,204,15,140,210,254,255,255,131,196,68,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,68,36,4,139,69,12,137,4,36,232,61,240,255,255, 199,69,228,1,0,0,0,139,69,8,72,137,69,224,139,85,8,137,208,193,232,31,1,208,209,248,137,69,220,235,118,139,69,228,193,224,2,3,69,12,139,0,137,69,244,139,69,224,193,224,2,3,69,12,139,0,137,69,240,139,69,224,193,224,2,137,194,3,85,12,243,15,16,69,244,15, 40,200,243,15,92,77,240,141,131,0,195,8,0,243,15,16,0,243,15,89,193,243,15,17,2,139,69,228,193,224,2,137,194,3,85,12,243,15,16,69,244,15,40,200,243,15,88,77,240,141,131,0,195,8,0,243,15,16,0,243,15,89,193,243,15,17,2,255,69,228,255,77,224,139,69,228, 59,69,220,124,130,131,196,52,91,201,195,85,137,229,131,236,56,199,69,228,1,0,0,0,139,69,8,72,137,69,224,139,85,8,137,208,193,232,31,1,208,209,248,137,69,220,235,80,139,69,228,193,224,2,3,69,12,139,0,137,69,244,139,69,224,193,224,2,3,69,12,139,0,137,69, 240,139,69,224,193,224,2,3,69,12,243,15,16,69,244,243,15,92,69,240,243,15,17,0,139,69,228,193,224,2,3,69,12,243,15,16,69,244,243,15,88,69,240,243,15,17,0,255,69,228,255,77,224,139,69,228,59,69,220,124,168,139,69,8,137,68,36,4,139,69,12,137,4,36,232,11, 239,255,255,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,69,244,0,0,0,0,199,69,240,0,0,0,0,141,131,133,226,8,0,139,0,137,69,244,233,132,0,0,0,139,69,244,139,0,59,69,12,117,11,139,69,244,139,64,16,59,69,16,116,17,139,69,244,137,69,240,139,69,244, 139,64,72,137,69,244,235,94,139,69,8,137,68,36,16,139,69,28,137,68,36,12,139,69,24,137,68,36,8,139,69,20,137,68,36,4,139,69,244,137,4,36,232,59,8,0,0,139,69,244,137,4,36,232,1,25,0,0,139,69,44,137,68,36,16,139,69,40,137,68,36,12,139,69,36,137,68,36,8, 139,69,32,137,68,36,4,139,69,244,137,4,36,232,227,15,0,0,233,209,0,0,0,131,125,244,0,15,133,114,255,255,255,131,125,240,0,116,36,199,4,36,76,0,0,0,232,120,199,8,0,137,69,244,139,69,244,199,64,72,0,0,0,0,139,85,240,139,69,244,137,66,72,235,43,199,4,36, 76,0,0,0,232,84,199,8,0,137,194,141,131,133,226,8,0,137,16,141,131,133,226,8,0,139,0,137,69,244,139,69,244,199,64,72,0,0,0,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,244,137,4,36,232,180,0,0,0,139,69,8,137,68,36,16,139,69,28,137,68,36,12,139, 69,24,137,68,36,8,139,69,20,137,68,36,4,139,69,244,137,4,36,232,101,7,0,0,139,69,244,137,4,36,232,43,24,0,0,139,69,44,137,68,36,16,139,69,40,137,68,36,12,139,69,36,137,68,36,8,139,69,32,137,68,36,4,139,69,244,137,4,36,232,13,15,0,0,131,196,52,91,201, 195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,255,224,8,0,139,0,133,192,116,54,141,131,255,224,8,0,139,0,137,69,244,139,69,244,139,64,72,137,69,240,139,69,244,137,4,36,232,194,27,0,0,139,69,244,137,4,36,232,32,198,8,0,139,69,240,137,69,244,131, 125,244,0,117,213,131,196,36,91,201,195,85,137,229,86,83,129,236,176,0,0,0,232,0,0,0,0,91,242,15,42,77,12,141,131,214,191,8,0,242,15,16,0,242,15,94,193,242,15,90,192,243,15,17,69,204,139,85,8,139,69,12,137,2,139,85,12,137,208,193,232,31,1,208,209,248, 137,69,224,139,85,8,139,69,224,137,66,8,199,69,240,0,0,0,0,139,69,12,137,69,236,235,6,209,125,236,255,69,240,131,125,236,1,127,244,139,69,240,137,69,228,139,85,8,139,69,228,137,66,4,139,69,8,199,64,12,1,0,0,0,139,85,8,139,69,16,137,66,16,139,69,8,199, 64,72,0,0,0,0,139,69,8,137,4,36,232,166,25,0,0,131,125,16,1,117,85,139,69,8,139,80,24,141,131,42,191,8,0,139,0,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,211,27,0,0,242,15,42,77,12,141,131,70,191,8,0,242,15,16,0,242,15,94,193,242,15,90,192,139,69, 8,139,80,28,243,15,17,68,36,8,139,69,12,137,68,36,4,137,20,36,232,161,27,0,0,235,83,139,69,8,139,80,24,141,131,42,191,8,0,139,0,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,0,28,0,0,242,15,42,77,12,141,131,70,191,8,0,242,15,16,0,242,15,94,193,242, 15,90,192,139,69,8,139,80,28,243,15,17,68,36,8,139,69,12,137,68,36,4,137,20,36,232,206,27,0,0,139,69,8,139,64,56,137,69,188,139,69,8,139,64,64,137,69,184,139,69,8,139,64,60,137,69,180,139,69,8,139,64,68,137,69,176,199,69,240,0,0,0,0,235,65,139,85,180, 141,131,42,191,8,0,139,0,137,2,139,69,180,139,16,139,69,188,137,16,139,85,176,141,131,38,191,8,0,139,0,137,2,139,69,176,139,16,139,69,184,137,16,131,69,188,4,131,69,180,4,131,69,184,4,131,69,176,4,255,69,240,139,69,240,59,69,224,124,183,199,69,232,2, 0,0,0,233,84,1,0,0,139,85,232,139,69,228,41,208,141,72,1,184,1,0,0,0,211,224,139,85,12,137,193,137,208,193,250,31,247,249,137,69,200,139,85,232,139,69,228,137,193,41,209,184,1,0,0,0,211,224,137,69,196,199,69,244,0,0,0,0,139,85,224,137,208,193,250,31, 247,125,200,137,69,240,233,248,0,0,0,199,69,192,0,0,0,0,139,69,200,137,69,236,233,217,0,0,0,243,15,42,69,192,243,15,89,69,204,243,15,90,192,242,15,17,4,36,232,90,195,8,0,221,157,88,255,255,255,242,15,90,133,88,255,255,255,139,69,188,243,15,17,0,243,15, 42,69,192,243,15,89,69,204,243,15,90,192,242,15,17,4,36,232,45,195,8,0,221,157,96,255,255,255,242,15,90,133,96,255,255,255,139,69,180,243,15,17,0,243,15,42,69,192,243,15,89,69,204,243,15,90,192,242,15,17,4,36,232,134,196,8,0,221,157,104,255,255,255,242, 15,90,141,104,255,255,255,141,131,22,192,8,0,15,40,0,15,87,193,139,69,184,243,15,17,0,243,15,42,69,192,243,15,89,69,204,243,15,90,192,242,15,17,4,36,232,77,196,8,0,221,157,112,255,255,255,242,15,90,133,112,255,255,255,139,69,176,243,15,17,0,139,69,196, 1,69,192,131,69,188,4,131,69,180,4,131,69,184,4,131,69,176,4,255,77,236,131,125,236,0,15,143,29,255,255,255,255,77,240,131,125,240,0,15,143,254,254,255,255,255,69,232,139,69,232,59,69,228,15,142,160,254,255,255,139,69,8,139,64,40,137,69,164,139,69,8, 139,64,44,137,69,160,139,69,8,139,64,48,137,69,156,139,69,8,139,64,52,137,69,152,139,69,8,139,64,32,137,69,148,139,69,8,139,64,36,137,69,144,139,69,228,193,224,2,137,4,36,232,245,194,8,0,137,69,220,139,69,228,193,224,2,137,4,36,232,228,194,8,0,137,69, 216,199,69,232,0,0,0,0,235,57,139,69,232,193,224,2,137,198,3,117,220,139,69,224,193,224,2,137,4,36,232,191,194,8,0,137,6,139,69,232,193,224,2,137,198,3,117,216,139,69,224,193,224,2,137,4,36,232,164,194,8,0,137,6,255,69,232,139,69,232,59,69,228,124,191, 199,69,232,0,0,0,0,233,173,0,0,0,139,69,232,193,224,2,3,69,220,139,0,137,69,212,139,69,232,193,224,2,3,69,216,139,0,137,69,208,139,77,232,184,1,0,0,0,211,224,137,69,168,139,85,232,139,69,228,41,208,141,72,255,184,1,0,0,0,211,224,137,69,244,199,69,172, 0,0,0,0,139,69,172,137,69,236,139,69,236,137,69,240,139,69,240,193,224,2,137,194,3,85,208,139,69,168,3,69,172,137,2,139,69,240,193,224,2,137,194,3,85,212,139,69,172,137,2,255,69,240,255,69,172,255,69,236,139,69,236,59,69,168,124,204,139,85,208,131,234, 4,139,69,240,193,224,2,141,4,2,139,0,64,137,69,172,199,69,236,0,0,0,0,255,77,244,131,125,244,0,117,167,255,69,232,139,69,232,59,69,228,15,140,71,255,255,255,199,69,232,0,0,0,0,233,186,0,0,0,199,69,240,0,0,0,0,233,159,0,0,0,139,69,232,193,224,2,3,69,220, 139,16,139,69,240,193,224,2,141,4,2,139,0,193,224,2,137,194,3,85,148,139,69,164,137,16,131,69,164,4,139,69,232,193,224,2,3,69,220,139,16,139,69,240,193,224,2,141,4,2,139,0,193,224,2,137,194,3,85,144,139,69,160,137,16,131,69,160,4,139,69,232,193,224,2, 3,69,216,139,16,139,69,240,193,224,2,141,4,2,139,0,193,224,2,137,194,3,85,148,139,69,156,137,16,131,69,156,4,139,69,232,193,224,2,3,69,216,139,16,139,69,240,193,224,2,141,4,2,139,0,193,224,2,137,194,3,85,144,139,69,152,137,16,131,69,152,4,255,69,240, 139,69,240,59,69,224,15,140,85,255,255,255,255,69,232,139,69,232,59,69,228,15,140,58,255,255,255,139,69,12,193,224,2,137,4,36,232,242,192,8,0,137,69,132,139,69,132,137,69,128,199,69,240,0,0,0,0,139,69,12,137,69,236,139,69,8,139,64,20,137,69,136,139,69, 136,137,69,140,235,15,139,85,136,139,69,240,137,2,131,69,136,4,255,69,240,255,77,236,131,125,236,255,117,232,139,69,228,72,137,69,232,233,168,0,0,0,139,69,232,193,224,2,3,69,220,139,0,137,69,212,139,69,232,193,224,2,3,69,216,139,0,137,69,208,199,69,240, 0,0,0,0,235,73,139,69,240,193,224,2,3,69,212,139,0,193,224,2,137,194,3,85,128,139,69,240,193,224,3,3,69,140,139,0,137,2,139,69,240,193,224,2,3,69,208,139,0,193,224,2,137,193,3,77,128,139,85,140,131,194,4,139,69,240,193,224,3,141,4,2,139,0,137,1,255,69, 240,139,69,240,59,69,224,124,175,139,69,12,137,69,236,139,69,140,137,69,136,139,69,128,137,69,132,235,18,139,69,132,139,16,139,69,136,137,16,131,69,136,4,131,69,132,4,255,77,236,131,125,236,255,117,229,255,77,232,131,125,232,0,15,143,78,255,255,255,139, 69,128,137,4,36,232,144,191,8,0,199,69,232,0,0,0,0,235,41,139,69,232,193,224,2,3,69,220,139,0,137,4,36,232,116,191,8,0,139,69,232,193,224,2,3,69,216,139,0,137,4,36,232,97,191,8,0,255,69,232,139,69,232,59,69,228,124,207,139,69,220,137,4,36,232,75,191, 8,0,139,69,216,137,4,36,232,64,191,8,0,129,196,176,0,0,0,91,94,201,195,85,137,229,86,83,129,236,176,0,0,0,232,0,0,0,0,91,139,69,8,139,64,20,137,69,244,199,69,232,0,0,0,0,139,69,8,139,0,137,69,228,131,125,24,1,117,11,139,69,8,139,64,24,137,69,240,235, 73,131,125,24,2,117,11,139,69,8,139,64,28,137,69,240,235,56,141,131,158,197,8,0,139,0,139,0,137,68,36,12,199,68,36,8,43,0,0,0,199,68,36,4,1,0,0,0,141,131,154,53,8,0,137,4,36,232,209,190,8,0,199,4,36,0,0,0,0,232,107,190,8,0,139,85,8,139,69,24,137,66,12, 139,69,20,137,133,124,255,255,255,131,189,124,255,255,255,0,116,18,131,189,124,255,255,255,1,15,132,224,2,0,0,233,232,6,0,0,139,69,16,137,133,120,255,255,255,131,189,120,255,255,255,2,15,132,247,0,0,0,131,189,120,255,255,255,2,127,14,131,189,120,255, 255,255,0,116,125,233,118,2,0,0,131,189,120,255,255,255,8,15,132,90,1,0,0,131,189,120,255,255,255,64,15,132,73,2,0,0,233,87,2,0,0,139,69,232,193,224,2,3,69,244,139,0,137,69,236,139,69,8,139,80,32,139,69,232,193,224,2,1,194,139,69,236,193,224,2,3,69,12, 243,15,16,8,139,69,236,193,224,2,3,69,240,243,15,16,0,243,15,89,193,243,15,17,2,139,69,8,139,80,36,139,69,232,193,224,2,1,194,141,131,78,184,8,0,139,0,137,2,255,69,232,139,69,8,139,0,59,69,232,127,157,233,108,6,0,0,139,69,232,193,224,2,3,69,244,139,0, 137,69,236,139,69,8,139,80,32,139,69,232,193,224,2,1,194,141,131,78,184,8,0,139,0,137,2,139,69,8,139,80,36,139,69,232,193,224,2,1,194,139,69,236,193,224,2,3,69,12,243,15,16,8,139,69,236,193,224,2,3,69,240,243,15,16,0,243,15,89,193,243,15,17,2,255,69, 232,139,69,8,139,0,59,69,232,127,157,233,4,6,0,0,139,69,232,193,224,2,3,69,244,139,0,137,69,236,139,69,8,139,80,32,139,69,232,193,224,2,1,194,139,69,236,193,224,3,3,69,12,243,15,16,8,139,69,236,193,224,2,3,69,240,243,15,16,0,243,15,89,193,243,15,17,2, 139,69,8,139,80,36,139,69,232,193,224,2,141,12,2,139,85,12,131,194,4,139,69,236,193,224,3,141,4,2,243,15,16,8,139,69,236,193,224,2,3,69,240,243,15,16,0,243,15,89,193,243,15,17,1,255,69,232,139,69,8,139,0,59,69,232,15,143,122,255,255,255,233,121,5,0,0, 139,69,232,193,224,2,3,69,244,139,0,137,69,236,139,69,8,139,80,32,139,69,232,193,224,2,141,52,2,139,69,236,193,224,3,3,69,12,243,15,16,0,243,15,90,192,242,15,17,69,128,139,85,12,131,194,4,139,69,236,193,224,3,141,4,2,243,15,16,0,243,15,90,192,242,15, 17,4,36,232,31,188,8,0,221,93,136,242,15,16,69,128,242,15,89,69,136,242,15,90,200,139,69,236,193,224,2,3,69,240,243,15,16,0,243,15,89,193,243,15,17,6,139,69,8,139,80,36,139,69,232,193,224,2,141,52,2,139,69,236,193,224,3,3,69,12,243,15,16,0,243,15,90, 192,242,15,17,69,144,139,85,12,131,194,4,139,69,236,193,224,3,141,4,2,243,15,16,0,243,15,90,192,242,15,17,4,36,232,57,189,8,0,221,93,152,242,15,16,69,144,242,15,89,69,152,242,15,90,200,139,69,236,193,224,2,3,69,240,243,15,16,0,243,15,89,193,243,15,17, 6,255,69,232,139,69,8,139,0,59,69,232,15,143,9,255,255,255,233,125,4,0,0,141,131,158,197,8,0,139,0,139,0,137,68,36,12,199,68,36,8,34,0,0,0,199,68,36,4,1,0,0,0,141,131,198,53,8,0,137,4,36,232,201,187,8,0,199,4,36,0,0,0,0,232,99,187,8,0,139,69,16,137,133, 116,255,255,255,131,189,116,255,255,255,2,15,132,115,1,0,0,131,189,116,255,255,255,2,127,18,131,189,116,255,255,255,0,15,132,188,0,0,0,233,164,3,0,0,131,189,116,255,255,255,8,15,132,63,2,0,0,131,189,116,255,255,255,64,15,132,122,3,0,0,233,133,3,0,0,139, 69,232,193,224,2,3,69,244,139,0,137,69,236,139,69,8,139,80,32,139,69,232,193,224,2,141,52,2,139,69,236,193,224,2,3,69,12,243,15,16,0,243,15,90,200,141,131,6,185,8,0,242,15,16,0,242,15,89,193,242,15,17,68,36,8,141,131,14,185,8,0,242,15,16,0,242,15,17, 4,36,232,137,187,8,0,221,157,96,255,255,255,242,15,16,133,96,255,255,255,242,15,90,200,139,69,236,193,224,2,3,69,240,243,15,16,0,243,15,89,193,243,15,17,6,139,69,8,139,80,36,139,69,232,193,224,2,1,194,141,131,78,184,8,0,139,0,137,2,255,69,232,139,69, 8,139,0,59,69,232,15,143,90,255,255,255,233,74,3,0,0,139,69,232,193,224,2,3,69,244,139,0,137,69,236,139,69,8,139,80,32,139,69,232,193,224,2,1,194,141,131,78,184,8,0,139,0,137,2,139,69,8,139,80,36,139,69,232,193,224,2,141,52,2,139,69,236,193,224,2,3,69, 12,243,15,16,0,243,15,90,200,141,131,6,185,8,0,242,15,16,0,242,15,89,193,242,15,17,68,36,8,141,131,14,185,8,0,242,15,16,0,242,15,17,4,36,232,198,186,8,0,221,93,160,242,15,90,77,160,139,69,236,193,224,2,3,69,240,243,15,16,0,243,15,89,193,243,15,17,6,255, 69,232,139,69,8,139,0,59,69,232,15,143,100,255,255,255,233,169,2,0,0,139,69,232,193,224,2,3,69,244,139,0,137,69,236,139,69,8,139,80,32,139,69,232,193,224,2,141,52,2,139,69,236,193,224,3,3,69,12,243,15,16,0,243,15,90,200,141,131,6,185,8,0,242,15,16,0, 242,15,89,193,242,15,17,68,36,8,141,131,14,185,8,0,242,15,16,0,242,15,17,4,36,232,61,186,8,0,221,93,168,242,15,90,77,168,139,69,236,193,224,2,3,69,240,243,15,16,0,243,15,89,193,243,15,17,6,139,69,8,139,80,36,139,69,232,193,224,2,141,52,2,139,85,12,131, 194,4,139,69,236,193,224,3,141,4,2,243,15,16,0,243,15,90,200,141,131,6,185,8,0,242,15,16,0,242,15,89,193,242,15,17,68,36,8,141,131,14,185,8,0,242,15,16,0,242,15,17,4,36,232,210,185,8,0,221,93,176,242,15,90,77,176,139,69,236,193,224,2,3,69,240,243,15, 16,0,243,15,89,193,243,15,17,6,255,69,232,139,69,8,139,0,59,69,232,15,143,17,255,255,255,233,181,1,0,0,139,69,232,193,224,2,3,69,244,139,0,137,69,236,139,69,8,139,80,32,139,69,232,193,224,2,141,52,2,139,69,236,193,224,3,3,69,12,243,15,16,0,243,15,90, 200,141,131,6,185,8,0,242,15,16,0,242,15,89,193,242,15,17,68,36,8,141,131,14,185,8,0,242,15,16,0,242,15,17,4,36,232,73,185,8,0,221,93,184,139,85,12,131,194,4,139,69,236,193,224,3,141,4,2,243,15,16,0,243,15,90,192,242,15,17,4,36,232,53,184,8,0,221,93, 192,242,15,16,69,184,242,15,89,69,192,242,15,90,200,139,69,236,193,224,2,3,69,240,243,15,16,0,243,15,89,193,243,15,17,6,139,69,8,139,80,36,139,69,232,193,224,2,141,52,2,139,69,236,193,224,3,3,69,12,243,15,16,0,243,15,90,200,141,131,6,185,8,0,242,15,16, 0,242,15,89,193,242,15,17,68,36,8,141,131,14,185,8,0,242,15,16,0,242,15,17,4,36,232,183,184,8,0,221,93,200,139,85,12,131,194,4,139,69,236,193,224,3,141,4,2,243,15,16,0,243,15,90,192,242,15,17,4,36,232,41,185,8,0,221,93,208,242,15,16,69,200,242,15,89, 69,208,242,15,90,200,139,69,236,193,224,2,3,69,240,243,15,16,0,243,15,89,193,243,15,17,6,255,69,232,139,69,8,139,0,59,69,232,15,143,189,254,255,255,235,112,141,131,158,197,8,0,139,0,139,0,137,68,36,12,199,68,36,8,34,0,0,0,199,68,36,4,1,0,0,0,141,131, 198,53,8,0,137,4,36,232,188,183,8,0,199,4,36,0,0,0,0,232,86,183,8,0,141,131,158,197,8,0,139,0,139,0,137,68,36,12,199,68,36,8,35,0,0,0,199,68,36,4,1,0,0,0,141,131,234,53,8,0,137,4,36,232,132,183,8,0,199,4,36,0,0,0,0,232,30,183,8,0,129,196,176,0,0,0,91, 94,201,195,85,137,229,83,129,236,148,0,0,0,232,0,0,0,0,91,199,69,244,0,0,0,0,139,69,8,139,0,137,69,224,139,69,20,137,69,132,131,125,132,0,116,15,131,125,132,1,15,132,22,4,0,0,233,124,8,0,0,139,69,16,137,69,128,131,125,128,8,15,132,142,0,0,0,131,125,128, 8,127,17,131,125,128,0,116,46,131,125,128,2,116,82,233,178,3,0,0,131,125,128,32,15,132,27,1,0,0,131,125,128,64,15,132,142,2,0,0,131,125,128,16,15,132,157,0,0,0,233,143,3,0,0,139,69,8,139,80,32,139,69,244,193,224,2,141,4,2,139,16,139,69,12,137,16,131, 69,12,4,255,69,244,139,69,244,59,69,224,124,219,233,64,8,0,0,139,69,8,139,80,36,139,69,244,193,224,2,141,4,2,139,16,139,69,12,137,16,131,69,12,4,255,69,244,139,69,244,59,69,224,124,219,233,22,8,0,0,139,69,8,139,80,32,139,69,244,193,224,2,141,4,2,139, 16,139,69,12,137,16,131,69,12,4,139,69,8,139,80,36,139,69,244,193,224,2,141,4,2,139,16,139,69,12,137,16,131,69,12,4,255,69,244,139,69,244,59,69,224,124,193,233,210,7,0,0,139,69,8,139,80,32,139,69,244,193,224,2,141,4,2,139,0,137,69,240,139,69,8,139,80, 36,139,69,244,193,224,2,141,4,2,139,0,137,69,236,243,15,16,69,240,15,40,200,243,15,89,77,240,243,15,16,69,236,243,15,89,69,236,243,15,88,193,243,15,90,192,242,15,81,192,242,15,90,192,139,69,12,243,15,17,0,131,69,12,4,255,69,244,139,69,244,59,69,224,124, 155,233,104,7,0,0,139,69,8,139,80,32,139,69,244,193,224,2,141,4,2,139,0,137,69,240,139,69,8,139,80,36,139,69,244,193,224,2,141,4,2,139,0,137,69,236,243,15,90,69,240,141,131,61,177,8,0,102,15,46,0,119,2,235,50,243,15,90,69,240,243,15,90,77,236,242,15, 17,68,36,8,242,15,17,12,36,232,211,180,8,0,221,93,136,242,15,90,69,136,139,69,12,243,15,17,0,131,69,12,4,233,252,0,0,0,141,131,117,176,8,0,243,15,16,8,243,15,16,69,236,15,46,193,119,2,235,76,139,69,12,141,147,85,177,8,0,139,18,137,16,131,69,12,4,131, 125,24,0,15,132,203,0,0,0,141,131,197,189,8,0,139,0,139,0,137,68,36,12,199,68,36,8,20,0,0,0,199,68,36,4,1,0,0,0,141,131,53,46,8,0,137,4,36,232,30,181,8,0,233,154,0,0,0,141,131,117,176,8,0,243,15,16,0,15,46,69,236,119,2,235,69,139,69,12,141,147,89,177, 8,0,139,18,137,16,131,69,12,4,131,125,24,0,116,113,141,131,197,189,8,0,139,0,139,0,137,68,36,12,199,68,36,8,20,0,0,0,199,68,36,4,1,0,0,0,141,131,74,46,8,0,137,4,36,232,196,180,8,0,235,67,139,69,12,141,147,117,176,8,0,139,18,137,16,131,69,12,4,131,125, 24,0,116,44,141,131,197,189,8,0,139,0,139,0,137,68,36,12,199,68,36,8,18,0,0,0,199,68,36,4,1,0,0,0,141,131,95,46,8,0,137,4,36,232,127,180,8,0,255,69,244,139,69,244,59,69,224,15,140,136,254,255,255,233,235,5,0,0,139,69,8,139,80,32,139,69,244,193,224,2, 141,4,2,139,0,137,69,240,139,69,8,139,80,36,139,69,244,193,224,2,141,4,2,139,0,137,69,236,243,15,16,69,240,15,40,200,243,15,89,77,240,243,15,16,69,236,243,15,89,69,236,243,15,88,193,243,15,90,192,242,15,81,192,242,15,90,192,139,69,12,243,15,17,0,131, 69,12,4,141,131,117,176,8,0,243,15,16,0,15,46,69,240,117,4,122,2,235,47,243,15,90,69,240,243,15,90,77,236,242,15,17,68,36,8,242,15,17,12,36,232,35,179,8,0,221,93,144,242,15,90,69,144,139,69,12,243,15,17,0,131,69,12,4,235,95,141,131,117,176,8,0,243,15, 16,8,243,15,16,69,236,15,46,193,119,2,235,19,139,69,12,141,147,85,177,8,0,139,18,137,16,131,69,12,4,235,54,141,131,117,176,8,0,243,15,16,0,15,46,69,236,119,2,235,19,139,69,12,141,147,89,177,8,0,139,18,137,16,131,69,12,4,235,17,139,69,12,141,147,117,176, 8,0,139,18,137,16,131,69,12,4,255,69,244,139,69,244,59,69,224,15,140,245,254,255,255,233,219,4,0,0,141,131,197,189,8,0,139,0,139,0,137,68,36,12,199,68,36,8,36,0,0,0,199,68,36,4,1,0,0,0,141,131,117,46,8,0,137,4,36,232,47,179,8,0,199,4,36,0,0,0,0,232,201, 178,8,0,139,69,16,137,133,124,255,255,255,131,189,124,255,255,255,8,15,132,244,0,0,0,131,189,124,255,255,255,8,127,27,131,189,124,255,255,255,0,116,62,131,189,124,255,255,255,2,15,132,131,0,0,0,233,249,3,0,0,131,189,124,255,255,255,32,15,132,229,1,0, 0,131,189,124,255,255,255,64,15,132,182,2,0,0,131,189,124,255,255,255,16,15,132,65,1,0,0,233,205,3,0,0,139,69,8,139,80,32,139,69,244,193,224,2,141,4,2,243,15,16,0,243,15,90,192,242,15,17,4,36,232,210,178,8,0,221,93,152,141,131,69,177,8,0,242,15,16,0, 242,15,89,69,152,242,15,90,192,139,69,12,243,15,17,0,131,69,12,4,255,69,244,139,69,244,59,69,224,124,179,233,235,3,0,0,139,69,8,139,80,36,139,69,244,193,224,2,141,4,2,243,15,16,0,243,15,90,192,242,15,17,4,36,232,128,178,8,0,221,93,160,141,131,69,177, 8,0,242,15,16,0,242,15,89,69,160,242,15,90,192,139,69,12,243,15,17,0,131,69,12,4,255,69,244,139,69,244,59,69,224,124,179,233,153,3,0,0,139,69,8,139,80,32,139,69,244,193,224,2,141,4,2,243,15,16,0,243,15,90,192,242,15,17,4,36,232,46,178,8,0,221,93,168, 141,131,69,177,8,0,242,15,16,0,242,15,89,69,168,242,15,90,192,139,69,12,243,15,17,0,131,69,12,4,139,69,8,139,80,36,139,69,244,193,224,2,141,4,2,243,15,16,0,243,15,90,192,242,15,17,4,36,232,236,177,8,0,221,93,176,141,131,69,177,8,0,242,15,16,0,242,15, 89,69,176,242,15,90,192,139,69,12,243,15,17,0,131,69,12,4,255,69,244,139,69,244,59,69,224,15,140,109,255,255,255,233,1,3,0,0,139,69,8,139,80,32,139,69,244,193,224,2,141,4,2,139,0,137,69,240,139,69,8,139,80,36,139,69,244,193,224,2,141,4,2,139,0,137,69, 236,243,15,16,69,240,15,40,200,243,15,89,77,240,243,15,16,69,236,243,15,89,69,236,243,15,88,193,243,15,90,192,242,15,81,192,242,15,17,4,36,232,98,177,8,0,221,93,184,141,131,69,177,8,0,242,15,16,0,242,15,89,69,184,242,15,90,192,139,69,12,243,15,17,0,131, 69,12,4,255,69,244,139,69,244,59,69,224,15,140,123,255,255,255,233,119,2,0,0,139,69,8,139,80,32,139,69,244,193,224,2,141,4,2,139,0,137,69,240,139,69,8,139,80,36,139,69,244,193,224,2,141,4,2,139,0,137,69,236,141,131,117,176,8,0,243,15,16,0,15,46,69,240, 117,4,122,2,235,47,243,15,90,69,240,243,15,90,77,236,242,15,17,68,36,8,242,15,17,12,36,232,225,175,8,0,221,93,192,242,15,90,69,192,139,69,12,243,15,17,0,131,69,12,4,235,95,141,131,117,176,8,0,243,15,16,8,243,15,16,69,236,15,46,193,119,2,235,19,139,69, 12,141,147,85,177,8,0,139,18,137,16,131,69,12,4,235,54,141,131,117,176,8,0,243,15,16,0,15,46,69,236,119,2,235,19,139,69,12,141,147,89,177,8,0,139,18,137,16,131,69,12,4,235,17,139,69,12,141,147,117,176,8,0,139,18,137,16,131,69,12,4,255,69,244,139,69,244, 59,69,224,15,140,39,255,255,255,233,153,1,0,0,139,69,8,139,80,32,139,69,244,193,224,2,141,4,2,139,0,137,69,240,139,69,8,139,80,36,139,69,244,193,224,2,141,4,2,139,0,137,69,236,243,15,16,69,240,15,40,200,243,15,89,77,240,243,15,16,69,236,243,15,89,69, 236,243,15,88,193,243,15,90,192,242,15,81,192,242,15,17,4,36,232,250,175,8,0,221,93,200,141,131,69,177,8,0,242,15,16,0,242,15,89,69,200,242,15,90,192,139,69,12,243,15,17,0,131,69,12,4,141,131,117,176,8,0,243,15,16,0,15,46,69,240,117,4,122,2,235,47,243, 15,90,69,240,243,15,90,77,236,242,15,17,68,36,8,242,15,17,12,36,232,181,174,8,0,221,93,208,242,15,90,69,208,139,69,12,243,15,17,0,131,69,12,4,235,95,141,131,117,176,8,0,243,15,16,8,243,15,16,69,236,15,46,193,119,2,235,19,139,69,12,141,147,85,177,8,0, 139,18,137,16,131,69,12,4,235,54,141,131,117,176,8,0,243,15,16,0,15,46,69,236,119,2,235,19,139,69,12,141,147,89,177,8,0,139,18,137,16,131,69,12,4,235,17,139,69,12,141,147,117,176,8,0,139,18,137,16,131,69,12,4,255,69,244,139,69,244,59,69,224,15,140,217, 254,255,255,235,112,141,131,197,189,8,0,139,0,139,0,137,68,36,12,199,68,36,8,36,0,0,0,199,68,36,4,1,0,0,0,141,131,117,46,8,0,137,4,36,232,196,174,8,0,199,4,36,0,0,0,0,232,94,174,8,0,141,131,197,189,8,0,139,0,139,0,137,68,36,12,199,68,36,8,37,0,0,0,199, 68,36,4,1,0,0,0,141,131,157,46,8,0,137,4,36,232,140,174,8,0,199,4,36,0,0,0,0,232,38,174,8,0,129,196,148,0,0,0,91,201,195,85,137,229,131,236,72,139,69,8,139,64,8,137,69,200,139,69,8,139,64,4,72,15,175,69,200,137,69,196,139,69,8,139,64,40,137,69,244,139, 69,8,139,64,44,137,69,240,139,69,8,139,64,48,137,69,236,139,69,8,139,64,52,137,69,232,139,69,8,139,64,12,131,248,1,117,20,139,69,8,139,64,56,137,69,228,139,69,8,139,64,64,137,69,224,235,18,139,69,8,139,64,60,137,69,228,139,69,8,139,64,68,137,69,224,199, 69,220,0,0,0,0,233,187,0,0,0,139,69,244,139,0,243,15,16,8,139,69,236,139,0,243,15,16,0,243,15,88,193,243,15,17,69,216,139,69,240,139,0,243,15,16,8,139,69,232,139,0,243,15,16,0,243,15,88,193,243,15,17,69,212,139,69,244,139,0,243,15,16,8,139,69,236,139, 0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,208,139,69,240,139,0,243,15,16,8,139,69,232,139,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,204,139,69,244,139,16,139,69,216,137,2,139,69,240,139,16,139,69,212,137,2,139,69, 236,139,16,139,69,208,137,2,139,69,232,139,16,139,69,204,137,2,131,69,244,4,131,69,240,4,131,69,236,4,131,69,232,4,131,69,228,4,131,69,224,4,255,69,220,139,69,220,59,69,200,15,140,57,255,255,255,199,69,220,0,0,0,0,233,61,1,0,0,139,69,236,139,0,243,15, 16,8,139,69,228,243,15,16,0,15,40,209,243,15,89,208,139,69,232,139,0,243,15,16,8,139,69,224,243,15,16,0,243,15,89,193,15,40,202,243,15,92,200,15,40,193,243,15,17,69,208,139,69,236,139,0,243,15,16,8,139,69,224,243,15,16,0,15,40,209,243,15,89,208,139,69, 232,139,0,243,15,16,8,139,69,228,243,15,16,0,243,15,89,193,243,15,88,194,243,15,17,69,204,139,69,236,139,16,139,69,208,137,2,139,69,232,139,16,139,69,204,137,2,139,69,244,139,0,243,15,16,8,139,69,236,139,0,243,15,16,0,243,15,88,193,243,15,17,69,216,139, 69,240,139,0,243,15,16,8,139,69,232,139,0,243,15,16,0,243,15,88,193,243,15,17,69,212,139,69,244,139,0,243,15,16,8,139,69,236,139,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,208,139,69,240,139,0,243,15,16,8,139,69,232,139,0,243,15,16, 0,15,40,209,243,15,92,208,15,40,194,243,15,17,69,204,139,69,244,139,16,139,69,216,137,2,139,69,240,139,16,139,69,212,137,2,139,69,236,139,16,139,69,208,137,2,139,69,232,139,16,139,69,204,137,2,131,69,244,4,131,69,240,4,131,69,236,4,131,69,232,4,131,69, 228,4,131,69,224,4,255,69,220,139,69,220,59,69,196,15,140,183,254,255,255,201,195,85,137,229,131,236,40,139,69,8,139,0,137,69,236,139,69,8,139,64,4,137,69,244,139,69,8,139,64,8,137,69,240,139,69,236,193,224,2,137,4,36,232,245,171,8,0,137,194,139,69,8, 137,80,20,139,69,236,193,224,2,137,4,36,232,223,171,8,0,137,194,139,69,8,137,80,32,139,69,236,193,224,2,137,4,36,232,201,171,8,0,137,194,139,69,8,137,80,36,139,69,244,15,175,69,240,193,224,2,137,4,36,232,175,171,8,0,137,194,139,69,8,137,80,56,139,69, 244,15,175,69,240,193,224,2,137,4,36,232,149,171,8,0,137,194,139,69,8,137,80,64,139,69,244,15,175,69,240,193,224,2,137,4,36,232,123,171,8,0,137,194,139,69,8,137,80,60,139,69,244,15,175,69,240,193,224,2,137,4,36,232,97,171,8,0,137,194,139,69,8,137,80, 68,139,69,244,15,175,69,240,193,224,2,137,4,36,232,71,171,8,0,137,194,139,69,8,137,80,40,139,69,244,15,175,69,240,193,224,2,137,4,36,232,45,171,8,0,137,194,139,69,8,137,80,44,139,69,244,15,175,69,240,193,224,2,137,4,36,232,19,171,8,0,137,194,139,69,8, 137,80,48,139,69,244,15,175,69,240,193,224,2,137,4,36,232,249,170,8,0,137,194,139,69,8,137,80,52,139,69,236,193,224,2,137,4,36,232,227,170,8,0,137,194,139,69,8,137,80,24,139,69,236,193,224,2,137,4,36,232,205,170,8,0,137,194,139,69,8,137,80,28,201,195, 85,137,229,131,236,24,139,69,8,139,64,20,137,4,36,232,85,170,8,0,139,69,8,139,64,32,137,4,36,232,71,170,8,0,139,69,8,139,64,36,137,4,36,232,57,170,8,0,139,69,8,139,64,56,137,4,36,232,43,170,8,0,139,69,8,139,64,64,137,4,36,232,29,170,8,0,139,69,8,139, 64,60,137,4,36,232,15,170,8,0,139,69,8,139,64,68,137,4,36,232,1,170,8,0,139,69,8,139,64,40,137,4,36,232,243,169,8,0,139,69,8,139,64,44,137,4,36,232,229,169,8,0,139,69,8,139,64,48,137,4,36,232,215,169,8,0,139,69,8,139,64,52,137,4,36,232,201,169,8,0,139, 69,8,139,64,24,137,4,36,232,187,169,8,0,139,69,8,139,64,28,137,4,36,232,173,169,8,0,201,195,85,137,229,131,236,40,139,69,8,137,69,244,235,22,139,69,244,131,224,1,132,192,116,9,199,69,228,0,0,0,0,235,16,209,125,244,131,125,244,1,127,228,199,69,228,1,0, 0,0,139,69,228,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,242,15,42,77,12,141,131,105,163,8,0,242,15,16,0,242,15,94,193,242,15,90,192,243,15,17,69,240,199,69,236,1,0,0,0,235,66,243,15,42,69,236,243,15,89,69,240,243,15,90,192,242,15,17,4,36,232,69, 170,8,0,221,93,224,242,15,90,69,224,243,15,17,69,244,243,15,16,69,16,243,15,89,69,244,243,15,89,69,244,139,69,8,243,15,17,0,131,69,8,4,255,69,236,139,69,236,59,69,12,126,182,131,196,52,91,201,195,85,137,229,131,236,8,235,12,139,85,8,139,69,16,137,2,131, 69,8,4,255,77,12,131,125,12,255,117,235,201,195,85,137,229,131,236,8,235,26,139,69,8,15,183,0,152,243,15,42,192,139,69,12,243,15,17,0,131,69,12,4,131,69,8,2,255,77,16,131,125,16,255,117,221,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,131,125,16, 0,116,12,242,15,42,69,12,242,15,17,69,200,235,15,141,131,227,161,8,0,242,15,16,0,242,15,17,69,200,242,15,16,69,200,242,15,17,69,224,131,125,16,0,116,9,199,69,212,2,0,0,0,235,7,199,69,212,1,0,0,0,199,68,36,36,0,0,0,0,199,68,36,32,0,0,0,0,199,68,36,28, 8,0,0,0,139,69,8,137,68,36,24,199,68,36,20,0,0,0,0,199,68,36,16,8,0,0,0,139,69,8,137,68,36,12,199,68,36,8,0,0,0,0,139,69,12,137,68,36,4,139,69,212,137,4,36,232,32,224,255,255,139,69,12,1,192,137,69,236,139,69,8,137,69,244,235,31,139,69,244,243,15,16, 0,243,15,90,192,242,15,89,69,224,242,15,90,192,139,69,244,243,15,17,0,131,69,244,4,255,77,236,131,125,236,255,117,216,131,196,100,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,86,174,8,0,139,0,139,0,137,4,36,232,232,26,6,0,137,69,244, 141,131,26,33,8,0,137,4,36,232,161,229,5,0,137,198,141,131,12,119,8,0,137,4,36,232,145,229,5,0,139,85,244,139,77,244,137,116,36,12,137,68,36,8,137,84,36,4,137,12,36,232,9,1,6,0,139,85,244,141,131,14,174,8,0,139,0,137,68,36,4,137,20,36,232,100,13,6,0, 139,85,244,141,131,230,161,8,0,139,0,137,66,28,139,85,244,131,194,36,139,69,244,137,80,44,139,85,244,141,131,230,160,8,0,139,0,137,66,36,139,69,8,137,68,36,4,139,69,244,137,4,36,232,24,0,0,0,139,85,244,141,131,230,160,8,0,139,0,137,66,48,139,69,244,131, 196,32,91,94,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,36,160,8,0,243,15,16,0,15,46,69,12,119,2,235,11,141,129,36,160,8,0,139,0,137,69,12,139,85,8,139,69,12,137,66,32,139,69,8,139,80,44,243,15,90,77,12,141,129,76,161,8,0,242,15,16,0,242,15, 89,200,139,69,8,243,15,16,64,28,243,15,90,192,242,15,94,200,141,129,68,160,8,0,242,15,16,0,242,15,88,193,242,15,90,192,243,15,17,66,4,139,69,8,139,64,44,243,15,16,72,4,141,129,36,160,8,0,243,15,16,0,15,46,193,119,2,235,19,139,69,8,139,80,44,141,129,36, 160,8,0,139,0,137,66,4,235,45,139,69,8,139,64,44,243,15,16,72,4,141,129,40,160,8,0,243,15,16,0,15,46,200,119,2,235,17,139,69,8,139,80,44,141,129,40,160,8,0,139,0,137,66,4,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244, 139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,236,139,0,137,69,224,139,69,236,139,64,4,137,69,220,141,129,88,159,8,0,243,15,16,0,15,46,69,220,119,5,233,133,0,0,0,199,69,228,0,0,0, 0,235,64,139,69,244,243,15,16,8,243,15,16,69,224,243,15,89,69,220,243,15,88,193,243,15,17,69,216,131,69,244,4,243,15,16,77,224,243,15,16,69,216,243,15,92,193,139,69,240,243,15,17,0,131,69,240,4,139,69,216,137,69,224,255,69,228,139,69,228,59,69,232,124, 184,141,69,224,139,0,37,0,0,0,96,133,192,116,17,141,69,224,139,0,37,0,0,0,96,61,0,0,0,96,117,11,141,129,84,159,8,0,139,0,137,69,224,139,85,224,139,69,236,137,16,235,51,199,69,228,0,0,0,0,235,21,139,69,244,139,16,139,69,240,137,16,131,69,240,4,131,69, 244,4,255,69,228,139,69,228,59,69,232,124,227,139,69,236,141,145,84,159,8,0,139,18,137,16,139,69,8,131,192,20,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,80,8,139,69,8,137,80,28,139,69,8,139,64,32,137,68,36,4,139,69,8,137,4, 36,232,225,253,255,255,139,69,12,139,0,139,16,139,69,8,139,72,44,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,213,254,255,255,137,4,36,232,218,248,0,0,131, 196,32,91,94,201,195,85,137,229,131,236,8,232,0,0,0,0,89,139,69,8,141,145,184,157,8,0,139,18,137,80,36,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,167,252,255,255,141,131,232,27,8,0,137,4,36,232,100,226,5,0,199,68,36,24,0,0,0,0,199,68, 36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,52,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,20,215,5,0,137,194,141,131,10,171,8,0,139,0,137,16,141,131,10,171,8,0,139,0,139,0,199,68,36,4,48,0,0,0,137,4,36,232,198,223,5,0,141,131,114,28,8,0, 137,4,36,232,252,225,5,0,137,194,141,139,89,255,255,255,141,131,10,171,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,189,218,5,0,141,131,206,29,8,0,137,4,36,232,196,225,5,0,137,194,141,139,107,253,255,255,141,131,10,171,8, 0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,125,218,5,0,141,131,194,156,8,0,137,4,36,232,132,225,5,0,137,194,141,139,215,255,255,255,141,131,10,171,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137, 76,36,4,137,4,36,232,69,218,5,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,223,169,8,0,139,0,139,0,137,4,36,232,105,22,6,0,137,69,244,141,131,155,28,8,0,137,4,36,232,34,225,5,0,137,198,141,131,141,114,8,0,137,4,36,232, 18,225,5,0,139,85,244,139,77,244,137,116,36,12,137,68,36,8,137,84,36,4,137,12,36,232,138,252,5,0,139,85,244,141,131,143,169,8,0,139,0,137,68,36,4,137,20,36,232,229,8,6,0,139,85,244,141,131,103,157,8,0,139,0,137,66,28,139,85,244,131,194,36,139,69,244, 137,80,44,139,85,244,141,131,103,156,8,0,139,0,137,66,36,139,69,8,137,68,36,4,139,69,244,137,4,36,232,24,0,0,0,139,85,244,141,131,103,156,8,0,139,0,137,66,48,139,69,244,131,196,32,91,94,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,165,155,8,0, 243,15,16,0,15,46,69,12,119,2,235,11,141,129,165,155,8,0,139,0,137,69,12,139,85,8,139,69,12,137,66,32,139,69,8,139,80,44,243,15,90,77,12,141,129,253,155,8,0,242,15,16,0,242,15,89,200,139,69,8,243,15,16,64,28,243,15,90,192,102,15,40,209,242,15,94,208, 102,15,40,194,242,15,90,192,243,15,17,66,4,139,69,8,139,64,44,243,15,16,72,4,141,129,169,155,8,0,243,15,16,0,15,46,200,119,2,235,19,139,69,8,139,80,44,141,129,169,155,8,0,139,0,137,66,4,235,45,139,69,8,139,64,44,243,15,16,72,4,141,129,165,155,8,0,243, 15,16,0,15,46,193,119,2,235,17,139,69,8,139,80,44,141,129,165,155,8,0,139,0,137,66,4,201,195,85,137,229,131,236,8,232,0,0,0,0,89,139,69,8,141,145,219,154,8,0,139,18,137,80,36,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69, 244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,236,139,0,137,69,224,139,69,236,139,64,4,137,69,220,141,129,195,154,8,0,243,15,16,0,243,15,92,69,220,243,15,17,69,216,199,69,228, 0,0,0,0,235,55,139,69,244,243,15,16,0,15,40,200,243,15,89,77,220,243,15,16,69,224,243,15,89,69,216,243,15,88,193,139,69,240,243,15,17,0,139,69,240,139,0,137,69,224,131,69,240,4,131,69,244,4,255,69,228,139,69,228,59,69,232,124,193,141,69,224,139,0,37, 0,0,0,96,133,192,116,17,141,69,224,139,0,37,0,0,0,96,61,0,0,0,96,117,11,141,129,191,154,8,0,139,0,137,69,224,139,85,224,139,69,236,137,16,139,69,8,131,192,20,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,80,8,139,69,8,137,80, 28,139,69,8,139,64,32,137,68,36,4,139,69,8,137,4,36,232,10,254,255,255,139,69,12,139,0,139,16,139,69,8,139,72,44,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141, 131,20,255,255,255,137,4,36,232,132,244,0,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,236,252,255,255,141,131,179,23,8,0,137,4,36,232,42,222,5,0,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36, 12,52,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,218,210,5,0,137,194,141,131,216,166,8,0,139,0,137,16,141,131,216,166,8,0,139,0,139,0,199,68,36,4,48,0,0,0,137,4,36,232,140,219,5,0,141,131,56,24,8,0,137,4,36,232,194,221,5,0,137,194,141,139,117, 255,255,255,141,131,216,166,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,131,214,5,0,141,131,148,25,8,0,137,4,36,232,138,221,5,0,137,194,141,139,176,253,255,255,141,131,216,166,8,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68, 36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,67,214,5,0,141,131,136,152,8,0,137,4,36,232,74,221,5,0,137,194,141,139,122,254,255,255,141,131,216,166,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,11,214,5,0,131,196,32, 91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,133,165,8,0,139,0,139,0,137,4,36,232,47,18,6,0,137,69,244,141,131,97,24,8,0,137,4,36,232,232,220,5,0,137,198,141,131,83,110,8,0,137,4,36,232,216,220,5,0,139,85,244,139,77,244,137,116,36, 12,137,68,36,8,137,84,36,4,137,12,36,232,80,248,5,0,141,131,133,22,8,0,137,4,36,232,176,220,5,0,137,198,141,131,83,110,8,0,137,4,36,232,160,220,5,0,139,85,244,139,77,244,137,116,36,12,137,68,36,8,137,84,36,4,137,12,36,232,24,248,5,0,139,85,244,141,131, 85,165,8,0,139,0,137,68,36,4,137,20,36,232,115,4,6,0,139,85,244,141,131,45,153,8,0,139,0,137,66,28,139,85,244,131,194,40,139,69,244,137,80,60,139,85,244,141,131,45,152,8,0,139,0,137,66,40,139,85,244,141,131,45,152,8,0,139,0,137,66,44,139,69,12,137,68, 36,8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,237,0,0,0,139,85,244,141,131,45,152,8,0,139,0,137,66,64,139,69,244,131,196,32,91,94,201,195,85,137,229,131,236,40,232,0,0,0,0,89,243,15,16,69,8,141,129,34,152,8,0,15,46,0,15,130,161,0,0,0,243,15,16,69, 8,141,129,38,152,8,0,243,15,16,8,15,46,200,15,130,137,0,0,0,243,15,16,69,8,243,15,89,69,8,243,15,17,69,244,243,15,16,69,244,243,15,89,69,244,15,40,200,243,15,89,77,244,141,129,42,152,8,0,243,15,16,0,15,40,209,243,15,89,208,243,15,16,69,244,15,40,200, 243,15,89,77,244,141,129,46,152,8,0,243,15,16,0,243,15,89,193,243,15,88,194,243,15,90,208,243,15,90,77,244,141,129,78,152,8,0,242,15,16,0,242,15,89,193,102,15,40,202,242,15,88,200,141,129,62,151,8,0,242,15,16,0,242,15,88,193,242,15,90,192,243,15,17,69, 228,235,15,141,129,30,151,8,0,243,15,16,0,243,15,17,69,228,217,69,228,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,243,15,90,77,12,141,131,191,150,8,0,242,15,16,0,102,15,46,193,119,2,235,11,141,131,91,151,8,0,139,0,137,69,12,141,131,71,150,8,0, 243,15,16,0,15,46,69,16,119,2,235,11,141,131,71,150,8,0,139,0,137,69,16,139,85,8,139,69,12,137,66,32,139,85,8,139,69,16,137,66,36,243,15,16,77,12,141,131,95,151,8,0,243,15,16,0,243,15,89,200,139,69,8,243,15,16,64,28,15,40,209,243,15,94,208,15,40,194, 243,15,17,69,236,243,15,90,77,16,141,131,191,150,8,0,242,15,16,0,102,15,46,193,119,2,235,13,141,131,75,150,8,0,139,0,137,69,240,235,15,243,15,16,69,236,243,15,94,69,16,243,15,17,69,240,141,131,75,150,8,0,243,15,16,8,243,15,16,69,240,15,46,193,119,2,235, 11,141,131,75,150,8,0,139,0,137,69,240,141,131,75,150,8,0,243,15,16,0,243,15,92,69,240,243,15,17,69,244,139,69,8,139,112,60,139,69,236,137,4,36,232,41,254,255,255,217,93,228,243,15,16,69,228,243,15,88,192,243,15,89,69,244,243,15,17,70,8,139,69,8,139, 80,60,141,131,135,151,8,0,15,40,0,243,15,16,77,244,15,87,193,243,15,89,69,244,243,15,17,66,12,139,69,8,139,64,60,243,15,16,69,240,15,40,200,243,15,88,200,243,15,16,69,244,243,15,89,69,236,243,15,88,69,240,243,15,89,193,243,15,17,64,16,131,196,48,91,94, 201,195,85,137,229,131,236,24,139,69,8,139,64,36,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,116,254,255,255,201,195,85,137,229,131,236,24,139,69,8,139,80,32,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,80,254,255,255,201,195,85, 137,229,83,131,236,4,232,0,0,0,0,91,139,69,8,139,72,60,139,69,8,139,80,60,141,131,150,148,8,0,139,0,137,66,4,139,66,4,137,1,131,196,4,91,201,195,85,137,229,131,236,56,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69, 240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,236,139,0,137,69,224,139,69,236,139,64,4,137,69,220,139,69,236,139,64,8,137,69,216,139,69,236,139,64,12,137,69,212,139,69,236,139,64,16,137,69,208,199,69,228,0,0,0,0, 235,80,139,69,244,243,15,16,8,243,15,16,69,224,243,15,89,69,216,243,15,88,200,243,15,16,69,220,243,15,89,69,212,243,15,88,193,243,15,17,69,204,131,69,244,4,243,15,16,69,208,243,15,89,69,204,139,69,240,243,15,17,0,131,69,240,4,139,69,224,137,69,220,139, 69,204,137,69,224,255,69,228,139,69,228,59,69,232,124,168,141,69,224,139,0,37,0,0,0,96,133,192,116,17,141,69,224,139,0,37,0,0,0,96,61,0,0,0,96,117,11,141,129,104,148,8,0,139,0,137,69,224,141,69,220,139,0,37,0,0,0,96,133,192,116,17,141,69,220,139,0,37, 0,0,0,96,61,0,0,0,96,117,11,141,129,104,148,8,0,139,0,137,69,220,139,85,224,139,69,236,137,16,139,85,220,139,69,236,137,80,4,139,69,8,131,192,20,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,80,8,139,69,8,137,80,28,139,69,8,139, 80,36,139,69,8,139,64,32,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,178,252,255,255,139,69,12,139,0,139,16,139,69,8,139,72,60,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36, 4,4,0,0,0,141,131,193,254,255,255,137,4,36,232,208,237,0,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,114,250,255,255,141,131,8,17,8,0,137,4,36,232,118,215,5,0,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6, 0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,68,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,30,204,5,0,137,194,141,131,4,160,8,0,139,0,137,16,141,131,4,160,8,0,139,0,139,0,199,68,36,4,64,0,0,0,137,4,36,232,208,212,5,0,141,131,132,17,8,0,137,4,36,232, 6,215,5,0,137,194,141,139,107,255,255,255,141,131,4,160,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,199,207,5,0,141,131,224,18,8,0,137,4,36,232,206,214,5,0,137,194,141,139,194,253,255,255,141,131,4,160,8,0,139,0,139,0,199, 68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,135,207,5,0,141,131,4,17,8,0,137,4,36,232,142,214,5,0,137,194,141,139,230,253,255,255,141,131,4,160,8,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76, 36,4,137,4,36,232,71,207,5,0,141,131,212,145,8,0,137,4,36,232,78,214,5,0,137,194,141,139,10,254,255,255,141,131,4,160,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,15,207,5,0,131,196,32,91,94,201,195,85,137,229,83,131,236, 36,232,0,0,0,0,91,141,131,166,158,8,0,139,0,139,0,137,4,36,232,52,11,6,0,137,69,244,139,85,244,141,131,90,158,8,0,139,0,137,68,36,4,137,20,36,232,232,253,5,0,139,85,244,131,194,32,139,69,244,137,80,60,139,85,244,141,131,50,145,8,0,139,0,137,66,36,139, 69,244,139,80,36,139,69,244,137,80,32,139,69,16,137,68,36,12,139,69,12,137,68,36,8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,87,1,0,0,139,85,244,141,131,50,145,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,131,236,72,232,0,0,0,0, 89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,236,139,0,137,69,224,139,69,236,139,64,4,137,69,220,139,69,236,139,64,8,137,69,216,139,69,236, 139,64,12,137,69,212,139,69,236,139,64,16,137,69,208,139,69,236,139,64,20,137,69,204,139,69,236,139,64,24,137,69,200,199,69,228,0,0,0,0,233,153,0,0,0,139,69,244,243,15,16,8,243,15,16,69,216,243,15,89,69,224,243,15,88,200,243,15,16,69,212,243,15,89,69, 220,243,15,88,193,243,15,17,69,196,131,69,244,4,141,69,196,139,0,37,0,0,0,96,133,192,116,17,141,69,196,139,0,37,0,0,0,96,61,0,0,0,96,117,11,141,129,157,144,8,0,139,0,137,69,196,243,15,16,69,196,15,40,200,243,15,89,77,208,243,15,16,69,204,243,15,89,69, 224,243,15,88,200,243,15,16,69,200,243,15,89,69,220,243,15,88,193,139,69,240,243,15,17,0,131,69,240,4,139,69,224,137,69,220,139,69,196,137,69,224,255,69,228,139,69,228,59,69,232,15,140,91,255,255,255,139,85,236,139,69,224,137,2,139,85,236,139,69,220, 137,66,4,139,69,8,131,192,20,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,82,86,5,0,217,93,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,53,86,5,0,217,93,240,139, 69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,24,86,5,0,217,93,236,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,251,85,5,0,217,93,232,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,222,85,5,0,217,93, 228,243,15,16,69,244,15,40,208,243,15,89,85,244,243,15,16,77,240,141,131,120,144,8,0,243,15,16,0,243,15,89,193,243,15,88,194,243,15,17,69,224,139,69,8,139,64,60,137,69,220,141,131,92,143,8,0,243,15,16,0,15,46,69,224,119,2,235,22,243,15,16,69,240,141, 131,124,144,8,0,15,46,0,15,131,159,0,0,0,235,122,243,15,16,69,244,141,131,188,143,8,0,243,15,16,8,15,46,200,115,2,235,100,243,15,16,69,244,141,131,240,143,8,0,15,46,0,115,2,235,82,141,131,96,143,8,0,243,15,16,0,243,15,92,69,244,15,40,200,243,15,92,77, 240,141,131,92,143,8,0,243,15,16,0,15,46,200,115,2,235,42,243,15,16,77,244,141,131,96,143,8,0,243,15,16,0,243,15,88,193,15,40,200,243,15,92,77,240,141,131,92,143,8,0,243,15,16,0,15,46,200,115,35,141,131,92,143,8,0,139,0,137,69,228,139,69,228,137,69,232, 139,69,232,137,69,236,139,69,236,137,69,240,139,69,240,137,69,244,139,85,220,139,69,244,137,66,8,139,85,220,139,69,240,137,66,12,139,85,220,139,69,236,137,66,16,139,85,220,139,69,232,137,66,20,139,85,220,139,69,228,137,66,24,131,196,52,91,201,195,85, 137,229,131,236,40,139,69,8,139,64,60,137,69,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,136,84,5,0,139,69,244,217,24,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,105,84,5,0,139,69,244,217,88,4,201,195,85, 137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,16,139,69,8,139,72,60,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,155,252,255,255,137,4,36,232, 12,232,0,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,170,251,255,255,141,131,72,11,8,0,137,4,36,232,178,209,5,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,64,0,0,0,199,68,36,8,0,0,0, 0,137,116,36,4,137,4,36,232,98,198,5,0,137,194,141,131,92,154,8,0,139,0,137,16,141,131,92,154,8,0,139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,20,207,5,0,141,131,192,11,8,0,137,4,36,232,74,209,5,0,137,194,141,139,152,255,255,255,141,131,92,154,8,0,139, 0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,11,202,5,0,141,147,128,253,255,255,141,131,92,154,8,0,139,0,139,0,137,84,36,4,137,4,36,232,195,205,5,0,141,131,16,12,8,0,137,4,36,232,246,208,5,0,137,194,141,139,72,255,255,255,141,131, 92,154,8,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,175,201,5,0,141,131,16,140,8,0,137,4,36,232,182,208,5,0,137,194,141,139,72,255,255,255,141,131,92,154,8,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36, 12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,111,201,5,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,14,153,8,0,139,0,139,0,137,4,36,232,148,5,6,0,137,69,244,139,85,244,139,77,244,141,131,186,152,8,0,139,0,137,68,36,12, 141,131,186,152,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,195,235,5,0,139,85,244,141,131,186,152,8,0,139,0,137,68,36,4,137,20,36,232,30,248,5,0,139,85,244,141,131,146,139,8,0,139,0,137,66,32,139,85,244,141,131,146,139,8,0,139,0,137,66,36,139,85, 244,141,131,146,139,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,131,236,56,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,8, 131,192,20,139,0,137,69,228,139,69,232,139,64,32,137,69,220,139,69,232,139,64,36,137,69,216,199,69,224,0,0,0,0,235,62,139,69,240,139,0,137,69,212,131,69,240,4,243,15,16,77,212,243,15,16,69,220,15,46,193,119,2,235,8,139,69,244,139,0,137,69,216,139,69, 236,139,85,216,137,16,131,69,236,4,139,69,212,137,69,220,255,69,224,131,69,244,4,139,69,224,59,69,228,124,186,139,85,232,139,69,220,137,66,32,139,85,232,139,69,216,137,66,36,139,69,8,131,192,24,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,139, 69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72,4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,120,4,137,84,36,24,139,69,8,137,68,36,20,137,76,36,16,137,116,36,12,137,124,36,8,199,68,36,4,5,0,0,0,141,131,58,255,255,255,137,4,36,232,255, 228,0,0,131,196,44,91,94,95,201,195,85,137,229,131,236,24,232,0,0,0,0,89,131,125,16,0,126,25,139,69,20,139,0,131,248,1,117,15,139,69,20,243,15,16,64,4,243,15,17,69,244,235,15,141,129,0,139,8,0,243,15,16,0,243,15,17,69,244,139,69,8,243,15,16,69,244,243, 15,17,64,32,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,36,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,233,7,8,0,137,4,36,232,81,206,5,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,199,68,36,8,0,0,0, 0,141,131,227,253,255,255,137,68,36,4,137,20,36,232,1,195,5,0,137,194,141,131,253,150,8,0,139,0,137,16,141,131,253,150,8,0,139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,179,203,5,0,141,131,169,8,8,0,137,4,36,232,233,205,5,0,137,194,141,139,227,255,255, 255,141,131,253,150,8,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,162,198,5,0,141,131,243,7,8,0,137,4,36,232,169,205,5,0,137,194,141,139,154,255,255,255,141,131,253,150,8,0,139,0,139,0,199,68,36,16,0,0, 0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,98,198,5,0,141,131,89,8,8,0,137,4,36,232,105,205,5,0,137,194,141,139,49,255,255,255,141,131,253,150,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,42,198,5,0,131, 196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,174,149,8,0,139,0,139,0,137,4,36,232,80,2,6,0,137,69,244,139,85,244,139,77,244,141,131,118,149,8,0,139,0,137,68,36,12,141,131,118,149,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,127, 232,5,0,137,194,139,69,8,137,68,36,4,137,20,36,232,79,10,6,0,139,85,244,141,131,118,149,8,0,139,0,137,68,36,4,137,20,36,232,201,244,5,0,139,85,244,141,131,78,136,8,0,139,0,137,66,32,139,69,244,131,196,36,91,201,195,85,137,229,131,236,56,232,0,0,0,0,89, 139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,8,131,192,20,139,0,137,69,228,139,69,232,139,64,32,137,69,220,199,69,224,0,0,0,0,235,59,139,69,244, 139,0,137,69,216,131,69,244,4,139,69,240,139,0,137,69,212,131,69,240,4,243,15,16,69,220,243,15,89,69,212,243,15,88,69,216,243,15,17,69,220,139,85,220,139,69,236,137,16,131,69,236,4,255,69,224,139,69,224,59,69,228,124,189,141,69,220,139,0,37,0,0,0,96, 133,192,116,17,141,69,220,139,0,37,0,0,0,96,61,0,0,0,96,117,11,141,129,196,135,8,0,139,0,137,69,220,139,85,220,139,69,232,137,80,32,139,69,8,131,192,24,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,139,69,12,139,0,139,16,139,69,12,131,192,8,139, 0,139,72,4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,120,4,137,84,36,24,139,69,8,137,68,36,20,137,76,36,16,137,116,36,12,137,124,36,8,199,68,36,4,5,0,0,0,141,131,31,255,255,255,137,4,36,232,171,225,0,0,131,196,44,91,94,95,201,195,85,137, 229,131,236,8,232,0,0,0,0,89,139,69,8,141,145,136,134,8,0,139,18,137,80,32,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,32,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,255,253,255,255,141,131,209,4,8,0,137,4,36,232,35,203,5,0, 199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,211,191,5,0,137,194,141,131,185,147,8,0,139,0,137,16,141,131,185,147,8,0,139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232, 133,200,5,0,141,131,129,5,8,0,137,4,36,232,187,202,5,0,137,194,141,139,226,255,255,255,141,131,185,147,8,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,116,195,5,0,141,131,129,133,8,0,137,4,36,232,123,202, 5,0,137,194,141,139,198,255,255,255,141,131,185,147,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,60,195,5,0,141,131,49,5,8,0,137,4,36,232,67,202,5,0,137,194,141,139,93,255,255,255,141,131,185,147,8,0,139,0,139,0,199,68,36, 12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,4,195,5,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,131,146,8,0,139,0,139,0,137,4,36,232,41,255,5,0,137,69,244,139,85,244,139,77,244,141,131,79,146,8,0,139,0,137,68,36,12, 141,131,79,146,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,88,229,5,0,137,194,139,69,8,137,68,36,4,137,20,36,232,40,7,6,0,139,85,244,141,131,79,146,8,0,139,0,137,68,36,4,137,20,36,232,162,241,5,0,139,85,244,141,131,39,133,8,0,139,0,137,66,32,139, 69,244,131,196,36,91,201,195,85,137,229,131,236,56,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,8,131,192,20,139,0,137,69,228,139,69,232,139,64, 32,137,69,220,199,69,224,0,0,0,0,235,66,139,69,244,139,0,137,69,216,131,69,244,4,139,69,240,139,0,137,69,212,131,69,240,4,243,15,16,69,212,15,40,200,243,15,89,77,220,243,15,16,69,216,243,15,92,193,139,69,236,243,15,17,0,131,69,236,4,139,69,216,137,69, 220,255,69,224,139,69,224,59,69,228,124,182,139,85,232,139,69,220,137,66,32,139,69,8,131,192,24,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72,4,139,69,12,131,192,4,139,0,139,112,4,139,69, 12,139,0,139,120,4,137,84,36,24,139,69,8,137,68,36,20,137,76,36,16,137,116,36,12,137,124,36,8,199,68,36,4,5,0,0,0,141,131,72,255,255,255,137,4,36,232,173,222,0,0,131,196,44,91,94,95,201,195,85,137,229,131,236,8,232,0,0,0,0,89,139,69,8,141,145,138,131, 8,0,139,18,137,80,32,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,32,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,40,254,255,255,141,131,218,1,8,0,137,4,36,232,37,200,5,0,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16, 0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,213,188,5,0,137,194,141,131,183,144,8,0,139,0,137,16,141,131,183,144,8,0,139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,135,197,5,0,141,131,131,2,8,0,137,4,36,232,189,199,5,0, 137,194,141,139,226,255,255,255,141,131,183,144,8,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,118,192,5,0,141,131,131,130,8,0,137,4,36,232,125,199,5,0,137,194,141,139,198,255,255,255,141,131,183,144,8, 0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,62,192,5,0,141,131,51,2,8,0,137,4,36,232,69,199,5,0,137,194,141,139,93,255,255,255,141,131,183,144,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,6,192, 5,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,149,143,8,0,139,0,139,0,137,4,36,232,43,252,5,0,137,69,244,139,85,244,139,77,244,141,131,81,143,8,0,139,0,137,68,36,12,141,131,81,143,8,0,139,0,137,68,36,8,137,84,36,4,137,12, 36,232,90,226,5,0,137,194,139,69,8,137,68,36,4,137,20,36,232,42,4,6,0,139,85,244,141,131,81,143,8,0,139,0,137,68,36,4,137,20,36,232,164,238,5,0,139,85,244,141,131,41,130,8,0,139,0,137,66,32,139,69,244,131,196,36,91,201,195,85,137,229,131,236,56,139,69, 8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,8,131,192,20,139,0,137,69,228,139,69,232,139,64,32,137,69,220,199,69,224,0,0,0,0,235,66,139,69,244,139,0, 137,69,216,131,69,244,4,139,69,240,139,0,137,69,212,131,69,240,4,243,15,16,69,212,15,40,200,243,15,89,77,216,243,15,16,69,220,243,15,92,193,139,69,236,243,15,17,0,131,69,236,4,139,69,216,137,69,220,255,69,224,139,69,224,59,69,228,124,182,139,85,232,139, 69,220,137,66,32,139,69,8,131,192,24,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72,4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,120,4,137,84,36,24,139,69,8,137,68,36,20,137, 76,36,16,137,116,36,12,137,124,36,8,199,68,36,4,5,0,0,0,141,131,72,255,255,255,137,4,36,232,175,219,0,0,131,196,44,91,94,95,201,195,85,137,229,131,236,8,232,0,0,0,0,89,139,69,8,141,145,140,128,8,0,139,18,137,80,32,201,195,85,137,229,131,236,8,139,85, 8,139,69,12,137,66,32,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,40,254,255,255,141,131,227,254,7,0,137,4,36,232,39,197,5,0,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116, 36,4,137,4,36,232,215,185,5,0,137,194,141,131,201,141,8,0,139,0,137,16,141,131,201,141,8,0,139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,137,194,5,0,141,131,133,255,7,0,137,4,36,232,191,196,5,0,137,194,141,139,226,255,255,255,141,131,201,141,8,0,139, 0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,120,189,5,0,141,131,133,127,8,0,137,4,36,232,127,196,5,0,137,194,141,139,198,255,255,255,141,131,201,141,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36, 4,137,4,36,232,64,189,5,0,141,131,53,255,7,0,137,4,36,232,71,196,5,0,137,194,141,139,93,255,255,255,141,131,201,141,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,8,189,5,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36, 232,0,0,0,0,91,141,131,147,140,8,0,139,0,139,0,137,4,36,232,45,249,5,0,137,69,244,139,85,244,139,77,244,141,131,83,140,8,0,139,0,137,68,36,12,141,131,83,140,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,92,223,5,0,139,85,244,139,77,244,141,131,83,140, 8,0,139,0,137,68,36,12,141,131,83,140,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,50,223,5,0,137,194,139,69,8,137,68,36,4,137,20,36,232,2,1,6,0,139,85,244,139,77,244,141,131,83,140,8,0,139,0,137,68,36,12,141,131,83,140,8,0,139,0,137,68,36,8,137,84, 36,4,137,12,36,232,247,222,5,0,137,194,139,69,12,137,68,36,4,137,20,36,232,199,0,6,0,139,85,244,141,131,83,140,8,0,139,0,137,68,36,4,137,20,36,232,65,235,5,0,139,85,244,141,131,83,140,8,0,139,0,137,68,36,4,137,20,36,232,42,235,5,0,139,85,244,141,131, 43,127,8,0,139,0,137,66,36,139,69,244,139,80,36,139,69,244,137,80,32,139,85,244,141,131,43,127,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,131,236,72,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137, 69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,8,131,192,20,139,0,137,69,228,139,69,8,131,192,24,139,0,137,69,224,139,69,8,131,192,28,139,0,137,69,220,139,69,8,131,192,32,139,0,137,69,216,139,69,220,139,64,32, 137,69,208,139,69,220,139,64,36,137,69,204,199,69,212,0,0,0,0,233,165,0,0,0,139,69,244,139,0,137,69,200,131,69,244,4,139,69,240,139,0,137,69,196,131,69,240,4,139,69,236,139,0,137,69,192,131,69,236,4,139,69,232,139,0,137,69,188,131,69,232,4,243,15,16, 69,208,243,15,89,69,192,15,40,200,243,15,88,77,200,243,15,16,69,204,243,15,89,69,188,15,40,209,243,15,92,208,15,40,194,139,69,228,243,15,17,0,139,69,228,139,0,137,69,184,131,69,228,4,243,15,16,69,208,243,15,89,69,188,15,40,200,243,15,88,77,196,243,15, 16,69,204,243,15,89,69,192,243,15,88,193,139,69,224,243,15,17,0,139,69,224,139,0,137,69,204,131,69,224,4,139,69,184,137,69,208,255,69,212,139,69,212,59,69,216,15,140,79,255,255,255,141,69,208,139,0,37,0,0,0,96,133,192,116,17,141,69,208,139,0,37,0,0,0, 96,61,0,0,0,96,117,11,141,129,11,126,8,0,139,0,137,69,208,141,69,204,139,0,37,0,0,0,96,133,192,116,17,141,69,204,139,0,37,0,0,0,96,61,0,0,0,96,117,11,141,129,11,126,8,0,139,0,137,69,204,139,85,208,139,69,220,137,80,32,139,85,204,139,69,220,137,80,36, 139,69,8,131,192,36,201,195,85,137,229,87,86,83,131,236,76,232,0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,131,192,20,139,0,139,112,4,139,69,12,131,192,16,139,0,139,120,4,139,69,12,131,192,12,139,0,139,64,4,137,69,220,139,69,12,131,192,8,139,0,139,64, 4,137,69,224,139,69,12,131,192,4,139,0,139,64,4,137,69,228,139,69,12,139,0,139,80,4,137,76,36,36,139,69,8,137,68,36,32,137,116,36,28,137,124,36,24,139,69,220,137,68,36,20,139,69,224,137,68,36,16,139,69,228,137,68,36,12,137,84,36,8,199,68,36,4,8,0,0,0, 141,131,81,254,255,255,137,4,36,232,229,214,0,0,131,196,76,91,94,95,201,195,85,137,229,131,236,8,232,0,0,0,0,89,139,85,8,141,129,194,123,8,0,139,0,137,66,36,139,69,8,139,80,36,139,69,8,137,80,32,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66, 32,139,85,8,139,69,16,137,66,36,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,71,252,255,255,141,131,15,250,7,0,137,4,36,232,72,192,5,0,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0, 0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,240,180,5,0,137,194,141,131,230,136,8,0,139,0,137,16,141,131,230,136,8,0,139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,162,189,5,0,141,131,166,250,7,0,137,4,36,232,216,191,5,0,137,194,141,139,217,255, 255,255,141,131,230,136,8,0,139,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,6,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,137,184,5,0,141,131,166,122,8,0,137,4,36,232,144,191,5,0,137,194,141,139,177,255,255,255,141,131,230,136,8,0,139, 0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,81,184,5,0,141,131,86,250,7,0,137,4,36,232,88,191,5,0,137,194,141,139,9,255,255,255,141,131,230,136,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,25,184,5,0, 131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,160,135,8,0,139,0,139,0,137,4,36,232,62,244,5,0,137,69,244,139,85,244,139,77,244,141,131,100,135,8,0,139,0,137,68,36,12,141,131,100,135,8,0,139,0,137,68,36,8,137,84,36,4,137,12, 36,232,109,218,5,0,139,85,244,139,77,244,141,131,100,135,8,0,139,0,137,68,36,12,141,131,100,135,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,67,218,5,0,137,194,139,69,8,137,68,36,4,137,20,36,232,19,252,5,0,139,85,244,139,77,244,141,131,100,135,8,0, 139,0,137,68,36,12,141,131,100,135,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,8,218,5,0,137,194,139,69,12,137,68,36,4,137,20,36,232,216,251,5,0,139,85,244,141,131,100,135,8,0,139,0,137,68,36,4,137,20,36,232,82,230,5,0,139,85,244,141,131,100,135, 8,0,139,0,137,68,36,4,137,20,36,232,59,230,5,0,139,85,244,141,131,60,122,8,0,139,0,137,66,36,139,69,244,139,80,36,139,69,244,137,80,32,139,85,244,141,131,60,122,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,131,236,72,139,69,8,131,192, 4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,8,131,192,20,139,0,137,69,228,139,69,8,131,192,24,139,0,137,69,224,139,69,8,131,192,28,139,0,137,69,220,139,69,8,131, 192,32,139,0,137,69,216,139,69,220,139,64,32,137,69,208,139,69,220,139,64,36,137,69,204,199,69,212,0,0,0,0,233,175,0,0,0,139,69,244,139,0,137,69,200,131,69,244,4,139,69,240,139,0,137,69,196,131,69,240,4,139,69,236,139,0,137,69,192,131,69,236,4,139,69, 232,139,0,137,69,188,131,69,232,4,243,15,16,69,208,15,40,200,243,15,89,77,192,243,15,16,69,200,15,40,208,243,15,92,209,15,40,202,243,15,16,69,204,243,15,89,69,188,243,15,88,193,139,69,228,243,15,17,0,131,69,228,4,243,15,16,69,208,15,40,200,243,15,89, 77,188,243,15,16,69,196,15,40,208,243,15,92,209,15,40,202,243,15,16,69,204,243,15,89,69,192,15,40,209,243,15,92,208,15,40,194,139,69,224,243,15,17,0,131,69,224,4,139,69,200,137,69,208,139,69,196,137,69,204,255,69,212,139,69,212,59,69,216,15,140,69,255, 255,255,139,85,220,139,69,208,137,66,32,139,85,220,139,69,204,137,66,36,139,69,8,131,192,36,201,195,85,137,229,87,86,83,131,236,76,232,0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,131,192,20,139,0,139,112,4,139,69,12,131,192,16,139,0,139,120,4,139,69,12, 131,192,12,139,0,139,64,4,137,69,220,139,69,12,131,192,8,139,0,139,64,4,137,69,224,139,69,12,131,192,4,139,0,139,64,4,137,69,228,139,69,12,139,0,139,80,4,137,76,36,36,139,69,8,137,68,36,32,137,116,36,28,137,124,36,24,139,69,220,137,68,36,20,139,69,224, 137,68,36,16,139,69,228,137,68,36,12,137,84,36,8,199,68,36,4,8,0,0,0,141,131,161,254,255,255,137,4,36,232,70,210,0,0,131,196,76,91,94,95,201,195,85,137,229,131,236,8,232,0,0,0,0,89,139,85,8,141,129,35,119,8,0,139,0,137,66,36,139,69,8,139,80,36,139,69, 8,137,80,32,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,32,139,85,8,139,69,16,137,66,36,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,151,252,255,255,141,131,119,245,7,0,137,4,36,232,169,187,5,0,199,68,36,28,0,0,0,0,199,68,36, 24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,81,176,5,0,137,194,141,131,67,132,8,0,139,0,137,16,141,131,67,132,8,0,139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,3,185,5,0,141, 131,7,246,7,0,137,4,36,232,57,187,5,0,137,194,141,139,217,255,255,255,141,131,67,132,8,0,139,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,6,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,234,179,5,0,141,131,7,118,8,0,137,4,36,232,241,186, 5,0,137,194,141,139,177,255,255,255,141,131,67,132,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,178,179,5,0,141,131,183,245,7,0,137,4,36,232,185,186,5,0,137,194,141,139,9,255,255,255,141,131,67,132,8,0,139,0,139,0,199,68, 36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,122,179,5,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,241,130,8,0,139,0,139,0,137,4,36,232,159,239,5,0,137,69,244,139,85,244,139,77,244,141,131,197,130,8,0,139,0,137,68, 36,12,141,131,197,130,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,206,213,5,0,139,85,244,139,77,244,141,131,197,130,8,0,139,0,137,68,36,12,141,131,197,130,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,164,213,5,0,137,194,139,69,8,137,68,36,4,137, 20,36,232,116,247,5,0,139,85,244,139,77,244,141,131,197,130,8,0,139,0,137,68,36,12,141,131,197,130,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,105,213,5,0,137,194,139,69,12,137,68,36,4,137,20,36,232,57,247,5,0,139,85,244,141,131,197,130,8,0,139,0, 137,68,36,4,137,20,36,232,179,225,5,0,139,85,244,141,131,197,130,8,0,139,0,137,68,36,4,137,20,36,232,156,225,5,0,139,85,244,141,131,157,117,8,0,139,0,137,66,36,139,69,244,139,80,36,139,69,244,137,80,32,139,85,244,141,131,157,117,8,0,139,0,137,66,28,139, 69,244,131,196,36,91,201,195,85,137,229,131,236,72,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,8,131,192,20,139,0,137,69,228,139,69,8,131,192, 24,139,0,137,69,224,139,69,8,131,192,28,139,0,137,69,220,139,69,8,131,192,32,139,0,137,69,216,139,69,220,139,64,32,137,69,208,139,69,220,139,64,36,137,69,204,199,69,212,0,0,0,0,233,175,0,0,0,139,69,244,139,0,137,69,200,131,69,244,4,139,69,240,139,0,137, 69,196,131,69,240,4,139,69,236,139,0,137,69,192,131,69,236,4,139,69,232,139,0,137,69,188,131,69,232,4,243,15,16,69,200,15,40,200,243,15,89,77,192,243,15,16,69,208,15,40,208,243,15,92,209,15,40,202,243,15,16,69,196,243,15,89,69,188,15,40,209,243,15,92, 208,15,40,194,139,69,228,243,15,17,0,131,69,228,4,243,15,16,69,200,15,40,200,243,15,89,77,188,243,15,16,69,204,15,40,208,243,15,92,209,15,40,202,243,15,16,69,196,243,15,89,69,192,243,15,88,193,139,69,224,243,15,17,0,131,69,224,4,139,69,200,137,69,208, 139,69,196,137,69,204,255,69,212,139,69,212,59,69,216,15,140,69,255,255,255,139,85,220,139,69,208,137,66,32,139,85,220,139,69,204,137,66,36,139,69,8,131,192,36,201,195,85,137,229,87,86,83,131,236,76,232,0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,131, 192,20,139,0,139,112,4,139,69,12,131,192,16,139,0,139,120,4,139,69,12,131,192,12,139,0,139,64,4,137,69,220,139,69,12,131,192,8,139,0,139,64,4,137,69,224,139,69,12,131,192,4,139,0,139,64,4,137,69,228,139,69,12,139,0,139,80,4,137,76,36,36,139,69,8,137, 68,36,32,137,116,36,28,137,124,36,24,139,69,220,137,68,36,20,139,69,224,137,68,36,16,139,69,228,137,68,36,12,137,84,36,8,199,68,36,4,8,0,0,0,141,131,161,254,255,255,137,4,36,232,167,205,0,0,131,196,76,91,94,95,201,195,85,137,229,131,236,8,232,0,0,0,0, 89,139,85,8,141,129,132,114,8,0,139,0,137,66,36,139,69,8,139,80,36,139,69,8,137,80,32,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,32,139,85,8,139,69,16,137,66,36,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,151,252,255,255,141, 131,223,240,7,0,137,4,36,232,10,183,5,0,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,178,171,5,0,137,194,141,131,148,127,8,0,139,0,137,16,141,131, 148,127,8,0,139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,100,180,5,0,141,131,104,241,7,0,137,4,36,232,154,182,5,0,137,194,141,139,217,255,255,255,141,131,148,127,8,0,139,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,6,0,0,0,199,68,36,12,6,0,0,0,137,84,36, 8,137,76,36,4,137,4,36,232,75,175,5,0,141,131,104,113,8,0,137,4,36,232,82,182,5,0,137,194,141,139,177,255,255,255,141,131,148,127,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,19,175,5,0,141,131,24,241,7,0,137,4,36,232,26, 182,5,0,137,194,141,139,9,255,255,255,141,131,148,127,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,219,174,5,0,131,196,32,91,94,201,195,85,137,229,131,236,8,232,88,211,255,255,232,141,215,255,255,232,60,222,255,255,232,251, 227,255,255,232,94,231,255,255,232,128,234,255,255,232,121,237,255,255,232,114,240,255,255,232,76,245,255,255,232,230,249,255,255,232,128,254,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,67,146,8,0,139,0,137,4,36,232,195,234,5,0,137, 69,244,139,85,244,139,69,8,137,68,36,4,137,20,36,232,47,238,5,0,139,85,244,139,69,8,137,66,28,139,69,244,199,64,32,64,0,0,0,199,4,36,0,1,0,0,232,229,206,5,0,137,194,139,69,244,137,80,36,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,85, 244,139,82,36,137,68,36,12,199,68,36,8,0,1,0,0,199,68,36,4,0,0,0,0,137,20,36,232,41,118,8,0,235,30,139,69,244,139,64,36,199,68,36,8,0,1,0,0,199,68,36,4,0,0,0,0,137,4,36,232,23,0,0,0,139,85,244,141,131,191,112,8,0,139,0,137,66,40,139,69,244,131,196,36, 91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,202,117,8,0,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0, 137,69,240,139,69,8,131,192,12,139,0,137,69,236,235,80,139,69,244,139,0,37,0,0,0,96,133,192,116,31,139,69,244,139,0,37,0,0,0,96,61,0,0,0,96,116,14,139,69,244,243,15,16,0,243,15,17,69,228,235,15,141,129,213,111,8,0,243,15,16,0,243,15,17,69,228,139,69, 240,243,15,16,69,228,243,15,17,0,131,69,240,4,131,69,244,4,255,77,236,131,125,236,255,117,167,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,80,32,139,69,12,139,0,139,0,57,194,117,57,139,69,12,139,0,139,8,139,69,8,139, 80,36,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,100,255,255,255,137,4,36,232,11,202,0,0,235,26,139,69,8,139,64,28,139,0,137,68,36,4,141,131,240,237,7,0,137,4,36,232,58,176,6,0,131,196,36,91,201,195,85, 137,229,131,236,24,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36,232,52,237,5,0,139,69,8,139,64,32,141,20,133,0,0,0,0,139,69,8,139,64,36,137,84,36,4,137,4,36,232,240,206,5,0,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,182,255,255, 255,141,187,196,253,255,255,141,131,94,237,7,0,137,4,36,232,83,179,5,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,7,168,5,0,137,194,141,131,19,144,8,0,137,16,141,131,100, 237,7,0,137,4,36,232,11,179,5,0,141,147,196,253,255,255,199,68,36,12,0,0,0,0,199,68,36,8,7,0,0,0,137,68,36,4,137,20,36,232,245,170,5,0,141,131,19,144,8,0,139,0,199,68,36,4,40,0,0,0,137,4,36,232,141,176,5,0,141,131,103,237,7,0,137,4,36,232,195,178,5,0, 137,194,141,139,63,255,255,255,141,131,19,144,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,134,171,5,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,48,143,8,0,139,0,137,4,36,232,172,231,5,0,137,69, 244,139,69,244,199,64,36,64,0,0,0,139,85,244,139,69,8,137,66,28,139,69,244,199,64,32,0,0,0,0,139,85,244,141,131,208,122,8,0,139,0,137,68,36,4,137,20,36,232,67,218,5,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,131, 192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,244,139,64,32,137,69,232,131,125,232,0,116,48,235,18,139,69,232,139,16,139,69,240,137,16,131,69,240,4,131,69,232,4,255,77,236,131,125,236,255,117,229, 235,26,139,69,240,141,145,76,109,8,0,139,18,137,16,131,69,240,4,255,77,236,131,125,236,255,117,230,139,69,8,131,192,16,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192, 12,139,0,137,69,236,139,69,244,139,64,32,137,69,232,131,125,232,0,15,132,35,1,0,0,233,134,0,0,0,139,69,232,139,16,139,69,240,137,16,139,85,240,131,194,4,139,69,232,131,192,4,139,0,137,2,139,85,240,131,194,8,139,69,232,131,192,8,139,0,137,2,139,85,240, 131,194,12,139,69,232,131,192,12,139,0,137,2,139,85,240,131,194,16,139,69,232,131,192,16,139,0,137,2,139,85,240,131,194,20,139,69,232,131,192,20,139,0,137,2,139,85,240,131,194,24,139,69,232,131,192,24,139,0,137,2,139,85,240,131,194,28,139,69,232,131, 192,28,139,0,137,2,131,109,236,8,131,69,232,32,131,69,240,32,131,125,236,0,15,133,112,255,255,255,233,147,0,0,0,139,85,240,141,129,207,108,8,0,139,0,137,2,139,85,240,131,194,4,141,129,207,108,8,0,139,0,137,2,139,85,240,131,194,8,141,129,207,108,8,0,139, 0,137,2,139,85,240,131,194,12,141,129,207,108,8,0,139,0,137,2,139,85,240,131,194,16,141,129,207,108,8,0,139,0,137,2,139,85,240,131,194,20,141,129,207,108,8,0,139,0,137,2,139,85,240,131,194,24,141,129,207,108,8,0,139,0,137,2,139,85,240,131,194,28,141, 129,207,108,8,0,139,0,137,2,131,109,236,8,131,69,232,32,131,69,240,32,131,125,236,0,15,133,109,255,255,255,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,221,140,8,0,139,8,139,85,8,139,69,12,137,66,28,139,69,8,139,64,28,137, 76,36,4,137,4,36,232,234,234,5,0,137,69,244,131,125,244,0,116,75,139,69,244,139,80,32,139,69,8,139,64,36,57,194,117,14,139,69,244,139,80,36,139,69,8,137,80,32,235,88,139,69,8,139,64,28,139,0,137,68,36,8,141,131,53,234,7,0,137,68,36,4,139,69,8,137,4,36, 232,116,173,6,0,139,69,8,199,64,32,0,0,0,0,235,43,139,69,8,139,64,28,139,0,137,68,36,8,141,131,87,234,7,0,137,68,36,4,139,69,8,137,4,36,232,71,173,6,0,139,69,8,199,64,32,0,0,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12, 139,0,139,16,139,69,8,139,64,36,57,194,116,38,139,69,8,139,64,28,139,0,137,68,36,8,141,131,128,233,7,0,137,68,36,4,139,69,8,137,4,36,232,248,172,6,0,233,141,0,0,0,139,69,8,139,64,28,137,68,36,4,139,69,8,137,4,36,232,242,254,255,255,139,69,12,139,0,139, 0,131,224,7,133,192,116,54,139,69,12,139,0,139,16,139,69,12,139,0,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,77,253,255,255,137,4,36,232,37,197,0,0,235,52,139,69,12,139,0,139,16,139,69,12,139,0,139,64,4,137,84, 36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,202,253,255,255,137,4,36,232,239,196,0,0,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,24,252,255,255,141,131,232,232,7,0,137,4,36,232,150,174,5,0,199,68,36, 24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,70,163,5,0,137,194,141,131,84,139,8,0,137,16,141,131,241,232,7,0,137,4,36,232,74,174,5,0,141,147,24,252,255,255,199,68,36,12,0,0, 0,0,199,68,36,8,7,0,0,0,137,68,36,4,137,20,36,232,52,166,5,0,141,131,244,232,7,0,137,4,36,232,26,174,5,0,137,194,141,139,103,254,255,255,141,131,84,139,8,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,213,166,5, 0,141,131,164,232,7,0,137,4,36,232,220,173,5,0,137,194,141,139,28,255,255,255,141,131,84,139,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,159,166,5,0,141,131,155,232,7,0,137,4,36,232,166,173,5,0,137,194,141,131,84,139,8,0,139,0, 137,84,36,4,137,4,36,232,178,170,5,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,42,138,8,0,139,0,137,4,36,232,162,226,5,0,137,69,244,139,85,244,139,69,8,137,68,36,4,137,20,36,232,14,230,5,0,139,85,244,139,69,8,137,66,28, 139,69,244,199,64,32,64,0,0,0,199,4,36,0,1,0,0,232,196,198,5,0,137,194,139,69,244,137,80,36,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,85,244,139,82,36,137,68,36,12,199,68,36,8,0,1,0,0,199,68,36,4,0,0,0,0,137,20,36,232,8,110,8,0,235, 30,139,69,244,139,64,36,199,68,36,8,0,1,0,0,199,68,36,4,0,0,0,0,137,4,36,232,246,247,255,255,139,85,244,141,131,198,117,8,0,139,0,137,68,36,4,137,20,36,232,204,212,5,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,131, 192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,235,31,139,69,244,139,16,139,69,240,137,16,131,69,240,4,139,85,244,141,129,213,103,8,0,139,0,137,2,131,69,244,4,255,77,236,131,125,236,255,117,216,139,69, 8,131,192,16,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,233,3,1,0,0,139,69,244,139,16,139,69,240,137,16,139,85,240,131,194,4,139,69,244,131, 192,4,139,0,137,2,139,85,240,131,194,8,139,69,244,131,192,8,139,0,137,2,139,85,240,131,194,12,139,69,244,131,192,12,139,0,137,2,139,85,240,131,194,16,139,69,244,131,192,16,139,0,137,2,139,85,240,131,194,20,139,69,244,131,192,20,139,0,137,2,139,85,240, 131,194,24,139,69,244,131,192,24,139,0,137,2,139,85,240,131,194,28,139,69,244,131,192,28,139,0,137,2,139,85,244,141,129,118,103,8,0,139,0,137,2,139,85,244,131,194,4,141,129,118,103,8,0,139,0,137,2,139,85,244,131,194,8,141,129,118,103,8,0,139,0,137,2, 139,85,244,131,194,12,141,129,118,103,8,0,139,0,137,2,139,85,244,131,194,16,141,129,118,103,8,0,139,0,137,2,139,85,244,131,194,20,141,129,118,103,8,0,139,0,137,2,139,85,244,131,194,24,141,129,118,103,8,0,139,0,137,2,139,85,244,131,194,28,141,129,118, 103,8,0,139,0,137,2,131,109,236,8,131,69,244,32,131,69,240,32,131,125,236,0,15,133,243,254,255,255,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,80,32,139,69,12,139,0,139,0,57,194,15,133,128,0,0,0,139,69,12,139,0,139, 0,131,224,7,133,192,116,57,139,69,12,139,0,139,8,139,69,12,139,0,139,80,4,139,69,8,139,64,36,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,78,254,255,255,137,4,36,232,227,192,0,0,235,83,139,69,12,139,0,139,8,139,69,12,139,0,139,80, 4,139,69,8,139,64,36,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,173,254,255,255,137,4,36,232,170,192,0,0,235,26,139,69,8,139,64,28,139,0,137,68,36,4,141,131,90,229,7,0,137,4,36,232,217,166,6,0,131,196,36,91,201,195,85,137,229,131, 236,24,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36,232,211,227,5,0,139,69,8,139,64,32,141,20,133,0,0,0,0,139,69,8,139,64,36,137,84,36,4,137,4,36,232,143,197,5,0,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,182,255,255,255,141,187, 132,252,255,255,141,131,126,228,7,0,137,4,36,232,242,169,5,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,40,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,166,158,5,0,137,194,141,131,186,134,8,0,137,16,141,131,6,228,7,0, 137,4,36,232,170,169,5,0,137,194,141,139,244,254,255,255,141,131,186,134,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,109,162,5,0,141,131,133,228,7,0,137,4,36,232,116,169,5,0,137,194,141,131,186,134,8,0,139,0,137,84,36,4,137,4, 36,232,128,166,5,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,251,133,8,0,139,0,137,4,36,232,111,222,5,0,137,69,244,139,85,244,139,69,8,137,66,28,139,69,244,199,64,32,0,0,0,0,139,69,244,199,64,36,64,0,0,0,139,85,244,141, 131,107,100,8,0,139,0,137,66,40,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,244,139,64,32,137,69,232,131,125, 232,0,116,108,235,97,139,69,232,243,15,16,0,243,15,17,69,224,139,69,240,139,0,37,0,0,0,96,133,192,116,31,139,69,240,139,0,37,0,0,0,96,61,0,0,0,96,116,14,139,69,240,243,15,16,0,243,15,17,69,228,235,15,141,129,24,100,8,0,243,15,16,0,243,15,17,69,228,243, 15,16,69,224,243,15,88,69,228,139,69,232,243,15,17,0,131,69,232,4,131,69,240,4,255,77,236,131,125,236,255,117,150,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,243,132,8,0,139,8,139,85,8,139,69,12,137,66,28,139,69,8,139, 64,28,137,76,36,4,137,4,36,232,248,226,5,0,137,69,244,131,125,244,0,116,75,139,69,244,139,80,32,139,69,8,139,64,36,57,194,117,14,139,69,244,139,80,36,139,69,8,137,80,32,235,88,139,69,8,139,64,28,139,0,137,68,36,8,141,131,199,226,7,0,137,68,36,4,139,69, 8,137,4,36,232,130,165,6,0,139,69,8,199,64,32,0,0,0,0,235,43,139,69,8,139,64,28,139,0,137,68,36,8,141,131,231,226,7,0,137,68,36,4,139,69,8,137,4,36,232,85,165,6,0,139,69,8,199,64,32,0,0,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91, 139,69,12,139,0,139,16,139,69,8,139,64,36,57,194,116,35,139,69,8,139,64,28,139,0,137,68,36,8,141,131,18,226,7,0,137,68,36,4,139,69,8,137,4,36,232,6,165,6,0,235,73,139,69,8,139,64,28,137,68,36,4,139,69,8,137,4,36,232,245,254,255,255,139,69,12,139,0,139, 16,139,69,12,139,0,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,143,254,255,255,137,4,36,232,68,189,0,0,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,170,253,255,255,141,131,120,225,7, 0,137,4,36,232,235,166,5,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,155,155,5,0,137,194,141,131,177,131,8,0,137,16,141,131,73,225,7,0,137,4,36,232,159,166,5,0,137, 194,141,139,174,254,255,255,141,131,177,131,8,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,90,159,5,0,141,131,177,131,8,0,139,0,199,68,36,4,40,0,0,0,137,4,36,232,19,164,5,0,141,131,249,224,7,0,137,4,36,232,73, 166,5,0,137,194,141,139,99,255,255,255,141,131,177,131,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,12,159,5,0,131,196,32,91,94,201,195,85,137,229,131,236,8,232,147,242,255,255,232,82,247,255,255,232,234,251,255,255,232,243,254, 255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,179,130,8,0,139,0,137,4,36,232,23,219,5,0,137,69,244,139,85,244,139,69,8,137,66,32,139,85,244,139,69,12,137,66,36,141,131,75,225,7,0,137,4,36,232,190,165,5,0,139,85,244,137,68,36,4,137,20, 36,232,179,205,5,0,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,196,200,5,0,139,69,244,131,192,36,139,85,244,137,68,36,4,137,20,36,232,175,200,5,0,139,85,244,141,131,19,97,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229, 131,236,40,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,235,78,139,69,240,139,0,137,69,228,131,69,240,4,139,69,244,243,15,16,64,32,15,46,69,228,119,2, 235,9,139,69,244,139,64,32,137,69,228,139,69,244,243,15,16,72,36,243,15,16,69,228,15,46,193,119,2,235,9,139,69,244,139,64,36,137,69,228,139,85,236,139,69,228,137,2,131,69,236,4,255,77,232,131,125,232,255,117,169,139,69,8,131,192,20,201,195,85,137,229, 83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,20,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,4,0,0,0,141,131,97,255,255,255,137,4,36,232,188,186,0,0,131,196,36, 91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,122,254,255,255,141,131,54,223,7,0,137,4,36,232,99,164,5,0,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,199,68,36,8,0,0,0,0,137, 116,36,4,137,4,36,232,11,153,5,0,137,194,141,131,57,129,8,0,137,16,141,131,57,129,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,193,161,5,0,141,131,113,222,7,0,137,4,36,232,247,163,5,0,137,194,141,139,157,255,255,255,141,131,57,129,8,0,139,0,199,68,36, 12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,186,156,5,0,131,196,32,91,94,201,195,85,137,229,131,236,40,232,0,0,0,0,89,199,69,244,0,0,0,0,235,116,131,125,244,0,116,37,129,125,244,255,0,0,0,116,13,139,69,244,137,194,193,226,23,137,85,228,235,7,199, 69,228,0,0,0,127,139,69,228,137,69,224,235,7,199,69,224,0,0,128,0,139,85,224,137,85,236,141,85,240,139,69,236,137,2,139,85,244,243,15,16,69,240,243,15,90,192,242,15,81,192,102,15,40,200,141,129,254,94,8,0,242,15,16,0,242,15,94,193,242,15,90,192,141,129, 158,128,8,0,243,15,17,4,144,255,69,244,129,125,244,255,0,0,0,126,131,199,69,244,0,0,0,0,235,90,242,15,42,77,244,141,129,70,96,8,0,242,15,16,0,242,15,89,200,141,129,254,94,8,0,242,15,16,0,242,15,88,193,242,15,90,192,243,15,17,69,232,139,85,244,243,15, 90,69,232,242,15,81,192,102,15,40,200,141,129,254,94,8,0,242,15,16,0,242,15,94,193,242,15,90,192,141,129,158,132,8,0,243,15,17,4,144,255,69,244,129,125,244,255,3,0,0,126,157,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,137,69,244,141,69,244, 139,0,137,69,240,243,15,16,77,244,141,129,222,93,8,0,243,15,16,0,15,46,193,119,2,235,17,141,129,222,93,8,0,243,15,16,0,243,15,17,69,228,235,57,139,69,240,193,248,23,15,182,208,141,129,158,127,8,0,243,15,16,12,144,139,69,240,193,248,13,137,194,129,226, 255,3,0,0,141,129,158,131,8,0,243,15,16,4,144,15,40,209,243,15,89,208,243,15,17,85,228,217,69,228,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,137,69,244,141,69,244,139,0,137,69,240,243,15,16,77,244,141,129,95,93,8,0,243,15,16,0,15,46,193,119, 2,235,17,141,129,95,93,8,0,243,15,16,0,243,15,17,69,228,235,66,139,69,240,193,248,23,15,182,208,141,129,31,127,8,0,243,15,16,12,144,243,15,16,69,244,243,15,89,200,139,69,240,193,248,13,137,194,129,226,255,3,0,0,141,129,31,131,8,0,243,15,16,4,144,15,40, 209,243,15,89,208,243,15,17,85,228,217,69,228,201,195,85,137,229,131,236,40,139,69,8,137,4,36,232,103,255,255,255,217,93,244,243,15,16,69,244,243,15,17,69,244,139,69,244,137,69,244,243,15,16,69,244,243,15,17,69,244,217,69,244,201,195,85,137,229,131,236, 40,139,69,8,137,4,36,232,181,254,255,255,217,93,244,243,15,16,69,244,243,15,17,69,244,139,69,244,137,69,244,243,15,16,69,244,243,15,17,69,244,217,69,244,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,48,146,8,0,139,0,137,4,36,232,116,214,5,0, 137,69,244,141,131,168,220,7,0,137,4,36,232,45,161,5,0,139,85,244,137,68,36,4,137,20,36,232,34,201,5,0,139,85,244,141,131,112,92,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69, 244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,233,202,0,0,0,139,69,244,139,0,137,69,232,139,69,244,139,0,137,69,228,131,69,244,4,141,129,29,92,8,0,243,15,16,0,15,46,69,232,119,2,235,22,139,69,240,141,145,29,92,8,0,139,18, 137,16,131,69,240,4,233,142,0,0,0,139,69,228,193,248,23,15,182,208,141,129,221,125,8,0,243,15,16,12,144,139,69,228,193,248,13,137,194,129,226,255,3,0,0,141,129,221,129,8,0,243,15,16,4,144,243,15,89,193,243,15,17,69,224,243,15,90,77,224,141,129,141,93, 8,0,242,15,16,0,102,15,40,209,242,15,89,208,243,15,90,77,224,141,129,77,93,8,0,242,15,16,0,242,15,89,200,243,15,90,69,224,242,15,89,200,243,15,90,69,224,242,15,89,200,243,15,90,69,232,242,15,89,193,242,15,88,194,242,15,90,192,139,69,240,243,15,17,0,131, 69,240,4,255,77,236,131,125,236,255,15,133,41,255,255,255,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199, 68,36,4,3,0,0,0,141,131,227,254,255,255,137,4,36,232,222,181,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,232,205,251,255,255,141,131,95,218,7,0,137,4,36,232,135,159,5,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36, 12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,64,254,255,255,137,68,36,4,137,20,36,232,55,148,5,0,137,194,141,131,124,144,8,0,137,16,141,131,102,218,7,0,137,4,36,232,59,159,5,0,199,68,36,8,0,0,0,0,137,68,36,4,141,131,64,254,255,255,137,4,36,232,45,151,5,0, 141,131,124,144,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,197,156,5,0,141,131,148,217,7,0,137,4,36,232,251,158,5,0,137,194,141,139,165,255,255,255,141,131,124,144,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,190,151,5,0,131,196, 36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,166,143,8,0,139,0,137,4,36,232,230,211,5,0,137,69,244,141,131,26,218,7,0,137,4,36,232,159,158,5,0,139,85,244,137,68,36,4,137,20,36,232,148,198,5,0,139,85,244,141,131,226,89,8,0,139,0,137,66, 28,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,233,211,0,0,0,139,69,244,139,0,137,69,232,139,69,244,139,0,137,69,228, 131,69,244,4,141,129,143,89,8,0,243,15,16,0,15,46,69,232,119,2,235,22,139,69,240,141,145,143,89,8,0,139,18,137,16,131,69,240,4,233,151,0,0,0,139,69,228,193,248,23,15,182,208,141,129,79,123,8,0,243,15,16,12,144,139,69,228,193,248,13,137,194,129,226,255, 3,0,0,141,129,79,127,8,0,243,15,16,4,144,243,15,89,193,243,15,17,69,224,243,15,90,85,232,243,15,90,77,224,141,129,255,90,8,0,242,15,16,0,102,15,40,217,242,15,89,216,243,15,90,77,224,141,129,191,90,8,0,242,15,16,0,242,15,89,200,243,15,90,69,224,242,15, 89,200,243,15,90,69,224,242,15,89,200,243,15,90,69,232,242,15,89,193,242,15,88,195,242,15,89,194,242,15,90,192,139,69,240,243,15,17,0,131,69,240,4,255,77,236,131,125,236,255,15,133,32,255,255,255,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232, 0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,218,254,255,255,137,4,36,232,71,179,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232, 0,0,0,0,91,141,131,217,215,7,0,137,4,36,232,245,156,5,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,55,254,255,255,137,68,36,4,137,20,36,232,165,145,5,0,137,194,141,131,233,141,8,0,137,16,141,131, 223,215,7,0,137,4,36,232,169,156,5,0,199,68,36,8,0,0,0,0,137,68,36,4,141,131,55,254,255,255,137,4,36,232,155,148,5,0,141,131,233,141,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,51,154,5,0,141,131,253,214,7,0,137,4,36,232,105,156,5,0,137,194,141,139,165, 255,255,255,141,131,233,141,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,44,149,5,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,224,100,8,0,139,0,139,0,137,4,36,232,82,209,5,0,137,69,244,141,131,136,215, 7,0,137,4,36,232,11,156,5,0,139,85,244,137,68,36,4,137,20,36,232,0,196,5,0,139,85,244,141,131,80,87,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0, 137,69,240,139,69,8,131,192,12,139,0,137,69,236,235,101,139,69,244,139,0,137,69,232,131,69,244,4,243,15,16,69,232,243,15,44,192,137,69,228,141,129,251,86,8,0,243,15,16,8,243,15,16,69,232,15,46,193,119,2,235,27,243,15,42,77,228,243,15,16,69,232,243,15, 92,193,139,69,240,243,15,17,0,131,69,240,4,235,28,139,69,228,72,243,15,42,200,243,15,16,69,232,243,15,92,193,139,69,240,243,15,17,0,131,69,240,4,255,77,236,131,125,236,255,117,146,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139, 69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,79,255,255,255,137,4,36,232,40,177,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131, 201,213,7,0,137,4,36,232,214,154,5,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,170,254,255,255,137,68,36,4,137,20,36,232,134,143,5,0,137,194,141,131,150,99,8,0,139,0,137,16,141,131,150,99,8,0, 139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,56,152,5,0,141,131,222,212,7,0,137,4,36,232,110,154,5,0,137,194,141,139,165,255,255,255,141,131,150,99,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,47,147,5,0,131,196,36,91,201, 195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,211,98,8,0,139,0,139,0,137,4,36,232,85,207,5,0,137,69,244,141,131,139,213,7,0,137,4,36,232,14,154,5,0,139,85,244,137,68,36,4,137,20,36,232,3,194,5,0,139,85,244,141,131,83,85,8,0,139,0,137,66,28,139, 69,244,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,233,140,0,0,0,139,69,244,139,0,137,69,232,243,15,16,77,232,141,131,77,86, 8,0,243,15,16,0,15,46,193,115,2,235,15,139,69,240,141,147,253,84,8,0,139,18,137,16,235,87,243,15,16,69,232,141,131,81,86,8,0,15,46,0,119,2,235,11,141,131,81,86,8,0,139,0,137,69,232,243,15,90,77,232,141,131,117,86,8,0,242,15,16,0,242,15,89,193,242,15, 17,4,36,232,5,91,8,0,221,93,224,141,131,125,86,8,0,242,15,16,0,242,15,89,69,224,242,15,90,192,139,69,240,243,15,17,0,131,69,244,4,131,69,240,4,255,77,236,131,125,236,255,15,133,103,255,255,255,139,69,8,131,192,16,131,196,52,91,201,195,85,137,229,83,131, 236,36,232,0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,28,255,255,255,137,4,36,232,248,174,0,0,131,196,36,91,201,195,85,137,229,83,131, 236,36,232,0,0,0,0,91,141,131,159,211,7,0,137,4,36,232,166,152,5,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,119,254,255,255,137,68,36,4,137,20,36,232,86,141,5,0,137,194,141,131,86,97,8,0,139, 0,137,16,141,131,86,97,8,0,139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,8,150,5,0,141,131,174,210,7,0,137,4,36,232,62,152,5,0,137,194,141,139,165,255,255,255,141,131,86,97,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,255, 144,5,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,183,96,8,0,139,0,139,0,137,4,36,232,37,205,5,0,137,69,244,141,131,91,211,7,0,137,4,36,232,222,151,5,0,139,85,244,137,68,36,4,137,20,36,232,211,191,5,0,139,85,244,141,131,35, 83,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,235,123,139,69,244,139,0,137,69,232,141,131,205, 82,8,0,243,15,16,8,243,15,16,69,232,15,46,193,119,2,235,58,243,15,90,77,232,141,131,85,84,8,0,242,15,16,0,242,15,89,193,242,15,17,4,36,232,136,89,8,0,221,93,224,141,131,93,84,8,0,242,15,16,0,242,15,89,69,224,242,15,90,192,243,15,17,69,220,235,15,141, 131,29,84,8,0,243,15,16,0,243,15,17,69,220,139,69,240,243,15,16,69,220,243,15,17,0,131,69,244,4,131,69,240,4,255,77,236,131,125,236,255,15,133,120,255,255,255,139,69,8,131,192,16,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12, 139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,48,255,255,255,137,4,36,232,220,172,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,137, 209,7,0,137,4,36,232,138,150,5,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,139,254,255,255,137,68,36,4,137,20,36,232,58,139,5,0,137,194,141,131,78,95,8,0,139,0,137,16,141,131,78,95,8,0,139,0,139, 0,199,68,36,4,28,0,0,0,137,4,36,232,236,147,5,0,141,131,146,208,7,0,137,4,36,232,34,150,5,0,137,194,141,139,165,255,255,255,141,131,78,95,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,227,142,5,0,131,196,36,91,201,195,85,137, 229,83,131,236,36,232,0,0,0,0,91,141,131,159,94,8,0,139,0,139,0,137,4,36,232,9,203,5,0,137,69,244,141,131,63,209,7,0,137,4,36,232,194,149,5,0,139,85,244,137,68,36,4,137,20,36,232,183,189,5,0,139,85,244,141,131,7,81,8,0,139,0,137,66,28,139,69,244,131, 196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,233,136,0,0,0,139,69,244,139,0,137,69,232,141,131,177,80,8,0,243,15,16,0,15,46,69,232, 115,2,235,15,139,69,240,141,147,177,80,8,0,139,18,137,16,235,87,243,15,16,69,232,141,131,9,82,8,0,15,46,0,119,2,235,11,141,131,9,82,8,0,139,0,137,69,232,243,15,90,77,232,141,131,73,82,8,0,242,15,16,0,242,15,92,200,141,131,81,82,8,0,242,15,16,0,242,15, 89,193,242,15,17,4,36,232,175,86,8,0,221,93,224,242,15,90,69,224,139,69,240,243,15,17,0,131,69,244,4,131,69,240,4,255,77,236,131,125,236,255,15,133,107,255,255,255,139,69,8,131,192,16,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139, 69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,32,255,255,255,137,4,36,232,176,170,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141, 131,99,207,7,0,137,4,36,232,94,148,5,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,123,254,255,255,137,68,36,4,137,20,36,232,14,137,5,0,137,194,141,131,38,93,8,0,139,0,137,16,141,131,38,93,8,0,139, 0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,192,145,5,0,141,131,102,206,7,0,137,4,36,232,246,147,5,0,137,194,141,139,165,255,255,255,141,131,38,93,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,183,140,5,0,131,196,36,91,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,95,92,8,0,139,0,139,0,137,4,36,232,221,200,5,0,137,69,244,141,131,19,207,7,0,137,4,36,232,150,147,5,0,139,85,244,137,68,36,4,137,20,36,232,139,187,5,0,139,85,244,141,131,219,78,8,0,139,0,137,66,28,139,69, 244,131,196,36,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,233,166,0,0,0,139,69,244,139,0,137,69,232,141,131,133,78,8,0,243,15,16,0,15, 46,69,232,115,2,235,15,139,69,240,141,147,133,78,8,0,139,18,137,16,235,117,243,15,90,69,232,242,15,17,4,36,232,64,85,8,0,221,93,200,141,131,45,80,8,0,242,15,16,0,242,15,16,77,200,242,15,89,200,141,131,29,80,8,0,242,15,16,0,242,15,88,193,242,15,90,192, 243,15,17,69,228,141,131,133,78,8,0,243,15,16,0,15,46,69,228,118,2,235,12,243,15,16,69,228,243,15,17,69,212,235,15,141,131,133,78,8,0,243,15,16,0,243,15,17,69,212,139,69,240,243,15,16,69,212,243,15,17,0,131,69,244,4,131,69,240,4,255,77,236,131,125,236, 255,15,133,77,255,255,255,139,69,8,131,192,16,131,196,68,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141, 131,2,255,255,255,137,4,36,232,102,168,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,34,205,7,0,137,4,36,232,20,146,5,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,93, 254,255,255,137,68,36,4,137,20,36,232,196,134,5,0,137,194,141,131,200,90,8,0,139,0,137,16,141,131,200,90,8,0,139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,118,143,5,0,141,131,28,204,7,0,137,4,36,232,172,145,5,0,137,194,141,139,165,255,255,255,141,131, 200,90,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,109,138,5,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,25,90,8,0,139,0,139,0,137,4,36,232,147,198,5,0,137,69,244,141,131,201,204,7,0,137,4,36, 232,76,145,5,0,139,85,244,137,68,36,4,137,20,36,232,65,185,5,0,139,85,244,141,131,145,76,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69, 240,139,69,8,131,192,12,139,0,137,69,236,233,136,0,0,0,139,69,244,139,0,137,69,232,141,131,59,76,8,0,243,15,16,0,15,46,69,232,115,2,235,15,139,69,240,141,147,59,76,8,0,139,18,137,16,235,87,243,15,16,69,232,141,131,151,77,8,0,15,46,0,119,2,235,11,141, 131,151,77,8,0,139,0,137,69,232,243,15,90,77,232,141,131,211,77,8,0,242,15,16,0,242,15,92,200,141,131,235,77,8,0,242,15,16,0,242,15,89,193,242,15,17,4,36,232,57,82,8,0,221,93,224,242,15,90,69,224,139,69,240,243,15,17,0,131,69,244,4,131,69,240,4,255,77, 236,131,125,236,255,15,133,107,255,255,255,139,69,8,131,192,16,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68, 36,4,3,0,0,0,141,131,32,255,255,255,137,4,36,232,58,166,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,255,202,7,0,137,4,36,232,232,143,5,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8, 0,0,0,0,141,131,123,254,255,255,137,68,36,4,137,20,36,232,152,132,5,0,137,194,141,131,160,88,8,0,139,0,137,16,141,131,160,88,8,0,139,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,74,141,5,0,141,131,240,201,7,0,137,4,36,232,128,143,5,0,137,194,141,139,165, 255,255,255,141,131,160,88,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,65,136,5,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,241,87,8,0,139,0,139,0,137,4,36,232,103,196,5,0,137,69,244,141,131,157, 202,7,0,137,4,36,232,32,143,5,0,139,85,244,137,68,36,4,137,20,36,232,21,183,5,0,139,85,244,141,131,101,74,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192, 8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,233,166,0,0,0,139,69,244,139,0,137,69,232,141,131,15,74,8,0,243,15,16,0,15,46,69,232,115,2,235,15,139,69,240,141,147,15,74,8,0,139,18,137,16,235,117,243,15,90,69,232,242,15,17,4,36,232,202,80,8, 0,221,93,200,141,131,199,75,8,0,242,15,16,0,242,15,16,77,200,242,15,89,200,141,131,167,75,8,0,242,15,16,0,242,15,88,193,242,15,90,192,243,15,17,69,228,141,131,15,74,8,0,243,15,16,0,15,46,69,228,118,2,235,12,243,15,16,69,228,243,15,17,69,212,235,15,141, 131,15,74,8,0,243,15,16,0,243,15,17,69,212,139,69,240,243,15,16,69,212,243,15,17,0,131,69,244,4,131,69,240,4,255,77,236,131,125,236,255,15,133,77,255,255,255,139,69,8,131,192,16,131,196,68,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12, 139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,2,255,255,255,137,4,36,232,240,163,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,190, 200,7,0,137,4,36,232,158,141,5,0,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,93,254,255,255,137,68,36,4,137,20,36,232,78,130,5,0,137,194,141,131,90,86,8,0,139,0,137,16,141,131,90,86,8,0,139,0,139, 0,199,68,36,4,28,0,0,0,137,4,36,232,0,139,5,0,141,131,166,199,7,0,137,4,36,232,54,141,5,0,137,194,141,139,165,255,255,255,141,131,90,86,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,247,133,5,0,131,196,36,91,201,195,85,137, 229,83,131,236,36,232,0,0,0,0,91,141,131,227,125,8,0,139,0,137,4,36,232,31,194,5,0,137,69,244,139,85,244,139,77,244,141,131,67,85,8,0,139,0,137,68,36,12,141,131,67,85,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,78,168,5,0,139,85,244,141,131,67,85, 8,0,139,0,137,68,36,4,137,20,36,232,169,180,5,0,139,85,244,141,131,27,72,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131, 192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,235,108,139,69,244,139,0,137,69,228,131,69,244,4,141,131,163,71,8,0,243,15,16,8,243,15,16,69,228,15,46,193,119,2,235,53,139,69,240,243,15,16,0,243,15,90,192,243,15,90,77,228,242,15,17,68,36, 8,242,15,17,12,36,232,142,78,8,0,221,93,208,242,15,16,69,208,242,15,90,192,139,69,236,243,15,17,0,235,13,139,69,236,141,147,163,71,8,0,139,18,137,16,131,69,236,4,131,69,240,4,255,77,232,131,125,232,255,117,139,139,69,8,131,192,20,131,196,68,91,201,195, 85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72,4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,55,255,255, 255,137,4,36,232,170,161,0,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,95,254,255,255,141,131,127,198,7,0,137,4,36,232,80,139,5,0,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199, 68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,0,128,5,0,137,194,141,131,78,124,8,0,137,16,141,131,78,124,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,182,136,5,0,141,131,94,197,7,0,137,4,36,232,236,138,5,0,137,194,141,139,147,255,255,255,141,131,78,124,8, 0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,175,131,5,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,158,123,8,0,139,0,137,4,36,232,214,191,5,0,137,69,244,139,85,244,141,131,250,82,8,0,139,0,137,68,36, 4,137,20,36,232,138,178,5,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236,56,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,235,44,139,69,244,243,15,16,0,243,15,90,192,131,69,244,4,242, 15,17,4,36,232,242,75,8,0,221,93,224,242,15,90,69,224,139,69,240,243,15,17,0,131,69,240,4,255,77,236,131,125,236,255,117,203,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4, 139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,142,255,255,255,137,4,36,232,255,159,0,0,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,254,254,255,255,141,131,218,196,7,0,137,4,36, 232,166,137,5,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,94,126,5,0,137,194,141,131,168,122,8,0,137,16,141,131,168,122,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,20,135,5,0,141,131, 180,195,7,0,137,4,36,232,74,137,5,0,137,194,141,139,164,255,255,255,141,131,168,122,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,13,130,5,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,0,122,8,0,139, 0,137,4,36,232,52,190,5,0,137,69,244,139,85,244,139,77,244,141,131,88,81,8,0,139,0,137,68,36,12,141,131,88,81,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,99,164,5,0,139,85,244,141,131,88,81,8,0,139,0,137,68,36,4,137,20,36,232,190,176,5,0,139,85,244, 141,131,48,68,8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232, 233,168,0,0,0,139,69,244,139,0,137,69,228,131,69,244,4,139,69,240,139,0,137,69,224,131,69,240,4,141,131,184,67,8,0,243,15,16,0,15,46,69,228,115,2,235,15,139,69,236,141,147,24,69,8,0,139,18,137,16,235,107,141,131,184,67,8,0,243,15,16,0,15,46,69,224,115, 2,235,32,243,15,90,69,228,242,15,17,4,36,232,70,74,8,0,221,93,192,242,15,90,69,192,139,69,236,243,15,17,0,235,57,243,15,90,69,228,242,15,17,4,36,232,38,74,8,0,221,93,200,243,15,90,69,224,242,15,17,4,36,232,20,74,8,0,221,93,208,242,15,16,69,200,242,15, 94,69,208,242,15,90,192,139,69,236,243,15,17,0,131,69,236,4,255,77,232,131,125,232,255,15,133,75,255,255,255,139,69,8,131,192,20,131,196,84,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,12,139,0,139,16,139,69,12,131,192,8,139,0,139,72, 4,139,69,12,131,192,4,139,0,139,112,4,139,69,12,139,0,139,64,4,137,84,36,20,137,76,36,16,137,116,36,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,244,254,255,255,137,4,36,232,124,157,0,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91, 141,179,28,254,255,255,141,131,91,194,7,0,137,4,36,232,34,135,5,0,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,210,123,5,0,137,194,141,131,40,120,8,0,137,16,141,131, 40,120,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,136,132,5,0,141,131,48,193,7,0,137,4,36,232,190,134,5,0,137,194,141,139,147,255,255,255,141,131,40,120,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,129,127,5,0,131,196,32,91,94, 201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,120,119,8,0,139,0,137,4,36,232,168,187,5,0,137,69,244,139,85,244,141,131,204,78,8,0,139,0,137,68,36,4,137,20,36,232,92,174,5,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,232,0,0,0,0, 89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,235,87,139,69,244,139,0,137,69,232,131,69,244,4,141,129,101,65,8,0,243,15,16,8,243,15,16,69,232,15,46,193,114,2,235,27,141,129,37,67,8,0,15, 40,0,243,15,16,77,232,15,40,209,15,87,208,243,15,17,85,228,235,10,243,15,16,69,232,243,15,17,69,228,139,69,240,243,15,16,85,228,243,15,17,16,131,69,240,4,255,77,236,131,125,236,255,117,160,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0, 0,0,91,139,69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,93,255,255,255,137,4,36,232,160,155,0,0,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0, 0,0,0,91,141,179,205,254,255,255,141,131,133,192,7,0,137,4,36,232,71,133,5,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,255,121,5,0,137,194,141,131,81,118,8,0,137,16,141,131,81,118,8, 0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,181,130,5,0,141,131,85,191,7,0,137,4,36,232,235,132,5,0,137,194,141,139,164,255,255,255,141,131,81,118,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,174,125,5,0,131,196,32,91,94,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,222,191,7,0,137,4,36,232,161,132,5,0,137,69,244,232,20,224,255,255,232,237,228,255,255,232,127,231,255,255,232,153,233,255,255,232,196,235,255,255,232,219,237,255,255,232,2,240,255,255,232,71,242,255,255, 232,110,244,255,255,232,179,246,255,255,232,245,248,255,255,232,154,250,255,255,232,25,253,255,255,232,239,254,255,255,141,131,81,77,8,0,139,0,139,16,139,69,244,137,68,36,4,137,20,36,232,97,129,5,0,141,131,101,77,8,0,139,0,139,16,139,69,244,137,68,36, 4,137,20,36,232,72,129,5,0,141,131,105,77,8,0,139,0,139,16,139,69,244,137,68,36,4,137,20,36,232,47,129,5,0,141,131,85,77,8,0,139,0,139,16,139,69,244,137,68,36,4,137,20,36,232,22,129,5,0,141,131,89,77,8,0,139,0,139,16,139,69,244,137,68,36,4,137,20,36, 232,253,128,5,0,141,131,93,77,8,0,139,0,139,16,139,69,244,137,68,36,4,137,20,36,232,228,128,5,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12, 139,0,137,69,236,139,69,244,139,64,36,133,192,116,125,199,69,232,0,0,0,0,139,69,244,139,64,32,139,0,137,68,36,4,141,131,236,190,7,0,137,4,36,232,204,125,6,0,199,69,232,0,0,0,0,235,55,139,69,232,131,224,7,133,192,117,5,232,87,127,6,0,139,69,232,193,224, 2,3,69,240,243,15,16,0,243,15,90,192,242,15,17,68,36,4,141,131,240,190,7,0,137,4,36,232,143,125,6,0,255,69,232,139,69,232,59,69,236,124,193,232,34,127,6,0,139,69,244,139,64,36,141,80,255,139,69,244,137,80,36,139,69,8,131,192,16,131,196,36,91,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,16,139,69,12,139,0,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,51,255,255,255,137,4,36,232,235,152,0,0,131,196,36,91,201,195,85,137,229,131,236,8,232, 0,0,0,0,89,141,129,202,61,8,0,243,15,16,0,15,46,69,12,119,2,235,11,141,129,202,61,8,0,139,0,137,69,12,243,15,16,69,12,243,15,44,208,139,69,8,137,80,36,201,195,85,137,229,131,236,8,139,69,8,199,64,36,1,0,0,0,201,195,85,137,229,83,131,236,52,232,0,0,0, 0,91,141,131,85,115,8,0,139,0,137,4,36,232,129,183,5,0,137,69,244,139,69,8,139,0,15,182,0,132,192,117,19,141,131,163,189,7,0,137,4,36,232,46,130,5,0,137,69,228,235,6,139,69,8,137,69,228,139,69,244,139,85,228,137,80,32,139,69,244,199,64,36,0,0,0,0,139, 85,244,141,131,125,61,8,0,139,0,137,66,28,139,69,244,131,196,52,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,132,255,255,255,141,131,51,189,7,0,137,4,36,232,215,129,5,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199, 68,36,12,40,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,135,118,5,0,137,194,141,131,229,114,8,0,137,16,141,131,229,114,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,61,127,5,0,141,131,229,187,7,0,137,4,36,232,115,129,5,0,137,194,141,139,241,254, 255,255,141,131,229,114,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,54,122,5,0,141,147,114,255,255,255,141,131,229,114,8,0,139,0,137,84,36,4,137,4,36,232,172,125,5,0,141,147,56,255,255,255,141,131,229,114,8,0,139,0,137,84,36,4, 137,4,36,232,180,125,5,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,244,139,80,28,141,131,61,60,8,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,252,192,5,0,139,69,8,131,192,8,131,196,36, 91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,137,68,36,8,199,68,36,4,1,0,0,0,141,131,178,255,255,255,137,4,36,232,213,150,0,0,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,139,64,12,137,4,36,232,49,169,5,0,201,195,85,137,229,131, 236,24,139,69,8,139,64,28,137,4,36,232,191,193,5,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,99,113,8,0,139,0,137,4,36,232,139,181,5,0,137,69,244,141,131,200,255,255,255,137,68,36,4,139,69,244,137,4,36,232,133,190,5,0,137,194,139,69,244, 137,80,28,139,85,244,141,131,183,72,8,0,139,0,137,68,36,4,137,20,36,232,34,168,5,0,139,69,244,131,196,36,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,127,255,255,255,141,187,149,255,255,255,141,131,85,187,7,0,137,4,36,232,236,127, 5,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,168,116,5,0,137,194,141,131,4,113,8,0,137,16,141,131,0,186,7,0,137,4,36,232,172,127,5,0,137,194,141,139,57,255,255,255,141,131,4,113,8,0,139,0, 199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,111,120,5,0,131,196,44,91,94,95,201,195,85,137,229,131,236,8,232,120,253,255,255,232,87,255,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,95,112,8,0,139,0,137,4,36,232,131,180, 5,0,137,69,244,139,85,244,139,69,8,137,66,40,141,131,179,186,7,0,137,4,36,232,51,127,5,0,139,85,244,139,77,244,137,68,36,12,141,131,179,71,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,163,154,5,0,139,85,244,141,131,151,58,8,0,242,15,16,0,242,15,17, 66,28,139,85,244,141,131,127,58,8,0,139,0,137,66,36,141,131,183,186,7,0,137,4,36,232,227,126,5,0,139,85,244,137,68,36,4,137,20,36,232,216,166,5,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236,56,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244, 139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,244,242,15,16,72,28,141,129,17,58,8,0,242,15,16,0,242,15,88,193,242,15,17,69,216,139,69,244,139,64,36,137,69,224,141,129,17,58,8,0,242, 15,16,0,242,15,17,69,208,139,69,212,137,69,228,242,15,16,69,216,242,15,17,69,208,235,92,139,69,228,137,69,212,139,69,240,243,15,16,0,243,15,89,69,224,243,15,90,200,242,15,16,69,216,242,15,88,193,242,15,17,69,216,131,69,240,4,242,15,16,77,208,141,129, 17,58,8,0,242,15,16,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,90,192,139,69,236,243,15,17,0,131,69,236,4,242,15,16,69,216,242,15,17,69,208,255,77,232,131,125,232,255,117,155,139,69,228,137,69,212,242,15,16,77,208,141,129,17,58,8,0,242,15,16, 0,102,15,40,209,242,15,92,208,102,15,40,194,139,69,244,242,15,17,64,28,139,69,8,131,192,20,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,243,15,16,72,8,141,131,209,56,8,0,243,15,16,0,243,15,94,193,139,69,8,243,15,17,64,36,139,69,12, 139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,20,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,4,0,0,0,141,131,225,254,255,255,137,4,36,232,121,147,0,0,131,196,36,91,201,195,85,137,229,131,236,8,243,15, 90,69,12,139,69,8,242,15,17,64,28,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,182,253,255,255,141,131,128,184,7,0,137,4,36,232,11,125,5,0,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,199,68,36,8, 0,0,0,0,137,116,36,4,137,4,36,232,187,113,5,0,137,194,141,131,33,110,8,0,137,16,141,131,33,110,8,0,139,0,199,68,36,4,40,0,0,0,137,4,36,232,113,122,5,0,141,131,25,183,7,0,137,4,36,232,167,124,5,0,137,194,141,139,104,255,255,255,141,131,33,110,8,0,139, 0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,106,117,5,0,141,131,117,184,7,0,137,4,36,232,113,124,5,0,137,194,141,139,222,255,255,255,141,131,33,110,8,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232, 44,117,5,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,55,109,8,0,139,0,137,4,36,232,83,177,5,0,137,69,244,141,131,135,183,7,0,137,4,36,232,12,124,5,0,139,85,244,137,68,36,4,137,20,36,232,1,164,5,0,139,85,244,141,131,79,55, 8,0,139,0,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,131,236,72,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,141,129,156,68,8,0,139,0,139,0,137,69,232,141,129,44, 55,8,0,242,15,16,0,242,15,17,69,192,139,69,196,137,69,212,139,69,244,243,15,16,8,141,129,8,55,8,0,243,15,16,0,243,15,89,193,243,15,90,200,141,129,44,55,8,0,242,15,16,0,242,15,88,193,242,15,17,69,200,131,69,244,4,242,15,16,69,200,242,15,17,69,192,139, 69,196,37,255,1,0,0,193,224,2,3,69,232,137,69,228,139,69,212,137,69,196,233,167,0,0,0,139,69,244,243,15,16,8,141,129,8,55,8,0,243,15,16,0,243,15,89,193,243,15,90,200,141,129,44,55,8,0,242,15,16,0,242,15,88,193,242,15,17,69,200,131,69,244,4,242,15,16, 77,192,141,129,44,55,8,0,242,15,16,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,90,192,243,15,17,69,216,242,15,16,69,200,242,15,17,69,192,139,69,228,139,0,137,69,224,139,69,228,131,192,4,139,0,137,69,220,139,69,196,37,255,1,0,0,193,224,2,3,69,232, 137,69,228,243,15,16,69,220,243,15,92,69,224,243,15,89,69,216,243,15,88,69,224,139,69,240,243,15,17,0,131,69,240,4,139,69,212,137,69,196,255,77,236,131,125,236,0,15,133,76,255,255,255,242,15,16,77,192,141,129,44,55,8,0,242,15,16,0,102,15,40,209,242,15, 92,208,102,15,40,194,242,15,90,192,243,15,17,69,216,139,69,228,139,0,137,69,224,139,69,228,131,192,4,139,0,137,69,220,243,15,16,69,220,243,15,92,69,224,243,15,89,69,216,243,15,88,69,224,139,69,240,243,15,17,0,131,69,240,4,139,69,8,131,192,16,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139,0,139,64,4,137,76,36,16,137,84,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,61,254,255,255,137,4,36,232,23,144,0,0,131,196,36,91,201,195,85, 137,229,83,131,236,68,232,0,0,0,0,91,141,131,221,54,8,0,139,0,137,69,232,141,131,149,66,8,0,139,0,139,0,133,192,15,133,154,0,0,0,199,4,36,4,8,0,0,232,54,147,5,0,137,194,141,131,149,66,8,0,139,0,137,16,199,69,244,1,2,0,0,141,131,149,66,8,0,139,0,139,0, 137,69,240,141,131,245,52,8,0,139,0,137,69,236,235,49,243,15,90,69,236,242,15,17,4,36,232,251,58,8,0,221,93,208,242,15,90,69,208,139,69,240,243,15,17,0,131,69,240,4,243,15,16,69,236,243,15,88,69,232,243,15,17,69,236,255,77,244,131,125,244,255,117,198, 141,131,197,54,8,0,242,15,16,0,242,15,17,69,224,139,69,224,61,0,0,0,128,116,14,141,131,61,181,7,0,137,4,36,232,249,119,6,0,131,196,68,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,150,180,7,0,137,4,36,232,251,120,5,0,137,194,199,68,36,24, 0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,208,252,255,255,137,68,36,4,137,20,36,232,163,109,5,0,137,194,141,131,19,106,8,0,137,16,141,131,19,106,8,0,139,0,199,68,36,4,28,0,0,0,137,4,36,232,89, 118,5,0,141,131,3,179,7,0,137,4,36,232,143,120,5,0,137,194,141,139,219,254,255,255,141,131,19,106,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,82,113,5,0,232,130,254,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0, 0,0,0,91,141,131,93,105,8,0,139,0,137,4,36,232,117,173,5,0,137,69,244,139,85,244,139,69,8,137,66,40,141,131,169,179,7,0,137,4,36,232,37,120,5,0,139,85,244,137,68,36,4,137,20,36,232,26,160,5,0,141,131,165,179,7,0,137,4,36,232,8,120,5,0,139,85,244,139, 77,244,137,68,36,12,141,131,165,64,8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,120,147,5,0,139,85,244,141,131,137,51,8,0,242,15,16,0,242,15,17,66,28,139,85,244,141,131,113,51,8,0,139,0,137,66,36,139,69,244,131,196,36,91,201,195,85,137,229,131,236, 72,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,141,129,115,64,8,0,139,0,139,0,137,69,228,139,69,244,242,15,16,72,28,141,129,3,51,8,0, 242,15,16,0,242,15,88,193,242,15,17,69,192,139,69,244,139,64,36,137,69,204,141,129,3,51,8,0,242,15,16,0,242,15,17,69,184,139,69,188,137,69,208,242,15,16,69,192,242,15,17,69,184,139,69,240,243,15,16,0,243,15,89,69,204,243,15,90,200,242,15,16,69,192,242, 15,88,193,242,15,17,69,192,131,69,240,4,139,69,188,37,255,1,0,0,193,224,2,3,69,228,137,69,224,139,69,208,137,69,188,242,15,16,77,184,141,129,3,51,8,0,242,15,16,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,90,192,243,15,17,69,212,233,153,0,0,0,242, 15,16,69,192,242,15,17,69,184,139,69,224,139,0,137,69,220,139,69,240,243,15,16,0,243,15,89,69,204,243,15,90,200,242,15,16,69,192,242,15,88,193,242,15,17,69,192,131,69,240,4,139,69,224,131,192,4,139,0,137,69,216,139,69,188,37,255,1,0,0,193,224,2,3,69, 228,137,69,224,139,69,208,137,69,188,243,15,16,69,216,243,15,92,69,220,243,15,89,69,212,243,15,88,69,220,139,69,236,243,15,17,0,131,69,236,4,242,15,16,77,184,141,129,3,51,8,0,242,15,16,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,90,192,243,15, 17,69,212,255,77,232,131,125,232,0,15,133,90,255,255,255,139,69,224,139,0,137,69,220,139,69,224,131,192,4,139,0,137,69,216,243,15,16,69,216,243,15,92,69,220,243,15,89,69,212,243,15,88,69,220,139,69,236,243,15,17,0,131,69,236,4,141,129,171,52,8,0,242, 15,16,0,242,15,17,69,184,139,69,188,137,69,208,242,15,16,77,192,141,129,179,52,8,0,242,15,16,0,242,15,88,193,242,15,17,69,184,139,69,208,137,69,188,242,15,16,77,184,141,129,171,52,8,0,242,15,16,0,102,15,40,209,242,15,92,208,102,15,40,194,139,69,244,242, 15,17,64,28,139,69,8,131,192,20,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,243,15,16,72,8,141,131,190,48,8,0,243,15,16,0,243,15,94,193,139,69,8,243,15,17,64,36,139,69,12,139,0,139,8,139,69,12,131,192,4,139,0,139,80,4,139,69,12,139, 0,139,64,4,137,76,36,20,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,4,0,0,0,141,131,212,253,255,255,137,4,36,232,94,139,0,0,131,196,36,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,243,15,16,77,12,141,129,73,48,8,0,243,15,16,0,243,15, 89,193,243,15,90,192,139,69,8,242,15,17,64,28,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,145,252,255,255,141,131,126,176,7,0,137,4,36,232,216,116,5,0,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0, 199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,136,105,5,0,137,194,141,131,250,101,8,0,137,16,141,131,250,101,8,0,139,0,199,68,36,4,40,0,0,0,137,4,36,232,62,114,5,0,141,131,230,174,7,0,137,4,36,232,116,116,5,0,137,194,141,139,80,255,255,255,141,131,250, 101,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,55,109,5,0,141,131,66,176,7,0,137,4,36,232,62,116,5,0,137,194,141,139,198,255,255,255,141,131,250,101,8,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4, 137,4,36,232,249,108,5,0,232,41,250,255,255,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,178,60,8,0,139,0,139,0,137,4,36,232,24,169,5,0,137,69,244,139,85,244,139,77,244,141,131,62,60,8,0,139,0,137,68,36,12,141,131,62,60, 8,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,71,143,5,0,141,131,74,175,7,0,137,4,36,232,167,115,5,0,137,198,141,131,60,5,8,0,137,4,36,232,151,115,5,0,139,85,244,139,77,244,137,116,36,12,137,68,36,8,137,84,36,4,137,12,36,232,15,143,5,0,141,131,78,175, 7,0,137,4,36,232,111,115,5,0,139,85,244,137,68,36,4,137,20,36,232,100,155,5,0,141,131,78,175,7,0,137,4,36,232,82,115,5,0,139,85,244,137,68,36,4,137,20,36,232,71,155,5,0,139,85,244,131,194,28,139,69,244,137,80,44,139,85,244,141,131,22,47,8,0,139,0,137, 66,28,139,85,244,141,131,22,47,8,0,139,0,137,66,32,139,85,244,139,69,8,137,66,36,139,85,244,141,131,22,47,8,0,139,0,137,66,40,139,85,244,141,131,22,47,8,0,139,0,137,66,48,139,69,244,131,196,32,91,94,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69, 8,139,64,44,137,69,240,141,129,2,46,8,0,243,15,16,8,243,15,16,69,12,15,46,193,119,2,235,12,243,15,16,69,12,243,15,17,69,244,235,15,141,129,2,46,8,0,243,15,16,0,243,15,17,69,244,243,15,16,69,244,139,69,240,243,15,17,64,8,201,195,85,137,229,129,236,152, 0,0,0,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,8,131,192,20,139,0,137,69,228,139,69,8,131,192,24,139,0,137,69,224,139,69,228, 139,0,137,69,216,139,69,228,139,64,4,137,69,208,139,69,228,139,64,8,137,69,204,141,129,170,45,8,0,243,15,16,8,243,15,16,69,204,15,46,193,119,2,235,28,141,129,174,45,8,0,243,15,16,0,15,40,200,243,15,94,77,204,243,15,17,141,112,255,255,255,235,18,141,129, 170,45,8,0,243,15,16,16,243,15,17,149,112,255,255,255,243,15,16,133,112,255,255,255,243,15,17,69,200,243,15,16,77,204,141,129,10,46,8,0,243,15,16,0,243,15,88,200,141,129,62,46,8,0,243,15,16,0,15,40,208,243,15,94,209,15,40,202,141,129,10,46,8,0,243,15, 16,0,243,15,88,193,243,15,17,69,196,139,69,228,139,64,12,137,69,192,141,129,74,59,8,0,139,0,139,0,137,69,180,141,129,218,45,8,0,242,15,16,0,242,15,17,133,120,255,255,255,139,133,124,255,255,255,137,69,160,199,69,220,0,0,0,0,233,67,2,0,0,139,69,240,243, 15,16,0,243,15,89,69,192,243,15,17,69,152,131,69,240,4,141,129,170,45,8,0,243,15,16,0,15,46,69,152,119,2,235,11,141,129,170,45,8,0,139,0,137,69,152,243,15,16,77,152,141,129,150,47,8,0,243,15,16,0,243,15,89,193,243,15,17,69,148,141,129,170,45,8,0,243, 15,16,8,243,15,16,69,200,15,46,193,119,2,235,40,243,15,16,69,152,15,40,200,243,15,89,77,200,141,129,174,45,8,0,243,15,16,0,15,40,208,243,15,92,209,243,15,17,149,116,255,255,255,235,18,141,129,170,45,8,0,243,15,16,0,243,15,17,133,116,255,255,255,243,15, 16,141,116,255,255,255,243,15,17,77,144,141,129,170,45,8,0,243,15,16,0,15,46,69,144,119,2,235,11,141,129,170,45,8,0,139,0,137,69,144,141,129,174,45,8,0,243,15,16,0,243,15,92,69,144,243,15,17,69,140,243,15,90,77,148,141,129,218,45,8,0,242,15,16,0,242, 15,88,193,242,15,17,69,128,242,15,16,69,128,242,15,17,133,120,255,255,255,139,133,124,255,255,255,37,255,1,0,0,137,69,156,139,69,156,193,224,2,3,69,180,137,69,176,139,69,160,137,133,124,255,255,255,242,15,16,141,120,255,255,255,141,129,218,45,8,0,242, 15,16,0,102,15,40,209,242,15,92,208,102,15,40,194,242,15,90,192,243,15,17,69,164,139,69,176,139,0,137,69,172,139,69,176,131,192,4,139,0,137,69,168,243,15,16,69,168,243,15,92,69,172,243,15,89,69,164,243,15,88,69,172,243,15,89,69,144,243,15,17,69,188,139, 69,156,131,192,128,37,255,1,0,0,193,224,2,3,69,180,137,69,176,139,69,176,139,0,137,69,172,139,69,176,131,192,4,139,0,137,69,168,243,15,16,69,168,243,15,92,69,172,243,15,89,69,164,243,15,88,69,172,243,15,89,69,144,243,15,17,69,184,139,69,244,139,0,137, 69,172,131,69,244,4,139,69,216,137,69,212,243,15,16,69,196,243,15,89,69,140,15,40,200,243,15,89,77,172,243,15,16,69,188,243,15,89,69,212,243,15,88,200,243,15,16,69,208,243,15,89,69,184,15,40,209,243,15,92,208,15,40,194,243,15,17,69,216,139,85,216,139, 69,236,137,16,131,69,236,4,243,15,16,69,184,15,40,200,243,15,89,77,212,243,15,16,69,208,243,15,89,69,188,243,15,88,193,243,15,17,69,208,139,85,208,139,69,232,137,16,131,69,232,4,255,69,220,139,69,220,59,69,224,15,140,177,253,255,255,141,69,216,139,0, 37,0,0,0,96,133,192,116,17,141,69,216,139,0,37,0,0,0,96,61,0,0,0,96,117,11,141,129,170,45,8,0,139,0,137,69,216,141,69,208,139,0,37,0,0,0,96,133,192,116,17,141,69,208,139,0,37,0,0,0,96,61,0,0,0,96,117,11,141,129,170,45,8,0,139,0,137,69,208,139,85,216, 139,69,228,137,16,139,85,208,139,69,228,137,80,4,139,69,8,131,192,28,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,139,69,8,139,80,44,139,69,12,139,0,243,15,16,72,8,141,131,211,42,8,0,243,15,16,0,243,15,94,193,243,15,17,66,12,139,69,12,139,0, 139,48,139,69,8,139,120,44,139,69,12,131,192,12,139,0,139,64,4,137,69,228,139,69,12,131,192,8,139,0,139,80,4,139,69,12,131,192,4,139,0,139,72,4,139,69,12,139,0,139,64,4,137,116,36,28,137,124,36,24,139,117,228,137,116,36,20,137,84,36,16,137,76,36,12,137, 68,36,8,199,68,36,4,6,0,0,0,141,131,3,252,255,255,137,4,36,232,61,132,0,0,131,196,60,91,94,95,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,245,249,255,255,141,131,143,169,7,0,137,4,36,232,226,109,5,0,199,68,36,24,0,0,0,0,199,68,36,20,6, 0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,52,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,146,98,5,0,137,194,141,131,180,54,8,0,139,0,137,16,141,131,180,54,8,0,139,0,139,0,199,68,36,4,48,0,0,0,137,4,36,232,68,107,5,0,141,131,240,167,7,0,137,4,36, 232,122,109,5,0,137,194,141,139,79,255,255,255,141,131,180,54,8,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,59,102,5,0,141,131,76,169,7,0,137,4,36,232,66,109,5,0,137,194,141,139,11,251,255,255,141,131,180,54,8,0,139,0,139, 0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,251,101,5,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,18,94,8,0,139,0,137,4,36,232,34,162,5,0,137,69,244,141,131,174,63,8,0,139,0,105,208, 39,5,0,0,141,131,174,63,8,0,137,16,141,131,174,63,8,0,139,16,139,69,244,137,80,28,141,131,86,168,7,0,137,4,36,232,183,108,5,0,139,85,244,137,68,36,4,137,20,36,232,172,148,5,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69, 8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,240,139,0,137,69,232,235,59,139,69,232,37,255,255,255,127,45,0,0,0,64,243,15,42,200,141,129,165,41,8,0,243,15,16,0,243,15,89,193,139,69,244,243, 15,17,0,131,69,244,4,139,69,232,105,192,135,71,251,25,5,107,184,209,22,137,69,232,255,77,236,131,125,236,255,117,188,139,85,240,139,69,232,137,2,139,69,8,131,192,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,0,139,16,139,77,8,131,193, 28,139,69,12,139,0,139,64,4,137,84,36,16,137,76,36,12,137,68,36,8,199,68,36,4,3,0,0,0,141,131,105,255,255,255,137,4,36,232,1,130,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,91,167,7,0,137,4,36,232,175,107,5,0,137,194,199, 68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,181,254,255,255,137,68,36,4,137,20,36,232,95,96,5,0,137,194,141,131,211,92,8,0,137,16,141,131,183,165,7,0,137,4,36,232,99,107,5,0,137,194,141,139,170,255,255,255, 141,131,211,92,8,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,38,100,5,0,131,196,36,91,201,195,85,137,229,131,236,8,232,253,237,255,255,232,15,242,255,255,232,38,246,255,255,232,23,253,255,255,232,76,255,255,255,201,195,85,137,229, 131,236,40,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,85,232,137,208,193,250,31,247,125,236,137,69,228,235,23,139,69,244,139,16,139,69,240,137, 16,131,69,240,4,139,69,236,193,224,2,1,69,244,255,77,228,131,125,228,255,117,224,139,69,8,131,192,20,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69, 236,139,69,8,131,192,16,139,0,137,69,232,139,69,232,15,175,69,236,137,69,228,139,69,240,137,69,224,235,17,139,69,240,141,145,192,37,8,0,139,18,137,16,131,69,240,4,255,77,228,131,125,228,255,117,230,139,69,232,137,69,228,139,69,224,137,69,240,235,23,139, 69,244,139,16,139,69,240,137,16,131,69,244,4,139,69,236,193,224,2,1,69,240,255,77,228,131,125,228,255,117,224,139,69,8,131,192,20,201,195,85,137,229,131,236,40,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12, 139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,236,137,69,228,139,69,232,137,69,224,139,69,240,137,69,220,139,69,244,137,69,216,235,58,139,69,232,137,69,224,139,69,228,193,224,2,3,69,220,137,69,240,139,69,216,137,69,244,235,23,139,69,244, 139,16,139,69,240,137,16,131,69,244,4,139,69,236,193,224,2,1,69,240,255,77,224,131,125,224,255,117,224,255,77,228,131,125,228,255,117,189,139,69,8,131,192,20,201,195,85,137,229,131,236,88,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131, 192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,8,131,192,16,139,0,137,69,232,139,69,8,131,192,20,139,0,137,69,228,139,69,228,15,175,69,232,137,69,224,139,69,244,139,64,28,139,0,137,69,212,139,69,240,139,0,137,69,208,199,69,220,0,0, 0,0,233,225,0,0,0,139,69,220,64,243,15,42,200,243,15,42,69,232,15,40,209,243,15,94,208,15,40,194,243,15,17,69,204,243,15,16,69,204,243,15,44,192,137,69,200,243,15,42,77,200,243,15,16,69,204,243,15,92,193,243,15,17,69,196,141,129,143,36,8,0,243,15,16, 0,15,46,69,196,122,2,116,2,235,11,141,129,147,36,8,0,139,0,137,69,196,243,15,16,69,196,243,15,89,69,208,243,15,90,208,243,15,90,77,196,141,129,175,36,8,0,242,15,16,0,102,15,40,216,242,15,92,217,102,15,40,203,243,15,90,69,212,242,15,89,193,242,15,88,194, 242,15,90,192,139,69,236,243,15,17,0,131,69,236,4,139,69,200,193,224,2,3,69,240,137,69,216,139,69,216,139,0,137,69,208,131,125,200,0,116,17,139,69,216,131,232,4,243,15,16,0,243,15,17,69,180,235,10,243,15,16,85,212,243,15,17,85,180,243,15,16,93,180,243, 15,17,93,212,255,69,220,139,69,220,59,69,224,15,140,19,255,255,255,139,69,244,139,80,28,139,69,212,137,2,139,69,8,131,192,24,201,195,85,137,229,131,236,8,139,69,8,199,0,0,0,0,0,139,69,8,199,64,8,1,0,0,0,139,69,8,139,80,8,139,69,8,137,80,4,139,69,8,199, 64,32,0,0,0,0,139,69,8,139,80,32,139,69,8,137,80,24,139,69,8,139,80,24,139,69,8,137,80,16,139,69,8,199,64,28,0,0,0,0,139,69,8,139,80,28,139,69,8,137,80,20,139,69,8,139,80,20,139,69,8,137,80,12,201,195,85,137,229,131,236,24,139,69,8,139,64,16,133,192, 116,31,139,69,8,139,64,16,141,20,133,0,0,0,0,139,69,8,139,64,12,137,84,36,4,137,4,36,232,229,130,5,0,139,69,8,139,64,24,133,192,116,31,139,69,8,139,64,24,141,20,133,0,0,0,0,139,69,8,139,64,20,137,84,36,4,137,4,36,232,188,130,5,0,139,69,8,139,64,32,133, 192,116,31,139,69,8,139,64,32,141,20,133,0,0,0,0,139,69,8,139,64,28,137,84,36,4,137,4,36,232,147,130,5,0,139,69,8,199,64,32,0,0,0,0,139,69,8,139,80,32,139,69,8,137,80,24,139,69,8,139,80,24,139,69,8,137,80,16,139,69,8,199,64,28,0,0,0,0,139,69,8,139,80, 28,139,69,8,137,80,20,139,69,8,139,80,20,139,69,8,137,80,12,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,16,59,69,24,117,19,141,131,115,162,7,0,137,4,36,232,149,101,6,0,233,183,1,0,0,139,69,16,59,69,24,126,101,139,85,16,137,208,193,250,31,247, 125,24,137,208,133,192,116,19,141,131,134,162,7,0,137,4,36,232,8,99,6,0,233,139,1,0,0,139,85,16,137,208,193,250,31,247,125,24,137,194,139,69,16,137,68,36,20,137,84,36,16,139,69,20,137,68,36,12,139,69,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,187,251, 255,255,137,4,36,232,124,124,0,0,233,74,1,0,0,139,85,24,137,208,193,250,31,247,125,16,137,208,133,192,116,19,141,131,158,162,7,0,137,4,36,232,163,98,6,0,233,38,1,0,0,139,69,28,137,69,244,131,125,244,1,116,11,131,125,244,2,116,70,233,211,0,0,0,139,85, 24,137,208,193,250,31,247,125,16,137,194,139,69,16,137,68,36,20,137,84,36,16,139,69,20,137,68,36,12,139,69,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,191,252,255,255,137,4,36,232,0,124,0,0,233,206,0,0,0,139,69,8,139,64,32,131,248,1,116,66,139,69,8,139, 64,32,141,20,133,0,0,0,0,139,69,8,139,64,28,137,84,36,4,137,4,36,232,18,129,5,0,139,69,8,199,64,32,1,0,0,0,139,69,8,139,64,32,193,224,2,137,4,36,232,17,127,5,0,137,194,139,69,8,137,80,28,139,85,24,137,208,193,250,31,247,125,16,137,194,139,69,16,137,68, 36,24,137,84,36,20,139,69,20,137,68,36,16,139,69,12,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,5,0,0,0,141,131,86,253,255,255,137,4,36,232,107,123,0,0,235,60,139,85,24,137,208,193,250,31,247,125,16,137,194,139,69,16,137,68,36,20,137,84,36,16,139,69, 20,137,68,36,12,139,69,12,137,68,36,8,199,68,36,4,4,0,0,0,141,131,37,252,255,255,137,4,36,232,45,123,0,0,131,196,52,91,201,195,85,137,229,131,236,56,139,69,16,59,69,20,117,55,139,69,8,139,64,16,141,20,133,0,0,0,0,139,69,8,139,64,12,137,84,36,4,137,4, 36,232,59,128,5,0,139,69,8,199,64,16,0,0,0,0,139,85,8,139,69,12,137,66,12,233,131,0,0,0,139,69,8,139,64,16,59,69,20,116,68,139,69,8,139,64,12,137,69,244,139,69,8,139,64,16,193,224,2,137,68,36,4,139,69,244,137,4,36,232,247,127,5,0,139,69,20,193,224,2, 137,4,36,232,3,126,5,0,137,69,244,139,85,8,139,69,244,137,66,12,139,85,8,139,69,20,137,66,16,139,69,8,139,80,16,139,69,8,139,72,12,139,69,24,137,68,36,20,137,84,36,16,137,76,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,83,253, 255,255,201,195,85,137,229,131,236,56,139,69,16,59,69,20,117,65,139,69,8,139,64,16,133,192,116,31,139,69,8,139,64,16,141,20,133,0,0,0,0,139,69,8,139,64,12,137,84,36,4,137,4,36,232,103,127,5,0,139,69,8,199,64,16,0,0,0,0,139,85,8,139,69,12,137,66,12,233, 131,0,0,0,139,69,8,139,64,16,59,69,16,116,68,139,69,8,139,64,12,137,69,244,139,69,8,139,64,16,193,224,2,137,68,36,4,139,69,244,137,4,36,232,35,127,5,0,139,69,16,193,224,2,137,4,36,232,47,125,5,0,137,69,244,139,85,8,139,69,244,137,66,12,139,85,8,139,69, 16,137,66,16,139,69,8,139,80,16,139,69,8,139,72,12,139,69,24,137,68,36,20,139,69,20,137,68,36,16,139,69,12,137,68,36,12,137,84,36,8,137,76,36,4,139,69,8,137,4,36,232,127,252,255,255,201,195,85,137,229,131,236,24,131,125,12,0,116,55,15,182,69,8,137,194, 193,226,24,139,69,8,37,0,255,0,0,193,224,8,9,194,139,69,8,37,0,0,255,0,193,232,8,9,194,139,69,8,37,0,0,0,255,193,232,24,137,209,9,193,137,77,244,235,6,139,69,8,137,69,244,139,69,244,201,195,85,137,229,131,236,24,131,125,12,0,116,33,139,69,8,102,37,255, 0,137,194,193,226,8,139,69,8,37,0,255,0,0,193,232,8,9,208,15,183,192,137,69,244,235,9,139,69,8,15,183,192,137,69,244,139,69,244,201,195,85,137,229,131,236,24,131,125,12,0,116,86,139,69,8,15,182,0,136,69,247,139,69,8,64,15,182,0,136,69,246,139,69,8,131, 192,2,15,182,0,136,69,245,139,69,8,131,192,3,15,182,0,136,69,244,139,85,8,15,182,69,244,136,2,139,85,8,66,15,182,69,245,136,2,139,85,8,131,194,2,15,182,69,246,136,2,139,85,8,131,194,3,15,182,69,247,136,2,201,195,85,137,229,87,86,83,129,236,156,4,0,0, 232,0,0,0,0,91,139,69,16,137,133,164,251,255,255,139,69,20,137,133,160,251,255,255,139,69,24,137,133,156,251,255,255,139,69,28,137,133,152,251,255,255,141,131,31,43,8,0,139,0,139,16,137,85,228,49,210,199,133,224,251,255,255,255,255,255,127,232,8,35,8, 0,199,0,0,0,0,0,131,125,12,0,120,61,139,133,160,251,255,255,139,0,137,133,240,251,255,255,139,133,156,251,255,255,139,0,137,133,244,251,255,255,139,133,164,251,255,255,139,0,137,133,236,251,255,255,139,133,152,251,255,255,139,0,137,133,224,251,255,255, 233,73,7,0,0,199,68,36,8,46,0,0,0,141,133,252,251,255,255,137,68,36,4,139,69,8,137,4,36,232,136,36,8,0,137,133,220,251,255,255,131,189,220,251,255,255,3,15,142,144,8,0,0,199,68,36,8,4,0,0,0,141,131,63,158,7,0,137,68,36,4,141,133,252,251,255,255,137,4, 36,232,211,36,8,0,133,192,117,25,199,133,216,251,255,255,2,0,0,0,199,133,240,251,255,255,1,0,0,0,233,35,1,0,0,199,68,36,8,4,0,0,0,141,131,68,158,7,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,150,36,8,0,133,192,117,25,199,133,216,251,255,255,2, 0,0,0,199,133,240,251,255,255,0,0,0,0,233,230,0,0,0,199,68,36,8,4,0,0,0,141,131,73,158,7,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,89,36,8,0,133,192,117,78,131,189,220,251,255,255,11,15,142,229,7,0,0,141,133,252,251,255,255,141,80,8,199,68,36, 8,4,0,0,0,141,131,78,158,7,0,137,68,36,4,137,20,36,232,37,36,8,0,133,192,15,133,186,7,0,0,199,133,216,251,255,255,0,0,0,0,199,133,240,251,255,255,0,0,0,0,235,116,199,68,36,8,4,0,0,0,141,131,83,158,7,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232, 231,35,8,0,133,192,15,133,124,7,0,0,131,189,220,251,255,255,11,15,142,111,7,0,0,141,133,252,251,255,255,141,80,8,199,68,36,8,4,0,0,0,141,131,88,158,7,0,137,68,36,4,137,20,36,232,175,35,8,0,133,192,15,133,68,7,0,0,199,133,216,251,255,255,1,0,0,0,199,133, 240,251,255,255,1,0,0,0,232,57,247,0,0,59,133,240,251,255,255,15,149,192,15,182,192,137,133,232,251,255,255,131,189,216,251,255,255,2,15,133,189,0,0,0,131,189,220,251,255,255,27,15,142,255,6,0,0,141,133,252,251,255,255,139,80,20,139,133,232,251,255,255, 137,68,36,4,137,20,36,232,154,252,255,255,137,133,244,251,255,255,141,133,252,251,255,255,139,80,12,139,133,232,251,255,255,137,68,36,4,137,20,36,232,121,252,255,255,137,133,216,251,255,255,141,133,252,251,255,255,139,80,4,139,133,232,251,255,255,137, 68,36,4,137,20,36,232,88,252,255,255,137,69,12,131,189,216,251,255,255,3,117,12,199,133,236,251,255,255,2,0,0,0,235,44,131,189,216,251,255,255,4,117,12,199,133,236,251,255,255,3,0,0,0,235,23,131,189,216,251,255,255,6,15,133,104,6,0,0,199,133,236,251, 255,255,4,0,0,0,199,133,224,251,255,255,255,255,255,127,233,216,4,0,0,131,189,216,251,255,255,0,15,133,115,2,0,0,199,69,12,12,0,0,0,131,189,220,251,255,255,19,15,142,46,6,0,0,199,133,244,251,255,255,1,0,0,0,199,133,236,251,255,255,2,0,0,0,139,69,12,137, 194,141,133,252,251,255,255,1,208,199,68,36,8,8,0,0,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,90,33,8,0,233,203,1,0,0,141,133,252,251,255,255,139,80,4,139,133,232,251,255,255,137,68,36,4,137,20,36,232,137,251,255,255,137,133,208,251,255,255, 139,133,208,251,255,255,3,69,12,131,192,8,137,133,204,251,255,255,141,133,252,251,255,255,137,194,199,68,36,8,4,0,0,0,141,131,93,158,7,0,137,68,36,4,137,20,36,232,252,33,8,0,133,192,15,133,1,1,0,0,139,69,12,131,192,8,137,133,196,251,255,255,139,133,196, 251,255,255,137,194,193,250,31,199,68,36,12,0,0,0,0,137,68,36,4,137,84,36,8,139,69,8,137,4,36,232,186,32,8,0,137,133,200,251,255,255,139,133,200,251,255,255,59,133,196,251,255,255,15,133,71,5,0,0,199,68,36,8,16,0,0,0,141,133,252,251,255,255,137,68,36, 4,139,69,8,137,4,36,232,15,33,8,0,131,248,15,15,142,33,5,0,0,141,133,252,251,255,255,15,183,64,2,15,183,208,139,133,232,251,255,255,137,68,36,4,137,20,36,232,6,251,255,255,15,183,192,137,133,244,251,255,255,141,133,252,251,255,255,15,183,64,14,15,183, 208,139,133,232,251,255,255,137,68,36,4,137,20,36,232,222,250,255,255,15,183,192,137,133,216,251,255,255,131,189,216,251,255,255,16,117,12,199,133,236,251,255,255,2,0,0,0,235,44,131,189,216,251,255,255,24,117,12,199,133,236,251,255,255,3,0,0,0,235,23, 131,189,216,251,255,255,32,15,133,154,4,0,0,199,133,236,251,255,255,4,0,0,0,139,133,204,251,255,255,137,194,193,250,31,199,68,36,12,0,0,0,0,137,68,36,4,137,84,36,8,139,69,8,137,4,36,232,197,31,8,0,137,133,200,251,255,255,139,133,200,251,255,255,59,133, 204,251,255,255,15,133,82,4,0,0,199,68,36,8,8,0,0,0,141,133,252,251,255,255,137,68,36,4,139,69,8,137,4,36,232,26,32,8,0,131,248,7,15,142,44,4,0,0,139,133,204,251,255,255,137,69,12,141,133,252,251,255,255,137,194,199,68,36,8,4,0,0,0,141,131,57,206,7,0, 137,68,36,4,137,20,36,232,100,32,8,0,133,192,15,133,11,254,255,255,141,133,252,251,255,255,139,80,4,139,133,232,251,255,255,137,68,36,4,137,20,36,232,148,249,255,255,137,133,224,251,255,255,131,69,12,8,233,88,2,0,0,199,69,12,12,0,0,0,131,189,220,251, 255,255,19,15,142,187,3,0,0,199,133,244,251,255,255,1,0,0,0,199,133,236,251,255,255,2,0,0,0,139,69,12,137,194,141,133,252,251,255,255,1,208,199,68,36,8,16,0,0,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,231,30,8,0,233,181,1,0,0,141,133,252,251, 255,255,139,80,4,139,133,232,251,255,255,137,68,36,4,137,20,36,232,22,249,255,255,137,133,192,251,255,255,139,133,192,251,255,255,3,69,12,131,192,8,137,133,188,251,255,255,141,133,252,251,255,255,137,194,199,68,36,8,4,0,0,0,141,131,99,158,7,0,137,68, 36,4,137,20,36,232,137,31,8,0,133,192,15,133,235,0,0,0,139,69,12,131,192,8,137,133,180,251,255,255,139,133,180,251,255,255,137,194,193,250,31,199,68,36,12,0,0,0,0,137,68,36,4,137,84,36,8,139,69,8,137,4,36,232,71,30,8,0,137,133,184,251,255,255,139,133, 184,251,255,255,59,133,180,251,255,255,15,133,212,2,0,0,199,68,36,8,18,0,0,0,141,133,252,251,255,255,137,68,36,4,139,69,8,137,4,36,232,156,30,8,0,131,248,17,15,142,174,2,0,0,141,133,252,251,255,255,15,183,0,15,183,208,139,133,232,251,255,255,137,68,36, 4,137,20,36,232,148,248,255,255,15,183,192,137,133,244,251,255,255,141,133,252,251,255,255,15,183,64,6,15,183,208,139,133,232,251,255,255,137,68,36,4,137,20,36,232,108,248,255,255,15,183,192,137,133,216,251,255,255,131,189,216,251,255,255,16,117,12,199, 133,236,251,255,255,2,0,0,0,235,23,131,189,216,251,255,255,24,15,133,61,2,0,0,199,133,236,251,255,255,3,0,0,0,139,133,188,251,255,255,137,194,193,250,31,199,68,36,12,0,0,0,0,137,68,36,4,137,84,36,8,139,69,8,137,4,36,232,104,29,8,0,137,133,184,251,255, 255,139,133,184,251,255,255,59,133,188,251,255,255,15,133,245,1,0,0,199,68,36,8,16,0,0,0,141,133,252,251,255,255,137,68,36,4,139,69,8,137,4,36,232,189,29,8,0,131,248,15,15,142,207,1,0,0,139,133,188,251,255,255,137,69,12,141,133,252,251,255,255,137,194, 199,68,36,8,4,0,0,0,141,131,104,158,7,0,137,68,36,4,137,20,36,232,7,30,8,0,133,192,15,133,33,254,255,255,141,133,252,251,255,255,139,80,4,139,133,232,251,255,255,137,68,36,4,137,20,36,232,55,247,255,255,137,133,224,251,255,255,131,69,12,8,139,133,244, 251,255,255,137,198,137,199,193,255,31,139,133,236,251,255,255,137,133,120,251,255,255,137,193,193,249,31,137,141,124,251,255,255,139,141,120,251,255,255,15,175,207,139,133,124,251,255,255,15,175,198,137,133,144,251,255,255,3,141,144,251,255,255,139, 133,120,251,255,255,247,230,137,198,137,215,1,249,137,207,139,69,32,137,133,128,251,255,255,137,194,193,250,31,137,149,132,251,255,255,139,141,128,251,255,255,15,175,207,139,133,132,251,255,255,15,175,198,137,133,140,251,255,255,3,141,140,251,255,255, 139,133,128,251,255,255,247,230,137,133,112,251,255,255,137,149,116,251,255,255,3,141,116,251,255,255,137,141,116,251,255,255,139,77,12,137,206,137,207,193,255,31,139,133,112,251,255,255,139,149,116,251,255,255,1,240,17,250,199,68,36,12,0,0,0,0,137,68, 36,4,137,84,36,8,139,69,8,137,4,36,232,249,27,8,0,137,133,228,251,255,255,139,133,244,251,255,255,15,175,133,236,251,255,255,15,175,69,32,3,69,12,59,133,228,251,255,255,116,15,199,133,148,251,255,255,255,255,255,255,233,130,0,0,0,139,133,244,251,255, 255,15,175,133,236,251,255,255,15,175,69,32,41,133,224,251,255,255,131,189,224,251,255,255,0,121,10,199,133,224,251,255,255,0,0,0,0,139,149,160,251,255,255,139,133,240,251,255,255,137,2,139,149,156,251,255,255,139,133,244,251,255,255,137,2,139,149,164, 251,255,255,139,133,236,251,255,255,137,2,139,149,152,251,255,255,139,133,224,251,255,255,137,2,139,85,8,137,149,148,251,255,255,235,21,232,250,25,8,0,199,0,5,0,0,0,199,133,148,251,255,255,255,255,255,255,139,133,148,251,255,255,141,147,31,43,8,0,139, 18,139,77,228,51,10,116,5,232,250,25,8,0,129,196,156,4,0,0,91,94,95,201,195,85,137,229,83,129,236,68,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,139,69,20,137,133,236,251,255,255,139,69,24,137,133,232,251,255, 255,139,69,28,137,133,228,251,255,255,139,69,32,137,133,224,251,255,255,141,131,138,33,8,0,139,0,139,16,137,85,244,49,210,199,68,36,24,1,0,0,0,199,68,36,20,232,3,0,0,141,133,8,252,255,255,137,68,36,16,141,133,12,252,255,255,137,68,36,12,141,131,50,158, 7,0,137,68,36,8,139,133,240,251,255,255,137,68,36,4,139,133,244,251,255,255,137,4,36,232,137,61,6,0,137,133,4,252,255,255,131,189,4,252,255,255,0,121,12,199,133,220,251,255,255,255,255,255,255,235,74,139,69,36,137,68,36,24,139,133,224,251,255,255,137, 68,36,20,139,133,228,251,255,255,137,68,36,16,139,133,232,251,255,255,137,68,36,12,139,133,236,251,255,255,137,68,36,8,139,69,16,137,68,36,4,139,133,4,252,255,255,137,4,36,232,111,245,255,255,137,133,220,251,255,255,139,133,220,251,255,255,141,147,138, 33,8,0,139,18,139,77,244,51,10,116,5,232,213,24,8,0,129,196,68,4,0,0,91,201,195,85,137,229,83,129,236,68,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,139,69,20,137,133,236,251,255,255,139,69,24,137,133,232,251, 255,255,139,69,28,137,133,228,251,255,255,139,69,32,137,133,224,251,255,255,141,131,103,32,8,0,139,0,139,16,137,85,244,49,210,199,68,36,24,1,0,0,0,199,68,36,20,232,3,0,0,141,133,8,252,255,255,137,68,36,16,141,133,12,252,255,255,137,68,36,12,141,131,15, 157,7,0,137,68,36,8,139,133,240,251,255,255,137,68,36,4,139,133,244,251,255,255,137,4,36,232,107,84,1,0,137,133,4,252,255,255,131,189,4,252,255,255,0,121,12,199,133,220,251,255,255,255,255,255,255,235,74,139,69,36,137,68,36,24,139,133,224,251,255,255, 137,68,36,20,139,133,228,251,255,255,137,68,36,16,139,133,232,251,255,255,137,68,36,12,139,133,236,251,255,255,137,68,36,8,139,69,16,137,68,36,4,139,133,4,252,255,255,137,4,36,232,76,244,255,255,137,133,220,251,255,255,139,133,220,251,255,255,141,147, 103,32,8,0,139,18,139,77,244,51,10,116,5,232,178,23,8,0,129,196,68,4,0,0,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,57,69,12,15,78,69,12,137,69,224,139,69,32,15,175,69,8,137,69,220,199,69,244,0,0,0,0,139,69,24,137,69,236,233,130,3,0, 0,131,125,32,2,15,133,16,1,0,0,131,125,36,0,15,132,131,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,16,139,16,139,69,40,15,175,69,20,193,224,2,141,4,2,137,69,228,235,76,139,69,232,15,182,0,15,182,192,137,194,193,226,24,139, 69,232,64,15,182,0,15,182,192,193,224,16,9,208,242,15,42,200,141,131,155,19,8,0,242,15,16,0,242,15,89,193,242,15,90,192,139,69,228,243,15,17,0,255,69,240,139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,172,233,226,2,0,0,199,69, 240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,16,139,16,139,69,40,15,175,69,20,193,224,2,141,4,2,137,69,228,235,76,139,69,232,64,15,182,0,15,182,192,137,194,193,226,24,139,69,232,15,182,0,15,182,192,193,224,16,9,208,242,15,42,200,141,131, 155,19,8,0,242,15,16,0,242,15,89,193,242,15,90,192,139,69,228,243,15,17,0,255,69,240,139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,172,233,95,2,0,0,131,125,32,3,15,133,50,1,0,0,131,125,36,0,15,132,148,0,0,0,199,69,240,0,0,0, 0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,16,139,16,139,69,40,15,175,69,20,193,224,2,141,4,2,137,69,228,235,93,139,69,232,15,182,0,15,182,192,137,194,193,226,24,139,69,232,64,15,182,0,15,182,192,193,224,16,9,194,139,69,232,131,192,2,15,182,0, 15,182,192,193,224,8,9,208,242,15,42,200,141,131,155,19,8,0,242,15,16,0,242,15,89,193,242,15,90,192,139,69,228,243,15,17,0,255,69,240,139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,155,233,183,1,0,0,199,69,240,0,0,0,0,139,69, 236,137,69,232,139,69,244,193,224,2,3,69,16,139,16,139,69,40,15,175,69,20,193,224,2,141,4,2,137,69,228,235,93,139,69,232,131,192,2,15,182,0,15,182,192,137,194,193,226,24,139,69,232,64,15,182,0,15,182,192,193,224,16,9,194,139,69,232,15,182,0,15,182,192, 193,224,8,9,208,242,15,42,200,141,131,155,19,8,0,242,15,16,0,242,15,89,193,242,15,90,192,139,69,228,243,15,17,0,255,69,240,139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,155,233,35,1,0,0,131,125,32,4,15,133,25,1,0,0,131,125, 36,0,15,132,138,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,16,139,16,139,69,40,15,175,69,20,193,224,2,141,4,2,137,69,228,235,83,139,77,228,139,69,232,15,182,0,15,182,192,137,194,193,226,24,139,69,232,64,15,182,0,15,182,192, 193,224,16,9,194,139,69,232,131,192,2,15,182,0,15,182,192,193,224,8,9,194,139,69,232,131,192,3,15,182,0,15,182,192,9,208,137,1,255,69,240,139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,165,233,133,0,0,0,199,69,240,0,0,0,0,139, 69,236,137,69,232,139,69,244,193,224,2,3,69,16,139,16,139,69,40,15,175,69,20,193,224,2,141,4,2,137,69,228,235,83,139,77,228,139,69,232,131,192,3,15,182,0,15,182,192,137,194,193,226,24,139,69,232,131,192,2,15,182,0,15,182,192,193,224,16,9,194,139,69,232, 64,15,182,0,15,182,192,193,224,8,9,194,139,69,232,15,182,0,15,182,192,9,208,137,1,255,69,240,139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,165,255,69,244,139,69,32,1,69,236,139,69,244,59,69,224,15,140,114,252,255,255,139,69, 8,137,69,244,235,51,139,69,28,137,69,240,139,69,244,193,224,2,3,69,16,139,0,137,69,228,235,17,139,69,228,141,147,163,17,8,0,139,18,137,16,131,69,228,4,255,77,240,131,125,240,255,117,230,255,69,244,139,69,244,59,69,12,124,197,131,196,36,91,201,195,85, 137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,57,69,12,15,78,69,12,137,69,224,139,69,32,15,175,69,8,137,69,220,199,69,244,0,0,0,0,139,69,24,137,69,236,233,130,3,0,0,131,125,32,2,15,133,16,1,0,0,131,125,36,0,15,132,131,0,0,0,199,69,240,0,0,0,0,139,69, 236,137,69,232,139,69,244,193,224,2,3,69,16,139,16,139,69,40,15,175,69,20,193,224,2,141,4,2,137,69,228,235,76,139,69,232,15,182,0,15,182,192,137,194,193,226,24,139,69,232,64,15,182,0,15,182,192,193,224,16,9,208,242,15,42,200,141,131,142,15,8,0,242,15, 16,0,242,15,89,193,242,15,90,192,139,69,228,243,15,17,0,255,69,240,139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,172,233,226,2,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,16,139,16,139,69,40,15,175, 69,20,193,224,2,141,4,2,137,69,228,235,76,139,69,232,64,15,182,0,15,182,192,137,194,193,226,24,139,69,232,15,182,0,15,182,192,193,224,16,9,208,242,15,42,200,141,131,142,15,8,0,242,15,16,0,242,15,89,193,242,15,90,192,139,69,228,243,15,17,0,255,69,240, 139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,172,233,95,2,0,0,131,125,32,3,15,133,50,1,0,0,131,125,36,0,15,132,148,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,16,139,16,139,69,40,15,175,69,20,193, 224,2,141,4,2,137,69,228,235,93,139,69,232,15,182,0,15,182,192,137,194,193,226,24,139,69,232,64,15,182,0,15,182,192,193,224,16,9,194,139,69,232,131,192,2,15,182,0,15,182,192,193,224,8,9,208,242,15,42,200,141,131,142,15,8,0,242,15,16,0,242,15,89,193,242, 15,90,192,139,69,228,243,15,17,0,255,69,240,139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,155,233,183,1,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,16,139,16,139,69,40,15,175,69,20,193,224,2,141,4, 2,137,69,228,235,93,139,69,232,131,192,2,15,182,0,15,182,192,137,194,193,226,24,139,69,232,64,15,182,0,15,182,192,193,224,16,9,194,139,69,232,15,182,0,15,182,192,193,224,8,9,208,242,15,42,200,141,131,142,15,8,0,242,15,16,0,242,15,89,193,242,15,90,192, 139,69,228,243,15,17,0,255,69,240,139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,155,233,35,1,0,0,131,125,32,4,15,133,25,1,0,0,131,125,36,0,15,132,138,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69, 16,139,16,139,69,40,15,175,69,20,193,224,2,141,4,2,137,69,228,235,83,139,77,228,139,69,232,15,182,0,15,182,192,137,194,193,226,24,139,69,232,64,15,182,0,15,182,192,193,224,16,9,194,139,69,232,131,192,2,15,182,0,15,182,192,193,224,8,9,194,139,69,232,131, 192,3,15,182,0,15,182,192,9,208,137,1,255,69,240,139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,165,233,133,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,16,139,16,139,69,40,15,175,69,20,193,224,2, 141,4,2,137,69,228,235,83,139,77,228,139,69,232,131,192,3,15,182,0,15,182,192,137,194,193,226,24,139,69,232,131,192,2,15,182,0,15,182,192,193,224,16,9,194,139,69,232,64,15,182,0,15,182,192,193,224,8,9,194,139,69,232,15,182,0,15,182,192,9,208,137,1,255, 69,240,139,69,220,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,28,124,165,255,69,244,139,69,32,1,69,236,139,69,244,59,69,224,15,140,114,252,255,255,139,69,8,137,69,244,235,51,139,69,28,137,69,240,139,69,244,193,224,2,3,69,16,139,0,137,69,228, 235,17,139,69,228,141,147,150,13,8,0,139,18,137,16,131,69,228,4,255,77,240,131,125,240,255,117,230,255,69,244,139,69,244,59,69,12,124,197,131,196,36,91,201,195,85,137,229,86,83,131,236,96,232,0,0,0,0,91,139,69,12,139,0,137,69,244,139,69,16,139,0,137, 69,240,199,69,236,2,0,0,0,199,69,232,0,0,0,0,199,69,228,255,255,255,255,199,69,220,255,255,255,255,199,69,216,0,0,0,0,199,69,212,0,0,0,0,199,69,208,255,255,255,127,141,131,168,10,8,0,139,0,137,69,200,233,171,2,0,0,139,69,240,139,64,4,139,0,64,137,69, 196,141,131,123,138,7,0,137,68,36,4,139,69,196,137,4,36,232,55,17,8,0,133,192,117,68,131,125,244,1,15,142,180,5,0,0,139,69,240,131,192,8,139,0,131,248,1,15,133,163,5,0,0,139,69,240,131,192,8,243,15,16,64,4,243,15,44,192,137,69,212,131,125,212,0,15,136, 135,5,0,0,131,109,244,2,131,69,240,16,233,66,2,0,0,141,131,128,138,7,0,137,68,36,4,139,69,196,137,4,36,232,218,16,8,0,133,192,117,68,131,125,244,1,15,142,87,5,0,0,139,69,240,131,192,8,139,0,131,248,1,15,133,70,5,0,0,139,69,240,131,192,8,243,15,16,64, 4,243,15,44,192,137,69,208,131,125,208,0,15,136,42,5,0,0,131,109,244,2,131,69,240,16,233,229,1,0,0,141,131,136,138,7,0,137,68,36,4,139,69,196,137,4,36,232,125,16,8,0,133,192,117,78,131,125,244,1,15,142,250,4,0,0,139,69,240,131,192,8,139,0,131,248,1,15, 133,233,4,0,0,139,69,240,131,192,8,243,15,16,64,4,243,15,44,192,137,69,236,131,125,236,1,15,142,205,4,0,0,131,125,236,4,15,143,195,4,0,0,131,109,244,2,131,69,240,16,233,126,1,0,0,141,131,142,138,7,0,137,68,36,4,139,69,196,137,4,36,232,22,16,8,0,133,192, 117,19,199,69,216,1,0,0,0,255,77,244,131,69,240,8,233,82,1,0,0,141,131,152,138,7,0,137,68,36,4,139,69,196,137,4,36,232,234,15,8,0,133,192,117,19,199,69,220,0,0,0,0,255,77,244,131,69,240,8,233,38,1,0,0,141,131,157,138,7,0,137,68,36,4,139,69,196,137,4, 36,232,190,15,8,0,133,192,117,19,199,69,220,2,0,0,0,255,77,244,131,69,240,8,233,250,0,0,0,141,131,166,138,7,0,137,68,36,4,139,69,196,137,4,36,232,146,15,8,0,133,192,117,19,199,69,220,1,0,0,0,255,77,244,131,69,240,8,233,206,0,0,0,141,131,171,138,7,0,137, 68,36,4,139,69,196,137,4,36,232,102,15,8,0,133,192,117,19,199,69,228,1,0,0,0,255,77,244,131,69,240,8,233,162,0,0,0,141,131,175,138,7,0,137,68,36,4,139,69,196,137,4,36,232,58,15,8,0,133,192,117,16,199,69,228,0,0,0,0,255,77,244,131,69,240,8,235,121,141, 131,100,152,7,0,137,68,36,4,139,69,196,137,4,36,232,17,15,8,0,133,192,116,29,141,131,184,138,7,0,137,68,36,4,139,69,196,137,4,36,232,248,14,8,0,133,192,15,133,123,3,0,0,131,125,244,1,15,142,113,3,0,0,139,69,240,131,192,8,139,0,131,248,1,15,133,96,3,0, 0,139,69,240,131,192,8,139,64,4,137,69,200,141,131,136,9,8,0,243,15,16,0,15,46,69,200,15,131,64,3,0,0,131,109,244,2,131,69,240,16,131,125,244,0,126,29,139,69,240,139,0,131,248,2,117,19,139,69,240,139,64,4,139,0,15,182,0,60,45,15,132,50,253,255,255,131, 125,244,0,15,132,11,3,0,0,139,69,240,139,0,131,248,2,15,133,253,2,0,0,139,69,240,139,64,4,137,69,204,131,125,220,0,15,137,225,1,0,0,139,69,204,139,0,137,4,36,232,94,14,8,0,131,248,4,118,99,139,69,204,139,48,139,69,204,139,0,137,4,36,232,71,14,8,0,141, 4,6,141,80,252,141,131,189,138,7,0,137,68,36,4,137,20,36,232,35,14,8,0,133,192,116,46,139,69,204,139,48,139,69,204,139,0,137,4,36,232,25,14,8,0,141,4,6,141,80,252,141,131,194,138,7,0,137,68,36,4,137,20,36,232,245,13,8,0,133,192,117,7,199,69,220,1,0,0, 0,139,69,204,139,0,137,4,36,232,233,13,8,0,131,248,5,118,99,139,69,204,139,48,139,69,204,139,0,137,4,36,232,210,13,8,0,141,4,6,141,80,251,141,131,199,138,7,0,137,68,36,4,137,20,36,232,174,13,8,0,133,192,116,46,139,69,204,139,48,139,69,204,139,0,137,4, 36,232,164,13,8,0,141,4,6,141,80,251,141,131,205,138,7,0,137,68,36,4,137,20,36,232,128,13,8,0,133,192,117,7,199,69,220,1,0,0,0,139,69,204,139,0,137,4,36,232,116,13,8,0,131,248,4,118,99,139,69,204,139,48,139,69,204,139,0,137,4,36,232,93,13,8,0,141,4,6, 141,80,252,141,131,76,138,7,0,137,68,36,4,137,20,36,232,57,13,8,0,133,192,116,46,139,69,204,139,48,139,69,204,139,0,137,4,36,232,47,13,8,0,141,4,6,141,80,252,141,131,211,138,7,0,137,68,36,4,137,20,36,232,11,13,8,0,133,192,117,7,199,69,220,2,0,0,0,139, 69,204,139,0,137,4,36,232,255,12,8,0,131,248,3,118,99,139,69,204,139,48,139,69,204,139,0,137,4,36,232,232,12,8,0,141,4,6,141,80,253,141,131,216,138,7,0,137,68,36,4,137,20,36,232,196,12,8,0,133,192,116,46,139,69,204,139,48,139,69,204,139,0,137,4,36,232, 186,12,8,0,141,4,6,141,80,253,141,131,220,138,7,0,137,68,36,4,137,20,36,232,150,12,8,0,133,192,117,7,199,69,220,2,0,0,0,131,125,220,0,121,7,199,69,220,0,0,0,0,131,125,236,4,117,32,131,125,220,1,117,26,141,131,224,138,7,0,137,68,36,4,139,69,8,137,4,36, 232,194,70,6,0,233,227,0,0,0,131,125,220,0,117,36,199,69,232,0,0,0,0,131,125,228,1,117,87,141,131,12,139,7,0,137,68,36,4,139,69,8,137,4,36,232,149,70,6,0,235,64,131,125,220,1,117,36,199,69,232,1,0,0,0,131,125,228,0,117,45,141,131,48,139,7,0,137,68,36, 4,139,69,8,137,4,36,232,107,70,6,0,235,22,131,125,228,255,117,10,232,182,223,0,0,137,69,232,235,6,139,69,228,137,69,232,232,166,223,0,0,59,69,232,15,149,192,15,182,192,137,69,224,255,77,244,131,69,240,8,139,85,12,139,69,244,137,2,139,85,16,139,69,240, 137,2,139,85,20,139,69,204,137,2,139,85,24,139,69,220,137,2,139,85,28,139,69,236,137,2,139,85,32,139,69,224,137,2,139,85,40,139,69,216,137,2,139,85,44,139,69,212,137,2,139,85,48,139,69,208,137,2,139,85,36,139,69,232,137,2,139,85,52,139,69,200,137,2,199, 69,180,0,0,0,0,235,7,199,69,180,255,255,255,255,139,69,180,131,196,96,91,94,201,195,85,137,229,83,129,236,100,8,0,0,232,0,0,0,0,91,139,69,8,137,133,196,247,255,255,139,69,12,137,133,192,247,255,255,141,131,215,16,8,0,139,0,139,16,137,85,244,49,210,141, 69,190,137,133,232,247,255,255,141,69,190,137,133,228,247,255,255,141,69,190,137,133,224,247,255,255,199,133,216,247,255,255,0,0,0,0,199,68,36,8,222,3,0,0,139,133,192,247,255,255,137,68,36,4,141,133,214,251,255,255,137,4,36,232,6,11,8,0,198,69,180,0, 131,125,16,2,15,133,128,2,0,0,141,133,214,251,255,255,137,4,36,232,222,10,8,0,137,194,141,133,214,251,255,255,1,208,141,80,252,141,131,247,131,7,0,137,68,36,4,137,20,36,232,179,10,8,0,133,192,116,32,199,68,36,8,232,3,0,0,141,131,247,131,7,0,137,68,36, 4,141,133,214,251,255,255,137,4,36,232,109,8,8,0,131,125,28,0,116,87,184,255,255,255,255,131,248,255,116,43,184,255,255,255,255,139,149,228,247,255,255,137,68,36,12,199,68,36,8,4,0,0,0,141,131,247,131,7,0,137,68,36,4,137,20,36,232,70,8,8,0,235,119,139, 149,228,247,255,255,199,68,36,8,4,0,0,0,141,131,247,131,7,0,137,68,36,4,137,20,36,232,138,10,0,0,235,85,184,255,255,255,255,131,248,255,116,43,184,255,255,255,255,139,149,228,247,255,255,137,68,36,12,199,68,36,8,4,0,0,0,141,131,252,131,7,0,137,68,36, 4,137,20,36,232,239,7,8,0,235,32,139,149,228,247,255,255,199,68,36,8,4,0,0,0,141,131,252,131,7,0,137,68,36,4,137,20,36,232,51,10,0,0,139,69,36,137,68,36,4,199,4,36,28,0,0,0,232,47,227,255,255,137,194,139,133,228,247,255,255,137,80,4,139,133,228,247,255, 255,199,64,8,0,0,0,0,131,125,24,3,116,42,131,125,24,4,117,12,199,133,180,247,255,255,6,0,0,0,235,10,199,133,180,247,255,255,3,0,0,0,139,141,180,247,255,255,137,141,176,247,255,255,235,10,199,133,176,247,255,255,4,0,0,0,139,69,36,137,68,36,4,139,133,176, 247,255,255,137,4,36,232,200,226,255,255,137,194,139,133,228,247,255,255,137,80,12,243,15,16,69,40,15,40,208,15,87,192,243,15,95,208,141,131,83,5,8,0,15,40,0,15,40,224,15,40,200,243,15,194,202,2,141,131,99,5,8,0,15,40,0,15,40,216,243,15,194,218,2,15, 84,225,102,15,114,241,31,15,92,212,243,15,91,194,102,15,254,193,102,15,235,195,102,15,126,194,139,69,36,137,68,36,4,137,20,36,232,95,226,255,255,137,194,139,133,228,247,255,255,137,80,16,139,85,32,139,69,36,137,68,36,4,137,20,36,232,66,226,255,255,137, 194,139,133,228,247,255,255,137,80,20,184,255,255,255,255,131,248,255,116,38,184,255,255,255,255,139,149,228,247,255,255,131,194,24,137,68,36,8,141,131,250,132,7,0,137,68,36,4,137,20,36,232,136,6,8,0,235,27,139,149,228,247,255,255,131,194,24,141,131, 250,132,7,0,137,68,36,4,137,20,36,232,102,8,0,0,139,149,228,247,255,255,131,194,24,139,69,36,137,68,36,4,137,20,36,232,93,226,255,255,199,133,216,247,255,255,28,0,0,0,233,84,7,0,0,131,125,16,1,15,133,214,3,0,0,139,69,20,15,175,69,32,15,175,69,24,137, 133,212,247,255,255,141,133,214,251,255,255,137,4,36,232,67,8,8,0,137,194,141,133,214,251,255,255,1,208,141,80,252,141,131,104,132,7,0,137,68,36,4,137,20,36,232,24,8,8,0,133,192,116,81,141,133,214,251,255,255,137,4,36,232,18,8,8,0,137,194,141,133,214, 251,255,255,1,208,141,80,251,141,131,114,132,7,0,137,68,36,4,137,20,36,232,231,7,8,0,133,192,116,32,199,68,36,8,232,3,0,0,141,131,104,132,7,0,137,68,36,4,141,133,214,251,255,255,137,4,36,232,161,5,8,0,184,255,255,255,255,131,248,255,116,43,184,255,255, 255,255,139,149,224,247,255,255,137,68,36,12,199,68,36,8,4,0,0,0,141,131,11,132,7,0,137,68,36,4,137,20,36,232,128,5,8,0,235,32,139,149,224,247,255,255,199,68,36,8,4,0,0,0,141,131,11,132,7,0,137,68,36,4,137,20,36,232,196,7,0,0,139,133,212,247,255,255, 141,80,44,139,69,36,137,68,36,4,137,20,36,232,187,224,255,255,137,194,139,133,224,247,255,255,137,80,4,184,255,255,255,255,131,248,255,116,46,184,255,255,255,255,139,149,224,247,255,255,131,194,8,137,68,36,12,199,68,36,8,4,0,0,0,141,131,16,132,7,0,137, 68,36,4,137,20,36,232,5,5,8,0,235,35,139,149,224,247,255,255,131,194,8,199,68,36,8,4,0,0,0,141,131,16,132,7,0,137,68,36,4,137,20,36,232,70,7,0,0,184,255,255,255,255,131,248,255,116,46,184,255,255,255,255,139,149,224,247,255,255,131,194,12,137,68,36,12, 199,68,36,8,4,0,0,0,141,131,27,132,7,0,137,68,36,4,137,20,36,232,170,4,8,0,235,35,139,149,224,247,255,255,131,194,12,199,68,36,8,4,0,0,0,141,131,27,132,7,0,137,68,36,4,137,20,36,232,235,6,0,0,139,69,36,137,68,36,4,199,4,36,18,0,0,0,232,231,223,255,255, 137,194,139,133,224,247,255,255,137,80,16,139,85,32,139,69,36,137,68,36,4,137,20,36,232,24,224,255,255,137,194,139,133,224,247,255,255,102,137,80,20,139,85,20,139,69,36,137,68,36,4,137,20,36,232,172,223,255,255,137,133,208,247,255,255,184,255,255,255, 255,131,248,255,116,46,184,255,255,255,255,139,149,224,247,255,255,131,194,22,137,68,36,12,199,68,36,8,4,0,0,0,141,133,208,247,255,255,137,68,36,4,137,20,36,232,197,3,8,0,235,35,139,149,224,247,255,255,131,194,22,199,68,36,8,4,0,0,0,141,133,208,247,255, 255,137,68,36,4,137,20,36,232,232,5,0,0,139,69,24,193,224,3,137,194,139,69,36,137,68,36,4,137,20,36,232,130,223,255,255,137,194,139,133,224,247,255,255,102,137,80,26,184,255,255,255,255,131,248,255,116,46,184,255,255,255,255,139,149,224,247,255,255,131, 194,28,137,68,36,12,199,68,36,8,14,0,0,0,141,131,199,26,8,0,137,68,36,4,137,20,36,232,71,3,8,0,235,35,139,149,224,247,255,255,131,194,28,199,68,36,8,14,0,0,0,141,131,199,26,8,0,137,68,36,4,137,20,36,232,106,5,0,0,139,149,212,247,255,255,139,69,36,137, 68,36,4,137,20,36,232,184,222,255,255,137,133,208,247,255,255,184,255,255,255,255,131,248,255,116,49,186,255,255,255,255,139,133,224,247,255,255,131,192,28,141,72,14,137,84,36,12,199,68,36,8,4,0,0,0,141,133,208,247,255,255,137,68,36,4,137,12,36,232,206, 2,8,0,235,38,139,133,224,247,255,255,131,192,28,141,80,14,199,68,36,8,4,0,0,0,141,133,208,247,255,255,137,68,36,4,137,20,36,232,238,4,0,0,184,255,255,255,255,131,248,255,116,47,184,255,255,255,255,139,149,224,247,255,255,131,194,28,131,194,18,137,68, 36,12,199,68,36,8,8,0,0,0,199,68,36,4,0,0,0,0,137,20,36,232,123,2,8,0,235,36,139,133,224,247,255,255,131,192,28,131,192,18,199,68,36,8,8,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,187,4,0,0,199,133,216,247,255,255,54,0,0,0,233,116,3,0,0,139,69,20,15,175, 69,32,15,175,69,24,137,133,204,247,255,255,141,133,214,251,255,255,137,4,36,232,109,4,8,0,137,194,141,133,214,251,255,255,1,208,141,80,252,141,131,254,132,7,0,137,68,36,4,137,20,36,232,66,4,8,0,133,192,116,32,199,68,36,8,232,3,0,0,141,131,254,132,7,0, 137,68,36,4,141,133,214,251,255,255,137,4,36,232,252,1,8,0,184,255,255,255,255,131,248,255,116,43,184,255,255,255,255,139,149,232,247,255,255,137,68,36,12,199,68,36,8,4,0,0,0,141,131,1,132,7,0,137,68,36,4,137,20,36,232,219,1,8,0,235,32,139,149,232,247, 255,255,199,68,36,8,4,0,0,0,141,131,1,132,7,0,137,68,36,4,137,20,36,232,31,4,0,0,139,133,204,247,255,255,141,80,36,139,69,36,137,68,36,4,137,20,36,232,22,221,255,255,137,194,139,133,232,247,255,255,137,80,4,184,255,255,255,255,131,248,255,116,46,184, 255,255,255,255,139,149,232,247,255,255,131,194,8,137,68,36,12,199,68,36,8,4,0,0,0,141,131,6,132,7,0,137,68,36,4,137,20,36,232,96,1,8,0,235,35,139,149,232,247,255,255,131,194,8,199,68,36,8,4,0,0,0,141,131,6,132,7,0,137,68,36,4,137,20,36,232,161,3,0,0, 184,255,255,255,255,131,248,255,116,46,184,255,255,255,255,139,149,232,247,255,255,131,194,12,137,68,36,12,199,68,36,8,4,0,0,0,141,131,21,132,7,0,137,68,36,4,137,20,36,232,5,1,8,0,235,35,139,149,232,247,255,255,131,194,12,199,68,36,8,4,0,0,0,141,131, 21,132,7,0,137,68,36,4,137,20,36,232,70,3,0,0,139,69,36,137,68,36,4,199,4,36,16,0,0,0,232,66,220,255,255,137,194,139,133,232,247,255,255,137,80,16,131,125,24,4,117,12,199,133,184,247,255,255,3,0,0,0,235,10,199,133,184,247,255,255,1,0,0,0,139,69,36,137, 68,36,4,139,149,184,247,255,255,137,20,36,232,84,220,255,255,137,194,139,133,232,247,255,255,102,137,80,20,139,85,32,139,69,36,137,68,36,4,137,20,36,232,54,220,255,255,137,194,139,133,232,247,255,255,102,137,80,22,243,15,16,69,40,15,40,208,15,87,192, 243,15,95,208,141,131,83,5,8,0,15,40,0,15,40,224,15,40,200,243,15,194,202,2,141,131,99,5,8,0,15,40,0,15,40,216,243,15,194,218,2,15,84,225,102,15,114,241,31,15,92,212,243,15,91,194,102,15,254,193,102,15,235,195,102,15,126,194,139,69,36,137,68,36,4,137, 20,36,232,126,219,255,255,137,194,139,133,232,247,255,255,137,80,24,243,15,42,69,32,15,40,200,243,15,89,77,40,243,15,42,69,24,243,15,89,193,243,15,44,192,137,194,139,69,36,137,68,36,4,137,20,36,232,72,219,255,255,137,194,139,133,232,247,255,255,137,80, 28,139,69,32,15,175,69,24,137,194,139,69,36,137,68,36,4,137,20,36,232,115,219,255,255,137,194,139,133,232,247,255,255,102,137,80,32,139,69,24,193,224,3,137,194,139,69,36,137,68,36,4,137,20,36,232,80,219,255,255,137,194,139,133,232,247,255,255,102,137, 80,34,184,255,255,255,255,131,248,255,116,46,184,255,255,255,255,139,149,232,247,255,255,131,194,36,137,68,36,12,199,68,36,8,4,0,0,0,141,131,241,179,7,0,137,68,36,4,137,20,36,232,75,255,7,0,235,35,139,149,232,247,255,255,131,194,36,199,68,36,8,4,0,0, 0,141,131,241,179,7,0,137,68,36,4,137,20,36,232,140,1,0,0,139,149,204,247,255,255,139,69,36,137,68,36,4,137,20,36,232,134,218,255,255,137,194,139,133,232,247,255,255,137,80,40,199,133,216,247,255,255,44,0,0,0,199,68,36,12,232,3,0,0,141,133,238,247,255, 255,137,68,36,8,141,133,214,251,255,255,137,68,36,4,139,133,196,247,255,255,137,4,36,232,63,3,1,0,141,133,238,247,255,255,137,68,36,4,141,133,238,247,255,255,137,4,36,232,58,21,6,0,199,68,36,8,182,1,0,0,199,68,36,4,1,6,0,0,141,133,238,247,255,255,137, 4,36,232,206,255,7,0,137,133,220,247,255,255,131,189,220,247,255,255,0,121,12,199,133,188,247,255,255,255,255,255,255,235,77,139,133,216,247,255,255,137,68,36,8,141,69,190,137,68,36,4,139,133,220,247,255,255,137,4,36,232,180,0,8,0,59,133,216,247,255, 255,125,26,139,133,220,247,255,255,137,4,36,232,154,254,7,0,199,133,188,247,255,255,255,255,255,255,235,12,139,141,220,247,255,255,137,141,188,247,255,255,139,133,188,247,255,255,141,147,215,16,8,0,139,18,139,77,244,51,10,116,5,232,2,254,7,0,129,196, 100,8,0,0,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,228,253,7,0,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137, 4,36,232,144,253,7,0,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,114,253,7,0,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139, 69,12,137,68,36,4,139,69,8,137,4,36,232,114,253,7,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,28,59,69,24,15,141,208,2,0,0,129,125,24,255,255,255,127,116,35,139,69,24,137,68,36,12,139,69,28,137,68,36,8,141,131,34,121,7,0,137,68,36,4,139, 69,8,137,4,36,232,160,57,6,0,131,125,20,0,15,133,215,0,0,0,139,69,28,15,175,69,32,137,69,244,199,68,36,12,0,0,0,0,199,68,36,4,4,0,0,0,199,68,36,8,0,0,0,0,139,69,16,137,4,36,232,14,254,7,0,9,208,133,192,15,132,59,2,0,0,139,69,244,141,80,36,139,69,36,137, 68,36,4,137,20,36,232,74,216,255,255,137,69,240,199,68,36,8,4,0,0,0,141,69,240,137,68,36,4,139,69,16,137,4,36,232,10,255,7,0,131,248,3,15,142,0,2,0,0,199,68,36,12,0,0,0,0,199,68,36,4,40,0,0,0,199,68,36,8,0,0,0,0,139,69,16,137,4,36,232,166,253,7,0,9,208, 133,192,15,132,211,1,0,0,139,85,244,139,69,36,137,68,36,4,137,20,36,232,229,215,255,255,137,69,240,199,68,36,8,4,0,0,0,141,69,240,137,68,36,4,139,69,16,137,4,36,232,165,254,7,0,131,248,3,15,142,155,1,0,0,131,125,20,1,15,133,58,1,0,0,199,68,36,12,0,0, 0,0,199,68,36,4,22,0,0,0,199,68,36,8,0,0,0,0,139,69,16,137,4,36,232,55,253,7,0,9,208,133,192,15,132,100,1,0,0,139,85,28,139,69,36,137,68,36,4,137,20,36,232,118,215,255,255,137,69,240,199,68,36,8,4,0,0,0,141,69,240,137,68,36,4,139,69,16,137,4,36,232,54, 254,7,0,131,248,3,15,142,44,1,0,0,199,68,36,12,0,0,0,0,199,68,36,4,4,0,0,0,199,68,36,8,0,0,0,0,139,69,16,137,4,36,232,210,252,7,0,9,208,133,192,15,132,255,0,0,0,139,69,28,15,175,69,32,131,192,38,137,194,139,69,36,137,68,36,4,137,20,36,232,8,215,255,255, 137,69,240,199,68,36,8,4,0,0,0,141,69,240,137,68,36,4,139,69,16,137,4,36,232,200,253,7,0,131,248,3,15,142,190,0,0,0,199,68,36,12,0,0,0,0,199,68,36,4,42,0,0,0,199,68,36,8,0,0,0,0,139,69,16,137,4,36,232,100,252,7,0,9,208,133,192,15,132,145,0,0,0,139,69, 28,15,175,69,32,137,194,139,69,36,137,68,36,4,137,20,36,232,157,214,255,255,137,69,240,199,68,36,8,4,0,0,0,141,69,240,137,68,36,4,139,69,16,137,4,36,232,93,253,7,0,131,248,3,126,87,131,125,20,2,117,121,199,69,240,255,255,255,255,199,68,36,12,0,0,0,0, 199,68,36,4,8,0,0,0,199,68,36,8,0,0,0,0,139,69,16,137,4,36,232,240,251,7,0,9,208,133,192,116,33,199,68,36,8,4,0,0,0,141,69,240,137,68,36,4,139,69,16,137,4,36,232,8,253,7,0,131,248,3,126,2,235,40,232,104,250,7,0,139,0,137,4,36,232,182,252,7,0,137,68,36, 8,139,69,12,137,68,36,4,141,131,81,121,7,0,137,4,36,232,23,51,6,0,131,196,36,91,201,195,85,137,229,131,236,72,232,0,0,0,0,89,139,69,28,15,175,69,8,137,69,224,199,69,244,0,0,0,0,139,69,16,137,69,236,233,86,4,0,0,131,125,28,2,15,133,112,1,0,0,243,15,16, 77,36,141,129,124,246,7,0,243,15,16,0,243,15,89,193,243,15,17,69,216,131,125,32,0,15,132,167,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,12,139,16,139,69,24,193,224,2,141,4,2,137,69,228,235,116,139,69,228,243,15,16,0,243, 15,89,69,216,243,15,90,200,141,129,100,246,7,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,212,129,109,212,0,128,0,0,129,125,212,1,128,255,255,125,7,199,69,212,1,128,255,255,129,125,212,255,127,0,0,126,7,199,69,212,255,127,0,0,139,69,212,193,248,8, 137,194,139,69,232,136,16,139,85,232,66,139,69,212,136,2,255,69,240,139,69,224,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,124,132,233,122,3,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,12,139,16,139,69,24,193, 224,2,141,4,2,137,69,228,235,116,139,69,228,243,15,16,0,243,15,89,69,216,243,15,90,200,141,129,100,246,7,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,208,129,109,208,0,128,0,0,129,125,208,1,128,255,255,125,7,199,69,208,1,128,255,255,129,125,208,255, 127,0,0,126,7,199,69,208,255,127,0,0,139,85,232,66,139,69,208,193,248,8,136,2,139,69,208,137,194,139,69,232,136,16,255,69,240,139,69,224,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,124,132,233,211,2,0,0,131,125,28,3,15,133,154,1,0,0,243, 15,16,77,36,141,129,128,246,7,0,243,15,16,0,243,15,89,193,243,15,17,69,204,131,125,32,0,15,132,188,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,12,139,16,139,69,24,193,224,2,141,4,2,137,69,228,233,130,0,0,0,139,69,228,243, 15,16,0,243,15,89,69,204,243,15,90,200,141,129,108,246,7,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,200,129,109,200,0,0,128,0,129,125,200,1,0,128,255,125,7,199,69,200,1,0,128,255,129,125,200,255,255,127,0,126,7,199,69,200,255,255,127,0,139,69,200, 193,248,16,137,194,139,69,232,136,16,139,85,232,66,139,69,200,193,248,8,136,2,139,85,232,131,194,2,139,69,200,136,2,255,69,240,139,69,224,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,15,140,114,255,255,255,233,235,1,0,0,199,69,240,0,0,0, 0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,12,139,16,139,69,24,193,224,2,141,4,2,137,69,228,233,130,0,0,0,139,69,228,243,15,16,0,243,15,89,69,204,243,15,90,200,141,129,108,246,7,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,196,129,109,196, 0,0,128,0,129,125,196,1,0,128,255,125,7,199,69,196,1,0,128,255,129,125,196,255,255,127,0,126,7,199,69,196,255,255,127,0,139,85,232,131,194,2,139,69,196,193,248,16,136,2,139,85,232,66,139,69,196,193,248,8,136,2,139,69,196,137,194,139,69,232,136,16,255, 69,240,139,69,224,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,15,140,114,255,255,255,233,47,1,0,0,131,125,28,4,15,133,37,1,0,0,131,125,32,0,15,132,144,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,12,139,16,139, 69,24,193,224,2,141,4,2,137,69,228,235,93,139,69,228,243,15,16,0,243,15,89,69,36,243,15,17,69,192,141,69,192,139,0,137,69,220,139,69,220,193,248,24,137,194,139,69,232,136,16,139,85,232,66,139,69,220,193,248,16,136,2,139,85,232,131,194,2,139,69,220,193, 248,8,136,2,139,85,232,131,194,3,139,69,220,136,2,255,69,240,139,69,224,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,124,155,233,139,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,12,139,16,139,69,24,193,224,2,141, 4,2,137,69,228,235,93,139,69,228,243,15,16,0,243,15,89,69,36,243,15,17,69,192,141,69,192,139,0,137,69,220,139,85,232,131,194,3,139,69,220,193,248,24,136,2,139,85,232,131,194,2,139,69,220,193,248,16,136,2,139,85,232,66,139,69,220,193,248,8,136,2,139,69, 220,137,194,139,69,232,136,16,255,69,240,139,69,224,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,124,155,255,69,244,139,69,28,1,69,236,139,69,244,59,69,8,15,140,158,251,255,255,201,195,85,137,229,131,236,72,232,0,0,0,0,89,139,69,28,15,175, 69,8,137,69,224,199,69,244,0,0,0,0,139,69,16,137,69,236,233,86,4,0,0,131,125,28,2,15,133,112,1,0,0,243,15,16,77,36,141,129,240,241,7,0,243,15,16,0,243,15,89,193,243,15,17,69,216,131,125,32,0,15,132,167,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139, 69,244,193,224,2,3,69,12,139,16,139,69,24,193,224,2,141,4,2,137,69,228,235,116,139,69,228,243,15,16,0,243,15,89,69,216,243,15,90,200,141,129,216,241,7,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,212,129,109,212,0,128,0,0,129,125,212,1,128,255,255, 125,7,199,69,212,1,128,255,255,129,125,212,255,127,0,0,126,7,199,69,212,255,127,0,0,139,69,212,193,248,8,137,194,139,69,232,136,16,139,85,232,66,139,69,212,136,2,255,69,240,139,69,224,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,124,132, 233,122,3,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,12,139,16,139,69,24,193,224,2,141,4,2,137,69,228,235,116,139,69,228,243,15,16,0,243,15,89,69,216,243,15,90,200,141,129,216,241,7,0,242,15,16,0,242,15,88,193,242,15,44,192, 137,69,208,129,109,208,0,128,0,0,129,125,208,1,128,255,255,125,7,199,69,208,1,128,255,255,129,125,208,255,127,0,0,126,7,199,69,208,255,127,0,0,139,85,232,66,139,69,208,193,248,8,136,2,139,69,208,137,194,139,69,232,136,16,255,69,240,139,69,224,1,69,232, 139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,124,132,233,211,2,0,0,131,125,28,3,15,133,154,1,0,0,243,15,16,77,36,141,129,244,241,7,0,243,15,16,0,243,15,89,193,243,15,17,69,204,131,125,32,0,15,132,188,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232, 139,69,244,193,224,2,3,69,12,139,16,139,69,24,193,224,2,141,4,2,137,69,228,233,130,0,0,0,139,69,228,243,15,16,0,243,15,89,69,204,243,15,90,200,141,129,224,241,7,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,200,129,109,200,0,0,128,0,129,125,200,1, 0,128,255,125,7,199,69,200,1,0,128,255,129,125,200,255,255,127,0,126,7,199,69,200,255,255,127,0,139,69,200,193,248,16,137,194,139,69,232,136,16,139,85,232,66,139,69,200,193,248,8,136,2,139,85,232,131,194,2,139,69,200,136,2,255,69,240,139,69,224,1,69, 232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,15,140,114,255,255,255,233,235,1,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,12,139,16,139,69,24,193,224,2,141,4,2,137,69,228,233,130,0,0,0,139,69,228,243,15,16,0,243,15, 89,69,204,243,15,90,200,141,129,224,241,7,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,196,129,109,196,0,0,128,0,129,125,196,1,0,128,255,125,7,199,69,196,1,0,128,255,129,125,196,255,255,127,0,126,7,199,69,196,255,255,127,0,139,85,232,131,194,2,139, 69,196,193,248,16,136,2,139,85,232,66,139,69,196,193,248,8,136,2,139,69,196,137,194,139,69,232,136,16,255,69,240,139,69,224,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,15,140,114,255,255,255,233,47,1,0,0,131,125,28,4,15,133,37,1,0,0,131, 125,32,0,15,132,144,0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,12,139,16,139,69,24,193,224,2,141,4,2,137,69,228,235,93,139,69,228,243,15,16,0,243,15,89,69,36,243,15,17,69,192,141,69,192,139,0,137,69,220,139,69,220,193,248, 24,137,194,139,69,232,136,16,139,85,232,66,139,69,220,193,248,16,136,2,139,85,232,131,194,2,139,69,220,193,248,8,136,2,139,85,232,131,194,3,139,69,220,136,2,255,69,240,139,69,224,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,124,155,233,139, 0,0,0,199,69,240,0,0,0,0,139,69,236,137,69,232,139,69,244,193,224,2,3,69,12,139,16,139,69,24,193,224,2,141,4,2,137,69,228,235,93,139,69,228,243,15,16,0,243,15,89,69,36,243,15,17,69,192,141,69,192,139,0,137,69,220,139,85,232,131,194,3,139,69,220,193,248, 24,136,2,139,85,232,131,194,2,139,69,220,193,248,16,136,2,139,85,232,66,139,69,220,193,248,8,136,2,139,69,220,137,194,139,69,232,136,16,255,69,240,139,69,224,1,69,232,139,69,40,193,224,2,1,69,228,139,69,240,59,69,20,124,155,255,69,244,139,69,28,1,69, 236,139,69,244,59,69,8,15,140,158,251,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,67,33,8,0,139,0,137,4,36,232,79,101,5,0,137,69,244,232,202,243,0,0,137,194,139,69,244,137,80,28,139,85,244,141,131,127,248,7,0,139,0,137,68,36,4,137, 20,36,232,246,87,5,0,139,69,244,131,196,36,91,201,195,85,137,229,87,86,83,129,236,188,6,0,0,232,0,0,0,0,91,139,69,8,137,133,116,249,255,255,139,69,12,137,133,112,249,255,255,139,69,20,137,133,108,249,255,255,141,131,157,248,7,0,139,0,139,16,137,85,228, 49,210,199,133,220,251,255,255,255,255,255,255,199,133,216,251,255,255,0,0,0,0,199,133,212,251,255,255,0,0,0,0,199,133,208,251,255,255,0,0,0,0,199,133,204,251,255,255,0,0,0,0,199,133,192,251,255,255,0,0,0,0,199,133,188,251,255,255,0,0,0,0,199,133,180, 251,255,255,0,9,61,0,199,133,176,251,255,255,0,0,0,0,199,133,172,251,255,255,255,255,255,127,199,133,168,251,255,255,255,255,255,255,233,176,2,0,0,139,133,108,249,255,255,139,64,4,139,0,64,137,133,148,251,255,255,141,131,236,107,7,0,137,68,36,4,139,133, 148,251,255,255,137,4,36,232,83,242,7,0,133,192,117,83,131,125,16,1,15,142,76,10,0,0,139,133,108,249,255,255,131,192,8,139,0,131,248,1,15,133,56,10,0,0,139,133,108,249,255,255,131,192,8,243,15,16,64,4,243,15,44,192,137,133,192,251,255,255,131,189,192, 251,255,255,0,15,136,19,10,0,0,131,109,16,2,131,133,108,249,255,255,16,233,47,2,0,0,141,131,255,108,7,0,137,68,36,4,139,133,148,251,255,255,137,4,36,232,228,241,7,0,133,192,15,133,101,1,0,0,131,125,16,4,15,142,217,9,0,0,139,133,108,249,255,255,131,192, 8,139,0,131,248,1,15,133,197,9,0,0,139,133,108,249,255,255,131,192,8,243,15,16,64,4,243,15,44,192,137,133,220,251,255,255,131,189,220,251,255,255,0,15,136,160,9,0,0,139,133,108,249,255,255,131,192,16,139,0,131,248,1,15,133,140,9,0,0,139,133,108,249,255, 255,131,192,16,243,15,16,64,4,243,15,44,192,137,133,216,251,255,255,139,133,216,251,255,255,133,192,15,142,102,9,0,0,139,133,216,251,255,255,131,248,64,15,143,87,9,0,0,139,133,108,249,255,255,131,192,24,139,0,131,248,1,15,133,67,9,0,0,139,133,108,249, 255,255,131,192,24,243,15,16,64,4,243,15,44,192,137,133,212,251,255,255,139,133,212,251,255,255,131,248,1,15,142,28,9,0,0,139,133,212,251,255,255,131,248,4,15,143,13,9,0,0,139,133,108,249,255,255,131,192,32,139,0,131,248,2,15,133,249,8,0,0,139,133,108, 249,255,255,131,192,32,139,64,4,139,0,15,182,0,136,133,227,251,255,255,128,189,227,251,255,255,98,116,22,128,189,227,251,255,255,108,116,13,128,189,227,251,255,255,110,15,133,195,8,0,0,128,189,227,251,255,255,98,117,12,199,133,208,251,255,255,1,0,0,0, 235,32,128,189,227,251,255,255,108,117,12,199,133,208,251,255,255,0,0,0,0,235,11,232,74,196,0,0,137,133,208,251,255,255,131,109,16,5,131,133,108,249,255,255,40,233,170,0,0,0,141,131,129,122,7,0,137,68,36,4,139,133,148,251,255,255,137,4,36,232,95,240, 7,0,133,192,117,22,199,133,204,251,255,255,1,0,0,0,255,77,16,131,133,108,249,255,255,8,235,120,141,131,6,109,7,0,137,68,36,4,139,133,148,251,255,255,137,4,36,232,45,240,7,0,133,192,15,133,44,8,0,0,131,125,16,1,15,142,34,8,0,0,139,133,108,249,255,255, 131,192,8,139,0,131,248,1,15,133,14,8,0,0,139,133,108,249,255,255,131,192,8,243,15,16,64,4,243,15,44,192,137,133,180,251,255,255,131,189,180,251,255,255,0,15,136,233,7,0,0,199,133,204,251,255,255,1,0,0,0,131,109,16,2,131,133,108,249,255,255,16,131,125, 16,0,126,35,139,133,108,249,255,255,139,0,131,248,2,117,22,139,133,108,249,255,255,139,64,4,139,0,15,182,0,60,45,15,132,39,253,255,255,131,125,16,1,15,142,161,7,0,0,131,125,16,65,15,143,151,7,0,0,139,133,108,249,255,255,139,0,131,248,2,15,133,134,7,0, 0,139,133,108,249,255,255,139,64,4,139,0,137,133,164,251,255,255,255,77,16,131,133,108,249,255,255,8,199,133,200,251,255,255,0,0,0,0,233,57,1,0,0,139,133,200,251,255,255,193,224,3,3,133,108,249,255,255,139,0,131,248,2,15,133,66,7,0,0,139,181,200,251, 255,255,141,131,37,248,7,0,139,0,139,16,139,133,200,251,255,255,193,224,3,3,133,108,249,255,255,139,64,4,137,84,36,4,137,4,36,232,160,102,5,0,137,132,181,120,250,255,255,139,132,181,120,250,255,255,133,192,117,53,139,133,200,251,255,255,193,224,3,3,133, 108,249,255,255,139,64,4,139,0,137,68,36,8,141,131,14,109,7,0,137,68,36,4,139,133,116,249,255,255,137,4,36,232,48,41,6,0,233,1,7,0,0,139,133,200,251,255,255,193,224,2,137,194,141,133,120,249,255,255,1,208,139,149,200,251,255,255,139,148,149,120,250,255, 255,137,68,36,8,141,133,124,251,255,255,137,68,36,4,137,20,36,232,244,178,0,0,133,192,117,38,139,133,200,251,255,255,193,224,3,3,133,108,249,255,255,139,64,4,139,0,137,68,36,4,141,131,208,102,7,0,137,4,36,232,159,39,6,0,131,189,188,251,255,255,0,116, 47,139,133,124,251,255,255,57,133,188,251,255,255,116,33,131,189,204,251,255,255,0,117,24,141,131,33,109,7,0,137,4,36,232,184,36,6,0,199,133,204,251,255,255,1,0,0,0,139,133,124,251,255,255,137,133,188,251,255,255,255,133,200,251,255,255,139,133,200,251, 255,255,59,69,16,15,140,184,254,255,255,139,133,116,249,255,255,139,80,28,139,133,192,251,255,255,137,68,36,28,141,133,172,251,255,255,137,68,36,24,141,133,216,251,255,255,137,68,36,20,141,133,208,251,255,255,137,68,36,16,141,133,212,251,255,255,137, 68,36,12,139,133,220,251,255,255,137,68,36,8,139,133,164,251,255,255,137,68,36,4,137,20,36,232,194,210,255,255,137,133,168,251,255,255,131,189,168,251,255,255,0,121,96,232,80,235,7,0,139,0,131,248,5,116,23,232,68,235,7,0,139,0,137,4,36,232,146,237,7, 0,137,133,104,249,255,255,235,12,141,139,93,109,7,0,137,141,104,249,255,255,139,181,104,249,255,255,137,116,36,12,139,133,164,251,255,255,137,68,36,8,141,131,122,109,7,0,137,68,36,4,139,133,116,249,255,255,137,4,36,232,177,39,6,0,233,130,5,0,0,131,189, 204,251,255,255,0,15,132,55,2,0,0,199,68,36,12,1,0,0,0,199,68,36,4,0,0,0,0,199,68,36,8,0,0,0,0,139,133,168,251,255,255,137,4,36,232,30,236,7,0,137,133,144,251,255,255,199,68,36,12,2,0,0,0,199,68,36,4,0,0,0,0,199,68,36,8,0,0,0,0,139,133,168,251,255,255, 137,4,36,232,242,235,7,0,137,133,140,251,255,255,131,189,144,251,255,255,0,120,9,131,189,140,251,255,255,0,121,29,141,131,146,109,7,0,137,68,36,4,139,133,116,249,255,255,137,4,36,232,29,39,6,0,233,238,4,0,0,139,133,144,251,255,255,137,194,193,250,31, 199,68,36,12,0,0,0,0,137,68,36,4,137,84,36,8,139,133,168,251,255,255,137,4,36,232,148,235,7,0,139,149,144,251,255,255,139,133,140,251,255,255,137,193,41,209,139,149,216,251,255,255,139,133,212,251,255,255,15,175,194,137,202,137,198,137,208,193,250,31, 247,254,137,133,136,251,255,255,139,133,136,251,255,255,59,133,180,251,255,255,126,46,139,133,180,251,255,255,137,68,36,8,141,131,161,109,7,0,137,68,36,4,139,133,116,249,255,255,137,4,36,232,143,38,6,0,139,133,180,251,255,255,137,133,136,251,255,255, 139,141,172,251,255,255,139,149,216,251,255,255,139,133,212,251,255,255,15,175,194,137,202,137,198,137,208,193,250,31,247,254,59,133,136,251,255,255,125,38,139,141,172,251,255,255,139,149,216,251,255,255,139,133,212,251,255,255,15,175,194,137,202,137, 198,137,208,193,250,31,247,254,137,133,136,251,255,255,139,133,136,251,255,255,137,133,188,251,255,255,199,133,200,251,255,255,0,0,0,0,233,163,0,0,0,139,133,200,251,255,255,139,148,133,120,250,255,255,139,133,188,251,255,255,137,68,36,4,137,20,36,232, 116,191,0,0,139,133,200,251,255,255,139,132,133,120,250,255,255,199,68,36,4,0,0,0,0,137,4,36,232,175,176,0,0,139,133,200,251,255,255,193,224,2,137,194,141,133,120,249,255,255,1,208,139,149,200,251,255,255,139,148,149,120,250,255,255,137,68,36,8,141,133, 124,251,255,255,137,68,36,4,137,20,36,232,167,175,0,0,139,133,124,251,255,255,59,133,136,251,255,255,116,29,141,131,204,109,7,0,137,68,36,4,139,133,116,249,255,255,137,4,36,232,130,37,6,0,233,83,3,0,0,255,133,200,251,255,255,139,133,200,251,255,255,59, 69,16,15,140,78,255,255,255,131,189,188,251,255,255,0,117,10,199,133,188,251,255,255,255,255,255,127,139,141,172,251,255,255,139,149,216,251,255,255,139,133,212,251,255,255,15,175,194,137,202,137,198,137,208,193,250,31,247,254,59,133,188,251,255,255, 125,38,139,141,172,251,255,255,139,149,216,251,255,255,139,133,212,251,255,255,15,175,194,137,202,137,198,137,208,193,250,31,247,254,137,133,188,251,255,255,141,131,218,109,7,0,137,68,36,4,139,133,168,251,255,255,137,4,36,232,16,233,7,0,137,133,152,251, 255,255,139,149,216,251,255,255,139,133,212,251,255,255,15,175,194,186,0,4,0,0,137,193,137,208,193,250,31,247,249,137,133,160,251,255,255,199,133,176,251,255,255,0,0,0,0,233,216,0,0,0,139,149,176,251,255,255,139,133,188,251,255,255,41,208,137,133,132, 251,255,255,139,133,160,251,255,255,57,133,132,251,255,255,15,78,133,132,251,255,255,137,133,132,251,255,255,139,141,132,251,255,255,139,149,216,251,255,255,139,133,212,251,255,255,15,175,194,137,194,139,133,152,251,255,255,137,68,36,12,137,76,36,8,137, 84,36,4,141,133,228,251,255,255,137,4,36,232,158,232,7,0,137,133,156,251,255,255,131,189,156,251,255,255,0,126,119,139,133,208,251,255,255,139,149,212,251,255,255,141,141,228,251,255,255,141,181,120,249,255,255,139,189,216,251,255,255,199,68,36,32,1, 0,0,0,137,68,36,28,137,84,36,24,139,133,156,251,255,255,137,68,36,20,137,76,36,16,139,133,176,251,255,255,137,68,36,12,137,116,36,8,139,69,16,137,68,36,4,137,60,36,232,194,211,255,255,139,133,156,251,255,255,1,133,176,251,255,255,139,133,176,251,255, 255,59,133,188,251,255,255,15,140,22,255,255,255,199,133,200,251,255,255,0,0,0,0,233,128,0,0,0,139,133,200,251,255,255,193,224,2,137,194,141,133,120,249,255,255,1,208,139,149,200,251,255,255,139,148,149,120,250,255,255,137,68,36,8,141,133,124,251,255, 255,137,68,36,4,137,20,36,232,135,173,0,0,139,133,176,251,255,255,137,133,196,251,255,255,235,40,139,133,200,251,255,255,139,148,133,120,249,255,255,139,133,196,251,255,255,193,224,2,1,194,141,131,249,234,7,0,139,0,137,2,255,133,196,251,255,255,139,133, 124,251,255,255,57,133,196,251,255,255,124,202,255,133,200,251,255,255,139,133,200,251,255,255,59,69,16,15,140,113,255,255,255,139,133,216,251,255,255,137,133,200,251,255,255,235,108,139,133,200,251,255,255,139,148,133,120,250,255,255,141,133,120,251, 255,255,137,68,36,8,141,133,124,251,255,255,137,68,36,4,137,20,36,232,247,172,0,0,199,133,196,251,255,255,0,0,0,0,235,35,139,133,196,251,255,255,193,224,2,137,194,139,133,120,251,255,255,1,194,141,131,249,234,7,0,139,0,137,2,255,133,196,251,255,255,139, 133,124,251,255,255,57,133,196,251,255,255,124,207,255,133,200,251,255,255,139,133,200,251,255,255,59,69,16,124,137,199,133,200,251,255,255,0,0,0,0,235,27,139,133,200,251,255,255,139,132,133,120,250,255,255,137,4,36,232,136,171,0,0,255,133,200,251,255, 255,139,133,200,251,255,255,59,69,16,124,218,139,133,152,251,255,255,137,4,36,232,133,230,7,0,199,133,168,251,255,255,255,255,255,255,235,52,141,131,221,109,7,0,137,68,36,4,139,133,116,249,255,255,137,4,36,232,70,34,6,0,141,131,9,110,7,0,137,4,36,232, 83,30,6,0,141,131,65,110,7,0,137,4,36,232,69,30,6,0,131,189,168,251,255,255,0,120,14,139,133,168,251,255,255,137,4,36,232,236,229,7,0,243,15,42,133,176,251,255,255,139,133,116,249,255,255,139,64,12,243,15,17,68,36,4,137,4,36,232,6,78,5,0,141,131,157, 248,7,0,139,0,139,117,228,51,48,116,5,232,83,229,7,0,129,196,188,6,0,0,91,94,95,201,195,85,137,229,87,86,83,129,236,220,6,0,0,232,0,0,0,0,91,139,69,8,137,133,116,249,255,255,139,69,12,137,133,112,249,255,255,139,69,20,137,133,108,249,255,255,141,131, 225,236,7,0,139,0,139,16,137,85,228,49,210,199,133,172,251,255,255,0,9,61,0,199,133,168,251,255,255,0,0,0,0,199,133,156,251,255,255,255,255,255,255,141,131,61,223,7,0,139,0,137,133,148,251,255,255,141,133,144,251,255,255,137,68,36,44,141,133,180,251, 255,255,137,68,36,40,141,133,184,251,255,255,137,68,36,36,141,133,200,251,255,255,137,68,36,32,141,133,216,251,255,255,137,68,36,28,141,133,208,251,255,255,137,68,36,24,141,133,220,251,255,255,137,68,36,20,141,133,204,251,255,255,137,68,36,16,141,133, 140,251,255,255,137,68,36,12,141,133,108,249,255,255,137,68,36,8,141,69,16,137,68,36,4,139,133,116,249,255,255,137,4,36,232,216,212,255,255,133,192,15,133,192,6,0,0,139,69,16,137,133,188,251,255,255,131,189,188,251,255,255,0,15,142,170,6,0,0,131,189, 188,251,255,255,64,15,143,157,6,0,0,243,15,16,133,144,251,255,255,141,131,61,223,7,0,243,15,16,8,15,46,200,119,2,235,11,232,66,131,5,0,217,157,144,251,255,255,199,133,196,251,255,255,0,0,0,0,233,12,2,0,0,139,133,196,251,255,255,193,224,3,137,194,139, 133,108,249,255,255,141,4,2,139,0,131,248,2,15,133,75,6,0,0,139,181,196,251,255,255,141,131,105,236,7,0,139,0,139,8,139,133,196,251,255,255,193,224,3,137,194,139,133,108,249,255,255,141,4,2,139,64,4,137,76,36,4,137,4,36,232,114,93,5,0,137,132,181,124, 250,255,255,139,132,181,124,250,255,255,133,192,117,58,139,133,196,251,255,255,193,224,3,137,194,139,133,108,249,255,255,141,4,2,139,64,4,139,0,137,68,36,8,141,131,82,97,7,0,137,68,36,4,139,133,116,249,255,255,137,4,36,232,253,31,6,0,233,14,6,0,0,139, 133,196,251,255,255,193,224,2,137,194,141,133,124,249,255,255,1,208,139,149,196,251,255,255,139,148,149,124,250,255,255,137,68,36,8,141,133,136,251,255,255,137,68,36,4,137,20,36,232,193,169,0,0,133,192,117,43,139,133,196,251,255,255,193,224,3,137,194, 139,133,108,249,255,255,141,4,2,139,64,4,139,0,137,68,36,4,141,131,20,91,7,0,137,4,36,232,103,30,6,0,139,149,136,251,255,255,139,133,184,251,255,255,41,194,139,133,180,251,255,255,57,194,125,20,139,133,136,251,255,255,139,149,184,251,255,255,41,208,137, 133,180,251,255,255,199,133,192,251,255,255,0,0,0,0,233,182,0,0,0,139,133,196,251,255,255,139,148,133,124,249,255,255,139,133,192,251,255,255,193,224,2,141,4,2,243,15,16,0,15,46,133,148,251,255,255,119,2,235,35,139,133,196,251,255,255,139,148,133,124, 249,255,255,139,133,192,251,255,255,193,224,2,141,4,2,139,0,137,133,148,251,255,255,235,101,139,133,196,251,255,255,139,148,133,124,249,255,255,139,133,192,251,255,255,193,224,2,141,4,2,243,15,16,8,141,131,125,225,7,0,15,40,0,15,87,193,15,46,133,148, 251,255,255,119,2,235,49,139,133,196,251,255,255,139,148,133,124,249,255,255,139,133,192,251,255,255,193,224,2,141,4,2,243,15,16,8,141,131,125,225,7,0,15,40,0,15,87,193,243,15,17,133,148,251,255,255,255,133,192,251,255,255,139,133,136,251,255,255,57, 133,192,251,255,255,15,140,56,255,255,255,255,133,196,251,255,255,139,133,196,251,255,255,59,133,188,251,255,255,15,140,226,253,255,255,139,133,180,251,255,255,133,192,127,39,139,133,184,251,255,255,137,68,36,8,141,131,201,98,7,0,137,68,36,4,139,133, 116,249,255,255,137,4,36,232,76,30,6,0,233,93,4,0,0,139,149,144,251,255,255,139,141,208,251,255,255,139,181,216,251,255,255,139,189,220,251,255,255,139,133,180,251,255,255,137,133,76,249,255,255,139,133,204,251,255,255,137,133,80,249,255,255,139,133, 140,251,255,255,139,0,137,133,84,249,255,255,137,84,36,32,137,76,36,28,139,133,188,251,255,255,137,68,36,24,137,116,36,20,137,124,36,16,139,149,76,249,255,255,137,84,36,12,139,141,80,249,255,255,137,76,36,8,139,133,84,249,255,255,137,68,36,4,139,133, 112,249,255,255,137,4,36,232,250,215,255,255,137,133,156,251,255,255,131,189,156,251,255,255,0,121,52,232,248,224,7,0,139,0,137,4,36,232,70,227,7,0,137,194,139,133,140,251,255,255,139,0,137,84,36,8,137,68,36,4,141,131,243,98,7,0,137,4,36,232,160,25,6, 0,233,150,3,0,0,139,133,200,251,255,255,133,192,117,126,139,133,220,251,255,255,131,248,4,116,75,141,131,65,223,7,0,243,15,16,8,243,15,16,133,148,251,255,255,15,46,193,118,52,243,15,90,133,148,251,255,255,139,133,140,251,255,255,139,0,242,15,17,68,36, 8,137,68,36,4,141,131,253,98,7,0,137,4,36,232,71,25,6,0,199,133,200,251,255,255,1,0,0,0,235,40,243,15,90,133,148,251,255,255,139,133,140,251,255,255,139,0,242,15,17,68,36,8,137,68,36,4,141,131,35,99,7,0,137,4,36,232,19,25,6,0,139,133,200,251,255,255, 133,192,116,111,141,131,61,223,7,0,243,15,16,8,243,15,16,133,148,251,255,255,15,46,193,119,2,235,50,243,15,90,141,148,251,255,255,141,131,61,225,7,0,242,15,16,0,242,15,89,200,141,131,77,225,7,0,242,15,16,0,242,15,94,193,242,15,90,192,243,15,17,133,88, 249,255,255,235,18,141,131,65,223,7,0,243,15,16,0,243,15,17,133,88,249,255,255,243,15,16,133,88,249,255,255,243,15,17,133,152,251,255,255,235,14,141,131,65,223,7,0,139,0,137,133,152,251,255,255,139,133,220,251,255,255,15,175,133,188,251,255,255,186,0, 4,0,0,137,193,137,208,193,250,31,247,249,137,133,164,251,255,255,199,133,168,251,255,255,0,0,0,0,233,109,1,0,0,139,133,180,251,255,255,43,133,168,251,255,255,137,133,132,251,255,255,139,133,164,251,255,255,57,133,132,251,255,255,15,78,133,132,251,255, 255,137,133,132,251,255,255,139,149,216,251,255,255,139,141,220,251,255,255,139,181,184,251,255,255,141,189,228,251,255,255,141,133,124,249,255,255,137,133,92,249,255,255,139,69,16,137,133,96,249,255,255,199,68,36,32,1,0,0,0,139,133,152,251,255,255,137, 68,36,28,137,84,36,24,137,76,36,20,137,116,36,16,139,133,132,251,255,255,137,68,36,12,137,124,36,8,139,149,92,249,255,255,137,84,36,4,139,141,96,249,255,255,137,12,36,232,59,233,255,255,139,133,220,251,255,255,15,175,133,188,251,255,255,15,175,133,132, 251,255,255,137,68,36,8,141,133,228,251,255,255,137,68,36,4,139,133,156,251,255,255,137,4,36,232,82,225,7,0,137,133,124,251,255,255,139,133,220,251,255,255,15,175,133,188,251,255,255,15,175,133,132,251,255,255,59,133,124,251,255,255,126,92,232,151,222, 7,0,139,0,137,4,36,232,229,224,7,0,137,194,139,133,140,251,255,255,139,0,137,84,36,8,137,68,36,4,141,131,60,97,7,0,137,4,36,232,63,23,6,0,131,189,124,251,255,255,0,126,89,139,133,220,251,255,255,15,175,133,188,251,255,255,139,149,124,251,255,255,137, 193,137,208,193,250,31,247,249,1,133,168,251,255,255,235,53,139,133,132,251,255,255,1,133,168,251,255,255,139,133,184,251,255,255,137,194,139,133,132,251,255,255,141,4,2,137,133,184,251,255,255,139,133,180,251,255,255,57,133,168,251,255,255,15,140,129, 254,255,255,131,189,156,251,255,255,0,120,121,139,149,208,251,255,255,139,133,220,251,255,255,137,193,15,175,141,188,251,255,255,139,181,180,251,255,255,139,189,204,251,255,255,139,133,140,251,255,255,139,0,137,133,100,249,255,255,137,84,36,28,137,76, 36,24,139,133,168,251,255,255,137,68,36,20,137,116,36,16,137,124,36,12,139,133,156,251,255,255,137,68,36,8,139,133,100,249,255,255,137,68,36,4,139,133,116,249,255,255,137,4,36,232,105,224,255,255,139,133,156,251,255,255,137,4,36,232,25,222,7,0,243,15, 42,133,168,251,255,255,243,15,44,208,137,149,104,249,255,255,235,99,141,131,65,99,7,0,137,68,36,4,139,133,116,249,255,255,137,4,36,232,20,26,6,0,141,131,109,99,7,0,137,4,36,232,33,22,6,0,141,131,176,99,7,0,137,4,36,232,19,22,6,0,141,131,201,99,7,0,137, 4,36,232,5,22,6,0,131,189,156,251,255,255,0,120,14,139,133,156,251,255,255,137,4,36,232,172,221,7,0,199,133,104,249,255,255,0,0,0,0,139,133,104,249,255,255,141,147,225,236,7,0,139,18,139,77,228,51,10,116,5,232,34,221,7,0,129,196,220,6,0,0,91,94,95,201, 195,85,137,229,131,236,40,139,69,8,139,80,28,139,69,20,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,166,247,255,255,137,69,244,243,15,42,69,244,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,113,69,5,0,201,195,85,137,229,86, 83,131,236,32,232,0,0,0,0,91,141,179,114,235,255,255,141,131,119,91,7,0,137,4,36,232,147,27,5,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,75,16,5,0,137,194,141,131,193,12,8,0,137,16, 141,131,247,213,7,0,137,4,36,232,79,27,5,0,137,194,141,139,191,235,255,255,141,131,193,12,8,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,10,20,5,0,141,131,131,91,7,0,137,4,36,232,17,27,5,0,137,194,141,139,172, 255,255,255,141,131,193,12,8,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,204,19,5,0,131,196,32,91,94,201,195,85,137,229,87,86,83,129,236,204,0,0,0,232,0,0,0,0,91,139,69,8,137,133,84,255,255,255,141,131,142, 227,7,0,139,0,139,16,137,85,228,49,210,139,133,84,255,255,255,137,69,144,139,69,144,5,148,1,0,0,137,4,36,232,80,221,7,0,139,69,144,139,128,64,1,0,0,133,192,117,47,139,69,144,5,220,1,0,0,137,4,36,232,15,221,7,0,139,69,144,5,148,1,0,0,139,85,144,129,194, 192,1,0,0,137,68,36,4,137,20,36,232,248,220,7,0,235,196,139,69,144,139,128,64,1,0,0,131,248,1,15,133,184,5,0,0,139,69,144,139,128,96,1,0,0,137,133,120,255,255,255,199,133,116,255,255,255,255,255,255,127,139,69,144,139,128,76,1,0,0,137,133,112,255,255, 255,139,69,144,139,128,80,1,0,0,137,133,108,255,255,255,139,69,144,139,128,88,1,0,0,137,133,104,255,255,255,139,69,144,139,128,84,1,0,0,137,133,100,255,255,255,139,69,144,139,128,68,1,0,0,137,133,96,255,255,255,139,69,144,139,64,28,137,4,36,232,92,223, 0,0,139,0,137,133,92,255,255,255,139,69,144,199,128,64,1,0,0,4,0,0,0,139,69,144,199,128,72,1,0,0,0,0,0,0,139,69,144,139,128,104,1,0,0,133,192,120,86,139,69,144,139,128,104,1,0,0,137,69,140,139,69,144,5,148,1,0,0,137,4,36,232,81,220,7,0,139,69,140,137, 4,36,232,2,219,7,0,139,69,144,5,148,1,0,0,137,4,36,232,42,220,7,0,139,69,144,199,128,104,1,0,0,255,255,255,255,139,69,144,139,128,64,1,0,0,131,248,4,15,133,64,4,0,0,139,69,144,5,148,1,0,0,137,4,36,232,7,220,7,0,139,133,120,255,255,255,137,68,36,28,141, 133,116,255,255,255,137,68,36,24,141,133,104,255,255,255,137,68,36,20,141,133,100,255,255,255,137,68,36,16,141,133,108,255,255,255,137,68,36,12,139,133,112,255,255,255,137,68,36,8,139,133,96,255,255,255,137,68,36,4,139,133,92,255,255,255,137,4,36,232, 26,192,255,255,137,69,140,139,69,144,5,148,1,0,0,137,4,36,232,148,219,7,0,139,149,108,255,255,255,139,69,144,137,144,80,1,0,0,139,149,104,255,255,255,139,69,144,137,144,88,1,0,0,139,149,100,255,255,255,139,69,144,137,144,84,1,0,0,139,85,144,139,69,140, 137,130,104,1,0,0,139,149,116,255,255,255,139,69,144,137,144,100,1,0,0,131,125,140,0,121,34,232,121,217,7,0,139,16,139,69,144,137,144,72,1,0,0,139,69,144,199,128,120,1,0,0,1,0,0,0,233,89,3,0,0,139,69,144,139,128,64,1,0,0,131,248,4,15,133,71,3,0,0,139, 69,144,199,128,112,1,0,0,0,0,0,0,139,69,144,139,112,40,139,69,144,139,72,40,139,69,144,139,144,80,1,0,0,139,69,144,139,128,88,1,0,0,15,175,194,193,224,7,137,202,137,199,137,208,193,250,31,247,255,137,208,137,242,41,194,139,69,144,137,144,108,1,0,0,139, 69,144,139,136,108,1,0,0,139,69,144,139,128,80,1,0,0,137,194,193,226,4,139,69,144,139,128,88,1,0,0,15,175,208,139,69,144,139,128,48,1,0,0,15,175,194,137,202,137,198,137,208,193,250,31,247,254,137,194,139,69,144,137,144,128,1,0,0,139,69,144,139,144,128, 1,0,0,139,69,144,137,144,124,1,0,0,233,142,2,0,0,139,69,144,139,128,108,1,0,0,137,133,88,255,255,255,139,69,144,139,128,120,1,0,0,133,192,15,133,128,2,0,0,139,69,144,139,144,112,1,0,0,139,69,144,139,128,116,1,0,0,57,194,15,140,173,0,0,0,139,69,144,139, 128,116,1,0,0,133,192,117,24,139,69,144,139,144,112,1,0,0,139,133,88,255,255,255,41,208,61,0,0,1,0,126,86,139,69,144,139,144,112,1,0,0,139,133,88,255,255,255,41,208,137,133,124,255,255,255,129,189,124,255,255,255,0,0,1,0,126,10,199,133,124,255,255,255, 0,0,1,0,139,69,144,139,128,100,1,0,0,59,133,124,255,255,255,15,141,205,0,0,0,139,69,144,139,128,100,1,0,0,137,133,124,255,255,255,233,185,0,0,0,139,69,144,5,220,1,0,0,137,4,36,232,130,217,7,0,139,69,144,5,148,1,0,0,139,85,144,129,194,192,1,0,0,137,68, 36,4,137,20,36,232,107,217,7,0,233,167,1,0,0,139,69,144,139,144,116,1,0,0,139,69,144,139,128,112,1,0,0,137,215,41,199,137,248,72,137,133,124,255,255,255,129,189,124,255,255,255,255,255,0,0,127,50,139,69,144,5,220,1,0,0,137,4,36,232,37,217,7,0,139,69, 144,5,148,1,0,0,139,85,144,129,194,192,1,0,0,137,68,36,4,137,20,36,232,14,217,7,0,233,74,1,0,0,199,133,124,255,255,255,0,0,1,0,139,69,144,139,128,100,1,0,0,59,133,124,255,255,255,125,15,139,69,144,139,128,100,1,0,0,137,133,124,255,255,255,139,69,144, 139,128,104,1,0,0,137,69,140,139,69,144,139,64,36,137,69,132,139,69,144,139,128,112,1,0,0,137,69,136,139,69,144,5,148,1,0,0,137,4,36,232,216,216,7,0,139,149,124,255,255,255,139,69,136,3,69,132,137,84,36,8,137,68,36,4,139,69,140,137,4,36,232,203,216,7, 0,137,69,128,139,69,144,5,148,1,0,0,137,4,36,232,154,216,7,0,139,69,144,139,128,64,1,0,0,131,248,4,15,133,189,0,0,0,131,125,128,0,121,21,232,181,214,7,0,139,16,139,69,144,137,144,72,1,0,0,233,162,0,0,0,131,125,128,0,117,18,139,69,144,199,128,120,1,0, 0,1,0,0,0,233,138,0,0,0,139,69,144,139,128,112,1,0,0,137,194,3,85,128,139,69,144,137,144,112,1,0,0,139,69,144,139,128,100,1,0,0,137,194,43,85,128,139,69,144,137,144,100,1,0,0,139,69,144,139,128,100,1,0,0,133,192,127,15,139,69,144,199,128,120,1,0,0,1, 0,0,0,235,64,139,69,144,139,128,112,1,0,0,59,133,88,255,255,255,117,13,139,69,144,199,128,112,1,0,0,0,0,0,0,139,69,144,5,220,1,0,0,137,4,36,232,185,215,7,0,139,69,144,139,128,64,1,0,0,131,248,4,15,132,96,253,255,255,139,69,144,139,128,64,1,0,0,131,248, 4,117,13,139,69,144,199,128,64,1,0,0,0,0,0,0,139,69,144,139,128,104,1,0,0,133,192,120,68,139,69,144,139,128,104,1,0,0,137,69,140,139,69,144,5,148,1,0,0,137,4,36,232,147,215,7,0,139,69,140,137,4,36,232,68,214,7,0,139,69,144,5,148,1,0,0,137,4,36,232,108, 215,7,0,139,69,144,199,128,104,1,0,0,255,255,255,255,139,69,144,5,220,1,0,0,137,4,36,232,43,215,7,0,233,250,249,255,255,139,69,144,139,128,64,1,0,0,131,248,2,15,133,129,0,0,0,139,69,144,139,128,104,1,0,0,133,192,120,68,139,69,144,139,128,104,1,0,0,137, 69,140,139,69,144,5,148,1,0,0,137,4,36,232,27,215,7,0,139,69,140,137,4,36,232,204,213,7,0,139,69,144,5,148,1,0,0,137,4,36,232,244,214,7,0,139,69,144,199,128,104,1,0,0,255,255,255,255,139,69,144,139,128,64,1,0,0,131,248,2,117,13,139,69,144,199,128,64, 1,0,0,0,0,0,0,139,69,144,5,220,1,0,0,137,4,36,232,152,214,7,0,233,103,249,255,255,139,69,144,139,128,64,1,0,0,131,248,3,15,133,85,249,255,255,139,69,144,139,128,104,1,0,0,133,192,120,68,139,69,144,139,128,104,1,0,0,137,69,140,139,69,144,5,148,1,0,0,137, 4,36,232,136,214,7,0,139,69,140,137,4,36,232,57,213,7,0,139,69,144,5,148,1,0,0,137,4,36,232,97,214,7,0,139,69,144,199,128,104,1,0,0,255,255,255,255,139,69,144,199,128,64,1,0,0,0,0,0,0,139,69,144,5,220,1,0,0,137,4,36,232,19,214,7,0,139,69,144,5,148,1, 0,0,137,4,36,232,51,214,7,0,184,0,0,0,0,141,147,142,227,7,0,139,18,139,77,228,51,10,116,5,232,112,212,7,0,129,196,204,0,0,0,91,94,95,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,243,15,16,69,8,243,15,44,192,137,69,240,243,15,16,69,12,243,15,44,192, 137,69,236,131,125,240,0,127,9,199,69,240,1,0,0,0,235,13,131,125,240,64,126,7,199,69,240,64,0,0,0,131,125,236,0,127,11,139,69,240,193,224,18,137,69,236,235,34,129,125,236,255,255,3,0,127,9,199,69,236,0,0,4,0,235,16,129,125,236,0,0,0,1,126,7,199,69,236, 0,0,0,1,139,69,236,137,4,36,232,87,44,5,0,137,69,228,131,125,228,0,117,12,199,69,212,0,0,0,0,233,167,1,0,0,141,131,91,4,8,0,139,0,137,4,36,232,220,71,5,0,137,69,244,199,69,232,0,0,0,0,235,32,141,131,151,78,7,0,137,4,36,232,140,18,5,0,139,85,244,137,68, 36,4,137,20,36,232,129,58,5,0,255,69,232,139,69,232,59,69,240,124,216,139,85,244,139,69,240,137,66,44,139,85,244,141,131,143,219,7,0,139,0,137,68,36,4,137,20,36,232,86,58,5,0,137,194,139,69,244,137,144,52,1,0,0,139,69,244,5,148,1,0,0,199,68,36,4,0,0, 0,0,137,4,36,232,226,212,7,0,139,69,244,5,192,1,0,0,199,68,36,4,0,0,0,0,137,4,36,232,166,212,7,0,139,69,244,5,220,1,0,0,199,68,36,4,0,0,0,0,137,4,36,232,142,212,7,0,139,69,244,199,128,48,1,0,0,128,0,0,0,139,69,244,199,128,56,1,0,0,0,0,0,0,141,131,56, 2,0,0,137,68,36,4,139,69,244,137,4,36,232,24,80,5,0,137,194,139,69,244,137,80,32,232,124,213,0,0,137,194,139,69,244,137,80,28,139,69,244,199,128,80,1,0,0,2,0,0,0,139,69,244,199,128,88,1,0,0,1,0,0,0,139,69,244,199,128,104,1,0,0,255,255,255,255,139,85, 244,139,69,228,137,66,36,139,85,244,139,69,236,137,66,40,139,69,244,199,128,64,1,0,0,0,0,0,0,139,69,244,139,144,64,1,0,0,139,69,244,137,144,116,1,0,0,139,69,244,139,144,116,1,0,0,139,69,244,137,144,112,1,0,0,139,69,244,139,144,112,1,0,0,139,69,244,137, 144,108,1,0,0,139,85,244,129,194,248,1,0,0,139,69,244,137,68,36,12,141,131,100,248,255,255,137,68,36,8,199,68,36,4,0,0,0,0,137,20,36,232,182,211,7,0,139,69,244,137,69,212,139,69,212,131,196,68,91,201,195,85,137,229,131,236,24,139,69,8,139,128,52,1,0, 0,137,4,36,232,150,57,5,0,201,195,85,137,229,83,131,236,116,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,244,139,128,48,1,0,0,137,69,240,139,69,244,139,64,44,137,69,236,139,69,244,139,128,80,1,0,0,137,69,224,139,69,244,139,128,84,1,0,0,137, 69,220,139,69,244,139,128,56,1,0,0,131,248,2,15,133,165,3,0,0,139,69,244,139,128,88,1,0,0,137,69,204,139,69,244,5,148,1,0,0,137,4,36,232,51,211,7,0,139,69,204,15,175,69,240,15,175,69,224,137,69,212,235,107,139,69,244,5,192,1,0,0,137,4,36,232,239,210, 7,0,139,69,244,5,148,1,0,0,139,85,244,129,194,220,1,0,0,137,68,36,4,137,20,36,232,216,210,7,0,139,69,244,139,128,48,1,0,0,137,69,240,139,69,244,139,128,80,1,0,0,137,69,224,139,69,244,139,128,88,1,0,0,137,69,204,139,69,204,15,175,69,240,15,175,69,224, 137,69,212,139,69,244,139,128,84,1,0,0,137,69,220,139,69,244,139,128,120,1,0,0,133,192,117,52,139,69,244,139,144,112,1,0,0,139,69,244,139,128,116,1,0,0,57,194,124,30,139,69,244,139,144,112,1,0,0,139,69,244,139,128,116,1,0,0,3,69,212,72,57,194,15,140, 84,255,255,255,139,69,244,139,128,120,1,0,0,133,192,15,132,211,1,0,0,139,69,244,139,144,112,1,0,0,139,69,244,139,128,116,1,0,0,57,194,15,140,185,1,0,0,139,69,244,139,144,112,1,0,0,139,69,244,139,128,116,1,0,0,3,69,212,72,57,194,15,141,155,1,0,0,139,69, 244,139,128,72,1,0,0,133,192,116,86,139,69,244,139,128,72,1,0,0,131,248,5,116,22,139,69,244,139,128,72,1,0,0,137,4,36,232,146,210,7,0,137,69,192,235,9,141,131,102,78,7,0,137,69,192,139,69,244,139,128,68,1,0,0,139,85,192,137,84,36,12,137,68,36,8,141,131, 197,80,7,0,137,68,36,4,139,69,244,137,4,36,232,186,12,6,0,139,69,244,139,80,32,141,131,26,204,7,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,22,79,5,0,139,69,244,199,128,56,1,0,0,0,0,0,0,139,69,244,139,144,112,1,0,0,139,69,244,139,128,116,1,0,0,137, 209,41,193,137,200,141,80,1,139,69,204,15,175,69,224,137,193,137,208,193,250,31,247,249,137,69,200,131,125,200,0,116,95,139,69,244,139,80,36,139,69,244,139,128,116,1,0,0,141,4,2,137,194,139,77,244,131,193,48,199,68,36,32,1,0,0,0,139,69,220,137,68,36, 28,139,69,224,137,68,36,24,139,69,200,137,68,36,20,137,84,36,16,199,68,36,12,0,0,0,0,137,76,36,8,139,69,236,137,68,36,4,139,69,204,137,4,36,232,204,183,255,255,139,69,200,41,69,240,199,69,232,0,0,0,0,235,59,139,69,240,137,69,228,139,85,232,139,69,244, 139,84,144,48,139,69,200,193,224,2,141,4,2,137,69,216,235,17,139,69,216,141,147,2,204,7,0,139,18,137,16,131,69,216,4,255,77,228,131,125,228,255,117,230,255,69,232,139,69,232,59,69,236,124,189,139,69,244,5,192,1,0,0,137,4,36,232,141,208,7,0,139,69,244, 5,148,1,0,0,137,4,36,232,173,208,7,0,139,69,8,131,192,8,137,69,196,233,53,1,0,0,139,69,244,139,80,36,139,69,244,139,128,116,1,0,0,141,4,2,137,194,139,77,244,131,193,48,199,68,36,32,1,0,0,0,139,69,220,137,68,36,28,139,69,224,137,68,36,24,139,69,240,137, 68,36,20,137,84,36,16,199,68,36,12,0,0,0,0,137,76,36,8,139,69,236,137,68,36,4,139,69,204,137,4,36,232,243,182,255,255,139,69,244,139,128,116,1,0,0,137,194,3,85,212,139,69,244,137,144,116,1,0,0,139,69,244,139,144,116,1,0,0,139,69,244,139,128,108,1,0,0, 57,194,124,13,139,69,244,199,128,116,1,0,0,0,0,0,0,139,69,244,139,128,124,1,0,0,141,80,255,139,69,244,137,144,124,1,0,0,139,69,244,139,128,124,1,0,0,133,192,127,34,139,69,244,5,192,1,0,0,137,4,36,232,170,207,7,0,139,69,244,139,144,128,1,0,0,139,69,244, 137,144,124,1,0,0,139,69,244,5,148,1,0,0,137,4,36,232,184,207,7,0,235,67,199,69,232,0,0,0,0,235,50,139,69,240,137,69,228,139,85,232,139,69,244,139,68,144,48,137,69,216,235,17,139,69,216,141,147,2,204,7,0,139,18,137,16,131,69,216,4,255,77,228,131,125, 228,255,117,230,255,69,232,139,69,232,59,69,236,124,198,139,85,8,131,194,8,137,85,196,139,69,196,131,196,116,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,128,56,1,0,0,131,248,1,117,15,139,69,8,199,128,56,1,0,0,2,0,0,0,235,21,141,131, 129,76,7,0,137,68,36,4,139,69,8,137,4,36,232,5,10,6,0,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,5,148,1,0,0,137,4,36,232,250,206,7,0,139,69,8,199,128,56,1,0,0,0,0,0,0,139,69,8,199,128,64,1,0,0,2,0,0,0,139,69,8,5,192,1,0,0,137,4,36,232,172, 206,7,0,139,69,8,5,148,1,0,0,137,4,36,232,204,206,7,0,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,26,199,7,0,243,15,16,0,15,46,69,12,117,4,122,2,235,13,139,69,8,137,4,36,232,61,255,255,255,235,11,139,69,8,137,4,36,232,117,255,255,255,131, 196,20,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,85,142,4,0,137,69,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,180,141,4,0,217,93,240,139,69,20,137,68, 36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,151,141,4,0,217,93,236,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,122,141,4,0,217,93,232,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,93,141,4,0,217,93,228,139, 69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,5,0,0,0,232,196,141,4,0,137,69,224,139,69,244,139,0,15,182,0,132,192,15,132,240,1,0,0,139,69,8,5,148,1,0,0,137,4,36,232,164,205,7,0,139,69,8,199,128,64,1,0,0,1,0,0,0,139,69,244,139,16,139,69,8,137,144, 68,1,0,0,139,69,8,199,128,116,1,0,0,0,0,0,0,139,69,8,199,128,112,1,0,0,0,0,0,0,139,69,224,139,0,15,182,0,60,98,117,15,139,69,8,199,128,84,1,0,0,1,0,0,0,235,78,139,69,224,139,0,15,182,0,60,108,117,15,139,69,8,199,128,84,1,0,0,0,0,0,0,235,51,139,69,224, 139,0,15,182,0,132,192,116,23,141,131,219,75,7,0,137,68,36,4,139,69,8,137,4,36,232,7,8,6,0,235,16,232,88,161,0,0,137,194,139,69,8,137,144,84,1,0,0,141,131,219,198,7,0,243,15,16,8,243,15,16,69,240,15,46,193,119,2,235,14,243,15,16,69,240,243,15,44,192, 137,69,196,235,7,199,69,196,0,0,0,0,139,69,8,139,85,196,137,144,96,1,0,0,141,131,219,198,7,0,243,15,16,8,243,15,16,69,236,15,46,193,118,2,235,44,141,131,219,198,7,0,243,15,16,0,15,46,69,236,122,2,116,2,235,9,199,69,204,255,255,255,255,235,7,199,69,204, 0,0,0,0,139,69,204,137,69,200,235,12,243,15,16,69,236,243,15,44,208,137,85,200,139,69,8,139,85,200,137,144,76,1,0,0,141,131,223,198,7,0,243,15,16,8,243,15,16,69,232,15,46,193,115,2,235,14,243,15,16,69,232,243,15,44,192,137,69,208,235,7,199,69,208,1,0, 0,0,139,69,8,139,85,208,137,144,88,1,0,0,243,15,16,69,228,141,131,59,199,7,0,15,46,0,119,2,235,14,243,15,16,69,228,243,15,44,192,137,69,212,235,7,199,69,212,2,0,0,0,139,69,8,139,85,212,137,144,80,1,0,0,139,69,8,199,128,120,1,0,0,0,0,0,0,139,69,8,199, 128,72,1,0,0,0,0,0,0,139,69,8,199,128,56,1,0,0,1,0,0,0,139,69,8,5,192,1,0,0,137,4,36,232,176,203,7,0,139,69,8,5,148,1,0,0,137,4,36,232,208,203,7,0,131,196,84,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,139,64,44,137,69,240,139,69,8, 5,148,1,0,0,137,4,36,232,151,203,7,0,139,69,12,139,0,139,16,139,69,8,137,144,48,1,0,0,139,69,8,139,136,108,1,0,0,139,69,8,139,144,80,1,0,0,139,69,8,139,128,88,1,0,0,15,175,208,139,69,8,139,128,48,1,0,0,15,175,194,137,202,137,198,137,208,193,250,31,247, 254,137,194,139,69,8,137,144,128,1,0,0,199,69,244,0,0,0,0,235,27,139,77,244,139,69,244,193,224,2,3,69,12,139,0,139,80,4,139,69,8,137,84,136,48,255,69,244,139,69,244,59,69,240,124,221,139,69,8,5,148,1,0,0,137,4,36,232,23,203,7,0,139,69,8,137,68,36,8,199, 68,36,4,1,0,0,0,141,131,11,248,255,255,137,4,36,232,102,30,0,0,131,196,32,91,94,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,128,56,1,0,0,137,68,36,4,141,131,98,72,7,0,137,4,36,232,201,1,6,0,139,69,8,139,128,112,1,0,0,137,68,36,4,141, 131,107,72,7,0,137,4,36,232,174,1,6,0,139,69,8,139,128,116,1,0,0,137,68,36,4,141,131,120,72,7,0,137,4,36,232,147,1,6,0,139,69,8,139,128,108,1,0,0,137,68,36,4,141,131,133,72,7,0,137,4,36,232,120,1,6,0,139,69,8,139,128,104,1,0,0,137,68,36,4,141,131,146, 72,7,0,137,4,36,232,93,1,6,0,139,69,8,139,128,120,1,0,0,137,68,36,4,141,131,152,72,7,0,137,4,36,232,66,1,6,0,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,5,148,1,0,0,137,4,36,232,21,202,7,0,139,69,8,199,128,64,1,0,0,3,0,0,0, 139,69,8,5,192,1,0,0,137,4,36,232,212,201,7,0,235,45,139,69,8,5,192,1,0,0,137,4,36,232,194,201,7,0,139,69,8,5,148,1,0,0,139,85,8,129,194,220,1,0,0,137,68,36,4,137,20,36,232,171,201,7,0,139,69,8,139,128,64,1,0,0,133,192,117,198,139,69,8,5,148,1,0,0,137, 4,36,232,184,201,7,0,139,69,8,139,144,248,1,0,0,141,69,244,137,68,36,4,137,20,36,232,130,201,7,0,133,192,116,14,141,131,234,71,7,0,137,4,36,232,69,3,6,0,139,69,8,5,192,1,0,0,137,4,36,232,66,201,7,0,139,69,8,5,220,1,0,0,137,4,36,232,50,201,7,0,139,69, 8,5,148,1,0,0,137,4,36,232,70,201,7,0,139,69,8,139,64,40,137,194,139,69,8,139,64,36,137,84,36,4,137,4,36,232,241,33,5,0,139,69,8,139,64,32,137,4,36,232,188,71,5,0,131,196,36,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,228,254,255, 255,141,187,19,243,255,255,141,131,243,70,7,0,137,4,36,232,66,6,5,0,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,252,1,0,0,137,116,36,8,137,124,36,4,137,4,36,232,238,250,4,0,137,194,141,131,122,247, 7,0,137,16,141,147,88,250,255,255,141,131,122,247,7,0,139,0,137,84,36,4,137,4,36,232,131,2,5,0,141,131,40,59,7,0,137,4,36,232,216,5,5,0,137,194,141,139,193,249,255,255,141,131,122,247,7,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232, 155,254,4,0,141,131,35,59,7,0,137,4,36,232,162,5,5,0,137,194,141,139,6,250,255,255,141,131,122,247,7,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,101,254,4,0,141,131,86,64,7,0,137,4,36,232,108,5,5,0,137,194,141,139,88,253,255,255, 141,131,122,247,7,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,47,254,4,0,141,131,254,70,7,0,137,4,36,232,54,5,5,0,137,194,141,139,151,250,255,255,141,131,122,247,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137, 76,36,4,137,4,36,232,241,253,4,0,141,131,176,96,7,0,137,4,36,232,248,4,5,0,137,194,141,139,47,254,255,255,141,131,122,247,7,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,187,253,4,0,131,196,44,91,94,95,201,195,85,137,229,86,83,129, 236,32,1,0,0,232,0,0,0,0,91,139,69,8,137,133,20,255,255,255,141,131,125,205,7,0,139,0,139,16,137,85,244,49,210,139,133,20,255,255,255,137,69,160,139,69,160,5,148,1,0,0,137,4,36,232,63,199,7,0,139,69,160,139,128,64,1,0,0,133,192,117,47,139,69,160,5,220, 1,0,0,137,4,36,232,254,198,7,0,139,69,160,5,148,1,0,0,139,85,160,129,194,192,1,0,0,137,68,36,4,137,20,36,232,231,198,7,0,235,196,139,69,160,139,128,64,1,0,0,131,248,1,15,133,56,5,0,0,139,69,160,139,128,96,1,0,0,137,69,144,199,69,140,255,255,255,127,139, 69,160,139,128,76,1,0,0,137,69,136,139,69,160,139,128,80,1,0,0,137,69,132,139,69,160,139,128,88,1,0,0,137,69,128,139,69,160,139,128,84,1,0,0,137,133,124,255,255,255,139,69,160,139,128,132,1,0,0,137,133,120,255,255,255,139,69,160,139,128,68,1,0,0,137, 133,116,255,255,255,139,69,160,139,64,28,137,133,112,255,255,255,139,69,160,139,128,92,1,0,0,137,133,108,255,255,255,139,69,160,199,128,64,1,0,0,4,0,0,0,139,69,160,199,128,72,1,0,0,0,0,0,0,139,69,160,139,128,104,1,0,0,133,192,15,136,17,1,0,0,139,69,160, 139,144,80,1,0,0,139,69,160,139,128,88,1,0,0,15,175,194,137,133,104,255,255,255,139,69,160,139,128,84,1,0,0,137,133,100,255,255,255,139,69,160,139,128,68,1,0,0,137,133,96,255,255,255,139,69,160,139,128,104,1,0,0,137,133,92,255,255,255,139,69,160,139, 128,132,1,0,0,137,133,88,255,255,255,139,69,160,139,128,136,1,0,0,137,133,84,255,255,255,139,69,160,139,128,140,1,0,0,137,133,80,255,255,255,139,69,160,5,148,1,0,0,137,4,36,232,206,197,7,0,139,133,80,255,255,255,137,68,36,28,139,133,104,255,255,255,137, 68,36,24,139,133,84,255,255,255,137,68,36,20,199,68,36,16,255,255,255,127,139,133,88,255,255,255,137,68,36,12,139,133,92,255,255,255,137,68,36,8,139,133,96,255,255,255,137,68,36,4,139,69,160,137,4,36,232,125,198,255,255,139,133,92,255,255,255,137,4,36, 232,45,196,7,0,139,69,160,5,148,1,0,0,137,4,36,232,85,197,7,0,139,69,160,199,128,104,1,0,0,255,255,255,255,139,69,160,139,128,64,1,0,0,131,248,4,15,133,247,253,255,255,139,69,160,5,148,1,0,0,137,4,36,232,50,197,7,0,232,104,153,0,0,59,133,124,255,255, 255,15,149,192,15,182,208,139,133,108,255,255,255,137,68,36,32,137,84,36,28,139,69,128,137,68,36,24,139,133,124,255,255,255,137,68,36,20,139,69,132,137,68,36,16,199,68,36,12,0,0,0,0,139,133,120,255,255,255,137,68,36,8,139,133,116,255,255,255,137,68,36, 4,139,133,112,255,255,255,137,4,36,232,235,185,255,255,137,69,156,139,69,160,5,148,1,0,0,137,4,36,232,178,196,7,0,131,125,156,0,121,60,139,69,160,199,128,104,1,0,0,255,255,255,255,139,69,160,199,128,120,1,0,0,1,0,0,0,232,197,194,7,0,139,16,139,69,160, 137,144,72,1,0,0,139,69,160,199,128,64,1,0,0,0,0,0,0,233,49,253,255,255,139,69,160,139,128,64,1,0,0,131,248,4,15,133,31,253,255,255,139,85,160,139,69,156,137,130,104,1,0,0,139,69,160,199,128,116,1,0,0,0,0,0,0,139,69,160,199,128,136,1,0,0,0,0,0,0,232, 122,152,0,0,59,133,124,255,255,255,15,149,192,15,182,208,139,69,160,137,144,140,1,0,0,233,29,2,0,0,139,69,160,139,128,108,1,0,0,137,133,76,255,255,255,139,69,160,139,64,36,137,133,68,255,255,255,139,69,160,139,144,112,1,0,0,139,69,160,139,128,116,1,0, 0,57,194,124,71,139,69,160,139,144,112,1,0,0,139,69,160,139,128,116,1,0,0,5,0,0,1,0,57,194,125,44,139,69,160,139,128,64,1,0,0,131,248,2,15,133,227,0,0,0,139,69,160,139,144,112,1,0,0,139,69,160,139,128,116,1,0,0,57,194,15,132,201,0,0,0,139,69,160,139, 144,112,1,0,0,139,69,160,139,128,116,1,0,0,57,194,124,17,139,69,160,139,128,112,1,0,0,137,133,16,255,255,255,235,12,139,141,76,255,255,255,137,141,16,255,255,255,139,69,160,139,128,116,1,0,0,139,181,16,255,255,255,41,198,137,240,137,69,148,129,125,148, 0,0,1,0,126,7,199,69,148,0,0,1,0,139,69,160,139,128,116,1,0,0,137,133,72,255,255,255,139,69,160,139,128,104,1,0,0,137,69,156,139,69,160,5,148,1,0,0,137,4,36,232,41,195,7,0,139,85,148,139,133,72,255,255,255,3,133,68,255,255,255,137,84,36,8,137,68,36,4, 139,69,156,137,4,36,232,199,195,7,0,137,69,152,139,69,160,5,148,1,0,0,137,4,36,232,232,194,7,0,139,69,160,139,128,64,1,0,0,131,248,4,117,52,235,68,139,69,160,5,220,1,0,0,137,4,36,232,164,194,7,0,139,69,160,5,148,1,0,0,139,85,160,129,194,192,1,0,0,137, 68,36,4,137,20,36,232,141,194,7,0,233,170,0,0,0,139,69,160,139,128,64,1,0,0,131,248,2,15,133,85,251,255,255,139,69,152,59,69,148,125,21,232,191,192,7,0,139,16,139,69,160,137,144,72,1,0,0,233,56,251,255,255,139,69,160,139,128,116,1,0,0,137,194,3,85,152, 139,69,160,137,144,116,1,0,0,139,69,160,139,128,116,1,0,0,59,133,76,255,255,255,117,13,139,69,160,199,128,116,1,0,0,0,0,0,0,139,69,160,139,136,136,1,0,0,139,69,160,139,144,80,1,0,0,139,69,160,139,128,88,1,0,0,15,175,194,139,85,152,137,198,137,208,193, 250,31,247,254,141,20,1,139,69,160,137,144,136,1,0,0,139,69,160,5,220,1,0,0,137,4,36,232,216,193,7,0,139,69,160,139,128,64,1,0,0,131,248,4,15,132,209,253,255,255,139,69,160,139,128,64,1,0,0,131,248,2,15,133,153,250,255,255,139,69,160,139,144,112,1,0, 0,139,69,160,139,128,116,1,0,0,57,194,15,133,165,253,255,255,233,122,250,255,255,139,69,160,139,128,64,1,0,0,131,248,2,116,18,139,69,160,139,128,64,1,0,0,131,248,3,15,133,90,250,255,255,139,69,160,139,128,64,1,0,0,131,248,3,15,148,192,15,182,192,137, 133,64,255,255,255,139,69,160,139,128,104,1,0,0,133,192,15,136,255,0,0,0,139,69,160,139,144,80,1,0,0,139,69,160,139,128,88,1,0,0,15,175,194,137,133,60,255,255,255,139,69,160,139,128,84,1,0,0,137,133,56,255,255,255,139,69,160,139,128,68,1,0,0,137,133, 52,255,255,255,139,69,160,139,128,104,1,0,0,137,133,48,255,255,255,139,69,160,139,128,132,1,0,0,137,133,44,255,255,255,139,69,160,139,128,136,1,0,0,137,133,40,255,255,255,139,69,160,139,128,140,1,0,0,137,133,36,255,255,255,139,69,160,5,148,1,0,0,137, 4,36,232,247,192,7,0,139,133,36,255,255,255,137,68,36,28,139,133,60,255,255,255,137,68,36,24,139,133,40,255,255,255,137,68,36,20,199,68,36,16,255,255,255,127,139,133,44,255,255,255,137,68,36,12,139,133,48,255,255,255,137,68,36,8,139,133,52,255,255,255, 137,68,36,4,139,69,160,137,4,36,232,166,193,255,255,139,133,48,255,255,255,137,4,36,232,86,191,7,0,139,69,160,5,148,1,0,0,137,4,36,232,126,192,7,0,139,69,160,199,128,104,1,0,0,255,255,255,255,139,69,160,199,128,64,1,0,0,0,0,0,0,139,69,160,5,220,1,0,0, 137,4,36,232,48,192,7,0,131,189,64,255,255,255,0,117,5,233,7,249,255,255,139,69,160,5,148,1,0,0,137,4,36,232,66,192,7,0,184,0,0,0,0,141,147,125,205,7,0,139,18,139,77,244,51,10,116,5,232,127,190,7,0,129,196,32,1,0,0,91,94,201,195,85,137,229,83,131,236, 68,232,0,0,0,0,91,243,15,16,69,8,243,15,44,192,137,69,240,243,15,16,69,12,243,15,44,192,137,69,236,131,125,240,0,127,9,199,69,240,1,0,0,0,235,13,131,125,240,64,126,7,199,69,240,64,0,0,0,131,125,236,0,127,11,139,69,240,193,224,18,137,69,236,235,34,129, 125,236,255,255,3,0,127,9,199,69,236,0,0,4,0,235,16,129,125,236,0,0,0,1,126,7,199,69,236,0,0,0,1,139,69,236,137,4,36,232,103,22,5,0,137,69,228,131,125,228,0,117,12,199,69,212,0,0,0,0,233,169,1,0,0,141,131,111,238,7,0,139,0,137,4,36,232,236,49,5,0,137, 69,244,199,69,232,1,0,0,0,235,45,139,85,244,139,77,244,141,131,151,197,7,0,139,0,137,68,36,12,141,131,151,197,7,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,18,24,5,0,255,69,232,139,69,232,59,69,240,124,203,139,85,244,141,131,111,184,7,0,139,0,137,130, 144,1,0,0,139,85,244,139,69,240,137,130,88,1,0,0,139,69,244,5,148,1,0,0,199,68,36,4,0,0,0,0,137,4,36,232,243,190,7,0,139,69,244,5,192,1,0,0,199,68,36,4,0,0,0,0,137,4,36,232,183,190,7,0,139,69,244,5,220,1,0,0,199,68,36,4,0,0,0,0,137,4,36,232,159,190,7, 0,139,69,244,199,128,48,1,0,0,128,0,0,0,139,85,244,141,131,111,184,7,0,139,0,137,130,92,1,0,0,139,69,244,139,144,92,1,0,0,139,69,244,137,144,60,1,0,0,139,69,244,199,128,56,1,0,0,0,0,0,0,139,69,244,199,64,32,0,0,0,0,232,125,191,0,0,137,194,139,69,244, 137,80,28,139,69,244,199,128,80,1,0,0,2,0,0,0,139,69,244,199,128,104,1,0,0,255,255,255,255,139,85,244,139,69,228,137,66,36,139,85,244,139,69,236,137,66,40,139,69,244,199,128,64,1,0,0,0,0,0,0,139,69,244,139,144,64,1,0,0,139,69,244,137,144,116,1,0,0,139, 69,244,139,144,116,1,0,0,139,69,244,137,144,112,1,0,0,139,69,244,139,144,112,1,0,0,139,69,244,137,144,108,1,0,0,139,85,244,129,194,248,1,0,0,139,69,244,137,68,36,12,141,131,134,248,255,255,137,68,36,8,199,68,36,4,0,0,0,0,137,20,36,232,196,189,7,0,139, 69,244,137,69,212,139,69,212,131,196,68,91,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,139,69,8,131,192,4,139,0,137,69,244,139,69,244,139,128,48,1,0,0,137,69,240,139,69,244,139,128,88,1,0,0,137,69,236,139,69,244,139,128,80,1,0,0,137,69,224,139,69, 244,139,128,84,1,0,0,137,69,220,139,69,244,139,128,56,1,0,0,131,248,2,15,133,105,1,0,0,139,69,244,5,148,1,0,0,137,4,36,232,99,189,7,0,139,69,236,15,175,69,240,15,175,69,224,137,69,212,235,45,139,69,244,5,192,1,0,0,137,4,36,232,31,189,7,0,139,69,244,5, 148,1,0,0,139,85,244,129,194,220,1,0,0,137,68,36,4,137,20,36,232,8,189,7,0,139,69,244,139,144,116,1,0,0,139,69,244,139,128,112,1,0,0,57,194,126,26,139,69,244,139,144,116,1,0,0,139,69,244,139,128,112,1,0,0,3,69,212,64,57,194,124,163,139,69,244,139,80, 36,139,69,244,139,128,112,1,0,0,141,4,2,137,194,139,77,244,131,193,48,199,68,36,32,1,0,0,0,141,131,45,182,7,0,139,0,137,68,36,28,139,69,220,137,68,36,24,139,69,224,137,68,36,20,199,68,36,16,0,0,0,0,139,69,240,137,68,36,12,137,84,36,8,137,76,36,4,139, 69,236,137,4,36,232,145,192,255,255,139,69,244,139,128,112,1,0,0,137,194,3,85,212,139,69,244,137,144,112,1,0,0,139,69,244,139,144,112,1,0,0,139,69,244,139,128,108,1,0,0,57,194,124,13,139,69,244,199,128,112,1,0,0,0,0,0,0,139,69,244,139,128,124,1,0,0,141, 80,255,139,69,244,137,144,124,1,0,0,139,69,244,139,128,124,1,0,0,133,192,127,34,139,69,244,5,192,1,0,0,137,4,36,232,8,188,7,0,139,69,244,139,144,128,1,0,0,139,69,244,137,144,124,1,0,0,139,69,244,5,148,1,0,0,137,4,36,232,22,188,7,0,139,69,8,131,192,8, 131,196,100,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,128,56,1,0,0,131,248,1,117,15,139,69,8,199,128,56,1,0,0,2,0,0,0,235,21,141,131,226,57,7,0,137,68,36,4,139,69,8,137,4,36,232,174,246,5,0,131,196,20,91,201,195,85,137,229,131,236, 24,139,69,8,5,148,1,0,0,137,4,36,232,163,187,7,0,139,69,8,199,128,56,1,0,0,0,0,0,0,139,69,8,199,128,64,1,0,0,2,0,0,0,139,69,8,5,192,1,0,0,137,4,36,232,85,187,7,0,139,69,8,5,148,1,0,0,137,4,36,232,117,187,7,0,201,195,85,137,229,87,86,83,131,236,108,232, 0,0,0,0,91,139,69,8,139,128,56,1,0,0,133,192,116,11,139,69,8,137,4,36,232,135,255,255,255,141,69,196,137,68,36,44,141,69,200,137,68,36,40,141,69,204,137,68,36,36,141,69,208,137,68,36,32,141,69,212,137,68,36,28,141,69,216,137,68,36,24,141,69,220,137,68, 36,20,141,69,224,137,68,36,16,141,69,228,137,68,36,12,141,69,20,137,68,36,8,141,69,16,137,68,36,4,139,69,8,137,4,36,232,187,169,255,255,133,192,116,40,141,131,121,57,7,0,137,68,36,4,139,69,8,137,4,36,232,190,245,5,0,141,131,189,57,7,0,137,4,36,232,203, 241,5,0,233,92,2,0,0,139,69,208,133,192,117,17,139,69,204,133,192,117,10,139,69,200,61,255,255,255,127,116,21,141,131,233,57,7,0,137,68,36,4,139,69,8,137,4,36,232,126,245,5,0,139,69,16,133,192,116,21,141,131,33,58,7,0,137,68,36,4,139,69,8,137,4,36,232, 98,245,5,0,139,69,8,5,148,1,0,0,137,4,36,232,99,186,7,0,235,45,139,69,8,5,192,1,0,0,137,4,36,232,45,186,7,0,139,69,8,5,148,1,0,0,139,85,8,129,194,220,1,0,0,137,68,36,4,137,20,36,232,22,186,7,0,139,69,8,139,128,64,1,0,0,133,192,117,198,139,85,220,139, 69,8,137,144,80,1,0,0,139,85,216,139,69,8,137,144,140,1,0,0,139,85,212,139,69,8,137,144,84,1,0,0,139,69,228,139,16,139,69,8,137,144,68,1,0,0,139,85,224,139,69,8,137,144,132,1,0,0,139,69,8,199,128,136,1,0,0,0,0,0,0,139,69,8,199,128,64,1,0,0,1,0,0,0,139, 69,8,199,128,116,1,0,0,0,0,0,0,139,69,8,199,128,112,1,0,0,0,0,0,0,139,69,8,199,128,120,1,0,0,0,0,0,0,139,69,8,199,128,72,1,0,0,0,0,0,0,139,69,8,199,128,56,1,0,0,1,0,0,0,139,69,220,186,2,0,0,0,131,248,2,15,77,208,139,69,8,137,144,80,1,0,0,243,15,16,77, 196,141,131,193,179,7,0,243,15,16,0,15,46,200,119,2,235,14,139,85,196,139,69,8,137,144,92,1,0,0,235,62,139,69,8,243,15,16,136,60,1,0,0,141,131,193,179,7,0,243,15,16,0,15,46,200,119,2,235,20,139,69,8,139,144,60,1,0,0,139,69,8,137,144,92,1,0,0,235,14,232, 164,86,5,0,139,69,8,217,152,92,1,0,0,139,69,8,139,112,40,139,69,8,139,72,40,139,69,8,139,144,80,1,0,0,139,69,8,139,128,88,1,0,0,15,175,194,193,224,7,137,202,137,199,137,208,193,250,31,247,255,137,208,137,242,41,194,139,69,8,137,144,108,1,0,0,139,69,8, 139,136,108,1,0,0,139,69,8,139,128,80,1,0,0,137,194,193,226,4,139,69,8,139,128,88,1,0,0,15,175,208,139,69,8,139,128,48,1,0,0,15,175,194,137,202,137,198,137,208,193,250,31,247,254,137,194,139,69,8,137,144,128,1,0,0,139,69,8,139,144,128,1,0,0,139,69,8, 137,144,124,1,0,0,139,69,8,5,192,1,0,0,137,4,36,232,76,184,7,0,139,69,8,5,148,1,0,0,137,4,36,232,108,184,7,0,131,196,108,91,94,95,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,139,128,88,1,0,0,137,69,240,139,69,8,5,148,1,0,0,137,4,36,232, 46,184,7,0,139,69,12,139,0,139,16,139,69,8,137,144,48,1,0,0,139,69,8,139,136,108,1,0,0,139,69,8,139,128,80,1,0,0,137,194,15,175,85,240,139,69,8,139,128,48,1,0,0,15,175,194,137,202,137,198,137,208,193,250,31,247,254,137,194,139,69,8,137,144,128,1,0,0, 199,69,244,0,0,0,0,235,27,139,77,244,139,69,244,193,224,2,3,69,12,139,0,139,80,4,139,69,8,137,84,136,48,255,69,244,139,69,244,59,69,240,124,221,139,69,12,139,0,139,80,8,139,69,8,137,144,60,1,0,0,139,69,8,5,148,1,0,0,137,4,36,232,163,183,7,0,139,69,8, 137,68,36,8,199,68,36,4,1,0,0,0,141,131,126,250,255,255,137,4,36,232,242,10,0,0,131,196,32,91,94,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,128,56,1,0,0,137,68,36,4,141,131,238,52,7,0,137,4,36,232,85,238,5,0,139,69,8,139,128,112,1,0, 0,137,68,36,4,141,131,247,52,7,0,137,4,36,232,58,238,5,0,139,69,8,139,128,116,1,0,0,137,68,36,4,141,131,4,53,7,0,137,4,36,232,31,238,5,0,139,69,8,139,128,108,1,0,0,137,68,36,4,141,131,17,53,7,0,137,4,36,232,4,238,5,0,139,69,8,139,128,104,1,0,0,137,68, 36,4,141,131,30,53,7,0,137,4,36,232,233,237,5,0,139,69,8,139,128,120,1,0,0,137,68,36,4,141,131,36,53,7,0,137,4,36,232,206,237,5,0,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,5,148,1,0,0,137,4,36,232,161,182,7,0,139,69,8,199, 128,64,1,0,0,3,0,0,0,139,69,8,5,192,1,0,0,137,4,36,232,96,182,7,0,235,45,139,69,8,5,192,1,0,0,137,4,36,232,78,182,7,0,139,69,8,5,148,1,0,0,139,85,8,129,194,220,1,0,0,137,68,36,4,137,20,36,232,55,182,7,0,139,69,8,139,128,64,1,0,0,133,192,117,198,139,69, 8,5,148,1,0,0,137,4,36,232,68,182,7,0,139,69,8,139,144,248,1,0,0,141,69,244,137,68,36,4,137,20,36,232,14,182,7,0,133,192,116,14,141,131,161,53,7,0,137,4,36,232,209,239,5,0,139,69,8,5,192,1,0,0,137,4,36,232,206,181,7,0,139,69,8,5,220,1,0,0,137,4,36,232, 190,181,7,0,139,69,8,5,148,1,0,0,137,4,36,232,210,181,7,0,139,69,8,139,64,40,137,194,139,69,8,139,64,36,137,84,36,4,137,4,36,232,125,14,5,0,131,196,36,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,242,254,255,255,141,187,157,245,255, 255,141,131,185,52,7,0,137,4,36,232,220,242,4,0,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,252,1,0,0,137,116,36,8,137,124,36,4,137,4,36,232,136,231,4,0,137,194,141,131,24,228,7,0,137,16,141,131,194, 39,7,0,137,4,36,232,140,242,4,0,137,194,141,139,178,249,255,255,141,131,24,228,7,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,79,235,4,0,141,131,189,39,7,0,137,4,36,232,86,242,4,0,137,194,141,139,247,249,255,255,141,131,24,228,7, 0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,25,235,4,0,141,131,240,44,7,0,137,4,36,232,32,242,4,0,137,194,141,139,88,253,255,255,141,131,24,228,7,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,227,234,4,0,141, 131,152,51,7,0,137,4,36,232,234,241,4,0,137,194,141,139,73,250,255,255,141,131,24,228,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,165,234,4,0,141,131,74,77,7,0,137,4,36,232,172,241,4,0,137,194,141,139,61, 254,255,255,141,131,24,228,7,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,111,234,4,0,141,131,24,228,7,0,139,0,199,68,36,4,144,1,0,0,137,4,36,232,40,239,4,0,131,196,44,91,94,95,201,195,85,137,229,131,236,8,232,164,213,255,255,232, 233,234,255,255,232,74,254,255,255,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,235,17,139,69,244,141,145,99,172,7,0,139,18,137,16,131,69,244,4,255,77,240,131,125,240,255,117,230, 139,69,8,131,192,12,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,233,133,0,0,0,139,85,244,141,129,29,172,7,0,139,0,137,2,139,85,244,131,194,4,141,129,29,172,7,0,139,0,137,2,139,85, 244,131,194,8,141,129,29,172,7,0,139,0,137,2,139,85,244,131,194,12,141,129,29,172,7,0,139,0,137,2,139,85,244,131,194,16,141,129,29,172,7,0,139,0,137,2,139,85,244,131,194,20,141,129,29,172,7,0,139,0,137,2,139,85,244,131,194,24,141,129,29,172,7,0,139,0, 137,2,139,85,244,131,194,28,141,129,29,172,7,0,139,0,137,2,131,109,240,8,131,69,244,32,131,125,240,0,15,133,113,255,255,255,139,69,8,131,192,12,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,12,131,224,7,133,192,116,38,139,69,12,137,68,36,12, 139,69,8,137,68,36,8,199,68,36,4,2,0,0,0,141,131,240,254,255,255,137,4,36,232,63,6,0,0,235,36,139,69,12,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,2,0,0,0,141,131,54,255,255,255,137,4,36,232,25,6,0,0,131,196,20,91,201,195,85,137,229,83,131,236,36, 232,0,0,0,0,91,141,131,43,225,7,0,139,0,137,4,36,232,251,36,5,0,137,69,244,139,69,244,199,64,40,0,0,0,0,139,69,244,199,64,44,1,0,0,0,139,69,244,199,64,48,1,0,0,0,139,69,244,198,64,68,0,139,69,244,198,64,69,1,139,69,16,137,68,36,12,139,69,12,137,68,36, 8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,9,0,0,0,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,243,15,16,69,12,243,15,44,192,137,69,236,243,15,16,69,16,243,15,44,192,137,69,232,232,216,227,0,0,137,69,228,131,125,232,0, 127,7,199,69,232,1,0,0,0,131,125,236,0,121,7,199,69,236,0,0,0,0,141,131,130,170,7,0,243,15,16,0,15,46,69,20,115,2,235,15,199,69,240,1,0,0,0,139,69,240,137,69,244,235,76,141,131,134,170,7,0,243,15,16,8,243,15,16,69,20,15,46,193,115,2,235,21,243,15,16, 69,20,243,15,44,192,137,69,244,199,69,240,1,0,0,0,235,33,243,15,90,77,20,141,131,162,170,7,0,242,15,16,0,242,15,94,193,242,15,44,192,137,69,240,199,69,244,1,0,0,0,131,125,236,0,116,36,139,69,236,137,4,36,232,239,6,0,0,137,193,184,1,0,0,0,211,224,137, 69,224,139,69,224,59,69,236,116,12,209,101,224,235,7,199,69,224,0,0,0,0,131,125,224,0,116,53,139,69,224,137,4,36,232,190,6,0,0,137,193,184,1,0,0,0,211,224,59,69,224,116,28,141,131,46,49,7,0,137,68,36,4,139,69,8,137,4,36,232,252,235,5,0,199,69,224,64, 0,0,0,139,69,232,137,4,36,232,137,6,0,0,137,193,184,1,0,0,0,211,224,59,69,232,116,28,141,131,86,49,7,0,137,68,36,4,139,69,8,137,4,36,232,199,235,5,0,199,69,232,1,0,0,0,139,69,240,137,4,36,232,84,6,0,0,137,193,184,1,0,0,0,211,224,59,69,240,116,28,141, 131,122,49,7,0,137,68,36,4,139,69,8,137,4,36,232,146,235,5,0,199,69,240,1,0,0,0,139,69,244,137,4,36,232,31,6,0,0,137,193,184,1,0,0,0,211,224,59,69,244,116,28,141,131,162,49,7,0,137,68,36,4,139,69,8,137,4,36,232,93,235,5,0,199,69,244,1,0,0,0,139,85,8, 139,69,236,137,66,32,139,85,8,139,69,224,137,66,28,139,85,8,139,69,232,137,66,36,139,85,8,139,69,244,137,66,72,139,85,8,139,69,240,137,66,76,139,69,228,137,4,36,232,57,226,0,0,131,196,52,91,201,195,85,137,229,131,236,40,139,69,16,137,68,36,8,139,69,12, 137,68,36,4,139,69,8,137,4,36,232,111,253,255,255,137,69,244,139,69,244,198,64,68,1,139,69,244,198,64,69,0,139,69,244,201,195,85,137,229,131,236,8,232,0,0,0,0,89,139,69,8,15,182,64,68,132,192,116,28,141,129,81,168,7,0,243,15,16,0,15,46,69,12,15,149,192, 15,154,194,9,208,139,85,8,136,66,69,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,15,182,64,68,132,192,116,96,139,69,8,15,182,64,69,132,192,117,85,141,131,67,222,7,0,139,0,133,192,116,73,139,69,8,199,64,80,1,0,0,0,139,69,8,139,64,56,193,224, 2,137,194,141,131,67,222,7,0,139,0,141,4,2,137,69,244,235,18,139,69,244,139,0,137,194,139,69,244,137,4,36,255,210,137,69,244,131,125,244,0,117,232,139,69,8,199,64,80,0,0,0,0,235,21,141,131,95,47,7,0,137,68,36,4,139,69,8,137,4,36,232,33,234,5,0,131,196, 36,91,201,195,85,137,229,131,236,40,139,69,8,131,192,4,139,0,137,69,244,139,69,244,139,64,40,137,69,240,139,69,244,15,182,64,69,132,192,117,19,139,69,244,139,64,60,193,224,2,139,85,8,1,194,137,85,228,235,97,131,125,240,0,116,49,255,69,240,139,69,244, 139,64,44,59,69,240,117,7,199,69,240,0,0,0,0,139,85,244,139,69,240,137,66,40,139,69,244,139,64,60,193,224,2,139,85,8,1,194,137,85,228,235,42,139,69,244,139,80,48,139,69,244,137,80,52,139,69,244,139,64,44,131,248,1,15,159,192,15,182,208,139,69,244,137, 80,40,139,69,8,131,192,8,137,69,228,139,69,228,201,195,85,137,229,131,236,40,139,69,8,131,192,4,139,0,137,69,244,139,69,244,139,64,52,72,137,69,240,139,69,244,139,64,80,133,192,116,9,199,69,228,0,0,0,0,235,79,139,69,244,15,182,64,70,132,192,117,20,139, 69,244,139,64,64,193,224,2,3,69,8,131,192,8,137,69,228,235,48,131,125,240,0,116,33,139,85,244,139,69,240,137,66,52,139,85,8,131,194,16,139,69,244,139,64,60,193,224,2,137,209,41,193,137,77,228,235,9,139,69,8,131,192,8,137,69,228,139,69,228,201,195,85, 137,229,131,236,8,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,141,179,92,251,255,255,141,131,212,45,7,0,137,4,36,232,41,235,4,0,199,68,36,32,0,0,0,0,199,68,36,28,6,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36, 12,84,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,201,223,4,0,137,194,141,131,147,220,7,0,137,16,141,131,219,45,7,0,137,4,36,232,205,234,4,0,141,147,206,253,255,255,199,68,36,20,0,0,0,0,199,68,36,16,6,0,0,0,199,68,36,12,6,0,0,0,199,68,36,8,6, 0,0,0,137,68,36,4,137,20,36,232,167,226,4,0,141,131,135,37,7,0,137,4,36,232,141,234,4,0,137,194,141,139,209,251,255,255,141,131,147,220,7,0,139,0,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,6,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36, 4,137,4,36,232,56,227,4,0,141,131,55,37,7,0,137,4,36,232,63,234,4,0,137,194,141,139,235,255,255,255,141,131,147,220,7,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,2,227,4,0,141,147,3,254,255,255,141,131,147,220,7,0,139,0,137,84,36, 4,137,4,36,232,154,230,4,0,141,147,56,254,255,255,141,131,147,220,7,0,139,0,137,84,36,4,137,4,36,232,94,230,4,0,131,196,48,91,94,201,195,85,137,229,131,236,8,184,0,0,0,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,16,219,7,0,139,0,3,69,12, 64,137,69,244,139,69,244,141,12,133,0,0,0,0,141,131,16,219,7,0,139,0,141,20,133,0,0,0,0,141,131,12,219,7,0,139,0,137,76,36,8,137,84,36,4,137,4,36,232,254,3,5,0,137,194,141,131,12,219,7,0,137,16,141,131,12,219,7,0,139,0,141,80,252,141,131,16,219,7,0,139, 0,193,224,2,1,194,139,69,8,137,2,141,69,16,137,69,236,199,69,240,0,0,0,0,235,45,141,131,16,219,7,0,139,0,3,69,240,193,224,2,137,194,141,131,12,219,7,0,139,0,141,12,2,139,85,236,141,66,4,137,69,236,137,208,139,0,137,1,255,69,240,139,69,240,59,69,12,124, 203,141,131,12,219,7,0,139,0,141,80,252,139,69,244,193,224,2,1,194,141,131,231,255,255,255,137,2,141,147,16,219,7,0,139,69,244,137,2,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,44,218,7,0,139,0,3,69,12,64,137,69,244,139,69,244, 141,12,133,0,0,0,0,141,131,44,218,7,0,139,0,141,20,133,0,0,0,0,141,131,40,218,7,0,139,0,137,76,36,8,137,84,36,4,137,4,36,232,26,3,5,0,137,194,141,131,40,218,7,0,137,16,141,131,40,218,7,0,139,0,141,80,252,141,131,44,218,7,0,139,0,193,224,2,1,194,139,69, 8,137,2,199,69,240,0,0,0,0,235,42,141,131,44,218,7,0,139,0,3,69,240,193,224,2,137,194,141,131,40,218,7,0,139,0,1,194,139,69,240,193,224,2,3,69,16,139,0,137,2,255,69,240,139,69,240,59,69,12,124,206,141,131,40,218,7,0,139,0,141,80,252,139,69,244,193,224, 2,1,194,141,131,3,255,255,255,137,2,141,147,44,218,7,0,139,69,244,137,2,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,77,217,7,0,139,0,133,192,116,56,141,131,77,217,7,0,139,0,137,69,244,235,18,139,69,244,139,0,137,194,139,69,244, 137,4,36,255,210,137,69,244,131,125,244,0,117,232,141,131,85,217,7,0,139,0,141,80,1,141,131,85,217,7,0,137,16,131,196,36,91,201,195,85,137,229,131,236,40,199,69,244,255,255,255,255,131,125,8,0,127,15,199,69,228,0,0,0,0,235,18,255,69,244,209,125,8,131, 125,8,0,117,244,139,69,244,137,69,228,139,69,228,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,235,74,139,69,240,139,80,28,141,131,99,217,7,0,137,16,139,69,240,139,64,16,133,192,117,31,139,69,240,139,64,32,141,20,133,0,0,0,0,139,69,240,139,64,4,137, 84,36,4,137,4,36,232,178,2,5,0,199,68,36,4,36,0,0,0,139,69,240,137,4,36,232,159,2,5,0,141,131,99,217,7,0,139,0,137,69,240,131,125,240,0,117,165,199,69,232,0,0,0,0,235,19,139,85,232,141,131,219,216,7,0,199,4,144,0,0,0,0,255,69,232,131,125,232,32,126,231, 141,131,95,217,7,0,199,0,0,0,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,32,137,4,36,232,20,255,255,255,137,69,244,141,131,193,216,7,0,139,0,137,69,240,235,36,139,69,240,59,69,8,117,19,141,131,129,41,7,0,137,4,36, 232,132,229,5,0,233,35,1,0,0,139,69,240,139,64,24,137,69,240,131,125,240,0,117,214,139,69,244,141,147,61,216,7,0,139,4,130,137,69,240,235,36,139,69,240,59,69,8,117,19,141,131,143,41,7,0,137,4,36,232,73,229,5,0,233,232,0,0,0,139,69,240,139,64,24,137,69, 240,131,125,240,0,117,214,141,131,33,216,7,0,139,0,133,192,116,31,139,69,8,139,64,16,137,68,36,8,139,69,8,137,68,36,4,141,131,157,41,7,0,137,4,36,232,240,223,5,0,139,69,8,139,64,16,133,192,116,100,139,69,8,139,64,20,137,69,236,139,69,236,59,69,8,116, 6,131,125,236,0,117,14,141,131,170,41,7,0,137,4,36,232,219,228,5,0,139,69,236,139,64,12,141,80,255,139,69,236,137,80,12,139,69,236,139,64,12,133,192,117,11,139,69,236,137,4,36,232,242,254,255,255,141,131,193,216,7,0,139,16,139,69,8,137,80,24,141,147, 193,216,7,0,139,69,8,137,2,235,64,139,69,244,141,147,61,216,7,0,139,4,130,59,69,8,117,14,141,131,182,41,7,0,137,4,36,232,125,228,5,0,139,85,244,141,131,61,216,7,0,139,20,144,139,69,8,137,80,24,139,77,244,141,147,61,216,7,0,139,69,8,137,4,138,131,196, 36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,69,236,0,0,0,0,139,69,8,137,4,36,232,161,253,255,255,137,69,244,131,125,8,0,116,66,139,77,244,184,1,0,0,0,211,224,137,69,236,139,69,236,59,69,8,116,3,209,101,236,131,125,244,32,126,14,141,131, 85,40,7,0,137,4,36,232,2,228,5,0,139,69,244,193,224,2,137,194,141,131,206,214,7,0,141,4,2,137,69,228,235,9,141,131,82,215,7,0,137,69,228,139,69,228,139,0,137,69,232,131,125,232,0,116,13,139,69,232,139,80,24,139,69,228,137,16,235,100,199,4,36,36,0,0,0, 232,107,254,4,0,137,69,232,131,125,8,0,116,34,139,69,236,193,224,2,137,4,36,232,84,254,4,0,137,194,139,69,232,137,80,4,139,69,232,199,64,16,0,0,0,0,235,20,139,69,232,199,64,4,0,0,0,0,139,69,232,199,64,16,1,0,0,0,141,131,86,215,7,0,139,16,139,69,232,137, 80,28,141,147,86,215,7,0,139,69,232,137,2,139,85,232,139,69,8,137,2,139,85,232,139,69,236,137,66,32,139,85,232,139,69,12,137,66,8,139,69,232,199,64,12,0,0,0,0,139,69,232,199,64,20,0,0,0,0,141,131,178,214,7,0,139,0,133,192,116,31,139,69,232,139,64,16, 137,68,36,8,139,69,232,137,68,36,4,141,131,109,40,7,0,137,4,36,232,241,221,5,0,139,69,232,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,139,80,8,139,69,8,139,0,137,84,36,4,137,4,36,232,143,254,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0, 0,91,139,69,8,139,64,16,133,192,116,10,139,69,8,139,64,20,133,192,116,14,141,131,6,39,7,0,137,4,36,232,180,226,5,0,139,69,8,59,69,12,117,14,141,131,25,39,7,0,137,4,36,232,158,226,5,0,139,85,8,139,69,12,137,66,20,139,69,12,139,80,4,139,69,8,137,80,4,139, 69,12,139,16,139,69,8,137,16,139,69,12,139,80,32,139,69,8,137,80,32,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,139,16,139,69,12,139,0,57,194,117,32,139,69,8,243,15,16,72,8,139,69,12,243,15,16,64,8,15,46,200,117,11,122,9,199,69,244,1,0,0,0,235, 7,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,141,212,7,0,139,0,133,192,116,47,141,131,145,212,7,0,139,0,141,20,133,0,0,0,0,141,131,141,212,7,0,139,0,137,84,36,4,137,4,36,232,134,254,4,0,141,131,141,212,7,0,199, 0,0,0,0,0,232,125,251,255,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,232,155,255,255,255,141,131,50,212,7,0,139,0,141,80,1,141,131,50,212,7,0,137,16,199,4,36,4,0,0,0,232,88,252,4,0,137,194,141,131,58,212,7,0,137,16,141,131,58,212, 7,0,139,16,141,131,21,249,255,255,137,2,141,131,62,212,7,0,199,0,1,0,0,0,141,131,222,212,7,0,139,0,133,192,116,14,141,131,37,38,7,0,137,4,36,232,105,225,5,0,131,196,20,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,188,211,7,0,139,0,201,195,85, 137,229,83,131,236,52,232,0,0,0,0,91,199,4,36,36,0,0,0,232,227,251,4,0,137,69,244,141,131,169,211,7,0,139,0,133,192,116,14,141,131,163,37,7,0,137,4,36,232,253,219,5,0,139,69,244,199,0,0,0,0,0,139,69,8,137,194,139,69,244,136,80,32,139,85,244,139,69,12, 137,66,16,139,85,244,139,69,16,137,66,8,139,85,244,139,69,20,137,66,12,141,131,81,212,7,0,139,16,139,69,244,137,80,4,141,147,81,212,7,0,139,69,244,137,2,139,69,244,131,196,52,91,201,195,85,137,229,131,236,40,199,4,36,32,0,0,0,232,99,251,4,0,137,69,244, 139,69,8,139,16,139,69,244,137,80,20,139,85,8,139,69,244,137,2,139,85,244,139,69,12,137,66,24,139,69,12,137,4,36,232,180,18,5,0,137,194,139,69,244,137,80,4,139,69,244,139,64,4,137,194,137,208,1,192,1,208,193,224,2,137,4,36,232,24,251,4,0,137,194,139, 69,244,137,16,139,69,244,139,0,137,69,232,139,69,244,139,64,4,137,69,240,235,13,139,69,232,199,0,0,0,0,0,131,69,232,12,255,77,240,131,125,240,255,117,234,139,69,12,137,4,36,232,241,19,5,0,137,194,139,69,244,137,80,12,139,69,244,139,64,12,193,224,4,137, 4,36,232,196,250,4,0,137,194,139,69,244,137,80,8,139,69,244,139,64,8,137,69,236,139,69,244,139,64,12,137,69,240,235,23,139,69,236,199,64,12,0,0,0,0,139,69,236,199,0,0,0,0,0,131,69,236,16,255,77,240,131,125,240,255,117,224,201,195,85,137,229,87,86,83, 131,236,92,232,0,0,0,0,91,139,69,16,137,68,36,4,139,69,12,137,4,36,232,192,19,5,0,137,69,208,139,69,24,137,68,36,4,139,69,20,137,4,36,232,46,18,5,0,137,69,204,141,131,49,210,7,0,139,0,133,192,116,66,139,69,20,139,0,137,4,36,232,171,221,4,0,137,198,139, 69,12,139,0,137,4,36,232,156,221,4,0,137,194,139,69,24,137,68,36,16,139,69,16,137,68,36,12,137,116,36,8,137,84,36,4,141,131,63,36,7,0,137,4,36,232,54,218,5,0,139,69,8,139,0,137,69,228,235,9,139,69,228,139,64,20,137,69,228,131,125,228,0,116,11,139,69, 228,139,64,24,59,69,12,117,230,139,69,8,139,0,137,69,224,235,9,139,69,224,139,64,20,137,69,224,131,125,224,0,116,11,139,69,224,139,64,24,59,69,20,117,230,131,125,228,0,116,12,131,125,224,0,116,6,131,125,204,0,121,29,139,69,228,139,80,24,141,131,81,36, 7,0,137,68,36,4,137,20,36,232,169,221,5,0,233,238,0,0,0,131,125,208,0,120,22,139,69,228,139,64,12,59,69,208,126,11,139,69,224,139,64,4,59,69,204,127,90,139,69,224,139,112,4,139,69,228,139,120,12,139,69,20,139,0,137,4,36,232,202,220,4,0,137,69,196,139, 69,12,139,0,137,4,36,232,186,220,4,0,137,194,137,116,36,24,137,124,36,20,139,69,204,137,68,36,16,139,69,208,137,68,36,12,139,69,196,137,68,36,8,137,84,36,4,141,131,133,36,7,0,137,4,36,232,99,222,5,0,139,69,228,139,80,8,139,69,208,193,224,4,141,4,2,137, 69,220,139,69,224,139,8,139,85,204,137,208,1,192,1,208,193,224,2,141,4,1,137,69,216,199,4,36,12,0,0,0,232,221,248,4,0,137,69,212,139,69,220,139,80,12,139,69,212,137,80,8,139,85,220,139,69,212,137,66,12,139,85,212,139,69,224,137,2,139,85,212,139,69,204, 137,66,4,139,69,220,139,0,141,80,1,139,69,220,137,16,139,69,216,139,0,141,80,1,139,69,216,137,16,131,196,92,91,94,95,201,195,85,137,229,131,236,40,139,69,8,139,0,137,69,240,199,69,244,0,0,0,0,235,28,139,69,240,59,69,12,117,8,139,69,244,137,69,228,235, 25,139,69,240,139,64,20,137,69,240,255,69,244,131,125,240,0,117,222,199,69,228,255,255,255,255,139,69,228,201,195,85,137,229,87,86,83,129,236,156,0,0,0,232,0,0,0,0,91,139,69,12,139,64,24,139,0,137,69,212,141,131,125,167,7,0,139,0,139,0,57,69,212,116, 26,141,131,121,167,7,0,139,0,139,0,57,69,212,117,20,139,69,8,15,182,64,33,132,192,117,9,199,69,132,1,0,0,0,235,7,199,69,132,0,0,0,0,139,69,132,137,69,200,141,131,125,167,7,0,139,0,139,0,57,69,212,116,37,141,131,129,167,7,0,139,0,139,0,57,69,212,117,31, 139,69,8,15,182,64,33,132,192,117,20,139,69,8,15,182,64,34,132,192,117,9,199,69,136,1,0,0,0,235,7,199,69,136,0,0,0,0,139,85,136,137,85,196,141,131,245,207,7,0,139,0,133,192,116,45,139,69,212,137,4,36,232,7,219,4,0,137,194,139,69,200,137,68,36,12,139, 69,196,137,68,36,8,137,84,36,4,141,131,106,34,7,0,137,4,36,232,165,215,5,0,199,69,208,0,0,0,0,139,69,12,139,0,137,69,224,233,151,0,0,0,139,69,224,139,0,133,192,15,133,131,0,0,0,139,69,8,139,80,20,139,69,8,139,64,24,137,84,36,4,137,4,36,232,48,248,255, 255,137,69,172,139,69,12,139,80,24,139,69,208,137,68,36,4,137,20,36,232,58,17,5,0,137,69,164,131,125,164,0,116,32,139,69,172,139,16,139,69,172,139,64,4,137,84,36,8,137,68,36,4,139,69,164,137,4,36,232,53,128,254,255,235,23,139,69,172,139,16,139,69,172, 139,64,4,137,84,36,4,137,4,36,232,8,237,255,255,139,69,224,139,85,172,137,80,8,139,69,172,199,64,12,1,0,0,0,255,69,208,131,69,224,12,139,69,12,139,64,4,59,69,208,15,143,90,255,255,255,139,69,12,139,80,4,139,69,12,139,64,12,141,4,2,193,224,2,137,4,36, 232,154,246,4,0,137,69,192,139,69,12,139,64,4,193,224,2,3,69,192,137,69,188,139,69,192,137,69,184,139,69,12,139,0,137,69,224,139,69,12,139,64,4,137,69,208,235,76,139,69,224,139,80,8,139,69,184,137,16,139,69,184,139,0,139,80,12,74,137,80,12,139,64,12, 137,69,160,131,125,196,0,116,14,139,69,184,139,16,139,66,12,64,137,66,12,235,19,131,125,160,0,117,13,139,69,184,139,0,137,4,36,232,183,245,255,255,131,69,184,4,131,69,224,12,255,77,208,131,125,208,255,117,171,139,69,188,137,69,184,139,69,12,139,64,8, 137,69,228,139,69,12,139,64,12,137,69,208,235,113,131,125,200,0,116,43,139,69,8,139,64,20,137,68,36,4,199,4,36,0,0,0,0,232,223,246,255,255,137,194,139,69,228,137,80,8,139,69,228,139,80,8,139,69,184,137,16,235,43,139,69,8,139,80,20,139,69,8,139,64,24, 137,84,36,4,137,4,36,232,178,246,255,255,137,194,139,69,228,137,80,8,139,69,228,139,80,8,139,69,184,137,16,139,69,184,139,16,139,69,228,139,0,137,66,12,131,69,184,4,131,69,228,16,255,77,208,131,125,208,255,117,134,141,131,169,24,7,0,137,4,36,232,236, 219,4,0,137,194,139,69,12,139,64,24,137,84,36,4,137,4,36,232,252,234,4,0,137,193,139,69,12,139,64,24,137,194,139,69,192,137,68,36,4,137,20,36,255,209,139,69,188,137,69,184,139,69,12,139,64,8,137,69,228,139,69,12,139,64,12,137,69,208,235,33,139,69,184, 139,0,139,64,12,133,192,117,13,139,69,184,139,0,137,4,36,232,167,244,255,255,131,69,184,4,131,69,228,16,255,77,208,131,125,208,255,117,214,141,131,245,207,7,0,139,0,133,192,15,132,128,1,0,0,139,69,12,139,80,4,139,69,12,139,64,12,141,4,2,133,192,117,63, 139,69,12,137,68,36,4,139,69,8,137,4,36,232,67,252,255,255,137,198,139,69,12,139,64,24,139,0,137,4,36,232,58,216,4,0,137,116,36,8,137,68,36,4,141,131,120,34,7,0,137,4,36,232,228,212,5,0,233,46,1,0,0,139,69,12,139,80,4,139,69,12,139,64,12,141,4,2,131, 248,1,117,72,139,69,184,139,56,139,69,12,137,68,36,4,139,69,8,137,4,36,232,235,251,255,255,137,198,139,69,12,139,64,24,139,0,137,4,36,232,226,215,4,0,137,124,36,12,137,116,36,8,137,68,36,4,141,131,130,34,7,0,137,4,36,232,136,212,5,0,233,210,0,0,0,139, 69,12,139,80,4,139,69,12,139,64,12,141,4,2,131,248,2,117,87,139,69,184,131,192,4,139,56,139,69,184,139,0,137,69,140,139,69,12,137,68,36,4,139,69,8,137,4,36,232,132,251,255,255,137,198,139,69,12,139,64,24,139,0,137,4,36,232,123,215,4,0,137,124,36,16,139, 85,140,137,84,36,12,137,116,36,8,137,68,36,4,141,131,146,34,7,0,137,4,36,232,26,212,5,0,235,103,139,69,184,131,192,8,139,56,139,69,184,131,192,4,139,0,137,69,144,139,69,184,139,0,137,69,148,139,69,12,137,68,36,4,139,69,8,137,4,36,232,34,251,255,255,137, 198,139,69,12,139,64,24,139,0,137,4,36,232,25,215,4,0,137,124,36,20,139,85,144,137,84,36,16,139,85,148,137,84,36,12,137,116,36,8,137,68,36,4,141,131,166,34,7,0,137,4,36,232,177,211,5,0,139,69,12,139,64,8,137,69,228,139,69,12,139,64,12,137,69,208,233, 183,1,0,0,139,69,228,139,64,8,137,69,180,139,69,228,139,64,12,137,69,220,233,146,1,0,0,139,69,220,139,0,137,69,168,139,69,168,139,8,139,69,220,139,64,4,137,194,137,208,1,192,1,208,193,224,2,141,4,1,137,69,224,139,69,224,139,64,8,137,69,176,131,125,176, 0,15,132,223,0,0,0,139,69,180,139,64,12,141,80,255,139,69,180,137,80,12,139,69,176,139,64,12,141,80,255,139,69,176,137,80,12,139,69,176,137,68,36,4,139,69,180,137,4,36,232,201,245,255,255,133,192,117,51,139,69,12,139,64,24,139,0,137,4,36,232,72,214,4, 0,137,194,139,69,12,139,72,24,137,84,36,8,141,131,197,34,7,0,137,68,36,4,137,12,36,232,207,214,5,0,233,58,1,0,0,139,69,180,137,4,36,232,242,244,255,255,137,69,172,139,69,180,139,8,139,69,172,139,112,4,139,69,176,139,80,4,139,69,180,139,64,4,137,76,36, 12,137,116,36,8,137,84,36,4,137,4,36,232,144,33,254,255,139,85,224,139,69,172,137,66,8,139,69,172,199,64,12,1,0,0,0,139,69,180,139,64,12,133,192,117,11,139,69,180,137,4,36,232,217,241,255,255,139,69,176,139,64,12,133,192,117,22,139,69,176,137,4,36,232, 196,241,255,255,235,9,139,85,224,139,69,180,137,66,8,139,69,224,139,64,4,141,80,1,139,69,224,137,80,4,139,69,224,139,80,4,139,69,224,139,0,57,194,124,76,139,69,168,139,64,4,131,248,1,126,47,139,69,168,139,0,137,69,224,139,69,168,139,64,4,137,69,204,235, 19,139,69,224,139,80,4,139,69,224,139,0,57,194,124,31,131,69,224,12,255,77,204,131,125,204,255,117,228,139,69,168,137,68,36,4,139,69,8,137,4,36,232,118,249,255,255,139,69,220,139,64,8,137,69,220,131,125,220,0,15,133,100,254,255,255,131,69,228,16,255, 77,208,131,125,208,255,15,133,60,254,255,255,139,69,12,139,80,4,139,69,12,139,64,12,141,4,2,193,224,2,137,68,36,4,139,69,192,137,4,36,232,100,243,4,0,139,69,12,199,64,28,1,0,0,0,129,196,156,0,0,0,91,94,95,201,195,85,137,229,87,86,83,129,236,220,0,0,0, 232,0,0,0,0,91,139,69,8,139,64,4,137,69,192,199,69,144,0,0,0,0,199,69,136,1,0,0,0,199,69,132,1,0,0,0,141,131,17,201,7,0,139,0,133,192,15,132,221,0,0,0,141,131,0,28,7,0,137,4,36,232,82,209,5,0,139,69,8,139,0,137,69,228,233,184,0,0,0,139,69,228,139,64, 24,139,0,137,4,36,232,117,212,4,0,137,68,36,4,141,131,19,28,7,0,137,4,36,232,35,209,5,0,139,69,228,139,64,8,137,69,220,199,69,204,0,0,0,0,235,112,139,69,220,139,64,12,137,69,212,235,88,139,69,212,139,120,4,139,69,212,139,0,137,68,36,4,139,69,8,137,4, 36,232,35,248,255,255,137,198,139,69,212,139,0,139,64,24,139,0,137,4,36,232,24,212,4,0,137,124,36,16,137,116,36,12,137,68,36,8,139,69,204,137,68,36,4,141,131,29,28,7,0,137,4,36,232,183,208,5,0,139,69,212,139,64,8,137,69,212,131,125,212,0,117,162,131, 69,220,16,255,69,204,139,69,228,139,64,12,59,69,204,127,133,139,69,228,139,64,20,137,69,228,131,125,228,0,15,133,62,255,255,255,139,69,8,139,0,137,69,228,199,69,196,0,0,0,0,235,70,139,69,228,139,64,24,137,69,128,139,69,128,139,16,141,131,33,201,7,0,139, 0,57,194,117,35,131,125,196,0,116,23,141,131,69,28,7,0,137,68,36,4,139,69,196,137,4,36,232,34,212,5,0,235,6,139,69,128,137,69,196,139,69,228,139,64,20,137,69,228,131,125,228,0,117,180,131,125,192,0,116,20,139,69,192,139,64,20,137,69,188,139,69,192,139, 64,24,137,69,184,235,16,232,131,54,5,0,217,93,188,232,181,167,5,0,137,69,184,131,125,196,0,15,132,95,1,0,0,139,69,196,139,64,28,137,69,168,131,125,168,0,117,6,139,69,184,137,69,168,139,69,196,139,64,32,137,69,164,131,125,164,0,117,6,139,69,168,137,69, 164,139,69,196,139,64,36,137,133,124,255,255,255,139,133,124,255,255,255,59,69,168,126,9,139,69,168,137,133,124,255,255,255,139,69,196,139,64,76,137,69,136,139,69,196,139,64,72,137,69,132,139,69,136,59,69,184,126,6,139,69,184,137,69,136,139,69,168,137, 194,15,175,85,136,139,69,184,15,175,133,124,255,255,255,15,175,69,132,137,193,137,208,193,250,31,247,249,137,69,180,139,69,184,15,175,133,124,255,255,255,137,194,15,175,85,132,139,69,168,15,175,69,136,137,193,137,208,193,250,31,247,249,137,69,176,139, 69,196,139,64,40,137,69,172,243,15,42,133,124,255,255,255,15,40,200,243,15,89,77,188,243,15,42,69,132,243,15,89,200,243,15,42,69,136,15,40,209,243,15,94,208,15,40,194,243,15,17,69,160,131,125,180,0,127,7,199,69,180,1,0,0,0,131,125,176,0,127,7,199,69, 176,1,0,0,0,139,85,196,139,69,176,137,66,48,139,85,196,139,69,180,137,66,44,139,85,180,74,141,131,29,201,7,0,139,0,33,194,139,69,196,137,80,40,131,125,192,0,116,29,131,189,124,255,255,255,1,117,20,139,69,168,59,69,184,117,12,131,125,136,1,117,6,131,125, 132,1,116,7,199,69,144,1,0,0,0,139,69,196,15,182,64,68,15,190,192,137,69,140,235,103,139,69,188,137,69,160,139,69,184,137,69,168,131,125,192,0,116,14,139,69,192,139,64,28,137,133,84,255,255,255,235,9,139,69,168,137,133,84,255,255,255,139,141,84,255,255, 255,137,77,164,199,69,132,1,0,0,0,139,69,132,137,69,136,199,69,176,1,0,0,0,139,69,176,137,69,180,199,69,172,0,0,0,0,131,125,192,0,117,7,199,69,144,1,0,0,0,199,69,140,0,0,0,0,139,69,144,137,194,139,69,8,136,80,33,139,69,140,137,194,139,69,8,136,80,34, 139,85,8,139,69,160,137,66,20,139,85,8,139,69,168,137,66,24,139,85,8,139,69,164,137,66,28,139,69,8,139,64,16,133,192,15,132,215,0,0,0,131,125,140,0,117,10,131,125,144,0,15,132,199,0,0,0,199,69,204,0,0,0,0,139,69,8,139,80,16,139,69,8,139,64,8,193,224, 2,141,4,2,137,133,120,255,255,255,233,148,0,0,0,139,133,120,255,255,255,139,0,139,64,16,133,192,116,123,139,133,120,255,255,255,139,0,139,64,20,133,192,117,108,139,69,188,137,68,36,4,139,69,184,137,4,36,232,77,238,255,255,137,194,139,133,120,255,255, 255,139,0,137,84,36,4,137,4,36,232,170,239,255,255,139,133,120,255,255,255,139,16,139,66,12,64,137,66,12,141,131,17,201,7,0,139,0,133,192,116,41,139,133,120,255,255,255,139,0,139,80,20,139,133,120,255,255,255,139,0,137,84,36,8,137,68,36,4,141,131,109, 28,7,0,137,4,36,232,47,205,5,0,255,69,204,131,133,120,255,255,255,4,139,69,8,139,64,12,59,69,204,15,143,93,255,255,255,141,131,17,201,7,0,139,0,133,192,116,28,139,69,140,137,68,36,8,139,69,144,137,68,36,4,141,131,122,28,7,0,137,4,36,232,238,204,5,0,139, 69,8,139,0,137,69,228,233,43,1,0,0,139,69,228,139,64,24,137,133,116,255,255,255,139,69,8,139,64,16,137,133,112,255,255,255,139,69,8,139,64,16,137,133,108,255,255,255,131,189,108,255,255,255,0,116,15,139,69,8,139,64,8,193,224,2,1,133,108,255,255,255,139, 133,116,255,255,255,139,16,141,131,149,160,7,0,139,0,139,0,57,194,117,94,141,131,29,201,7,0,139,16,139,69,8,139,72,16,139,181,116,255,255,255,139,69,140,137,68,36,40,139,69,144,137,68,36,36,139,69,132,137,68,36,32,139,69,136,137,68,36,28,139,69,176,137, 68,36,24,139,69,180,137,68,36,20,137,84,36,16,139,69,164,137,68,36,12,139,69,168,137,68,36,8,137,76,36,4,137,52,36,232,217,6,2,0,235,114,139,133,116,255,255,255,139,16,141,131,157,160,7,0,139,0,139,0,57,194,117,92,141,131,29,201,7,0,139,16,139,141,116, 255,255,255,139,69,140,137,68,36,40,139,69,144,137,68,36,36,139,69,132,137,68,36,32,139,69,136,137,68,36,28,139,69,176,137,68,36,24,139,69,180,137,68,36,20,137,84,36,16,139,69,164,137,68,36,12,139,69,168,137,68,36,8,139,133,108,255,255,255,137,68,36, 4,137,12,36,232,185,15,2,0,139,69,228,139,64,20,137,69,228,131,125,228,0,15,133,203,254,255,255,141,131,25,201,7,0,139,0,137,69,156,131,125,196,0,116,58,131,125,144,0,117,6,131,125,140,0,116,46,139,69,196,137,68,36,8,199,68,36,4,1,0,0,0,141,131,89,235, 255,255,137,4,36,232,224,231,255,255,141,131,25,201,7,0,139,0,141,80,255,139,69,196,137,80,56,139,69,8,139,0,137,69,228,235,114,139,69,228,199,64,28,0,0,0,0,139,69,228,139,64,8,137,69,220,139,69,228,139,64,12,137,69,204,235,14,139,69,220,199,64,4,0,0, 0,0,131,69,220,16,255,77,204,131,125,204,255,117,233,139,69,228,139,0,137,69,216,139,69,228,139,64,4,137,69,204,235,24,139,69,216,199,64,4,0,0,0,0,139,69,216,199,64,8,0,0,0,0,131,69,216,12,255,77,204,131,125,204,255,117,223,139,69,228,139,64,20,137,69, 228,131,125,228,0,117,136,139,69,8,139,0,137,69,228,235,78,139,69,228,139,64,28,133,192,117,59,139,69,228,139,0,137,69,216,139,69,228,139,64,4,137,69,204,235,13,139,69,216,139,0,133,192,117,31,131,69,216,12,255,77,204,131,125,204,255,117,234,139,69,228, 137,68,36,4,139,69,8,137,4,36,232,12,242,255,255,139,69,228,139,64,20,137,69,228,131,125,228,0,117,172,139,69,8,139,0,137,69,228,233,39,1,0,0,139,69,228,139,64,28,133,192,15,133,16,1,0,0,139,69,228,139,80,24,141,131,149,28,7,0,137,68,36,4,137,20,36,232, 51,206,5,0,199,69,204,0,0,0,0,139,69,8,139,80,16,139,69,8,139,64,8,193,224,2,141,4,2,137,133,104,255,255,255,233,195,0,0,0,139,133,104,255,255,255,139,0,139,64,16,133,192,15,132,166,0,0,0,139,133,104,255,255,255,139,0,139,64,20,133,192,15,133,147,0,0, 0,139,69,188,137,68,36,4,139,69,184,137,4,36,232,182,234,255,255,137,133,100,255,255,255,139,133,104,255,255,255,139,16,139,133,100,255,255,255,137,68,36,4,137,20,36,232,9,236,255,255,139,133,104,255,255,255,139,16,139,66,12,64,137,66,12,139,133,100, 255,255,255,139,16,139,133,100,255,255,255,139,64,4,137,84,36,4,137,4,36,232,154,223,255,255,141,131,17,201,7,0,139,0,133,192,116,41,139,133,104,255,255,255,139,0,139,80,20,139,133,104,255,255,255,139,0,137,84,36,8,137,68,36,4,141,131,202,28,7,0,137, 4,36,232,113,201,5,0,255,69,204,131,133,104,255,255,255,4,139,69,8,139,64,12,59,69,204,15,143,46,255,255,255,235,19,139,69,228,139,64,20,137,69,228,131,125,228,0,15,133,207,254,255,255,131,125,196,0,116,41,131,125,144,0,117,6,131,125,140,0,116,29,139, 69,196,137,68,36,8,199,68,36,4,1,0,0,0,141,131,247,235,255,255,137,4,36,232,130,229,255,255,141,131,25,201,7,0,139,0,137,69,152,139,69,8,139,0,137,69,228,233,175,0,0,0,139,69,228,139,64,24,137,133,96,255,255,255,139,133,96,255,255,255,139,16,141,131, 157,160,7,0,139,0,139,0,57,194,15,133,128,0,0,0,139,69,8,139,64,16,137,133,92,255,255,255,131,189,92,255,255,255,0,116,15,139,69,8,139,64,8,193,224,2,1,133,92,255,255,255,141,131,29,201,7,0,139,16,139,141,96,255,255,255,139,69,140,137,68,36,40,139,69, 144,137,68,36,36,139,69,132,137,68,36,32,139,69,136,137,68,36,28,139,69,176,137,68,36,24,139,69,180,137,68,36,20,137,84,36,16,139,69,164,137,68,36,12,139,69,168,137,68,36,8,139,133,92,255,255,255,137,68,36,4,137,12,36,232,148,13,2,0,139,69,228,139,64, 20,137,69,228,131,125,228,0,15,133,71,255,255,255,141,131,25,201,7,0,139,0,137,69,148,131,125,196,0,116,47,139,85,156,139,69,152,137,193,41,209,137,202,139,69,196,137,80,60,139,85,152,139,69,148,137,193,41,209,137,202,139,69,196,137,80,64,139,69,144, 137,194,139,69,196,136,80,70,141,131,17,201,7,0,139,0,133,192,15,132,41,1,0,0,139,69,8,139,64,4,133,192,117,69,141,131,25,201,7,0,139,0,137,69,204,141,131,21,201,7,0,139,0,137,133,88,255,255,255,235,33,139,133,88,255,255,255,139,0,137,68,36,4,141,131, 231,28,7,0,137,4,36,232,180,199,5,0,131,133,88,255,255,255,4,255,77,204,131,125,204,255,117,214,141,131,241,28,7,0,137,4,36,232,150,199,5,0,233,199,0,0,0,139,69,8,139,0,139,64,8,137,69,220,139,69,8,139,0,139,64,12,137,69,200,235,55,139,69,220,139,64, 12,137,69,212,235,34,139,69,212,139,64,8,137,69,208,199,68,36,4,12,0,0,0,139,69,212,137,4,36,232,1,233,4,0,139,69,208,137,69,212,131,125,212,0,117,216,131,69,220,16,255,77,200,131,125,200,255,117,192,139,69,8,139,0,139,64,12,137,194,193,226,4,139,69, 8,139,0,139,64,8,137,84,36,4,137,4,36,232,199,232,4,0,139,69,8,139,0,139,64,4,137,194,137,208,1,192,1,208,193,224,2,137,194,139,69,8,139,0,139,0,137,84,36,4,137,4,36,232,159,232,4,0,139,69,8,139,0,137,69,228,139,69,228,139,80,20,139,69,8,137,16,199,68, 36,4,32,0,0,0,139,69,228,137,4,36,232,121,232,4,0,139,69,8,139,0,133,192,15,133,44,255,255,255,141,131,185,201,7,0,139,0,59,69,8,117,16,139,69,8,139,80,4,141,131,185,201,7,0,137,16,235,14,141,131,11,29,7,0,137,4,36,232,172,203,5,0,199,68,36,4,36,0,0, 0,139,69,8,137,4,36,232,46,232,4,0,129,196,220,0,0,0,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,146,190,7,0,139,0,133,192,117,14,141,131,248,17,7,0,137,4,36,232,103,203,5,0,141,131,146,190,7,0,139,0,15,182,64,32,132,192,116,9,199, 69,244,0,0,0,0,235,45,131,125,12,0,116,14,141,131,146,190,7,0,139,0,139,64,8,1,69,8,141,131,146,190,7,0,139,0,139,80,16,139,69,8,193,224,2,141,4,2,139,0,137,69,244,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,232,104,44,5, 0,217,93,244,139,69,8,139,64,32,137,69,240,235,70,141,131,132,189,7,0,139,16,141,69,240,137,68,36,4,137,20,36,232,160,193,0,0,137,69,236,131,125,236,0,116,38,139,69,236,139,64,72,243,15,42,200,139,69,236,139,64,76,243,15,42,192,243,15,94,200,243,15,16, 69,244,243,15,89,193,243,15,17,69,244,139,69,240,133,192,117,179,139,69,8,139,80,12,139,69,244,137,68,36,4,137,20,36,232,115,245,4,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,152,189,7,0,139,0,137,4,36,232,204,0,5,0,137,69, 244,139,85,244,141,131,252,147,7,0,139,0,137,68,36,4,137,20,36,232,128,243,4,0,232,48,143,0,0,137,194,139,69,244,137,80,32,139,69,244,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,166,255,255,255,141,131,186,16,7,0,137,4,36, 232,68,203,4,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,252,191,4,0,137,194,141,131,74,189,7,0,137,16,141,147,30,255,255,255,141,131,74,189,7,0,139,0,137,84,36,4,137,4,36,232,111,199, 4,0,131,196,32,91,94,201,195,85,137,229,131,236,8,232,151,223,255,255,232,119,255,255,255,201,195,85,137,229,131,236,8,131,125,8,7,127,7,199,69,8,8,0,0,0,139,69,8,201,195,85,137,229,131,236,8,131,125,8,3,127,7,199,69,8,4,0,0,0,139,69,8,201,195,85,137, 229,131,236,8,235,4,131,109,8,30,131,125,8,29,127,246,235,4,131,69,8,30,131,125,8,0,120,246,139,69,8,201,195,85,137,229,83,129,236,36,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,141,131,62,147,7,0,139,0,139,16,137,85,244,49,210,139,133,244, 251,255,255,139,0,137,4,36,232,159,141,7,0,61,231,3,0,0,118,14,139,141,244,251,255,255,137,141,240,251,255,255,235,114,139,133,244,251,255,255,139,0,137,133,4,252,255,255,141,133,11,252,255,255,137,133,0,252,255,255,139,133,4,252,255,255,15,182,0,60, 36,117,11,139,133,0,252,255,255,198,0,35,235,30,139,133,4,252,255,255,15,182,16,139,133,0,252,255,255,136,16,139,133,0,252,255,255,15,182,0,132,192,116,14,255,133,4,252,255,255,255,133,0,252,255,255,235,188,141,133,11,252,255,255,137,4,36,232,207,201, 4,0,137,133,240,251,255,255,139,133,240,251,255,255,141,147,62,147,7,0,139,18,139,77,244,51,10,116,5,232,202,138,7,0,129,196,36,4,0,0,91,201,195,85,137,229,83,129,236,36,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,141,131,92,146,7,0,139,0,139, 16,137,85,244,49,210,139,133,244,251,255,255,139,0,137,4,36,232,189,140,7,0,61,231,3,0,0,118,14,139,141,244,251,255,255,137,141,240,251,255,255,235,114,139,133,244,251,255,255,139,0,137,133,4,252,255,255,141,133,11,252,255,255,137,133,0,252,255,255,139, 133,4,252,255,255,15,182,0,60,35,117,11,139,133,0,252,255,255,198,0,36,235,30,139,133,4,252,255,255,15,182,16,139,133,0,252,255,255,136,16,139,133,0,252,255,255,15,182,0,132,192,116,14,255,133,4,252,255,255,255,133,0,252,255,255,235,188,141,133,11,252, 255,255,137,4,36,232,237,200,4,0,137,133,240,251,255,255,139,133,240,251,255,255,141,147,92,146,7,0,139,18,139,77,244,51,10,116,5,232,232,137,7,0,129,196,36,4,0,0,91,201,195,85,137,229,131,236,24,139,85,8,139,130,28,4,0,0,13,0,0,0,4,137,130,28,4,0,0, 139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,75,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116,59,139,69,8,139,128,56,4,0,0,139,16,139,69,8,139,128,52,4,0,0,139,0,137,84,36,4,137,4,36,232,169,139,7,0,133,192,117,21,139,69,8,139,144,28,4,0,0,129, 226,255,255,255,251,137,144,28,4,0,0,201,195,85,137,229,83,129,236,148,0,0,0,232,0,0,0,0,91,139,69,8,137,69,148,139,69,16,137,69,144,141,131,1,145,7,0,139,0,139,16,137,85,244,49,210,139,69,12,193,224,3,3,69,144,139,0,131,248,2,117,31,139,69,144,137,68, 36,8,199,68,36,4,160,134,1,0,139,69,12,137,4,36,232,172,74,4,0,137,69,140,235,116,139,69,12,193,224,3,3,69,144,139,0,131,248,1,117,83,139,69,144,137,68,36,8,199,68,36,4,160,134,1,0,139,69,12,137,4,36,232,84,74,4,0,137,68,36,16,141,131,213,13,7,0,137, 68,36,12,199,68,36,8,80,0,0,0,199,68,36,4,0,0,0,0,141,69,164,137,4,36,232,179,136,7,0,141,69,164,137,4,36,232,147,199,4,0,137,69,140,235,17,141,131,133,44,7,0,137,4,36,232,128,199,4,0,137,69,140,139,69,140,141,147,1,145,7,0,139,18,139,77,244,51,10,116, 5,232,129,136,7,0,129,196,148,0,0,0,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,16,0,116,114,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,230,254,255,255,137,194,139,69,8,137,144,52,4,0,0,139,85,12,66,139,69,16,137, 68,36,8,137,84,36,4,139,69,8,137,4,36,232,193,254,255,255,137,194,139,69,8,137,144,56,4,0,0,139,85,12,131,194,2,139,69,16,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,154,254,255,255,137,194,139,69,8,137,144,60,4,0,0,235,61,141,131,154,43,7,0,137,4, 36,232,202,198,4,0,137,194,139,69,8,137,144,60,4,0,0,139,69,8,139,144,60,4,0,0,139,69,8,137,144,56,4,0,0,139,69,8,139,144,56,4,0,0,139,69,8,137,144,52,4,0,0,139,69,8,199,128,72,4,0,0,0,0,0,0,139,69,8,139,144,72,4,0,0,139,69,8,137,144,68,4,0,0,139,69, 8,139,144,68,4,0,0,139,69,8,137,144,64,4,0,0,139,85,8,139,69,12,137,130,76,4,0,0,139,85,12,131,194,3,139,69,8,137,144,80,4,0,0,131,196,20,91,201,195,85,137,229,86,131,236,20,139,69,12,139,16,139,69,8,137,144,64,4,0,0,139,69,12,131,192,4,139,16,139,69, 8,137,144,68,4,0,0,139,69,12,131,192,8,139,16,139,69,8,137,144,72,4,0,0,139,69,12,139,16,139,69,8,139,64,28,137,84,36,4,137,4,36,232,227,138,0,0,137,194,139,69,12,137,16,139,117,12,131,198,4,139,69,12,131,192,4,139,16,139,69,8,139,64,28,137,84,36,4,137, 4,36,232,188,138,0,0,137,6,139,117,12,131,198,8,139,69,12,131,192,8,139,16,139,69,8,139,64,28,137,84,36,4,137,4,36,232,154,138,0,0,137,6,131,196,20,94,201,195,85,137,229,83,129,236,132,0,0,0,232,0,0,0,0,91,139,69,8,137,69,148,139,69,12,137,69,144,139, 69,20,137,69,140,141,131,96,142,7,0,139,0,139,16,137,85,244,49,210,139,69,144,139,0,133,192,117,126,139,69,148,139,64,8,137,69,160,139,69,160,137,4,36,232,88,98,4,0,59,69,16,126,64,139,69,160,137,4,36,232,85,98,4,0,137,194,139,69,16,193,224,3,1,194,199, 68,36,8,80,0,0,0,141,69,164,137,68,36,4,137,20,36,232,48,72,4,0,141,69,164,137,4,36,232,32,197,4,0,137,194,139,69,144,137,16,235,37,131,125,140,0,116,10,139,85,144,139,69,140,137,2,235,21,141,131,228,41,7,0,137,4,36,232,249,196,4,0,137,194,139,69,144, 137,16,141,131,96,142,7,0,139,0,139,85,244,51,16,116,5,232,249,133,7,0,129,196,132,0,0,0,91,201,195,85,137,229,131,236,24,139,69,8,139,136,52,4,0,0,139,69,8,139,128,76,4,0,0,64,139,85,8,129,194,64,4,0,0,137,76,36,12,137,68,36,8,137,84,36,4,139,69,8,137, 4,36,232,242,254,255,255,139,69,8,139,136,56,4,0,0,139,69,8,139,128,76,4,0,0,131,192,2,139,85,8,129,194,68,4,0,0,137,76,36,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,189,254,255,255,139,69,8,139,136,60,4,0,0,139,69,8,139,128,80,4,0,0,139,85,8,129, 194,72,4,0,0,137,76,36,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,139,254,255,255,139,69,8,139,144,64,4,0,0,139,69,12,137,16,139,85,12,131,194,4,139,69,8,139,128,68,4,0,0,137,2,139,85,12,131,194,8,139,69,8,139,128,72,4,0,0,137,2,201,195,85,137, 229,131,236,8,201,195,85,137,229,131,236,8,139,69,8,139,128,44,4,0,0,37,0,0,252,0,137,194,193,250,6,139,69,8,139,128,44,4,0,0,37,0,252,0,0,193,248,4,9,194,139,69,8,139,128,44,4,0,0,37,252,0,0,0,193,248,2,9,208,137,194,247,210,139,69,12,137,16,139,77, 12,131,193,4,139,69,8,139,128,40,4,0,0,37,0,0,252,0,137,194,193,250,6,139,69,8,139,128,40,4,0,0,37,0,252,0,0,193,248,4,9,194,139,69,8,139,128,40,4,0,0,37,252,0,0,0,193,248,2,9,208,247,208,137,1,139,77,12,131,193,8,139,69,8,139,128,48,4,0,0,37,0,0,252, 0,137,194,193,250,6,139,69,8,139,128,48,4,0,0,37,0,252,0,0,193,248,4,9,194,139,69,8,139,128,48,4,0,0,37,252,0,0,0,193,248,2,9,208,247,208,137,1,201,195,85,137,229,86,83,131,236,16,232,0,0,0,0,91,139,69,12,139,0,133,192,121,68,139,69,12,139,0,137,194, 247,210,139,69,12,137,16,139,69,12,139,0,37,0,240,3,0,137,194,193,226,6,139,69,12,139,0,37,192,15,0,0,193,224,4,9,194,139,69,12,139,0,131,224,63,193,224,2,9,194,139,69,8,137,144,44,4,0,0,235,43,139,69,12,139,0,137,4,36,232,24,248,255,255,137,194,139, 69,12,137,16,139,69,12,139,16,141,131,255,149,7,0,139,20,144,139,69,8,137,144,44,4,0,0,139,69,12,131,192,4,139,0,133,192,121,81,139,85,12,131,194,4,139,69,12,131,192,4,139,0,247,208,137,2,139,69,12,131,192,4,139,0,37,0,240,3,0,137,194,193,226,6,139,69, 12,131,192,4,139,0,37,192,15,0,0,193,224,4,9,194,139,69,12,131,192,4,139,0,131,224,63,193,224,2,9,194,139,69,8,137,144,40,4,0,0,235,50,139,117,12,131,198,4,139,69,12,131,192,4,139,0,137,4,36,232,135,247,255,255,137,6,139,69,12,131,192,4,139,16,141,131, 255,149,7,0,139,20,144,139,69,8,137,144,40,4,0,0,139,69,12,131,192,8,139,0,133,192,121,81,139,85,12,131,194,8,139,69,12,131,192,8,139,0,247,208,137,2,139,69,12,131,192,8,139,0,37,0,240,3,0,137,194,193,226,6,139,69,12,131,192,8,139,0,37,192,15,0,0,193, 224,4,9,194,139,69,12,131,192,8,139,0,131,224,63,193,224,2,9,194,139,69,8,137,144,48,4,0,0,235,50,139,117,12,131,198,8,139,69,12,131,192,8,139,0,137,4,36,232,248,246,255,255,137,6,139,69,12,131,192,8,139,16,141,131,255,149,7,0,139,20,144,139,69,8,137, 144,48,4,0,0,131,196,16,91,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,8,0,120,31,139,69,8,137,4,36,232,183,246,255,255,137,69,244,139,85,244,141,131,85,148,7,0,139,20,144,137,85,228,235,16,139,69,8,247,208,137,194,129,226,255,255,255, 0,137,85,228,139,69,228,131,196,52,91,201,195,85,137,229,86,131,236,20,139,69,8,139,0,137,4,36,232,153,246,255,255,137,194,139,69,8,137,16,139,117,8,131,198,4,139,69,8,131,192,4,139,0,137,4,36,232,124,246,255,255,137,6,139,117,8,131,198,8,139,69,8,131, 192,8,139,0,137,4,36,232,100,246,255,255,137,6,131,196,20,94,201,195,85,137,229,86,131,236,20,139,69,8,139,0,137,4,36,232,42,247,255,255,137,194,139,69,8,137,16,139,117,8,131,198,4,139,69,8,131,192,4,139,0,137,4,36,232,13,247,255,255,137,6,139,117,8, 131,198,8,139,69,8,131,192,8,139,0,137,4,36,232,245,246,255,255,137,6,131,196,20,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,69,228,1,0,0,0,199,69,224,0,0,0,0,139,69,12,139,128,28,4,0,0,131,224,64,133,192,116,4,131,69,224,2,139,69,12,139,128, 28,4,0,0,37,128,0,0,0,133,192,116,3,255,69,224,139,69,16,139,16,141,131,208,36,7,0,137,68,36,4,137,20,36,232,123,131,7,0,133,192,117,7,199,69,228,0,0,0,0,139,69,16,137,4,36,232,124,246,255,255,137,69,244,139,85,12,139,69,244,137,130,64,4,0,0,139,69,12, 139,80,28,139,69,244,137,68,36,4,137,20,36,232,230,132,0,0,137,69,244,139,85,12,139,69,244,137,130,52,4,0,0,139,69,228,131,224,1,139,77,12,15,182,192,131,224,1,137,194,193,226,7,139,129,28,4,0,0,36,127,9,208,137,129,28,4,0,0,139,69,12,137,4,36,232,252, 246,255,255,139,69,12,139,72,32,139,85,224,131,194,6,139,69,12,139,64,28,137,84,36,8,137,68,36,4,139,69,8,137,4,36,255,209,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,69,228,1,0,0,0,199,69,224,0,0,0,0,139,69,12,139,128,28,4,0,0, 131,224,64,133,192,116,4,131,69,224,2,139,69,12,139,128,28,4,0,0,37,128,0,0,0,133,192,116,3,255,69,224,139,69,16,139,16,141,131,213,35,7,0,137,68,36,4,137,20,36,232,128,130,7,0,133,192,117,7,199,69,228,0,0,0,0,139,69,16,137,4,36,232,129,245,255,255,137, 69,244,139,85,12,139,69,244,137,130,68,4,0,0,139,69,12,139,80,28,139,69,244,137,68,36,4,137,20,36,232,235,131,0,0,137,69,244,131,125,228,0,116,114,139,69,12,139,128,56,4,0,0,139,16,139,69,244,139,0,137,84,36,4,137,4,36,232,33,130,7,0,133,192,15,132,136, 0,0,0,139,69,12,139,128,28,4,0,0,131,224,64,133,192,116,24,139,69,12,139,128,56,4,0,0,139,85,12,137,68,36,4,137,20,36,232,69,248,4,0,139,85,12,139,69,244,137,130,56,4,0,0,139,69,12,139,128,56,4,0,0,139,85,12,137,68,36,4,137,20,36,232,65,247,4,0,235,58, 131,125,228,0,117,52,139,69,12,139,128,28,4,0,0,131,224,64,133,192,116,36,139,69,12,139,128,56,4,0,0,139,85,12,137,68,36,4,137,20,36,232,241,247,4,0,139,85,12,139,69,244,137,130,56,4,0,0,139,69,228,131,224,1,139,77,12,15,182,192,131,224,1,137,194,193, 226,6,139,129,28,4,0,0,131,224,191,9,208,137,129,28,4,0,0,139,69,12,137,4,36,232,90,245,255,255,139,69,12,139,72,32,139,85,224,131,194,6,139,69,12,139,64,28,137,84,36,8,137,68,36,4,139,69,8,137,4,36,255,209,131,196,52,91,201,195,85,137,229,83,131,236, 68,232,0,0,0,0,91,141,131,87,3,7,0,137,4,36,232,219,189,4,0,59,69,16,117,17,141,131,51,34,7,0,137,4,36,232,200,189,4,0,137,69,16,139,69,16,137,4,36,232,20,244,255,255,137,69,244,139,85,12,139,69,244,137,130,72,4,0,0,139,69,12,139,80,28,139,69,244,137, 68,36,4,137,20,36,232,126,130,0,0,137,69,244,139,85,12,139,69,244,137,130,60,4,0,0,139,69,12,139,64,28,137,4,36,232,155,159,0,0,133,192,116,100,139,69,16,139,16,141,131,51,34,7,0,137,68,36,4,137,20,36,232,161,128,7,0,133,192,116,16,139,69,12,139,128, 60,4,0,0,139,0,137,69,212,235,9,141,131,87,3,7,0,137,69,212,139,69,12,139,64,28,137,4,36,232,160,82,1,0,137,194,139,69,212,137,68,36,12,139,69,8,137,68,36,8,137,84,36,4,141,131,135,3,7,0,137,4,36,232,43,83,5,0,131,196,68,91,201,195,85,137,229,87,86,83, 131,236,44,232,0,0,0,0,91,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,0,0,0,0,232,111,63,4,0,137,194,139,69,12,137,80,44,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,1,0,0,0,232,77,63,4,0,137,194,139,69,12,137,80,48,139,69,12,139,64, 28,137,4,36,232,204,158,0,0,133,192,116,113,139,69,12,139,64,28,139,85,8,137,68,36,4,137,20,36,232,207,102,1,0,137,194,139,69,12,139,64,48,141,60,2,139,69,12,139,64,28,139,85,8,137,68,36,4,137,20,36,232,170,101,1,0,137,194,139,69,12,139,64,44,141,52, 2,139,69,12,139,64,28,137,4,36,232,197,81,1,0,137,194,137,124,36,16,137,116,36,12,139,69,8,137,68,36,8,137,84,36,4,141,131,198,2,7,0,137,4,36,232,79,82,5,0,131,196,44,91,94,95,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,139,69,24,137,68,36, 8,139,69,20,137,68,36,4,199,4,36,0,0,0,0,232,145,62,4,0,137,69,228,131,125,228,1,117,77,184,255,255,255,255,131,248,255,116,38,184,255,255,255,255,139,85,12,131,194,52,137,68,36,8,141,131,104,12,7,0,137,68,36,4,137,20,36,232,247,124,7,0,233,186,0,0,0, 139,85,12,131,194,52,141,131,104,12,7,0,137,68,36,4,137,20,36,232,96,1,0,0,233,157,0,0,0,131,125,228,2,117,71,184,255,255,255,255,131,248,255,116,35,184,255,255,255,255,139,85,12,131,194,52,137,68,36,8,141,131,168,74,7,0,137,68,36,4,137,20,36,232,164, 124,7,0,235,106,139,85,12,131,194,52,141,131,168,74,7,0,137,68,36,4,137,20,36,232,16,1,0,0,235,80,199,69,228,0,0,0,0,184,255,255,255,255,131,248,255,116,37,184,255,255,255,255,139,85,12,131,194,52,137,68,36,8,141,131,244,132,7,0,139,0,137,68,36,4,137, 20,36,232,84,124,7,0,235,26,139,69,12,131,192,52,141,147,244,132,7,0,139,18,137,84,36,4,137,4,36,232,190,0,0,0,139,69,228,131,224,63,139,77,12,15,182,192,137,194,131,226,63,139,129,28,4,0,0,131,224,192,9,208,137,129,28,4,0,0,139,69,24,137,68,36,8,139, 69,20,137,68,36,4,199,4,36,1,0,0,0,232,98,61,4,0,137,69,228,131,125,228,3,127,7,199,69,228,4,0,0,0,139,85,12,139,69,228,137,130,32,4,0,0,139,69,12,139,64,28,137,4,36,232,205,156,0,0,133,192,116,76,139,69,12,139,176,32,4,0,0,139,125,12,131,199,52,139, 69,12,139,64,28,137,4,36,232,247,79,1,0,137,194,141,131,248,132,7,0,139,0,137,68,36,20,137,116,36,16,137,124,36,12,139,69,8,137,68,36,8,137,84,36,4,141,131,8,2,7,0,137,4,36,232,117,80,5,0,131,196,60,91,94,95,201,195,85,137,229,131,236,24,184,255,255, 255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,89,123,7,0,201,195,85,137,229,131,236,24,139,69,12,139,64,28,137,4,36,232,62,156,0,0,133,192,116,53,139,69,12,139,80,32,139,69,12,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4, 36,255,210,139,85,8,139,69,12,139,64,28,137,84,36,4,137,4,36,232,29,159,0,0,201,195,85,137,229,86,131,236,20,139,69,12,15,183,64,20,137,198,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,0,0,0,0,232,68,60,4,0,141,4,6,137,194,139,69,12,102,137,80, 20,139,69,12,15,183,64,22,137,198,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,1,0,0,0,232,21,60,4,0,141,4,6,137,194,139,69,12,102,137,80,22,139,69,12,139,64,28,137,4,36,232,144,155,0,0,133,192,116,53,139,69,12,139,80,32,139,69,12,139,64,28,199, 68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,12,139,64,28,137,84,36,4,137,4,36,232,111,158,0,0,131,196,20,94,201,195,85,137,229,131,236,24,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,0,0,0,0,232,156,59,4,0,137,194,139, 69,12,102,137,80,20,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,1,0,0,0,232,121,59,4,0,137,194,139,69,12,102,137,80,22,139,69,12,139,64,28,137,4,36,232,247,154,0,0,133,192,116,53,139,69,12,139,80,32,139,69,12,139,64,28,199,68,36,8,1,0,0,0,137, 68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,12,139,64,28,137,84,36,4,137,4,36,232,214,157,0,0,201,195,85,137,229,131,236,24,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,0,0,0,0,232,7,59,4,0,137,4,36,232,242,246,255,255,137,194,139,69,12, 137,144,44,4,0,0,131,125,20,2,126,92,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,1,0,0,0,232,212,58,4,0,137,4,36,232,191,246,255,255,137,194,139,69,12,137,144,40,4,0,0,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,2,0,0,0,232,167,58,4, 0,137,4,36,232,146,246,255,255,137,194,139,69,12,137,144,48,4,0,0,235,45,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,1,0,0,0,232,120,58,4,0,137,4,36,232,99,246,255,255,137,194,139,69,12,137,144,48,4,0,0,139,69,12,139,64,28,137,4,36,232,236,153, 0,0,133,192,116,32,139,69,12,139,80,32,139,69,12,139,64,28,199,68,36,8,5,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,69,244,15,183,64,20,137,194,139,69,16,141,4,2,137,194,139,69,244,102,137,80,20, 139,69,244,15,183,64,22,137,194,139,69,20,141,4,2,137,194,139,69,244,102,137,80,22,139,69,244,139,80,32,199,68,36,8,1,0,0,0,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,137,68,36,4,139,69,12,137,4,36,232,115,156,0,0,201,195,85,137,229,131, 236,40,139,69,8,137,69,244,139,69,16,131,224,1,139,77,244,15,182,192,131,224,1,137,194,193,226,24,139,129,28,4,0,0,37,255,255,255,254,9,208,137,129,28,4,0,0,139,69,244,139,80,32,199,68,36,8,3,0,0,0,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,201, 195,85,137,229,131,236,24,139,69,8,137,68,36,4,139,69,12,137,4,36,232,170,156,0,0,201,195,85,137,229,131,236,40,139,69,8,137,69,244,131,125,16,0,116,31,139,69,244,139,80,32,199,68,36,8,2,0,0,0,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,235,40,139, 69,244,139,80,32,199,68,36,8,4,0,0,0,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,137,4,36,232,23,84,5,0,201,195,85,137,229,131,236,24,139,69,8,139,144,52,4,0,0,139,69,12,137,16,139,85,12,131,194,4,139,69,8,139,128,56,4,0,0,137,2,139,85,12, 131,194,8,139,69,8,139,128,60,4,0,0,137,2,139,69,12,137,68,36,4,139,69,8,137,4,36,232,83,241,255,255,139,69,16,137,68,36,4,139,69,8,137,4,36,232,27,242,255,255,201,195,85,137,229,131,236,24,139,69,8,139,144,52,4,0,0,139,69,12,137,16,139,85,12,131,194, 4,139,69,8,139,128,56,4,0,0,137,2,139,85,12,131,194,8,139,69,8,139,128,60,4,0,0,137,2,139,69,12,137,68,36,4,139,69,8,137,4,36,232,247,240,255,255,139,69,12,137,4,36,232,140,244,255,255,201,195,85,137,229,86,83,129,236,240,0,0,0,232,0,0,0,0,91,139,69, 8,137,133,52,255,255,255,139,69,12,137,133,48,255,255,255,139,69,20,137,133,44,255,255,255,141,131,116,126,7,0,139,0,139,16,137,85,244,49,210,139,133,44,255,255,255,137,68,36,8,139,69,16,137,68,36,4,199,4,36,5,0,0,0,232,244,55,4,0,137,133,96,255,255, 255,139,133,44,255,255,255,137,68,36,8,139,69,16,137,68,36,4,199,4,36,10,0,0,0,232,209,55,4,0,137,133,92,255,255,255,139,133,44,255,255,255,137,68,36,8,139,69,16,137,68,36,4,199,4,36,11,0,0,0,232,174,55,4,0,137,133,88,255,255,255,139,133,44,255,255,255, 137,68,36,8,139,69,16,137,68,36,4,199,4,36,12,0,0,0,232,139,55,4,0,137,133,84,255,255,255,139,133,44,255,255,255,137,68,36,8,139,69,16,137,68,36,4,199,4,36,13,0,0,0,232,104,55,4,0,137,133,80,255,255,255,139,133,44,255,255,255,137,68,36,8,139,69,16,137, 68,36,4,199,4,36,14,0,0,0,232,69,55,4,0,137,133,76,255,255,255,139,133,44,255,255,255,137,68,36,8,139,69,16,137,68,36,4,199,4,36,15,0,0,0,232,34,55,4,0,137,133,72,255,255,255,139,133,44,255,255,255,137,68,36,8,139,69,16,137,68,36,4,199,4,36,16,0,0,0, 232,255,54,4,0,137,133,68,255,255,255,199,133,64,255,255,255,1,0,0,0,199,133,60,255,255,255,1,0,0,0,199,133,56,255,255,255,0,0,0,0,139,133,52,255,255,255,139,128,28,4,0,0,131,224,64,133,192,116,7,131,133,56,255,255,255,2,139,133,52,255,255,255,139,128, 28,4,0,0,37,128,0,0,0,133,192,116,6,255,133,56,255,255,255,139,133,44,255,255,255,131,192,56,139,0,131,248,2,117,41,139,133,44,255,255,255,137,68,36,8,139,69,16,137,68,36,4,199,4,36,7,0,0,0,232,162,54,4,0,137,194,139,133,48,255,255,255,137,16,235,113, 139,133,44,255,255,255,131,192,56,139,0,131,248,1,117,97,139,133,44,255,255,255,137,68,36,8,139,69,16,137,68,36,4,199,4,36,7,0,0,0,232,64,54,4,0,137,68,36,16,141,131,72,251,6,0,137,68,36,12,199,68,36,8,144,0,0,0,199,68,36,4,0,0,0,0,141,133,100,255,255, 255,137,4,36,232,156,116,7,0,141,133,100,255,255,255,137,4,36,232,121,179,4,0,137,194,139,133,48,255,255,255,137,16,139,133,44,255,255,255,131,192,64,139,0,131,248,2,117,42,139,181,48,255,255,255,131,198,4,139,133,44,255,255,255,137,68,36,8,139,69,16, 137,68,36,4,199,4,36,8,0,0,0,232,239,53,4,0,137,6,235,114,139,133,44,255,255,255,131,192,64,139,0,131,248,1,117,98,139,133,44,255,255,255,137,68,36,8,139,69,16,137,68,36,4,199,4,36,8,0,0,0,232,149,53,4,0,137,68,36,16,141,131,72,251,6,0,137,68,36,12,199, 68,36,8,144,0,0,0,199,68,36,4,0,0,0,0,141,133,100,255,255,255,137,4,36,232,241,115,7,0,139,181,48,255,255,255,131,198,4,141,133,100,255,255,255,137,4,36,232,197,178,4,0,137,6,139,133,44,255,255,255,131,192,72,139,0,131,248,2,117,42,139,181,48,255,255, 255,131,198,8,139,133,44,255,255,255,137,68,36,8,139,69,16,137,68,36,4,199,4,36,9,0,0,0,232,67,53,4,0,137,6,235,114,139,133,44,255,255,255,131,192,72,139,0,131,248,1,117,98,139,133,44,255,255,255,137,68,36,8,139,69,16,137,68,36,4,199,4,36,9,0,0,0,232, 233,52,4,0,137,68,36,16,141,131,72,251,6,0,137,68,36,12,199,68,36,8,144,0,0,0,199,68,36,4,0,0,0,0,141,133,100,255,255,255,137,4,36,232,69,115,7,0,139,181,48,255,255,255,131,198,8,141,133,100,255,255,255,137,4,36,232,25,178,4,0,137,6,131,189,96,255,255, 255,0,116,10,199,133,96,255,255,255,1,0,0,0,139,133,96,255,255,255,131,224,1,139,141,52,255,255,255,15,182,192,137,194,131,226,1,139,129,36,4,0,0,131,224,254,9,208,137,129,36,4,0,0,139,133,48,255,255,255,139,0,139,16,141,131,248,25,7,0,137,68,36,4,137, 20,36,232,3,117,7,0,133,192,117,10,199,133,64,255,255,255,0,0,0,0,139,133,48,255,255,255,131,192,4,139,0,139,16,141,131,248,25,7,0,137,68,36,4,137,20,36,232,214,116,7,0,133,192,117,10,199,133,60,255,255,255,0,0,0,0,139,133,48,255,255,255,137,4,36,232, 147,240,255,255,139,133,48,255,255,255,137,68,36,4,139,133,52,255,255,255,137,4,36,232,22,235,255,255,131,189,60,255,255,255,0,15,132,151,0,0,0,139,133,52,255,255,255,139,128,56,4,0,0,139,16,139,133,48,255,255,255,131,192,4,139,0,139,0,137,84,36,4,137, 4,36,232,110,116,7,0,133,192,15,132,185,0,0,0,139,133,52,255,255,255,139,128,28,4,0,0,131,224,64,133,192,116,30,139,133,52,255,255,255,139,128,56,4,0,0,139,149,52,255,255,255,137,68,36,4,137,20,36,232,137,234,4,0,139,133,48,255,255,255,131,192,4,139, 16,139,133,52,255,255,255,137,144,56,4,0,0,139,133,52,255,255,255,139,128,56,4,0,0,139,149,52,255,255,255,137,68,36,4,137,20,36,232,116,233,4,0,235,81,131,189,60,255,255,255,0,117,72,139,133,52,255,255,255,139,128,28,4,0,0,131,224,64,133,192,116,53,139, 133,52,255,255,255,139,128,56,4,0,0,139,149,52,255,255,255,137,68,36,4,137,20,36,232,24,234,4,0,139,133,48,255,255,255,131,192,4,139,16,139,133,52,255,255,255,137,144,56,4,0,0,139,133,48,255,255,255,139,16,139,133,52,255,255,255,137,144,52,4,0,0,139, 133,64,255,255,255,131,224,1,139,141,52,255,255,255,15,182,192,131,224,1,137,194,193,226,7,139,129,28,4,0,0,36,127,9,208,137,129,28,4,0,0,139,133,60,255,255,255,131,224,1,139,141,52,255,255,255,15,182,192,131,224,1,137,194,193,226,6,139,129,28,4,0,0, 131,224,191,9,208,137,129,28,4,0,0,139,149,68,255,255,255,129,226,255,255,255,0,139,133,52,255,255,255,137,144,48,4,0,0,139,149,72,255,255,255,129,226,255,255,255,0,139,133,52,255,255,255,137,144,40,4,0,0,139,149,76,255,255,255,129,226,255,255,255,0, 139,133,52,255,255,255,137,144,44,4,0,0,139,133,48,255,255,255,131,192,8,139,16,139,133,52,255,255,255,137,144,60,4,0,0,139,149,52,255,255,255,139,133,92,255,255,255,137,66,44,139,149,52,255,255,255,139,133,88,255,255,255,137,66,48,131,189,84,255,255, 255,1,117,83,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,52,255,255,255,131,194,52,137,68,36,8,141,131,248,5,7,0,137,68,36,4,137,20,36,232,116,112,7,0,233,207,0,0,0,139,149,52,255,255,255,131,194,52,141,131,248,5,7,0,137,68,36, 4,137,20,36,232,218,244,255,255,233,175,0,0,0,131,189,84,255,255,255,2,117,77,184,255,255,255,255,131,248,255,116,38,184,255,255,255,255,139,149,52,255,255,255,131,194,52,137,68,36,8,141,131,56,68,7,0,137,68,36,4,137,20,36,232,24,112,7,0,235,118,139, 149,52,255,255,255,131,194,52,141,131,56,68,7,0,137,68,36,4,137,20,36,232,129,244,255,255,235,89,199,133,84,255,255,255,0,0,0,0,184,255,255,255,255,131,248,255,116,40,184,255,255,255,255,139,149,52,255,255,255,131,194,52,137,68,36,8,141,131,132,126,7, 0,139,0,137,68,36,4,137,20,36,232,191,111,7,0,235,29,139,133,52,255,255,255,131,192,52,141,147,132,126,7,0,139,18,137,84,36,4,137,4,36,232,38,244,255,255,139,133,84,255,255,255,131,224,63,139,141,52,255,255,255,15,182,192,137,194,131,226,63,139,129,28, 4,0,0,131,224,192,9,208,137,129,28,4,0,0,131,189,80,255,255,255,3,127,10,199,133,80,255,255,255,4,0,0,0,139,149,52,255,255,255,139,133,80,255,255,255,137,130,32,4,0,0,139,133,52,255,255,255,137,4,36,232,90,229,255,255,139,133,52,255,255,255,139,80,28, 141,131,212,112,7,0,139,0,137,68,36,4,137,20,36,232,139,139,0,0,139,133,56,255,255,255,141,147,116,126,7,0,139,18,139,77,244,51,10,116,5,232,2,111,7,0,129,196,240,0,0,0,91,94,201,195,85,137,229,131,236,24,184,255,255,255,255,131,248,255,116,38,184,255, 255,255,255,137,68,36,12,199,68,36,8,4,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,178,110,7,0,235,27,199,68,36,8,4,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,110,0,0,0,139,69,12,131,224,1,139,77,8,15,182,192,137,194,131,226,1,139,1,131,224, 254,9,208,137,1,139,69,12,193,248,20,131,224,1,139,77,8,15,182,192,131,224,1,137,194,193,226,25,139,1,37,255,255,255,253,9,208,137,1,139,85,8,139,2,37,255,255,255,251,137,2,139,85,8,139,2,37,255,255,255,247,137,2,139,85,8,139,2,37,255,255,255,239,137, 2,139,85,8,139,2,37,255,255,255,31,137,2,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,255,109,7,0,201,195,85,137,229,131,236,8,139,69,8,139,0,131,224,1,15,182,192,137, 194,131,226,1,139,69,8,139,0,193,232,25,131,224,1,15,182,192,131,224,1,193,224,20,9,208,201,195,85,137,229,131,236,24,184,255,255,255,255,131,248,255,116,38,184,255,255,255,255,137,68,36,12,199,68,36,8,4,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232, 155,109,7,0,235,27,199,68,36,8,4,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,87,255,255,255,139,69,12,131,224,63,139,77,8,15,182,192,137,194,131,226,63,139,1,131,224,192,9,208,137,1,139,85,8,139,2,37,255,255,127,255,137,2,139,85,8,139,2,37,255,255, 255,254,137,2,139,85,8,139,2,37,255,255,255,253,137,2,139,85,8,139,2,37,255,255,255,251,137,2,139,85,8,139,2,37,255,255,255,247,137,2,139,85,8,139,2,37,255,255,255,239,137,2,139,85,8,139,2,37,255,255,255,223,137,2,139,85,8,139,2,37,255,255,255,191,137, 2,139,85,8,139,2,37,255,255,255,127,137,2,201,195,85,137,229,131,236,8,139,69,8,139,0,131,224,63,15,182,192,131,224,63,201,195,85,137,229,83,129,236,20,4,0,0,232,0,0,0,0,91,139,69,8,137,133,4,252,255,255,141,131,141,116,7,0,139,0,139,16,137,85,244,49, 210,139,133,4,252,255,255,139,0,15,182,0,60,35,117,67,139,133,4,252,255,255,139,0,199,68,36,8,232,3,0,0,137,68,36,4,141,133,12,252,255,255,137,4,36,232,217,110,7,0,198,69,243,0,198,133,12,252,255,255,36,141,133,12,252,255,255,137,4,36,232,101,171,4,0, 137,133,0,252,255,255,235,12,139,141,4,252,255,255,137,141,0,252,255,255,139,133,0,252,255,255,141,147,141,116,7,0,139,18,139,77,244,51,10,116,5,232,82,108,7,0,129,196,20,4,0,0,91,201,195,85,137,229,131,236,40,199,4,36,36,0,0,0,232,168,196,4,0,137,69, 244,139,69,8,137,4,36,232,51,167,2,0,137,69,240,139,85,244,139,69,8,137,66,12,139,69,244,199,0,1,0,0,0,139,69,240,139,64,12,193,224,2,137,194,139,69,244,137,80,4,139,69,244,139,64,4,137,4,36,232,102,196,4,0,137,194,139,69,244,137,80,8,139,77,244,139, 85,12,139,2,137,65,20,139,66,4,137,65,24,139,66,8,137,65,28,139,69,244,137,68,36,4,199,4,36,0,0,0,0,232,194,112,3,0,137,194,139,69,244,137,80,32,139,69,244,139,64,8,137,194,139,69,12,137,68,36,8,139,69,240,137,68,36,4,137,20,36,232,248,131,2,0,139,69, 244,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,64,12,137,4,36,232,135,166,2,0,137,69,232,131,125,12,0,127,7,199,69,12,1,0,0,0,139,69,8,139,0,137,69,240,139,69,232,139,64,12,193,224,2,137,69,244,139,69,12,15,175,69,244,137,193,139,69, 240,15,175,69,244,137,194,139,69,8,139,64,8,137,76,36,8,137,84,36,4,137,4,36,232,146,196,4,0,137,194,139,69,8,137,80,8,139,85,8,139,69,12,137,2,139,69,12,59,69,240,126,81,139,69,8,139,80,8,139,69,244,15,175,69,240,141,4,2,137,69,228,139,85,240,139,69, 12,41,208,137,69,224,235,40,139,69,228,137,69,220,139,69,8,131,192,20,137,68,36,8,139,69,232,137,68,36,4,139,69,220,137,4,36,232,50,131,2,0,139,69,244,1,69,228,255,77,224,131,125,224,255,117,207,141,131,86,115,7,0,139,0,139,0,141,80,1,141,131,86,115, 7,0,139,0,137,16,141,131,86,115,7,0,139,0,139,16,139,69,8,137,80,16,131,196,52,91,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,69,12,137,4,36,232,139,139,0,0,137,69,240,235,11,139,69,244,139,64,28,139,0,137,69,244,139,69,244,139,64,28,139,64, 4,131,248,2,116,231,131,125,240,0,116,31,139,69,244,139,64,20,137,194,199,68,36,8,0,0,0,0,139,69,12,137,68,36,4,137,20,36,232,132,183,0,0,139,69,16,137,68,36,4,139,69,8,137,4,36,232,151,254,255,255,131,125,240,0,116,31,139,69,244,139,64,20,137,194,199, 68,36,8,1,0,0,0,139,69,12,137,68,36,4,137,20,36,232,77,183,0,0,201,195,85,137,229,131,236,40,139,69,8,139,64,12,137,4,36,232,254,164,2,0,137,69,240,139,69,8,139,64,32,137,4,36,232,150,111,3,0,199,69,244,0,0,0,0,235,43,139,69,8,139,80,8,139,69,8,139,64, 4,15,175,69,244,141,4,2,137,69,236,139,69,240,137,68,36,4,139,69,236,137,4,36,232,174,131,2,0,255,69,244,139,69,8,139,0,59,69,244,127,203,139,69,8,139,80,4,139,69,8,139,0,15,175,194,137,194,139,69,8,139,64,8,137,84,36,4,137,4,36,232,218,195,4,0,199,68, 36,4,36,0,0,0,139,69,8,137,4,36,232,199,195,4,0,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,63,154,7,0,139,0,133,192,15,133,180,1,0,0,232,229,48,4,0,137,69,244,141,131,99,238,6,0,137,4,36,232,31,168,4,0,137,198,141,131,101,238,6,0,137, 4,36,232,15,168,4,0,137,116,36,8,137,68,36,4,199,4,36,0,0,0,0,232,144,107,0,0,141,131,171,128,7,0,137,4,36,232,60,107,7,0,137,68,36,8,141,131,171,128,7,0,137,68,36,4,139,69,244,137,4,36,232,8,50,4,0,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,199,68,36, 4,0,0,0,0,139,69,244,137,4,36,232,150,72,4,0,141,131,203,251,6,0,137,4,36,232,163,167,4,0,137,193,141,131,39,113,7,0,139,0,139,80,4,199,68,36,12,0,0,0,0,141,131,83,92,7,0,137,68,36,8,137,76,36,4,137,20,36,232,102,180,4,0,141,131,99,238,6,0,137,4,36,232, 106,167,4,0,137,198,141,131,110,238,6,0,137,4,36,232,90,167,4,0,137,116,36,8,137,68,36,4,199,4,36,0,0,0,0,232,219,106,0,0,141,131,7,128,7,0,137,4,36,232,135,106,7,0,137,68,36,8,141,131,7,128,7,0,137,68,36,4,139,69,244,137,4,36,232,83,49,4,0,199,68,36, 12,0,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,139,69,244,137,4,36,232,225,71,4,0,141,131,39,113,7,0,139,0,139,80,4,141,131,63,154,7,0,137,16,141,131,203,251,6,0,137,4,36,232,219,166,4,0,137,193,141,131,39,113,7,0,139,0,139,80,4,199,68,36,12,0,0, 0,0,141,131,83,92,7,0,137,68,36,8,137,76,36,4,137,20,36,232,158,179,4,0,141,131,35,113,7,0,139,0,137,68,36,8,141,131,35,113,7,0,139,0,137,68,36,4,199,4,36,0,0,0,0,232,33,106,0,0,139,69,244,137,4,36,232,109,47,4,0,131,196,32,91,94,201,195,85,137,229,83, 131,236,84,232,0,0,0,0,91,139,69,16,137,4,36,232,135,162,2,0,133,192,117,12,199,69,196,0,0,0,0,233,161,0,0,0,141,131,187,110,7,0,139,0,139,0,137,4,36,232,118,219,4,0,137,69,236,139,69,16,137,68,36,4,139,69,8,137,4,36,232,170,129,2,0,137,194,139,69,236, 137,80,8,139,85,236,139,69,12,137,66,16,139,69,12,137,68,36,4,139,69,8,137,4,36,232,240,106,0,0,137,194,139,69,236,137,80,20,139,69,236,139,64,20,139,85,236,137,68,36,4,137,20,36,232,162,222,4,0,139,69,236,198,64,24,0,139,69,20,137,194,139,69,236,136, 80,25,139,69,236,198,64,26,0,139,69,236,137,68,36,4,139,69,8,137,4,36,232,252,52,1,0,139,85,236,139,69,8,137,66,12,139,69,236,137,69,196,139,69,196,131,196,84,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,139,64,8,137,69,228,139,69,228, 139,64,8,137,69,224,139,69,224,137,4,36,232,163,161,2,0,137,69,220,131,125,220,0,117,35,139,69,224,139,0,137,68,36,4,141,131,209,235,6,0,137,4,36,232,218,161,5,0,199,69,212,0,0,0,0,233,141,0,0,0,141,131,242,235,6,0,137,4,36,232,68,165,4,0,137,194,141, 69,232,137,68,36,16,141,69,236,137,68,36,12,141,69,240,137,68,36,8,137,84,36,4,139,69,220,137,4,36,232,16,148,2,0,133,192,117,32,139,69,224,139,0,137,68,36,4,141,131,245,235,6,0,137,4,36,232,127,161,5,0,199,69,212,0,0,0,0,235,53,139,69,236,131,248,3, 116,32,139,69,224,139,0,137,68,36,4,141,131,25,236,6,0,137,4,36,232,87,161,5,0,199,69,212,0,0,0,0,235,13,139,85,240,139,69,228,139,84,144,12,137,85,212,139,69,212,131,196,84,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,137,4,36,232,252, 254,255,255,137,69,244,139,69,244,139,64,12,137,4,36,232,184,160,2,0,137,69,228,141,131,253,25,7,0,137,4,36,232,130,164,4,0,137,194,141,69,232,137,68,36,16,141,69,236,137,68,36,12,141,69,240,137,68,36,8,137,84,36,4,139,69,228,137,4,36,232,78,147,2,0, 133,192,116,7,139,69,236,133,192,116,9,199,69,212,0,0,0,0,235,25,139,85,240,139,69,12,137,16,139,69,244,139,80,4,139,69,16,137,16,139,69,244,137,69,212,139,69,212,131,196,84,91,201,195,85,137,229,131,236,8,139,69,8,139,80,16,139,69,12,137,16,139,69,8, 15,182,64,27,15,190,192,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,139,69,8,137,4,36,232,73,254,255,255,137,69,244,139,69,8,139,64,12,137,69,240,139,69,240,139,80,28,139,69,8,57,194,15,133,186,0,0,0,139,69,8,139,64,4,133,192,15,133,172,0,0,0,139, 69,240,243,15,16,64,64,243,15,90,192,242,15,17,69,208,131,125,16,0,116,21,131,125,12,1,116,15,139,69,12,72,242,15,42,192,242,15,17,69,216,235,10,242,15,42,69,12,242,15,17,69,216,139,69,240,243,15,16,64,56,243,15,90,192,242,15,17,69,224,141,131,170,234, 6,0,137,4,36,232,113,163,4,0,137,194,139,77,240,242,15,16,69,208,242,15,17,68,36,36,242,15,16,69,216,242,15,17,68,36,28,242,15,16,69,224,242,15,17,68,36,20,141,131,54,95,7,0,242,15,16,0,242,15,17,68,36,12,141,131,177,234,6,0,137,68,36,8,137,84,36,4,137, 12,36,232,19,176,4,0,139,69,240,137,4,36,232,98,32,6,0,139,69,8,139,80,12,139,69,12,137,68,36,8,137,84,36,4,139,69,244,137,4,36,232,126,249,255,255,131,196,100,91,201,195,85,137,229,86,83,129,236,144,0,0,0,232,0,0,0,0,91,243,15,16,69,20,243,15,44,192, 137,69,244,243,15,16,69,24,243,15,44,192,137,69,188,139,69,188,131,224,6,209,248,137,69,184,131,125,184,0,116,29,131,125,184,1,116,8,139,69,184,137,69,152,235,7,199,69,152,0,0,0,0,139,69,152,137,69,148,235,7,199,69,148,1,0,0,0,139,69,148,137,69,180,141, 131,61,107,7,0,139,0,57,69,16,116,35,139,69,16,139,0,137,68,36,4,141,131,161,233,6,0,137,4,36,232,236,158,5,0,199,69,156,0,0,0,0,233,141,2,0,0,141,131,200,233,6,0,137,4,36,232,86,162,4,0,137,69,196,139,69,196,137,4,36,232,109,158,2,0,137,69,204,131,125, 204,0,117,35,139,69,196,139,0,137,68,36,4,141,131,29,233,6,0,137,4,36,232,164,158,5,0,199,69,156,0,0,0,0,233,69,2,0,0,141,131,62,233,6,0,137,4,36,232,14,162,4,0,137,194,141,69,216,137,68,36,16,141,69,224,137,68,36,12,141,69,228,137,68,36,8,137,84,36, 4,139,69,204,137,4,36,232,218,144,2,0,133,192,117,35,139,69,196,139,0,137,68,36,4,141,131,65,233,6,0,137,4,36,232,73,158,5,0,199,69,156,0,0,0,0,233,234,1,0,0,139,69,224,131,248,3,116,35,139,69,196,139,0,137,68,36,4,141,131,101,233,6,0,137,4,36,232,30, 158,5,0,199,69,156,0,0,0,0,233,191,1,0,0,139,69,216,137,4,36,232,176,157,2,0,137,69,200,131,125,200,0,117,35,139,69,216,139,0,137,68,36,4,141,131,216,233,6,0,137,4,36,232,231,157,5,0,199,69,156,0,0,0,0,233,136,1,0,0,139,69,188,131,224,1,137,69,220,139, 69,220,137,68,36,12,139,69,196,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,188,250,255,255,137,69,212,139,69,188,131,224,8,193,248,3,137,194,139,69,212,136,80,27,131,125,244,0,127,7,199,69,244,100,0,0,0,139,69,212,139,80,8,139,69,228,139, 84,130,12,139,69,244,137,68,36,4,137,20,36,232,124,246,255,255,243,15,42,69,180,243,15,17,69,160,139,69,212,139,64,8,141,112,12,141,131,246,233,6,0,137,4,36,232,216,160,4,0,199,68,36,16,1,0,0,0,243,15,16,69,160,243,15,17,68,36,12,137,116,36,8,137,68, 36,4,139,69,204,137,4,36,232,49,145,2,0,131,125,180,0,117,17,141,131,105,94,7,0,243,15,16,0,243,15,17,69,164,235,15,141,131,13,94,7,0,243,15,16,0,243,15,17,69,164,139,69,212,139,64,8,141,112,12,141,131,252,233,6,0,137,4,36,232,117,160,4,0,199,68,36,16, 1,0,0,0,243,15,16,69,164,243,15,17,68,36,12,137,116,36,8,137,68,36,4,139,69,204,137,4,36,232,206,144,2,0,141,131,53,107,7,0,139,0,139,48,141,131,6,234,6,0,137,4,36,232,55,160,4,0,137,116,36,4,137,4,36,232,1,219,4,0,137,69,208,131,125,208,0,116,29,141, 131,6,234,6,0,137,4,36,232,20,160,4,0,137,68,36,4,139,69,208,137,4,36,232,156,217,4,0,141,131,6,234,6,0,137,4,36,232,247,159,4,0,139,85,212,137,68,36,4,137,20,36,232,159,216,4,0,139,69,212,137,4,36,232,132,38,0,0,139,69,212,137,69,156,139,69,156,129, 196,144,0,0,0,91,94,201,195,85,137,229,83,129,236,4,1,0,0,232,0,0,0,0,91,139,69,8,137,133,36,255,255,255,141,131,128,104,7,0,139,0,139,16,137,85,244,49,210,139,133,36,255,255,255,137,133,40,255,255,255,141,131,176,145,7,0,139,0,64,137,68,36,16,141,131, 220,230,6,0,137,68,36,12,199,68,36,8,200,0,0,0,199,68,36,4,0,0,0,0,141,133,44,255,255,255,137,4,36,232,118,96,7,0,139,149,40,255,255,255,141,133,44,255,255,255,137,68,36,8,139,133,40,255,255,255,137,68,36,4,137,20,36,232,169,25,6,0,141,131,128,104,7, 0,139,0,139,85,244,51,16,116,5,232,70,96,7,0,129,196,4,1,0,0,91,201,195,85,137,229,87,86,83,129,236,44,1,0,0,232,0,0,0,0,91,139,69,8,137,133,4,255,255,255,141,131,214,103,7,0,139,0,139,16,137,85,228,49,210,139,133,4,255,255,255,137,4,36,232,66,249,255, 255,137,133,24,255,255,255,139,133,4,255,255,255,139,64,8,137,133,20,255,255,255,131,189,24,255,255,255,0,15,132,55,1,0,0,139,133,4,255,255,255,137,4,36,232,2,28,6,0,139,133,4,255,255,255,15,182,64,25,15,190,248,139,133,4,255,255,255,139,64,8,131,192, 12,137,133,236,254,255,255,141,131,31,230,6,0,137,4,36,232,141,158,4,0,137,198,139,133,20,255,255,255,139,64,8,137,4,36,232,159,154,2,0,199,68,36,12,1,0,0,0,139,149,236,254,255,255,137,84,36,8,137,116,36,4,137,4,36,232,20,142,2,0,217,157,240,254,255, 255,243,15,44,133,240,254,255,255,1,192,1,199,137,189,244,254,255,255,139,133,24,255,255,255,139,0,137,133,248,254,255,255,139,133,4,255,255,255,139,64,16,139,0,137,133,252,254,255,255,139,133,4,255,255,255,139,64,16,139,0,15,182,0,60,36,117,14,141,131, 90,230,6,0,137,133,0,255,255,255,235,12,141,147,126,230,6,0,137,149,0,255,255,255,139,133,244,254,255,255,137,68,36,24,139,149,248,254,255,255,137,84,36,20,139,133,252,254,255,255,137,68,36,16,139,149,0,255,255,255,137,84,36,12,199,68,36,8,200,0,0,0, 199,68,36,4,0,0,0,0,141,133,28,255,255,255,137,4,36,232,200,94,7,0,139,149,4,255,255,255,141,133,28,255,255,255,137,68,36,8,139,133,4,255,255,255,137,68,36,4,137,20,36,232,251,23,6,0,141,131,214,103,7,0,139,0,139,85,228,51,16,116,5,232,152,94,7,0,129, 196,44,1,0,0,91,94,95,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,243,15,16,69,20,243,15,44,192,137,69,236,141,131,139,88,7,0,243,15,16,0,15,46,69,16,119,2,235,11,141,131,139,88,7,0,139,0,137,69,16,141,131,135,88,7,0,243,15,16,0,15,46,69,24,122,2, 116,24,139,69,8,137,4,36,232,4,99,1,0,137,69,244,131,125,244,0,15,133,182,0,0,0,141,131,139,88,7,0,243,15,16,8,243,15,16,69,16,15,46,193,119,2,235,29,243,15,16,69,16,141,131,139,88,7,0,243,15,16,8,15,40,208,243,15,92,209,243,15,17,85,224,235,10,243,15, 16,69,16,243,15,17,69,224,141,131,135,88,7,0,139,0,137,68,36,36,141,131,135,88,7,0,139,0,137,68,36,32,141,131,135,88,7,0,139,0,137,68,36,28,141,131,135,88,7,0,139,0,137,68,36,24,141,131,167,89,7,0,139,0,137,68,36,20,243,15,16,85,224,243,15,17,84,36,16, 141,131,139,88,7,0,139,0,137,68,36,12,141,131,135,88,7,0,139,0,137,68,36,8,141,131,67,102,7,0,139,0,137,68,36,4,139,69,8,137,4,36,232,203,112,0,0,137,69,244,243,15,42,69,236,243,15,17,69,228,139,69,12,137,4,36,232,112,240,255,255,137,194,243,15,16,85, 228,243,15,17,84,36,16,139,69,16,137,68,36,12,141,131,187,101,7,0,139,0,137,68,36,8,137,84,36,4,139,69,244,137,4,36,232,32,249,255,255,137,69,240,141,131,139,88,7,0,139,0,137,68,36,4,139,69,8,137,4,36,232,136,121,0,0,131,196,84,91,201,195,85,137,229, 87,86,83,131,236,108,232,0,0,0,0,91,243,15,16,69,20,243,15,44,192,137,69,228,139,69,228,131,224,1,137,69,224,139,69,228,131,224,6,209,248,137,69,220,139,69,8,139,64,8,141,120,12,141,131,248,226,6,0,137,4,36,232,178,155,4,0,137,198,139,69,8,139,64,8,139, 64,8,137,4,36,232,196,151,2,0,199,68,36,12,1,0,0,0,137,124,36,8,137,116,36,4,137,4,36,232,63,139,2,0,217,93,216,141,131,11,87,7,0,243,15,16,0,15,46,69,24,117,4,122,2,235,26,139,69,8,139,85,8,139,82,12,137,68,36,4,137,20,36,232,44,44,1,0,233,79,2,0,0, 139,69,12,137,4,36,232,116,239,255,255,137,69,196,139,69,8,137,4,36,232,149,245,255,255,137,69,192,131,125,192,0,117,26,141,131,121,227,6,0,137,68,36,4,139,69,8,137,4,36,232,199,152,5,0,233,19,2,0,0,139,69,8,139,64,8,139,64,8,137,4,36,232,46,151,2,0, 137,69,188,131,125,188,0,117,34,139,69,8,139,64,8,139,64,8,139,0,137,68,36,4,141,131,218,226,6,0,137,4,36,232,95,151,5,0,233,215,1,0,0,139,69,8,139,64,16,59,69,196,15,132,228,0,0,0,139,69,8,15,182,64,26,132,192,116,11,139,69,8,137,4,36,232,84,6,0,0,139, 85,8,139,69,196,137,66,16,139,69,8,139,64,20,139,85,8,137,68,36,4,137,20,36,232,50,212,4,0,139,69,8,139,80,12,139,69,196,137,68,36,4,137,20,36,232,110,95,0,0,137,194,139,69,8,137,80,20,139,69,8,139,64,20,139,85,8,137,68,36,4,137,20,36,232,32,211,4,0, 139,69,8,139,64,12,139,128,160,0,0,0,131,224,1,133,192,116,16,139,69,8,139,64,12,137,4,36,232,81,123,0,0,235,91,139,69,8,139,64,12,139,64,40,137,4,36,232,87,124,0,0,133,192,116,70,139,69,8,139,64,12,139,80,40,139,69,8,139,64,12,199,68,36,8,0,0,0,0,137, 84,36,4,137,4,36,232,108,168,0,0,139,69,8,139,64,12,139,80,40,139,69,8,139,64,12,199,68,36,8,1,0,0,0,137,84,36,4,137,4,36,232,73,168,0,0,243,15,16,69,16,243,15,44,192,137,69,212,131,125,212,0,127,7,199,69,212,1,0,0,0,139,69,192,139,0,59,69,212,116,20, 139,69,212,137,68,36,4,139,69,8,137,4,36,232,215,48,0,0,235,40,243,15,42,69,220,15,46,69,216,117,4,122,2,235,25,139,69,220,137,68,36,8,139,69,212,137,68,36,4,139,69,8,137,4,36,232,131,245,255,255,243,15,42,69,220,243,15,17,69,180,139,69,8,139,64,8,141, 112,12,141,131,248,226,6,0,137,4,36,232,107,153,4,0,199,68,36,16,0,0,0,0,243,15,16,69,180,243,15,17,68,36,12,137,116,36,8,137,68,36,4,139,69,188,137,4,36,232,196,137,2,0,131,125,224,0,15,149,192,15,182,192,137,68,36,4,139,69,8,137,4,36,232,165,33,0,0, 139,69,8,137,4,36,232,200,31,0,0,139,69,8,139,80,12,141,131,15,87,7,0,139,0,137,68,36,4,137,20,36,232,145,118,0,0,131,196,108,91,94,95,201,195,85,137,229,83,129,236,36,1,0,0,232,0,0,0,0,91,139,69,8,137,133,4,255,255,255,141,131,181,97,7,0,139,0,139,16, 137,85,244,49,210,199,133,36,255,255,255,0,0,0,0,199,133,32,255,255,255,0,0,0,0,199,133,28,255,255,255,0,0,0,0,199,133,24,255,255,255,0,0,0,0,141,133,24,255,255,255,137,68,36,8,141,133,32,255,255,255,137,68,36,4,139,133,4,255,255,255,137,4,36,232,209, 243,255,255,137,133,12,255,255,255,131,189,12,255,255,255,0,117,14,141,131,145,224,6,0,137,4,36,232,236,148,5,0,139,133,4,255,255,255,198,64,26,1,139,133,4,255,255,255,139,64,20,139,0,199,68,36,20,0,0,0,0,137,68,36,16,141,131,181,224,6,0,137,68,36,12, 199,68,36,8,200,0,0,0,199,68,36,4,0,0,0,0,141,133,44,255,255,255,137,4,36,232,60,89,7,0,139,149,4,255,255,255,141,133,44,255,255,255,137,68,36,8,139,133,4,255,255,255,137,68,36,4,137,20,36,232,111,18,6,0,199,133,40,255,255,255,0,0,0,0,235,110,139,133, 12,255,255,255,139,80,8,139,133,24,255,255,255,15,175,133,40,255,255,255,1,194,139,133,32,255,255,255,141,4,2,139,0,137,133,20,255,255,255,243,15,90,133,20,255,255,255,139,133,4,255,255,255,139,64,20,139,16,242,15,17,68,36,16,139,133,40,255,255,255,137, 68,36,12,139,133,40,255,255,255,137,68,36,8,137,84,36,4,141,131,217,224,6,0,137,4,36,232,171,45,5,0,255,133,40,255,255,255,129,189,40,255,255,255,231,3,0,0,127,20,139,133,12,255,255,255,139,0,59,133,40,255,255,255,15,143,114,255,255,255,141,131,181,97, 7,0,139,0,139,85,244,51,16,116,5,232,114,88,7,0,129,196,36,1,0,0,91,201,195,85,137,229,86,83,129,236,48,1,0,0,232,0,0,0,0,91,139,69,8,137,133,4,255,255,255,141,131,3,96,7,0,139,0,139,16,137,85,244,49,210,199,133,36,255,255,255,0,0,0,0,199,133,32,255, 255,255,0,0,0,0,199,133,28,255,255,255,0,0,0,0,199,133,24,255,255,255,0,0,0,0,141,133,24,255,255,255,137,68,36,8,141,133,32,255,255,255,137,68,36,4,139,133,4,255,255,255,137,4,36,232,31,242,255,255,137,133,8,255,255,255,243,15,16,69,16,243,15,44,192, 137,133,20,255,255,255,131,189,8,255,255,255,0,117,14,141,131,223,222,6,0,137,4,36,232,43,147,5,0,141,131,95,82,7,0,243,15,16,0,15,46,69,12,119,2,235,58,141,131,95,82,7,0,139,0,137,69,12,243,15,16,69,12,243,15,44,208,139,133,4,255,255,255,139,64,20,139, 0,137,84,36,8,137,68,36,4,141,131,79,223,6,0,137,4,36,232,130,44,5,0,233,132,0,0,0,243,15,16,77,12,141,131,159,82,7,0,243,15,16,0,243,15,89,200,139,133,8,255,255,255,139,0,243,15,42,192,15,46,200,115,2,235,94,139,133,8,255,255,255,139,0,141,72,255,199, 133,244,254,255,255,211,77,98,16,139,133,244,254,255,255,247,233,193,250,6,137,200,193,248,31,137,209,41,193,137,200,243,15,42,192,243,15,17,69,12,243,15,16,69,12,243,15,44,208,139,133,4,255,255,255,139,64,20,139,0,137,84,36,8,137,68,36,4,141,131,79, 223,6,0,137,4,36,232,249,43,5,0,139,133,4,255,255,255,139,64,20,139,0,199,68,36,8,231,3,0,0,137,68,36,4,141,131,115,223,6,0,137,4,36,232,212,43,5,0,243,15,16,77,12,141,131,159,82,7,0,243,15,16,0,243,15,89,193,243,15,44,192,137,133,40,255,255,255,233, 172,0,0,0,139,133,8,255,255,255,139,80,8,139,133,24,255,255,255,15,175,133,40,255,255,255,1,194,139,133,32,255,255,255,141,4,2,139,0,137,133,16,255,255,255,243,15,90,133,16,255,255,255,139,141,40,255,255,255,199,133,244,254,255,255,211,77,98,16,139,133, 244,254,255,255,247,233,193,250,6,137,200,193,248,31,137,214,41,198,137,181,0,255,255,255,105,133,0,255,255,255,232,3,0,0,137,202,41,194,137,149,0,255,255,255,139,133,4,255,255,255,139,64,20,139,16,242,15,17,68,36,16,139,133,40,255,255,255,137,68,36, 12,139,141,0,255,255,255,137,76,36,8,137,84,36,4,141,131,39,223,6,0,137,4,36,232,12,43,5,0,255,133,40,255,255,255,243,15,42,149,40,255,255,255,243,15,16,77,12,141,131,99,82,7,0,243,15,16,0,243,15,88,200,141,131,159,82,7,0,243,15,16,0,243,15,89,193,15, 46,194,118,20,139,133,8,255,255,255,139,0,59,133,40,255,255,255,15,143,18,255,255,255,139,133,4,255,255,255,139,64,20,139,16,139,133,20,255,255,255,137,68,36,8,137,84,36,4,141,131,146,223,6,0,137,4,36,232,157,42,5,0,141,131,3,96,7,0,139,0,139,117,244, 51,48,116,5,232,138,85,7,0,129,196,48,1,0,0,91,94,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,198,64,26,0,139,69,8,139,64,20,139,0,137,68,36,4,141,131,202,220,6,0,137,4,36,232,81,42,5,0,131,196,20,91,201,195,85,137,229,86,83,131,236,32,232, 0,0,0,0,91,139,69,8,137,4,36,232,189,49,5,0,139,69,8,15,182,64,26,132,192,116,11,139,69,8,137,4,36,232,157,255,255,255,139,69,8,137,4,36,232,63,17,6,0,139,69,8,139,64,20,139,85,8,137,68,36,4,137,20,36,232,121,205,4,0,235,29,141,131,66,219,6,0,137,4,36, 232,210,147,4,0,137,68,36,4,139,69,244,137,4,36,232,90,205,4,0,141,131,113,92,7,0,139,0,139,48,141,131,66,219,6,0,137,4,36,232,171,147,4,0,137,116,36,4,137,4,36,232,117,206,4,0,137,69,244,131,125,244,0,117,182,139,69,8,139,64,8,137,4,36,232,32,201,4, 0,131,196,32,91,94,201,195,85,137,229,131,236,24,235,11,139,69,8,139,64,28,139,0,137,69,8,139,69,8,139,64,28,139,64,4,131,248,2,116,231,139,69,8,139,80,20,139,69,12,137,68,36,4,137,20,36,232,188,121,2,0,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91, 131,125,16,0,120,13,139,69,16,3,69,12,139,0,137,69,244,235,15,243,15,42,69,28,243,15,89,69,40,243,15,17,69,244,131,125,20,0,120,13,139,69,20,3,69,12,139,0,137,69,240,235,11,141,131,94,78,7,0,139,0,137,69,240,139,69,240,137,68,36,4,139,69,48,137,4,36, 232,223,157,2,0,217,93,192,243,15,16,69,192,243,15,88,69,36,243,15,17,68,36,4,139,69,8,137,4,36,232,197,57,1,0,217,93,236,131,125,24,0,15,136,149,0,0,0,139,69,24,3,69,12,139,0,137,69,228,139,69,240,137,68,36,4,139,69,48,137,4,36,232,151,157,2,0,217,93, 196,243,15,16,69,196,243,15,88,69,36,243,15,17,69,200,139,69,228,137,68,36,4,139,69,52,137,4,36,232,115,157,2,0,217,93,204,243,15,16,69,200,243,15,88,69,204,243,15,17,68,36,4,139,69,8,137,4,36,232,89,57,1,0,217,93,208,243,15,16,69,208,243,15,92,69,236, 243,15,17,69,232,141,131,94,78,7,0,243,15,16,0,15,46,69,232,119,2,235,29,141,131,206,80,7,0,15,40,0,129,117,232,0,0,0,128,235,11,141,131,98,78,7,0,139,0,137,69,232,139,69,244,137,68,36,4,139,69,44,137,4,36,232,2,157,2,0,217,93,212,243,15,16,69,212,243, 15,88,69,32,243,15,17,68,36,4,139,69,8,137,4,36,232,100,55,1,0,139,69,56,217,24,139,85,60,139,69,236,137,2,139,85,64,139,69,232,137,2,131,196,84,91,201,195,85,137,229,86,83,131,236,112,232,0,0,0,0,91,141,131,248,131,7,0,243,15,16,0,15,40,200,243,15,89, 77,12,141,131,196,131,7,0,243,15,16,0,243,15,88,193,141,131,196,131,7,0,243,15,17,0,141,131,252,131,7,0,243,15,16,0,15,40,200,243,15,89,77,16,141,131,200,131,7,0,243,15,16,0,243,15,88,193,141,131,200,131,7,0,243,15,17,0,141,131,204,131,7,0,139,0,133, 192,15,132,212,1,0,0,199,69,244,0,0,0,0,233,178,1,0,0,141,131,236,131,7,0,139,0,15,175,69,244,137,194,141,131,224,131,7,0,139,0,141,4,2,137,69,240,141,131,228,131,7,0,139,8,141,131,204,131,7,0,139,16,199,68,36,12,1,0,0,0,139,69,240,137,68,36,8,137,76, 36,4,137,20,36,232,76,157,2,0,217,93,236,141,131,208,131,7,0,139,0,133,192,116,48,141,131,228,131,7,0,139,8,141,131,208,131,7,0,139,16,199,68,36,12,1,0,0,0,139,69,240,137,68,36,8,137,76,36,4,137,20,36,232,18,157,2,0,217,93,176,235,15,141,131,232,76,7, 0,243,15,16,0,243,15,17,69,176,243,15,16,69,176,243,15,17,69,232,243,15,16,69,236,243,15,88,69,12,141,131,228,131,7,0,139,16,141,131,204,131,7,0,139,8,199,68,36,16,1,0,0,0,243,15,17,68,36,12,139,69,240,137,68,36,8,137,84,36,4,137,12,36,232,119,159,2, 0,141,131,208,131,7,0,139,0,133,192,15,132,197,0,0,0,141,131,4,132,7,0,139,0,133,192,116,116,131,125,244,0,15,133,175,0,0,0,141,131,252,131,7,0,243,15,16,0,243,15,89,69,16,243,15,88,69,232,243,15,17,69,228,141,131,232,76,7,0,243,15,16,0,15,46,69,228, 119,2,235,11,141,131,232,76,7,0,139,0,137,69,228,141,131,228,131,7,0,139,16,141,131,208,131,7,0,139,8,199,68,36,16,1,0,0,0,139,69,228,137,68,36,12,139,69,240,137,68,36,8,137,84,36,4,137,12,36,232,233,158,2,0,235,69,141,131,252,131,7,0,243,15,16,0,243, 15,89,69,16,243,15,88,69,232,141,131,228,131,7,0,139,16,141,131,208,131,7,0,139,8,199,68,36,16,1,0,0,0,243,15,17,68,36,12,139,69,240,137,68,36,8,137,84,36,4,137,12,36,232,162,158,2,0,255,69,244,141,131,232,131,7,0,139,0,57,69,244,15,140,61,254,255,255, 233,185,1,0,0,141,131,208,131,7,0,139,0,133,192,15,132,169,1,0,0,141,131,244,131,7,0,243,15,16,8,141,131,196,131,7,0,243,15,16,0,243,15,88,193,243,15,90,200,141,131,88,77,7,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,224,141,131,200,131,7,0,139, 0,137,69,204,141,131,236,131,7,0,139,16,141,131,0,132,7,0,139,0,15,175,194,137,194,141,131,224,131,7,0,139,0,141,4,2,137,193,141,131,228,131,7,0,139,16,141,131,208,131,7,0,139,0,199,68,36,12,1,0,0,0,137,76,36,8,137,84,36,4,137,4,36,232,53,155,2,0,217, 93,200,243,15,16,69,204,243,15,92,69,200,243,15,17,69,196,131,125,224,0,121,9,199,69,224,0,0,0,0,235,25,141,131,232,131,7,0,139,0,57,69,224,124,12,141,131,232,131,7,0,139,0,72,137,69,224,141,131,0,132,7,0,139,0,57,69,224,126,9,199,69,180,255,255,255, 255,235,7,199,69,180,1,0,0,0,139,69,180,137,69,216,141,131,0,132,7,0,139,0,43,69,224,15,175,69,216,64,137,69,208,199,69,212,0,0,0,0,139,69,224,137,69,220,233,138,0,0,0,141,131,236,131,7,0,139,0,15,175,69,220,137,194,141,131,224,131,7,0,139,0,141,4,2, 137,194,141,131,228,131,7,0,139,8,141,131,208,131,7,0,139,48,199,68,36,16,1,0,0,0,139,69,204,137,68,36,12,137,84,36,8,137,76,36,4,137,52,36,232,39,157,2,0,131,125,208,1,126,49,243,15,90,93,204,243,15,90,85,196,139,69,208,72,242,15,42,200,141,131,56,79, 7,0,242,15,16,0,242,15,94,193,242,15,89,194,242,15,88,195,242,15,90,192,243,15,17,69,204,255,69,212,139,69,216,1,69,220,139,69,212,59,69,208,15,140,106,255,255,255,141,147,0,132,7,0,139,69,224,137,2,141,131,216,131,7,0,139,0,133,192,116,28,141,131,212, 131,7,0,139,16,141,131,216,131,7,0,139,0,137,84,36,4,137,4,36,232,30,116,2,0,141,131,220,131,7,0,139,0,133,192,116,28,141,131,212,131,7,0,139,16,141,131,220,131,7,0,139,0,137,84,36,4,137,4,36,232,4,250,255,255,131,196,112,91,94,201,195,85,137,229,83, 129,236,148,0,0,0,232,0,0,0,0,91,141,131,196,85,7,0,139,0,57,69,24,117,12,199,69,188,0,0,0,0,233,242,1,0,0,141,69,228,137,68,36,36,141,69,232,137,68,36,32,141,69,224,137,68,36,28,139,69,52,137,68,36,24,139,69,48,137,68,36,20,139,69,44,137,68,36,16,141, 69,236,137,68,36,12,141,69,240,137,68,36,8,141,69,244,137,68,36,4,139,69,24,137,4,36,232,73,183,2,0,133,192,116,12,199,69,188,0,0,0,0,233,152,1,0,0,139,69,8,139,0,61,207,7,0,0,127,9,199,69,216,1,0,0,0,235,34,139,69,8,139,8,199,69,180,181,129,78,27,139, 69,180,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,69,216,199,69,220,0,0,0,0,141,131,144,72,7,0,139,0,137,69,208,233,53,1,0,0,139,69,224,133,192,120,58,139,69,8,139,80,8,139,69,236,15,175,69,220,1,194,139,69,224,141,4,2,139,0,137, 68,36,4,139,69,44,137,4,36,232,117,151,2,0,217,93,192,243,15,16,69,192,243,15,88,69,32,243,15,17,69,204,235,30,243,15,16,69,32,243,15,88,69,208,243,15,17,69,204,243,15,16,69,208,243,15,88,69,36,243,15,17,69,208,139,69,232,133,192,120,43,139,69,8,139, 80,8,139,69,236,15,175,69,220,1,194,139,69,232,141,4,2,139,0,137,68,36,4,139,69,48,137,4,36,232,22,151,2,0,217,93,196,235,15,141,131,144,72,7,0,243,15,16,0,243,15,17,69,196,243,15,16,69,196,243,15,88,69,40,243,15,17,69,200,139,77,240,139,69,8,139,80, 8,139,69,236,15,175,69,220,141,4,2,137,194,139,69,76,137,68,36,48,139,69,72,137,68,36,44,139,69,68,137,68,36,40,139,69,64,137,68,36,36,139,69,60,137,68,36,32,139,69,56,137,68,36,28,139,69,200,137,68,36,24,139,69,204,137,68,36,20,139,69,12,137,68,36,16, 139,69,8,137,68,36,12,199,68,36,8,0,0,0,0,137,76,36,4,137,20,36,232,62,114,2,0,137,69,212,131,125,212,0,116,8,139,69,212,137,69,188,235,27,139,69,216,1,69,220,139,69,8,139,0,59,69,220,15,143,189,254,255,255,199,69,188,0,0,0,0,139,69,188,129,196,148,0, 0,0,91,201,195,85,137,229,87,86,83,129,236,220,0,0,0,232,0,0,0,0,91,141,69,212,137,68,36,36,141,69,216,137,68,36,32,141,69,208,137,68,36,28,139,69,56,137,68,36,24,139,69,52,137,68,36,20,139,69,48,137,68,36,16,141,69,220,137,68,36,12,141,69,224,137,68, 36,8,141,69,228,137,68,36,4,139,69,24,137,4,36,232,57,181,2,0,133,192,15,133,7,11,0,0,141,131,191,72,7,0,139,0,137,69,200,139,69,8,139,0,61,208,7,0,0,126,43,139,69,8,139,8,199,133,116,255,255,255,211,77,98,16,139,133,116,255,255,255,247,233,193,250,6, 137,200,193,248,31,137,209,41,193,137,141,120,255,255,255,235,10,199,133,120,255,255,255,1,0,0,0,139,133,120,255,255,255,137,69,196,199,69,204,0,0,0,0,233,53,2,0,0,139,77,212,139,117,216,139,125,208,139,69,8,139,80,8,139,69,220,15,175,69,204,1,194,141, 69,184,137,68,36,56,141,69,180,137,68,36,52,141,69,176,137,68,36,48,139,69,56,137,68,36,44,139,69,52,137,68,36,40,139,69,48,137,68,36,36,139,69,36,137,68,36,32,139,69,40,137,68,36,28,139,69,32,137,68,36,24,139,69,204,137,68,36,20,137,76,36,16,137,116, 36,12,137,124,36,8,137,84,36,4,139,69,12,137,4,36,232,208,246,255,255,243,15,16,77,184,141,131,131,71,7,0,243,15,16,0,15,46,193,119,2,235,11,141,131,131,71,7,0,139,0,137,69,184,243,15,16,77,176,243,15,42,69,60,15,40,209,243,15,92,208,15,40,194,243,15, 17,69,192,141,131,103,70,7,0,243,15,16,0,15,46,69,192,119,2,235,16,141,131,215,72,7,0,15,40,0,129,117,192,0,0,0,128,243,15,16,69,192,141,131,195,72,7,0,15,46,0,15,135,70,1,0,0,243,15,16,77,180,243,15,42,69,64,15,40,209,243,15,92,208,15,40,194,243,15, 17,69,188,141,131,103,70,7,0,243,15,16,0,15,46,69,188,119,2,235,16,141,131,215,72,7,0,15,40,0,129,117,188,0,0,0,128,243,15,16,69,192,15,40,200,243,15,88,77,188,243,15,16,69,200,15,46,193,119,2,235,15,243,15,16,69,192,243,15,88,69,188,243,15,17,69,200, 139,69,212,133,192,15,136,216,0,0,0,243,15,16,77,180,243,15,16,69,184,243,15,88,200,243,15,42,69,64,15,40,209,243,15,92,208,15,40,194,243,15,17,69,188,141,131,103,70,7,0,243,15,16,0,15,46,69,188,119,2,235,16,141,131,215,72,7,0,15,40,0,129,117,188,0,0, 0,128,243,15,16,69,192,15,40,200,243,15,88,77,188,243,15,16,69,200,15,46,193,119,2,235,15,243,15,16,69,192,243,15,88,69,188,243,15,17,69,200,243,15,16,77,180,243,15,16,69,184,243,15,92,200,243,15,42,69,64,15,40,209,243,15,92,208,15,40,194,243,15,17,69, 188,141,131,103,70,7,0,243,15,16,0,15,46,69,188,119,2,235,16,141,131,215,72,7,0,15,40,0,129,117,188,0,0,0,128,243,15,16,69,192,15,40,200,243,15,88,77,188,243,15,16,69,200,15,46,193,119,2,235,15,243,15,16,69,192,243,15,88,69,188,243,15,17,69,200,139,69, 196,1,69,204,139,69,8,139,0,59,69,204,15,143,189,253,255,255,243,15,16,69,200,141,131,195,72,7,0,15,46,0,119,5,233,179,0,0,0,141,131,103,70,7,0,243,15,16,0,15,46,69,44,117,7,122,5,233,141,0,0,0,139,69,80,137,68,36,68,139,69,76,137,68,36,64,139,69,72, 137,68,36,60,139,69,68,137,68,36,56,139,69,64,137,68,36,52,139,69,60,137,68,36,48,139,69,56,137,68,36,44,139,69,52,137,68,36,40,139,69,48,137,68,36,36,139,69,40,137,68,36,32,139,69,36,137,68,36,28,139,69,32,137,68,36,24,139,69,28,137,68,36,20,139,69, 24,137,68,36,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,35,250,255,255,137,133,124,255,255,255,233,180,7,0,0,199,133,124,255,255,255,0,0,0,0,233,165,7,0,0,243,15,90,77,200,141,131,223,70,7,0,242,15,16, 0,242,15,88,193,242,15,90,192,243,15,17,69,200,199,69,204,0,0,0,0,233,101,7,0,0,139,77,212,139,117,216,139,125,208,139,69,8,139,80,8,139,69,220,15,175,69,204,1,194,141,69,176,137,68,36,56,141,69,180,137,68,36,52,141,69,184,137,68,36,48,139,69,56,137, 68,36,44,139,69,52,137,68,36,40,139,69,48,137,68,36,36,139,69,36,137,68,36,32,139,69,40,137,68,36,28,139,69,32,137,68,36,24,139,69,204,137,68,36,20,137,76,36,16,137,116,36,12,137,124,36,8,137,84,36,4,139,69,12,137,4,36,232,157,243,255,255,243,15,16,77, 176,141,131,131,71,7,0,243,15,16,0,15,46,193,119,2,235,11,141,131,131,71,7,0,139,0,137,69,176,243,15,16,77,184,243,15,42,69,60,15,40,209,243,15,92,208,15,40,194,243,15,17,69,172,141,131,103,70,7,0,243,15,16,0,15,46,69,172,119,2,235,16,141,131,215,72, 7,0,15,40,0,129,117,172,0,0,0,128,243,15,16,77,180,243,15,42,69,64,15,40,209,243,15,92,208,15,40,194,243,15,17,69,168,141,131,103,70,7,0,243,15,16,0,15,46,69,168,119,2,235,16,141,131,215,72,7,0,15,40,0,129,117,168,0,0,0,128,139,69,212,133,192,15,136, 156,0,0,0,243,15,16,77,180,243,15,16,69,176,243,15,88,200,243,15,42,69,64,15,40,209,243,15,92,208,15,40,194,243,15,17,69,164,141,131,103,70,7,0,243,15,16,0,15,46,69,164,119,2,235,16,141,131,215,72,7,0,15,40,0,129,117,164,0,0,0,128,243,15,16,77,180,243, 15,16,69,176,243,15,92,200,243,15,42,69,64,15,40,209,243,15,92,208,15,40,194,243,15,17,69,160,141,131,103,70,7,0,243,15,16,0,15,46,69,160,119,2,235,16,141,131,215,72,7,0,15,40,0,129,117,160,0,0,0,128,139,69,216,133,192,121,30,141,131,191,72,7,0,139,0, 137,69,168,235,17,141,131,191,72,7,0,139,0,137,69,160,139,69,160,137,69,164,243,15,16,69,172,15,40,200,243,15,88,77,168,243,15,16,69,200,15,46,193,115,51,243,15,16,69,172,15,40,200,243,15,88,77,164,243,15,16,69,200,15,46,193,115,28,243,15,16,69,172,15, 40,200,243,15,88,77,160,243,15,16,69,200,15,46,193,115,5,233,77,5,0,0,243,15,16,77,168,243,15,16,69,164,15,46,193,118,29,243,15,16,77,168,243,15,16,69,160,15,46,193,118,14,141,131,131,125,7,0,199,0,0,0,0,0,235,43,243,15,16,77,164,243,15,16,69,160,15, 46,193,119,2,235,14,141,131,131,125,7,0,199,0,255,255,255,255,235,12,141,131,131,125,7,0,199,0,1,0,0,0,131,125,80,0,15,132,150,4,0,0,139,69,8,139,64,8,137,69,156,139,85,220,141,131,107,125,7,0,137,16,141,147,83,125,7,0,139,69,12,137,2,141,147,87,125, 7,0,139,69,16,137,2,141,147,91,125,7,0,139,69,20,137,2,139,85,224,141,131,99,125,7,0,137,16,141,131,107,70,7,0,139,0,137,68,36,4,139,69,12,137,4,36,232,18,45,1,0,141,131,119,125,7,0,217,24,141,131,107,70,7,0,139,0,137,68,36,4,139,69,12,137,4,36,232,81, 45,1,0,141,131,123,125,7,0,217,24,131,125,72,0,15,132,246,0,0,0,243,15,42,77,60,243,15,16,69,184,15,46,193,15,134,227,0,0,0,139,69,8,139,0,131,248,1,127,15,199,133,124,255,255,255,0,0,0,0,233,86,4,0,0,184,255,255,255,255,131,248,255,116,80,190,255,255, 255,255,139,69,8,139,0,72,137,194,43,85,204,139,69,220,15,175,194,137,199,139,69,8,139,72,8,139,85,204,66,139,69,220,15,175,194,1,193,139,69,8,139,80,8,139,69,220,15,175,69,204,141,4,2,137,116,36,12,137,124,36,8,137,76,36,4,137,4,36,232,227,68,7,0,235, 69,139,69,8,139,0,72,137,194,43,85,204,139,69,220,15,175,194,137,198,139,69,8,139,72,8,139,85,204,66,139,69,220,15,175,194,1,193,139,69,8,139,80,8,139,69,220,15,175,69,204,141,4,2,137,116,36,8,137,76,36,4,137,4,36,232,200,3,0,0,139,69,8,139,0,72,137, 68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,253,217,255,255,199,133,124,255,255,255,0,0,0,0,233,140,3,0,0,131,125,72,0,15,132,181,0,0,0,139,69,8,139,0,64,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,200,217,255,255,139,69,8,139,64, 8,137,69,156,184,255,255,255,255,131,248,255,116,71,190,255,255,255,255,139,69,8,139,0,43,69,204,141,80,255,139,69,220,15,175,194,137,199,139,69,220,15,175,69,204,137,193,3,77,156,139,85,204,66,139,69,220,15,175,194,3,69,156,137,116,36,12,137,124,36, 8,137,76,36,4,137,4,36,232,243,67,7,0,235,60,139,69,8,139,0,43,69,204,141,80,255,139,69,220,15,175,194,137,198,139,69,220,15,175,69,204,137,193,3,77,156,139,85,204,66,139,69,220,15,175,194,3,69,156,137,116,36,8,137,76,36,4,137,4,36,232,225,2,0,0,255, 69,204,139,69,208,133,192,15,136,132,0,0,0,141,147,75,125,7,0,139,69,48,137,2,139,69,220,15,175,69,204,3,69,156,137,194,141,131,99,125,7,0,139,0,199,68,36,12,1,0,0,0,137,84,36,8,137,68,36,4,139,69,48,137,4,36,232,167,142,2,0,141,131,67,125,7,0,217,24, 139,69,220,15,175,69,204,3,69,156,137,194,141,131,95,125,7,0,137,16,131,125,68,0,116,23,139,69,8,139,0,137,194,43,85,204,141,131,103,125,7,0,137,16,233,203,0,0,0,141,131,103,125,7,0,199,0,1,0,0,0,233,186,0,0,0,141,131,75,125,7,0,199,0,0,0,0,0,141,147, 67,125,7,0,141,131,103,70,7,0,139,0,137,2,139,85,156,141,131,95,125,7,0,137,16,139,69,8,139,16,141,131,103,125,7,0,137,16,243,15,42,69,204,141,131,115,125,7,0,243,15,17,0,141,147,127,125,7,0,139,69,204,137,2,141,131,119,125,7,0,243,15,16,0,243,15,90, 192,242,15,17,69,128,141,131,103,70,7,0,243,15,16,0,15,46,69,36,117,4,122,2,235,30,243,15,90,77,36,141,131,135,70,7,0,242,15,16,0,102,15,40,208,242,15,94,209,242,15,17,85,136,235,15,141,131,135,70,7,0,242,15,16,0,242,15,17,69,136,242,15,16,69,128,242, 15,89,69,136,242,15,90,192,141,131,119,125,7,0,243,15,17,0,141,131,131,125,7,0,139,0,133,192,116,106,141,147,79,125,7,0,139,69,56,137,2,139,69,220,15,175,69,204,3,69,156,137,194,141,131,99,125,7,0,139,0,199,68,36,12,1,0,0,0,137,84,36,8,137,68,36,4,139, 69,56,137,4,36,232,93,141,2,0,141,131,71,125,7,0,217,24,141,131,131,125,7,0,139,0,247,216,243,15,42,200,141,131,123,125,7,0,243,15,16,0,243,15,89,193,141,131,123,125,7,0,243,15,17,0,235,103,139,69,216,133,192,120,68,141,147,79,125,7,0,139,69,52,137,2, 139,69,220,15,175,69,204,3,69,156,137,194,141,131,99,125,7,0,139,0,199,68,36,12,1,0,0,0,137,84,36,8,137,68,36,4,139,69,52,137,4,36,232,236,140,2,0,141,131,71,125,7,0,217,24,235,28,141,131,79,125,7,0,199,0,0,0,0,0,141,147,71,125,7,0,141,131,103,70,7,0, 139,0,137,2,139,69,64,137,68,36,20,139,69,60,137,68,36,16,199,68,36,12,0,0,0,0,141,131,114,249,255,255,137,68,36,8,199,68,36,4,0,0,0,0,139,69,12,137,4,36,232,51,21,1,0,131,125,72,0,116,41,243,15,42,77,60,243,15,16,69,184,15,46,193,119,2,235,12,199,133, 124,255,255,255,6,0,0,0,235,81,199,133,124,255,255,255,3,0,0,0,235,69,141,131,131,125,7,0,139,0,133,192,116,9,199,69,148,2,0,0,0,235,7,199,69,148,1,0,0,0,139,69,148,137,133,124,255,255,255,235,30,139,69,196,1,69,204,139,69,8,139,0,59,69,204,15,143,141, 248,255,255,199,133,124,255,255,255,0,0,0,0,139,133,124,255,255,255,129,196,220,0,0,0,91,94,95,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,172,64,7,0,201,195,85,137, 229,87,86,83,129,236,172,0,0,0,232,0,0,0,0,91,141,131,23,61,7,0,139,0,137,69,228,141,131,23,61,7,0,139,0,137,69,224,141,131,27,61,7,0,139,0,137,69,220,141,131,27,61,7,0,139,0,137,69,216,139,69,8,139,80,12,141,69,196,137,68,36,36,141,69,200,137,68,36, 32,141,69,192,137,68,36,28,199,68,36,24,0,0,0,0,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,141,69,204,137,68,36,12,141,69,208,137,68,36,8,141,69,212,137,68,36,4,137,20,36,232,87,169,2,0,133,192,15,133,131,1,0,0,139,69,8,139,0,61,207,7,0,0,127,9,199,69, 184,1,0,0,0,235,34,139,69,8,139,8,199,69,148,181,129,78,27,139,69,148,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,69,184,199,69,188,0,0,0,0,233,50,1,0,0,139,77,196,139,117,200,139,125,192,139,69,8,139,80,8,139,69,204,15,175,69,188, 1,194,141,69,172,137,68,36,56,141,69,176,137,68,36,52,141,69,180,137,68,36,48,199,68,36,44,0,0,0,0,199,68,36,40,0,0,0,0,199,68,36,36,0,0,0,0,141,131,187,58,7,0,139,0,137,68,36,32,141,131,183,58,7,0,139,0,137,68,36,28,141,131,183,58,7,0,139,0,137,68,36, 24,139,69,188,137,68,36,20,137,76,36,16,137,116,36,12,137,124,36,8,137,84,36,4,139,69,12,137,4,36,232,250,234,255,255,243,15,16,77,172,141,131,23,59,7,0,243,15,16,0,15,46,193,119,2,235,11,141,131,23,59,7,0,139,0,137,69,172,243,15,16,77,180,243,15,16, 69,228,15,46,193,119,2,235,6,139,69,180,137,69,228,243,15,16,69,180,15,46,69,220,119,2,235,6,139,69,180,137,69,220,243,15,16,77,176,243,15,16,69,172,243,15,92,200,243,15,16,69,224,15,46,193,119,2,235,19,243,15,16,69,176,243,15,16,77,172,243,15,92,193, 243,15,17,69,224,243,15,16,69,176,243,15,16,77,172,243,15,88,193,15,46,69,216,119,2,235,19,243,15,16,69,176,243,15,16,77,172,243,15,88,193,243,15,17,69,216,139,69,184,1,69,188,139,69,8,139,0,59,69,188,15,143,192,254,255,255,243,15,16,69,228,243,15,44, 208,139,69,16,137,16,243,15,16,69,224,243,15,44,208,139,69,20,137,16,243,15,16,69,220,243,15,44,208,139,69,24,137,16,243,15,16,69,216,243,15,44,208,139,69,28,137,16,129,196,172,0,0,0,91,94,95,201,195,85,137,229,131,236,56,139,69,8,137,69,244,139,69,244, 139,64,8,137,194,139,69,28,137,68,36,20,139,69,24,137,68,36,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,225,135,0,0,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,24,139,69,8,137,69,244,201,195,85,137, 229,131,236,8,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,69,244,139,64,8,137,194,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,24,139,0,0,201,195,85,137,229,131,236,56,139,69,8,137,69,244,139,69,244, 139,64,8,137,194,139,69,36,137,68,36,28,139,69,32,137,68,36,24,139,69,28,137,68,36,20,139,69,24,137,68,36,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,35,139,0,0,201,195,85,137,229,87,86,83,131,236,124,232,0,0,0, 0,91,139,69,8,137,69,220,139,69,220,137,4,36,232,161,214,255,255,137,69,216,139,69,220,139,64,8,139,112,8,141,131,59,195,6,0,137,4,36,232,47,124,4,0,57,198,116,41,139,69,220,139,64,8,139,64,8,139,0,137,68,36,8,141,131,240,196,6,0,137,68,36,4,139,69,220, 137,4,36,232,175,121,5,0,233,56,2,0,0,139,69,220,139,64,8,139,64,8,137,4,36,232,22,120,2,0,137,69,212,131,125,212,0,117,34,139,69,220,139,64,8,139,64,8,139,0,137,68,36,4,141,131,75,195,6,0,137,4,36,232,71,120,5,0,233,252,1,0,0,139,69,220,139,64,8,141, 112,12,141,131,105,195,6,0,137,4,36,232,175,123,4,0,199,68,36,12,0,0,0,0,137,116,36,8,137,68,36,4,139,69,212,137,4,36,232,76,107,2,0,217,93,164,243,15,44,69,164,137,69,228,131,125,228,0,116,29,131,125,228,1,116,8,139,69,228,137,69,172,235,7,199,69,172, 0,0,0,0,139,77,172,137,77,168,235,7,199,69,168,1,0,0,0,139,69,168,137,69,224,139,69,220,15,182,64,25,15,190,208,139,69,220,15,182,64,27,15,190,192,193,224,2,3,69,224,1,192,141,52,2,139,69,216,139,56,139,69,220,139,64,16,137,69,176,141,131,176,217,6,0, 137,4,36,232,30,123,4,0,137,69,180,141,131,32,205,6,0,137,4,36,232,13,123,4,0,137,194,137,116,36,28,141,131,176,68,7,0,139,0,137,68,36,24,137,124,36,20,139,77,176,137,76,36,16,139,69,180,137,68,36,12,137,84,36,8,141,131,18,197,6,0,137,68,36,4,139,69, 12,137,4,36,232,115,16,4,0,139,69,220,15,182,64,25,132,192,15,132,247,0,0,0,139,69,216,139,0,137,69,208,199,69,204,0,0,0,0,129,125,208,64,13,3,0,15,142,207,0,0,0,139,69,208,137,68,36,4,141,131,28,197,6,0,137,4,36,232,83,116,5,0,233,181,0,0,0,139,69,204, 139,85,208,137,209,41,193,137,200,137,69,200,129,125,200,232,3,0,0,126,7,199,69,200,232,3,0,0,141,131,121,195,6,0,137,4,36,232,94,122,4,0,137,194,139,69,204,137,68,36,12,137,84,36,8,141,131,74,197,6,0,137,68,36,4,139,69,12,137,4,36,232,223,15,4,0,199, 69,196,0,0,0,0,235,58,139,69,216,139,64,8,137,194,139,69,196,3,69,204,193,224,2,141,4,2,243,15,16,0,243,15,90,192,242,15,17,68,36,8,141,131,228,12,7,0,137,68,36,4,139,69,12,137,4,36,232,159,15,4,0,255,69,196,139,69,196,59,69,200,124,190,141,131,120,203, 6,0,137,68,36,4,139,69,12,137,4,36,232,127,15,4,0,139,69,200,1,69,204,139,69,204,59,69,208,15,140,63,255,255,255,131,196,124,91,94,95,201,195,85,137,229,131,236,8,139,69,8,198,64,24,1,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,69,244,139,64, 12,137,4,36,232,187,91,0,0,133,192,116,58,139,69,244,139,64,12,139,85,244,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,148,252,255,255,139,69,244,139,64,12,139,85,244,199,68,36,8,1,0,0,0,137,68,36,4,137,20,36,232,119,252,255,255,201,195,85,137,229,83, 131,236,20,232,0,0,0,0,91,139,69,8,139,64,12,137,4,36,232,96,91,0,0,133,192,116,33,139,69,8,139,80,12,139,77,8,141,131,154,255,255,255,137,68,36,8,137,84,36,4,137,12,36,232,20,22,5,0,235,37,139,69,8,15,182,64,26,132,192,116,26,139,69,8,139,64,20,139, 0,137,68,36,4,141,131,66,194,6,0,137,4,36,232,14,15,5,0,131,196,20,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,4,36,232,46,211,255,255,137,69,244,131,125,244,0,116,19,139,69,244,139,64,12,137,4,36,232,228,116,2,0,137,69,228,235,7, 199,69,228,0,0,0,0,139,69,228,137,69,240,131,125,240,0,117,14,141,131,248,193,6,0,137,4,36,232,118,119,5,0,139,69,240,131,196,52,91,201,195,85,137,229,131,236,40,139,69,8,137,4,36,232,215,210,255,255,137,69,244,139,69,244,139,0,201,195,85,137,229,131, 236,40,139,69,8,137,4,36,232,188,210,255,255,137,69,244,139,69,244,139,64,8,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,69,236,137,68,36,8,141,69,244,137,68,36,4,139,69,8,137,4,36,232,119,211,255,255,137,69,232,131,125,232,0,117,35,139,69,8,139, 64,20,139,0,137,68,36,4,141,131,118,193,6,0,137,4,36,232,140,116,5,0,199,69,228,0,0,0,0,235,86,139,69,236,131,248,4,116,35,139,69,8,139,64,20,139,0,137,68,36,4,141,131,153,193,6,0,137,4,36,232,97,116,5,0,199,69,228,0,0,0,0,235,43,139,69,8,137,4,36,232, 65,255,255,255,137,194,139,69,12,137,16,139,69,8,137,4,36,232,74,255,255,255,137,194,139,69,16,137,16,199,69,228,1,0,0,0,139,69,228,131,196,52,91,201,195,85,137,229,131,236,24,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,48,255,255, 255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,15,182,64,25,132,192,116,32,131,125,12,0,117,26,139,69,8,139,64,16,139,0,137,68,36,4,141,131,228,192,6,0,137,4,36,232,18,113,5,0,139,69,12,137,194,139,69,8,136,80,25,131,196,20,91,201,195,85, 137,229,83,131,236,36,232,0,0,0,0,91,141,69,236,137,68,36,8,141,69,244,137,68,36,4,139,69,8,137,4,36,232,92,210,255,255,137,69,232,131,125,232,0,117,28,139,69,8,139,64,20,139,0,137,68,36,4,141,131,91,192,6,0,137,4,36,232,113,115,5,0,235,56,199,69,240, 0,0,0,0,235,37,139,69,232,139,64,8,137,193,139,69,244,193,224,2,137,194,139,69,236,15,175,69,240,141,4,2,141,20,1,139,69,12,137,2,255,69,240,139,69,232,139,0,59,69,240,127,209,139,69,8,137,4,36,232,87,253,255,255,131,196,36,91,201,195,85,137,229,83,131, 236,116,232,0,0,0,0,91,141,69,232,137,68,36,8,141,69,244,137,68,36,4,139,69,8,137,4,36,232,200,209,255,255,137,69,228,131,125,228,0,117,31,139,69,8,139,64,20,139,0,137,68,36,4,141,131,199,191,6,0,137,4,36,232,221,114,5,0,233,245,1,0,0,131,125,12,0,117, 7,199,69,12,0,2,0,0,139,69,12,137,4,36,232,139,142,255,255,137,193,184,1,0,0,0,211,224,59,69,12,116,56,139,69,12,137,4,36,232,114,142,255,255,137,193,184,1,0,0,0,211,224,137,69,12,139,69,228,139,64,12,139,16,139,69,12,137,68,36,8,137,84,36,4,141,131, 54,192,6,0,137,4,36,232,193,111,5,0,139,69,12,131,192,3,137,68,36,4,139,69,8,137,4,36,232,10,13,0,0,242,15,42,77,12,141,131,23,50,7,0,242,15,16,0,242,15,94,193,242,15,17,69,208,199,69,240,0,0,0,0,141,131,63,52,7,0,102,15,40,0,242,15,16,77,208,102,15, 87,193,242,15,17,69,216,233,45,1,0,0,243,15,16,69,16,243,15,90,192,242,15,17,69,192,131,125,28,0,116,111,199,69,236,0,0,0,0,242,15,16,69,216,242,15,17,69,200,235,82,139,69,236,193,224,2,3,69,24,243,15,16,0,243,15,90,192,242,15,17,69,152,242,15,16,69, 200,242,15,17,4,36,232,116,56,7,0,221,93,160,242,15,16,77,152,242,15,89,77,160,242,15,16,69,192,242,15,88,193,242,15,17,69,192,255,69,236,242,15,16,69,200,242,15,88,69,216,242,15,17,69,200,139,69,236,59,69,20,124,166,235,114,199,69,236,0,0,0,0,141,131, 215,49,7,0,242,15,16,0,242,15,17,69,200,235,82,139,69,236,193,224,2,3,69,24,243,15,16,0,243,15,90,192,242,15,17,69,168,242,15,16,69,200,242,15,17,4,36,232,122,54,7,0,221,93,176,242,15,16,77,168,242,15,89,77,176,242,15,16,69,192,242,15,88,193,242,15,17, 69,192,255,69,236,242,15,16,69,200,242,15,88,69,216,242,15,17,69,200,139,69,236,59,69,20,124,166,139,69,228,139,64,8,137,193,139,69,244,193,224,2,137,194,139,69,232,15,175,69,240,141,4,2,141,4,1,242,15,90,69,192,243,15,17,0,255,69,240,242,15,16,69,216, 242,15,88,69,208,242,15,17,69,216,139,69,228,139,0,59,69,240,15,143,197,254,255,255,139,69,8,137,4,36,232,14,251,255,255,131,196,116,91,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,131,125,16,1,127,31,139,69,8,139,64,20,139,0,137,68,36,4,141,131, 9,190,6,0,137,4,36,232,175,112,5,0,233,202,0,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,70,246,3,0,217,93,228,243,15,44,69,228,137,69,240,131,69,20,8,255,77,16,139,69,16,193,224,2,137,4,36,232,128,141,4,0,137,69,244,131,125, 244,0,15,132,131,0,0,0,199,69,236,0,0,0,0,235,41,139,69,236,193,224,2,137,198,3,117,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,236,137,4,36,232,236,245,3,0,217,30,255,69,236,139,69,236,59,69,16,124,207,199,68,36,20,1,0,0,0,139,69,244,137, 68,36,16,139,69,16,137,68,36,12,141,131,117,47,7,0,139,0,137,68,36,8,139,69,240,137,68,36,4,139,69,8,137,4,36,232,207,252,255,255,139,69,16,193,224,2,137,68,36,4,139,69,244,137,4,36,232,214,142,4,0,131,196,64,91,94,201,195,85,137,229,86,83,131,236,64, 232,0,0,0,0,91,131,125,16,1,127,31,139,69,8,139,64,20,139,0,137,68,36,4,141,131,5,189,6,0,137,4,36,232,171,111,5,0,233,202,0,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,66,245,3,0,217,93,228,243,15,44,69,228,137,69,240,131,69, 20,8,255,77,16,139,69,16,193,224,2,137,4,36,232,124,140,4,0,137,69,244,131,125,244,0,15,132,131,0,0,0,199,69,236,0,0,0,0,235,41,139,69,236,193,224,2,137,198,3,117,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,236,137,4,36,232,232,244,3,0,217, 30,255,69,236,139,69,236,59,69,16,124,207,199,68,36,20,0,0,0,0,139,69,244,137,68,36,16,139,69,16,137,68,36,12,141,131,113,46,7,0,139,0,137,68,36,8,139,69,240,137,68,36,4,139,69,8,137,4,36,232,203,251,255,255,139,69,16,193,224,2,137,68,36,4,139,69,244, 137,4,36,232,210,141,4,0,131,196,64,91,94,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,141,69,232,137,68,36,8,141,69,236,137,68,36,4,139,69,8,137,4,36,232,118,205,255,255,137,69,228,131,125,228,0,117,31,139,69,8,139,64,20,139,0,137,68,36,4,141, 131,117,187,6,0,137,4,36,232,139,110,5,0,233,82,1,0,0,141,131,109,45,7,0,243,15,16,0,15,46,69,12,115,2,235,11,141,131,113,45,7,0,139,0,137,69,12,199,69,240,0,0,0,0,141,131,133,45,7,0,242,15,16,0,242,15,17,69,216,235,121,139,69,228,139,64,8,137,193,139, 69,236,193,224,2,137,194,139,69,232,15,175,69,240,141,4,2,141,4,1,243,15,16,0,243,15,90,192,242,15,17,69,200,242,15,16,69,200,102,15,46,69,216,119,2,235,10,242,15,16,69,200,242,15,17,69,216,141,131,237,47,7,0,102,15,40,0,242,15,16,77,200,102,15,87,193, 102,15,46,69,216,119,2,235,24,141,131,237,47,7,0,102,15,40,0,242,15,16,77,200,102,15,87,193,242,15,17,69,216,255,69,240,139,69,228,139,0,59,69,240,15,143,121,255,255,255,141,131,133,45,7,0,242,15,16,8,242,15,16,69,216,102,15,46,193,119,2,235,116,243, 15,90,69,12,242,15,94,69,216,242,15,17,69,208,199,69,240,0,0,0,0,235,82,139,69,228,139,64,8,137,193,139,69,236,193,224,2,137,194,139,69,232,15,175,69,240,141,4,2,141,52,1,139,69,228,139,64,8,137,193,139,69,236,193,224,2,137,194,139,69,232,15,175,69,240, 141,4,2,141,4,1,243,15,16,0,243,15,90,192,242,15,89,69,208,242,15,90,192,243,15,17,6,255,69,240,139,69,228,139,0,59,69,240,127,164,139,69,8,137,4,36,232,95,247,255,255,131,196,64,91,94,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,141,69,236,137, 68,36,8,141,69,240,137,68,36,4,139,69,8,137,4,36,232,206,203,255,255,137,69,232,131,125,232,0,117,31,139,69,8,139,64,20,139,0,137,68,36,4,141,131,205,185,6,0,137,4,36,232,227,108,5,0,233,192,0,0,0,131,125,16,1,15,142,182,0,0,0,139,69,20,137,4,36,232, 10,241,3,0,217,93,212,243,15,44,69,212,137,69,228,255,77,16,131,69,20,8,131,125,228,0,121,28,139,69,228,1,69,16,139,69,228,193,224,3,41,69,20,199,69,228,0,0,0,0,131,125,16,0,126,119,139,69,228,139,85,16,1,194,139,69,232,139,0,57,194,126,17,139,69,232, 139,0,43,69,228,137,69,16,131,125,16,0,126,85,199,69,244,0,0,0,0,235,57,139,69,232,139,64,8,137,198,139,69,240,193,224,2,137,193,139,69,228,139,85,244,1,194,139,69,236,15,175,194,141,4,1,1,198,139,69,244,193,224,3,3,69,20,137,4,36,232,119,240,3,0,217, 30,255,69,244,139,69,244,59,69,16,124,191,139,69,8,137,4,36,232,73,246,255,255,131,196,64,91,94,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,243,15,90,69,24,242,15,17,69,216,243,15,90,69,20,242,15,17,69,224,243,15,90,69,16,242,15,17,69,232,243,15, 90,69,12,242,15,17,69,240,141,131,60,182,6,0,137,4,36,232,88,111,4,0,137,194,139,69,8,139,64,12,137,193,242,15,16,69,216,242,15,17,68,36,36,242,15,16,69,224,242,15,17,68,36,28,242,15,16,69,232,242,15,17,68,36,20,242,15,16,69,240,242,15,17,68,36,12,141, 131,67,182,6,0,137,68,36,8,137,84,36,4,137,12,36,232,250,123,4,0,131,196,84,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,243,15,90,69,20,242,15,17,69,224,243,15,90,69,16,242,15,17,69,232,243,15,90,69,12,242,15,17,69,240,141,131,71,204,6,0,137,4, 36,232,205,110,4,0,137,194,139,69,8,139,64,12,137,193,242,15,16,69,224,242,15,17,68,36,28,242,15,16,69,232,242,15,17,68,36,20,242,15,16,69,240,242,15,17,68,36,12,141,131,235,184,6,0,137,68,36,8,137,84,36,4,137,12,36,232,122,123,4,0,131,196,84,91,201, 195,85,137,229,83,131,236,84,232,0,0,0,0,91,243,15,90,69,20,242,15,17,69,224,243,15,90,69,16,242,15,17,69,232,243,15,90,69,12,242,15,17,69,240,141,131,111,184,6,0,137,4,36,232,77,110,4,0,137,194,139,69,8,139,64,12,137,193,242,15,16,69,224,242,15,17,68, 36,28,242,15,16,69,232,242,15,17,68,36,20,242,15,16,69,240,242,15,17,68,36,12,141,131,107,184,6,0,137,68,36,8,137,84,36,4,137,12,36,232,250,122,4,0,131,196,84,91,201,195,85,137,229,131,236,24,139,69,8,139,64,12,137,194,139,69,20,137,68,36,12,139,69,16, 137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,8,115,4,0,201,195,85,137,229,131,236,24,139,69,8,139,64,12,137,194,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,219,114,4,0,201,195,85,137,229,131,236,24,139,69,8,15, 182,64,26,132,192,116,11,139,69,8,137,4,36,232,43,217,255,255,139,69,8,139,64,20,139,85,8,137,68,36,4,137,20,36,232,18,167,4,0,139,85,8,139,69,12,137,66,16,139,69,8,139,80,16,139,69,8,137,80,20,139,69,8,139,64,20,139,85,8,137,68,36,4,137,20,36,232,8, 166,4,0,139,69,8,137,4,36,232,237,243,255,255,201,195,85,137,229,86,83,129,236,80,4,0,0,232,0,0,0,0,91,139,69,8,137,133,212,251,255,255,139,69,12,137,133,208,251,255,255,141,131,249,53,7,0,139,0,139,16,137,85,244,49,210,141,133,240,251,255,255,137,68, 36,8,141,133,244,251,255,255,137,68,36,4,139,133,212,251,255,255,137,4,36,232,52,200,255,255,137,133,236,251,255,255,131,189,236,251,255,255,0,117,34,139,133,212,251,255,255,139,64,20,139,0,137,68,36,4,141,131,93,182,6,0,137,4,36,232,64,105,5,0,233,214, 1,0,0,139,133,236,251,255,255,139,0,137,133,8,252,255,255,139,133,208,251,255,255,139,48,139,133,212,251,255,255,139,64,12,137,4,36,232,5,2,1,0,137,194,199,68,36,24,0,0,0,0,199,68,36,20,232,3,0,0,141,133,248,251,255,255,137,68,36,16,141,133,12,252,255, 255,137,68,36,12,141,131,161,178,6,0,137,68,36,8,137,116,36,4,137,20,36,232,177,105,0,0,137,133,4,252,255,255,131,189,4,252,255,255,0,120,39,141,131,49,183,6,0,137,68,36,4,139,133,4,252,255,255,137,4,36,232,254,45,7,0,137,133,252,251,255,255,131,189, 252,251,255,255,0,117,31,139,133,208,251,255,255,139,0,137,68,36,4,141,131,51,183,6,0,137,4,36,232,136,104,5,0,233,30,1,0,0,199,133,0,252,255,255,0,0,0,0,233,152,0,0,0,141,133,224,251,255,255,137,68,36,8,141,131,66,183,6,0,137,68,36,4,139,133,252,251, 255,255,137,4,36,232,213,45,7,0,133,192,117,51,139,133,208,251,255,255,139,16,139,133,8,252,255,255,137,68,36,12,139,133,0,252,255,255,137,68,36,8,137,84,36,4,141,131,73,183,6,0,137,4,36,232,103,101,5,0,233,140,0,0,0,139,133,236,251,255,255,139,64,8, 137,193,139,133,244,251,255,255,193,224,2,137,194,139,133,240,251,255,255,15,175,133,0,252,255,255,141,4,2,141,4,1,242,15,16,133,224,251,255,255,242,15,90,192,243,15,17,0,255,133,0,252,255,255,139,133,0,252,255,255,59,133,8,252,255,255,15,140,86,255, 255,255,235,57,139,133,236,251,255,255,139,64,8,137,193,139,133,244,251,255,255,193,224,2,137,194,139,133,240,251,255,255,15,175,133,0,252,255,255,141,4,2,141,20,1,141,131,85,40,7,0,139,0,137,2,255,133,0,252,255,255,139,133,0,252,255,255,59,133,8,252, 255,255,124,185,139,133,252,251,255,255,137,4,36,232,186,44,7,0,139,133,212,251,255,255,137,4,36,232,144,241,255,255,141,131,249,53,7,0,139,0,139,85,244,51,16,116,5,232,240,43,7,0,129,196,80,4,0,0,91,94,201,195,85,137,229,86,83,129,236,32,4,0,0,232,0, 0,0,0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,141,131,128,51,7,0,139,0,139,16,137,85,244,49,210,141,133,0,252,255,255,137,68,36,8,141,133,4,252,255,255,137,68,36,4,139,133,244,251,255,255,137,4,36,232,187,197,255,255,137, 133,248,251,255,255,131,189,248,251,255,255,0,117,34,139,133,244,251,255,255,139,64,20,139,0,137,68,36,4,141,131,228,179,6,0,137,4,36,232,199,102,5,0,233,40,1,0,0,139,133,240,251,255,255,139,48,139,133,244,251,255,255,139,64,12,137,4,36,232,154,255,0, 0,137,194,199,68,36,12,232,3,0,0,141,133,12,252,255,255,137,68,36,8,137,116,36,4,137,20,36,232,173,47,0,0,141,133,12,252,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,168,65,5,0,141,131,10,224,6,0,137,68,36,4,141,133,12,252,255,255,137,4,36, 232,178,43,7,0,137,133,8,252,255,255,131,189,8,252,255,255,0,117,29,141,133,12,252,255,255,137,68,36,4,141,131,253,180,6,0,137,4,36,232,50,102,5,0,233,147,0,0,0,199,133,252,251,255,255,0,0,0,0,235,105,139,133,248,251,255,255,139,80,8,139,133,252,251, 255,255,193,224,2,1,194,139,133,4,252,255,255,141,4,2,243,15,16,0,243,15,90,192,242,15,17,68,36,8,141,131,14,181,6,0,137,68,36,4,139,133,8,252,255,255,137,4,36,232,67,43,7,0,133,192,127,28,139,133,240,251,255,255,139,0,137,68,36,4,141,131,18,181,6,0, 137,4,36,232,7,99,5,0,235,22,255,133,252,251,255,255,139,133,248,251,255,255,139,0,59,133,252,251,255,255,127,135,139,133,8,252,255,255,137,4,36,232,225,42,7,0,141,131,128,51,7,0,139,0,139,85,244,51,16,116,5,232,37,42,7,0,129,196,32,4,0,0,91,94,201,195, 85,137,229,131,236,24,102,199,69,244,1,0,141,69,244,15,182,0,136,69,247,128,125,247,0,15,148,192,15,182,192,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,139,69,8,137,4,36,232,29,195,255,255,137,69,228,139,69,8,139,64,12,137,69,224,131,125,12, 0,127,7,199,69,12,1,0,0,0,139,69,8,139,64,8,141,120,12,141,131,223,175,6,0,137,4,36,232,149,104,4,0,137,198,139,69,8,139,64,8,139,64,8,137,4,36,232,167,100,2,0,199,68,36,12,1,0,0,0,137,124,36,8,137,116,36,4,137,4,36,232,34,88,2,0,217,93,212,243,15,44, 69,212,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,67,196,255,255,139,69,8,139,80,12,139,69,12,137,68,36,8,137,84,36,4,139,69,228,137,4,36,232,176,190,255,255,139,69,8,15,182,64,24,132,192,116,5,232,246,92,0,0,131,196,60,91,94,95,201,195, 85,137,229,131,236,24,243,15,16,69,12,243,15,44,192,137,68,36,4,139,69,8,137,4,36,232,27,255,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,4,36,232,56,194,255,255,137,69,244,139,69,244,139,8,139,69,244,139,64,12,139,16,139,69,8, 139,64,20,139,0,137,76,36,12,137,84,36,8,137,68,36,4,141,131,85,178,6,0,137,4,36,232,113,97,5,0,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,106,211,255,255,141,131,240,196,6,0,137,4,36,232,134,103,4,0,199,68,36,20,0,0,0,0, 199,68,36,16,2,0,0,0,199,68,36,12,28,0,0,0,137,116,36,8,199,68,36,4,0,0,0,0,137,4,36,232,62,92,4,0,137,194,141,131,232,47,7,0,139,0,137,16,141,131,232,47,7,0,139,0,139,16,141,131,88,53,7,0,137,68,36,4,137,20,36,232,19,100,4,0,141,131,38,178,6,0,137,4, 36,232,36,103,4,0,137,194,141,139,93,240,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,221,95,4,0,141,147,234,246,255,255,141,131,232,47,7,0,139,0,139,0,137,84,36,4,137,4,36,232, 149,99,4,0,141,131,72,174,6,0,137,4,36,232,200,102,4,0,137,194,141,139,0,248,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,28,0,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4, 36,232,105,95,4,0,141,131,232,196,6,0,137,4,36,232,112,102,4,0,137,194,141,139,149,248,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,24,0,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,25, 95,4,0,141,131,44,178,6,0,137,4,36,232,32,102,4,0,137,194,141,139,149,249,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,217,94,4,0,141,131,144,177,6,0,137,4,36,232,224,101,4,0,137, 194,141,139,21,249,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,24,0,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,137,94,4,0,141,131,51,178,6,0,137,4,36,232,144,101,4,0,137,194,141,139, 194,249,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,73,94,4,0,141,131,58,178,6,0,137,4,36,232,80,101,4,0,137,194,141,139,239,249,255,255,141,131,232,47,7,0,139,0,139,0,199,68, 36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,9,94,4,0,141,131,234,33,7,0,137,4,36,232,16,101,4,0,137,194,141,139,87,250,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36, 4,137,4,36,232,201,93,4,0,141,131,118,167,6,0,137,4,36,232,208,100,4,0,137,194,141,139,208,252,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,137,93,4,0,141,131,68,178,6,0,137,4,36, 232,144,100,4,0,137,194,141,139,131,255,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,73,93,4,0,141,131,238,193,6,0,137,4,36,232,80,100,4,0,137,194,141,139,163,255,255,255,141,131, 232,47,7,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,17,93,4,0,141,131,77,178,6,0,137,4,36,232,24,100,4,0,137,194,141,139,58,243,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8, 137,76,36,4,137,4,36,232,209,92,4,0,141,131,85,178,6,0,137,4,36,232,216,99,4,0,137,194,141,139,62,244,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,145,92,4,0,141,131,194,163,6, 0,137,4,36,232,152,99,4,0,137,194,141,139,66,245,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,81,92,4,0,141,131,56,194,6,0,137,4,36,232,88,99,4,0,137,194,141,139,163,203,255,255, 141,131,232,47,7,0,139,0,139,0,199,68,36,28,0,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,249,91,4,0,141,131,97,178,6,0,137,4,36,232,0,99,4,0,137,194,141,139,156,206,255, 255,141,131,232,47,7,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,193,91,4,0,141,131,114,178,6,0,137,4,36,232,200,98,4,0,137,194,141,139,77,208,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,6,0,0, 0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,121,91,4,0,141,131,136,178,6,0,137,4,36,232,128,98,4,0,137,194,141,139,54,211,255,255,141,131,232,47,7,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,65,91,4,0,141,131, 232,47,7,0,139,0,139,16,141,131,50,235,255,255,137,68,36,4,137,20,36,232,160,96,4,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,61,68,0,0,133,192,116,84,139,69,8,139,128,84,4,0,0,133,192,116,14,139,69,8,139, 128,40,4,0,0,137,69,244,235,12,139,69,8,139,128,44,4,0,0,137,69,244,139,69,12,137,4,36,232,82,247,0,0,137,194,139,69,244,137,68,36,12,139,69,8,137,68,36,8,137,84,36,4,141,131,36,173,6,0,137,4,36,232,221,247,4,0,131,196,36,91,201,195,85,137,229,87,86, 83,131,236,108,232,0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20,36,232,213,10,1,0,137,69,228,139,85,8,139,69,12,137,68,36,4,137,20,36,232,197,11,1,0,137,69,224,139,69,12,137,4,36,232,230,246,0,0,137,69,220,139,69,8,139,136,44,4,0,0,139,69,8,139,64, 36,137,198,3,117,224,139,69,8,139,64,40,137,194,3,85,228,139,69,8,137,68,36,28,137,76,36,24,137,116,36,20,137,84,36,16,139,69,224,137,68,36,12,139,69,228,137,68,36,8,139,69,220,137,68,36,4,141,131,216,172,6,0,137,4,36,232,59,247,4,0,139,69,8,139,128, 84,4,0,0,133,192,116,14,139,69,8,139,128,40,4,0,0,137,69,196,235,12,139,69,8,139,128,44,4,0,0,137,69,196,139,69,8,139,64,36,3,69,224,141,80,255,139,69,8,139,64,40,3,69,228,141,72,255,139,117,224,70,139,125,228,71,139,69,8,137,68,36,28,139,69,196,137, 68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,137,124,36,8,139,69,220,137,68,36,4,141,131,28,173,6,0,137,4,36,232,193,246,4,0,139,69,8,139,128,48,4,0,0,137,69,200,139,69,8,139,128,32,4,0,0,137,69,204,139,69,8,131,192,52,137,69,208,139,69,8,139,128, 60,4,0,0,139,16,141,131,248,197,6,0,137,68,36,4,137,20,36,232,172,35,7,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,212,235,9,141,131,28,167,6,0,137,69,212,139,69,8,139,64,48,137,194,3,85,224,139,69,8,139,64,44,137,193,3,77,228,139,69,8,137, 68,36,36,139,69,200,137,68,36,32,141,131,136,42,7,0,139,0,137,68,36,28,139,69,204,137,68,36,24,139,69,208,137,68,36,20,139,69,212,137,68,36,16,137,84,36,12,137,76,36,8,139,69,220,137,68,36,4,141,131,88,173,6,0,137,4,36,232,4,246,4,0,139,69,8,139,128, 28,4,0,0,37,128,0,0,0,133,192,117,84,139,69,8,139,64,36,137,194,3,85,224,139,77,228,131,193,7,139,69,8,139,64,36,3,69,224,141,112,255,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,139,69,228,137,68,36,8,139,69,220, 137,68,36,4,141,131,216,173,6,0,137,4,36,232,158,245,4,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,85,224,66,139,77,228,131,193,7,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,224,137,68,36,12,139,69,228,137, 68,36,8,139,69,220,137,68,36,4,141,131,28,174,6,0,137,4,36,232,74,245,4,0,131,196,108,91,94,95,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20,36,232,65,8,1,0,137,69,244,139,85,8,139,69,12,137,68,36,4,137,20,36, 232,49,9,1,0,137,69,240,139,69,12,137,4,36,232,82,244,0,0,137,69,236,139,69,8,139,64,36,137,194,3,85,240,139,69,8,139,64,40,3,69,244,137,84,36,24,137,68,36,20,139,69,240,137,68,36,16,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,236,137,68,36,4, 141,131,204,171,6,0,137,4,36,232,182,244,4,0,139,69,8,139,64,36,3,69,240,141,112,255,139,69,8,139,64,40,3,69,244,72,139,85,240,66,139,77,244,65,137,116,36,24,137,68,36,20,137,84,36,16,137,76,36,12,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,240, 171,6,0,137,4,36,232,108,244,4,0,139,69,8,139,128,84,4,0,0,133,192,116,14,139,69,8,139,128,40,4,0,0,137,69,228,235,12,139,69,8,139,128,44,4,0,0,137,69,228,139,69,228,137,68,36,12,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,24,170,6,0,137,4,36, 232,34,244,4,0,139,69,8,139,64,48,137,194,3,85,240,139,69,8,139,64,44,3,69,244,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,228,164,6,0,137,4,36,232,234,243,4,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,82,139, 69,8,139,64,36,137,194,3,85,240,139,77,244,131,193,7,139,69,8,139,64,36,3,69,240,72,137,84,36,28,137,76,36,24,137,68,36,20,139,69,244,137,68,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,20,172,6,0,137,4,36,232,134,243, 4,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,69,240,64,139,85,244,131,194,7,137,68,36,28,137,84,36,24,139,69,240,137,68,36,20,139,69,244,137,68,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,60,172,6,0,137, 4,36,232,50,243,4,0,131,196,64,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,102,242,0,0,137,69,244,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,74,170,6,0,137,4,36,232,244,242,4,0,139,69,8,137,68,36,8,139,69,244, 137,68,36,4,141,131,98,170,6,0,137,4,36,232,216,242,4,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,166,190,6,0,137,4,36,232,188,242,4,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244, 137,68,36,4,141,131,122,170,6,0,137,4,36,232,134,242,4,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,192,190,6,0,137,4,36,232,82,242,4,0,131,196,36,91,201,195,85,137,229, 83,131,236,68,232,0,0,0,0,91,139,69,12,137,4,36,232,135,241,0,0,137,69,244,139,69,8,139,128,60,4,0,0,139,16,141,131,111,192,6,0,137,68,36,4,137,20,36,232,61,31,7,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,220,235,9,141,131,147,161,6,0,137, 69,220,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,8,139,128,48,4,0,0,137,69,224,235,7,199,69,224,255,0,0,0,139,69,8,139,144,32,4,0,0,139,77,8,131,193,52,139,69,220,137,68,36,28,139,69,224,137,68,36,24,141,131,255,36,7,0,139,0,137,68,36, 20,137,84,36,16,137,76,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,183,169,6,0,137,4,36,232,131,241,4,0,139,69,8,139,128,44,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,7,170,6,0,137,4,36,232,90,241,4,0,139,69, 8,139,128,84,4,0,0,133,192,116,14,139,69,8,139,128,40,4,0,0,137,69,228,235,12,139,69,8,139,128,44,4,0,0,137,69,228,139,69,228,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,35,167,6,0,137,4,36,232,16,241,4,0,131,196,68,91,201,195,85, 137,229,86,83,131,236,48,232,0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20,36,232,9,4,1,0,137,69,244,139,85,8,139,69,12,137,68,36,4,137,20,36,232,249,4,1,0,137,69,240,139,69,12,137,4,36,232,26,240,0,0,137,69,236,139,69,16,131,224,1,132,192,116,102, 139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,84,139,69,8,139,64,36,137,194,3,85,240,139,77,244,131,193,7,139,69,8,139,64,36,3,69,240,141,112,255,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,139,69,244,137,68, 36,8,139,69,236,137,68,36,4,141,131,240,168,6,0,137,4,36,232,84,240,4,0,139,69,16,131,224,1,133,192,117,54,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,88,168,6,0,137,4, 36,232,20,240,4,0,139,69,16,131,224,2,133,192,116,84,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,85,240,66,139,77,244,131,193,7,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,240,137,68,36,12,139,69,244,137,68, 36,8,139,69,236,137,68,36,4,141,131,40,169,6,0,137,4,36,232,182,239,4,0,139,69,16,131,224,2,133,192,117,52,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,158,188,6,0,137,4, 36,232,120,239,4,0,131,196,48,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,172,238,0,0,137,69,244,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,116,110,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4, 141,131,196,167,6,0,137,4,36,232,32,239,4,0,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,244,167,6,0,137,4,36,232,252,238,4,0,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,36,168,6,0,137,4,36, 232,216,238,4,0,235,113,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,196,167,6,0,137,4,36,232,178,238,4,0,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,244,167,6,0,137,4,36,232,142,238,4,0,139,69, 8,139,128,48,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,36,168,6,0,137,4,36,232,101,238,4,0,131,196,36,91,201,195,85,137,229,131,236,24,131,125,16,0,117,23,139,69,12,137,68,36,4,139,69,8,137,4,36,232,244,245,255,255,233,167, 0,0,0,131,125,16,1,117,23,139,69,12,137,68,36,4,139,69,8,137,4,36,232,226,248,255,255,233,138,0,0,0,131,125,16,2,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,48,246,255,255,235,112,131,125,16,3,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232, 124,254,255,255,235,86,131,125,16,4,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,168,250,255,255,235,60,131,125,16,5,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,109,251,255,255,235,34,131,125,16,5,126,28,139,69,16,131,232,6,137,68,36,8,139, 69,12,137,68,36,4,139,69,8,137,4,36,232,139,252,255,255,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,85,244,139,69,12,137,68,36,4,137,20,36,232,148,0,1,0,137,194,139,69,16,137,16,139,85,244,139,69,12,137,68,36,4,137,20,36,232,128,1,1,0,137,194, 139,69,20,137,16,139,69,16,139,16,139,69,244,139,64,40,1,194,139,69,24,137,16,139,69,20,139,16,139,69,244,139,64,36,1,194,139,69,28,137,16,201,195,85,137,229,87,86,83,129,236,204,0,0,0,232,0,0,0,0,91,139,69,8,137,69,228,139,85,228,141,69,216,137,68,36, 8,141,69,204,137,68,36,4,137,20,36,232,116,160,255,255,139,117,224,139,125,220,139,69,216,137,69,136,139,69,228,139,128,32,4,0,0,137,69,140,139,69,228,5,28,4,0,0,137,4,36,232,207,170,255,255,137,69,144,139,69,228,139,64,48,137,69,148,139,69,228,139,64, 44,137,69,152,139,85,212,137,85,156,139,69,208,137,69,160,139,85,204,137,85,164,139,69,228,5,36,4,0,0,137,4,36,232,145,169,255,255,137,69,168,139,69,228,139,128,88,4,0,0,137,69,172,139,69,228,139,128,92,4,0,0,137,69,176,139,69,228,139,64,40,137,69,180, 141,131,63,170,6,0,137,4,36,232,83,86,4,0,137,69,184,139,69,228,15,183,64,22,152,137,69,188,139,69,228,15,183,64,20,152,137,69,192,141,131,69,182,6,0,137,4,36,232,44,86,4,0,137,69,196,141,131,201,167,6,0,137,4,36,232,27,86,4,0,137,116,36,80,137,124,36, 76,139,85,136,137,84,36,72,139,85,140,137,84,36,68,139,85,144,137,84,36,64,139,85,148,137,84,36,60,139,85,152,137,84,36,56,139,85,156,137,84,36,52,139,85,160,137,84,36,48,139,85,164,137,84,36,44,139,85,168,137,84,36,40,139,85,172,137,84,36,36,139,85, 176,137,84,36,32,139,85,180,137,84,36,28,139,85,184,137,84,36,24,139,85,188,137,84,36,20,139,85,192,137,84,36,16,139,85,196,137,84,36,12,137,68,36,8,141,131,13,166,6,0,137,68,36,4,139,69,12,137,4,36,232,45,235,3,0,141,131,33,166,6,0,137,68,36,4,139,69, 12,137,4,36,232,24,235,3,0,129,196,204,0,0,0,91,94,95,201,195,85,137,229,131,236,24,139,69,12,59,69,16,126,18,139,69,12,137,69,244,139,69,16,137,69,12,139,69,244,137,69,16,131,125,12,9,127,7,199,69,12,10,0,0,0,131,125,16,49,127,7,199,69,16,50,0,0,0,139, 85,8,139,69,12,137,130,88,4,0,0,139,85,8,139,69,16,137,130,92,4,0,0,201,195,85,137,229,87,86,83,129,236,220,3,0,0,232,0,0,0,0,91,139,69,8,137,133,164,252,255,255,139,69,12,137,133,160,252,255,255,141,131,202,29,7,0,139,0,139,16,137,85,228,49,210,139, 133,164,252,255,255,137,133,192,252,255,255,139,149,192,252,255,255,141,133,180,252,255,255,137,68,36,4,137,20,36,232,171,158,255,255,139,133,192,252,255,255,139,128,48,4,0,0,137,194,129,226,255,255,255,0,139,133,192,252,255,255,139,128,40,4,0,0,137, 193,129,225,255,255,255,0,139,133,192,252,255,255,139,128,44,4,0,0,137,198,129,230,255,255,255,0,139,133,192,252,255,255,139,184,32,4,0,0,139,133,192,252,255,255,139,128,28,4,0,0,131,224,63,15,182,192,137,133,124,252,255,255,139,133,192,252,255,255,139, 64,48,137,133,128,252,255,255,139,133,192,252,255,255,139,64,44,137,133,132,252,255,255,139,133,188,252,255,255,139,0,137,133,136,252,255,255,139,133,184,252,255,255,139,0,137,133,140,252,255,255,139,133,180,252,255,255,139,0,137,133,144,252,255,255, 139,133,192,252,255,255,139,128,36,4,0,0,131,224,1,15,182,192,137,133,148,252,255,255,139,133,192,252,255,255,139,128,92,4,0,0,137,133,152,252,255,255,139,133,192,252,255,255,139,128,88,4,0,0,137,133,156,252,255,255,139,133,192,252,255,255,139,64,40, 137,84,36,88,137,76,36,84,137,116,36,80,137,124,36,76,139,149,124,252,255,255,137,84,36,72,139,149,128,252,255,255,137,84,36,68,139,149,132,252,255,255,137,84,36,64,139,149,136,252,255,255,137,84,36,60,139,149,140,252,255,255,137,84,36,56,139,149,144, 252,255,255,137,84,36,52,199,68,36,48,255,255,255,255,199,68,36,44,255,255,255,255,139,149,148,252,255,255,137,84,36,40,199,68,36,36,255,255,255,255,199,68,36,32,2,0,0,0,139,149,152,252,255,255,137,84,36,28,139,149,156,252,255,255,137,84,36,24,199,68, 36,20,8,0,0,0,137,68,36,16,141,131,38,164,6,0,137,68,36,12,199,68,36,8,32,3,0,0,199,68,36,4,0,0,0,0,141,133,196,252,255,255,137,4,36,232,41,20,7,0,139,149,192,252,255,255,141,133,196,252,255,255,137,68,36,8,139,133,192,252,255,255,137,68,36,4,137,20, 36,232,92,205,5,0,141,131,202,29,7,0,139,0,139,85,228,51,16,116,5,232,249,19,7,0,129,196,220,3,0,0,91,94,95,201,195,85,137,229,131,236,24,139,69,8,139,128,84,4,0,0,133,192,116,96,139,69,8,199,128,84,4,0,0,0,0,0,0,139,69,8,139,80,32,139,69,8,139,64,28, 199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,128,88,4,0,0,242,15,42,192,139,69,8,139,128,100,4,0,0,242,15,17,68,36,4,137,4,36,232,145,146,4,0,139,69,8,199,128,84,4,0,0,1,0,0,0,235,45,139,69,8,199,128,84,4,0,0,1,0,0,0,139,69, 8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,128,92,4,0,0,242,15,42,192,139,69,8,139,128,96,4,0,0,242,15,17,68,36,4,137,4,36,232,49,146,4,0,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69, 8,139,128,28,4,0,0,37,0,0,0,4,133,192,117,53,139,85,8,139,130,36,4,0,0,13,0,0,0,8,137,130,36,4,0,0,139,69,8,139,144,104,4,0,0,141,131,178,15,7,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,219,145,4,0,139,69,8,139,64,12,137,4,36,232,82,122,4,0,139,69, 8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,54,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,38,139,69,8,139,128,28,4,0,0,37,0,0,0,4,133,192,116,20,139,69,8,139,128,52,4,0,0,139,64,4,137,4,36,232,190,142,4,0,131,196,20,91,201,195,85,137,229,83,131,236, 20,232,0,0,0,0,91,139,69,8,139,128,28,4,0,0,37,0,0,0,4,133,192,117,53,139,85,8,139,130,36,4,0,0,13,0,0,0,8,137,130,36,4,0,0,139,69,8,139,144,104,4,0,0,141,131,2,15,7,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,43,145,4,0,139,69,8,139,64,12,137,4,36, 232,162,121,4,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,36,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,20,139,69,8,139,128,52,4,0,0,139,64,4,137,4,36,232,32,142,4,0,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,139,128,36,4,0,0,37, 0,0,0,8,133,192,117,22,139,69,8,137,4,36,232,201,253,255,255,139,69,8,137,4,36,232,132,254,255,255,201,195,85,137,229,131,236,24,139,69,8,139,128,36,4,0,0,37,0,0,0,8,133,192,117,22,139,69,8,137,4,36,232,153,253,255,255,139,69,8,137,4,36,232,4,255,255, 255,201,195,85,137,229,131,236,56,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,204,210,3,0,137,69,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,175,210,3,0,137,69,240,139,69,20,137,68,36,8,139,69,16,137,68,36, 4,199,4,36,3,0,0,0,232,146,210,3,0,137,69,236,139,85,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,69,220,137,68,36,4,137,20,36,232,35,154,255,255,137,69,232,139,69,244,137,4,36,232,249,132,255,255,137,194,139,69,8,137,80,40,139,69,8,139,80,40,139, 69,8,137,80,36,139,69,240,137,68,36,8,139,69,236,137,68,36,4,139,69,8,137,4,36,232,61,250,255,255,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,5,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,72,32,139,85,232,131,194,6,139,69,8,139,64, 28,137,84,36,8,137,68,36,4,139,69,8,137,4,36,255,209,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,8,139,64,28,137,84,36,4,137,4,36,232,106,52,0,0,201,195,85,137,229,131,236,24,139,69, 8,137,4,36,232,74,252,255,255,139,69,8,137,4,36,232,181,253,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,131,125,36,0,116,67,243,15,42,69,28,243,15,42,77,24,243,15,42,85,20,243,15,42,93,16,139,85,8,243,15,17,68,36,20,141,131,37,10,7,0,139, 0,137,68,36,16,243,15,17,76,36,12,243,15,17,84,36,8,243,15,17,92,36,4,137,20,36,232,140,255,255,255,184,1,0,0,0,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,15,254,255,255,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,252,253, 255,255,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,233,253,255,255,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,214,253,255,255,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,195,253,255,255,201,195,85,137,229,83,131,236,20,232,0, 0,0,0,91,141,131,57,23,7,0,139,0,139,0,133,192,117,38,139,69,8,139,128,36,4,0,0,131,224,1,133,192,116,22,139,69,8,137,4,36,232,71,251,255,255,139,69,8,137,4,36,232,178,252,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,20,137,68,36,8,139, 69,16,137,68,36,4,199,4,36,0,0,0,0,232,118,208,3,0,137,4,36,232,6,131,255,255,137,194,139,69,8,137,80,40,139,69,8,139,80,40,139,69,8,137,80,36,139,69,8,137,68,36,4,139,69,8,137,4,36,232,139,147,255,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20, 137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,171,147,255,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,46, 148,255,255,201,195,85,137,229,86,131,236,20,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,199,207,3,0,137,198,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,171,207,3,0,137,116,36,8,137,68,36,4,139,69,8,137,4,36, 232,161,247,255,255,131,196,20,94,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,62,148,255,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8, 137,68,36,4,139,69,8,137,4,36,232,36,140,255,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,254,140,255,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36, 232,127,142,255,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,59,143,255,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137, 68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,234,143,255,255,201,195,85,137,229,83,131,236,4,232,0,0,0,0,91,141,131,42,7,7,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,139,77,8,15,182,192,137,194,131,226,1,139,129,36,4,0, 0,131,224,254,9,208,137,129,36,4,0,0,131,196,4,91,201,195,85,137,229,131,236,24,139,69,8,199,128,84,4,0,0,0,0,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,131,236,24,139,69,8,139, 80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,131,236,8,139,69,8,139,144,36,4,0,0,129,226,255,255,255,247,137,144,36,4,0,0,201,195,85,137,229,83,129,236,228,0,0,0,232,0,0,0,0,91,139,69,8,137,133, 52,255,255,255,139,69,16,137,133,48,255,255,255,141,131,12,20,7,0,139,0,139,16,137,85,244,49,210,141,131,136,61,7,0,139,0,137,4,36,232,75,128,4,0,137,133,96,255,255,255,199,133,60,255,255,255,0,0,252,255,199,133,64,255,255,255,255,255,255,255,199,133, 68,255,255,255,255,255,255,255,199,133,92,255,255,255,15,0,0,0,199,133,88,255,255,255,17,0,0,0,199,133,84,255,255,255,7,0,0,0,199,133,80,255,255,255,10,0,0,0,199,133,76,255,255,255,50,0,0,0,199,133,72,255,255,255,250,0,0,0,139,133,96,255,255,255,5,36, 4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,189,156,255,255,139,133,96,255,255,255,5,28,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,185,157,255,255,131,125,12,14,15,133,12,3,0,0,139,133,48,255,255,255,139,0,131,248,1,15,133,251,2,0,0,139,133,48,255,255,255,131, 192,8,139,0,131,248,1,15,133,231,2,0,0,139,133,48,255,255,255,131,192,16,139,0,131,248,1,15,133,211,2,0,0,139,133,48,255,255,255,131,192,24,139,0,131,248,1,15,133,191,2,0,0,139,133,48,255,255,255,131,192,32,139,0,131,248,2,116,20,139,133,48,255,255,255, 131,192,32,139,0,131,248,1,15,133,155,2,0,0,139,133,48,255,255,255,131,192,40,139,0,131,248,2,116,20,139,133,48,255,255,255,131,192,40,139,0,131,248,1,15,133,119,2,0,0,139,133,48,255,255,255,131,192,48,139,0,131,248,2,116,20,139,133,48,255,255,255,131, 192,48,139,0,131,248,1,15,133,83,2,0,0,139,133,48,255,255,255,131,192,56,139,0,131,248,1,15,133,63,2,0,0,139,133,48,255,255,255,131,192,64,139,0,131,248,1,15,133,43,2,0,0,139,133,48,255,255,255,131,192,72,139,0,131,248,1,15,133,23,2,0,0,139,133,48,255, 255,255,131,192,80,139,0,131,248,1,15,133,3,2,0,0,139,133,48,255,255,255,131,192,88,139,0,131,248,1,15,133,239,1,0,0,139,133,48,255,255,255,131,192,96,139,0,131,248,1,15,133,219,1,0,0,139,133,48,255,255,255,131,192,104,139,0,131,248,1,15,133,199,1,0, 0,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,160,203,3,0,137,133,92,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,1,0,0,0,232,125,203,3,0,137,133,72,255,255,255,139,133,48,255,255,255, 137,68,36,8,139,69,12,137,68,36,4,199,4,36,2,0,0,0,232,90,203,3,0,137,133,76,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,3,0,0,0,232,55,203,3,0,139,149,96,255,255,255,129,194,36,4,0,0,137,68,36,4,137,20,36,232,181,154, 255,255,139,149,96,255,255,255,139,133,48,255,255,255,137,68,36,8,199,68,36,4,4,0,0,0,137,20,36,232,21,129,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,7,0,0,0,232,226,202,3,0,137,133,88,255,255,255,139,133,48,255,255,255, 137,68,36,8,139,69,12,137,68,36,4,199,4,36,8,0,0,0,232,191,202,3,0,137,133,84,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,9,0,0,0,232,156,202,3,0,139,149,96,255,255,255,129,194,28,4,0,0,137,68,36,4,137,20,36,232,49,155, 255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,10,0,0,0,232,103,202,3,0,137,133,80,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,11,0,0,0,232,68,202,3,0,137,133,60,255,255,255,139,133,48,255, 255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,12,0,0,0,232,33,202,3,0,137,133,64,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,13,0,0,0,232,254,201,3,0,137,133,68,255,255,255,235,30,139,133,96,255,255,255,199,68,36, 8,0,0,0,0,199,68,36,4,4,0,0,0,137,4,36,232,238,127,255,255,141,147,2,243,255,255,139,133,96,255,255,255,137,80,32,139,149,96,255,255,255,139,130,28,4,0,0,12,128,137,130,28,4,0,0,139,149,96,255,255,255,139,130,28,4,0,0,131,200,64,137,130,28,4,0,0,139, 133,96,255,255,255,199,128,84,4,0,0,0,0,0,0,232,183,10,0,0,137,194,139,133,96,255,255,255,137,80,28,139,133,96,255,255,255,139,128,52,4,0,0,139,16,141,131,144,175,6,0,137,68,36,4,137,20,36,232,22,10,7,0,133,192,117,21,139,133,96,255,255,255,139,144,28, 4,0,0,128,226,127,137,144,28,4,0,0,139,133,96,255,255,255,139,128,56,4,0,0,139,16,141,131,144,175,6,0,137,68,36,4,137,20,36,232,221,9,7,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,131,226,191,137,144,28,4,0,0,139,133,96,255,255,255,139,128, 28,4,0,0,131,224,63,131,248,1,117,83,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,144,155,6,0,137,68,36,4,137,20,36,232,102,7,7,0,233,232,0,0,0,139,149,96,255,255,255,131,194,52,141, 131,144,155,6,0,137,68,36,4,137,20,36,232,122,2,0,0,233,200,0,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,2,117,80,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,208, 217,6,0,137,68,36,4,137,20,36,232,255,6,7,0,233,129,0,0,0,139,149,96,255,255,255,131,194,52,141,131,208,217,6,0,137,68,36,4,137,20,36,232,19,2,0,0,235,100,139,149,96,255,255,255,139,130,28,4,0,0,131,224,192,137,130,28,4,0,0,184,255,255,255,255,131,248, 255,116,40,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,28,20,7,0,139,0,137,68,36,4,137,20,36,232,152,6,7,0,235,29,139,133,96,255,255,255,131,192,52,141,147,28,20,7,0,139,18,137,84,36,4,137,4,36,232,173,1,0,0,139,133,96,255, 255,255,139,128,28,4,0,0,131,224,64,133,192,116,30,139,133,96,255,255,255,139,128,56,4,0,0,139,149,96,255,255,255,137,68,36,4,137,20,36,232,216,125,4,0,139,149,96,255,255,255,139,133,88,255,255,255,137,66,44,139,149,96,255,255,255,139,133,84,255,255, 255,137,66,48,131,189,80,255,255,255,3,127,10,199,133,80,255,255,255,4,0,0,0,139,149,96,255,255,255,139,133,80,255,255,255,137,130,32,4,0,0,139,133,92,255,255,255,137,4,36,232,245,121,255,255,137,194,139,133,96,255,255,255,137,80,40,139,133,96,255,255, 255,139,80,40,139,133,96,255,255,255,137,80,36,139,133,72,255,255,255,137,68,36,8,139,133,76,255,255,255,137,68,36,4,139,133,96,255,255,255,137,4,36,232,39,239,255,255,139,149,96,255,255,255,141,133,60,255,255,255,137,68,36,4,137,20,36,232,78,129,255, 255,139,149,96,255,255,255,139,130,36,4,0,0,37,255,255,255,247,137,130,36,4,0,0,139,133,96,255,255,255,137,4,36,232,144,123,255,255,141,131,119,255,255,255,137,68,36,4,139,133,96,255,255,255,137,4,36,232,132,130,4,0,137,194,139,133,96,255,255,255,137, 144,96,4,0,0,141,131,172,255,255,255,137,68,36,4,139,133,96,255,255,255,137,4,36,232,94,130,4,0,137,194,139,133,96,255,255,255,137,144,100,4,0,0,141,131,212,255,255,255,137,68,36,4,139,133,96,255,255,255,137,4,36,232,56,130,4,0,137,194,139,133,96,255, 255,255,137,144,104,4,0,0,139,149,96,255,255,255,141,131,152,19,7,0,139,0,137,68,36,4,137,20,36,232,204,107,4,0,139,133,96,255,255,255,141,147,12,20,7,0,139,18,139,77,244,51,10,116,5,232,201,4,7,0,129,196,228,0,0,0,91,201,195,85,137,229,131,236,24,184, 255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,171,4,7,0,201,195,85,137,229,131,236,24,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116,24,139,69,8,139,128,56,4,0,0,139,85,8,137,68,36,4,137,20,36,232,235,124,4,0,139,69,8,139, 128,104,4,0,0,137,4,36,232,142,132,4,0,139,69,8,139,128,100,4,0,0,137,4,36,232,125,132,4,0,139,69,8,139,128,96,4,0,0,137,4,36,232,108,132,4,0,139,69,8,137,4,36,232,94,192,5,0,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,141,179,132,255,255,255, 141,187,176,247,255,255,141,131,65,150,6,0,137,4,36,232,235,66,4,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,108,4,0,0,137,116,36,8,137,124,36,4,137,4,36,232,159,55,4,0,137,194,141,131,71,53,7,0,137,16,141,147,71,242, 255,255,141,131,71,53,7,0,139,0,137,84,36,4,137,4,36,232,18,63,4,0,141,147,87,244,255,255,141,131,71,53,7,0,139,0,137,84,36,4,137,4,36,232,26,63,4,0,141,147,106,244,255,255,141,131,71,53,7,0,139,0,137,84,36,4,137,4,36,232,17,63,4,0,141,147,125,244,255, 255,141,131,71,53,7,0,139,0,137,84,36,4,137,4,36,232,213,62,4,0,141,147,144,244,255,255,141,131,71,53,7,0,139,0,137,84,36,4,137,4,36,232,238,62,4,0,141,147,163,244,255,255,141,131,71,53,7,0,139,0,137,84,36,4,137,4,36,232,229,62,4,0,141,131,91,147,6,0, 137,4,36,232,7,66,4,0,137,194,141,139,216,243,255,255,141,131,71,53,7,0,139,0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,162,58,4, 0,141,131,47,174,6,0,137,4,36,232,169,65,4,0,137,194,141,139,167,242,255,255,141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,100,58,4,0,141,131,131,149,6,0,137,4,36,232,107,65,4,0,137,194,141,139, 182,244,255,255,141,131,71,53,7,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,46,58,4,0,141,131,55,174,6,0,137,4,36,232,53,65,4,0,137,194,141,139,253,244,255,255,141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137, 84,36,8,137,76,36,4,137,4,36,232,240,57,4,0,141,131,119,163,6,0,137,4,36,232,247,64,4,0,137,194,141,139,77,245,255,255,141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,178,57,4,0,141,131,125,163, 6,0,137,4,36,232,185,64,4,0,137,194,141,139,124,245,255,255,141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,116,57,4,0,141,131,100,147,6,0,137,4,36,232,123,64,4,0,137,194,141,139,171,245,255,255, 141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,54,57,4,0,141,131,129,163,6,0,137,4,36,232,61,64,4,0,137,194,141,139,1,246,255,255,141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0, 0,0,137,84,36,8,137,76,36,4,137,4,36,232,248,56,4,0,141,131,135,163,6,0,137,4,36,232,255,63,4,0,137,194,141,139,48,246,255,255,141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,186,56,4,0,141,131,63, 174,6,0,137,4,36,232,193,63,4,0,137,194,141,139,81,246,255,255,141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,124,56,4,0,141,131,71,174,6,0,137,4,36,232,131,63,4,0,137,194,141,139,114,246,255,255, 141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,62,56,4,0,141,131,111,147,6,0,137,4,36,232,69,63,4,0,137,194,141,139,147,246,255,255,141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0, 0,0,137,84,36,8,137,76,36,4,137,4,36,232,0,56,4,0,141,131,79,174,6,0,137,4,36,232,7,63,4,0,137,194,141,139,194,246,255,255,141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,194,55,4,0,141,131,143, 163,6,0,137,4,36,232,201,62,4,0,137,194,141,139,241,246,255,255,141,131,71,53,7,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,132,55,4,0,141,131,247,11,7,0,139,0,141,147,141,235,255,255,137,16,141,131,247,11,7, 0,139,0,141,147,3,12,7,0,139,18,137,80,4,141,131,247,11,7,0,139,0,141,147,239,11,7,0,139,18,137,80,8,141,131,247,11,7,0,139,0,199,64,12,0,0,0,0,141,131,247,11,7,0,139,0,141,147,255,11,7,0,139,18,137,80,16,141,131,247,11,7,0,139,0,141,147,243,11,7,0,139, 18,137,80,20,141,131,247,11,7,0,139,0,141,147,246,243,255,255,137,80,24,141,131,71,53,7,0,139,16,141,131,247,11,7,0,139,0,137,68,36,4,137,20,36,232,226,58,4,0,141,131,65,150,6,0,137,4,36,232,243,61,4,0,137,194,141,131,71,53,7,0,139,0,137,84,36,4,137, 4,36,232,255,58,4,0,141,131,71,53,7,0,139,16,141,131,241,235,255,255,137,68,36,4,137,20,36,232,41,60,4,0,141,131,71,53,7,0,139,16,141,131,240,237,255,255,137,68,36,4,137,20,36,232,46,60,4,0,131,196,60,91,94,95,201,195,85,137,229,83,131,236,20,232,0,0, 0,0,91,141,131,186,6,7,0,139,0,139,0,133,192,117,14,141,131,10,142,6,0,137,4,36,232,104,214,4,0,131,196,20,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,204,6,7,0,139,0,139,16,139,69,8,137,144,152,0,0,0,141,129,204,6,7,0,139,0,139,85,8,137,16, 201,195,85,137,229,131,236,24,232,0,0,0,0,89,141,129,158,6,7,0,139,0,139,0,57,69,8,117,21,139,69,8,139,144,152,0,0,0,141,129,158,6,7,0,139,0,137,16,235,59,141,129,158,6,7,0,139,0,139,0,137,69,244,235,12,139,69,244,139,128,152,0,0,0,137,69,244,139,69, 244,139,128,152,0,0,0,59,69,8,117,230,139,69,8,139,144,152,0,0,0,139,69,244,137,144,152,0,0,0,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,28,47,7,0,139,0,133,192,116,35,141,131,24,47,7,0,139,0,141,20,197,0,0,0,0,141,131,28,47,7,0,139,0,137, 84,36,4,137,4,36,232,13,88,4,0,141,147,24,47,7,0,139,69,8,137,2,139,69,8,193,224,3,137,68,36,4,139,69,12,137,4,36,232,103,86,4,0,137,194,141,131,28,47,7,0,137,16,131,196,20,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,145,57,10,7,0,139,69,12,137, 2,141,145,61,10,7,0,139,69,16,137,2,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,8,5,7,0,139,0,139,0,137,68,36,4,141,131,28,5,7,0,139,0,137,4,36,232,242,118,4,0,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,14,120,4,0,201, 195,85,137,229,131,236,24,139,69,8,137,4,36,232,110,120,4,0,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,8,0,117,45,141,131,121,140,6,0,137,4,36,232,172,58,5,0,235,29,139,69,8,139,64,40,137,69,8,131,125,8,0,117,14,141,131,135,140,6,0,137,4, 36,232,141,58,5,0,139,69,8,139,128,156,0,0,0,133,192,116,214,139,69,8,139,128,156,0,0,0,131,196,20,91,201,195,85,137,229,131,236,56,232,66,255,255,255,137,69,244,131,125,244,0,116,16,139,69,244,137,4,36,232,133,255,255,255,137,69,224,235,7,199,69,224, 0,0,0,0,139,69,224,137,69,240,131,125,240,0,116,11,139,69,240,139,64,12,137,69,228,235,7,199,69,228,0,0,0,0,139,69,228,201,195,85,137,229,131,236,40,232,244,254,255,255,137,4,36,232,67,255,255,255,137,69,244,139,69,244,139,80,4,139,69,8,137,16,139,69, 244,139,80,8,139,69,12,137,16,201,195,85,137,229,131,236,40,139,69,12,139,0,137,69,240,199,68,36,4,36,0,0,0,139,69,240,137,4,36,232,52,254,6,0,133,192,116,80,139,69,8,137,4,36,232,248,254,255,255,137,69,236,139,69,8,137,4,36,232,196,254,255,255,139,69, 236,139,80,8,139,69,236,139,64,4,199,68,36,12,1,0,0,0,137,84,36,8,137,68,36,4,139,69,12,137,4,36,232,1,217,3,0,137,69,244,139,69,8,137,4,36,232,162,254,255,255,235,6,139,69,12,137,69,244,139,69,244,201,195,85,137,229,131,236,40,232,70,254,255,255,137, 4,36,232,149,254,255,255,137,69,244,139,69,244,139,0,201,195,85,137,229,131,236,40,139,69,8,137,4,36,232,122,254,255,255,137,69,244,139,69,244,139,0,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,137,4,36,232,87,254,255,255,139,0,139,0,137, 69,244,139,69,12,15,182,0,60,47,116,31,139,69,12,15,182,0,132,192,116,11,139,69,12,64,15,182,0,60,58,116,10,139,69,244,15,182,0,132,192,117,89,184,255,255,255,255,131,248,255,116,36,184,255,255,255,255,139,85,20,137,68,36,12,137,84,36,8,139,69,12,137, 68,36,4,139,69,16,137,4,36,232,30,251,6,0,235,25,139,69,20,137,68,36,8,139,69,12,137,68,36,4,139,69,16,137,4,36,232,34,1,0,0,139,85,16,74,139,69,20,141,4,2,198,0,0,233,9,1,0,0,184,255,255,255,255,131,248,255,116,36,184,255,255,255,255,139,85,20,137,68, 36,12,137,84,36,8,139,69,244,137,68,36,4,139,69,16,137,4,36,232,197,250,6,0,235,25,139,69,20,137,68,36,8,139,69,244,137,68,36,4,139,69,16,137,4,36,232,201,0,0,0,139,85,16,74,139,69,20,141,4,2,198,0,0,139,117,20,139,69,16,137,4,36,232,171,252,6,0,137, 242,41,194,137,208,72,137,69,240,131,125,240,0,15,142,147,0,0,0,184,255,255,255,255,131,248,255,116,32,184,255,255,255,255,137,68,36,8,141,131,60,202,6,0,137,68,36,4,139,69,16,137,4,36,232,65,250,6,0,235,21,141,131,60,202,6,0,137,68,36,4,139,69,16,137, 4,36,232,133,0,0,0,184,255,255,255,255,131,248,255,116,36,184,255,255,255,255,139,85,240,137,68,36,12,137,84,36,8,139,69,12,137,68,36,4,139,69,16,137,4,36,232,10,250,6,0,235,25,139,69,240,137,68,36,8,139,69,12,137,68,36,4,139,69,16,137,4,36,232,97,0, 0,0,139,85,16,74,139,69,20,141,4,2,198,0,0,131,196,32,91,94,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,185,249,6,0,201,195,85,137,229,131,236,24,184,255,255,255,255, 137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,132,249,6,0,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,102,249,6,0,201,195,85,137,229,83,131,236,36,232,0,0, 0,0,91,139,69,8,139,128,144,0,0,0,139,16,141,131,228,136,6,0,137,68,36,4,137,20,36,232,80,251,6,0,133,192,116,32,139,69,8,139,128,144,0,0,0,137,4,36,232,42,19,0,0,139,85,8,137,68,36,4,137,20,36,232,128,113,4,0,139,85,8,139,69,12,137,130,144,0,0,0,139, 69,8,139,128,144,0,0,0,139,16,141,131,228,136,6,0,137,68,36,4,137,20,36,232,3,251,6,0,133,192,116,32,139,69,8,139,128,144,0,0,0,137,4,36,232,221,18,0,0,139,85,8,137,68,36,4,137,20,36,232,83,112,4,0,139,69,8,137,4,36,232,179,25,0,0,133,192,116,11,139, 69,8,137,4,36,232,73,19,0,0,131,125,16,0,116,35,141,131,8,1,7,0,139,0,57,69,16,116,22,139,69,8,137,4,36,232,116,251,255,255,137,69,244,139,85,244,139,69,16,137,2,131,196,36,91,201,195,85,137,229,131,236,24,199,69,240,0,0,0,0,139,69,8,139,64,28,137,69, 244,235,12,255,69,240,139,69,244,139,64,4,137,69,244,131,125,244,0,116,8,139,69,244,59,69,12,117,230,139,69,240,201,195,85,137,229,131,236,8,139,69,8,199,64,4,0,0,0,0,139,85,8,139,69,12,137,2,139,69,8,199,64,84,0,0,0,0,139,69,8,199,64,8,0,0,0,0,139,69, 8,139,80,8,139,69,8,137,80,88,201,195,85,137,229,87,86,83,131,236,92,232,0,0,0,0,91,139,69,8,139,64,84,137,69,228,233,83,1,0,0,139,69,8,139,64,88,137,69,224,233,1,1,0,0,199,69,216,0,0,0,0,139,69,8,139,64,4,133,192,117,13,139,69,8,139,0,139,64,28,137, 69,220,235,43,139,69,8,139,64,4,139,64,4,137,69,220,235,29,139,69,220,137,4,36,232,170,102,4,0,137,69,216,131,125,216,0,117,15,139,69,220,139,64,4,137,69,220,131,125,220,0,117,221,131,125,216,0,117,12,199,69,184,0,0,0,0,233,219,2,0,0,139,85,8,139,69, 216,137,66,4,139,69,216,137,4,36,232,217,100,4,0,137,194,139,69,8,137,80,8,199,69,224,0,0,0,0,139,69,8,139,0,137,4,36,232,72,24,0,0,133,192,116,62,139,85,8,131,194,48,139,77,8,131,193,44,139,117,8,131,198,40,139,125,8,131,199,36,139,69,8,139,0,137,84, 36,20,137,76,36,16,137,116,36,12,137,124,36,8,137,68,36,4,139,69,220,137,4,36,232,187,64,0,0,235,46,139,69,8,199,64,48,0,0,0,0,139,69,8,139,80,48,139,69,8,137,80,44,139,69,8,139,80,44,139,69,8,137,80,40,139,69,8,139,80,40,139,69,8,137,80,36,139,69,8, 139,64,8,59,69,224,15,132,240,254,255,255,139,85,224,66,139,69,8,137,80,88,139,85,8,131,194,20,139,69,8,139,72,4,139,69,224,137,68,36,8,137,84,36,4,137,12,36,232,131,100,4,0,137,69,228,139,85,8,139,69,224,137,66,12,131,125,228,0,15,132,163,254,255,255, 139,69,8,131,192,32,139,85,8,131,194,24,139,77,8,131,193,16,137,68,36,12,137,84,36,8,137,76,36,4,139,69,228,137,4,36,232,146,100,4,0,137,194,139,69,8,137,80,84,139,69,8,139,64,16,137,4,36,232,239,99,4,0,137,194,139,69,8,137,80,28,139,69,8,139,64,28,133, 192,117,14,141,131,144,135,6,0,137,4,36,232,230,51,5,0,139,69,8,139,0,137,4,36,232,30,23,0,0,133,192,15,132,23,1,0,0,139,69,8,139,64,28,131,248,1,116,12,139,69,8,139,64,28,72,137,69,188,235,7,199,69,188,1,0,0,0,139,69,188,137,69,212,139,69,8,139,64,8, 131,248,1,116,12,139,69,8,139,64,8,72,137,69,192,235,7,199,69,192,1,0,0,0,139,85,192,137,85,208,139,85,8,131,194,64,139,77,8,131,193,60,139,117,8,131,198,56,139,125,8,131,199,52,139,69,8,139,0,137,69,196,139,69,8,139,64,16,137,84,36,20,137,76,36,16,137, 116,36,12,137,124,36,8,139,117,196,137,116,36,4,137,4,36,232,60,63,0,0,139,69,8,139,72,36,139,69,8,139,80,44,139,69,8,139,64,36,137,214,41,198,137,240,141,80,249,139,69,8,139,64,12,15,175,208,137,208,193,250,31,247,125,208,141,4,1,141,80,3,139,69,8,137, 80,68,139,69,8,139,80,48,139,69,8,137,80,72,139,69,8,139,72,52,139,69,8,139,80,60,139,69,8,139,64,52,137,214,41,198,137,240,141,80,249,139,69,8,139,64,32,15,175,208,137,208,193,250,31,247,125,212,141,4,1,141,80,3,139,69,8,137,80,76,139,69,8,139,80,56, 139,69,8,137,80,80,235,92,139,69,8,199,64,64,0,0,0,0,139,69,8,139,80,64,139,69,8,137,80,60,139,69,8,139,80,60,139,69,8,137,80,56,139,69,8,139,80,56,139,69,8,137,80,52,139,69,8,199,64,80,0,0,0,0,139,69,8,139,80,80,139,69,8,137,80,76,139,69,8,139,80,76, 139,69,8,137,80,72,139,69,8,139,80,72,139,69,8,137,80,68,139,69,228,137,69,184,139,69,184,131,196,92,91,94,95,201,195,85,137,229,131,236,8,139,69,8,199,64,84,0,0,0,0,139,69,8,139,80,8,139,69,8,137,80,88,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91, 184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,85,8,131,194,4,137,68,36,12,199,68,36,8,160,0,0,0,199,68,36,4,0,0,0,0,137,20,36,232,29,244,6,0,235,30,139,69,8,131,192,4,199,68,36,8,160,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,109,0,0,0,199, 68,36,4,0,0,0,0,139,69,8,137,4,36,232,251,248,2,0,137,194,139,69,8,137,80,32,141,131,235,11,7,0,139,0,141,80,1,141,131,235,11,7,0,137,16,141,131,235,11,7,0,139,16,139,69,8,137,80,36,199,4,36,0,0,0,0,232,56,76,4,0,137,194,139,69,8,137,80,108,199,4,36, 0,0,0,0,232,36,76,4,0,137,194,139,69,8,137,144,132,0,0,0,131,196,20,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,104,243,6,0,201,195,85,137,229,83,131,236,100,232, 0,0,0,0,91,141,131,30,251,6,0,139,0,139,0,137,4,36,232,116,103,4,0,137,69,244,232,239,245,255,255,137,69,240,141,131,46,251,6,0,139,0,137,69,236,199,69,232,0,0,0,0,199,69,228,194,1,0,0,199,69,224,44,1,0,0,199,69,220,0,0,0,0,199,69,216,22,0,0,0,131,125, 240,0,116,14,139,69,240,139,128,148,0,0,0,137,69,188,235,13,141,131,90,251,6,0,139,0,139,0,137,69,188,139,69,188,137,69,212,139,69,244,137,4,36,232,129,254,255,255,139,85,244,139,66,24,37,255,255,252,255,13,0,0,1,0,137,66,24,131,125,240,0,117,11,139, 69,244,137,4,36,232,61,244,255,255,131,125,16,5,15,133,150,0,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,24,180,3,0,137,69,220,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,251,179,3,0,137,69,216,139,69,20, 137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,222,179,3,0,137,69,228,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,193,179,3,0,137,69,224,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,164,179,3,0,137,69, 212,233,184,0,0,0,131,125,16,6,15,133,174,0,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,120,179,3,0,137,69,220,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,91,179,3,0,137,69,216,139,69,20,137,68,36,8,139,69, 16,137,68,36,4,199,4,36,2,0,0,0,232,62,179,3,0,137,69,228,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,33,179,3,0,137,69,224,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,45,179,3,0,137,69,236,139,69,20,137,68,36, 8,139,69,16,137,68,36,4,199,4,36,5,0,0,0,232,231,178,3,0,137,69,232,141,131,46,0,7,0,139,0,139,0,15,182,0,132,192,15,132,185,0,0,0,199,4,36,20,0,0,0,232,194,73,4,0,137,194,139,69,244,137,144,156,0,0,0,139,69,244,139,128,156,0,0,0,137,69,208,141,131,162, 36,7,0,139,0,133,192,117,22,199,4,36,0,0,0,0,232,147,73,4,0,137,194,141,131,162,36,7,0,137,16,141,131,46,0,7,0,139,16,139,69,208,137,16,141,131,158,36,7,0,139,16,139,69,208,137,80,4,141,131,162,36,7,0,139,16,139,69,208,137,80,8,141,131,250,10,7,0,139, 16,139,69,208,137,80,12,66,141,131,250,10,7,0,137,16,139,69,208,199,64,16,0,0,0,0,141,147,46,0,7,0,141,131,46,251,6,0,139,0,137,2,141,131,158,36,7,0,199,0,0,0,0,0,141,131,162,36,7,0,199,0,0,0,0,0,235,13,139,69,244,199,128,156,0,0,0,0,0,0,0,131,125,216, 21,127,7,199,69,216,22,0,0,0,131,125,220,0,121,7,199,69,220,0,0,0,0,139,85,244,141,131,114,237,6,0,139,0,137,66,52,139,85,244,141,131,114,237,6,0,139,0,137,66,56,139,85,244,141,131,118,237,6,0,139,0,137,66,60,139,85,244,141,131,118,237,6,0,139,0,137, 66,64,139,69,224,139,85,216,1,194,139,69,228,3,69,220,137,84,36,16,137,68,36,12,139,69,216,137,68,36,8,139,69,220,137,68,36,4,139,69,244,137,4,36,232,212,8,0,0,139,85,244,139,69,240,137,66,40,139,69,236,139,0,15,182,0,132,192,117,50,141,131,42,0,7,0, 139,0,133,192,117,19,141,131,10,131,6,0,137,4,36,232,204,46,4,0,137,69,196,235,11,141,131,42,0,7,0,139,0,137,69,196,139,85,196,137,85,192,235,6,139,69,236,137,69,192,139,69,244,139,85,192,137,144,144,0,0,0,139,69,244,139,128,144,0,0,0,139,16,141,131, 10,131,6,0,137,68,36,4,137,20,36,232,200,241,6,0,133,192,116,32,139,69,244,139,128,144,0,0,0,137,4,36,232,162,9,0,0,139,85,244,137,68,36,4,137,20,36,232,24,103,4,0,139,85,244,139,130,160,0,0,0,131,200,8,137,130,160,0,0,0,139,85,244,139,130,160,0,0,0, 36,127,137,130,160,0,0,0,131,125,232,0,15,132,142,0,0,0,141,131,22,131,6,0,137,4,36,232,38,46,4,0,139,64,4,133,192,116,121,141,131,22,131,6,0,137,4,36,232,17,46,4,0,139,64,4,139,16,141,131,30,251,6,0,139,0,139,0,57,194,117,88,141,131,22,131,6,0,137,4, 36,232,240,45,4,0,139,64,4,137,69,204,235,9,139,69,204,139,64,40,137,69,204,131,125,204,0,116,13,139,69,204,139,128,156,0,0,0,133,192,116,228,131,125,204,0,116,32,139,69,204,137,4,36,232,110,30,0,0,133,192,116,17,139,69,204,139,64,40,133,192,116,7,199, 69,232,0,0,0,0,139,69,232,131,224,1,139,77,244,15,182,192,131,224,1,137,194,193,226,4,139,129,160,0,0,0,131,224,239,9,208,137,129,160,0,0,0,139,69,244,139,128,144,0,0,0,139,16,199,68,36,8,8,0,0,0,141,131,194,160,6,0,137,68,36,4,137,20,36,232,177,240, 6,0,133,192,15,148,192,139,77,244,15,182,192,131,224,1,137,194,193,226,5,139,129,160,0,0,0,131,224,223,9,208,137,129,160,0,0,0,139,69,212,137,4,36,232,177,227,4,0,137,194,139,69,244,137,144,148,0,0,0,139,69,244,137,4,36,232,32,105,4,0,139,69,244,131, 196,100,91,201,195,85,137,229,131,236,24,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,32,175,3,0,139,69,8,217,88,52,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,0,175,3,0,139,69,8,217,88,56,139,69,20,137,68,36, 8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,224,174,3,0,139,69,8,217,88,60,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,192,174,3,0,139,69,8,217,88,64,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,251,174,3,0,137, 194,139,69,8,137,80,44,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,5,0,0,0,232,217,174,3,0,137,194,139,69,8,137,80,48,131,125,16,7,127,51,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,6,0,0,0,232,177,174,3,0,199,68,36,8,1,0,0,0,137,68, 36,4,139,69,8,137,4,36,232,118,93,0,0,235,117,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,7,0,0,0,232,126,174,3,0,137,194,139,69,8,137,80,84,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,8,0,0,0,232,92,174,3,0,137,194,139,69,8,137,80, 88,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,6,0,0,0,232,58,174,3,0,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,232,255,92,0,0,201,195,85,137,229,83,131,236,116,232,0,0,0,0,91,139,69,8,137,69,180,139,69,12,137,69,176,141,131,77,244,6, 0,139,0,139,16,137,85,244,49,210,199,69,196,0,0,0,0,141,131,85,244,6,0,139,0,139,0,137,4,36,232,137,96,4,0,137,69,188,139,69,188,137,4,36,232,243,247,255,255,139,85,188,139,66,24,37,255,255,252,255,13,0,0,1,0,137,66,24,139,69,176,139,0,15,182,0,132,192, 117,91,141,131,205,29,7,0,139,0,141,80,1,141,131,205,29,7,0,137,16,141,131,205,29,7,0,139,0,137,68,36,16,141,131,81,124,6,0,137,68,36,12,199,68,36,8,40,0,0,0,199,68,36,4,0,0,0,0,141,69,204,137,4,36,232,247,235,6,0,141,69,204,137,4,36,232,215,42,4,0,137, 69,176,199,69,196,1,0,0,0,235,82,139,69,176,139,0,137,69,192,199,68,36,8,5,0,0,0,141,131,89,124,6,0,137,68,36,4,139,69,192,137,4,36,232,251,237,6,0,133,192,117,41,139,69,192,131,192,5,137,4,36,232,247,235,6,0,137,69,200,141,131,205,29,7,0,139,0,57,69, 200,126,11,141,147,205,29,7,0,139,69,200,137,2,243,15,16,77,44,243,15,16,69,36,15,46,193,119,2,235,36,139,69,28,137,69,184,139,69,20,137,69,28,139,69,184,137,69,20,139,69,44,137,69,184,139,69,36,137,69,44,139,69,184,137,69,36,243,15,16,69,16,15,46,69, 24,122,2,116,15,243,15,16,69,20,15,46,69,28,122,2,116,2,235,44,141,131,169,230,6,0,139,0,137,69,16,141,131,1,233,6,0,139,0,137,69,24,141,131,173,230,6,0,139,0,137,69,20,141,131,201,231,6,0,139,0,137,69,28,243,15,16,69,32,15,46,69,40,115,13,243,15,16, 69,36,15,46,69,44,115,2,235,44,141,131,1,233,6,0,139,0,137,69,32,141,131,65,233,6,0,139,0,137,69,36,141,131,69,233,6,0,139,0,137,69,40,141,131,73,233,6,0,139,0,137,69,44,139,85,188,139,69,176,137,130,144,0,0,0,139,85,188,139,69,16,137,66,52,139,85,188, 139,69,24,137,66,60,139,85,188,139,69,20,137,66,56,139,85,188,139,69,28,137,66,64,243,15,16,69,32,243,15,44,192,137,194,139,69,188,102,137,80,20,243,15,16,69,36,243,15,44,192,137,194,139,69,188,102,137,80,22,243,15,16,69,40,243,15,92,69,32,243,15,44, 208,139,69,188,137,80,44,243,15,16,69,44,243,15,92,69,36,243,15,44,208,139,69,188,137,80,48,232,240,236,255,255,133,192,116,16,232,231,236,255,255,139,128,148,0,0,0,137,69,172,235,13,141,131,145,244,6,0,139,0,139,0,137,69,172,139,69,188,139,77,172,137, 136,148,0,0,0,139,69,188,199,64,72,0,0,0,0,139,69,188,139,80,72,139,69,188,137,80,68,139,69,188,199,64,76,194,1,0,0,139,69,188,199,64,80,44,1,0,0,139,69,188,139,128,144,0,0,0,139,16,141,131,65,124,6,0,137,68,36,4,137,20,36,232,6,236,6,0,133,192,116,32, 139,69,188,139,128,144,0,0,0,137,4,36,232,224,3,0,0,139,85,188,137,68,36,4,137,20,36,232,86,97,4,0,139,85,188,139,69,180,137,66,40,139,85,188,139,130,160,0,0,0,128,204,1,137,130,160,0,0,0,139,85,188,139,130,160,0,0,0,36,127,137,130,160,0,0,0,232,35,177, 3,0,137,194,139,69,188,137,80,8,141,131,89,124,6,0,137,4,36,232,88,40,4,0,137,194,139,69,188,139,72,8,137,84,36,8,141,131,221,188,6,0,137,68,36,4,137,12,36,232,221,189,3,0,131,125,196,0,117,11,139,69,188,137,4,36,232,50,100,4,0,139,69,188,137,68,36,4, 139,69,180,137,4,36,232,83,183,0,0,139,69,188,141,147,77,244,6,0,139,18,139,77,244,51,10,116,5,232,27,233,6,0,131,196,116,91,201,195,85,137,229,131,236,104,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,144,170,3,0,137,69,244,139,69, 20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,239,169,3,0,217,93,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,210,169,3,0,217,93,236,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,181,169,3,0,217, 93,232,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,152,169,3,0,217,93,228,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,5,0,0,0,232,123,169,3,0,217,93,224,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,6,0,0,0,232,94, 169,3,0,217,93,220,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,7,0,0,0,232,65,169,3,0,217,93,216,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,8,0,0,0,232,36,169,3,0,217,93,212,139,69,212,137,68,36,36,139,69,216,137,68,36,32,139,69,220, 137,68,36,28,139,69,224,137,68,36,24,139,69,228,137,68,36,20,139,69,232,137,68,36,16,139,69,236,137,68,36,12,139,69,240,137,68,36,8,139,69,244,137,68,36,4,139,69,8,137,4,36,232,17,251,255,255,201,195,85,137,229,131,236,8,139,69,8,139,128,160,0,0,0,193, 232,8,131,224,1,15,182,208,139,69,8,139,128,160,0,0,0,193,232,9,131,224,1,15,182,192,1,192,9,208,201,195,85,137,229,86,131,236,36,243,15,16,69,24,243,15,44,200,243,15,16,69,20,243,15,44,240,243,15,16,69,16,243,15,44,192,243,15,16,69,12,243,15,44,208, 137,76,36,16,137,116,36,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,6,0,0,0,131,196,36,94,201,195,85,137,229,86,131,236,36,139,85,16,139,69,24,41,208,137,69,244,139,85,16,139,69,24,137,193,41,209,139,69,8,139,80,80,139,69,8,139,64,72,137,214,41, 198,137,240,137,202,41,194,137,208,137,69,240,139,69,8,139,64,68,59,69,12,117,37,139,69,8,139,64,72,59,69,16,117,26,139,69,8,139,64,76,59,69,20,117,15,139,69,8,139,64,80,59,69,24,15,132,236,0,0,0,139,85,8,139,69,12,137,66,68,139,85,8,139,69,16,137,66, 72,139,85,8,139,69,20,137,66,76,139,85,8,139,69,24,137,66,80,139,69,8,137,4,36,232,238,254,255,255,133,192,15,133,181,0,0,0,139,69,8,243,15,16,72,64,139,69,8,243,15,16,64,56,15,46,193,119,5,233,155,0,0,0,139,69,8,243,15,16,72,56,139,69,8,243,15,16,64, 64,15,40,209,243,15,92,208,15,40,194,243,15,17,69,236,243,15,42,69,244,243,15,89,69,236,139,69,8,243,15,17,64,56,139,69,8,243,15,16,64,56,243,15,92,69,236,139,69,8,243,15,17,64,64,139,69,8,139,64,28,137,69,232,235,57,139,69,232,137,4,36,232,61,85,4,0, 133,192,116,33,139,69,240,137,68,36,12,199,68,36,8,0,0,0,0,139,69,8,137,68,36,4,139,69,232,137,4,36,232,26,48,0,0,139,69,232,139,64,4,137,69,232,131,125,232,0,117,193,139,69,8,137,4,36,232,221,5,0,0,131,196,36,94,201,195,85,137,229,83,129,236,20,4,0, 0,232,0,0,0,0,91,139,69,8,137,133,4,252,255,255,141,131,132,237,6,0,139,0,139,16,137,85,244,49,210,199,68,36,8,4,0,0,0,141,131,152,117,6,0,137,68,36,4,141,133,12,252,255,255,137,4,36,232,223,230,6,0,139,133,4,252,255,255,139,0,199,68,36,8,232,3,0,0,137, 68,36,4,141,133,12,252,255,255,137,4,36,232,133,229,6,0,141,133,12,252,255,255,137,4,36,232,86,36,4,0,141,147,132,237,6,0,139,18,139,77,244,51,10,116,5,232,93,229,6,0,129,196,20,4,0,0,91,201,195,85,137,229,87,86,83,129,236,60,4,0,0,232,0,0,0,0,91,139, 69,8,137,133,228,251,255,255,141,131,237,236,6,0,139,0,139,16,137,85,228,49,210,139,133,228,251,255,255,137,4,36,232,17,232,255,255,137,133,248,251,255,255,139,133,248,251,255,255,139,64,4,133,192,15,132,237,0,0,0,199,68,36,8,3,0,0,0,141,131,5,117,6, 0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,35,230,6,0,199,133,244,251,255,255,0,0,0,0,233,135,0,0,0,141,133,252,251,255,255,137,4,36,232,252,230,6,0,61,239,1,0,0,15,135,131,0,0,0,131,189,244,251,255,255,0,116,32,199,68,36,8,232,3,0,0,141,131, 8,117,6,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,154,228,6,0,141,133,252,251,255,255,137,4,36,232,186,230,6,0,141,149,252,251,255,255,1,194,139,133,248,251,255,255,139,72,8,139,133,244,251,255,255,193,224,3,141,4,1,199,68,36,8,244,1,0,0,137, 84,36,4,137,4,36,232,63,166,3,0,255,133,244,251,255,255,139,133,248,251,255,255,139,64,4,59,133,244,251,255,255,15,143,100,255,255,255,199,68,36,8,232,3,0,0,141,131,10,117,6,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,32,228,6,0,235,7,198,133, 252,251,255,255,0,139,133,228,251,255,255,139,128,160,0,0,0,193,232,2,131,224,1,15,182,240,139,133,228,251,255,255,139,128,144,0,0,0,139,56,139,133,228,251,255,255,137,4,36,232,74,232,255,255,139,16,137,116,36,20,141,133,252,251,255,255,137,68,36,16, 137,124,36,12,137,84,36,8,139,133,228,251,255,255,137,68,36,4,141,131,13,117,6,0,137,4,36,232,175,184,4,0,141,131,237,236,6,0,139,0,139,85,228,51,16,116,5,232,156,227,6,0,129,196,60,4,0,0,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69, 8,137,4,36,232,166,20,0,0,137,69,244,141,131,143,235,6,0,139,0,139,0,133,192,15,133,169,0,0,0,243,15,16,69,12,15,40,208,15,87,192,243,15,95,208,141,131,75,224,6,0,15,40,0,15,40,224,15,40,200,243,15,194,202,2,141,131,91,224,6,0,15,40,0,15,40,216,243,15, 194,218,2,15,84,225,102,15,114,241,31,15,92,212,243,15,91,194,102,15,254,193,102,15,235,195,102,15,126,194,139,69,244,139,128,160,0,0,0,193,232,2,131,224,1,15,182,192,57,194,116,68,243,15,16,69,12,243,15,44,192,139,77,244,15,182,192,131,224,1,141,20, 133,0,0,0,0,139,129,160,0,0,0,131,224,251,9,208,137,129,160,0,0,0,139,69,244,137,4,36,232,209,3,0,0,133,192,116,11,139,69,244,137,4,36,232,103,253,255,255,131,196,36,91,201,195,85,137,229,87,86,83,131,236,92,232,0,0,0,0,91,131,125,12,0,15,132,211,0,0, 0,139,69,8,139,112,88,139,69,8,139,120,84,139,69,8,139,80,88,139,69,8,139,64,48,1,194,137,85,200,139,69,8,139,64,84,137,69,204,139,69,8,139,80,88,139,69,8,139,64,48,1,194,137,85,208,139,69,8,139,80,84,139,69,8,139,64,44,1,194,137,85,212,139,69,8,139, 64,88,137,69,216,139,69,8,139,80,84,139,69,8,139,64,44,1,194,137,85,220,139,69,8,139,64,88,137,69,224,139,69,8,139,64,84,137,69,228,139,69,8,137,4,36,232,111,182,0,0,137,116,36,44,137,124,36,40,139,85,200,137,84,36,36,139,85,204,137,84,36,32,139,85,208, 137,84,36,28,139,85,212,137,84,36,24,139,85,216,137,84,36,20,139,85,220,137,84,36,16,139,85,224,137,84,36,12,139,85,228,137,84,36,8,137,68,36,4,141,131,165,114,6,0,137,4,36,232,202,182,4,0,235,29,139,69,8,137,4,36,232,16,182,0,0,137,68,36,4,141,131,251, 114,6,0,137,4,36,232,171,182,4,0,131,196,92,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,158,219,6,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,15,182,192,137,69,244,131,125,244,0,15,132,35,1,0,0,139,69,8,137,4,36,232,109, 2,0,0,133,192,15,133,70,1,0,0,139,69,8,139,128,160,0,0,0,131,224,1,133,192,117,37,141,131,0,114,6,0,137,4,36,232,2,31,5,0,141,131,162,219,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,110,77,0,0,139,69,8,139,64,28,137,69,240,235,35,199,68,36,8,1,0,0,0, 139,69,8,137,68,36,4,139,69,240,137,4,36,232,71,46,0,0,139,69,240,139,64,4,137,69,240,131,125,240,0,117,215,139,69,8,139,128,140,0,0,0,139,64,16,137,69,236,235,37,139,69,236,139,16,199,68,36,8,1,0,0,0,139,69,8,137,68,36,4,137,20,36,232,36,43,0,0,139, 69,236,139,64,4,137,69,236,131,125,236,0,117,213,139,85,8,139,130,160,0,0,0,131,200,2,137,130,160,0,0,0,139,69,8,137,4,36,232,232,3,0,0,139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,116,37,139,69,8,139,128,160,0,0,0,37,128,0,0,0,133,192,116,19,199,68, 36,4,1,0,0,0,139,69,8,137,4,36,232,176,253,255,255,139,69,8,137,68,36,4,141,131,14,114,6,0,137,4,36,232,79,181,4,0,235,54,139,69,8,137,4,36,232,74,1,0,0,133,192,116,39,139,69,8,137,68,36,4,141,131,45,114,6,0,137,4,36,232,41,181,4,0,139,85,8,139,130,160, 0,0,0,131,224,253,137,130,160,0,0,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,137,4,36,232,1,1,0,0,133,192,116,46,141,131,12,218,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,59,254,255,255,141,131,16,218,6,0,139,0,137,68,36, 4,139,69,8,137,4,36,232,36,254,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,4,36,232,177,0,0,0,133,192,15,132,140,0,0,0,139,69,8,137,4,36,232,225,0,0,0,133,192,117,125,139,69,8,139,64,40,137,69,244,131,125,244,0, 117,16,141,131,95,112,6,0,137,4,36,232,56,29,5,0,235,94,139,85,8,199,68,36,8,0,0,0,0,139,69,244,137,68,36,4,137,20,36,232,157,44,0,0,139,69,8,139,128,140,0,0,0,133,192,116,11,139,69,8,137,4,36,232,250,74,0,0,139,85,8,139,130,160,0,0,0,131,200,1,137,130, 160,0,0,0,139,85,8,199,68,36,8,1,0,0,0,139,69,244,137,68,36,4,137,20,36,232,89,44,0,0,141,131,192,217,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,68,75,0,0,131,196,36,91,201,195,85,137,229,131,236,40,139,69,8,139,128,160,0,0,0,131,224,8,133,192,117,33, 139,69,8,137,4,36,232,42,179,0,0,139,128,160,0,0,0,131,224,2,133,192,116,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,131,236,24,139,69,8,139,128,160,0,0,0,131,224,1,133,192,117,18,139,69,8,139,128,160,0,0,0,37,0,1,0,0, 133,192,117,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,235,29,139,69,8,139,64,40,137,69,8,131,125,8,0,117,14,141,131,245,109,6,0,137,4,36,232,15,28,5,0,139,69,8,139,128,156,0,0,0,133,192,116, 214,139,69,8,139,128,148,0,0,0,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,232,153,17,0,0,137,69,240,139,69,8,137,4,36,232,7,52,0,0,141,131,35,230,6,0,139,0,139,0,59,69,8,117,14,141,131,35,230,6,0,139,0,199,0,0,0,0,0,141,131,59,230, 6,0,139,0,139,0,59,69,8,117,14,141,131,59,230,6,0,139,0,199,0,0,0,0,0,139,69,8,137,4,36,232,194,48,0,0,235,18,139,69,244,137,68,36,4,139,69,8,137,4,36,232,110,173,0,0,139,69,8,139,64,28,137,69,244,131,125,244,0,117,223,139,69,8,137,4,36,232,240,177,0, 0,59,69,8,117,23,141,131,43,216,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,199,73,0,0,139,69,8,139,128,144,0,0,0,139,16,141,131,195,109,6,0,137,68,36,4,137,20,36,232,141,223,6,0,133,192,116,32,139,69,8,139,128,144,0,0,0,137,4,36,232,103,247,255,255, 139,85,8,137,68,36,4,137,20,36,232,189,85,4,0,139,69,8,139,128,156,0,0,0,133,192,116,68,139,69,8,139,128,156,0,0,0,139,64,4,141,20,197,0,0,0,0,139,69,8,139,128,156,0,0,0,139,64,8,137,84,36,4,137,4,36,232,96,55,4,0,139,69,8,139,128,156,0,0,0,199,68,36, 4,20,0,0,0,137,4,36,232,71,55,4,0,139,69,240,137,4,36,232,141,16,0,0,139,69,8,137,4,36,232,77,180,0,0,139,69,8,137,4,36,232,252,152,5,0,139,69,8,139,64,40,133,192,117,11,139,69,8,137,4,36,232,91,222,255,255,131,196,36,91,201,195,85,137,229,87,86,83,129, 236,156,0,0,0,232,0,0,0,0,91,139,69,8,137,68,36,4,141,69,136,137,4,36,232,89,228,255,255,233,135,0,0,0,139,69,156,137,4,36,232,71,71,4,0,137,194,141,131,209,227,6,0,139,0,57,194,117,12,199,133,124,255,255,255,2,0,0,0,235,10,199,133,124,255,255,255,1, 0,0,0,139,117,216,139,125,212,139,69,208,137,69,128,139,69,204,137,69,132,139,69,8,137,4,36,232,145,176,0,0,137,194,139,69,228,137,68,36,28,139,133,124,255,255,255,137,68,36,24,137,116,36,20,137,124,36,16,139,69,128,137,68,36,12,139,69,132,137,68,36, 8,137,84,36,4,141,131,93,109,6,0,137,4,36,232,3,177,4,0,141,69,136,137,4,36,232,252,227,255,255,137,69,228,131,125,228,0,15,133,97,255,255,255,129,196,156,0,0,0,91,94,95,201,195,85,137,229,87,86,83,129,236,156,0,0,0,232,0,0,0,0,91,139,69,8,137,68,36, 4,141,69,136,137,4,36,232,134,227,255,255,235,94,139,69,140,59,69,12,116,8,139,69,152,59,69,12,117,78,139,117,216,139,125,212,139,69,208,137,69,128,139,69,204,137,69,132,139,69,8,137,4,36,232,224,175,0,0,137,194,137,116,36,24,137,124,36,20,139,69,128, 137,68,36,16,139,69,132,137,68,36,12,139,69,228,137,68,36,8,137,84,36,4,141,131,206,108,6,0,137,4,36,232,92,176,4,0,141,69,136,137,4,36,232,85,227,255,255,137,69,228,131,125,228,0,117,142,129,196,156,0,0,0,91,94,95,201,195,85,137,229,86,83,131,236,112, 232,0,0,0,0,91,139,69,8,137,68,36,4,141,69,152,137,4,36,232,231,226,255,255,235,99,139,69,156,59,69,12,116,8,139,69,168,59,69,12,117,83,139,69,8,139,128,140,0,0,0,133,192,116,38,139,69,8,137,4,36,232,70,175,0,0,137,194,139,69,244,137,68,36,8,137,84,36, 4,141,131,177,110,6,0,137,4,36,232,216,175,4,0,139,69,184,139,85,168,139,77,164,139,117,156,137,68,36,12,137,84,36,8,137,76,36,4,137,52,36,232,17,71,4,0,141,69,152,137,4,36,232,177,226,255,255,137,69,244,131,125,244,0,117,137,131,196,112,91,94,201,195, 85,137,229,86,83,131,236,112,232,0,0,0,0,91,139,69,8,137,68,36,4,141,69,152,137,4,36,232,71,226,255,255,235,115,139,69,156,59,69,12,117,8,139,69,172,59,69,20,116,16,139,69,168,59,69,12,117,91,139,69,176,59,69,16,117,83,139,69,8,139,128,140,0,0,0,133, 192,116,38,139,69,8,137,4,36,232,150,174,0,0,137,194,139,69,244,137,68,36,8,137,84,36,4,141,131,17,110,6,0,137,4,36,232,40,175,4,0,139,69,184,139,85,168,139,77,164,139,117,156,137,68,36,12,137,84,36,8,137,76,36,4,137,52,36,232,97,70,4,0,141,69,152,137, 4,36,232,1,226,255,255,137,69,244,131,125,244,0,15,133,117,255,255,255,131,196,112,91,94,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,228,211,6,0,243,15,16,0,15,46,69,12,117,4,122,2,235,23,141,131,232,211,6,0,139,0,137,68,36,4,139,69,8,137, 4,36,232,247,69,0,0,139,69,8,137,4,36,232,8,85,4,0,139,69,8,137,4,36,232,60,179,0,0,139,69,8,137,4,36,232,136,182,0,0,139,85,8,139,130,160,0,0,0,131,224,247,137,130,160,0,0,0,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,131,125,16,3, 126,100,139,69,20,131,192,24,137,69,240,139,69,240,139,0,131,248,2,117,81,232,236,219,255,255,137,4,36,232,59,220,255,255,137,69,236,139,69,236,139,72,8,139,69,236,139,80,4,139,69,240,139,64,4,199,68,36,12,1,0,0,0,137,76,36,8,137,84,36,4,137,4,36,232, 76,182,3,0,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,232,176,223,255,255,139,69,8,139,128,160,0,0,0,193,232,4,131,224,1,15,182,192,152,243,15,42,192,243,15,17,68,36,4,139,69,8,137,4,36,232,240,254,255,255,141,131,23,105,6,0,137,4,36,232,177,23, 4,0,139,64,4,137,69,244,131,125,244,0,117,16,141,131,143,106,6,0,137,4,36,232,19,20,5,0,235,82,139,69,244,139,16,141,131,31,225,6,0,139,0,139,0,57,194,116,16,141,131,175,106,6,0,137,4,36,232,240,19,5,0,235,47,139,69,244,137,69,232,139,85,8,139,69,232, 137,66,40,139,85,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,139,69,232,137,4,36,232,200,121,2,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,174,105,6,0,137,4,36,232,34,23,4,0,137,69,240,139,69,8,139,64,28,137, 69,244,235,67,139,69,244,139,16,141,131,254,223,6,0,139,0,139,0,57,194,117,39,139,69,244,137,4,36,232,169,7,0,0,133,192,116,13,139,69,244,137,4,36,232,236,0,0,0,235,11,139,69,244,137,4,36,232,157,255,255,255,139,69,244,139,64,4,137,69,244,131,125,244, 0,117,183,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,54,105,6,0,137,4,36,232,170,22,4,0,137,69,240,139,69,8,139,64,28,137,69,244,235,54,139,69,244,139,16,141,131,134,223,6,0,139,0,139,0,57,194,117,26,139,69,244,137,4,36,232, 49,7,0,0,133,192,117,11,139,69,244,137,4,36,232,170,255,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,117,196,139,69,8,139,64,28,137,69,244,235,78,139,69,244,139,16,141,131,134,223,6,0,139,0,139,0,57,194,116,50,139,69,244,139,85,240,137,84,36, 4,137,4,36,232,218,37,4,0,133,192,116,28,139,69,244,141,147,38,92,6,0,137,84,36,8,139,85,240,137,84,36,4,137,4,36,232,254,34,4,0,139,69,244,139,64,4,137,69,244,131,125,244,0,117,172,131,196,36,91,201,195,85,137,229,131,236,40,139,69,8,137,4,36,232,173, 254,255,255,139,69,8,137,4,36,232,26,255,255,255,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,139,69,12,139,16,141,69,240,137,68,36,20,141,69,244,137,68,36,16,141,69,232,137,68,36,12,141,69,236,137,68,36,8,141,131,87,104,6,0,137,68,36,4,137,20, 36,232,205,216,6,0,131,248,3,126,56,139,69,16,139,16,141,69,224,137,68,36,20,141,69,228,137,68,36,16,141,69,216,137,68,36,12,141,69,220,137,68,36,8,141,131,87,104,6,0,137,68,36,4,137,20,36,232,149,216,6,0,131,248,3,127,14,141,131,99,104,6,0,137,4,36, 232,46,20,5,0,139,69,236,131,248,5,126,59,139,69,232,131,248,5,126,51,139,85,224,139,69,232,141,52,2,139,85,228,139,69,236,141,4,2,139,85,224,139,77,228,137,116,36,16,137,68,36,12,137,84,36,8,137,76,36,4,139,69,8,137,4,36,232,231,238,255,255,131,196, 64,91,94,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,85,8,141,131,76,222,6,0,139,0,137,16,139,69,8,137,4,36,232,94,81,4,0,139,85,8,139,130,160,0,0,0,131,224,247,137,130,160,0,0,0,139,69,8,137,4,36,232,128,175,0,0,139,69,8,137,4,36,232,204,178, 0,0,131,196,20,91,201,195,85,137,229,131,236,8,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,232,83,216,255,255,137,69,240,139,69,8,139,0,15,182,0,132,192,117,17,141,131,67,103,6,0,137,4,36,232,125,20,4,0,137,69,8,199,69,192,1,0,0,0,141,131,193,207, 6,0,139,0,137,69,196,141,69,192,131,192,8,199,0,1,0,0,0,141,69,192,141,80,8,141,131,101,210,6,0,139,0,137,66,4,141,69,192,131,192,16,199,0,1,0,0,0,141,69,192,141,80,16,141,131,105,210,6,0,139,0,137,66,4,141,69,192,131,192,24,199,0,1,0,0,0,141,69,192, 141,80,24,141,131,93,210,6,0,139,0,137,66,4,141,69,192,131,192,32,199,0,2,0,0,0,141,69,192,141,80,32,139,69,8,137,66,4,141,69,192,131,192,40,199,0,1,0,0,0,141,69,192,141,80,40,141,131,197,207,6,0,139,0,137,66,4,141,69,192,137,68,36,12,199,68,36,8,6,0, 0,0,199,68,36,4,0,0,0,0,199,4,36,0,0,0,0,232,92,225,255,255,137,69,244,139,85,244,139,69,240,137,66,40,141,131,197,207,6,0,139,0,137,68,36,4,139,69,244,137,4,36,232,199,250,255,255,139,69,244,131,196,84,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0, 91,141,131,166,206,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,201,64,0,0,131,196,20,91,201,195,85,137,229,131,236,24,139,69,20,139,0,141,80,50,139,69,20,137,16,139,69,24,139,0,141,80,50,139,69,24,137,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91, 131,125,16,0,116,44,139,69,20,139,0,131,248,2,117,34,139,69,20,139,64,4,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,232,208,218,255,255,233,156,0,0,0,131,125,16,0,116,113,139,69,20,139,0,131,248,9,117,103,139,69,8,137,4,36,232,247,214,255,255,137, 69,244,139,69,8,137,4,36,232,195,214,255,255,139,69,244,139,72,8,139,69,244,139,80,4,139,69,20,139,64,4,199,68,36,12,1,0,0,0,137,76,36,8,137,84,36,4,137,4,36,232,253,176,3,0,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,232,97,218,255,255,139,69, 8,137,4,36,232,138,214,255,255,235,37,141,131,238,99,6,0,137,4,36,232,125,18,4,0,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,232,47,218,255,255,131,196,36,91,201,195,85,137,229,83,129,236,164,1,0,0,232,0,0,0,0,91,139,69,8,137,133,148,254,255,255, 141,131,22,219,6,0,139,0,139,16,137,85,244,49,210,232,236,213,255,255,137,133,232,254,255,255,141,131,46,219,6,0,139,0,57,133,148,254,255,255,117,117,141,131,220,162,6,0,137,4,36,232,15,18,4,0,137,133,228,254,255,255,141,131,154,4,7,0,139,0,137,193,141, 80,1,141,131,154,4,7,0,137,16,139,133,228,254,255,255,139,0,137,76,36,20,137,68,36,16,141,131,1,101,6,0,137,68,36,12,199,68,36,8,255,0,0,0,199,68,36,4,0,0,0,0,141,133,245,254,255,255,137,4,36,232,209,210,6,0,141,133,245,254,255,255,137,4,36,232,174,17, 4,0,137,133,148,254,255,255,141,131,118,205,6,0,243,15,16,0,15,46,69,12,115,2,235,11,141,131,202,207,6,0,139,0,137,69,12,199,133,156,254,255,255,1,0,0,0,141,131,114,205,6,0,139,0,137,133,160,254,255,255,141,133,156,254,255,255,131,192,8,199,0,1,0,0,0, 141,133,156,254,255,255,141,80,8,141,131,22,208,6,0,139,0,137,66,4,141,133,156,254,255,255,131,192,16,199,0,1,0,0,0,141,133,156,254,255,255,141,80,16,141,131,30,208,6,0,139,0,137,66,4,141,133,156,254,255,255,131,192,24,199,0,1,0,0,0,141,133,156,254,255, 255,141,80,24,141,131,34,208,6,0,139,0,137,66,4,141,133,156,254,255,255,131,192,32,199,0,2,0,0,0,141,133,156,254,255,255,141,80,32,139,133,148,254,255,255,137,66,4,141,133,156,254,255,255,131,192,40,199,0,1,0,0,0,141,133,156,254,255,255,141,80,40,141, 131,114,205,6,0,139,0,137,66,4,141,133,156,254,255,255,137,68,36,12,199,68,36,8,6,0,0,0,199,68,36,4,0,0,0,0,199,4,36,0,0,0,0,232,67,222,255,255,137,133,236,254,255,255,139,149,236,254,255,255,139,133,232,254,255,255,137,66,40,141,131,118,205,6,0,243, 15,16,8,243,15,16,69,12,15,46,193,119,2,235,32,243,15,16,69,12,141,131,118,205,6,0,243,15,16,8,15,40,208,243,15,92,209,243,15,17,149,144,254,255,255,235,18,141,131,118,205,6,0,243,15,16,0,243,15,17,133,144,254,255,255,141,131,38,208,6,0,139,0,137,68, 36,36,141,131,42,208,6,0,139,0,137,68,36,32,141,131,46,208,6,0,139,0,137,68,36,28,141,131,38,208,6,0,139,0,137,68,36,24,141,131,118,205,6,0,139,0,137,68,36,20,243,15,16,149,144,254,255,255,243,15,17,84,36,16,141,131,146,206,6,0,139,0,137,68,36,12,141, 131,114,205,6,0,139,0,137,68,36,8,141,131,46,219,6,0,139,0,137,68,36,4,139,133,236,254,255,255,137,4,36,232,51,228,255,255,137,133,240,254,255,255,141,131,114,205,6,0,139,0,137,68,36,16,139,69,12,137,68,36,12,141,131,166,218,6,0,139,0,137,68,36,8,139, 133,148,254,255,255,137,68,36,4,139,133,240,254,255,255,137,4,36,232,146,108,255,255,141,131,114,205,6,0,139,0,137,68,36,4,139,133,236,254,255,255,137,4,36,232,161,246,255,255,139,133,236,254,255,255,141,147,22,219,6,0,139,18,139,77,244,51,10,116,5,232, 113,208,6,0,129,196,164,1,0,0,91,201,195,85,137,229,131,236,8,139,69,8,139,128,156,0,0,0,133,192,15,149,192,15,182,192,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,139,69,8,139,64,8,133,192,116,19,139,69,8,139,64,8,137,4,36,232,23,172,3,0,137,69, 220,235,7,199,69,220,0,0,0,0,139,69,220,137,69,244,139,69,8,139,64,8,133,192,116,19,139,69,8,139,64,8,137,4,36,232,224,171,3,0,137,69,224,235,7,199,69,224,0,0,0,0,139,69,224,137,69,240,131,125,240,0,116,43,139,69,244,139,0,131,248,2,117,33,139,69,244, 139,112,4,141,131,178,159,6,0,137,4,36,232,174,14,4,0,57,198,117,9,199,69,228,1,0,0,0,235,7,199,69,228,0,0,0,0,139,69,228,137,69,236,139,69,236,131,196,48,91,94,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,139,69,8,139,64,8,133,192,116,19,139,69, 8,139,64,8,137,4,36,232,109,171,3,0,137,69,216,235,7,199,69,216,0,0,0,0,139,69,216,137,69,244,139,69,8,139,64,8,133,192,116,19,139,69,8,139,64,8,137,4,36,232,54,171,3,0,137,69,220,235,7,199,69,220,0,0,0,0,139,69,220,137,69,240,131,125,240,0,116,43,139, 69,244,139,0,131,248,2,117,33,139,69,244,139,112,4,141,131,78,95,6,0,137,4,36,232,4,14,4,0,57,198,117,9,199,69,224,1,0,0,0,235,7,199,69,224,0,0,0,0,139,69,224,137,69,236,139,69,8,139,128,160,0,0,0,37,0,2,0,0,133,192,116,9,199,69,228,0,0,0,0,235,13,131, 125,236,0,15,148,192,15,182,192,137,69,228,139,69,228,131,196,48,91,94,201,195,85,137,229,131,236,40,139,69,8,139,64,40,133,192,116,15,139,69,8,137,4,36,232,80,254,255,255,133,192,116,8,139,69,8,137,69,244,235,17,139,69,8,139,64,40,137,4,36,232,203,255, 255,255,137,69,244,139,69,244,201,195,85,137,229,86,83,129,236,144,0,0,0,232,0,0,0,0,91,141,131,100,71,6,0,137,4,36,232,92,13,4,0,137,69,232,139,69,8,137,4,36,232,238,63,4,0,137,198,139,69,8,137,4,36,232,72,62,4,0,137,116,36,12,137,68,36,8,139,69,16, 137,68,36,4,139,69,12,137,4,36,232,183,42,255,255,137,69,228,139,69,8,139,64,28,137,69,240,235,69,139,69,240,137,4,36,232,56,61,4,0,137,69,236,131,125,236,0,116,40,139,69,240,139,85,232,137,84,36,4,137,4,36,232,157,28,4,0,133,192,116,18,139,69,236,137, 68,36,4,139,69,228,137,4,36,232,244,42,255,255,139,69,240,139,64,4,137,69,240,131,125,240,0,117,181,139,69,8,137,68,36,4,141,69,136,137,4,36,232,160,213,255,255,235,61,139,69,148,139,85,140,137,68,36,4,137,20,36,232,238,63,4,0,133,192,116,39,139,69,168, 139,85,152,139,77,148,139,117,140,137,68,36,16,137,84,36,12,137,76,36,8,137,116,36,4,139,69,228,137,4,36,232,131,43,255,255,141,69,136,137,4,36,232,144,213,255,255,137,69,244,131,125,244,0,117,175,139,69,228,137,4,36,232,129,52,255,255,129,196,144,0, 0,0,91,94,201,195,85,137,229,131,236,24,139,69,12,137,68,36,8,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,185,254,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,111,213,6,0,139,0,139,0,133,192,116,7,232,194,40,255,255,235,14,141,131,219, 94,6,0,137,4,36,232,242,164,4,0,232,0,41,255,255,141,131,139,213,6,0,139,0,139,0,137,69,244,235,39,199,68,36,8,0,0,0,0,199,68,36,4,1,0,0,0,139,69,244,137,4,36,232,88,254,255,255,139,69,244,139,128,152,0,0,0,137,69,244,131,125,244,0,117,211,141,131,111, 213,6,0,139,0,199,0,1,0,0,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,234,212,6,0,139,0,139,0,133,192,116,33,232,61,40,255,255,141,131,102,94,6,0,137,4,36,232,111,164,4,0,141,131,234,212,6,0,139,0,199,0,0,0,0,0,131,196,20, 91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,168,212,6,0,139,0,139,0,137,69,244,131,125,244,0,116,5,232,153,255,255,255,139,69,244,131,196,20,91,201,195,85,137,229,131,236,8,131,125,8,0,116,5,232,250,254,255,255,201,195,85,137,229,83,131, 236,4,232,0,0,0,0,91,141,131,103,212,6,0,139,0,139,0,133,192,116,5,232,216,254,255,255,131,196,4,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,131,125,16,0,116,107,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,100,141,3,0,137, 69,244,131,125,244,0,116,33,141,131,65,212,6,0,139,0,139,0,133,192,117,19,199,4,36,1,0,0,0,232,186,121,4,0,232,125,254,255,255,235,67,131,125,244,0,117,61,141,131,65,212,6,0,139,0,139,0,133,192,116,47,232,231,254,255,255,199,4,36,0,0,0,0,232,142,121, 4,0,235,28,141,131,65,212,6,0,139,0,139,0,137,68,36,4,141,131,206,93,6,0,137,4,36,232,45,4,5,0,131,196,36,91,201,195,85,137,229,131,236,24,139,69,12,139,0,137,69,244,199,69,236,0,0,0,0,139,69,244,139,64,28,137,69,240,235,25,139,69,240,139,0,59,69,8,117, 6,139,69,240,137,69,236,139,69,240,139,64,4,137,69,240,131,125,240,0,117,225,139,69,244,139,80,40,139,69,12,137,16,139,69,236,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,4,36,232,31,236,255,255,137,69,240,139,69,8,139,64,28,137,69,244, 233,197,0,0,0,131,125,240,0,15,132,141,0,0,0,139,69,244,139,16,141,131,98,211,6,0,139,0,139,0,57,194,117,122,131,125,12,1,117,47,139,69,8,137,4,36,232,224,235,255,255,133,192,15,132,134,0,0,0,199,68,36,8,1,0,0,0,139,69,8,137,68,36,4,139,69,244,137,4, 36,232,250,23,0,0,235,106,131,125,12,2,117,43,139,69,8,137,4,36,232,171,235,255,255,133,192,116,85,199,68,36,8,0,0,0,0,139,69,8,137,68,36,4,139,69,244,137,4,36,232,201,23,0,0,235,57,139,85,244,139,69,8,137,68,36,4,137,20,36,232,200,239,1,0,235,37,139, 69,244,139,16,141,131,214,210,6,0,139,0,139,0,57,194,117,18,139,85,244,139,69,12,137,68,36,4,137,20,36,232,27,255,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,15,133,49,255,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91, 141,131,112,210,6,0,139,0,139,0,137,69,244,235,30,139,69,12,137,68,36,4,139,69,244,137,4,36,232,212,254,255,255,139,69,244,139,128,152,0,0,0,137,69,244,131,125,244,0,117,220,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,126,123, 6,0,137,4,36,232,182,8,4,0,137,69,236,139,69,8,139,64,28,137,69,244,233,155,0,0,0,139,69,244,137,4,36,232,196,56,4,0,137,69,232,131,125,232,0,116,126,139,69,232,139,64,24,37,0,0,3,0,61,0,0,1,0,117,108,139,69,232,139,64,8,137,4,36,232,109,165,3,0,131, 248,1,126,89,139,69,232,139,64,8,137,4,36,232,103,165,3,0,137,69,228,139,69,228,139,0,131,248,2,117,62,139,69,228,131,192,8,139,0,131,248,2,117,49,139,69,228,139,64,4,59,69,236,117,38,139,69,228,131,192,8,139,64,4,137,4,36,232,77,4,2,0,137,69,240,139, 69,12,137,68,36,4,139,69,240,137,4,36,232,252,254,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,15,133,91,255,255,255,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,214,254,255,255,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141, 131,48,250,6,0,139,0,137,4,36,232,0,61,4,0,137,69,244,139,69,244,199,64,32,1,0,0,0,232,113,203,255,255,137,194,139,69,244,137,80,28,139,69,244,131,196,36,91,201,195,85,137,229,131,236,8,139,69,8,199,64,32,0,0,0,0,201,195,85,137,229,83,131,236,36,232, 0,0,0,0,91,139,69,8,139,64,28,137,69,244,233,146,0,0,0,139,69,244,139,16,141,131,222,249,6,0,139,0,57,194,117,83,141,131,78,88,6,0,137,4,36,232,91,7,4,0,137,68,36,8,141,131,222,152,6,0,137,68,36,4,139,69,12,137,4,36,232,229,156,3,0,139,69,244,139,64, 8,137,68,36,4,139,69,12,137,4,36,232,56,158,3,0,141,131,166,86,6,0,137,68,36,4,139,69,12,137,4,36,232,187,156,3,0,235,37,139,69,244,139,16,141,131,86,208,6,0,139,0,139,0,57,194,117,18,139,85,244,139,69,12,137,68,36,4,137,20,36,232,92,255,255,255,139, 69,244,139,64,4,137,69,244,131,125,244,0,15,133,100,255,255,255,131,196,36,91,201,195,85,137,229,87,86,83,131,236,28,232,0,0,0,0,91,139,69,8,137,4,36,232,215,222,4,0,133,192,116,11,139,69,12,198,0,0,233,177,0,0,0,184,255,255,255,255,131,248,255,116,50, 186,255,255,255,255,139,69,16,131,232,4,137,193,141,131,23,208,6,0,139,0,139,0,139,0,137,84,36,12,137,76,36,8,137,68,36,4,139,69,12,137,4,36,232,168,199,6,0,235,39,139,69,16,131,232,4,137,194,141,131,23,208,6,0,139,0,139,0,139,0,137,84,36,8,137,68,36, 4,139,69,12,137,4,36,232,158,205,255,255,139,85,12,131,234,3,139,69,16,141,4,2,198,0,0,184,255,255,255,255,131,248,255,116,32,184,255,255,255,255,137,68,36,8,141,131,179,150,6,0,137,68,36,4,139,69,12,137,4,36,232,54,199,6,0,235,21,141,131,179,150,6,0, 137,68,36,4,139,69,12,137,4,36,232,122,205,255,255,184,255,255,255,255,131,248,255,116,53,191,255,255,255,255,139,117,16,139,69,12,137,4,36,232,48,201,6,0,137,242,41,194,137,208,137,124,36,12,137,68,36,8,139,69,8,137,68,36,4,139,69,12,137,4,36,232,238, 198,6,0,235,42,139,117,16,139,69,12,137,4,36,232,0,201,6,0,137,242,41,194,137,208,137,68,36,8,139,69,8,137,68,36,4,139,69,12,137,4,36,232,52,205,255,255,139,85,12,74,139,69,16,141,4,2,198,0,0,131,196,28,91,94,95,201,195,85,137,229,83,129,236,36,4,0,0, 232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,139,69,20,137,133,236,251,255,255,141,131,54,206,6,0,139,0,139,16,137,85,244,49,210,139,133,244,251,255,255,137,4,36,232,72,201,255,255,137,133,4,252,255,255,199,133,8, 252,255,255,0,0,0,0,233,76,2,0,0,139,133,236,251,255,255,137,68,36,8,139,69,16,137,68,36,4,139,133,8,252,255,255,137,4,36,232,186,135,3,0,139,0,137,133,0,252,255,255,139,133,8,252,255,255,64,59,69,16,125,113,141,131,186,179,6,0,137,68,36,4,139,133,0, 252,255,255,137,4,36,232,27,200,6,0,133,192,117,85,139,149,8,252,255,255,66,139,133,236,251,255,255,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,106,135,3,0,139,16,139,133,4,252,255,255,139,64,16,199,68,36,8,0,0,0,0,137,84,36,4,137,4,36,232,70,223, 4,0,137,194,139,133,4,252,255,255,137,80,16,255,133,8,252,255,255,233,162,1,0,0,139,133,8,252,255,255,64,59,69,16,15,141,145,0,0,0,141,131,87,88,6,0,137,68,36,4,139,133,0,252,255,255,137,4,36,232,154,199,6,0,133,192,117,117,139,149,8,252,255,255,66,139, 133,236,251,255,255,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,233,134,3,0,139,16,199,68,36,8,232,3,0,0,141,133,12,252,255,255,137,68,36,4,137,20,36,232,63,253,255,255,139,133,4,252,255,255,139,80,16,199,68,36,8,0,0,0,0,141,133,12,252,255,255,137, 68,36,4,137,20,36,232,165,222,4,0,137,194,139,133,4,252,255,255,137,80,16,255,133,8,252,255,255,233,1,1,0,0,139,133,8,252,255,255,64,59,69,16,125,91,141,131,96,88,6,0,137,68,36,4,139,133,0,252,255,255,137,4,36,232,253,198,6,0,133,192,117,63,139,149,8, 252,255,255,66,139,133,236,251,255,255,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,76,134,3,0,139,0,137,68,36,4,139,133,244,251,255,255,137,4,36,232,192,182,4,0,255,133,8,252,255,255,233,154,0,0,0,139,133,8,252,255,255,64,59,69,16,125,118,141,131, 101,88,6,0,137,68,36,4,139,133,0,252,255,255,137,4,36,232,150,198,6,0,133,192,117,90,139,149,8,252,255,255,66,139,133,236,251,255,255,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,229,133,3,0,139,16,199,68,36,8,232,3,0,0,141,133,12,252,255,255,137, 68,36,4,137,20,36,232,59,252,255,255,141,133,12,252,255,255,137,68,36,4,199,4,36,0,0,0,0,232,59,182,4,0,255,133,8,252,255,255,235,24,139,133,0,252,255,255,137,68,36,4,141,131,110,88,6,0,137,4,36,232,160,252,4,0,255,133,8,252,255,255,139,133,8,252,255, 255,59,69,16,15,140,165,253,255,255,141,131,54,206,6,0,139,0,139,85,244,51,16,116,5,232,207,195,6,0,129,196,36,4,0,0,91,201,195,85,137,229,83,129,236,68,8,0,0,232,0,0,0,0,91,139,69,8,137,133,244,247,255,255,139,69,12,137,133,240,247,255,255,139,69,16, 137,133,236,247,255,255,139,69,20,137,133,232,247,255,255,139,69,24,137,133,228,247,255,255,141,131,97,203,6,0,139,0,139,16,137,85,244,49,210,199,133,28,248,255,255,255,255,255,255,141,133,28,248,255,255,137,68,36,24,139,69,32,137,68,36,20,139,69,28, 137,68,36,16,139,133,228,247,255,255,137,68,36,12,139,133,232,247,255,255,137,68,36,8,139,133,236,247,255,255,137,68,36,4,139,133,240,247,255,255,137,4,36,232,67,228,4,0,133,192,116,17,139,141,28,248,255,255,137,141,216,247,255,255,233,108,2,0,0,139, 133,244,247,255,255,137,133,24,248,255,255,233,215,1,0,0,139,133,24,248,255,255,139,128,156,0,0,0,133,192,15,132,180,1,0,0,139,133,244,247,255,255,137,133,16,248,255,255,235,15,139,133,16,248,255,255,139,64,40,137,133,16,248,255,255,131,189,16,248,255, 255,0,116,13,139,133,16,248,255,255,139,64,40,133,192,117,219,131,189,16,248,255,255,0,116,24,139,133,16,248,255,255,137,4,36,232,18,199,255,255,139,0,137,133,220,247,255,255,235,12,141,131,185,72,6,0,137,133,220,247,255,255,139,149,220,247,255,255,137, 149,12,248,255,255,139,133,24,248,255,255,139,128,156,0,0,0,139,64,16,137,133,20,248,255,255,233,33,1,0,0,139,133,20,248,255,255,139,64,4,137,4,36,232,89,217,4,0,133,192,116,9,198,133,36,248,255,255,0,235,71,199,68,36,8,232,3,0,0,139,133,12,248,255,255, 137,68,36,4,141,133,36,248,255,255,137,4,36,232,110,196,6,0,198,133,9,252,255,255,0,199,68,36,8,232,3,0,0,141,131,133,146,6,0,137,68,36,4,141,133,36,248,255,255,137,4,36,232,13,194,6,0,141,133,36,248,255,255,137,4,36,232,45,196,6,0,137,194,184,232,3, 0,0,137,193,41,209,137,202,139,133,20,248,255,255,139,64,4,199,68,36,12,232,3,0,0,137,84,36,8,137,68,36,4,141,133,36,248,255,255,137,4,36,232,215,193,6,0,198,133,11,252,255,255,0,139,69,32,137,68,36,24,139,69,28,137,68,36,20,139,133,228,247,255,255,137, 68,36,16,139,133,232,247,255,255,137,68,36,12,139,133,236,247,255,255,137,68,36,8,139,133,240,247,255,255,137,68,36,4,141,133,36,248,255,255,137,4,36,232,171,222,4,0,137,133,28,248,255,255,139,133,28,248,255,255,133,192,120,17,139,133,28,248,255,255, 137,133,216,247,255,255,233,174,0,0,0,139,133,20,248,255,255,139,0,137,133,20,248,255,255,131,189,20,248,255,255,0,15,133,210,254,255,255,139,133,24,248,255,255,139,64,40,137,133,24,248,255,255,131,189,24,248,255,255,0,15,133,28,254,255,255,131,189,244, 247,255,255,0,116,24,139,133,244,247,255,255,137,4,36,232,117,197,255,255,139,0,137,133,224,247,255,255,235,12,141,147,185,72,6,0,137,149,224,247,255,255,139,69,32,137,68,36,24,139,69,28,137,68,36,20,139,133,228,247,255,255,137,68,36,16,139,133,232,247, 255,255,137,68,36,12,139,133,236,247,255,255,137,68,36,8,139,133,240,247,255,255,137,68,36,4,139,141,224,247,255,255,137,12,36,232,230,228,4,0,137,133,216,247,255,255,139,133,216,247,255,255,141,147,97,203,6,0,139,18,139,77,244,51,10,116,5,232,145,192, 6,0,129,196,68,8,0,0,91,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,141,179,73,226,255,255,141,131,52,109,6,0,137,4,36,232,74,255,3,0,199,68,36,20,0,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,164,0,0,0,137,116,36,8,199,68,36,4,0,0,0,0,137,4,36, 232,2,244,3,0,137,194,141,131,44,200,6,0,139,0,137,16,141,131,52,109,6,0,137,4,36,232,4,255,3,0,137,194,141,139,2,205,255,255,141,131,200,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,189,247,3,0, 141,131,126,82,6,0,137,4,36,232,196,254,3,0,137,194,141,139,1,231,255,255,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,125,247,3,0,141,131,92,109,6,0,137,4,36,232,132,254,3,0,137,194,141, 139,81,210,255,255,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,61,247,3,0,141,131,160,94,6,0,137,4,36,232,68,254,3,0,137,194,141,131,160,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199, 68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,251,246,3,0,141,131,28,110,6,0,137,4,36,232,2,254,3,0,137,194,141,131,124,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8, 137,76,36,4,137,4,36,232,185,246,3,0,141,131,156,121,6,0,137,4,36,232,192,253,3,0,137,194,141,131,208,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,119,246,3,0,141,131,135, 82,6,0,137,4,36,232,126,253,3,0,137,194,141,131,188,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,53,246,3,0,141,131,146,82,6,0,137,4,36,232,60,253,3,0,137,194,141,131,140, 200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,243,245,3,0,141,131,48,80,6,0,137,4,36,232,250,252,3,0,137,194,141,139,101,215,255,255,141,131,44,200,6,0,139,0,139,0,199,68, 36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,179,245,3,0,141,131,210,112,6,0,137,4,36,232,186,252,3,0,137,194,141,131,100,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8, 137,76,36,4,137,4,36,232,113,245,3,0,141,131,154,82,6,0,137,4,36,232,120,252,3,0,137,194,141,131,136,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,47,245,3,0,141,131,158,82, 6,0,137,4,36,232,54,252,3,0,137,194,141,131,212,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,237,244,3,0,141,131,165,82,6,0,137,4,36,232,244,251,3,0,137,194,141,131,128,200, 6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,171,244,3,0,141,131,173,82,6,0,137,4,36,232,178,251,3,0,137,194,141,131,164,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36, 16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,105,244,3,0,141,131,181,82,6,0,137,4,36,232,112,251,3,0,137,194,141,131,148,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137, 76,36,4,137,4,36,232,39,244,3,0,141,131,187,82,6,0,137,4,36,232,46,251,3,0,137,194,141,131,192,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,229,243,3,0,141,131,193,82,6,0, 137,4,36,232,236,250,3,0,137,194,141,131,116,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,163,243,3,0,141,131,200,82,6,0,137,4,36,232,170,250,3,0,137,194,141,131,204,200, 6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,97,243,3,0,141,131,207,82,6,0,137,4,36,232,104,250,3,0,137,194,141,131,180,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36, 16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,31,243,3,0,141,131,215,82,6,0,137,4,36,232,38,250,3,0,137,194,141,131,152,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76, 36,4,137,4,36,232,221,242,3,0,141,131,221,82,6,0,137,4,36,232,228,249,3,0,137,194,141,131,112,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,155,242,3,0,141,131,228,82,6,0, 137,4,36,232,162,249,3,0,137,194,141,139,144,230,255,255,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,91,242,3,0,141,131,220,81,6,0,137,4,36,232,98,249,3,0,137,194,141,139,100,233,255,255, 141,131,44,200,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,35,242,3,0,141,131,232,82,6,0,137,4,36,232,42,249,3,0,137,194,141,139,236,216,255,255,141,131,44,200,6,0,139,0,139,0,199,68,36,28,0,0,0,0,199,68,36,24,1,0,0,0,199, 68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,203,241,3,0,141,131,242,82,6,0,137,4,36,232,210,248,3,0,137,194,141,139,130,233,255,255,141,131,44,200,6,0,139,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,2, 0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,131,241,3,0,141,131,251,82,6,0,137,4,36,232,138,248,3,0,137,194,141,131,156,200,6,0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4, 137,4,36,232,65,241,3,0,141,131,140,84,6,0,137,4,36,232,72,248,3,0,137,194,141,139,184,224,255,255,141,131,44,200,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,9,241,3,0,141,131,1,83,6,0,137,4,36,232,16,248,3,0,137,194,141, 139,214,222,255,255,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,201,240,3,0,141,131,5,83,6,0,137,4,36,232,208,247,3,0,137,194,141,139,233,220,255,255,141,131,44,200,6,0,139,0,139,0,199, 68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,137,240,3,0,141,131,108,200,6,0,139,16,141,131,44,200,6,0,139,0,139,0,137,84,36,4,137,4,36,232,5,246,3,0,141,131,168,185,6,0,137,4,36,232,114,247,3,0,137,194,141,131,96,200,6, 0,139,8,141,131,44,200,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,49,240,3,0,141,131,144,124,6,0,137,4,36,232,56,247,3,0,141,147,179,234,255,255,199,68,36,12,0,0,0,0,199,68,36,8,7,0,0,0,137,68,36,4,137,20,36,232,34,239, 3,0,141,131,12,83,6,0,137,4,36,232,8,247,3,0,141,147,179,234,255,255,199,68,36,12,0,0,0,0,199,68,36,8,7,0,0,0,137,68,36,4,137,20,36,232,242,238,3,0,141,131,180,79,6,0,137,4,36,232,216,246,3,0,137,194,141,139,210,235,255,255,141,131,44,200,6,0,139,0,139, 0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,113,239,3,0,141,131,88,57,6,0,137,4,36,232,120,246,3,0,137,194,141,139,11,243,255,255, 141,131,44,200,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,57,239,3,0,141,131,254,73,6,0,137,4,36,232,64,246,3,0,137,194,141,139,30,236,255,255,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137, 84,36,8,137,76,36,4,137,4,36,232,249,238,3,0,141,131,234,143,6,0,137,4,36,232,0,246,3,0,141,147,255,236,255,255,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,199,68,36,8,7,0,0,0,137,68,36,4,137,20,36,232,226,237,3,0,141,179,184,247,255,255,141,187,120,247, 255,255,141,131,18,83,6,0,137,4,36,232,188,245,3,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,112,234,3,0,137,194,141,131,180,241,6,0,137,16,141,131,18,83,6,0,137,4,36, 232,116,245,3,0,137,194,141,139,223,249,255,255,141,131,44,200,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,45,238,3,0,232,127,187,0,0,232,80,125,0,0,232,53,176,1,0,131,196,60,91,94,95,201,195,85,137, 229,131,236,40,139,69,8,139,0,139,64,52,133,192,116,67,139,69,8,139,0,139,64,52,139,0,133,192,116,53,139,69,8,139,0,139,64,52,139,16,139,69,28,137,68,36,20,139,69,24,137,68,36,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139, 69,8,137,4,36,255,210,201,195,85,137,229,131,236,24,139,69,8,139,0,139,64,52,133,192,116,55,139,69,8,139,0,139,64,52,139,64,4,133,192,116,40,139,69,8,139,0,139,64,52,139,80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8, 137,4,36,255,210,201,195,85,137,229,131,236,24,139,69,8,139,0,139,64,52,133,192,116,48,139,69,8,139,0,139,64,52,139,64,8,133,192,116,33,139,69,8,139,0,139,64,52,139,80,8,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85, 137,229,131,236,24,139,69,8,139,0,139,64,52,133,192,116,48,139,69,8,139,0,139,64,52,139,64,12,133,192,116,33,139,69,8,139,0,139,64,52,139,80,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,131,236,24,139,69, 8,139,0,139,64,52,133,192,116,41,139,69,8,139,0,139,64,52,139,64,16,133,192,116,26,139,69,8,139,0,139,64,52,139,80,16,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,139,69,12,139,128,160,0,0,0,131,224, 1,133,192,15,133,68,1,0,0,139,69,12,139,128,160,0,0,0,37,0,1,0,0,133,192,15,132,46,1,0,0,139,69,12,139,128,160,0,0,0,37,128,0,0,0,133,192,15,132,24,1,0,0,139,69,12,139,64,40,133,192,15,132,10,1,0,0,139,69,8,139,16,141,131,17,189,6,0,139,0,139,0,57,194, 15,132,243,0,0,0,139,69,12,139,80,40,139,77,12,141,69,228,137,68,36,20,141,69,232,137,68,36,16,141,69,236,137,68,36,12,141,69,240,137,68,36,8,137,84,36,4,137,12,36,232,246,253,255,255,139,85,240,139,69,232,57,194,126,18,139,69,240,137,69,208,139,69,232, 137,69,240,139,69,208,137,69,232,139,85,236,139,69,228,57,194,126,18,139,69,236,137,69,208,139,69,228,137,69,236,139,69,208,137,69,228,141,69,212,137,68,36,20,141,69,216,137,68,36,16,141,69,220,137,68,36,12,141,69,224,137,68,36,8,139,69,12,137,68,36, 4,139,69,8,137,4,36,232,144,253,255,255,139,85,224,139,69,240,57,194,124,70,139,85,224,139,69,232,57,194,127,60,139,85,216,139,69,240,57,194,124,50,139,85,216,139,69,232,57,194,127,40,139,85,220,139,69,236,57,194,124,30,139,85,220,139,69,228,57,194,127, 20,139,85,212,139,69,236,57,194,124,10,139,85,212,139,69,228,57,194,126,12,199,69,192,0,0,0,0,233,180,0,0,0,139,69,8,137,4,36,232,126,34,4,0,137,69,244,131,125,244,0,15,132,149,0,0,0,139,69,12,139,128,160,0,0,0,131,224,1,133,192,117,109,139,69,244,139, 16,141,131,133,188,6,0,139,0,139,0,57,194,116,20,139,69,244,139,0,139,80,52,141,131,53,189,6,0,139,0,57,194,117,70,139,69,244,139,16,141,131,133,188,6,0,139,0,139,0,57,194,117,18,139,69,244,139,128,160,0,0,0,37,0,1,0,0,133,192,117,33,139,69,12,139,128, 160,0,0,0,37,128,0,0,0,133,192,116,24,139,69,244,139,64,24,37,0,0,3,0,133,192,117,9,199,69,196,1,0,0,0,235,7,199,69,196,0,0,0,0,139,69,196,137,69,192,235,7,199,69,192,1,0,0,0,139,69,192,131,196,100,91,201,195,85,137,229,131,236,24,139,69,8,139,0,139, 64,52,133,192,116,70,139,69,8,139,0,139,64,52,139,64,20,133,192,116,55,139,69,12,137,68,36,4,139,69,8,137,4,36,232,171,253,255,255,133,192,116,33,139,69,8,139,0,139,64,52,139,80,20,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210, 201,195,85,137,229,131,236,56,139,69,8,139,0,139,64,52,133,192,116,88,139,69,8,139,0,139,64,52,139,64,24,133,192,116,73,139,69,8,139,0,139,64,52,139,80,24,139,69,36,137,68,36,28,139,69,32,137,68,36,24,139,69,28,137,68,36,20,139,69,24,137,68,36,16,139, 69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,137,69,244,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,128,140,0,0,0,133,192,15,132,141,0,0,0,139,69,8,137,4, 36,232,186,4,0,0,139,69,8,139,144,140,0,0,0,139,66,80,131,200,32,137,66,80,139,69,8,139,144,140,0,0,0,139,69,16,137,66,60,139,69,8,139,144,140,0,0,0,139,69,20,137,66,64,139,69,8,139,144,140,0,0,0,139,69,24,137,66,68,139,69,8,139,144,140,0,0,0,139,69, 28,137,66,72,139,69,8,139,144,140,0,0,0,139,69,12,137,66,76,139,69,8,139,128,140,0,0,0,139,64,76,137,68,36,8,139,69,8,137,68,36,4,141,131,131,68,6,0,137,4,36,232,65,134,4,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,128, 140,0,0,0,133,192,116,55,139,69,8,139,144,140,0,0,0,139,66,80,131,224,223,137,66,80,139,69,8,139,128,140,0,0,0,139,64,76,137,68,36,8,139,69,8,137,68,36,4,141,131,250,67,6,0,137,4,36,232,234,133,4,0,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8, 139,128,140,0,0,0,133,192,116,51,139,69,8,139,128,140,0,0,0,139,64,16,137,69,244,235,28,139,69,244,139,0,59,69,12,117,9,199,69,228,1,0,0,0,235,22,139,69,244,139,64,4,137,69,244,131,125,244,0,117,222,199,69,228,0,0,0,0,139,69,228,201,195,85,137,229,83, 131,236,36,232,0,0,0,0,91,139,69,8,139,128,140,0,0,0,133,192,15,132,148,0,0,0,199,4,36,8,0,0,0,232,218,8,4,0,137,69,244,139,69,8,139,128,140,0,0,0,139,64,80,131,224,32,133,192,116,11,139,69,8,137,4,36,232,12,255,255,255,139,69,12,137,68,36,4,139,69,8, 137,4,36,232,81,255,255,255,133,192,116,14,141,131,121,67,6,0,137,4,36,232,230,237,4,0,139,69,8,139,128,140,0,0,0,139,80,16,139,69,244,137,80,4,139,85,244,139,69,12,137,2,139,69,8,139,144,140,0,0,0,139,69,244,137,66,16,199,68,36,8,1,0,0,0,139,69,8,137, 68,36,4,139,69,12,137,4,36,232,61,250,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,16,141,131,129,183,6,0,139,0,139,0,57,194,117,61,139,69,12,137,69,244,139,69,244,139,64,28,137,69,240,235,27,139,69,240,137,68,36, 4,139,69,244,137,4,36,232,189,255,255,255,139,69,240,139,64,4,137,69,240,131,125,240,0,117,223,139,69,244,137,4,36,232,116,2,0,0,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,69,244,0,0,0,0,141,131,170,224,6,0,199,0,1,0,0,0,139,69, 8,139,128,140,0,0,0,133,192,15,132,43,2,0,0,199,69,232,0,0,0,0,139,69,12,137,68,36,4,139,69,8,137,4,36,232,73,254,255,255,133,192,117,14,141,131,107,66,6,0,137,4,36,232,222,236,4,0,139,69,8,139,128,140,0,0,0,139,64,20,133,192,15,132,167,0,0,0,139,69, 12,137,68,36,4,139,69,8,137,4,36,232,185,187,1,0,137,69,228,139,69,8,139,128,140,0,0,0,139,64,20,59,69,228,117,88,139,69,8,139,128,140,0,0,0,139,64,80,131,224,16,133,192,116,43,139,69,228,137,69,232,139,69,8,137,4,36,232,16,131,0,0,137,4,36,232,138,88, 0,0,139,69,12,137,68,36,4,139,69,8,137,4,36,232,201,254,255,255,199,68,36,8,0,0,0,0,139,69,8,137,68,36,4,139,69,12,137,4,36,232,42,249,255,255,141,131,74,40,6,0,137,4,36,232,97,237,3,0,139,85,12,137,68,36,4,137,20,36,232,252,252,3,0,133,192,116,8,232, 222,225,255,255,137,69,244,139,69,8,139,128,140,0,0,0,139,64,16,137,69,240,139,69,240,139,0,59,69,12,117,76,139,69,8,139,144,140,0,0,0,139,69,8,139,128,140,0,0,0,139,64,16,139,64,4,137,66,16,139,69,240,139,16,199,68,36,8,0,0,0,0,139,69,8,137,68,36,4, 137,20,36,232,109,248,255,255,199,68,36,4,8,0,0,0,139,69,240,137,4,36,232,85,8,4,0,235,109,139,69,8,139,128,140,0,0,0,139,64,16,137,69,240,235,77,139,69,236,139,0,59,69,12,117,61,139,69,236,139,80,4,139,69,240,137,80,4,139,69,236,139,16,199,68,36,8,0, 0,0,0,139,69,8,137,68,36,4,137,20,36,232,21,248,255,255,199,68,36,4,8,0,0,0,139,69,236,137,4,36,232,253,7,4,0,235,21,139,69,236,137,69,240,139,69,240,139,64,4,137,69,236,131,125,236,0,117,164,131,125,232,0,116,91,141,69,220,137,68,36,8,141,69,224,137, 68,36,4,139,69,232,137,4,36,232,59,171,1,0,139,69,220,139,85,224,139,77,12,137,68,36,12,137,84,36,8,139,69,8,137,68,36,4,137,12,36,232,229,132,2,0,139,69,12,137,68,36,4,139,69,8,137,4,36,232,93,209,255,255,139,69,8,139,128,140,0,0,0,199,64,20,0,0,0,0, 131,125,244,0,116,12,199,4,36,1,0,0,0,232,196,224,255,255,141,131,170,224,6,0,199,0,0,0,0,0,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,139,128,140,0,0,0,133,192,116,77,235,29,139,69,8,139,128,140,0,0,0,139,64,16,139,0,137,68,36,4,139,69,8,137, 4,36,232,96,253,255,255,139,69,8,139,128,140,0,0,0,139,64,16,133,192,117,211,139,69,8,139,128,140,0,0,0,139,64,80,131,224,32,133,192,116,11,139,69,8,137,4,36,232,110,251,255,255,201,195,85,137,229,131,236,40,139,69,8,139,128,140,0,0,0,133,192,15,132, 189,0,0,0,139,69,8,137,4,36,232,124,255,255,255,139,69,8,139,64,28,133,192,15,132,164,0,0,0,199,4,36,8,0,0,0,232,221,4,4,0,137,69,244,139,69,8,139,64,28,137,69,240,139,69,8,139,144,140,0,0,0,139,69,244,137,66,16,139,85,244,139,69,240,137,2,199,68,36, 8,1,0,0,0,139,69,8,137,68,36,4,139,69,240,137,4,36,232,139,246,255,255,235,64,199,4,36,8,0,0,0,232,146,4,4,0,137,69,236,139,85,244,139,69,236,137,66,4,139,69,236,137,69,244,139,85,244,139,69,240,137,2,199,68,36,8,1,0,0,0,139,69,8,137,68,36,4,139,69,240, 137,4,36,232,73,246,255,255,139,69,240,139,64,4,137,69,240,131,125,240,0,117,177,139,69,244,199,64,4,0,0,0,0,201,195,85,137,229,131,236,24,139,69,8,139,64,28,137,69,244,199,69,240,0,0,0,0,235,12,255,69,240,139,69,244,139,64,4,137,69,244,131,125,244,0, 116,8,139,69,244,59,69,12,117,230,139,69,240,201,195,85,137,229,131,236,40,139,69,8,139,64,28,137,69,244,199,69,240,0,0,0,0,235,35,139,69,244,137,68,36,4,139,69,8,137,4,36,232,140,250,255,255,59,69,16,117,3,255,69,240,139,69,244,139,64,4,137,69,244,131, 125,244,0,116,8,139,69,244,59,69,12,117,207,139,69,240,201,195,85,137,229,131,236,40,139,69,8,139,64,28,137,69,244,199,69,240,0,0,0,0,235,28,139,69,240,59,69,12,117,8,139,69,244,137,69,228,235,25,139,69,244,139,64,4,137,69,244,255,69,240,131,125,244, 0,117,222,199,69,228,0,0,0,0,139,69,228,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,244,0,0,0,0,141,131,93,220,6,0,139,0,133,192,116,73,141,131,101,220,6,0,139,0,133,192,116,61,141,131,101,220,6,0,139,0,57,69,16,116,48,141,131,93,220,6,0,139, 8,141,131,101,220,6,0,139,16,141,131,105,220,6,0,139,0,199,68,36,8,0,0,0,0,137,84,36,4,137,4,36,255,209,199,69,244,1,0,0,0,141,147,105,220,6,0,139,69,8,137,2,141,147,93,220,6,0,139,69,12,137,2,141,147,101,220,6,0,139,69,16,137,2,141,131,97,220,6,0,199, 0,1,0,0,0,141,147,109,220,6,0,139,69,20,137,2,131,125,8,0,116,60,139,69,8,137,4,36,232,92,203,255,255,133,192,116,45,139,69,8,137,4,36,232,144,203,255,255,133,192,116,30,139,69,20,137,68,36,8,139,69,8,137,68,36,4,141,131,9,62,6,0,137,4,36,232,37,127, 4,0,235,20,131,125,244,0,116,14,141,131,36,62,6,0,137,4,36,232,15,127,4,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,8,0,116,13,141,131,108,219,6,0,139,0,57,69,8,117,38,141,131,67,61,6,0,137,68,36,12,199,68,36,8,0,0,0,0,199, 68,36,4,0,0,0,0,199,4,36,0,0,0,0,232,189,254,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,32,219,6,0,139,0,57,69,8,116,19,141,131,251,60,6,0,137,4,36,232,88,231,4,0,233,145,0,0,0,141,131,24,219,6,0,139,0,131,248,1,116, 16,141,131,9,61,6,0,137,4,36,232,56,231,4,0,235,116,141,131,20,219,6,0,139,8,141,131,28,219,6,0,139,16,141,131,32,219,6,0,139,0,199,68,36,8,1,0,0,0,137,84,36,4,137,4,36,255,209,139,69,8,137,4,36,232,71,202,255,255,133,192,116,48,139,69,8,137,4,36,232, 123,202,255,255,133,192,116,33,141,131,36,219,6,0,139,0,137,68,36,8,139,69,8,137,68,36,4,141,131,23,61,6,0,137,4,36,232,11,126,4,0,141,131,24,219,6,0,199,0,2,0,0,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,92,218,6,0,139,0, 57,69,8,116,19,141,131,55,60,6,0,137,4,36,232,148,230,4,0,233,145,0,0,0,141,131,84,218,6,0,139,0,131,248,2,116,16,141,131,69,60,6,0,137,4,36,232,116,230,4,0,235,116,141,131,80,218,6,0,139,8,141,131,88,218,6,0,139,16,141,131,92,218,6,0,139,0,199,68,36, 8,2,0,0,0,137,84,36,4,137,4,36,255,209,139,69,8,137,4,36,232,131,201,255,255,133,192,116,48,139,69,8,137,4,36,232,183,201,255,255,133,192,116,33,141,131,96,218,6,0,139,0,137,68,36,8,139,69,8,137,68,36,4,141,131,252,59,6,0,137,4,36,232,71,125,4,0,141, 131,84,218,6,0,199,0,1,0,0,0,131,196,20,91,201,195,85,137,229,131,236,40,199,4,36,16,0,0,0,232,149,0,4,0,137,69,244,139,85,244,139,69,12,137,2,139,85,244,139,69,16,137,66,4,139,85,244,139,69,20,137,66,8,139,85,244,139,69,24,137,66,12,139,69,244,201,195, 85,137,229,86,83,131,196,128,232,0,0,0,0,91,139,69,8,137,68,36,4,141,69,144,137,4,36,232,162,175,255,255,233,168,0,0,0,139,69,148,137,68,36,4,139,69,8,137,4,36,232,84,175,255,255,137,69,240,139,69,160,137,68,36,4,139,69,8,137,4,36,232,63,175,255,255, 137,69,236,243,15,42,69,240,15,46,69,12,122,2,116,2,235,111,139,69,156,243,15,42,192,15,46,69,16,122,2,116,2,235,94,243,15,42,69,236,15,46,69,20,122,2,116,2,235,79,139,69,176,243,15,42,192,15,46,69,24,122,2,116,2,235,62,139,69,244,137,68,36,8,139,69, 8,137,68,36,4,141,131,108,59,6,0,137,4,36,232,77,124,4,0,139,69,176,139,85,160,139,77,156,139,117,148,137,68,36,12,137,84,36,8,137,76,36,4,137,52,36,232,134,19,4,0,235,24,141,69,144,137,4,36,232,36,175,255,255,137,69,244,131,125,244,0,15,133,64,255,255, 255,131,236,128,91,94,201,195,85,137,229,131,236,56,139,69,12,137,69,244,131,125,16,1,117,76,139,69,244,139,64,12,243,15,42,200,139,69,244,139,64,8,243,15,42,208,139,69,244,139,64,4,243,15,42,216,139,69,244,139,0,243,15,42,192,243,15,17,76,36,16,243, 15,17,84,36,12,243,15,17,92,36,8,243,15,17,68,36,4,139,69,8,137,4,36,232,29,95,0,0,235,107,131,125,16,2,117,76,139,69,244,139,64,12,243,15,42,200,139,69,244,139,64,8,243,15,42,208,139,69,244,139,64,4,243,15,42,216,139,69,244,139,0,243,15,42,192,243,15, 17,76,36,16,243,15,17,84,36,12,243,15,17,92,36,8,243,15,17,68,36,4,139,69,8,137,4,36,232,102,254,255,255,235,25,131,125,16,0,117,19,199,68,36,4,16,0,0,0,139,69,244,137,4,36,232,155,0,4,0,201,195,85,137,229,131,236,40,139,69,24,137,68,36,16,139,69,20, 137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,223,253,255,255,201,195,85,137,229,131,236,40,131,125,16,1,117,9,199,69,244,2,0,0,0,235,21,131,125,16,2,117,9,199,69,244,1,0,0,0,235,6,139,69,16,137,69,244,139,69,244,137, 68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,195,254,255,255,201,195,85,137,229,87,86,83,129,236,204,0,0,0,232,0,0,0,0,91,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,6,250,255,255,137,69,216,199,4,36,16,0,0,0,232,3,254,3,0,137, 69,228,139,85,228,139,69,12,137,66,12,139,69,228,199,64,8,0,0,0,0,232,17,109,3,0,137,194,139,69,228,137,80,4,139,69,8,137,68,36,4,141,133,116,255,255,255,137,4,36,232,35,173,255,255,233,50,1,0,0,139,133,120,255,255,255,137,68,36,4,139,69,8,137,4,36,232, 91,244,255,255,137,69,212,139,69,132,137,68,36,4,139,69,8,137,4,36,232,70,244,255,255,137,69,208,139,69,212,59,69,208,15,132,249,0,0,0,139,69,148,137,133,84,255,255,255,131,125,208,0,116,11,139,85,216,137,149,88,255,255,255,235,10,199,133,88,255,255, 255,0,0,0,0,139,69,132,137,194,139,69,208,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,66,249,255,255,139,149,88,255,255,255,1,194,137,149,92,255,255,255,139,69,128,137,133,96,255,255,255,131,125,212,0,116,11,139,85,216,137,149,100,255,255,255,235,10, 199,133,100,255,255,255,0,0,0,0,139,133,120,255,255,255,137,194,139,69,212,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,242,248,255,255,139,181,100,255,255,255,1,198,141,131,82,57,6,0,137,4,36,232,92,227,3,0,137,199,141,131,103,53,6,0,137,4,36,232,76, 227,3,0,137,194,139,69,228,139,72,4,139,133,84,255,255,255,137,68,36,28,139,133,92,255,255,255,137,68,36,24,139,133,96,255,255,255,137,68,36,20,137,116,36,16,137,124,36,12,137,84,36,8,141,131,151,82,6,0,137,68,36,4,137,12,36,232,171,120,3,0,141,133,116, 255,255,255,137,4,36,232,24,172,255,255,137,69,220,131,125,220,0,15,133,179,254,255,255,131,125,12,3,117,20,139,69,8,137,4,36,232,144,80,0,0,137,194,139,69,228,137,16,235,41,131,125,12,1,117,11,139,69,228,199,0,0,0,0,0,235,24,131,125,12,2,117,18,139, 69,8,137,4,36,232,101,80,0,0,137,194,139,69,228,137,16,139,69,228,129,196,204,0,0,0,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,12,137,69,244,139,69,244,139,64,12,137,69,240,131,125,16,1,15,133,76,1,0,0,131,125,240,1,117,28,141,131, 1,213,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,252,86,0,0,233,197,0,0,0,131,125,240,2,117,25,139,69,244,139,0,137,68,36,4,139,69,8,137,4,36,232,221,86,0,0,233,166,0,0,0,131,125,240,3,15,133,156,0,0,0,139,69,8,137,4,36,232,49,246,255,255,139,69,8,139, 64,28,137,69,236,235,6,139,69,232,137,69,236,139,69,236,139,64,4,137,69,232,131,125,232,0,117,235,131,125,236,0,116,87,139,69,244,139,64,8,133,192,117,59,139,69,8,137,4,36,232,246,245,255,255,139,69,236,137,68,36,4,139,69,8,137,4,36,232,91,242,255,255, 139,69,8,137,4,36,232,124,79,0,0,137,194,139,69,244,137,80,8,139,69,8,137,4,36,232,198,245,255,255,139,69,236,137,68,36,4,139,69,8,137,4,36,232,116,114,0,0,139,69,244,139,0,137,68,36,4,139,69,8,137,4,36,232,50,86,0,0,141,131,85,51,6,0,137,4,36,232,129, 225,3,0,139,85,8,137,68,36,4,137,20,36,232,41,26,4,0,139,69,244,139,64,4,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,49,130,3,0,141,131,85,51,6,0,137,4,36,232,62,225,3,0,139,85,8,137,68,36,4,137,20,36,232,198,26,4,0,233, 62,1,0,0,131,125,16,2,15,133,213,0,0,0,131,125,240,1,116,6,131,125,240,2,117,16,139,69,8,137,4,36,232,3,82,0,0,233,24,1,0,0,131,125,240,3,15,133,14,1,0,0,139,69,8,139,64,28,137,69,228,235,6,139,69,224,137,69,228,139,69,228,139,64,4,137,69,224,131,125, 224,0,117,235,131,125,228,0,116,18,139,69,228,137,68,36,4,139,69,8,137,4,36,232,147,113,0,0,139,69,244,139,64,8,137,68,36,4,139,69,8,137,4,36,232,80,85,0,0,141,131,85,51,6,0,137,4,36,232,159,224,3,0,139,85,8,137,68,36,4,137,20,36,232,71,25,4,0,139,69, 244,139,64,4,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,79,129,3,0,141,131,85,51,6,0,137,4,36,232,92,224,3,0,139,85,8,137,68,36,4,137,20,36,232,228,25,4,0,235,95,131,125,16,0,117,89,139,69,244,139,0,133,192,116,13,139,69, 244,139,0,137,4,36,232,27,105,3,0,139,69,244,139,64,4,133,192,116,14,139,69,244,139,64,4,137,4,36,232,3,105,3,0,139,69,244,139,64,8,133,192,116,14,139,69,244,139,64,8,137,4,36,232,235,104,3,0,199,68,36,4,16,0,0,0,139,69,244,137,4,36,232,94,251,3,0,131, 196,52,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,199,4,36,8,0,0,0,232,89,249,3,0,137,69,216,131,125,12,0,116,32,199,68,36,8,1,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,41,245,255,255,137,69,208,235,22,199,68,36,4,0,0,0,0,139,69,8,137,4, 36,232,218,244,255,255,137,69,208,139,69,216,139,85,208,137,80,4,131,125,12,0,116,43,199,68,36,8,1,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,228,244,255,255,137,194,137,208,1,192,1,208,193,224,2,137,69,212,235,33,199,68,36,4,0,0,0,0,139,69,8,137, 4,36,232,138,244,255,255,137,194,137,208,1,192,1,208,193,224,2,137,69,212,139,69,212,137,4,36,232,180,248,3,0,137,194,139,69,216,137,16,131,125,12,0,15,132,202,0,0,0,139,69,8,139,64,28,137,69,220,199,69,224,0,0,0,0,139,69,224,137,69,228,233,160,0,0,0, 139,69,220,137,68,36,4,139,69,8,137,4,36,232,32,239,255,255,133,192,116,126,141,69,232,137,68,36,20,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,139,69,8,137,68,36,4,139,69,220,137,4,36,232,141,233,255,255,139,69,216,139,8,139, 85,228,137,208,1,192,1,208,193,224,2,141,20,1,139,69,224,137,2,139,69,216,139,8,139,85,228,137,208,1,192,1,208,193,224,2,141,20,1,139,69,244,137,66,4,139,69,216,139,8,139,85,228,137,208,1,192,1,208,193,224,2,141,20,1,139,69,240,137,66,8,255,69,228,139, 69,220,139,64,4,137,69,220,255,69,224,131,125,220,0,15,133,86,255,255,255,233,166,0,0,0,139,69,8,139,64,28,137,69,220,199,69,224,0,0,0,0,233,135,0,0,0,141,69,232,137,68,36,20,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,139, 69,8,137,68,36,4,139,69,220,137,4,36,232,223,232,255,255,139,69,216,139,8,139,85,224,137,208,1,192,1,208,193,224,2,141,20,1,139,69,224,137,2,139,69,216,139,8,139,85,224,137,208,1,192,1,208,193,224,2,141,20,1,139,69,244,137,66,4,139,69,216,139,8,139,85, 224,137,208,1,192,1,208,193,224,2,141,20,1,139,69,240,137,66,8,139,69,220,139,64,4,137,69,220,255,69,224,131,125,220,0,15,133,111,255,255,255,141,131,107,210,6,0,199,0,1,0,0,0,139,69,216,131,196,84,91,201,195,85,137,229,131,236,88,139,69,12,137,69,244, 131,125,16,1,116,10,131,125,16,2,15,133,20,1,0,0,199,69,240,0,0,0,0,233,247,0,0,0,139,69,244,139,8,139,85,240,137,208,1,192,1,208,193,224,2,141,4,1,139,64,4,137,69,220,139,69,244,139,8,139,85,240,137,208,1,192,1,208,193,224,2,141,4,1,139,64,8,137,69, 216,139,69,244,139,8,139,85,240,137,208,1,192,1,208,193,224,2,141,4,1,139,0,137,68,36,4,139,69,8,137,4,36,232,223,242,255,255,137,69,212,131,125,212,0,15,132,142,0,0,0,141,69,224,137,68,36,20,141,69,228,137,68,36,16,141,69,232,137,68,36,12,141,69,236, 137,68,36,8,139,69,8,137,68,36,4,139,69,212,137,4,36,232,171,231,255,255,139,85,232,139,69,216,137,193,41,209,139,85,236,139,69,220,41,208,137,76,36,12,137,68,36,8,139,69,8,137,68,36,4,139,69,212,137,4,36,232,214,231,255,255,139,69,244,139,8,139,85,240, 137,208,1,192,1,208,193,224,2,141,20,1,139,69,236,137,66,4,139,69,244,139,8,139,85,240,137,208,1,192,1,208,193,224,2,141,20,1,139,69,232,137,66,8,255,69,240,139,69,244,139,64,4,59,69,240,15,143,250,254,255,255,235,61,131,125,16,0,117,55,139,69,244,139, 64,4,137,194,137,208,1,192,1,208,193,224,2,137,194,139,69,244,139,0,137,84,36,4,137,4,36,232,170,247,3,0,199,68,36,4,8,0,0,0,139,69,244,137,4,36,232,151,247,3,0,201,195,85,137,229,131,236,40,199,4,36,4,0,0,0,232,157,245,3,0,137,69,244,199,68,36,4,0,0, 0,0,139,69,8,137,4,36,232,68,241,255,255,137,194,139,69,244,137,16,139,69,244,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,69,244,131,125,16,1,117,85,139,69,8,137,4,36,232,220,239,255,255,139,69,244,139,0,137,68,36,4,139,69,8,137,4,36, 232,133,241,255,255,137,69,240,235,27,139,69,240,137,68,36,4,139,69,8,137,4,36,232,40,236,255,255,139,69,240,139,64,4,137,69,240,131,125,240,0,117,223,139,69,8,137,4,36,232,128,76,0,0,233,151,0,0,0,131,125,16,2,117,120,141,131,84,206,6,0,139,0,137,68, 36,4,139,69,8,137,4,36,232,7,80,0,0,141,131,112,206,6,0,139,0,133,192,116,110,141,131,112,206,6,0,139,0,15,182,0,60,100,117,95,139,69,8,139,128,140,0,0,0,139,64,16,137,69,236,235,45,139,69,236,139,16,199,68,36,12,10,0,0,0,199,68,36,8,10,0,0,0,139,69, 8,137,68,36,4,137,20,36,232,64,230,255,255,139,69,236,139,64,4,137,69,236,131,125,236,0,117,205,235,25,131,125,16,0,117,19,199,68,36,4,4,0,0,0,139,69,244,137,4,36,232,92,246,3,0,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,68,36, 4,0,0,0,0,139,69,8,137,4,36,232,13,240,255,255,137,69,236,139,69,8,139,128,140,0,0,0,133,192,15,149,192,15,182,192,137,69,232,139,69,8,139,64,28,137,69,244,199,69,240,0,0,0,0,233,132,1,0,0,139,69,244,59,69,20,15,132,49,1,0,0,139,69,244,139,16,141,131, 165,163,6,0,139,0,139,0,57,194,15,133,26,1,0,0,139,69,244,137,4,36,232,29,203,255,255,133,192,15,132,7,1,0,0,139,69,244,139,128,144,0,0,0,59,69,12,15,133,245,0,0,0,139,69,244,137,4,36,232,202,159,255,255,59,69,16,15,133,225,0,0,0,139,69,244,137,68,36, 4,139,69,8,137,4,36,232,115,239,255,255,137,69,228,139,69,8,139,128,140,0,0,0,133,192,117,23,141,131,253,149,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,99,7,0,0,139,69,8,139,128,140,0,0,0,133,192,117,14,141,131,147,47,6,0,137,4,36,232,197,216,4,0,139, 69,8,137,4,36,232,238,237,255,255,139,69,244,137,68,36,4,139,69,8,137,4,36,232,83,234,255,255,199,68,36,4,2,0,0,0,139,69,8,137,4,36,232,5,245,255,255,137,194,141,131,33,149,6,0,137,68,36,12,137,84,36,8,141,131,60,248,255,255,137,68,36,4,139,69,8,137, 4,36,232,167,239,255,255,139,69,8,137,4,36,232,130,74,0,0,139,69,8,137,4,36,232,218,240,255,255,139,69,8,137,4,36,232,131,237,255,255,139,69,228,137,68,36,4,139,69,8,137,4,36,232,46,239,255,255,137,69,244,235,68,139,69,244,59,69,20,116,51,139,69,244, 139,16,141,131,165,163,6,0,139,0,139,0,57,194,117,32,139,85,244,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,60,254,255,255,139,69,244,139,64,4,137,69,244,255,69,240,131,125,244,0,116,12,139,69,240,59,69,236,15,140, 106,254,255,255,131,125,232,0,117,46,139,69,8,139,128,140,0,0,0,133,192,116,33,139,69,8,137,4,36,232,81,110,0,0,137,194,141,131,249,149,6,0,139,0,137,68,36,4,137,20,36,232,46,6,0,0,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,232,75, 205,255,255,137,69,240,141,131,105,177,6,0,199,0,1,0,0,0,141,131,33,162,6,0,139,0,139,0,137,69,244,235,44,139,69,16,137,68,36,12,139,69,12,137,68,36,8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,148,253,255,255,139,69,244,139,128,152,0,0,0,137,69,244, 131,125,244,0,117,206,141,131,105,177,6,0,199,0,0,0,0,0,139,69,240,137,4,36,232,18,205,255,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,12,6,118,16,141,131,61,45,6,0,137,4,36,232,5,215,4,0,235,85,141,131,158,202,6,0,139,0, 59,69,8,117,13,141,131,154,202,6,0,139,0,59,69,12,116,59,139,85,12,141,131,30,166,6,0,139,4,144,137,68,36,8,139,69,8,137,68,36,4,141,131,78,45,6,0,137,4,36,232,1,110,4,0,141,147,158,202,6,0,139,69,8,137,2,141,147,154,202,6,0,139,69,12,137,2,131,196,20, 91,201,195,85,137,229,131,236,88,139,69,8,137,68,36,4,139,69,12,137,4,36,232,239,227,255,255,133,192,117,9,199,69,212,0,0,0,0,235,126,141,69,232,137,68,36,20,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,139,69,8,137,68,36,4, 139,69,12,137,4,36,232,77,226,255,255,139,69,244,57,69,16,124,65,139,69,236,57,69,16,127,57,139,69,240,57,69,20,124,49,139,69,232,57,69,20,127,41,139,85,244,139,69,24,137,16,139,85,240,139,69,28,137,16,139,85,236,139,69,32,137,16,139,85,232,139,69,36, 137,16,199,69,212,1,0,0,0,235,7,199,69,212,0,0,0,0,139,69,212,201,195,85,137,229,131,236,72,199,69,240,0,0,0,0,139,69,20,199,0,1,0,0,128,139,69,8,139,64,28,137,69,244,235,123,141,69,224,137,68,36,28,141,69,228,137,68,36,24,141,69,232,137,68,36,20,141, 69,236,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,139,69,244,137,68,36,4,139,69,8,137,4,36,232,251,254,255,255,133,192,116,50,139,69,20,139,16,139,69,236,57,194,125,38,139,85,236,139,69,20,137,16,139,85,232,139,69,24,137,16,139,85,228, 139,69,28,137,16,139,85,224,139,69,32,137,16,139,69,244,137,69,240,139,69,244,139,64,4,137,69,244,131,125,244,0,15,133,123,255,255,255,139,69,8,139,128,140,0,0,0,133,192,15,132,207,0,0,0,139,69,8,139,128,140,0,0,0,139,64,16,133,192,15,132,187,0,0,0,139, 69,8,139,128,140,0,0,0,139,64,16,139,64,4,133,192,15,132,164,0,0,0,139,69,244,137,68,36,4,139,69,8,137,4,36,232,101,230,255,255,133,192,15,133,138,0,0,0,139,69,8,139,128,140,0,0,0,139,64,16,137,69,220,235,115,139,69,220,139,16,141,69,224,137,68,36,28, 141,69,228,137,68,36,24,141,69,232,137,68,36,20,141,69,236,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,13,254,255,255,133,192,116,40,139,85,236,139,69,20,137,16,139,85,232,139,69,24,137,16,139,85,228,139, 69,28,137,16,139,85,224,139,69,32,137,16,139,69,220,139,0,137,69,240,139,69,220,139,64,4,137,69,220,131,125,220,0,117,135,139,69,240,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,131,125,20,0,116,23,131,125,20,0,116,26,139,69,20,139,0,137,4,36,232, 8,212,3,0,133,192,116,9,199,69,224,1,0,0,0,235,7,199,69,224,0,0,0,0,139,69,224,137,69,244,131,125,20,0,116,42,141,131,185,42,6,0,137,4,36,232,68,213,3,0,139,85,20,137,68,36,4,137,20,36,232,223,228,3,0,133,192,116,9,199,69,228,1,0,0,0,235,7,199,69,228, 0,0,0,0,139,69,228,137,69,240,139,69,240,137,68,36,20,139,69,244,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,139,69,8,137,68,36,4,141,131,197,42,6,0,137,4,36,232,4,107,4,0,131,196,68,91,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,139, 69,8,137,69,196,141,131,157,157,6,0,139,0,139,16,137,85,244,49,210,199,4,36,96,0,0,0,232,66,238,3,0,137,69,200,232,99,93,3,0,137,194,139,69,200,137,80,36,232,86,93,3,0,137,194,139,69,200,137,80,40,139,85,200,139,69,196,137,66,48,139,69,196,137,68,36, 16,141,131,54,42,6,0,137,68,36,12,199,68,36,8,40,0,0,0,199,68,36,4,0,0,0,0,141,69,204,137,4,36,232,121,149,6,0,141,69,204,137,4,36,232,89,212,3,0,139,85,196,137,68,36,4,137,20,36,232,255,156,0,0,137,194,139,69,200,137,80,44,139,69,200,199,64,84,0,0,0, 0,139,69,200,141,147,157,157,6,0,139,18,139,77,244,51,10,116,5,232,60,149,6,0,131,196,100,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,12,137,4,36,232,20,232,255,255,139,69,8,139,80,44,141,131,128,143,6,0,242,15,16,0,242,15,17,68,36,4,137, 20,36,232,57,157,0,0,139,69,8,139,64,36,137,4,36,232,195,92,3,0,139,69,8,139,64,40,137,4,36,232,181,92,3,0,139,69,8,139,64,84,133,192,116,14,139,69,8,139,64,84,137,4,36,232,252,20,4,0,199,68,36,4,96,0,0,0,139,69,8,137,4,36,232,16,239,3,0,131,196,20,91, 201,195,85,137,229,131,236,40,139,69,8,139,128,140,0,0,0,133,192,117,86,139,69,8,137,4,36,232,150,254,255,255,137,194,139,69,8,137,144,140,0,0,0,139,69,8,139,64,28,137,69,244,235,47,139,69,244,137,4,36,232,131,3,4,0,137,69,240,131,125,240,0,116,18,139, 69,240,137,68,36,4,139,69,8,137,4,36,232,35,144,1,0,139,69,244,139,64,4,137,69,244,131,125,244,0,117,203,201,195,85,137,229,131,236,40,139,69,8,137,4,36,232,45,231,255,255,139,69,8,139,128,140,0,0,0,133,192,116,109,139,69,8,139,64,28,137,69,244,235,55, 139,69,244,137,4,36,232,35,3,4,0,137,69,240,131,125,240,0,116,26,139,69,240,137,68,36,4,139,69,8,137,4,36,232,188,160,1,0,137,4,36,232,200,144,1,0,139,69,244,139,64,4,137,69,244,131,125,244,0,117,195,139,69,8,139,144,140,0,0,0,139,69,8,137,68,36,4,137, 20,36,232,148,254,255,255,139,69,8,199,128,140,0,0,0,0,0,0,0,201,195,85,137,229,87,86,83,129,236,124,4,0,0,232,0,0,0,0,91,139,69,8,137,133,180,251,255,255,141,131,84,155,6,0,139,0,139,16,137,85,228,49,210,141,131,176,141,6,0,243,15,16,0,15,46,69,12,15, 149,192,15,154,194,9,208,15,182,192,137,133,216,251,255,255,131,189,216,251,255,255,0,15,132,246,1,0,0,139,133,180,251,255,255,139,128,140,0,0,0,133,192,116,48,139,133,180,251,255,255,139,128,160,0,0,0,131,224,1,133,192,116,29,139,133,180,251,255,255, 137,68,36,4,141,131,243,39,6,0,137,4,36,232,41,104,4,0,233,84,3,0,0,139,133,180,251,255,255,137,133,208,251,255,255,139,133,180,251,255,255,137,4,36,232,88,254,255,255,139,133,180,251,255,255,139,128,160,0,0,0,193,232,5,131,224,1,15,182,240,139,133,180, 251,255,255,139,120,72,139,133,180,251,255,255,139,64,68,137,133,176,251,255,255,139,133,180,251,255,255,139,80,80,139,133,180,251,255,255,139,64,72,137,209,41,193,139,133,180,251,255,255,139,64,76,137,133,164,251,255,255,139,133,180,251,255,255,139, 64,68,139,149,164,251,255,255,41,194,137,208,137,116,36,24,137,124,36,20,139,149,176,251,255,255,137,84,36,16,137,76,36,12,137,68,36,8,139,133,180,251,255,255,137,68,36,4,141,131,12,40,6,0,137,4,36,232,115,103,4,0,139,133,208,251,255,255,137,68,36,12, 141,131,51,40,6,0,137,68,36,8,199,68,36,4,230,3,0,0,141,133,222,251,255,255,137,4,36,232,84,148,6,0,235,113,139,133,208,251,255,255,139,64,40,137,133,208,251,255,255,141,133,222,251,255,255,137,4,36,232,95,148,6,0,137,133,212,251,255,255,139,133,208, 251,255,255,137,193,191,255,255,255,255,184,230,3,0,0,43,133,212,251,255,255,137,198,139,133,212,251,255,255,141,149,222,251,255,255,1,194,137,76,36,20,141,131,80,40,6,0,137,68,36,16,137,124,36,12,199,68,36,8,0,0,0,0,137,116,36,4,137,20,36,232,203,145, 6,0,139,133,208,251,255,255,139,64,40,133,192,117,130,199,68,36,8,232,3,0,0,141,131,102,111,6,0,137,68,36,4,141,133,222,251,255,255,137,4,36,232,176,145,6,0,141,133,222,251,255,255,137,4,36,232,113,105,4,0,139,133,180,251,255,255,137,4,36,232,58,172, 255,255,139,149,180,251,255,255,139,130,160,0,0,0,131,200,1,137,130,160,0,0,0,232,184,146,255,255,233,158,1,0,0,139,133,180,251,255,255,139,128,160,0,0,0,131,224,1,133,192,117,39,139,133,180,251,255,255,139,128,140,0,0,0,133,192,15,132,119,1,0,0,139, 133,180,251,255,255,137,4,36,232,242,252,255,255,233,100,1,0,0,139,133,180,251,255,255,137,4,36,232,29,228,255,255,139,133,180,251,255,255,137,4,36,232,32,178,255,255,133,192,116,26,141,131,176,141,6,0,139,0,137,68,36,4,139,133,180,251,255,255,137,4, 36,232,87,175,255,255,139,133,180,251,255,255,137,4,36,232,165,252,255,255,139,133,180,251,255,255,137,68,36,4,141,131,89,40,6,0,137,4,36,232,212,101,4,0,199,133,204,251,255,255,1,0,0,0,139,133,180,251,255,255,137,133,200,251,255,255,235,24,139,133,200, 251,255,255,139,128,152,0,0,0,137,133,200,251,255,255,255,133,204,251,255,255,131,189,200,251,255,255,0,117,223,139,133,180,251,255,255,137,4,36,232,208,168,255,255,133,192,15,132,155,0,0,0,139,133,180,251,255,255,139,64,40,133,192,15,132,138,0,0,0,139, 133,180,251,255,255,139,64,40,137,133,196,251,255,255,139,133,196,251,255,255,137,4,36,232,95,177,255,255,133,192,116,32,139,149,180,251,255,255,199,68,36,8,0,0,0,0,139,133,196,251,255,255,137,68,36,4,137,20,36,232,119,221,255,255,139,149,180,251,255, 255,139,130,160,0,0,0,131,224,254,137,130,160,0,0,0,139,133,196,251,255,255,137,4,36,232,24,177,255,255,133,192,116,55,139,149,180,251,255,255,199,68,36,8,1,0,0,0,139,133,196,251,255,255,137,68,36,4,137,20,36,232,48,221,255,255,235,21,139,133,180,251, 255,255,139,144,160,0,0,0,131,226,254,137,144,160,0,0,0,232,21,145,255,255,141,131,84,155,6,0,139,0,139,85,228,51,16,116,5,232,189,143,6,0,129,196,124,4,0,0,91,94,95,201,195,85,137,229,131,236,40,131,125,12,0,15,133,2,1,0,0,139,69,8,137,4,36,232,217, 167,255,255,133,192,15,132,239,0,0,0,139,69,8,139,128,140,0,0,0,133,192,15,149,192,15,182,192,137,69,244,131,125,244,0,116,11,139,69,8,137,4,36,232,34,251,255,255,139,69,8,139,64,40,133,192,116,63,139,69,8,139,128,160,0,0,0,131,224,8,133,192,117,47,139, 69,8,139,64,40,137,4,36,232,73,176,255,255,133,192,116,29,139,69,8,139,64,40,139,85,8,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,100,220,255,255,139,85,8,139,130,160,0,0,0,128,228,254,137,130,160,0,0,0,139,69,8,139,64,40,133,192,15,132,199,1,0,0,139, 69,8,139,128,160,0,0,0,131,224,8,133,192,15,133,179,1,0,0,139,69,8,139,64,40,137,4,36,232,230,175,255,255,133,192,15,132,157,1,0,0,139,69,8,139,64,40,139,85,8,199,68,36,8,1,0,0,0,137,68,36,4,137,20,36,232,253,219,255,255,139,85,8,139,69,8,139,64,40,137, 84,36,4,137,4,36,232,196,178,255,255,233,102,1,0,0,131,125,12,0,15,132,92,1,0,0,139,69,8,139,64,44,133,192,127,10,139,69,8,199,64,44,200,0,0,0,139,69,8,139,64,48,133,192,127,10,139,69,8,199,64,48,140,0,0,0,139,69,8,139,64,40,133,192,116,63,139,69,8,139, 128,160,0,0,0,131,224,8,133,192,117,47,139,69,8,139,64,40,137,4,36,232,77,175,255,255,133,192,116,29,139,69,8,139,64,40,139,85,8,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,104,219,255,255,139,85,8,139,130,160,0,0,0,128,204,1,137,130,160,0,0,0,139, 69,12,131,224,2,133,192,15,149,192,139,77,8,15,182,192,131,224,1,137,194,193,226,9,139,129,160,0,0,0,128,228,253,9,208,137,129,160,0,0,0,131,125,16,0,15,148,192,139,77,8,15,182,192,131,224,1,137,194,193,226,7,139,129,160,0,0,0,36,127,9,208,137,129,160, 0,0,0,139,69,8,137,4,36,232,192,174,255,255,133,192,116,29,139,69,8,139,128,160,0,0,0,37,128,0,0,0,133,192,116,11,139,69,8,137,4,36,232,192,119,0,0,139,69,8,139,64,40,133,192,116,84,139,69,8,139,128,160,0,0,0,131,224,8,133,192,117,68,139,69,8,139,64, 40,137,4,36,232,119,174,255,255,133,192,116,50,139,69,8,139,64,40,139,85,8,199,68,36,8,1,0,0,0,137,68,36,4,137,20,36,232,146,218,255,255,139,85,8,139,69,8,139,64,40,137,84,36,4,137,4,36,232,89,177,255,255,201,195,85,137,229,87,86,83,129,236,140,1,0,0, 232,0,0,0,0,91,139,69,8,137,133,20,255,255,255,141,131,209,148,6,0,139,0,139,16,137,85,228,49,210,139,133,20,255,255,255,137,4,36,232,66,165,255,255,133,192,15,132,63,1,0,0,139,133,20,255,255,255,139,112,88,139,133,20,255,255,255,139,120,84,139,133,20, 255,255,255,139,64,48,137,133,208,254,255,255,139,133,20,255,255,255,139,64,44,137,133,212,254,255,255,139,133,20,255,255,255,243,15,16,64,64,243,15,90,192,242,15,17,133,216,254,255,255,139,133,20,255,255,255,243,15,16,64,60,243,15,90,192,242,15,17,133, 224,254,255,255,139,133,20,255,255,255,243,15,16,64,56,243,15,90,192,242,15,17,133,232,254,255,255,139,133,20,255,255,255,243,15,16,64,52,243,15,90,192,242,15,17,133,240,254,255,255,139,133,20,255,255,255,137,4,36,232,160,164,255,255,137,116,36,80,137, 124,36,76,139,149,208,254,255,255,137,84,36,72,139,149,212,254,255,255,137,84,36,68,242,15,16,133,216,254,255,255,242,15,17,68,36,60,242,15,16,141,224,254,255,255,242,15,17,76,36,52,242,15,16,133,232,254,255,255,242,15,17,68,36,44,242,15,16,141,240,254, 255,255,242,15,17,76,36,36,137,68,36,32,141,131,69,135,6,0,242,15,16,0,242,15,17,68,36,24,141,131,69,135,6,0,242,15,16,0,242,15,17,68,36,16,141,131,229,33,6,0,137,68,36,12,199,68,36,8,200,0,0,0,199,68,36,4,0,0,0,0,141,133,28,255,255,255,137,4,36,232, 184,139,6,0,233,56,1,0,0,139,133,20,255,255,255,139,112,88,139,133,20,255,255,255,139,120,84,139,133,20,255,255,255,139,64,48,137,133,252,254,255,255,139,133,20,255,255,255,139,64,44,137,133,0,255,255,255,141,131,49,135,6,0,139,0,137,68,36,4,139,133, 20,255,255,255,137,4,36,232,47,115,0,0,217,157,4,255,255,255,141,131,45,138,6,0,15,40,0,243,15,16,141,4,255,255,255,15,87,193,243,15,90,192,242,15,17,133,8,255,255,255,141,131,49,135,6,0,139,0,137,68,36,4,139,133,20,255,255,255,137,4,36,232,145,114,0, 0,217,157,16,255,255,255,243,15,90,141,16,255,255,255,137,116,36,80,137,124,36,76,139,133,252,254,255,255,137,68,36,72,139,149,0,255,255,255,137,84,36,68,141,131,77,135,6,0,242,15,16,0,242,15,17,68,36,60,141,131,77,135,6,0,242,15,16,0,242,15,17,68,36, 52,141,131,125,137,6,0,242,15,16,0,242,15,17,68,36,44,141,131,69,135,6,0,242,15,16,0,242,15,17,68,36,36,199,68,36,32,0,0,0,0,242,15,16,133,8,255,255,255,242,15,17,68,36,24,242,15,17,76,36,16,141,131,229,33,6,0,137,68,36,12,199,68,36,8,200,0,0,0,199,68, 36,4,0,0,0,0,141,133,28,255,255,255,137,4,36,232,123,138,6,0,139,149,20,255,255,255,141,133,28,255,255,255,137,68,36,8,139,133,20,255,255,255,137,68,36,4,137,20,36,232,174,67,5,0,139,133,20,255,255,255,139,64,28,137,133,24,255,255,255,235,51,139,133, 24,255,255,255,139,16,141,131,89,148,6,0,139,0,139,0,57,194,117,14,139,133,24,255,255,255,137,4,36,232,237,41,255,255,139,133,24,255,255,255,139,64,4,137,133,24,255,255,255,131,189,24,255,255,255,0,117,196,141,131,209,148,6,0,139,0,139,85,228,51,16,116, 5,232,254,137,6,0,129,196,140,1,0,0,91,94,95,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,199,69,200,0,0,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,220,74,3,0,217,93,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36, 1,0,0,0,232,191,74,3,0,217,93,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,162,74,3,0,217,93,188,243,15,44,69,188,137,69,204,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,125,74,3,0,217,93,236,139,69,20,137, 68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,96,74,3,0,217,93,232,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,5,0,0,0,232,67,74,3,0,217,93,228,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,6,0,0,0,232,38,74,3,0,217,93,224,139,69, 20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,7,0,0,0,232,9,74,3,0,217,93,220,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,8,0,0,0,232,236,73,3,0,217,93,216,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,9,0,0,0,232,207,73,3,0,217,93,212, 139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,10,0,0,0,232,178,73,3,0,217,93,208,243,15,16,69,220,243,15,44,208,139,69,8,137,80,44,243,15,16,69,216,243,15,44,208,139,69,8,137,80,48,243,15,16,69,212,243,15,44,208,139,69,8,137,80,84,243,15,16,69, 208,243,15,44,208,139,69,8,137,80,88,141,131,237,134,6,0,15,40,0,129,117,240,0,0,0,128,141,131,237,131,6,0,243,15,16,0,15,46,69,244,122,2,116,2,235,11,141,131,241,131,6,0,139,0,137,69,244,141,131,237,131,6,0,243,15,16,0,15,46,69,240,122,2,116,2,235,11, 141,131,241,131,6,0,139,0,137,69,240,131,125,204,0,15,132,134,0,0,0,243,15,16,69,236,15,46,69,228,117,4,122,2,235,20,139,85,8,139,69,236,137,66,52,139,85,8,139,69,228,137,66,60,235,28,139,85,8,141,131,237,131,6,0,139,0,137,66,52,139,85,8,141,131,241, 131,6,0,139,0,137,66,60,243,15,16,69,232,15,46,69,224,117,4,122,2,235,23,139,85,8,139,69,232,137,66,56,139,85,8,139,69,224,137,66,64,233,102,1,0,0,139,85,8,141,131,237,131,6,0,139,0,137,66,56,139,85,8,141,131,241,131,6,0,139,0,137,66,64,233,69,1,0,0, 141,131,241,131,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,201,110,0,0,217,93,192,243,15,16,69,192,15,46,69,244,117,43,122,41,141,131,241,131,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,0,111,0,0,217,93,196,243,15,16,69,196,15,46,69,240,117,4,122,2, 235,7,199,69,200,1,0,0,0,141,131,237,131,6,0,243,15,16,8,243,15,16,69,244,15,46,193,119,2,235,25,139,85,8,141,131,237,131,6,0,139,0,137,66,52,139,85,8,139,69,244,137,66,60,235,72,141,131,237,134,6,0,15,40,0,243,15,16,77,244,15,87,200,139,69,8,139,80, 76,139,69,8,139,64,68,137,209,41,193,137,200,243,15,42,192,243,15,89,193,139,69,8,243,15,17,64,52,139,69,8,243,15,16,64,52,243,15,88,69,244,139,69,8,243,15,17,64,60,141,131,237,131,6,0,243,15,16,8,243,15,16,69,240,15,46,193,119,2,235,25,139,85,8,141, 131,237,131,6,0,139,0,137,66,56,139,85,8,139,69,240,137,66,64,235,72,141,131,237,134,6,0,15,40,0,243,15,16,77,240,15,87,200,139,69,8,139,80,80,139,69,8,139,64,72,137,209,41,193,137,200,243,15,42,192,243,15,89,193,139,69,8,243,15,17,64,56,139,69,8,243, 15,16,64,56,243,15,88,69,240,139,69,8,243,15,17,64,64,199,68,36,8,0,0,0,0,139,69,204,137,68,36,4,139,69,8,137,4,36,232,109,246,255,255,141,131,241,131,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,119,162,255,255,139,69,8,139,128,160,0,0,0,131,224,1,133, 192,116,13,139,69,8,137,4,36,232,219,165,255,255,235,76,139,69,8,139,64,40,137,4,36,232,228,166,255,255,133,192,116,58,139,69,8,139,64,40,139,85,8,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,255,210,255,255,139,69,8,139,64,40,139,85,8,199,68,36,8,1, 0,0,0,137,68,36,4,137,20,36,232,226,210,255,255,131,196,84,91,201,195,85,137,229,83,129,236,52,8,0,0,232,0,0,0,0,91,139,69,8,137,133,244,247,255,255,141,131,52,141,6,0,139,0,139,16,137,85,244,49,210,139,133,244,247,255,255,139,64,28,137,133,32,248,255, 255,233,159,2,0,0,243,15,16,69,20,243,15,44,200,243,15,16,69,16,243,15,44,208,141,133,16,248,255,255,137,68,36,28,141,133,20,248,255,255,137,68,36,24,141,133,24,248,255,255,137,68,36,20,141,133,28,248,255,255,137,68,36,16,137,76,36,12,137,84,36,8,139, 133,32,248,255,255,137,68,36,4,139,133,244,247,255,255,137,4,36,232,29,236,255,255,133,192,15,132,46,2,0,0,141,131,144,127,6,0,243,15,16,0,15,46,69,12,122,2,116,2,235,68,139,133,32,248,255,255,139,0,137,4,36,232,82,194,3,0,133,192,15,132,2,2,0,0,139, 133,32,248,255,255,139,0,137,4,36,232,58,194,3,0,137,194,139,133,244,247,255,255,137,68,36,4,139,133,32,248,255,255,137,4,36,255,210,233,76,2,0,0,141,131,148,127,6,0,243,15,16,0,15,46,69,12,122,2,116,2,235,89,141,131,156,25,6,0,137,4,36,232,102,195,3, 0,139,149,32,248,255,255,137,68,36,4,137,20,36,232,254,210,3,0,133,192,15,132,154,1,0,0,141,131,156,25,6,0,137,4,36,232,62,195,3,0,137,194,139,141,32,248,255,255,141,131,220,9,6,0,137,68,36,8,137,84,36,4,137,12,36,232,14,208,3,0,233,223,1,0,0,139,133, 32,248,255,255,139,16,141,131,60,141,6,0,139,0,139,0,57,194,15,133,145,0,0,0,139,133,32,248,255,255,137,4,36,232,166,179,255,255,133,192,116,127,139,133,32,248,255,255,137,133,8,248,255,255,139,133,8,248,255,255,139,64,8,137,4,36,232,206,95,3,0,137,133, 4,248,255,255,139,133,8,248,255,255,139,64,8,137,4,36,232,196,95,3,0,137,133,0,248,255,255,131,189,4,248,255,255,0,15,142,108,1,0,0,199,68,36,8,232,3,0,0,141,133,36,248,255,255,137,68,36,4,139,133,0,248,255,255,137,4,36,232,141,69,3,0,139,133,32,248, 255,255,137,4,36,232,255,135,255,255,139,0,137,133,12,248,255,255,235,64,139,133,32,248,255,255,139,0,137,4,36,232,114,191,3,0,199,68,36,8,232,3,0,0,137,68,36,4,141,133,36,248,255,255,137,4,36,232,109,131,6,0,139,133,32,248,255,255,139,0,137,4,36,232, 107,192,3,0,137,133,12,248,255,255,141,133,36,248,255,255,137,4,36,232,113,133,6,0,131,248,3,118,49,141,133,36,248,255,255,137,4,36,232,94,133,6,0,137,194,141,133,36,248,255,255,1,208,141,80,253,141,131,130,26,6,0,137,68,36,4,137,20,36,232,51,133,6,0, 133,192,116,32,199,68,36,8,232,3,0,0,141,131,130,26,6,0,137,68,36,4,141,133,36,248,255,255,137,4,36,232,237,130,6,0,139,133,12,248,255,255,137,68,36,4,141,133,36,248,255,255,137,4,36,232,109,167,4,0,235,118,139,133,32,248,255,255,139,64,4,137,133,32, 248,255,255,131,189,32,248,255,255,0,15,133,84,253,255,255,141,131,144,127,6,0,243,15,16,0,15,46,69,12,122,2,116,2,235,16,139,133,244,247,255,255,137,4,36,232,87,245,255,255,235,54,243,15,16,69,12,141,131,240,127,6,0,15,46,0,122,2,116,2,235,34,139,133, 244,247,255,255,137,4,36,232,213,134,255,255,139,0,137,68,36,4,141,131,134,26,6,0,137,4,36,232,245,166,4,0,141,131,52,141,6,0,139,0,139,85,244,51,16,116,5,232,67,130,6,0,129,196,52,8,0,0,91,201,195,85,137,229,87,86,83,129,236,60,1,0,0,232,0,0,0,0,91, 199,69,212,0,0,0,0,199,69,204,0,0,0,0,199,69,200,0,0,0,0,199,69,196,0,0,0,0,199,69,192,0,0,0,0,199,69,188,0,0,0,0,139,69,8,139,128,140,0,0,0,133,192,117,19,141,131,201,21,6,0,137,4,36,232,165,191,4,0,233,209,10,0,0,139,69,24,131,224,1,137,69,224,139, 69,24,131,224,2,133,192,117,16,139,69,8,139,128,160,0,0,0,131,224,32,133,192,117,12,199,133,228,254,255,255,1,0,0,0,235,10,199,133,228,254,255,255,0,0,0,0,139,133,228,254,255,255,137,69,220,139,69,24,131,224,4,137,69,216,139,69,24,131,224,8,137,69,208, 141,131,159,179,6,0,199,0,0,0,0,0,131,125,28,0,116,124,139,69,8,139,128,140,0,0,0,139,64,24,133,192,116,108,139,69,8,139,128,140,0,0,0,139,64,32,133,192,116,92,139,69,8,139,128,140,0,0,0,139,72,32,139,69,8,139,128,140,0,0,0,139,80,24,141,131,47,124,6, 0,139,0,137,68,36,4,137,20,36,255,209,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,190,84,0,0,131,125,28,0,116,90,131,125,220,0,117,84,141,131,175,179,6,0,139,0,57,69,12, 117,71,141,131,179,179,6,0,139,0,57,69,16,117,58,232,26,71,4,0,221,157,232,254,255,255,141,131,167,179,6,0,242,15,16,0,242,15,16,141,232,254,255,255,242,15,92,200,141,131,23,127,6,0,242,15,16,0,102,15,46,193,119,2,235,7,199,69,212,1,0,0,0,139,69,8,139, 144,140,0,0,0,139,66,80,131,224,247,137,66,80,131,125,28,0,116,34,139,69,8,139,128,140,0,0,0,199,64,24,0,0,0,0,139,69,8,139,144,140,0,0,0,139,66,80,131,224,248,137,66,80,139,69,8,139,128,140,0,0,0,139,64,80,131,224,7,133,192,15,133,62,9,0,0,139,69,8, 139,144,140,0,0,0,139,69,12,137,66,52,139,69,8,139,144,140,0,0,0,139,69,16,137,66,56,131,125,220,0,15,132,41,1,0,0,131,125,208,0,15,133,31,1,0,0,139,69,8,139,64,28,137,69,228,233,200,0,0,0,141,69,192,137,68,36,28,141,69,196,137,68,36,24,141,69,200,137, 68,36,20,141,69,204,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,139,69,228,137,68,36,4,139,69,8,137,4,36,232,233,230,255,255,133,192,116,127,139,69,24,131,224,2,133,192,116,16,139,69,8,139,128,160,0,0,0,131,224,32,133,192,116,6,131,125, 216,0,116,12,199,133,244,254,255,255,1,0,0,0,235,10,199,133,244,254,255,255,0,0,0,0,139,69,28,137,68,36,28,199,68,36,24,0,0,0,0,139,149,244,254,255,255,137,84,36,20,139,69,224,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,139,69,8,137,68, 36,4,139,69,228,137,4,36,232,242,204,255,255,137,69,188,131,125,188,0,117,19,139,69,228,139,64,4,137,69,228,131,125,228,0,15,133,46,255,255,255,131,125,28,0,15,133,34,8,0,0,131,125,228,0,116,23,139,69,188,137,68,36,4,139,69,8,137,4,36,232,179,229,255, 255,233,5,8,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,155,229,255,255,233,237,7,0,0,141,69,192,137,68,36,24,141,69,196,137,68,36,20,141,69,200,137,68,36,16,141,69,204,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232, 135,230,255,255,137,69,228,131,125,228,0,15,132,11,4,0,0,139,69,228,137,4,36,232,188,237,3,0,137,69,184,139,69,228,137,4,36,232,174,237,3,0,137,69,184,131,125,208,0,116,37,139,69,228,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137, 4,36,232,195,231,255,255,233,100,7,0,0,131,125,224,0,15,132,233,0,0,0,131,125,28,0,15,132,80,7,0,0,131,125,184,0,15,132,145,0,0,0,139,69,8,139,128,140,0,0,0,139,64,20,137,69,180,131,125,180,0,116,124,139,69,184,137,68,36,4,139,69,8,137,4,36,232,239,138, 1,0,59,69,180,117,101,139,85,200,139,69,16,137,193,41,209,139,85,204,139,69,12,41,208,199,68,36,12,4,0,0,0,137,76,36,8,137,68,36,4,139,69,180,137,4,36,232,51,147,1,0,139,69,8,139,144,140,0,0,0,139,66,80,131,224,248,131,200,5,137,66,80,139,69,8,139,144, 140,0,0,0,139,69,204,137,66,52,139,69,8,139,144,140,0,0,0,139,69,200,137,66,56,233,181,6,0,0,139,69,228,137,68,36,4,139,69,8,137,4,36,232,203,204,255,255,133,192,116,23,139,69,228,137,68,36,4,139,69,8,137,4,36,232,34,206,255,255,233,136,6,0,0,139,69, 228,137,68,36,4,139,69,8,137,4,36,232,240,204,255,255,233,113,6,0,0,131,125,184,0,15,132,151,1,0,0,139,69,184,137,4,36,232,229,234,3,0,137,69,176,131,125,176,0,15,132,127,1,0,0,139,69,192,131,232,4,59,69,16,15,143,112,1,0,0,139,69,196,139,85,204,41,208, 137,69,172,131,125,176,1,126,12,139,69,176,72,137,133,248,254,255,255,235,10,199,133,248,254,255,255,1,0,0,0,139,149,248,254,255,255,137,85,168,139,85,204,139,69,12,41,208,137,193,15,175,77,168,139,85,172,137,208,193,232,31,1,208,209,248,141,20,1,137, 208,193,250,31,247,125,172,137,69,164,139,69,172,131,232,7,137,194,15,175,85,164,137,208,193,250,31,247,125,168,137,194,139,69,204,141,4,2,137,69,160,139,69,164,59,69,176,15,141,226,0,0,0,139,69,160,72,59,69,12,15,143,213,0,0,0,139,69,160,131,192,8,59, 69,12,15,140,198,0,0,0,131,125,28,0,15,132,164,0,0,0,139,69,164,137,68,36,4,139,69,184,137,4,36,232,189,238,3,0,137,69,156,139,69,8,139,144,140,0,0,0,139,66,80,131,224,248,131,200,2,137,66,80,139,69,8,139,144,140,0,0,0,139,69,12,137,66,52,139,69,8,139, 144,140,0,0,0,139,69,16,137,66,56,131,125,156,0,116,12,199,133,252,254,255,255,2,0,0,0,235,10,199,133,252,254,255,255,1,0,0,0,139,133,252,254,255,255,137,68,36,24,139,69,16,137,68,36,20,139,69,12,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36, 8,139,69,8,137,68,36,4,141,131,47,23,6,0,137,4,36,232,4,81,4,0,233,243,4,0,0,199,68,36,4,5,0,0,0,139,69,8,137,4,36,232,137,226,255,255,233,219,4,0,0,131,125,28,0,117,15,233,208,4,0,0,131,125,28,0,15,132,14,1,0,0,131,125,184,0,15,132,183,0,0,0,139,69, 8,139,128,140,0,0,0,139,64,20,137,69,152,131,125,152,0,15,132,158,0,0,0,139,69,184,137,68,36,4,139,69,8,137,4,36,232,97,136,1,0,59,69,152,15,133,131,0,0,0,131,125,212,0,116,12,199,133,0,255,255,255,3,0,0,0,235,10,199,133,0,255,255,255,1,0,0,0,139,85, 200,139,69,16,137,193,41,209,139,85,204,139,69,12,41,208,139,149,0,255,255,255,137,84,36,12,137,76,36,8,137,68,36,4,139,69,152,137,4,36,232,131,144,1,0,139,69,8,139,144,140,0,0,0,139,66,80,131,224,248,131,200,5,137,66,80,139,69,8,139,144,140,0,0,0,139, 69,204,137,66,52,139,69,8,139,144,140,0,0,0,139,69,200,137,66,56,233,5,4,0,0,139,69,228,137,68,36,4,139,69,8,137,4,36,232,27,202,255,255,133,192,117,29,139,69,8,137,4,36,232,231,205,255,255,139,69,228,137,68,36,4,139,69,8,137,4,36,232,76,202,255,255, 139,69,8,139,144,140,0,0,0,139,66,80,131,224,248,131,200,1,137,66,80,233,184,3,0,0,199,68,36,4,4,0,0,0,139,69,8,137,4,36,232,78,225,255,255,233,160,3,0,0,131,125,208,0,116,33,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137, 4,36,232,211,227,255,255,131,125,220,0,117,6,131,125,208,0,116,24,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,3,225,255,255,233,85,3,0,0,131,125,220,0,15,133,189,2,0,0,131,125,216,0,15,133,179,2,0,0,131,125,224,0,15,133,169,2,0,0,243,15,42,69,12,243,15, 17,69,144,243,15,42,69,16,243,15,17,69,140,139,69,8,137,4,36,232,119,78,0,0,137,69,136,139,69,136,137,68,36,4,141,133,20,255,255,255,137,4,36,232,214,129,255,255,233,82,2,0,0,139,133,88,255,255,255,243,15,42,192,243,15,17,69,132,139,133,92,255,255,255, 243,15,42,192,243,15,17,69,128,139,133,96,255,255,255,243,15,42,192,243,15,17,133,124,255,255,255,139,133,100,255,255,255,243,15,42,192,243,15,17,133,120,255,255,255,243,15,16,133,124,255,255,255,15,40,200,243,15,92,77,132,243,15,16,69,140,243,15,92, 69,128,15,40,209,243,15,89,208,243,15,16,133,120,255,255,255,15,40,200,243,15,92,77,128,243,15,16,69,144,243,15,92,69,132,243,15,89,193,15,40,202,243,15,92,200,15,40,193,243,15,17,133,116,255,255,255,243,15,16,133,124,255,255,255,15,40,200,243,15,92, 77,132,243,15,16,133,124,255,255,255,243,15,92,69,132,15,40,209,243,15,89,208,243,15,16,133,120,255,255,255,15,40,200,243,15,92,77,128,243,15,16,133,120,255,255,255,243,15,92,69,128,243,15,89,193,243,15,88,194,243,15,17,133,112,255,255,255,243,15,16, 133,116,255,255,255,15,40,208,243,15,89,149,116,255,255,255,243,15,16,141,112,255,255,255,141,131,227,126,6,0,243,15,16,0,243,15,89,193,15,46,208,15,131,60,1,0,0,243,15,16,133,124,255,255,255,15,40,200,243,15,92,77,132,243,15,16,69,144,243,15,92,69,132, 15,40,209,243,15,89,208,243,15,16,133,120,255,255,255,15,40,200,243,15,92,77,128,243,15,16,69,140,243,15,92,69,128,243,15,89,193,15,40,202,243,15,88,200,141,131,47,124,6,0,243,15,16,0,15,46,193,15,135,227,0,0,0,243,15,16,133,124,255,255,255,15,40,200, 243,15,92,77,132,243,15,16,133,124,255,255,255,243,15,92,69,144,15,40,209,243,15,89,208,243,15,16,133,120,255,255,255,15,40,200,243,15,92,77,128,243,15,16,133,120,255,255,255,243,15,92,69,140,243,15,89,193,15,40,202,243,15,88,200,141,131,47,124,6,0,243, 15,16,0,15,46,193,15,135,132,0,0,0,131,125,28,0,116,102,139,133,52,255,255,255,137,133,4,255,255,255,139,133,36,255,255,255,137,68,36,4,139,69,136,137,4,36,232,165,127,255,255,137,198,139,189,32,255,255,255,139,133,24,255,255,255,137,68,36,4,139,69,136, 137,4,36,232,136,127,255,255,139,149,4,255,255,255,137,84,36,20,137,116,36,16,137,124,36,12,137,68,36,8,139,69,148,137,68,36,4,139,69,136,137,4,36,232,225,197,255,255,199,68,36,4,6,0,0,0,139,69,8,137,4,36,232,87,222,255,255,233,169,0,0,0,141,133,20,255, 255,255,137,4,36,232,171,127,255,255,137,69,148,131,125,148,0,15,133,147,253,255,255,199,68,36,4,4,0,0,0,139,69,8,137,4,36,232,36,222,255,255,131,125,28,0,116,117,131,125,224,0,117,11,139,69,8,137,4,36,232,103,202,255,255,139,69,16,137,68,36,20,139,69, 12,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,139,69,8,137,68,36,4,141,131,99,23,6,0,137,4,36,232,63,76,4,0,139,69,8,139,144,140,0,0,0,139,69,12,137,66,52,139,69,8,139,144,140,0,0,0,139,69,16,137,66,56,139,69,8,139,144,140,0,0,0,139,66, 80,131,224,248,131,200,3,137,66,80,129,196,60,1,0,0,91,94,95,201,195,85,137,229,86,131,236,36,243,15,16,69,24,243,15,44,208,243,15,16,69,20,243,15,44,200,243,15,16,69,16,243,15,44,240,243,15,16,69,12,243,15,44,192,199,68,36,20,1,0,0,0,137,84,36,16,137, 76,36,12,137,116,36,8,137,68,36,4,139,69,8,137,4,36,232,122,244,255,255,131,196,36,94,201,195,85,137,229,129,236,136,0,0,0,139,69,8,137,68,36,4,141,69,152,137,4,36,232,92,126,255,255,235,41,139,69,156,59,69,12,117,33,139,69,164,59,69,16,117,25,139,69, 168,59,69,20,117,17,139,69,184,59,69,24,117,9,199,69,148,1,0,0,0,235,27,141,69,152,137,4,36,232,96,126,255,255,137,69,244,131,125,244,0,117,195,199,69,148,0,0,0,0,139,69,148,201,195,85,137,229,86,83,129,236,160,0,0,0,232,0,0,0,0,91,199,69,244,0,0,0,0, 199,69,240,0,0,0,0,199,69,236,0,0,0,0,199,69,232,0,0,0,0,199,69,224,0,0,0,0,199,69,220,0,0,0,0,199,69,216,0,0,0,0,199,69,212,0,0,0,0,139,69,8,139,128,140,0,0,0,139,64,52,137,69,204,139,69,8,139,128,140,0,0,0,139,64,56,137,69,200,131,125,24,0,116,23,139, 69,8,137,68,36,4,141,131,160,11,6,0,137,4,36,232,197,74,4,0,235,67,139,69,8,139,128,140,0,0,0,139,80,56,139,69,8,139,128,140,0,0,0,139,72,52,139,69,16,137,68,36,20,139,69,12,137,68,36,16,137,84,36,12,137,76,36,8,139,69,8,137,68,36,4,141,131,178,11,6, 0,137,4,36,232,128,74,4,0,141,69,232,137,68,36,24,141,69,236,137,68,36,20,141,69,240,137,68,36,16,141,69,244,137,68,36,12,139,69,200,137,68,36,8,139,69,204,137,68,36,4,139,69,8,137,4,36,232,14,221,255,255,137,69,228,131,125,228,0,15,132,34,4,0,0,141, 69,212,137,68,36,24,141,69,216,137,68,36,20,141,69,220,137,68,36,16,141,69,224,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,204,220,255,255,137,69,208,131,125,208,0,15,132,224,3,0,0,139,69,228,137,4,36,232,1,228,3,0, 137,69,196,139,69,208,137,4,36,232,243,227,3,0,137,69,192,131,125,196,0,15,132,186,3,0,0,131,125,192,0,15,132,176,3,0,0,139,69,196,59,69,192,15,132,164,3,0,0,139,69,196,137,4,36,232,50,226,3,0,137,69,188,131,125,188,0,15,132,140,3,0,0,139,69,192,137, 4,36,232,73,226,3,0,137,69,184,131,125,184,0,15,132,116,3,0,0,139,85,236,139,69,244,137,209,41,193,137,200,137,69,180,139,85,216,139,69,224,137,209,41,193,137,200,137,69,168,131,125,188,1,126,85,139,85,244,139,69,204,137,193,41,209,137,202,139,69,188, 72,137,209,15,175,200,139,85,180,137,208,193,232,31,1,208,209,248,141,20,1,137,208,193,250,31,247,125,180,137,69,176,139,69,180,131,232,7,137,194,15,175,85,176,139,69,188,72,137,193,137,208,193,250,31,247,249,137,194,139,69,244,141,4,2,137,69,172,235, 13,199,69,176,0,0,0,0,139,69,244,137,69,172,131,125,184,1,126,85,139,85,224,139,69,12,137,193,41,209,137,202,139,69,184,72,137,209,15,175,200,139,85,168,137,208,193,232,31,1,208,209,248,141,20,1,137,208,193,250,31,247,125,168,137,69,164,139,69,168,131, 232,7,137,194,15,175,85,164,139,69,184,72,137,193,137,208,193,250,31,247,249,137,194,139,69,224,141,4,2,137,69,160,235,13,199,69,164,0,0,0,0,139,69,224,137,69,160,139,69,176,59,69,188,124,7,139,69,188,72,137,69,176,139,69,164,59,69,184,124,7,139,69,184, 72,137,69,164,139,69,164,137,68,36,16,139,69,192,137,68,36,12,139,69,176,137,68,36,8,139,69,196,137,68,36,4,139,69,8,137,4,36,232,176,252,255,255,133,192,116,24,199,68,36,4,4,0,0,0,139,69,8,137,4,36,232,227,217,255,255,233,56,2,0,0,139,69,176,137,68, 36,4,139,69,196,137,4,36,232,91,229,3,0,133,192,116,66,139,69,164,137,68,36,4,139,69,192,137,4,36,232,246,227,3,0,133,192,117,44,131,125,24,0,116,14,141,131,210,11,6,0,137,4,36,232,99,174,4,0,199,68,36,4,4,0,0,0,139,69,8,137,4,36,232,139,217,255,255, 233,224,1,0,0,131,125,24,0,15,132,174,1,0,0,139,69,164,137,68,36,12,139,69,192,137,68,36,8,139,69,176,137,68,36,4,139,69,196,137,4,36,232,4,222,3,0,137,69,140,131,125,188,1,126,42,139,85,236,139,69,244,137,209,41,193,137,200,131,232,7,137,194,15,175, 85,176,139,69,188,72,137,193,137,208,193,250,31,247,249,137,133,124,255,255,255,235,10,199,133,124,255,255,255,0,0,0,0,139,69,244,3,133,124,255,255,255,131,192,3,137,69,156,139,69,232,137,69,148,131,125,184,1,126,39,139,85,216,139,69,224,137,209,41,193, 137,200,131,232,7,137,194,15,175,85,164,139,69,184,72,137,193,137,208,193,250,31,247,249,137,69,128,235,7,199,69,128,0,0,0,0,139,69,224,3,69,128,131,192,3,137,69,152,139,69,220,137,69,144,139,69,176,137,68,36,4,139,69,196,137,4,36,232,65,228,3,0,133, 192,116,9,199,69,132,2,0,0,0,235,7,199,69,132,1,0,0,0,139,69,8,137,4,36,232,73,70,0,0,137,194,139,69,140,137,68,36,28,139,69,132,137,68,36,24,139,69,144,137,68,36,20,139,69,152,137,68,36,16,139,69,148,137,68,36,12,139,69,156,137,68,36,8,137,84,36,4,141, 131,242,6,6,0,137,4,36,232,184,70,4,0,141,131,66,112,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,17,142,255,255,139,69,192,137,68,36,4,139,69,8,137,4,36,232,34,121,255,255,137,198,139,69,196,137,68,36,4,139,69,8,137,4,36,232,14,121,255,255,137,194,139, 69,164,137,68,36,16,137,116,36,12,139,69,176,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,23,203,255,255,137,194,141,131,205,9,6,0,137,68,36,12,137,84,36,8,141,131,37,208,255,255,137,68,36,4,139,69,8,137,4,36,232,45,198,255,255,235,40,199,68,36,4,5, 0,0,0,139,69,8,137,4,36,232,187,215,255,255,235,19,199,68,36,4,4,0,0,0,139,69,8,137,4,36,232,166,215,255,255,129,196,160,0,0,0,91,94,201,195,85,137,229,131,236,72,139,69,8,139,64,28,137,69,244,235,127,141,69,228,137,68,36,20,141,69,232,137,68,36,16,141, 69,236,137,68,36,12,141,69,240,137,68,36,8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,123,186,255,255,139,69,240,57,69,20,124,64,139,69,232,57,69,12,127,56,139,69,236,57,69,24,124,48,139,69,228,57,69,16,127,40,139,69,244,137,68,36,4,139,69,8,137,4, 36,232,170,191,255,255,133,192,117,18,139,69,244,137,68,36,4,139,69,8,137,4,36,232,230,191,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,15,133,119,255,255,255,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,20,0,15,132,202,0,0,0,139,69, 8,139,128,140,0,0,0,139,64,52,59,69,12,125,23,139,69,8,139,128,140,0,0,0,139,64,52,137,69,244,139,69,12,137,69,236,235,21,139,69,8,139,128,140,0,0,0,139,64,52,137,69,236,139,69,12,137,69,244,139,69,8,139,128,140,0,0,0,139,64,56,59,69,16,125,23,139,69, 8,139,128,140,0,0,0,139,64,56,137,69,240,139,69,16,137,69,232,235,21,139,69,8,139,128,140,0,0,0,139,64,56,137,69,232,139,69,16,137,69,240,139,69,232,137,68,36,16,139,69,236,137,68,36,12,139,69,240,137,68,36,8,139,69,244,137,68,36,4,139,69,8,137,4,36, 232,172,254,255,255,139,69,8,137,68,36,4,141,131,192,5,6,0,137,4,36,232,150,68,4,0,139,69,8,139,144,140,0,0,0,139,66,80,131,224,248,137,66,80,235,67,139,69,8,139,128,140,0,0,0,139,80,56,139,69,8,139,128,140,0,0,0,139,72,52,139,69,16,137,68,36,20,139, 69,12,137,68,36,16,137,84,36,12,137,76,36,8,139,69,8,137,68,36,4,141,131,210,5,6,0,137,4,36,232,63,68,4,0,131,196,52,91,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,243,15,16,69,12,243,15,44,192,137,69,244,243,15,16,69,16,243,15,44,192,137,69,240, 243,15,16,69,20,243,15,44,192,137,69,236,139,69,8,139,128,140,0,0,0,133,192,117,19,141,131,205,2,6,0,137,4,36,232,175,172,4,0,233,225,1,0,0,232,44,53,4,0,141,131,171,160,6,0,221,24,141,147,179,160,6,0,139,69,244,137,2,141,147,183,160,6,0,139,69,240,137, 2,139,69,8,139,128,140,0,0,0,139,64,80,131,224,7,131,248,2,117,45,199,68,36,16,1,0,0,0,139,69,236,137,68,36,12,139,69,240,137,68,36,8,139,69,244,137,68,36,4,139,69,8,137,4,36,232,65,248,255,255,233,107,1,0,0,139,69,8,139,128,140,0,0,0,139,64,80,131,224, 7,131,248,3,117,38,199,68,36,12,1,0,0,0,139,69,240,137,68,36,8,139,69,244,137,68,36,4,139,69,8,137,4,36,232,235,253,255,255,233,49,1,0,0,139,69,8,139,128,140,0,0,0,139,64,80,131,224,7,131,248,1,15,133,25,1,0,0,139,69,8,139,128,140,0,0,0,139,64,16,133, 192,15,132,5,1,0,0,139,69,8,139,128,140,0,0,0,139,64,16,139,64,4,133,192,15,133,238,0,0,0,139,69,8,139,128,140,0,0,0,139,64,16,139,0,137,69,232,139,69,232,139,16,141,131,223,118,6,0,139,0,139,0,57,194,15,133,161,0,0,0,139,69,232,137,4,36,232,108,157, 255,255,133,192,15,132,142,0,0,0,139,69,232,137,4,36,232,22,15,0,0,137,69,228,131,125,228,0,116,122,141,131,63,3,6,0,137,4,36,232,143,172,3,0,137,194,139,77,228,141,131,127,243,5,0,137,68,36,8,137,84,36,4,137,12,36,232,98,185,3,0,139,69,8,139,144,140, 0,0,0,139,66,80,131,224,248,137,66,80,139,69,228,137,4,36,232,159,158,255,255,139,128,144,0,0,0,139,48,139,69,228,137,4,36,232,140,158,255,255,137,194,139,69,228,137,68,36,12,137,116,36,8,137,84,36,4,141,131,247,4,6,0,137,4,36,232,63,66,4,0,235,55,139, 69,8,139,128,140,0,0,0,139,64,16,139,16,199,68,36,8,1,0,0,0,139,69,8,137,68,36,4,137,20,36,232,185,183,255,255,139,69,8,139,144,140,0,0,0,139,66,80,131,224,248,137,66,80,131,196,64,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,240,0,0, 0,0,199,69,236,0,0,0,0,141,131,106,158,6,0,139,0,133,192,117,68,199,68,36,4,1,0,0,0,139,69,8,137,4,36,232,197,203,255,255,137,194,141,131,0,3,6,0,137,68,36,12,137,84,36,8,141,131,71,206,255,255,137,68,36,4,139,69,8,137,4,36,232,154,193,255,255,141,131, 106,158,6,0,199,0,1,0,0,0,139,69,8,139,128,140,0,0,0,139,64,16,137,69,244,235,99,139,69,244,139,0,139,0,137,69,232,139,69,244,139,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,139,69,8,137,68,36,4,137,20,36,232,105,182,255,255,141,131,162,116,6,0,139, 0,139,0,57,69,232,117,9,199,69,240,1,0,0,0,235,22,141,131,170,116,6,0,139,0,139,0,57,69,232,117,7,199,69,236,1,0,0,0,139,69,244,139,64,4,137,69,244,131,125,244,0,117,151,131,125,240,0,116,11,139,69,8,137,4,36,232,170,69,0,0,131,125,236,0,116,11,139,69, 8,137,4,36,232,240,72,0,0,139,69,8,137,68,36,4,141,131,106,253,5,0,137,4,36,232,227,64,4,0,139,69,8,139,128,140,0,0,0,139,64,16,133,192,116,23,141,131,254,102,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,44,136,255,255,131,196,36,91,201,195,85,137,229, 83,131,236,116,232,0,0,0,0,91,131,125,16,2,15,142,99,8,0,0,131,125,8,0,15,132,89,8,0,0,139,69,8,139,128,140,0,0,0,133,192,117,5,233,71,8,0,0,141,131,33,157,6,0,199,0,0,0,0,0,139,69,20,137,4,36,232,15,43,3,0,217,93,160,141,131,177,101,6,0,243,15,16,0, 243,15,16,77,160,15,46,200,15,149,192,15,154,194,9,208,15,182,192,137,69,232,139,69,20,131,192,16,137,4,36,232,222,42,3,0,217,93,164,141,131,177,101,6,0,243,15,16,0,243,15,16,77,164,15,46,200,15,149,192,15,154,194,9,208,15,182,192,137,69,228,139,69,20, 131,192,8,139,0,131,248,2,117,17,139,69,20,131,192,8,139,64,4,137,69,236,233,96,1,0,0,139,69,20,131,192,8,139,0,131,248,1,15,133,62,1,0,0,139,69,20,131,192,8,243,15,16,64,4,243,15,44,192,137,69,168,131,125,168,10,116,90,131,125,168,10,127,17,131,125, 168,8,116,34,131,125,168,9,116,50,233,155,0,0,0,131,125,168,32,116,105,131,125,168,127,116,121,131,125,168,27,116,71,233,132,0,0,0,141,131,192,1,6,0,137,4,36,232,123,169,3,0,137,69,236,233,243,0,0,0,141,131,202,1,6,0,137,4,36,232,101,169,3,0,137,69,236, 233,221,0,0,0,141,131,206,1,6,0,137,4,36,232,79,169,3,0,137,69,236,233,199,0,0,0,141,131,213,1,6,0,137,4,36,232,57,169,3,0,137,69,236,233,177,0,0,0,141,131,220,1,6,0,137,4,36,232,35,169,3,0,137,69,236,233,155,0,0,0,141,131,226,1,6,0,137,4,36,232,13,169, 3,0,137,69,236,233,133,0,0,0,139,69,20,131,192,8,243,15,16,64,4,15,40,208,15,87,192,243,15,95,208,141,131,193,104,6,0,15,40,0,15,40,224,15,40,200,243,15,194,202,2,141,131,209,104,6,0,15,40,0,15,40,216,243,15,194,218,2,15,84,225,102,15,114,241,31,15,92, 212,243,15,91,194,102,15,254,193,102,15,235,195,102,15,126,192,137,68,36,4,141,69,219,137,4,36,232,30,173,4,0,141,69,219,137,4,36,232,150,168,3,0,137,69,236,235,17,141,131,233,1,6,0,137,4,36,232,131,168,3,0,137,69,236,139,69,20,139,0,131,248,1,117,17, 139,69,20,243,15,16,64,4,243,15,44,192,137,69,172,235,7,199,69,172,0,0,0,0,139,69,172,137,69,240,139,69,20,131,192,8,139,0,131,248,1,117,20,139,69,20,131,192,8,243,15,16,64,4,243,15,44,192,137,69,176,235,7,199,69,176,0,0,0,0,139,69,176,137,69,244,131, 125,244,92,116,12,131,125,244,123,116,6,131,125,244,125,117,26,139,69,244,137,68,36,4,141,131,235,1,6,0,137,4,36,232,198,161,4,0,233,220,5,0,0,131,125,244,13,117,7,199,69,244,10,0,0,0,139,69,20,131,192,8,139,0,131,248,2,117,40,139,69,20,131,192,8,139, 64,4,139,16,141,131,206,1,6,0,137,68,36,4,137,20,36,232,10,107,6,0,133,192,117,7,199,69,244,10,0,0,0,141,131,253,156,6,0,139,0,133,192,117,72,141,131,255,1,6,0,137,4,36,232,162,167,3,0,137,194,141,131,253,156,6,0,137,16,141,131,4,2,6,0,137,4,36,232,138, 167,3,0,137,194,141,131,249,156,6,0,137,16,141,131,11,2,6,0,137,4,36,232,114,167,3,0,137,194,141,131,245,156,6,0,137,16,131,125,244,30,117,26,199,69,244,0,0,0,0,141,131,195,26,6,0,137,4,36,232,77,167,3,0,137,69,236,235,94,131,125,244,31,117,26,199,69, 244,0,0,0,0,141,131,23,2,6,0,137,4,36,232,45,167,3,0,137,69,236,235,62,131,125,244,28,117,26,199,69,244,0,0,0,0,141,131,28,2,6,0,137,4,36,232,13,167,3,0,137,69,236,235,30,131,125,244,29,117,24,199,69,244,0,0,0,0,141,131,33,2,6,0,137,4,36,232,237,166, 3,0,137,69,236,141,131,253,156,6,0,139,0,139,64,4,133,192,116,36,131,125,232,0,116,30,243,15,42,69,244,141,131,253,156,6,0,139,0,139,64,4,243,15,17,68,36,4,137,4,36,232,42,228,3,0,141,131,249,156,6,0,139,0,139,64,4,133,192,116,36,131,125,232,0,117,30, 243,15,42,69,244,141,131,249,156,6,0,139,0,139,64,4,243,15,17,68,36,4,137,4,36,232,247,227,3,0,141,131,245,156,6,0,139,0,139,64,4,133,192,116,97,139,69,20,139,80,4,139,0,137,69,200,137,85,204,199,69,200,1,0,0,0,243,15,42,69,232,243,15,17,69,204,141,69, 200,131,192,8,199,0,2,0,0,0,141,69,200,141,80,8,139,69,236,137,66,4,141,131,245,156,6,0,139,0,139,80,4,141,69,200,137,68,36,12,199,68,36,8,2,0,0,0,199,68,36,4,0,0,0,0,137,20,36,232,228,227,3,0,139,69,8,139,128,140,0,0,0,133,192,15,132,225,3,0,0,131,125, 8,0,15,132,112,3,0,0,131,125,232,0,15,132,102,3,0,0,139,69,8,139,128,140,0,0,0,139,64,80,131,224,7,131,248,1,117,18,139,69,8,139,144,140,0,0,0,139,66,80,131,224,248,137,66,80,139,69,8,139,128,140,0,0,0,139,64,24,133,192,116,67,139,69,8,139,128,140,0, 0,0,139,64,32,133,192,116,51,131,125,244,0,116,45,139,69,8,139,128,140,0,0,0,139,80,32,243,15,42,69,244,139,69,8,139,128,140,0,0,0,139,64,24,243,15,17,68,36,4,137,4,36,255,210,233,237,2,0,0,139,69,8,139,128,140,0,0,0,139,64,20,133,192,15,132,22,1,0,0, 131,125,244,0,117,112,139,69,236,139,16,141,131,195,26,6,0,137,68,36,4,137,20,36,232,136,104,6,0,133,192,116,85,139,69,236,139,16,141,131,23,2,6,0,137,68,36,4,137,20,36,232,109,104,6,0,133,192,116,58,139,69,236,139,16,141,131,28,2,6,0,137,68,36,4,137, 20,36,232,82,104,6,0,133,192,116,31,139,69,236,139,16,141,131,33,2,6,0,137,68,36,4,137,20,36,232,55,104,6,0,133,192,15,133,160,0,0,0,139,69,8,139,128,140,0,0,0,139,64,80,131,224,16,133,192,117,56,199,68,36,4,3,0,0,0,139,69,8,137,4,36,232,19,192,255,255, 137,194,141,131,39,2,6,0,137,68,36,12,137,84,36,8,141,131,244,199,255,255,137,68,36,4,139,69,8,137,4,36,232,181,186,255,255,139,69,8,139,128,140,0,0,0,139,80,20,139,69,236,137,68,36,8,139,69,244,137,68,36,4,137,20,36,232,163,117,1,0,139,69,8,139,128, 140,0,0,0,139,64,80,131,224,16,133,192,15,132,223,1,0,0,141,131,181,101,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,219,129,255,255,233,195,1,0,0,131,125,244,8,116,6,131,125,244,127,117,127,139,69,8,139,128,140,0,0,0,139,64,80,131,224,32,133,192,116, 16,139,69,8,137,4,36,232,6,20,0,0,233,148,1,0,0,139,69,8,139,128,140,0,0,0,139,64,16,133,192,15,132,128,1,0,0,199,68,36,4,2,0,0,0,139,69,8,137,4,36,232,67,191,255,255,137,194,141,131,217,100,6,0,137,68,36,12,137,84,36,8,141,131,244,199,255,255,137,68, 36,4,139,69,8,137,4,36,232,229,185,255,255,139,69,8,137,4,36,232,192,20,0,0,233,56,1,0,0,139,69,236,139,16,141,131,195,26,6,0,137,68,36,4,137,20,36,232,237,102,6,0,133,192,117,53,131,125,228,0,116,9,199,69,180,246,255,255,255,235,7,199,69,180,255,255, 255,255,139,69,180,137,68,36,8,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,145,247,255,255,233,232,0,0,0,139,69,236,139,16,141,131,23,2,6,0,137,68,36,4,137,20,36,232,157,102,6,0,133,192,117,53,131,125,228,0,116,9,199,69,184,10,0,0,0,235,7,199,69,184,1, 0,0,0,139,69,184,137,68,36,8,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,65,247,255,255,233,152,0,0,0,139,69,236,139,16,141,131,28,2,6,0,137,68,36,4,137,20,36,232,77,102,6,0,133,192,117,50,131,125,228,0,116,9,199,69,188,246,255,255,255,235,7,199,69,188, 255,255,255,255,199,68,36,8,0,0,0,0,139,69,188,137,68,36,4,139,69,8,137,4,36,232,241,246,255,255,235,75,139,69,236,139,16,141,131,33,2,6,0,137,68,36,4,137,20,36,232,0,102,6,0,133,192,117,48,131,125,228,0,116,9,199,69,192,10,0,0,0,235,7,199,69,192,1,0, 0,0,199,68,36,8,0,0,0,0,139,69,192,137,68,36,4,139,69,8,137,4,36,232,164,246,255,255,131,125,8,0,116,97,131,125,244,0,117,91,139,69,8,139,128,160,0,0,0,131,224,32,133,192,116,75,139,69,236,139,16,199,68,36,8,7,0,0,0,141,131,46,2,6,0,137,68,36,4,137,20, 36,232,163,101,6,0,133,192,117,40,131,125,232,0,116,9,199,69,196,0,0,0,0,235,7,199,69,196,4,0,0,0,139,69,196,137,68,36,4,139,69,8,137,4,36,232,217,201,255,255,131,196,116,91,201,195,85,137,229,86,131,236,20,139,69,8,139,128,140,0,0,0,139,80,92,139,69, 8,139,128,140,0,0,0,139,64,56,137,209,41,193,139,69,8,139,128,140,0,0,0,139,80,88,139,69,8,139,128,140,0,0,0,139,64,52,137,214,41,198,137,240,137,76,36,8,137,68,36,4,139,69,8,137,4,36,232,227,245,255,255,139,69,8,139,144,140,0,0,0,139,69,8,139,128,140, 0,0,0,139,64,88,137,66,52,139,69,8,139,144,140,0,0,0,139,69,8,139,128,140,0,0,0,139,64,92,137,66,56,131,196,20,94,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,243,15,16,69,20,243,15,44,192,137,69,244,139,69,8,139,128,140,0,0,0,133,192,117,19,141, 131,64,246,5,0,137,4,36,232,58,160,4,0,233,254,2,0,0,243,15,16,69,16,243,15,44,208,243,15,16,69,12,243,15,44,192,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,28,41,0,0,139,69,8,139,128,140,0,0,0,139,64,80,131,224,7,131,248,1,15,133,152,0,0,0,139,69, 8,139,128,140,0,0,0,139,64,84,133,192,117,33,139,69,8,139,176,140,0,0,0,141,131,105,255,255,255,137,68,36,4,139,69,8,137,4,36,232,53,223,3,0,137,70,84,139,69,8,139,128,140,0,0,0,139,64,84,137,4,36,232,112,223,3,0,139,69,8,139,128,140,0,0,0,139,80,84, 141,131,150,95,6,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,212,224,3,0,139,69,8,139,144,140,0,0,0,243,15,16,69,12,243,15,44,192,137,66,88,139,69,8,139,144,140,0,0,0,243,15,16,69,16,243,15,44,192,137,66,92,233,23,2,0,0,139,69,8,139,128,140,0,0,0,139, 64,80,131,224,7,131,248,3,117,50,243,15,16,69,16,243,15,44,208,243,15,16,69,12,243,15,44,192,199,68,36,12,0,0,0,0,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,249,240,255,255,233,209,1,0,0,139,69,8,139,128,140,0,0,0,139,64,80,131,224,7,131,248,2,117, 58,243,15,16,69,16,243,15,44,192,243,15,16,69,12,243,15,44,208,199,68,36,16,0,0,0,0,199,68,36,12,0,0,0,0,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,199,234,255,255,233,131,1,0,0,139,69,8,139,128,140,0,0,0,139,64,80,131,224,7,131,248,4,15,133,171,0, 0,0,139,69,8,139,128,140,0,0,0,139,64,28,133,192,117,14,141,131,43,249,5,0,137,4,36,232,150,158,4,0,139,69,8,139,128,140,0,0,0,139,80,28,139,69,8,139,128,140,0,0,0,139,64,56,243,15,42,200,243,15,16,69,16,15,40,208,243,15,92,209,139,69,8,139,128,140,0, 0,0,139,64,52,243,15,42,200,243,15,16,69,12,243,15,92,193,139,69,8,139,128,140,0,0,0,139,64,24,243,15,17,84,36,8,243,15,17,68,36,4,137,4,36,255,210,139,69,8,139,144,140,0,0,0,243,15,16,69,12,243,15,44,192,137,66,52,139,69,8,139,144,140,0,0,0,243,15,16, 69,16,243,15,44,192,137,66,56,233,192,0,0,0,139,69,8,139,128,140,0,0,0,139,64,80,131,224,7,131,248,5,117,112,139,69,8,139,128,140,0,0,0,139,64,20,137,69,240,131,125,240,0,15,132,147,0,0,0,139,69,8,139,128,140,0,0,0,139,64,56,243,15,42,200,243,15,16,69, 16,243,15,92,193,243,15,44,208,139,69,8,139,128,140,0,0,0,139,64,52,243,15,42,200,243,15,16,69,12,243,15,92,193,243,15,44,192,199,68,36,12,2,0,0,0,137,84,36,8,137,68,36,4,139,69,240,137,4,36,232,254,116,1,0,235,60,243,15,16,69,16,243,15,44,208,243,15, 16,69,12,243,15,44,200,199,68,36,20,0,0,0,0,139,69,244,137,68,36,16,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,139,69,8,137,4,36,232,77,221,255,255,139,69,8,139,144,140,0,0,0,139,66,80,131,200,8,137,66,80,131,196,48,91,94,201,195,85,137,229,131,236, 40,139,69,8,139,128,140,0,0,0,133,192,116,90,141,69,240,137,68,36,8,141,69,244,137,68,36,4,139,69,8,137,4,36,232,198,37,0,0,139,69,244,133,192,117,7,139,69,240,133,192,116,51,139,69,8,139,144,140,0,0,0,139,66,80,131,224,248,131,200,1,137,66,80,139,69, 8,139,144,140,0,0,0,139,69,244,137,66,52,139,69,8,139,144,140,0,0,0,139,69,240,137,66,56,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,12,139,0,15,182,0,132,192,116,32,139,69,12,139,0,137,68,36,8,139,69,8,137,68,36,4,141,131,137,245,5,0,137, 4,36,232,199,51,4,0,235,21,139,69,8,137,68,36,4,141,131,169,245,5,0,137,4,36,232,176,51,4,0,131,196,20,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,128,156,0,0,0,133,192,116,24,139,69,8,139,128,160,0,0,0,131,224,4,133,192,116,8,139, 69,8,137,69,228,235,80,139,69,8,139,64,28,137,69,244,235,56,139,69,244,139,16,141,131,81,102,6,0,139,0,139,0,57,194,117,28,139,69,244,137,4,36,232,165,255,255,255,137,69,240,131,125,240,0,116,8,139,69,240,137,69,228,235,22,139,69,244,139,64,4,137,69, 244,131,125,244,0,117,194,199,69,228,0,0,0,0,139,69,228,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,94,102,6,0,139,0,139,0,137,69,244,235,95,139,69,244,137,4,36,232,78,255,255,255,137,69,240,131,125,240,0,116,63,141,131,30,88, 6,0,139,0,137,68,36,4,139,69,240,137,4,36,232,30,202,255,255,139,69,240,137,4,36,232,251,142,255,255,137,194,139,69,240,137,68,36,8,137,84,36,4,141,131,234,244,5,0,137,4,36,232,178,50,4,0,235,78,139,69,244,139,128,152,0,0,0,137,69,244,131,125,244,0,117, 155,141,131,26,88,6,0,243,15,16,0,15,46,69,12,117,32,122,30,141,131,114,102,6,0,139,0,139,0,133,192,116,16,141,131,30,245,5,0,137,4,36,232,112,50,4,0,235,12,199,4,36,0,0,0,0,232,207,70,4,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91, 243,15,16,69,12,243,15,44,192,137,69,244,139,69,8,139,64,40,133,192,116,40,131,125,244,0,116,6,131,125,244,1,117,28,141,131,87,87,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,92,201,255,255,233,174,1,0,0,131,125,244,0,15,133,177,0,0,0,139,69,8,137,4,36, 232,82,254,255,255,137,69,240,131,125,240,0,116,84,141,131,99,241,5,0,137,4,36,232,203,155,3,0,137,194,139,77,240,141,131,163,225,5,0,137,68,36,8,137,84,36,4,137,12,36,232,158,168,3,0,139,69,240,137,4,36,232,237,141,255,255,137,194,139,69,240,137,68, 36,8,137,84,36,4,141,131,143,244,5,0,137,4,36,232,164,49,4,0,233,60,1,0,0,141,131,175,101,6,0,139,0,139,0,133,192,116,43,139,69,240,137,4,36,232,180,141,255,255,137,194,139,69,240,137,68,36,8,137,84,36,4,141,131,195,244,5,0,137,4,36,232,107,49,4,0,233, 3,1,0,0,139,69,8,137,4,36,232,217,208,3,0,233,243,0,0,0,131,125,244,1,117,16,139,69,8,137,4,36,232,195,208,3,0,233,221,0,0,0,131,125,244,2,15,133,158,0,0,0,141,131,87,87,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,143,120,255,255,235,9,139,69,8,139,64, 40,137,69,8,139,69,8,139,64,40,133,192,117,237,139,69,8,137,4,36,232,85,253,255,255,137,69,240,131,125,240,0,116,81,141,131,99,241,5,0,137,4,36,232,206,154,3,0,137,194,139,77,240,141,131,163,225,5,0,137,68,36,8,137,84,36,4,137,12,36,232,161,167,3,0,139, 69,8,137,4,36,232,240,140,255,255,137,194,139,69,240,137,68,36,8,137,84,36,4,141,131,143,244,5,0,137,4,36,232,167,48,4,0,235,66,139,69,8,137,4,36,232,24,208,3,0,235,53,131,125,244,3,117,47,141,131,87,87,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,235, 119,255,255,141,131,91,87,6,0,139,0,137,68,36,4,199,4,36,0,0,0,0,232,68,253,255,255,131,196,36,91,201,195,85,137,229,83,129,236,148,0,0,0,232,0,0,0,0,91,139,69,8,137,69,148,141,131,249,98,6,0,139,0,139,16,137,85,244,49,210,139,69,148,137,4,36,232,91, 140,255,255,137,69,160,139,69,160,137,4,36,232,77,23,5,0,139,69,160,139,128,148,0,0,0,137,68,36,16,141,131,244,242,5,0,137,68,36,12,199,68,36,8,80,0,0,0,199,68,36,4,0,0,0,0,141,69,164,137,4,36,232,232,90,6,0,139,85,160,139,77,160,141,69,164,137,68,36, 8,137,84,36,4,137,12,36,232,36,20,5,0,141,131,249,98,6,0,139,0,139,85,244,51,16,116,5,232,193,90,6,0,129,196,148,0,0,0,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,12,139,0,137,69,240,141,131,58,140,6,0,139,0,57,69,240,15,140,34,1,0,0,139, 69,8,139,64,28,137,69,244,199,69,236,0,0,0,0,233,3,1,0,0,199,69,232,0,0,0,0,139,69,244,137,4,36,232,122,201,3,0,137,69,232,131,125,232,0,15,132,216,0,0,0,141,131,66,140,6,0,139,16,141,131,70,140,6,0,139,8,139,69,232,139,64,8,137,84,36,8,137,76,36,4,137, 4,36,232,136,134,3,0,133,192,15,132,170,0,0,0,141,131,58,140,6,0,139,0,57,69,240,127,30,141,131,58,140,6,0,139,0,57,69,240,15,133,140,0,0,0,141,131,62,140,6,0,139,0,57,69,236,126,127,141,147,58,140,6,0,139,69,240,137,2,141,147,62,140,6,0,139,69,236,137, 2,139,69,8,137,4,36,232,218,172,255,255,141,131,190,238,5,0,137,4,36,232,187,152,3,0,137,194,139,77,8,141,131,254,222,5,0,137,68,36,8,137,84,36,4,137,12,36,232,142,165,3,0,141,131,182,84,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,22,28,0,0,139,69,244, 137,68,36,4,139,69,8,137,4,36,232,255,168,255,255,199,69,228,1,0,0,0,233,128,0,0,0,139,69,244,139,64,4,137,69,244,255,69,236,131,125,244,0,15,133,243,254,255,255,139,69,8,139,64,28,137,69,244,199,69,236,0,0,0,0,235,75,139,69,244,139,16,141,131,94,98, 6,0,139,0,139,0,57,194,117,44,139,69,12,139,0,141,80,1,139,69,12,137,16,139,85,244,139,69,12,137,68,36,4,137,20,36,232,116,254,255,255,133,192,116,9,199,69,228,1,0,0,0,235,25,139,69,244,139,64,4,137,69,244,255,69,236,131,125,244,0,117,175,199,69,228, 0,0,0,0,139,69,228,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,244,0,0,0,0,139,69,12,137,4,36,232,157,134,4,0,137,69,240,141,131,139,138,6,0,139,0,133,192,117,15,232,100,32,3,0,137,194,141,131,139,138,6,0,137,16,139,69,240,139, 0,137,4,36,232,231,90,6,0,137,194,139,69,240,139,8,141,131,139,138,6,0,139,0,137,84,36,8,137,76,36,4,137,4,36,232,173,33,3,0,141,131,127,138,6,0,199,0,0,0,0,0,141,131,131,138,6,0,199,0,255,255,255,255,243,15,16,69,16,243,15,44,208,141,131,135,138,6,0, 137,16,141,131,7,97,6,0,139,0,139,85,8,137,16,141,69,244,137,68,36,4,139,69,8,137,4,36,232,148,253,255,255,133,192,117,37,141,131,139,138,6,0,139,0,137,4,36,232,108,51,3,0,139,69,8,137,68,36,4,141,131,177,240,5,0,137,4,36,232,34,45,4,0,131,196,36,91, 201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,244,0,0,0,0,141,131,171,137,6,0,139,0,133,192,116,82,141,131,39,96,6,0,139,0,139,0,133,192,117,2,235,66,141,131,39,96,6,0,139,0,139,16,141,69,244,137,68,36,4,137,20,36,232,28,253,255,255,133,192, 117,37,141,131,171,137,6,0,139,0,137,4,36,232,244,50,3,0,139,69,8,137,68,36,4,141,131,209,239,5,0,137,4,36,232,170,44,4,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,64,40,133,192,116,36,139,69,8,139,64,40,137,4,36,232, 210,43,0,0,137,194,141,131,163,81,6,0,139,0,137,68,36,4,137,20,36,232,175,195,255,255,131,196,20,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,64,28,137,69,244,233,171,0,0,0,139,69,244,59,69,12,117,104,139,69,8,137,4,36,232,44,170,255, 255,139,69,8,137,4,36,232,125,43,0,0,137,194,141,131,98,81,6,0,139,0,137,68,36,4,137,20,36,232,90,195,255,255,139,69,8,137,4,36,232,92,43,0,0,137,194,141,131,98,81,6,0,139,0,137,68,36,4,137,20,36,232,102,25,0,0,139,69,244,137,68,36,4,139,69,8,137,4,36, 232,79,166,255,255,199,69,228,1,0,0,0,235,76,139,69,244,139,16,141,131,10,95,6,0,139,0,139,0,57,194,117,31,139,69,244,139,85,12,137,84,36,4,137,4,36,232,80,255,255,255,133,192,116,9,199,69,228,1,0,0,0,235,26,139,69,244,139,64,4,137,69,244,131,125,244, 0,15,133,75,255,255,255,199,69,228,0,0,0,0,139,69,228,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,194,94,6,0,139,0,139,0,137,69,244,235,34,139,69,8,137,68,36,4,139,69,244,137,4,36,232,242,254,255,255,133,192,117,32,139,69,244, 139,128,152,0,0,0,137,69,244,131,125,244,0,117,216,141,131,82,238,5,0,137,4,36,232,218,142,4,0,131,196,36,91,201,195,85,137,229,87,86,83,129,236,188,0,0,0,232,0,0,0,0,91,199,69,228,0,0,0,0,199,69,224,0,0,0,0,199,69,220,0,0,0,0,199,69,216,0,0,0,0,139, 69,8,139,128,140,0,0,0,133,192,15,132,2,2,0,0,139,69,8,139,64,28,137,69,212,233,149,0,0,0,139,69,212,139,64,4,137,69,208,139,69,212,137,68,36,4,139,69,8,137,4,36,232,223,164,255,255,133,192,116,57,131,125,224,0,116,27,139,85,224,139,69,212,137,66,4,139, 69,212,137,69,224,139,69,212,199,64,4,0,0,0,0,235,79,139,69,212,137,69,224,139,69,224,137,69,228,139,69,224,199,64,4,0,0,0,0,235,55,131,125,216,0,116,27,139,85,216,139,69,212,137,66,4,139,69,212,137,69,216,139,69,212,199,64,4,0,0,0,0,235,22,139,69,212, 137,69,216,139,69,216,137,69,220,139,69,216,199,64,4,0,0,0,0,139,69,208,137,69,212,131,125,212,0,15,133,97,255,255,255,131,125,220,0,117,11,139,85,8,139,69,228,137,66,28,235,18,139,85,8,139,69,220,137,66,28,139,85,216,139,69,228,137,66,4,139,69,8,139, 128,140,0,0,0,139,64,36,137,4,36,232,227,29,3,0,139,69,8,137,68,36,4,141,133,104,255,255,255,137,4,36,232,189,92,255,255,233,233,0,0,0,139,133,108,255,255,255,137,68,36,4,139,69,8,137,4,36,232,245,163,255,255,137,69,200,139,133,120,255,255,255,137,68, 36,4,139,69,8,137,4,36,232,221,163,255,255,137,69,196,139,69,200,59,69,196,15,132,173,0,0,0,139,117,136,139,133,120,255,255,255,137,68,36,4,139,69,8,137,4,36,232,201,168,255,255,137,199,139,133,116,255,255,255,137,133,92,255,255,255,139,133,108,255,255, 255,137,68,36,4,139,69,8,137,4,36,232,166,168,255,255,137,133,96,255,255,255,141,131,176,233,5,0,137,4,36,232,73,147,3,0,137,133,100,255,255,255,141,131,197,229,5,0,137,4,36,232,53,147,3,0,137,194,139,69,8,139,128,140,0,0,0,139,72,36,137,116,36,28,137, 124,36,24,139,133,92,255,255,255,137,68,36,20,139,133,96,255,255,255,137,68,36,16,139,133,100,255,255,255,137,68,36,12,137,84,36,8,141,131,245,2,6,0,137,68,36,4,137,12,36,232,142,40,3,0,141,133,104,255,255,255,137,4,36,232,251,91,255,255,137,69,204,131, 125,204,0,15,133,252,254,255,255,129,196,188,0,0,0,91,94,95,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,126,227,5,0,137,4,36,232,170,146,3,0,139,85,8,137,68,36,4,137,20,36,232,82,203,3,0,139,69,8,139,128,140,0,0,0,139,64,36,199,68,36,12,0, 0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,84,51,3,0,141,131,126,227,5,0,137,4,36,232,97,146,3,0,139,85,8,137,68,36,4,137,20,36,232,233,203,3,0,131,196,20,91,201,195,85,137,229,87,86,83,129,236,172,0,0,0,232,0,0,0,0,91,232,234,26,3,0, 137,69,220,139,69,8,139,64,28,137,69,228,235,49,139,69,228,137,68,36,4,139,69,8,137,4,36,232,75,162,255,255,133,192,116,18,139,69,220,137,68,36,4,139,69,228,137,4,36,232,55,200,3,0,139,69,228,139,64,4,137,69,228,131,125,228,0,117,201,139,69,8,137,68, 36,4,141,69,128,137,4,36,232,194,90,255,255,233,221,0,0,0,139,69,132,137,68,36,4,139,69,8,137,4,36,232,253,161,255,255,133,192,15,132,195,0,0,0,139,69,144,137,68,36,4,139,69,8,137,4,36,232,227,161,255,255,133,192,15,132,169,0,0,0,139,125,160,139,69,144, 199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,232,8,167,255,255,137,133,108,255,255,255,139,69,140,137,133,112,255,255,255,139,69,132,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,232,223,166,255,255,137,133,116,255,255,255,141,131,235,230,5, 0,137,4,36,232,75,145,3,0,137,198,141,131,0,227,5,0,137,4,36,232,59,145,3,0,137,124,36,28,139,149,108,255,255,255,137,84,36,24,139,149,112,255,255,255,137,84,36,20,139,149,116,255,255,255,137,84,36,16,137,116,36,12,137,68,36,8,141,131,48,0,6,0,137,68, 36,4,139,69,220,137,4,36,232,159,38,3,0,141,69,128,137,4,36,232,15,90,255,255,137,69,224,131,125,224,0,15,133,11,255,255,255,139,69,220,129,196,172,0,0,0,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,128,140,0,0,0,133,192,15,132, 150,0,0,0,139,69,8,139,128,140,0,0,0,139,64,16,133,192,117,5,233,129,0,0,0,141,131,59,131,6,0,139,0,137,4,36,232,127,25,3,0,139,69,8,137,4,36,232,60,254,255,255,137,194,141,131,59,131,6,0,137,16,139,69,8,139,128,140,0,0,0,139,64,20,133,192,116,76,139, 69,8,139,128,140,0,0,0,139,80,20,141,69,240,137,68,36,8,141,69,244,137,68,36,4,137,20,36,232,79,79,1,0,141,131,244,233,5,0,137,4,36,232,46,41,4,0,139,69,244,139,85,240,137,68,36,8,137,84,36,4,141,131,5,234,5,0,137,4,36,232,60,38,4,0,131,196,36,91,201, 195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,139,128,140,0,0,0,139,64,80,131,224,32,133,192,15,132,234,0,0,0,139,69,8,139,128,140,0,0,0,139,64,72,243,15,42,216,139,69,8,139,128,140,0,0,0,139,64,68,243,15,42,200,139,69,8,139,128,140,0,0,0,139, 64,64,243,15,42,208,139,69,8,139,128,140,0,0,0,139,64,60,243,15,42,192,243,15,17,92,36,16,243,15,17,76,36,12,243,15,17,84,36,8,243,15,17,68,36,4,139,69,8,137,4,36,232,182,168,255,255,141,131,52,75,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,7,109,255, 255,139,69,8,139,128,140,0,0,0,139,80,72,139,69,8,139,128,140,0,0,0,139,72,68,139,69,8,139,128,140,0,0,0,139,112,64,139,69,8,139,128,140,0,0,0,139,64,60,137,84,36,16,137,76,36,12,137,116,36,8,137,68,36,4,139,69,8,137,4,36,232,23,168,255,255,137,194,141, 131,99,233,5,0,137,68,36,12,137,84,36,8,141,131,29,170,255,255,137,68,36,4,139,69,8,137,4,36,232,33,165,255,255,131,196,32,91,94,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,232,136,131,255,255,137,69,236,139,69,8,139,128,140,0,0,0,139,64,80,131, 224,32,133,192,15,132,211,0,0,0,139,69,8,139,128,140,0,0,0,139,64,72,243,15,42,216,139,69,8,139,128,140,0,0,0,139,64,68,243,15,42,200,139,69,8,139,128,140,0,0,0,139,64,64,243,15,42,208,139,69,8,139,128,140,0,0,0,139,64,60,243,15,42,192,243,15,17,92,36, 16,243,15,17,76,36,12,243,15,17,84,36,8,243,15,17,68,36,4,139,69,8,137,4,36,232,152,167,255,255,139,69,8,139,128,140,0,0,0,139,80,72,139,69,8,139,128,140,0,0,0,139,72,68,139,69,8,139,128,140,0,0,0,139,112,64,139,69,8,139,128,140,0,0,0,139,64,60,137,84, 36,16,137,76,36,12,137,116,36,8,137,68,36,4,139,69,8,137,4,36,232,16,167,255,255,137,194,141,131,77,232,5,0,137,68,36,12,137,84,36,8,141,131,7,169,255,255,137,68,36,4,139,69,8,137,4,36,232,26,164,255,255,139,69,8,139,128,140,0,0,0,139,64,20,133,192,116, 100,141,131,74,88,6,0,139,0,199,0,0,0,0,0,139,69,8,137,4,36,232,238,161,255,255,141,131,74,88,6,0,139,0,139,0,133,192,116,61,139,69,8,139,64,28,137,69,244,235,44,139,69,244,141,147,74,88,6,0,139,18,139,18,57,208,117,18,139,69,244,137,68,36,4,139,69,8, 137,4,36,232,41,158,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,117,206,139,69,8,139,64,28,137,69,244,235,57,139,69,244,139,64,4,137,69,240,139,69,244,137,68,36,4,139,69,8,137,4,36,232,162,157,255,255,133,192,116,20,139,69,244,137,68,36,4,139, 69,8,137,4,36,232,39,30,0,0,235,194,139,69,240,137,69,244,131,125,244,0,117,193,139,69,236,137,4,36,232,0,130,255,255,141,131,30,74,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,176,106,255,255,131,196,48,91,94,201,195,85,137,229,83,131,236,36,232,0,0, 0,0,91,139,69,8,139,128,140,0,0,0,133,192,15,132,60,1,0,0,139,69,8,139,128,140,0,0,0,133,192,116,35,139,69,8,139,128,140,0,0,0,139,64,80,131,224,32,133,192,116,16,139,69,8,137,4,36,232,186,252,255,255,233,12,1,0,0,139,69,8,139,128,140,0,0,0,139,64,20, 133,192,116,124,139,69,8,139,128,140,0,0,0,139,80,20,141,69,240,137,68,36,8,141,69,244,137,68,36,4,137,20,36,232,162,75,1,0,139,69,240,133,192,15,132,207,0,0,0,139,69,8,137,4,36,232,179,251,255,255,139,69,8,139,128,140,0,0,0,139,80,20,141,131,240,85, 6,0,139,0,137,68,36,8,199,68,36,4,127,0,0,0,137,20,36,232,133,93,1,0,141,131,56,72,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,212,105,255,255,233,128,0,0,0,139,69,8,139,128,140,0,0,0,133,192,116,115,139,69,8,139,128,140,0,0,0,139,64,16,133,192,116,99, 199,68,36,4,1,0,0,0,139,69,8,137,4,36,232,98,167,255,255,137,194,141,131,114,230,5,0,137,68,36,12,137,84,36,8,141,131,119,170,255,255,137,68,36,4,139,69,8,137,4,36,232,4,162,255,255,139,69,8,137,4,36,232,15,251,255,255,139,69,8,137,4,36,232,212,252,255, 255,139,69,8,137,68,36,4,141,131,164,222,5,0,137,4,36,232,223,33,4,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,128,140,0,0,0,133,192,116,66,139,69,8,139,128,140,0,0,0,139,64,16,137,69,244,235,43,139,69,244,139,0,139,16, 141,131,128,84,6,0,139,0,139,0,57,194,117,13,139,69,244,139,0,137,4,36,232,119,117,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,117,207,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,232,224,127,255,255,137,69,232,141,131,118,70, 6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,190,14,0,0,139,69,8,137,4,36,232,55,159,255,255,139,69,8,139,64,28,137,69,236,199,69,228,0,0,0,0,235,12,255,69,228,139,69,236,139,64,4,137,69,236,131,125,236,0,117,238,141,147,10,126,6,0,139,69,228,137,2,141, 147,14,126,6,0,139,69,8,137,2,141,131,22,220,5,0,137,4,36,232,222,138,3,0,139,85,8,137,68,36,4,137,20,36,232,134,195,3,0,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,139,69,12,137,4,36,232,145,43,3,0,141,131,22,220,5,0,137,4,36,232,158, 138,3,0,139,85,8,137,68,36,4,137,20,36,232,38,196,3,0,139,69,8,139,64,28,137,69,236,199,69,224,0,0,0,0,235,38,139,69,224,59,69,228,124,18,139,69,236,137,68,36,4,139,69,8,137,4,36,232,235,154,255,255,139,69,236,139,64,4,137,69,236,255,69,224,131,125,236, 0,117,212,141,131,14,126,6,0,199,0,0,0,0,0,139,69,232,137,4,36,232,253,126,255,255,141,131,118,70,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,173,103,255,255,139,69,8,137,68,36,4,141,131,226,220,5,0,137,4,36,232,40,32,4,0,139,69,8,137,4,36,232,68,254, 255,255,131,196,52,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,128,140,0,0,0,133,192,116,103,139,69,8,139,128,140,0,0,0,139,64,20,133,192,116,16,141,131,84,227,5,0,137,4,36,232,181,34,4,0,235,71,139,69,8,137,4,36,232,149,173,255,255, 137,194,141,131,100,227,5,0,137,68,36,12,137,84,36,8,141,131,2,174,255,255,137,68,36,4,139,69,8,137,4,36,232,167,159,255,255,141,131,98,124,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,31,254,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232, 0,0,0,0,91,139,69,8,139,128,140,0,0,0,133,192,15,132,216,0,0,0,139,69,8,139,128,140,0,0,0,139,64,80,131,224,7,133,192,15,133,193,0,0,0,139,69,8,139,128,140,0,0,0,139,64,16,133,192,15,132,173,0,0,0,139,69,8,137,4,36,232,76,248,255,255,139,69,8,137,4,36, 232,244,172,255,255,137,194,141,131,227,226,5,0,137,68,36,12,137,84,36,8,141,131,123,173,255,255,137,68,36,4,139,69,8,137,4,36,232,6,159,255,255,141,131,219,123,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,126,253,255,255,139,69,8,139,128,140,0,0,0,139, 64,16,137,69,244,235,45,139,69,244,139,16,199,68,36,12,10,0,0,0,199,68,36,8,10,0,0,0,139,69,8,137,68,36,4,137,20,36,232,210,147,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,117,205,141,131,143,68,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,10, 102,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,128,140,0,0,0,133,192,15,132,149,0,0,0,139,69,8,139,128,160,0,0,0,131,224,32,133,192,117,23,141,131,147,67,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,194,11,0,0,199, 68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,154,157,255,255,133,192,117,13,139,69,8,137,4,36,232,28,156,255,255,235,66,139,69,8,139,64,28,137,69,244,235,49,139,69,244,137,68,36,4,139,69,8,137,4,36,232,34,152,255,255,133,192,117,18,139,69, 244,137,68,36,4,139,69,8,137,4,36,232,94,152,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,117,201,131,196,36,91,201,195,85,137,229,131,236,56,139,69,8,139,128,140,0,0,0,139,64,20,133,192,15,132,228,0,0,0,139,69,8,139,128,140,0,0,0,139,64,16,139, 0,137,69,240,131,125,240,0,15,132,17,1,0,0,139,69,8,139,128,140,0,0,0,139,64,16,139,64,4,133,192,15,133,250,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,171,156,255,255,137,69,228,139,69,8,139,128,140,0,0,0,139,64,16,139,0,137,68,36,4,139,69,8,137, 4,36,232,239,79,255,255,137,69,224,139,69,8,137,4,36,232,69,155,255,255,139,69,8,139,64,28,137,69,244,235,40,139,69,244,59,69,240,117,23,139,69,244,137,68,36,4,139,69,8,137,4,36,232,151,151,255,255,233,143,0,0,0,139,69,244,139,64,4,137,69,244,131,125, 244,0,117,210,139,69,8,139,64,28,137,69,244,235,37,139,69,244,139,64,4,133,192,117,18,139,69,244,137,68,36,4,139,69,8,137,4,36,232,92,151,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,117,213,235,72,139,69,8,139,128,140,0,0,0,139,64,16,133,192, 116,56,139,69,8,139,128,140,0,0,0,139,64,16,139,64,4,133,192,117,37,139,69,8,139,128,140,0,0,0,139,64,16,139,16,199,68,36,8,1,0,0,0,139,69,8,137,68,36,4,137,20,36,232,54,146,255,255,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,243,15,16,69,12,243, 15,44,192,137,69,244,243,15,16,69,16,243,15,44,192,137,69,240,243,15,16,69,20,243,15,44,192,137,69,236,243,15,16,69,24,243,15,44,192,137,69,232,199,69,228,0,0,0,0,199,69,224,0,0,0,0,139,69,236,137,69,208,139,69,244,137,69,204,141,131,42,121,6,0,139,0, 59,69,8,117,22,141,131,38,121,6,0,139,0,1,69,244,141,131,38,121,6,0,139,0,1,69,236,139,69,8,139,64,28,137,69,228,235,26,139,69,228,139,64,4,133,192,15,132,218,1,0,0,139,69,228,139,64,4,137,69,228,255,77,244,131,125,244,0,117,224,139,69,8,139,64,28,137, 69,224,235,26,139,69,224,139,64,4,133,192,15,132,175,1,0,0,139,69,224,139,64,4,137,69,224,255,77,236,131,125,236,0,117,224,139,69,228,137,4,36,232,200,181,3,0,137,69,220,131,125,220,0,15,132,133,1,0,0,139,69,224,137,4,36,232,176,181,3,0,137,69,216,131, 125,216,0,15,132,109,1,0,0,139,69,228,139,16,141,131,242,79,6,0,139,0,139,0,57,194,117,55,139,69,220,139,64,24,37,0,0,3,0,61,0,0,1,0,117,37,235,19,199,68,36,4,0,0,0,0,139,69,220,137,4,36,232,67,173,3,0,139,69,220,137,4,36,232,203,179,3,0,59,69,240,126, 221,139,69,224,139,16,141,131,242,79,6,0,139,0,139,0,57,194,117,70,139,69,216,139,64,24,37,0,0,3,0,61,0,0,1,0,117,52,235,34,139,69,216,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,137,68,36,4,139,69,216,137,4,36,232,120,160,3,0,139,69,216,137,4,36,232,161, 179,3,0,59,69,232,126,206,139,69,232,137,68,36,12,139,69,216,137,68,36,8,139,69,240,137,68,36,4,139,69,220,137,4,36,232,21,177,3,0,137,69,212,131,125,212,0,15,132,157,0,0,0,139,69,8,137,4,36,232,192,102,255,255,133,192,15,132,19,1,0,0,139,69,240,137, 68,36,4,139,69,220,137,4,36,232,202,183,3,0,133,192,116,9,199,69,188,2,0,0,0,235,7,199,69,188,1,0,0,0,139,69,8,137,4,36,232,210,25,0,0,137,194,139,69,212,137,68,36,28,139,69,188,137,68,36,24,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,0,0, 0,0,199,68,36,8,0,0,0,0,137,84,36,4,141,131,66,216,5,0,137,4,36,232,61,26,4,0,139,69,220,137,68,36,4,139,69,8,137,4,36,232,75,105,255,255,233,137,0,0,0,131,125,224,0,116,18,139,69,224,139,0,137,4,36,232,252,128,3,0,137,69,192,235,9,141,131,240,223,5, 0,137,69,192,131,125,228,0,116,18,139,69,228,139,0,137,4,36,232,219,128,3,0,137,69,196,235,9,141,131,240,223,5,0,137,69,196,139,69,8,139,128,144,0,0,0,139,16,139,69,192,137,68,36,28,139,69,196,137,68,36,24,139,69,232,137,68,36,20,139,69,208,137,68,36, 16,139,69,240,137,68,36,12,139,69,204,137,68,36,8,137,84,36,4,141,131,246,223,5,0,137,4,36,232,70,125,4,0,131,196,100,91,201,195,85,137,229,83,129,236,20,1,0,0,232,0,0,0,0,91,139,69,8,139,128,140,0,0,0,133,192,116,16,139,69,8,139,128,140,0,0,0,139,64, 16,133,192,117,12,199,133,20,255,255,255,1,0,0,0,235,10,199,133,20,255,255,255,0,0,0,0,139,133,20,255,255,255,137,69,184,131,125,184,0,15,148,192,15,182,192,137,68,36,4,139,69,8,137,4,36,232,50,163,255,255,137,194,141,131,149,218,5,0,137,68,36,12,137, 84,36,8,141,131,220,165,255,255,137,68,36,4,139,69,8,137,4,36,232,7,153,255,255,139,69,8,139,64,28,137,69,244,233,160,1,0,0,131,125,184,0,117,26,139,69,244,137,68,36,4,139,69,8,137,4,36,232,3,147,255,255,133,192,15,132,119,1,0,0,141,69,220,137,68,36, 20,141,69,224,137,68,36,16,141,69,228,137,68,36,12,141,69,232,137,68,36,8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,108,141,255,255,139,69,8,139,64,28,137,69,240,235,123,131,125,184,0,117,22,139,69,240,137,68,36,4,139,69,8,137,4,36,232,170,146,255, 255,133,192,116,86,141,69,204,137,68,36,20,141,69,208,137,68,36,16,141,69,212,137,68,36,12,141,69,216,137,68,36,8,139,69,8,137,68,36,4,139,69,240,137,4,36,232,23,141,255,255,139,69,228,141,80,17,139,69,212,57,194,124,27,139,69,228,141,80,239,139,69,212, 57,194,127,14,139,85,216,139,69,232,57,194,15,140,204,0,0,0,139,69,240,139,64,4,137,69,240,131,125,240,0,15,133,123,255,255,255,139,69,8,139,64,28,137,69,240,233,161,0,0,0,131,125,184,0,117,22,139,69,240,137,68,36,4,139,69,8,137,4,36,232,23,146,255,255, 133,192,116,124,141,69,204,137,68,36,20,141,69,208,137,68,36,16,141,69,212,137,68,36,12,141,69,216,137,68,36,8,139,69,8,137,68,36,4,139,69,240,137,4,36,232,132,140,255,255,139,69,228,141,80,17,139,69,212,57,194,124,65,139,69,228,141,80,239,139,69,212, 57,194,127,52,139,85,212,139,69,228,57,194,116,42,139,85,228,139,69,212,137,209,41,193,137,200,137,68,36,12,199,68,36,8,0,0,0,0,139,69,8,137,68,36,4,139,69,240,137,4,36,232,141,140,255,255,139,69,240,139,64,4,137,69,240,131,125,240,0,15,133,85,255,255, 255,139,69,244,139,64,4,137,69,244,131,125,244,0,15,133,86,254,255,255,199,69,196,35,0,0,0,141,133,28,255,255,255,137,69,200,235,13,139,69,200,199,0,0,0,0,0,131,69,200,4,255,77,196,131,125,196,255,117,234,139,69,8,139,64,28,137,69,244,233,5,1,0,0,131, 125,184,0,117,26,139,69,244,137,68,36,4,139,69,8,137,4,36,232,35,145,255,255,133,192,15,132,220,0,0,0,141,69,220,137,68,36,20,141,69,224,137,68,36,16,141,69,228,137,68,36,12,141,69,232,137,68,36,8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,140,139, 255,255,139,69,8,139,64,28,137,69,240,233,150,0,0,0,131,125,184,0,117,22,139,69,240,137,68,36,4,139,69,8,137,4,36,232,199,144,255,255,133,192,116,113,141,69,204,137,68,36,20,141,69,208,137,68,36,16,141,69,212,137,68,36,12,141,69,216,137,68,36,8,139,69, 8,137,68,36,4,139,69,240,137,4,36,232,52,139,255,255,139,69,232,141,80,18,139,69,216,57,194,124,54,139,69,232,141,80,238,139,69,216,57,194,127,41,139,69,212,139,85,220,41,208,137,69,180,131,125,180,0,120,24,131,125,180,34,127,18,139,69,180,139,148,133, 28,255,255,255,66,137,148,133,28,255,255,255,139,69,240,139,64,4,137,69,240,131,125,240,0,15,133,96,255,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,15,133,241,254,255,255,199,69,196,2,0,0,0,199,69,192,0,0,0,0,199,69,188,4,0,0,0,141,133,28,255, 255,255,131,192,8,137,69,200,235,89,139,69,200,131,232,8,139,8,139,69,200,139,16,137,208,1,192,141,20,16,139,69,200,131,232,4,139,0,1,192,141,4,2,141,20,1,139,69,200,131,192,4,139,0,1,192,1,194,139,69,200,131,192,8,139,0,141,4,2,137,69,176,139,69,176, 59,69,192,126,12,139,69,176,137,69,192,139,69,196,137,69,188,255,69,196,131,69,200,4,131,125,196,32,126,161,139,69,188,137,68,36,4,141,131,33,221,5,0,137,4,36,232,34,121,4,0,139,69,8,139,64,28,137,69,244,233,11,2,0,0,131,125,184,0,117,26,139,69,244,137, 68,36,4,139,69,8,137,4,36,232,111,143,255,255,133,192,15,132,226,1,0,0,199,69,172,1,0,0,0,141,69,220,137,68,36,20,141,69,224,137,68,36,16,141,69,228,137,68,36,12,141,69,232,137,68,36,8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,209,137,255,255,139, 69,8,139,64,28,137,69,240,233,139,0,0,0,131,125,184,0,117,22,139,69,240,137,68,36,4,139,69,8,137,4,36,232,12,143,255,255,133,192,116,102,141,69,204,137,68,36,20,141,69,208,137,68,36,16,141,69,212,137,68,36,12,141,69,216,137,68,36,8,139,69,8,137,68,36, 4,139,69,240,137,4,36,232,121,137,255,255,139,69,232,141,80,18,139,69,216,57,194,124,43,139,69,232,141,80,238,139,69,216,57,194,127,30,139,69,204,141,80,246,139,69,228,57,194,127,17,139,69,204,141,80,35,139,69,228,57,194,15,143,29,1,0,0,139,69,240,139, 64,4,137,69,240,131,125,240,0,15,133,107,255,255,255,233,251,0,0,0,199,69,172,0,0,0,0,139,69,8,139,64,28,137,69,240,233,220,0,0,0,131,125,184,0,117,26,139,69,240,137,68,36,4,139,69,8,137,4,36,232,93,142,255,255,133,192,15,132,179,0,0,0,141,69,204,137, 68,36,20,141,69,208,137,68,36,16,141,69,212,137,68,36,12,141,69,216,137,68,36,8,139,69,8,137,68,36,4,139,69,240,137,4,36,232,198,136,255,255,139,69,232,141,80,18,139,69,216,57,194,124,120,139,69,232,141,80,238,139,69,216,57,194,127,107,139,85,212,139, 69,228,57,194,126,97,139,69,220,141,80,35,139,69,212,57,194,126,84,139,69,220,137,194,3,85,188,139,69,212,137,209,41,193,137,200,137,69,168,139,85,232,139,69,216,41,194,139,69,168,137,68,36,12,137,84,36,8,139,69,8,137,68,36,4,139,69,240,137,4,36,232, 179,136,255,255,139,69,212,3,69,168,137,69,228,139,69,204,3,69,168,137,69,220,199,69,172,1,0,0,0,235,19,139,69,240,139,64,4,137,69,240,131,125,240,0,15,133,26,255,255,255,131,125,172,0,15,133,251,254,255,255,139,69,244,139,64,4,137,69,244,131,125,244, 0,15,133,235,253,255,255,141,131,147,62,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,175,90,255,255,129,196,20,1,0,0,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,128,140,0,0,0,139,64,20,137,69,244,131,125,244,0,116,27,141,69,236,137, 68,36,8,141,69,240,137,68,36,4,139,69,244,137,4,36,232,199,59,1,0,235,16,141,131,125,194,5,0,137,69,240,199,69,236,0,0,0,0,139,69,240,139,85,236,137,68,36,8,137,84,36,4,141,131,221,214,5,0,137,4,36,232,205,18,4,0,131,196,36,91,201,195,85,137,229,83,131, 236,20,232,0,0,0,0,91,141,131,186,69,6,0,139,0,139,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,221,209,255,255,131,196,20,91,201,195,85,137,229,86,83,131,236,16,232,0,0,0,0,91,243,15,16,69,12,15,40,208,15,87,192, 243,15,95,208,141,131,151,58,6,0,15,40,0,15,40,224,15,40,200,243,15,194,202,2,141,131,167,58,6,0,15,40,0,15,40,216,243,15,194,218,2,15,84,225,102,15,114,241,31,15,92,212,243,15,91,194,102,15,254,193,102,15,235,195,102,15,126,192,131,224,1,139,77,8,15, 182,192,131,224,1,137,194,193,226,5,139,129,160,0,0,0,131,224,223,9,208,137,129,160,0,0,0,139,69,8,139,128,160,0,0,0,131,224,32,133,192,116,51,139,69,8,137,4,36,232,251,93,255,255,133,192,116,36,139,69,8,137,4,36,232,47,94,255,255,133,192,116,21,199, 68,36,4,4,0,0,0,139,69,8,137,4,36,232,106,163,255,255,235,60,139,69,8,137,4,36,232,183,143,255,255,139,69,8,137,4,36,232,189,93,255,255,133,192,116,34,139,69,8,137,4,36,232,241,93,255,255,133,192,116,19,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,44,163, 255,255,139,69,8,139,128,160,0,0,0,193,232,5,131,224,1,15,182,240,139,69,8,137,4,36,232,197,16,0,0,137,116,36,8,137,68,36,4,141,131,79,214,5,0,137,4,36,232,92,17,4,0,131,196,16,91,94,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,243,15,16,69,12,243, 15,44,208,139,69,8,137,144,148,0,0,0,141,131,84,54,6,0,243,15,16,0,15,46,69,16,117,25,122,23,141,131,84,54,6,0,243,15,16,0,15,46,69,20,117,7,122,5,233,253,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,250,154,255,255,137,194,141,131,86,210,5,0,137, 68,36,12,137,84,36,8,141,131,157,157,255,255,137,68,36,4,139,69,8,137,4,36,232,207,144,255,255,139,69,8,139,64,28,137,69,244,233,173,0,0,0,141,69,228,137,68,36,20,141,69,236,137,68,36,16,141,69,232,137,68,36,12,141,69,240,137,68,36,8,139,69,8,137,68, 36,4,139,69,244,137,4,36,232,84,133,255,255,139,69,240,243,15,42,192,243,15,89,69,16,243,15,90,200,141,131,192,54,6,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,224,139,69,232,243,15,42,192,243,15,89,69,20,243,15,90,200,141,131,192,54,6,0,242,15, 16,0,242,15,88,193,242,15,44,192,137,69,220,139,85,232,139,69,220,137,193,41,209,139,85,240,139,69,224,41,208,137,76,36,12,137,68,36,8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,53,133,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,15,133,73, 255,255,255,139,69,8,137,4,36,232,13,92,255,255,133,192,116,11,139,69,8,137,4,36,232,31,37,0,0,139,69,8,139,64,28,137,69,244,235,75,139,69,244,139,16,141,131,252,67,6,0,139,0,139,0,57,194,117,47,139,69,244,137,4,36,232,102,106,255,255,133,192,117,32, 139,85,244,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,84,254,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,117,175,131,196,68,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,147,52,6,0,139,0,137, 69,240,141,131,147,52,6,0,139,0,137,69,236,139,69,8,137,4,36,232,148,107,255,255,137,69,232,141,131,143,52,6,0,243,15,16,0,15,46,69,16,122,2,116,2,235,13,141,131,147,52,6,0,139,0,137,69,244,235,90,243,15,16,69,16,141,131,39,55,6,0,243,15,16,8,15,46,200, 119,2,235,11,141,131,39,55,6,0,139,0,137,69,16,243,15,16,69,16,141,131,111,55,6,0,15,46,0,119,2,235,11,141,131,111,55,6,0,139,0,137,69,16,243,15,90,77,16,141,131,135,55,6,0,242,15,16,0,242,15,89,193,242,15,90,192,243,15,17,69,244,243,15,16,69,20,141, 131,115,55,6,0,15,46,0,117,4,122,2,235,6,139,69,244,137,69,240,243,15,16,69,20,141,131,239,52,6,0,15,46,0,117,4,122,2,235,6,139,69,244,137,69,236,139,69,236,137,68,36,12,139,69,240,137,68,36,8,139,69,12,137,68,36,4,139,69,232,137,4,36,232,63,253,255, 255,243,15,16,69,12,243,15,44,208,141,131,119,66,6,0,139,0,137,16,131,196,36,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,23,107,6,0,139,0,59,69,8,117,28,141,129,27,107,6,0,139,16,139,69,12,137,16,141,129,31,107,6,0,139,16,139,69,16,137,16, 235,19,139,69,16,199,0,40,0,0,0,139,69,16,139,16,139,69,12,137,16,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,145,205,106,6,0,139,69,8,137,2,141,145,209,106,6,0,139,69,12,137,2,141,145,213,106,6,0,139,69,16,137,2,201,195,85,137,229,83,131,236,36, 232,0,0,0,0,91,141,131,228,209,5,0,137,4,36,232,205,119,3,0,137,194,141,139,245,193,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,28,0,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36, 4,137,4,36,232,110,112,3,0,141,131,234,209,5,0,137,4,36,232,117,119,3,0,137,194,141,139,189,201,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,24,0,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36, 232,30,112,3,0,141,131,179,12,6,0,137,4,36,232,37,119,3,0,137,194,141,139,64,205,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,222,111,3,0,141,131,3,207,5,0,137,4,36,232,229,118, 3,0,137,194,141,139,74,214,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,24,0,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,142,111,3,0,141,131,242,209,5,0,137,4,36,232,149,118,3,0,137,194, 141,139,154,219,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,78,111,3,0,141,131,59,209,5,0,137,4,36,232,85,118,3,0,137,194,141,139,189,234,255,255,141,131,169,64,6,0,139,0,139,0, 199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,22,111,3,0,141,131,252,209,5,0,137,4,36,232,29,118,3,0,137,194,141,139,6,231,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,222,110,3,0,141,131, 79,209,5,0,137,4,36,232,229,117,3,0,137,194,141,139,223,237,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,166,110,3,0,141,131,85,209,5,0,137,4,36,232,173,117,3,0,137,194,141,139,102,238,255,255,141,131, 169,64,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,110,110,3,0,141,131,1,210,5,0,137,4,36,232,117,117,3,0,137,194,141,139,98,239,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36, 232,54,110,3,0,141,131,11,210,5,0,137,4,36,232,61,117,3,0,137,194,141,139,27,240,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,254,109,3,0,141,131,20,210,5,0,137,4,36,232,5,117,3,0,137,194,141,139,57, 143,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,198,109,3,0,141,131,25,210,5,0,137,4,36,232,205,116,3,0,137,194,141,139,253,143,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36, 8,137,76,36,4,137,4,36,232,142,109,3,0,141,131,30,210,5,0,137,4,36,232,149,116,3,0,137,194,141,139,95,244,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,86,109,3,0,141,131,35,210,5,0,137,4,36,232,93,116, 3,0,137,194,141,139,192,250,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,30,109,3,0,141,131,237,239,5,0,137,4,36,232,37,116,3,0,137,194,141,139,105,251,255,255,141,131,169,64,6,0,139,0,139,0,199,68, 36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,222,108,3,0,141,131,47,210,5,0,137,4,36,232,229,115,3,0,137,194,141,139,248,217,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76, 36,4,137,4,36,232,158,108,3,0,141,131,53,210,5,0,137,4,36,232,165,115,3,0,137,194,141,139,153,221,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,102,108,3,0,141,131,62,210,5,0,137,4,36,232,109,115,3,0, 137,194,141,139,98,254,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,24,0,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,22,108,3,0,141,131,67,210,5,0,137,4,36,232,29,115,3,0,137,194,141,139, 250,223,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,206,107,3,0,141,131,72,210,5,0,137,4,36,232,213,114,3,0,137,194,141,139,218,224,255,255,141,131,169,64, 6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,150,107,3,0,141,131,82,210,5,0,137,4,36,232,157,114,3,0,137,194,141,139,82,225,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232, 94,107,3,0,141,131,93,210,5,0,137,4,36,232,101,114,3,0,137,194,141,139,94,179,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,24,0,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,14,107,3,0,141, 131,104,210,5,0,137,4,36,232,21,114,3,0,137,194,141,139,4,175,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,206,106,3,0,141,131,121,210,5,0,137,4,36,232,213,113,3,0,137,193,141, 131,93,65,6,0,139,16,141,131,169,64,6,0,139,0,139,0,199,68,36,28,0,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,2,0,0,0,137,76,36,8,137,84,36,4,137,4,36,232,116,106,3,0,141,131,140,204,5,0,137,4,36,232,123,113,3,0, 137,194,141,139,99,241,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,28,0,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,28,106,3,0,141,131,48,209,5,0,137,4,36,232,35, 113,3,0,137,194,141,139,254,144,255,255,141,131,169,64,6,0,139,0,139,0,199,68,36,28,0,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,196,105,3,0,232,137,249,2,0,137,194,141, 131,77,106,6,0,137,16,131,196,36,91,201,195,85,137,229,131,236,40,139,69,12,199,64,4,0,0,0,0,139,69,8,139,64,28,133,192,117,11,139,85,8,139,69,12,137,66,28,235,39,139,69,8,139,64,28,137,69,240,235,9,139,69,240,139,64,4,137,69,240,139,69,240,139,64,4, 133,192,117,237,139,85,240,139,69,12,137,66,4,139,69,8,139,128,140,0,0,0,133,192,116,38,139,69,12,137,4,36,232,138,160,3,0,137,69,244,131,125,244,0,116,18,139,69,244,137,68,36,4,139,69,8,137,4,36,232,42,45,1,0,139,69,8,139,128,140,0,0,0,133,192,116,87, 139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,116,69,139,69,8,139,128,160,0,0,0,37,128,0,0,0,133,192,117,51,139,69,12,137,4,36,232,51,160,3,0,133,192,116,36,139,85,8,139,130,160,0,0,0,12,128,137,130,160,0,0,0,199,68,36,4,1,0,0,0,139,69,8,137,4,36,232, 71,78,255,255,139,69,8,137,4,36,232,248,81,255,255,133,192,116,26,199,68,36,8,1,0,0,0,139,69,8,137,68,36,4,139,69,12,137,4,36,232,22,126,255,255,139,69,12,139,0,137,4,36,232,253,108,3,0,133,192,116,49,139,69,8,137,4,36,232,9,5,0,0,139,128,144,0,0,0,137, 4,36,232,192,74,255,255,137,4,36,232,171,107,1,0,199,68,36,4,0,0,0,0,137,4,36,232,95,102,255,255,201,195,85,137,229,131,236,24,139,69,8,139,128,160,0,0,0,193,232,6,131,224,1,15,182,192,137,69,244,139,69,12,131,224,1,139,77,8,15,182,192,131,224,1,137, 194,193,226,6,139,129,160,0,0,0,131,224,191,9,208,137,129,160,0,0,0,139,69,244,201,195,85,137,229,83,129,236,164,0,0,0,232,0,0,0,0,91,139,69,8,137,69,132,139,69,12,137,69,128,141,131,229,55,6,0,139,0,139,16,137,85,244,49,210,141,131,25,169,5,0,137,4, 36,232,246,110,3,0,139,85,128,137,68,36,4,137,20,36,232,145,126,3,0,137,69,152,139,69,132,137,4,36,232,70,4,0,0,137,69,148,139,69,128,139,0,137,4,36,232,27,108,3,0,137,69,144,199,68,36,4,1,0,0,0,139,69,148,137,4,36,232,63,255,255,255,137,69,140,139,69, 132,139,128,140,0,0,0,133,192,15,132,239,0,0,0,139,69,132,139,128,140,0,0,0,139,64,24,59,69,128,117,16,139,69,132,139,128,140,0,0,0,199,64,24,0,0,0,0,139,69,128,137,68,36,4,139,69,132,137,4,36,232,162,126,255,255,133,192,116,18,139,69,128,137,68,36,4, 139,69,132,137,4,36,232,249,127,255,255,139,69,128,139,16,141,131,237,55,6,0,139,0,139,0,57,194,15,133,143,0,0,0,139,69,128,137,69,136,139,69,136,139,128,160,0,0,0,37,0,1,0,0,133,192,116,71,139,69,136,137,68,36,16,141,131,201,201,5,0,137,68,36,12,199, 68,36,8,80,0,0,0,199,68,36,4,0,0,0,0,141,69,164,137,4,36,232,16,47,6,0,139,85,136,141,69,164,137,68,36,8,137,84,36,4,139,69,132,137,4,36,232,128,5,2,0,235,48,139,69,136,137,68,36,4,139,69,132,137,4,36,232,172,59,1,0,137,4,36,232,158,44,1,0,139,85,136, 137,68,36,8,139,69,132,137,68,36,4,137,20,36,232,255,5,2,0,131,125,144,0,116,49,139,69,132,137,4,36,232,12,3,0,0,139,128,144,0,0,0,137,4,36,232,195,72,255,255,137,4,36,232,174,105,1,0,199,68,36,4,2,0,0,0,137,4,36,232,98,100,255,255,139,69,132,137,68, 36,4,139,69,128,137,4,36,232,102,121,255,255,139,69,148,137,4,36,232,126,79,255,255,133,192,116,26,199,68,36,8,0,0,0,0,139,69,132,137,68,36,4,139,69,128,137,4,36,232,156,123,255,255,139,69,132,139,128,140,0,0,0,133,192,116,38,139,69,128,137,4,36,232, 80,157,3,0,137,69,156,131,125,156,0,116,18,139,69,156,137,68,36,4,139,69,132,137,4,36,232,240,41,1,0,139,69,132,139,64,28,59,69,128,117,14,139,69,128,139,80,4,139,69,132,137,80,28,235,51,139,69,132,139,64,28,137,69,160,235,34,139,69,160,139,64,4,59,69, 128,117,14,139,69,128,139,80,4,139,69,160,137,80,4,235,15,139,69,160,139,64,4,137,69,160,131,125,160,0,117,216,139,69,128,137,4,36,232,76,162,3,0,131,125,152,0,116,5,232,127,97,255,255,131,125,144,0,116,49,139,69,132,137,4,36,232,5,2,0,0,139,128,144, 0,0,0,137,4,36,232,188,71,255,255,137,4,36,232,167,104,1,0,199,68,36,4,1,0,0,0,137,4,36,232,91,99,255,255,139,69,140,137,68,36,4,139,69,148,137,4,36,232,236,252,255,255,141,131,5,56,6,0,139,0,139,0,141,80,1,141,131,5,56,6,0,139,0,137,16,141,131,5,56, 6,0,139,0,139,16,139,69,132,137,80,36,141,131,229,55,6,0,139,0,139,85,244,51,16,116,5,232,64,45,6,0,129,196,164,0,0,0,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,69,236,0,0,0,0,199,69,232,0,0,0,0,141,131,9,166,5,0,137,4,36,232,243,107,3,0, 137,69,228,235,76,131,125,232,0,117,52,139,69,244,137,4,36,232,7,156,3,0,133,192,116,37,139,69,244,139,85,228,137,84,36,4,137,4,36,232,113,123,3,0,133,192,116,15,232,83,96,255,255,137,69,236,199,69,232,1,0,0,0,139,69,244,137,68,36,4,139,69,8,137,4,36, 232,115,252,255,255,139,69,8,139,64,28,137,69,244,131,125,244,0,117,165,131,125,232,0,116,11,139,69,236,137,4,36,232,69,96,255,255,131,196,52,91,201,195,85,137,229,131,236,40,139,69,8,137,4,36,232,216,0,0,0,137,69,244,139,69,8,139,128,140,0,0,0,133,192, 116,54,139,69,8,139,128,140,0,0,0,139,64,12,133,192,116,38,139,69,12,137,68,36,4,139,69,8,137,4,36,232,23,57,1,0,137,69,240,131,125,240,0,116,11,139,69,240,137,4,36,232,68,54,1,0,201,195,85,137,229,131,236,40,139,69,8,137,4,36,232,127,0,0,0,137,69,244, 131,125,16,0,116,23,139,69,244,139,144,140,0,0,0,139,66,80,131,224,248,131,200,4,137,66,80,235,18,139,69,244,139,144,140,0,0,0,139,66,80,131,224,248,137,66,80,139,69,244,139,144,140,0,0,0,139,69,12,137,66,24,139,69,244,139,144,140,0,0,0,139,69,16,137, 66,28,139,69,244,139,144,140,0,0,0,139,69,20,137,66,32,139,69,244,139,144,140,0,0,0,139,69,24,137,66,52,139,69,244,139,144,140,0,0,0,139,69,28,137,66,56,201,195,85,137,229,131,236,8,235,9,139,69,8,139,64,40,137,69,8,139,69,8,139,64,40,133,192,116,34, 139,69,8,139,128,160,0,0,0,131,224,1,133,192,117,18,139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,117,203,139,69,8,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,16,141,131,158,51,6,0,139,0,139,0,57,194,117,37,139,69,8,141,85,240,137,84, 36,8,141,85,244,137,84,36,4,137,4,36,232,75,71,1,0,243,15,16,69,244,243,15,17,69,228,235,15,141,131,102,37,6,0,243,15,16,0,243,15,17,69,228,217,69,228,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,244,0,0,0,0,199,69,240,0,0,0,0, 141,131,9,37,6,0,139,0,137,69,236,141,131,9,37,6,0,139,0,137,69,232,131,125,12,0,116,14,139,69,12,137,4,36,232,97,255,255,255,217,93,236,131,125,16,0,116,14,139,69,16,137,4,36,232,77,255,255,255,217,93,232,131,125,12,0,116,23,131,125,16,0,116,28,243, 15,16,77,236,243,15,16,69,232,15,46,193,115,13,235,87,131,125,16,0,117,81,233,155,0,0,0,131,125,240,0,116,17,139,69,240,139,85,12,137,80,4,139,69,12,137,69,240,235,12,139,69,12,137,69,244,139,69,244,137,69,240,139,69,12,139,64,4,137,69,12,131,125,12, 0,116,14,139,69,12,137,4,36,232,229,254,255,255,217,93,236,139,69,240,199,64,4,0,0,0,0,235,140,131,125,240,0,116,17,139,69,240,139,85,16,137,80,4,139,69,16,137,69,240,235,12,139,69,16,137,69,244,139,69,244,137,69,240,139,69,16,139,64,4,137,69,16,131, 125,16,0,116,14,139,69,16,137,4,36,232,153,254,255,255,217,93,232,139,69,240,199,64,4,0,0,0,0,233,61,255,255,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,72,131,125,16,1,127,11,139,69,12,137,69,212,233,162,0,0,0,139,85,16,137,208,193,232,31, 1,208,209,248,137,69,244,139,85,244,139,69,16,41,208,137,69,240,139,69,12,137,69,232,139,69,244,72,137,69,236,235,9,139,69,232,139,64,4,137,69,232,255,77,236,131,125,236,255,117,238,139,69,232,139,64,4,137,69,228,139,69,232,199,64,4,0,0,0,0,139,69,244, 137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,130,255,255,255,137,69,12,139,69,240,137,68,36,8,139,69,228,137,68,36,4,139,69,8,137,4,36,232,102,255,255,255,137,69,228,139,69,228,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,37,254, 255,255,137,69,212,139,69,212,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,69,244,0,0,0,0,199,69,240,0,0,0,0,141,131,86,38,6,0,139,0,137,69,236,139,69,8,139,64,28,137,69,232,235,56,139,69,232,137,4,36,232,132,253,255,255,217,93,228,243,15,16,77, 228,243,15,16,69,236,15,46,193,119,2,235,7,199,69,240,1,0,0,0,139,69,228,137,69,236,255,69,244,139,69,232,139,64,4,137,69,232,131,125,232,0,117,194,131,125,240,0,116,36,139,69,8,139,80,28,139,69,244,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,177,254, 255,255,137,194,139,69,8,137,80,28,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,139,64,104,141,20,133,0,0,0,0,139,69,8,139,64,108,137,84,36,4,137,4,36,232,191,130,3,0,139,69,8,139,128,128,0,0,0,141,20,133,0,0,0,0,139,69,8,139,128,132,0,0,0,137, 84,36,4,137,4,36,232,154,130,3,0,139,69,8,139,64,32,137,4,36,232,232,45,2,0,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,149,255,255,255,199,68,36,4,164,0,0,0,139,69,8,137,4,36,232,102,130,3,0,201,195,85,137,229,131,236,40,139,85,8,199,68,36,12, 0,0,0,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,93,130,3,0,137,69,244,139,69,8,139,128,160,0,0,0,131,224,8,133,192,117,107,139,69,8,139,64,40,133,192,116,97,139,69,8,139,64,40,137,4,36,232,194,72,255,255,133,192,116,79,139,69,8,139, 64,40,139,85,8,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,221,116,255,255,139,69,8,139,64,40,139,85,8,199,68,36,8,1,0,0,0,137,68,36,4,137,20,36,232,192,116,255,255,139,85,8,139,69,8,139,64,40,137,84,36,4,137,4,36,232,135,75,255,255,139,69,8,139,128, 160,0,0,0,131,224,8,133,192,117,11,139,69,8,137,4,36,232,237,0,0,0,139,69,244,201,195,85,137,229,131,236,56,139,69,8,139,64,40,137,69,244,131,125,244,0,116,55,139,69,244,137,4,36,232,47,72,255,255,133,192,116,40,139,69,244,139,128,160,0,0,0,131,224,64, 133,192,117,24,139,69,244,137,4,36,232,83,72,255,255,133,192,116,9,199,69,228,1,0,0,0,235,7,199,69,228,0,0,0,0,139,69,228,137,69,240,131,125,244,0,116,33,139,69,8,199,68,36,12,0,0,0,0,139,85,12,137,84,36,8,137,68,36,4,139,69,244,137,4,36,232,42,76,255, 255,131,125,240,0,116,29,139,69,8,139,64,40,139,85,8,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,232,115,255,255,139,69,12,137,4,36,232,73,135,3,0,131,125,240,0,116,50,139,69,8,139,64,40,139,85,8,199,68,36,8,1,0,0,0,137,68,36,4,137,20,36,232,186,115, 255,255,139,85,8,139,69,8,139,64,40,137,84,36,4,137,4,36,232,129,74,255,255,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,199,69,244,0,0,0,0,199,69,244,0,0,0,0,139,69,8,139,64,28,137,69,228,235,31,139,69,228,139,16,141,131,2,46,6,0,139,0,139,0,57, 194,117,3,255,69,244,139,69,228,139,64,4,137,69,228,131,125,228,0,117,219,131,125,244,1,15,142,94,1,0,0,139,69,244,193,224,2,137,4,36,232,110,126,3,0,137,69,224,139,69,8,139,64,28,137,69,228,139,69,224,137,69,220,235,40,139,69,228,139,16,141,131,2,46, 6,0,139,0,139,0,57,194,117,12,139,85,220,139,69,228,137,2,131,69,220,4,139,69,228,139,64,4,137,69,228,131,125,228,0,117,210,139,69,244,137,69,240,233,176,0,0,0,139,69,224,137,69,220,199,69,232,1,0,0,128,199,69,216,0,0,0,0,139,69,244,137,69,236,235,84, 139,69,220,139,0,137,69,192,131,125,192,0,116,66,141,69,196,137,68,36,20,141,69,200,137,68,36,16,141,69,204,137,68,36,12,141,69,208,137,68,36,8,139,69,8,137,68,36,4,139,69,192,137,4,36,232,18,111,255,255,139,69,208,59,69,232,126,12,139,69,208,137,69, 232,139,69,220,137,69,216,131,69,220,4,255,77,236,131,125,236,255,117,163,131,125,216,0,116,62,139,69,216,139,0,137,69,228,139,69,216,199,0,0,0,0,0,139,69,228,137,4,36,232,87,150,0,0,137,69,212,139,85,8,139,69,212,137,68,36,4,137,20,36,232,54,148,3,0, 255,77,240,131,125,240,255,15,133,67,255,255,255,139,69,244,193,224,2,137,68,36,4,139,69,224,137,4,36,232,53,127,3,0,139,69,8,139,64,40,133,192,116,39,139,69,8,139,64,40,137,4,36,232,205,69,255,255,133,192,116,21,139,69,8,139,85,8,139,82,40,137,68,36, 4,137,20,36,232,204,72,255,255,131,196,100,91,201,195,85,137,229,131,236,40,139,85,8,139,69,16,137,68,36,4,137,20,36,232,120,139,3,0,137,69,244,139,69,8,139,128,160,0,0,0,131,224,8,133,192,117,107,139,69,8,139,64,40,133,192,116,97,139,69,8,139,64,40, 137,4,36,232,107,69,255,255,133,192,116,79,139,69,8,139,64,40,139,85,8,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,134,113,255,255,139,69,8,139,64,40,139,85,8,199,68,36,8,1,0,0,0,137,68,36,4,137,20,36,232,105,113,255,255,139,85,8,139,69,8,139,64,40, 137,84,36,4,137,4,36,232,48,72,255,255,139,69,8,139,128,160,0,0,0,131,224,8,133,192,117,11,139,69,8,137,4,36,232,237,0,0,0,139,69,244,201,195,85,137,229,131,236,56,139,69,8,139,64,40,137,69,244,131,125,244,0,116,55,139,69,244,137,4,36,232,216,68,255, 255,133,192,116,40,139,69,244,139,128,160,0,0,0,131,224,64,133,192,117,24,139,69,244,137,4,36,232,252,68,255,255,133,192,116,9,199,69,228,1,0,0,0,235,7,199,69,228,0,0,0,0,139,69,228,137,69,240,131,125,244,0,116,33,139,69,8,139,85,12,137,84,36,12,199, 68,36,8,0,0,0,0,137,68,36,4,139,69,244,137,4,36,232,211,72,255,255,131,125,240,0,116,29,139,69,8,139,64,40,139,85,8,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,145,112,255,255,139,69,12,137,4,36,232,24,142,3,0,131,125,240,0,116,50,139,69,8,139,64,40, 139,85,8,199,68,36,8,1,0,0,0,137,68,36,4,137,20,36,232,99,112,255,255,139,85,8,139,69,8,139,64,40,137,84,36,4,137,4,36,232,42,71,255,255,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,199,69,244,0,0,0,0,199,69,244,0,0,0,0,139,69,8,139,64,28,137,69, 228,235,31,139,69,228,139,16,141,131,179,42,6,0,139,0,139,0,57,194,117,3,255,69,244,139,69,228,139,64,4,137,69,228,131,125,228,0,117,219,131,125,244,1,15,142,94,1,0,0,139,69,244,193,224,2,137,4,36,232,23,123,3,0,137,69,224,139,69,8,139,64,28,137,69,228, 139,69,224,137,69,220,235,40,139,69,228,139,16,141,131,179,42,6,0,139,0,139,0,57,194,117,12,139,85,220,139,69,228,137,2,131,69,220,4,139,69,228,139,64,4,137,69,228,131,125,228,0,117,210,139,69,244,137,69,240,233,176,0,0,0,139,69,224,137,69,220,199,69, 232,1,0,0,128,199,69,216,0,0,0,0,139,69,244,137,69,236,235,84,139,69,220,139,0,137,69,192,131,125,192,0,116,66,141,69,196,137,68,36,20,141,69,200,137,68,36,16,141,69,204,137,68,36,12,141,69,208,137,68,36,8,139,69,8,137,68,36,4,139,69,192,137,4,36,232, 187,107,255,255,139,69,208,59,69,232,126,12,139,69,208,137,69,232,139,69,220,137,69,216,131,69,220,4,255,77,236,131,125,236,255,117,163,131,125,216,0,116,62,139,69,216,139,0,137,69,228,139,69,216,199,0,0,0,0,0,139,69,228,137,4,36,232,75,156,0,0,137,69, 212,139,85,8,139,69,212,137,68,36,4,137,20,36,232,58,145,3,0,255,77,240,131,125,240,255,15,133,67,255,255,255,139,69,244,193,224,2,137,68,36,4,139,69,224,137,4,36,232,222,123,3,0,139,69,8,139,64,40,133,192,116,39,139,69,8,139,64,40,137,4,36,232,118,66, 255,255,133,192,116,21,139,69,8,139,85,8,139,82,40,137,68,36,4,137,20,36,232,117,69,255,255,131,196,100,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,85,8,139,69,12,137,66,52,139,85,8,139,69,20,137,66,60,139,85,8,139,69,16,137,66,56,139,85,8, 139,69,24,137,66,64,139,69,8,243,15,16,72,60,139,69,8,243,15,16,64,52,15,46,200,122,2,116,25,139,69,8,243,15,16,72,64,139,69,8,243,15,16,64,56,15,46,200,122,2,116,2,235,48,141,131,219,186,5,0,137,4,36,232,66,92,4,0,141,131,74,27,6,0,139,0,137,69,16,139, 69,16,137,69,12,141,131,78,27,6,0,139,0,137,69,24,139,69,24,137,69,20,139,69,8,137,4,36,232,220,10,0,0,131,196,20,91,201,195,85,137,229,131,236,24,139,85,8,139,69,12,137,66,92,139,85,8,139,69,16,137,66,96,243,15,16,69,20,243,15,44,208,139,69,8,137,80, 100,139,69,8,137,4,36,232,164,10,0,0,201,195,85,137,229,131,236,24,139,85,8,139,69,12,137,66,116,139,85,8,139,69,16,137,66,120,243,15,16,69,20,243,15,44,208,139,69,8,137,80,124,139,69,8,137,4,36,232,112,10,0,0,201,195,85,137,229,86,83,131,236,32,232, 0,0,0,0,91,131,125,16,0,127,19,141,131,239,185,5,0,137,4,36,232,133,91,4,0,233,140,0,0,0,139,69,20,137,4,36,232,182,223,2,0,139,69,8,217,88,112,131,69,20,8,255,77,16,139,69,16,141,12,133,0,0,0,0,139,69,8,139,64,104,141,20,133,0,0,0,0,139,69,8,139,64, 108,137,76,36,8,137,84,36,4,137,4,36,232,59,121,3,0,137,194,139,69,8,137,80,108,139,85,8,139,69,16,137,66,104,199,69,244,0,0,0,0,235,37,139,69,8,139,80,108,139,69,244,193,224,2,141,52,2,139,69,244,193,224,3,3,69,20,137,4,36,232,245,223,2,0,137,6,255, 69,244,139,69,244,59,69,16,124,211,139,69,8,137,4,36,232,176,9,0,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,131,125,16,0,127,19,141,131,74,185,5,0,137,4,36,232,192,90,4,0,233,158,0,0,0,139,69,20,137,4,36,232,241,222,2,0,139, 69,8,217,152,136,0,0,0,131,69,20,8,255,77,16,139,69,16,141,12,133,0,0,0,0,139,69,8,139,128,128,0,0,0,141,20,133,0,0,0,0,139,69,8,139,128,132,0,0,0,137,76,36,8,137,84,36,4,137,4,36,232,109,120,3,0,137,194,139,69,8,137,144,132,0,0,0,139,85,8,139,69,16, 137,130,128,0,0,0,199,69,244,0,0,0,0,235,40,139,69,8,139,144,132,0,0,0,139,69,244,193,224,2,141,52,2,139,69,244,193,224,3,3,69,20,137,4,36,232,30,223,2,0,137,6,255,69,244,139,69,244,59,69,16,124,208,139,69,8,137,4,36,232,217,8,0,0,131,196,32,91,94,201, 195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,117,56,139,69,8,243,15,16,80,52,139,69,8,243,15,16,72,60,139,69,8,243,15,16,64,52,15,40,217,243,15,92,216,15,40,195,243,15,89,69,12,15,40,202,243,15,88,200,243, 15,17,77,228,233,34,1,0,0,139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,116,107,139,69,8,139,128,160,0,0,0,131,224,1,133,192,116,91,139,69,8,243,15,16,80,52,139,69,8,243,15,16,72,60,139,69,8,243,15,16,64,52,15,40,217,243,15,92,216,15,40,195,15,40,200, 243,15,89,77,12,139,69,8,139,80,76,139,69,8,139,64,68,137,209,41,193,137,200,243,15,42,192,15,40,217,243,15,94,216,15,40,195,15,40,202,243,15,88,200,243,15,17,77,228,233,165,0,0,0,139,69,8,139,64,40,133,192,117,14,141,131,147,184,5,0,137,4,36,232,128, 91,4,0,139,69,8,139,80,40,139,77,8,141,69,232,137,68,36,20,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,137,84,36,4,137,12,36,232,128,25,0,0,139,69,8,243,15,16,88,52,139,69,8,243,15,16,72,60,139,69,8,243,15,16,64,52,15,40,209, 243,15,92,208,139,69,244,243,15,42,200,243,15,16,69,12,243,15,92,193,15,40,202,243,15,89,200,139,85,236,139,69,244,137,209,41,193,137,200,243,15,42,192,15,40,209,243,15,94,208,15,40,194,15,40,203,243,15,88,200,243,15,17,77,228,217,69,228,131,196,68,91, 201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,117,56,139,69,8,243,15,16,80,56,139,69,8,243,15,16,72,64,139,69,8,243,15,16,64,56,15,40,217,243,15,92,216,15,40,195,243,15,89,69,12,15,40,202,243,15,88,200, 243,15,17,77,228,233,34,1,0,0,139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,116,107,139,69,8,139,128,160,0,0,0,131,224,1,133,192,116,91,139,69,8,243,15,16,80,56,139,69,8,243,15,16,72,64,139,69,8,243,15,16,64,56,15,40,217,243,15,92,216,15,40,195,15,40, 200,243,15,89,77,12,139,69,8,139,80,80,139,69,8,139,64,72,137,209,41,193,137,200,243,15,42,192,15,40,217,243,15,94,216,15,40,195,15,40,202,243,15,88,200,243,15,17,77,228,233,165,0,0,0,139,69,8,139,64,40,133,192,117,14,141,131,17,183,5,0,137,4,36,232, 254,89,4,0,139,69,8,139,80,40,139,77,8,141,69,232,137,68,36,20,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,137,84,36,4,137,12,36,232,254,23,0,0,139,69,8,243,15,16,88,56,139,69,8,243,15,16,72,64,139,69,8,243,15,16,64,56,15,40, 209,243,15,92,208,139,69,240,243,15,42,200,243,15,16,69,12,243,15,92,193,15,40,202,243,15,89,200,139,85,232,139,69,240,137,209,41,193,137,200,243,15,42,192,15,40,209,243,15,94,208,15,40,194,15,40,203,243,15,88,200,243,15,17,77,228,217,69,228,131,196, 68,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,117,63,139,69,8,243,15,16,72,52,243,15,16,69,12,15,40,208,243,15,92,209,139,69,8,243,15,16,72,60,139,69,8,243,15,16,64,52,15,40,217,243,15,92,216,15,40, 195,15,40,226,243,15,94,224,243,15,17,101,228,233,29,1,0,0,139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,116,102,139,69,8,139,128,160,0,0,0,131,224,1,133,192,116,86,139,69,8,139,80,76,139,69,8,139,64,68,137,209,41,193,137,200,243,15,42,208,139,69,8,243, 15,16,72,52,243,15,16,69,12,243,15,92,193,243,15,89,208,139,69,8,243,15,16,72,60,139,69,8,243,15,16,64,52,15,40,217,243,15,92,216,15,40,195,15,40,226,243,15,94,224,243,15,17,101,228,233,165,0,0,0,139,69,8,139,64,40,133,192,117,14,141,131,143,181,5,0, 137,4,36,232,122,88,4,0,139,69,8,139,80,40,139,77,8,141,69,232,137,68,36,20,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,137,84,36,4,137,12,36,232,122,22,0,0,139,69,244,243,15,42,216,139,85,236,139,69,244,137,209,41,193,137, 200,243,15,42,208,139,69,8,243,15,16,72,52,243,15,16,69,12,243,15,92,193,243,15,89,208,139,69,8,243,15,16,72,60,139,69,8,243,15,16,64,52,15,40,225,243,15,92,224,15,40,196,15,40,202,243,15,94,200,15,40,193,15,40,227,243,15,88,224,243,15,17,101,228,217, 69,228,131,196,68,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,117,63,139,69,8,243,15,16,72,56,243,15,16,69,12,15,40,208,243,15,92,209,139,69,8,243,15,16,72,64,139,69,8,243,15,16,64,56,15,40,217,243, 15,92,216,15,40,195,15,40,226,243,15,94,224,243,15,17,101,228,233,29,1,0,0,139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,116,102,139,69,8,139,128,160,0,0,0,131,224,1,133,192,116,86,139,69,8,139,80,80,139,69,8,139,64,72,137,209,41,193,137,200,243,15,42, 208,139,69,8,243,15,16,72,56,243,15,16,69,12,243,15,92,193,243,15,89,208,139,69,8,243,15,16,72,64,139,69,8,243,15,16,64,56,15,40,217,243,15,92,216,15,40,195,15,40,226,243,15,94,224,243,15,17,101,228,233,165,0,0,0,139,69,8,139,64,40,133,192,117,14,141, 131,11,180,5,0,137,4,36,232,246,86,4,0,139,69,8,139,80,40,139,77,8,141,69,232,137,68,36,20,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,137,84,36,4,137,12,36,232,246,20,0,0,139,69,240,243,15,42,216,139,85,232,139,69,240,137, 209,41,193,137,200,243,15,42,208,139,69,8,243,15,16,72,56,243,15,16,69,12,243,15,92,193,243,15,89,208,139,69,8,243,15,16,72,64,139,69,8,243,15,16,64,56,15,40,225,243,15,92,224,15,40,196,15,40,202,243,15,94,200,15,40,193,15,40,227,243,15,88,224,243,15, 17,101,228,217,69,228,131,196,68,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,156,18,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,208,249,255,255,217,93,240,141,131,152,18,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,182,249,255,255,217,93, 244,243,15,16,69,240,243,15,92,69,244,243,15,89,69,12,243,15,17,69,228,217,69,228,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,62,18,6,0,139,0,137,68,36,4,139,69,8,137,4,36,232,244,250,255,255,217,93,240,141,131,58,18,6,0,139, 0,137,68,36,4,139,69,8,137,4,36,232,218,250,255,255,217,93,244,243,15,16,69,240,243,15,92,69,244,243,15,89,69,12,243,15,17,69,228,217,69,228,131,196,52,91,201,195,85,137,229,131,236,40,139,69,12,139,128,160,0,0,0,131,224,1,133,192,117,18,139,69,12,139, 128,160,0,0,0,37,0,1,0,0,133,192,117,16,139,69,8,15,183,64,20,152,137,69,236,233,200,0,0,0,139,69,12,139,128,160,0,0,0,37,128,0,0,0,133,192,116,74,139,69,12,139,64,52,137,68,36,4,139,69,12,137,4,36,232,221,251,255,255,217,93,240,139,69,8,15,183,64,20, 152,243,15,42,192,243,15,16,77,240,243,15,88,200,139,69,12,139,64,84,243,15,42,192,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,236,235,108,139,69,12,243,15,16,80,52,139,69,12,243,15,16,72,60,139,69,12,243,15,16,64,52,243,15,92,200,139,69,8, 15,183,64,20,152,243,15,42,192,243,15,89,200,139,69,12,139,80,76,139,69,12,139,64,68,137,209,41,193,137,200,243,15,42,192,15,40,217,243,15,94,216,15,40,195,243,15,88,194,243,15,17,68,36,4,139,69,12,137,4,36,232,71,251,255,255,217,93,244,243,15,44,69, 244,137,69,236,139,69,236,201,195,85,137,229,131,236,40,139,69,12,139,128,160,0,0,0,131,224,1,133,192,117,18,139,69,12,139,128,160,0,0,0,37,0,1,0,0,133,192,117,16,139,69,8,15,183,64,22,152,137,69,236,233,200,0,0,0,139,69,12,139,128,160,0,0,0,37,128,0, 0,0,133,192,116,74,139,69,12,139,64,56,137,68,36,4,139,69,12,137,4,36,232,92,252,255,255,217,93,240,139,69,8,15,183,64,22,152,243,15,42,192,243,15,16,77,240,243,15,88,200,139,69,12,139,64,88,243,15,42,192,15,40,209,243,15,92,208,15,40,194,243,15,44,192, 137,69,236,235,108,139,69,12,243,15,16,80,56,139,69,12,243,15,16,72,64,139,69,12,243,15,16,64,56,243,15,92,200,139,69,8,15,183,64,22,152,243,15,42,192,243,15,89,200,139,69,12,139,80,80,139,69,12,139,64,72,137,209,41,193,137,200,243,15,42,192,15,40,217, 243,15,94,216,15,40,195,243,15,88,194,243,15,17,68,36,4,139,69,12,137,4,36,232,198,251,255,255,217,93,244,243,15,44,69,244,137,69,236,139,69,236,201,195,85,137,229,87,86,83,129,236,172,0,0,0,232,0,0,0,0,91,139,69,8,137,4,36,232,194,54,255,255,133,192, 15,132,127,1,0,0,139,69,8,137,4,36,232,242,54,255,255,133,192,15,132,22,1,0,0,139,69,8,139,64,28,137,69,228,235,61,199,68,36,8,0,0,0,0,139,69,8,137,68,36,4,139,69,228,137,4,36,232,190,98,255,255,199,68,36,8,1,0,0,0,139,69,8,137,68,36,4,139,69,228,137, 4,36,232,164,98,255,255,139,69,228,139,64,4,137,69,228,131,125,228,0,117,189,139,69,8,137,68,36,4,141,69,132,137,4,36,232,9,29,255,255,235,90,139,117,212,139,125,208,139,69,204,137,133,112,255,255,255,139,69,200,137,133,116,255,255,255,139,69,8,137,4, 36,232,109,233,255,255,137,194,137,116,36,24,137,124,36,20,139,133,112,255,255,255,137,68,36,16,139,133,116,255,255,255,137,68,36,12,139,69,224,137,68,36,8,137,84,36,4,141,131,197,166,5,0,137,4,36,232,227,233,3,0,141,69,132,137,4,36,232,220,28,255,255, 137,69,224,131,125,224,0,117,146,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,8,50,255,255,139,69,8,139,128,160,0,0,0,37,128,0,0,0,133,192,116,33,141,131,206,175,5,0,137,4,36,232,69,77,4,0,199,68,36,4,1,0,0,0,139,69,8,137,4,36,232,213,49,255,255,139,69, 8,139,64,40,133,192,116,76,139,69,8,139,64,40,137,4,36,232,121,53,255,255,133,192,116,58,139,69,8,139,64,40,139,85,8,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,40,0,0,0,139,69,8,139,64,40,139,85,8,199,68,36,8,1,0,0,0,137,68,36,4,137,20,36,232,11,0, 0,0,129,196,172,0,0,0,91,94,95,201,195,85,137,229,87,86,83,129,236,236,1,0,0,232,0,0,0,0,91,139,69,8,137,133,84,255,255,255,139,69,12,137,133,80,255,255,255,141,131,194,27,6,0,139,0,139,16,137,85,228,49,210,139,133,84,255,255,255,137,69,172,139,69,172, 139,128,160,0,0,0,37,0,1,0,0,133,192,117,44,141,131,122,28,6,0,139,0,139,80,20,139,69,16,137,68,36,8,139,133,80,255,255,255,137,68,36,4,139,133,84,255,255,255,137,4,36,255,210,233,131,15,0,0,131,125,16,0,116,44,139,69,172,137,4,36,232,249,67,255,255, 133,192,116,29,139,69,172,137,68,36,4,139,133,80,255,255,255,137,4,36,232,72,32,1,0,137,4,36,232,47,33,1,0,141,69,152,137,68,36,20,141,69,156,137,68,36,16,141,69,160,137,68,36,12,141,69,164,137,68,36,8,139,133,80,255,255,255,137,68,36,4,139,133,84,255, 255,255,137,4,36,232,172,15,0,0,131,125,16,0,117,29,139,69,172,137,68,36,4,139,133,80,255,255,255,137,4,36,232,241,31,1,0,137,4,36,232,22,33,1,0,139,69,172,137,68,36,16,141,131,166,173,5,0,137,68,36,12,199,68,36,8,50,0,0,0,199,68,36,4,0,0,0,0,141,69, 178,137,4,36,232,244,18,6,0,131,125,16,0,116,66,139,69,152,139,85,156,139,77,160,139,117,164,139,125,172,137,68,36,28,137,84,36,24,137,76,36,20,137,116,36,16,141,69,178,137,68,36,12,199,68,36,8,1,0,0,0,137,124,36,4,139,133,80,255,255,255,137,4,36,232, 11,224,1,0,235,28,139,69,172,141,85,178,137,84,36,8,137,68,36,4,139,133,80,255,255,255,137,4,36,232,25,233,1,0,139,69,172,139,128,160,0,0,0,131,224,1,133,192,15,132,12,1,0,0,131,125,16,0,15,132,212,0,0,0,139,117,160,139,125,164,139,77,160,137,141,76, 254,255,255,139,69,156,137,133,80,254,255,255,139,85,152,137,149,84,254,255,255,139,77,156,137,141,88,254,255,255,139,69,152,137,133,92,254,255,255,139,85,164,137,149,96,254,255,255,139,77,160,137,141,100,254,255,255,139,69,164,137,133,104,254,255,255, 139,69,172,139,64,40,137,4,36,232,110,230,255,255,137,194,141,69,178,137,68,36,48,137,116,36,44,137,124,36,40,139,141,76,254,255,255,137,76,36,36,139,133,80,254,255,255,137,68,36,32,139,141,84,254,255,255,137,76,36,28,139,133,88,254,255,255,137,68,36, 24,139,141,92,254,255,255,137,76,36,20,139,133,96,254,255,255,137,68,36,16,139,141,100,254,255,255,137,76,36,12,139,133,104,254,255,255,137,68,36,8,137,84,36,4,141,131,42,174,5,0,137,4,36,232,168,230,3,0,233,120,13,0,0,139,69,172,139,64,40,137,4,36,232, 232,229,255,255,137,194,141,69,178,137,68,36,8,137,84,36,4,141,131,132,174,5,0,137,4,36,232,122,230,3,0,233,74,13,0,0,131,125,16,0,15,132,227,12,0,0,139,117,160,139,125,164,139,85,160,137,149,108,254,255,255,139,77,156,137,141,112,254,255,255,139,69, 152,137,133,116,254,255,255,139,85,156,137,149,120,254,255,255,139,77,152,137,141,124,254,255,255,139,69,164,137,133,128,254,255,255,139,85,160,137,149,132,254,255,255,139,77,164,137,141,136,254,255,255,139,69,172,139,64,40,137,4,36,232,98,229,255,255, 137,194,141,69,178,137,68,36,48,137,116,36,44,137,124,36,40,139,133,108,254,255,255,137,68,36,36,139,141,112,254,255,255,137,76,36,32,139,133,116,254,255,255,137,68,36,28,139,141,120,254,255,255,137,76,36,24,139,133,124,254,255,255,137,68,36,20,139,141, 128,254,255,255,137,76,36,16,139,133,132,254,255,255,137,68,36,12,139,141,136,254,255,255,137,76,36,8,137,84,36,4,141,131,154,174,5,0,137,4,36,232,156,229,3,0,139,85,152,139,69,160,57,194,15,78,194,72,137,69,148,139,69,172,139,64,28,137,69,140,233,202, 0,0,0,139,69,140,139,16,141,131,74,27,6,0,139,0,139,0,57,194,15,133,170,0,0,0,139,69,140,141,85,136,137,84,36,4,137,4,36,232,22,171,254,255,133,192,15,133,144,0,0,0,139,69,172,137,4,36,232,203,49,255,255,137,4,36,232,230,5,4,0,41,69,148,139,69,172,137, 4,36,232,181,49,255,255,137,4,36,232,164,5,4,0,137,198,139,69,136,139,56,139,69,164,137,133,140,254,255,255,139,69,172,137,4,36,232,93,228,255,255,137,194,141,69,178,137,68,36,32,141,131,214,27,6,0,139,0,137,68,36,28,137,116,36,24,141,131,210,27,6,0, 139,0,137,68,36,20,137,124,36,16,139,69,148,137,68,36,12,139,141,140,254,255,255,137,76,36,8,137,84,36,4,141,131,238,174,5,0,137,4,36,232,190,228,3,0,139,69,140,139,64,4,137,69,140,131,125,140,0,15,133,44,255,255,255,139,69,172,139,64,100,133,192,15, 132,118,4,0,0,139,85,152,139,69,160,57,194,125,29,139,69,160,243,15,42,192,243,15,17,69,128,139,69,152,243,15,42,192,243,15,17,133,124,255,255,255,235,27,139,69,152,243,15,42,192,243,15,17,69,128,139,69,160,243,15,42,192,243,15,17,133,124,255,255,255, 199,69,148,0,0,0,0,139,69,172,139,64,92,137,69,144,233,175,1,0,0,139,69,172,139,64,100,139,85,148,137,193,137,208,193,250,31,247,249,137,208,133,192,116,12,199,133,144,254,255,255,2,0,0,0,235,10,199,133,144,254,255,255,4,0,0,0,139,133,144,254,255,255, 137,133,120,255,255,255,243,15,16,69,128,243,15,44,192,137,198,43,181,120,255,255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,68,243,255,255,217,157,148,254,255,255,243,15,44,189,148,254,255,255,243,15,16,69,128,243,15,44,208,137,149,152,254,255, 255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,21,243,255,255,217,157,156,254,255,255,243,15,44,141,156,254,255,255,137,141,160,254,255,255,139,69,172,139,64,40,137,4,36,232,235,226,255,255,137,194,141,69,178,137,68,36,24,137,116,36,20,137,124,36, 16,139,133,152,254,255,255,137,68,36,12,139,141,160,254,255,255,137,76,36,8,137,84,36,4,141,131,94,175,5,0,137,4,36,232,97,227,3,0,243,15,16,133,124,255,255,255,243,15,44,192,137,198,3,181,120,255,255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232, 150,242,255,255,217,157,164,254,255,255,243,15,44,189,164,254,255,255,243,15,16,133,124,255,255,255,243,15,44,192,137,133,168,254,255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,100,242,255,255,217,157,172,254,255,255,243,15,44,149,172,254,255, 255,137,149,176,254,255,255,139,69,172,139,64,40,137,4,36,232,58,226,255,255,137,194,141,69,178,137,68,36,24,137,116,36,20,137,124,36,16,139,141,168,254,255,255,137,76,36,12,139,133,176,254,255,255,137,68,36,8,137,84,36,4,141,131,94,175,5,0,137,4,36, 232,176,226,3,0,255,69,148,139,69,172,243,15,16,72,96,243,15,16,69,144,243,15,88,193,243,15,17,69,144,243,15,90,93,144,139,69,172,243,15,16,64,60,243,15,90,200,141,131,86,17,6,0,242,15,16,0,102,15,40,209,242,15,89,208,139,69,172,243,15,16,64,52,243,15, 90,200,141,131,22,17,6,0,242,15,16,0,242,15,89,193,242,15,88,194,102,15,46,195,15,135,6,254,255,255,199,69,148,1,0,0,0,139,69,172,243,15,16,72,92,139,69,172,243,15,16,64,96,15,40,209,243,15,92,208,15,40,194,243,15,17,69,144,233,175,1,0,0,139,69,172,139, 64,100,139,85,148,137,193,137,208,193,250,31,247,249,137,208,133,192,116,12,199,133,180,254,255,255,2,0,0,0,235,10,199,133,180,254,255,255,4,0,0,0,139,133,180,254,255,255,137,133,116,255,255,255,243,15,16,69,128,243,15,44,192,137,198,43,181,116,255,255, 255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,31,241,255,255,217,157,184,254,255,255,243,15,44,189,184,254,255,255,243,15,16,69,128,243,15,44,208,137,149,188,254,255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,240,240,255,255,217,157,192, 254,255,255,243,15,44,141,192,254,255,255,137,141,196,254,255,255,139,69,172,139,64,40,137,4,36,232,198,224,255,255,137,194,141,69,178,137,68,36,24,137,116,36,20,137,124,36,16,139,133,188,254,255,255,137,68,36,12,139,141,196,254,255,255,137,76,36,8,137, 84,36,4,141,131,94,175,5,0,137,4,36,232,60,225,3,0,243,15,16,133,124,255,255,255,243,15,44,192,137,198,3,181,116,255,255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,113,240,255,255,217,157,200,254,255,255,243,15,44,189,200,254,255,255,243,15,16, 133,124,255,255,255,243,15,44,192,137,133,204,254,255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,63,240,255,255,217,157,208,254,255,255,243,15,44,149,208,254,255,255,137,149,212,254,255,255,139,69,172,139,64,40,137,4,36,232,21,224,255,255,137, 194,141,69,178,137,68,36,24,137,116,36,20,137,124,36,16,139,141,204,254,255,255,137,76,36,12,139,133,212,254,255,255,137,68,36,8,137,84,36,4,141,131,94,175,5,0,137,4,36,232,139,224,3,0,255,69,148,139,69,172,243,15,16,72,96,243,15,16,69,144,243,15,92, 193,243,15,17,69,144,243,15,90,93,144,139,69,172,243,15,16,64,52,243,15,90,200,141,131,86,17,6,0,242,15,16,0,102,15,40,209,242,15,89,208,139,69,172,243,15,16,64,60,243,15,90,200,141,131,22,17,6,0,242,15,16,0,242,15,89,193,242,15,88,194,102,15,46,216, 15,135,6,254,255,255,139,69,172,139,64,124,133,192,15,132,49,4,0,0,139,69,172,243,15,16,72,64,139,69,172,243,15,16,64,56,15,46,193,119,2,235,26,139,69,172,139,64,56,137,133,112,255,255,255,139,69,172,139,64,64,137,133,108,255,255,255,235,24,139,69,172, 139,64,64,137,133,112,255,255,255,139,69,172,139,64,56,137,133,108,255,255,255,199,69,148,0,0,0,0,139,69,172,139,64,116,137,69,144,233,145,1,0,0,139,69,172,139,64,124,139,85,148,137,193,137,208,193,250,31,247,249,137,208,133,192,116,12,199,133,216,254, 255,255,2,0,0,0,235,10,199,133,216,254,255,255,4,0,0,0,139,133,216,254,255,255,137,133,104,255,255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,78,240,255,255,217,157,220,254,255,255,243,15,44,181,220,254,255,255,139,69,164,137,199,3,189,104,255, 255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,35,240,255,255,217,157,224,254,255,255,243,15,44,149,224,254,255,255,137,149,228,254,255,255,139,77,164,137,141,232,254,255,255,139,69,172,139,64,40,137,4,36,232,108,222,255,255,137,194,141,69,178, 137,68,36,24,137,116,36,20,137,124,36,16,139,133,228,254,255,255,137,68,36,12,139,141,232,254,255,255,137,76,36,8,137,84,36,4,141,131,94,175,5,0,137,4,36,232,226,222,3,0,139,69,144,137,68,36,4,139,69,172,137,4,36,232,175,239,255,255,217,157,236,254,255, 255,243,15,44,181,236,254,255,255,139,69,156,137,199,43,189,104,255,255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,132,239,255,255,217,157,240,254,255,255,243,15,44,133,240,254,255,255,137,133,244,254,255,255,139,85,156,137,149,248,254,255,255, 139,69,172,139,64,40,137,4,36,232,205,221,255,255,137,194,141,69,178,137,68,36,24,137,116,36,20,137,124,36,16,139,141,244,254,255,255,137,76,36,12,139,133,248,254,255,255,137,68,36,8,137,84,36,4,141,131,94,175,5,0,137,4,36,232,67,222,3,0,255,69,148,139, 69,172,243,15,16,72,120,243,15,16,69,144,243,15,88,193,243,15,17,69,144,243,15,90,93,144,243,15,90,141,112,255,255,255,141,131,86,17,6,0,242,15,16,0,102,15,40,209,242,15,89,208,243,15,90,141,108,255,255,255,141,131,22,17,6,0,242,15,16,0,242,15,89,193, 242,15,88,194,102,15,46,195,15,135,44,254,255,255,199,69,148,1,0,0,0,139,69,172,243,15,16,72,116,139,69,172,243,15,16,64,120,15,40,209,243,15,92,208,15,40,194,243,15,17,69,144,233,145,1,0,0,139,69,172,139,64,124,139,85,148,137,193,137,208,193,250,31, 247,249,137,208,133,192,116,12,199,133,252,254,255,255,2,0,0,0,235,10,199,133,252,254,255,255,4,0,0,0,139,133,252,254,255,255,137,133,100,255,255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,79,238,255,255,217,157,0,255,255,255,243,15,44,181,0, 255,255,255,139,69,164,137,199,3,189,100,255,255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,36,238,255,255,217,157,4,255,255,255,243,15,44,149,4,255,255,255,137,149,8,255,255,255,139,77,164,137,141,12,255,255,255,139,69,172,139,64,40,137,4,36, 232,109,220,255,255,137,194,141,69,178,137,68,36,24,137,116,36,20,137,124,36,16,139,133,8,255,255,255,137,68,36,12,139,141,12,255,255,255,137,76,36,8,137,84,36,4,141,131,94,175,5,0,137,4,36,232,227,220,3,0,139,69,144,137,68,36,4,139,69,172,137,4,36,232, 176,237,255,255,217,157,16,255,255,255,243,15,44,181,16,255,255,255,139,69,156,137,199,43,189,100,255,255,255,139,69,144,137,68,36,4,139,69,172,137,4,36,232,133,237,255,255,217,157,20,255,255,255,243,15,44,133,20,255,255,255,137,133,24,255,255,255,139, 85,156,137,149,28,255,255,255,139,69,172,139,64,40,137,4,36,232,206,219,255,255,137,194,141,69,178,137,68,36,24,137,116,36,20,137,124,36,16,139,141,24,255,255,255,137,76,36,12,139,133,28,255,255,255,137,68,36,8,137,84,36,4,141,131,94,175,5,0,137,4,36, 232,68,220,3,0,255,69,148,139,69,172,243,15,16,72,120,243,15,16,69,144,243,15,92,193,243,15,17,69,144,243,15,90,93,144,243,15,90,141,108,255,255,255,141,131,86,17,6,0,242,15,16,0,102,15,40,209,242,15,89,208,243,15,90,141,112,255,255,255,141,131,22,17, 6,0,242,15,16,0,242,15,89,193,242,15,88,194,102,15,46,216,15,135,44,254,255,255,199,69,148,0,0,0,0,233,244,0,0,0,139,69,172,137,4,36,232,89,40,255,255,137,198,139,69,172,139,80,108,139,69,148,193,224,2,141,4,2,139,0,139,56,139,69,172,139,64,112,137,68, 36,4,139,69,172,137,4,36,232,134,236,255,255,217,157,32,255,255,255,243,15,44,149,32,255,255,255,137,149,36,255,255,255,139,69,172,139,80,108,139,69,148,193,224,2,141,4,2,139,0,139,0,137,4,36,232,187,6,6,0,221,157,40,255,255,255,242,15,90,133,40,255, 255,255,243,15,17,68,36,4,139,69,172,137,4,36,232,180,234,255,255,217,157,48,255,255,255,243,15,44,141,48,255,255,255,137,141,52,255,255,255,139,69,172,137,4,36,232,141,218,255,255,137,194,141,69,178,137,68,36,32,141,131,214,27,6,0,139,0,137,68,36,28, 137,116,36,24,141,131,210,27,6,0,139,0,137,68,36,20,137,124,36,16,139,133,36,255,255,255,137,68,36,12,139,141,52,255,255,255,137,76,36,8,137,84,36,4,141,131,150,175,5,0,137,4,36,232,235,218,3,0,255,69,148,139,69,172,139,64,104,59,69,148,15,143,253,254, 255,255,199,69,148,0,0,0,0,233,253,0,0,0,139,69,172,137,4,36,232,74,39,255,255,137,198,139,69,172,139,144,132,0,0,0,139,69,148,193,224,2,141,4,2,139,0,139,56,139,69,172,139,144,132,0,0,0,139,69,148,193,224,2,141,4,2,139,0,139,0,137,4,36,232,207,5,6,0, 221,157,56,255,255,255,242,15,90,133,56,255,255,255,243,15,17,68,36,4,139,69,172,137,4,36,232,76,235,255,255,217,157,64,255,255,255,243,15,44,133,64,255,255,255,137,133,68,255,255,255,139,69,172,139,128,136,0,0,0,137,68,36,4,139,69,172,137,4,36,232,156, 233,255,255,217,157,72,255,255,255,243,15,44,149,72,255,255,255,137,149,76,255,255,255,139,69,172,137,4,36,232,117,217,255,255,137,194,141,69,178,137,68,36,32,141,131,214,27,6,0,139,0,137,68,36,28,137,116,36,24,141,131,210,27,6,0,139,0,137,68,36,20,137, 124,36,16,139,141,68,255,255,255,137,76,36,12,139,133,76,255,255,255,137,68,36,8,137,84,36,4,141,131,150,175,5,0,137,4,36,232,211,217,3,0,255,69,148,139,69,172,139,128,128,0,0,0,59,69,148,15,143,241,254,255,255,139,69,172,139,64,28,137,69,140,235,35, 199,68,36,8,1,0,0,0,139,69,172,137,68,36,4,139,69,140,137,4,36,232,221,81,255,255,139,69,140,139,64,4,137,69,140,131,125,140,0,117,215,235,93,139,69,172,139,64,40,137,4,36,232,205,216,255,255,137,194,141,69,178,137,68,36,8,137,84,36,4,141,131,132,174, 5,0,137,4,36,232,95,217,3,0,139,69,172,139,64,28,137,69,168,235,35,199,68,36,8,0,0,0,0,139,69,172,137,68,36,4,139,69,168,137,4,36,232,126,81,255,255,139,69,168,139,64,4,137,69,168,131,125,168,0,117,215,141,131,194,27,6,0,139,0,139,85,228,51,16,116,5, 232,24,4,6,0,129,196,236,1,0,0,91,94,95,201,195,85,137,229,131,236,56,139,69,8,137,69,244,139,85,244,139,69,12,137,68,36,4,137,20,36,232,13,236,255,255,137,69,240,139,85,244,139,69,12,137,68,36,4,137,20,36,232,253,236,255,255,137,69,236,139,69,244,139, 64,44,3,69,240,137,69,232,139,69,244,139,64,48,3,69,236,137,69,228,139,85,16,139,69,240,137,2,139,85,20,139,69,236,137,2,139,85,24,139,69,232,137,2,139,85,28,139,69,228,137,2,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,199,69,244,255,255,255,127, 199,69,240,255,255,255,127,199,69,236,1,0,0,128,199,69,232,1,0,0,128,139,69,8,137,69,228,139,69,228,139,128,160,0,0,0,37,0,1,0,0,133,192,15,132,136,1,0,0,141,69,232,137,68,36,20,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,139, 69,12,137,68,36,4,139,69,8,137,4,36,232,29,255,255,255,139,69,228,137,4,36,232,122,51,255,255,133,192,116,85,141,131,243,11,6,0,139,0,139,16,141,69,200,137,68,36,20,141,69,204,137,68,36,16,141,69,208,137,68,36,12,141,69,212,137,68,36,8,139,69,12,137, 68,36,4,139,69,8,137,4,36,255,210,139,85,204,139,69,236,57,194,126,6,139,69,204,137,69,236,139,85,200,139,69,232,57,194,126,6,139,69,200,137,69,232,139,69,228,139,128,160,0,0,0,37,128,0,0,0,133,192,15,133,21,1,0,0,139,69,228,139,128,160,0,0,0,131,224, 1,15,182,192,137,69,224,139,85,228,139,130,160,0,0,0,131,224,254,137,130,160,0,0,0,139,69,228,139,64,28,137,69,220,233,128,0,0,0,139,69,228,137,68,36,4,139,69,220,137,4,36,232,141,77,255,255,133,192,116,97,139,69,220,139,16,141,131,195,10,6,0,139,0,139, 0,57,194,116,78,141,69,200,137,68,36,20,141,69,204,137,68,36,16,141,69,208,137,68,36,12,141,69,212,137,68,36,8,139,69,228,137,68,36,4,139,69,220,137,4,36,232,225,75,255,255,139,85,204,139,69,236,57,194,126,6,139,69,204,137,69,236,139,85,200,139,69,232, 57,194,126,6,139,69,200,137,69,232,139,69,220,139,64,4,137,69,220,131,125,220,0,15,133,118,255,255,255,139,69,224,131,224,1,139,77,228,15,182,192,137,194,131,226,1,139,129,160,0,0,0,131,224,254,9,208,137,129,160,0,0,0,235,53,141,131,243,11,6,0,139,0, 139,16,141,69,232,137,68,36,20,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,139,85,244,139,69,16,137,16,139,85,240,139,69,20,137,16,139,85,236,139,69,24,137,16,139,85,232,139,69, 28,137,16,131,196,84,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,69,244,139,69,244,139,128,160,0,0,0,37,0,1,0,0,133,192,117,42,141,131,203,9,6,0,139,0,139,80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139, 69,8,137,4,36,255,210,235,77,139,69,244,15,183,64,20,137,194,139,69,16,141,4,2,137,194,139,69,244,102,137,80,20,139,69,244,15,183,64,22,137,194,139,69,20,141,4,2,137,194,139,69,244,102,137,80,22,139,69,244,137,4,36,232,19,235,255,255,139,69,244,137,68, 36,4,139,69,12,137,4,36,232,248,36,255,255,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,69,244,139,69,244,139,128,160,0,0,0,37,0,1,0,0,133,192,117,38,141,131,41,9,6,0,139,0,139,80,8,139,69,16,137,68,36,8,139,69,12,137,68, 36,4,139,69,8,137,4,36,255,210,233,194,0,0,0,139,69,244,137,68,36,4,139,69,12,137,4,36,232,57,13,1,0,137,69,240,139,69,244,137,4,36,232,195,48,255,255,133,192,116,18,139,69,16,137,68,36,4,139,69,240,137,4,36,232,208,14,1,0,131,125,16,0,116,11,141,131, 203,185,5,0,137,69,224,235,9,141,147,163,156,5,0,137,85,224,139,69,240,137,4,36,232,234,253,0,0,139,85,224,137,84,36,12,137,68,36,8,139,69,12,137,68,36,4,141,131,169,156,5,0,137,4,36,232,12,213,3,0,131,125,16,0,116,11,141,131,203,185,5,0,137,69,228,235, 9,141,147,163,156,5,0,137,85,228,139,69,12,137,4,36,232,58,212,255,255,137,194,139,69,228,137,68,36,12,139,69,8,137,68,36,8,137,84,36,4,141,131,205,156,5,0,137,4,36,232,197,212,3,0,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69, 8,137,69,244,139,69,244,137,4,36,232,253,47,255,255,133,192,116,33,141,131,22,8,6,0,139,0,139,80,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,69,244, 141,131,205,7,6,0,139,0,139,80,16,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,235,18,139,69,240,137,68,36,4,139,69,244,137,4,36,232,236,206,255,255,139,69,244,139,64,28,137,69,240,131,125,240,0,117,223,131,196,36,91,201,195,85,137,229,83,131,236, 84,232,0,0,0,0,91,139,69,8,137,69,244,141,131,199,48,6,0,243,15,16,0,243,15,88,69,12,243,15,17,69,240,141,131,203,48,6,0,243,15,16,0,243,15,88,69,16,243,15,17,69,236,139,69,244,139,64,28,137,69,232,141,131,199,48,6,0,139,0,137,68,36,4,139,69,244,137, 4,36,232,28,224,255,255,217,93,192,243,15,90,77,192,141,131,139,249,5,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,228,139,69,240,137,68,36,4,139,69,244,137,4,36,232,237,223,255,255,217,93,196,243,15,90,77,196,141,131,139,249,5,0,242,15,16,0,242, 15,88,193,242,15,44,192,137,69,224,141,131,203,48,6,0,139,0,137,68,36,4,139,69,244,137,4,36,232,59,225,255,255,217,93,208,139,69,236,137,68,36,4,139,69,244,137,4,36,232,38,225,255,255,217,93,204,141,147,199,48,6,0,139,69,240,137,2,141,147,203,48,6,0, 139,69,236,137,2,131,125,232,0,15,132,96,1,0,0,139,69,232,139,16,141,131,71,6,6,0,139,0,139,0,57,194,116,5,233,72,1,0,0,141,69,220,137,68,36,8,141,69,216,137,68,36,4,139,69,232,137,4,36,232,134,196,254,255,133,192,15,132,39,1,0,0,131,125,228,0,121,7, 199,69,228,0,0,0,0,139,69,216,57,69,228,124,7,139,69,216,72,137,69,228,131,125,224,0,121,7,199,69,224,0,0,0,0,139,69,216,57,69,224,124,7,139,69,216,72,137,69,224,139,69,224,72,59,69,228,126,96,139,69,228,64,137,69,212,235,77,139,69,212,193,224,2,137, 194,139,69,220,141,12,2,243,15,16,69,208,15,40,200,243,15,92,77,204,139,85,212,139,69,224,41,208,243,15,42,192,243,15,89,200,139,85,228,139,69,224,41,208,243,15,42,192,15,40,209,243,15,94,208,15,40,194,243,15,88,69,204,243,15,17,1,255,69,212,139,69,212, 59,69,224,126,171,235,123,139,69,224,64,59,69,228,125,96,139,69,228,72,137,69,212,235,77,139,69,212,193,224,2,137,194,139,69,220,141,12,2,243,15,16,69,208,15,40,200,243,15,92,77,204,139,85,212,139,69,224,41,208,243,15,42,192,243,15,89,200,139,85,228, 139,69,224,41,208,243,15,42,192,15,40,209,243,15,94,208,15,40,194,243,15,88,69,204,243,15,17,1,255,77,212,139,69,212,59,69,224,125,171,235,18,139,69,224,193,224,2,137,194,139,69,220,1,194,139,69,204,137,2,139,69,232,137,4,36,232,87,194,254,255,131,196, 84,91,201,195,85,137,229,86,83,131,236,80,232,0,0,0,0,91,139,69,8,137,69,244,199,69,236,0,0,0,0,139,69,244,139,128,160,0,0,0,37,0,1,0,0,133,192,117,76,141,131,26,5,6,0,139,0,139,80,24,139,69,36,137,68,36,28,139,69,32,137,68,36,24,139,69,28,137,68,36, 20,139,69,24,137,68,36,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,137,69,212,233,12,1,0,0,139,69,244,139,128,160,0,0,0,131,224,1,133,192,116,12,199,69,212,0,0,0,0,233,240,0,0,0,139,69,244,139,64,28, 137,69,240,233,143,0,0,0,141,69,220,137,68,36,28,141,69,224,137,68,36,24,141,69,228,137,68,36,20,141,69,232,137,68,36,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,240,137,68,36,4,139,69,244,137,4,36,232,0,99,255,255,133,192,116,70,139,69,36, 137,68,36,28,199,68,36,24,0,0,0,0,139,69,28,137,68,36,20,139,69,24,137,68,36,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,244,137,68,36,4,139,69,240,137,4,36,232,66,73,255,255,137,69,236,131,125,236,0,117,19,139,69,240,139,64,4,137,69,240,131, 125,240,0,15,133,103,255,255,255,131,125,36,0,117,61,131,125,240,0,116,28,139,117,236,139,69,244,137,4,36,232,193,207,255,255,137,116,36,4,137,4,36,232,255,97,255,255,235,27,139,69,244,137,4,36,232,168,207,255,255,199,68,36,4,0,0,0,0,137,4,36,232,226, 97,255,255,139,69,236,137,69,212,139,69,212,131,196,80,91,94,201,195,85,137,229,131,236,24,232,0,0,0,0,89,199,69,244,0,0,0,0,139,69,8,139,64,28,137,69,240,235,52,139,69,240,139,16,141,129,221,2,6,0,139,0,139,0,57,194,117,24,139,69,240,139,128,160,0,0, 0,37,0,1,0,0,133,192,116,6,139,69,240,137,69,244,139,69,240,139,64,4,137,69,240,131,125,240,0,117,198,139,69,244,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,127,2,6,0,139,0,139,16,141,131,175,7,6,0,137,68,36,4,137,20,36,232,118,54,3,0,141, 131,95,128,5,0,137,4,36,232,135,57,3,0,137,194,141,139,125,217,255,255,141,131,127,2,6,0,139,0,139,0,199,68,36,28,0,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,40,50,3, 0,141,131,255,150,5,0,137,4,36,232,47,57,3,0,137,194,141,139,31,218,255,255,141,131,127,2,6,0,139,0,139,0,199,68,36,24,0,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,216,49,3,0,141,131,67,132, 5,0,137,4,36,232,223,56,3,0,137,194,141,139,135,218,255,255,141,131,127,2,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,152,49,3,0,141,131,167,131,5,0,137,4,36,232,159,56,3,0,137,194,141,139,83,218,255, 255,141,131,127,2,6,0,139,0,139,0,199,68,36,24,0,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,72,49,3,0,141,131,74,132,5,0,137,4,36,232,79,56,3,0,137,194,141,139,76,219,255,255,141,131,127, 2,6,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,8,49,3,0,141,131,7,151,5,0,137,4,36,232,15,56,3,0,137,193,141,131,59,3,6,0,139,16,141,131,127,2,6,0,139,0,139,0,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0, 0,199,68,36,20,2,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,2,0,0,0,137,76,36,8,137,84,36,4,137,4,36,232,174,48,3,0,141,131,13,151,5,0,137,4,36,232,181,55,3,0,137,194,141,131,63,3,6,0,139,8,141,131,127,2,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8, 137,76,36,4,137,4,36,232,116,48,3,0,141,131,23,151,5,0,137,4,36,232,123,55,3,0,137,194,141,139,161,209,255,255,141,131,127,2,6,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,60,48,3,0,131,196,36,91,201,195,85,137,229,83,131,236, 36,232,0,0,0,0,91,141,131,20,42,6,0,139,0,137,4,36,232,100,108,3,0,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,139,69,12,137,66,32,139,85,244,139,69,12,137,68,36,4,137,20,36,232,190,111,3,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236, 24,139,69,8,139,64,32,133,192,116,21,139,69,8,139,64,32,139,85,8,137,68,36,4,137,20,36,232,112,112,3,0,139,69,8,139,64,36,133,192,116,14,139,69,8,139,64,36,137,4,36,232,12,120,3,0,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,70,108,3,0,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,69,240,139,69,16,137,69,244,139,69,8,139,64,32,133,192,117,13,139,69,8,137,4,36,232,22,108,3,0,235,87,139,69,8,199,64,28,0,0,0,0,141,131,217,241,5,0,242,15,16,8,242,15,16,69,240,102,15,46,193,119, 2,235,54,141,131,225,255,255,255,137,68,36,4,139,69,8,137,4,36,232,142,116,3,0,137,194,139,69,8,137,80,36,139,69,8,139,64,36,242,15,16,69,240,242,15,17,68,36,4,137,4,36,232,71,118,3,0,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,64,28,133, 192,116,35,139,69,8,139,80,28,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,25,59,3,0,201,195,85,137,229,131,236,24,139,69,8,139,64,28,133,192,117,13,139,69,8,137,4,36,232,103,107,3,0,235,31,139,69,8,139,64,32,139,85, 8,137,68,36,4,137,20,36,232,79,111,3,0,139,69,8,199,64,32,0,0,0,0,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,161,254,255,255,141,131,9,147,5,0,137,4,36,232,138,53,3,0,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,40,0,0,0,137, 116,36,8,199,68,36,4,0,0,0,0,137,4,36,232,66,42,3,0,137,194,141,131,116,40,6,0,137,16,141,147,128,255,255,255,141,131,116,40,6,0,139,0,137,84,36,4,137,4,36,232,10,50,3,0,141,131,20,147,5,0,137,4,36,232,44,53,3,0,137,194,141,139,181,255,255,255,141,131, 116,40,6,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,239,45,3,0,131,196,32,91,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,69,244,139,69,12,137,4,36,232,1,23,255,255,133,192,15,132,166,0,0,0,139,69,12,137,4,36, 232,57,202,255,255,137,69,240,139,69,244,139,144,44,4,0,0,139,69,244,139,136,44,4,0,0,139,69,244,139,128,100,4,0,0,137,84,36,20,137,76,36,16,137,68,36,12,139,69,244,137,68,36,8,139,69,240,137,68,36,4,141,131,110,146,5,0,137,4,36,232,160,202,3,0,139,69, 244,139,144,40,4,0,0,139,69,244,139,136,40,4,0,0,139,69,244,139,128,84,4,0,0,137,84,36,20,137,76,36,16,137,68,36,12,139,69,244,137,68,36,8,139,69,240,137,68,36,4,141,131,110,146,5,0,137,4,36,232,93,202,3,0,139,69,244,139,144,84,4,0,0,139,69,244,137,144, 100,4,0,0,131,196,52,91,201,195,85,137,229,83,129,236,148,0,0,0,232,0,0,0,0,91,139,69,12,137,4,36,232,125,201,255,255,137,69,244,139,69,8,139,128,96,4,0,0,137,69,240,139,69,8,139,64,40,137,69,232,139,69,232,141,80,3,133,192,15,72,194,193,248,2,137,69, 228,139,85,8,139,69,12,137,68,36,4,137,20,36,232,19,222,255,255,137,69,224,139,69,232,3,69,224,137,69,220,139,69,228,3,69,224,137,69,216,139,85,228,139,69,220,41,208,137,69,212,139,85,8,139,69,12,137,68,36,4,137,20,36,232,220,220,255,255,137,69,208,139, 69,208,137,69,204,139,69,228,3,69,208,137,69,200,139,69,232,3,69,208,43,69,228,137,69,196,199,69,236,0,0,0,0,233,21,1,0,0,139,69,8,139,144,44,4,0,0,139,69,232,139,77,204,1,193,139,69,236,137,68,36,32,139,69,8,137,68,36,28,137,84,36,24,139,69,220,137, 68,36,20,137,76,36,16,139,69,224,137,68,36,12,139,69,204,137,68,36,8,139,69,244,137,68,36,4,141,131,217,145,5,0,137,4,36,232,66,201,3,0,139,69,8,139,128,84,4,0,0,59,69,236,117,14,139,69,8,139,128,40,4,0,0,137,69,160,235,12,139,69,8,139,128,44,4,0,0,137, 69,160,139,69,8,139,128,84,4,0,0,59,69,236,117,14,139,69,8,139,128,40,4,0,0,137,69,164,235,12,139,69,8,139,128,44,4,0,0,137,69,164,139,69,236,137,68,36,36,139,69,8,137,68,36,32,139,69,160,137,68,36,28,139,69,164,137,68,36,24,139,69,212,137,68,36,20,139, 69,196,137,68,36,16,139,69,216,137,68,36,12,139,69,200,137,68,36,8,139,69,244,137,68,36,4,141,131,29,146,5,0,137,4,36,232,165,200,3,0,139,69,232,1,69,204,139,69,232,1,69,200,139,69,232,1,69,196,139,69,8,139,144,84,4,0,0,139,69,8,137,144,100,4,0,0,255, 69,236,139,69,236,59,69,240,15,140,223,254,255,255,139,69,8,139,128,48,4,0,0,137,69,168,139,69,8,139,128,32,4,0,0,137,69,172,139,69,8,131,192,52,137,69,176,139,69,8,139,128,60,4,0,0,139,16,141,131,101,152,5,0,137,68,36,4,137,20,36,232,93,245,5,0,133, 192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,180,235,9,141,131,137,121,5,0,137,69,180,139,69,8,139,64,48,137,194,3,85,224,139,69,8,139,64,44,137,193,3,77,208,139,69,8,137,68,36,36,139,69,168,137,68,36,32,141,131,245,252,5,0,139,0,137,68,36,28,139, 69,172,137,68,36,24,139,69,176,137,68,36,20,139,69,180,137,68,36,16,137,84,36,12,137,76,36,8,139,69,244,137,68,36,4,141,131,197,127,5,0,137,4,36,232,181,199,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,68,139,85,208,131,194,7,139,77,220,73, 199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,139,69,220,137,68,36,20,137,84,36,16,137,76,36,12,139,69,208,137,68,36,8,139,69,244,137,68,36,4,141,131,69,128,5,0,137,4,36,232,95,199,3,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,85,224,66,139, 77,208,131,193,7,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,224,137,68,36,12,139,69,208,137,68,36,8,139,69,244,137,68,36,4,141,131,137,128,5,0,137,4,36,232,11,199,3,0,129,196,148,0,0,0,91,201,195,85,137,229,83,131,236, 100,232,0,0,0,0,91,139,69,12,137,4,36,232,61,198,255,255,137,69,244,139,69,8,139,128,96,4,0,0,137,69,240,139,69,8,139,64,40,137,69,232,139,69,232,141,80,3,133,192,15,72,194,193,248,2,137,69,228,139,85,8,139,69,12,137,68,36,4,137,20,36,232,211,218,255, 255,137,69,224,139,69,232,3,69,224,137,69,220,139,69,228,3,69,224,137,69,216,139,85,228,139,69,220,41,208,137,69,212,139,85,8,139,69,12,137,68,36,4,137,20,36,232,156,217,255,255,137,69,208,139,69,208,137,69,204,139,69,228,3,69,208,137,69,200,139,69,232, 3,69,208,43,69,228,137,69,196,139,69,208,137,69,204,139,69,228,3,69,208,137,69,200,139,69,232,3,69,208,43,69,228,137,69,196,199,69,236,0,0,0,0,233,152,0,0,0,139,69,232,139,85,204,1,194,139,69,220,137,68,36,28,137,84,36,24,139,69,224,137,68,36,20,139, 69,204,137,68,36,16,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,49,143,5,0,137,4,36,232,244,197,3,0,139,69,212,137,68,36,28,139,69,196,137,68,36,24,139,69,216,137,68,36,20,139,69,200,137,68,36,16,139,69,236,137,68,36,12, 139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,89,143,5,0,137,4,36,232,181,197,3,0,139,69,232,1,69,204,139,69,232,1,69,200,139,69,232,1,69,196,255,69,236,139,69,236,59,69,240,15,140,92,255,255,255,139,69,8,139,64,48,137,194,3,85,224,139,69,8,139, 64,44,3,69,208,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,165,118,5,0,137,4,36,232,92,197,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,68,139,85,208,131,194,7,139,77,220,73,139,69,220,137,68,36,28,137,84,36, 24,137,76,36,20,139,69,208,137,68,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,213,125,5,0,137,4,36,232,6,197,3,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,69,224,64,139,85,208,131,194,7,137,68,36,28,137, 84,36,24,139,69,224,137,68,36,20,139,69,208,137,68,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,253,125,5,0,137,4,36,232,178,196,3,0,131,196,100,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232, 231,195,255,255,137,69,244,139,69,8,139,128,96,4,0,0,137,69,240,199,69,236,0,0,0,0,235,73,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,43,141,5,0,137,4,36,232,89,196,3,0,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139, 69,244,137,68,36,4,141,131,69,141,5,0,137,4,36,232,54,196,3,0,255,69,236,139,69,236,59,69,240,124,175,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,39,144,5,0,137,4,36,232,15,196,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,36,199,68, 36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,251,123,5,0,137,4,36,232,217,195,3,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,65,144,5,0,137,4,36,232, 165,195,3,0,131,196,36,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,12,137,4,36,232,218,194,255,255,137,69,244,139,69,8,139,128,96,4,0,0,137,69,240,139,69,8,139,128,60,4,0,0,139,16,141,131,194,145,5,0,137,68,36,4,137,20,36,232,132,240,5, 0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,216,235,9,141,131,230,114,5,0,137,69,216,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,8,139,128,48,4,0,0,137,69,220,235,7,199,69,220,255,0,0,0,139,69,8,139,144,32,4,0,0,139,77,8,131, 193,52,139,69,216,137,68,36,28,139,69,220,137,68,36,24,141,131,82,246,5,0,139,0,137,68,36,20,137,84,36,16,137,76,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,10,123,5,0,137,4,36,232,202,194,3,0,199,69,236,0,0,0,0,233,180,0,0,0,139,69,8,139, 128,44,4,0,0,137,68,36,16,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,82,140,5,0,137,4,36,232,142,194,3,0,139,69,8,139,128,84,4,0,0,59,69,236,117,14,139,69,8,139,128,40,4,0,0,137,69,224,235,12,139,69,8,139,128,44,4,0,0, 137,69,224,139,69,8,139,128,84,4,0,0,59,69,236,117,14,139,69,8,139,128,40,4,0,0,137,69,228,235,12,139,69,8,139,128,44,4,0,0,137,69,228,139,69,224,137,68,36,20,139,69,228,137,68,36,16,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4, 141,131,246,138,5,0,137,4,36,232,13,194,3,0,255,69,236,139,69,236,59,69,240,15,140,64,255,255,255,131,196,68,91,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,139,69,12,137,4,36,232,50,193,255,255,137,69,244,139,85,8,139,69,12,137,68,36,4,137,20, 36,232,233,212,255,255,137,69,240,139,85,8,139,69,12,137,68,36,4,137,20,36,232,217,213,255,255,137,69,236,139,69,16,131,224,1,132,192,116,102,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,84,139,69,8,139,64,40,137,194,3,85,236,139,77,240,131,193, 7,139,69,8,139,64,40,3,69,236,141,112,255,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,139,69,240,137,68,36,8,139,69,244,137,68,36,4,141,131,222,121,5,0,137,4,36,232,66,193,3,0,139,69,16,131,224,1,133,192,117,54, 139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,70,121,5,0,137,4,36,232,2,193,3,0,139,69,16,131,224,2,133,192,116,84,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,68,139, 85,236,66,139,77,240,131,193,7,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,236,137,68,36,12,139,69,240,137,68,36,8,139,69,244,137,68,36,4,141,131,22,122,5,0,137,4,36,232,164,192,3,0,139,69,16,131,224,2,133,192,117,52,139, 69,8,139,128,28,4,0,0,131,224,64,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,140,141,5,0,137,4,36,232,102,192,3,0,131,196,48,91,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,12,137,4,36,232,154, 191,255,255,137,69,244,139,69,8,139,128,96,4,0,0,137,69,240,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,116,101,199,69,236,0,0,0,0,235,46,199,68,36,16,255,0,0,0,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,66,137,5,0,137, 4,36,232,242,191,3,0,255,69,236,139,69,236,59,69,240,124,202,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,18,121,5,0,137,4,36,232,195,191,3,0,235,104,199,69,236,0,0,0,0,235,46,199,68,36,16,0,0,0,0,139,69,236,137,68,36,12, 139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,66,137,5,0,137,4,36,232,141,191,3,0,255,69,236,139,69,236,59,69,240,124,202,139,69,8,139,128,48,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,18,121,5,0,137,4,36,232,89,191, 3,0,131,196,52,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,16,0,117,33,141,131,48,244,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,3,198,3,0,233,167,0,0,0,131,125,16,1,117,23,139,69,12,137,68,36,4,139,69,8,137,4,36,232, 5,248,255,255,233,138,0,0,0,131,125,16,2,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,165,244,255,255,235,112,131,125,16,3,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,113,254,255,255,235,86,131,125,16,4,117,20,139,69,12,137,68,36,4,139,69, 8,137,4,36,232,10,250,255,255,235,60,131,125,16,5,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,253,250,255,255,235,34,131,125,16,5,126,28,139,69,16,131,232,6,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,128,252,255,255,131,196,20,91, 201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,85,244,139,69,12,137,68,36,4,137,20,36,232,115,209,255,255,137,194,139,69,16,137,16,139,85,244,139,69,12,137,68,36,4,137,20,36,232,95,210,255,255,137,194,139,69,20,137,16,139,69,16,139,8,139,69,244, 139,80,40,139,69,244,139,128,96,4,0,0,15,175,194,141,20,1,139,69,24,137,16,139,69,20,139,16,139,69,244,139,64,36,1,194,139,69,28,137,16,201,195,85,137,229,87,86,83,129,236,220,0,0,0,232,0,0,0,0,91,139,69,8,137,69,228,139,85,228,141,69,216,137,68,36,8, 141,69,204,137,68,36,4,137,20,36,232,70,113,254,255,139,69,228,139,128,84,4,0,0,137,69,132,139,69,224,137,69,136,139,85,220,137,85,140,139,69,216,137,69,144,139,69,228,139,128,32,4,0,0,137,69,148,139,69,228,5,28,4,0,0,137,4,36,232,143,123,254,255,137, 69,152,139,69,228,139,64,48,137,69,156,139,69,228,139,64,44,137,69,160,139,85,212,137,85,164,139,69,208,137,69,168,139,85,204,137,85,172,139,69,228,139,128,96,4,0,0,137,69,176,139,69,228,5,36,4,0,0,137,4,36,232,69,122,254,255,137,69,180,139,69,228,139, 128,92,4,0,0,137,69,184,139,69,228,139,64,40,137,69,188,139,69,228,139,16,141,131,179,26,6,0,139,0,57,194,117,19,141,131,16,135,5,0,137,4,36,232,2,39,3,0,137,69,192,235,17,141,131,56,123,5,0,137,4,36,232,239,38,3,0,137,69,192,139,69,228,15,183,64,22, 15,191,240,139,69,228,15,183,64,20,15,191,248,141,131,23,135,5,0,137,4,36,232,202,38,3,0,137,69,196,141,131,155,120,5,0,137,4,36,232,185,38,3,0,139,85,132,137,84,36,84,139,85,136,137,84,36,80,139,85,140,137,84,36,76,139,85,144,137,84,36,72,139,85,148, 137,84,36,68,139,85,152,137,84,36,64,139,85,156,137,84,36,60,139,85,160,137,84,36,56,139,85,164,137,84,36,52,139,85,168,137,84,36,48,139,85,172,137,84,36,44,139,85,176,137,84,36,40,139,85,180,137,84,36,36,139,85,184,137,84,36,32,139,85,188,137,84,36, 28,139,85,192,137,84,36,24,137,116,36,20,137,124,36,16,139,85,196,137,84,36,12,137,68,36,8,141,131,30,135,5,0,137,68,36,4,139,69,12,137,4,36,232,196,187,2,0,141,131,243,118,5,0,137,68,36,4,139,69,12,137,4,36,232,175,187,2,0,129,196,220,0,0,0,91,94,95, 201,195,85,137,229,87,86,83,129,236,220,3,0,0,232,0,0,0,0,91,139,69,8,137,133,164,252,255,255,139,69,12,137,133,160,252,255,255,141,131,181,238,5,0,139,0,139,16,137,85,228,49,210,139,133,164,252,255,255,137,133,192,252,255,255,199,133,188,252,255,255, 255,255,255,255,139,149,192,252,255,255,141,133,176,252,255,255,137,68,36,4,137,20,36,232,140,111,254,255,139,133,192,252,255,255,139,16,141,131,205,24,6,0,139,0,57,194,117,18,139,133,192,252,255,255,139,128,92,4,0,0,137,133,188,252,255,255,139,133,192, 252,255,255,139,128,48,4,0,0,137,194,129,226,255,255,255,0,139,133,192,252,255,255,139,128,40,4,0,0,137,193,129,225,255,255,255,0,139,133,192,252,255,255,139,128,44,4,0,0,137,198,129,230,255,255,255,0,139,133,192,252,255,255,139,184,32,4,0,0,139,133, 192,252,255,255,139,128,28,4,0,0,131,224,63,15,182,192,137,133,124,252,255,255,139,133,192,252,255,255,139,64,48,137,133,128,252,255,255,139,133,192,252,255,255,139,64,44,137,133,132,252,255,255,139,133,184,252,255,255,139,0,137,133,136,252,255,255,139, 133,180,252,255,255,139,0,137,133,140,252,255,255,139,133,176,252,255,255,139,0,137,133,144,252,255,255,139,133,192,252,255,255,139,128,96,4,0,0,137,133,148,252,255,255,139,133,192,252,255,255,139,128,36,4,0,0,131,224,1,15,182,192,137,133,152,252,255, 255,139,133,192,252,255,255,139,64,40,137,133,156,252,255,255,137,84,36,80,137,76,36,76,137,116,36,72,137,124,36,68,139,133,124,252,255,255,137,68,36,64,139,149,128,252,255,255,137,84,36,60,139,133,132,252,255,255,137,68,36,56,139,149,136,252,255,255, 137,84,36,52,139,133,140,252,255,255,137,68,36,48,139,149,144,252,255,255,137,84,36,44,139,133,148,252,255,255,137,68,36,40,199,68,36,36,255,255,255,255,139,149,152,252,255,255,137,84,36,32,139,133,188,252,255,255,137,68,36,28,199,68,36,24,0,0,0,0,199, 68,36,20,8,0,0,0,139,133,156,252,255,255,137,68,36,16,141,131,77,133,5,0,137,68,36,12,199,68,36,8,32,3,0,0,199,68,36,4,0,0,0,0,141,133,196,252,255,255,137,4,36,232,250,228,5,0,139,149,192,252,255,255,141,133,196,252,255,255,137,68,36,8,139,133,192,252, 255,255,137,68,36,4,137,20,36,232,45,158,4,0,141,131,181,238,5,0,139,0,139,85,228,51,16,116,5,232,202,228,5,0,129,196,220,3,0,0,91,94,95,201,195,85,137,229,131,236,56,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,17,166,2,0,137,69, 244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,244,165,2,0,137,69,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,6,0,0,0,232,215,165,2,0,137,69,236,131,125,240,0,116,7,199,69,240,1,0,0,0,139,85,8,139,69,240,137,130,92, 4,0,0,139,85,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,69,220,137,68,36,4,137,20,36,232,79,109,254,255,137,69,232,139,69,244,137,4,36,232,37,88,254,255,137,194,139,69,8,137,80,40,139,69,8,139,80,40,139,69,8,137,80,36,139,69,8,139,128,96,4,0, 0,59,69,236,15,132,139,0,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,4,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,236,137,130,96,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,139,128,96,4,0,0,57,194,124,39,139,69,8,139,128,96,4, 0,0,141,80,255,139,69,8,137,144,84,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,2,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,235,119,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,5,0, 0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,72,32,139,85,232,131,194,6,139,69,8,139,64,28,137,84,36,8,137,68,36,4,139,69,8,137,4,36,255,209,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139, 85,8,139,69,8,139,64,28,137,84,36,4,137,4,36,232,18,7,255,255,201,195,85,137,229,131,236,40,243,15,16,69,12,243,15,44,192,137,69,244,139,69,8,139,128,88,4,0,0,137,69,240,131,125,244,0,121,7,199,69,244,0,0,0,0,139,69,8,139,128,96,4,0,0,59,69,244,127,13, 139,69,8,139,128,96,4,0,0,72,137,69,244,139,69,8,139,144,84,4,0,0,139,69,8,139,128,88,4,0,0,57,194,116,88,139,69,8,139,128,88,4,0,0,137,69,240,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,85,8,139,69,244,137,130,84,4,0,0,139,69,8,139,80,32, 139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,240,137,130,88,4,0,0,235,44,139,85,8,139,69,244,137,130,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255, 210,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,16,141,131,197,19,6,0,139,0,57,194,15,133,235,1,0,0,139,69,8,139,128,92,4,0,0,133,192,15,132,236,0,0,0,139,69,8,139,144,84,4,0,0,139,69,8,139,128,88,4,0,0,57,194,15,132,210,0,0,0,139,69, 8,199,128,104,4,0,0,1,0,0,0,139,69,8,139,128,88,4,0,0,243,15,42,192,139,69,8,243,15,17,128,108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,9,220,5,0,139,0,137,66,4,139,85,8,129,194,104,4,0,0,139,69,8,139,72, 12,137,84,36,12,199,68,36,8,2,0,0,0,141,131,125,234,5,0,139,0,137,68,36,4,137,12,36,232,236,74,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,69,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,53,139,85,8,129,194,104,4,0,0,139,69,8,139,128,52, 4,0,0,139,72,4,137,84,36,12,199,68,36,8,2,0,0,0,141,131,125,234,5,0,139,0,137,68,36,4,137,12,36,232,165,93,3,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,199,128,104,4,0,0,1,0,0,0,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,243, 15,17,128,108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,13,220,5,0,139,0,137,66,4,139,85,8,129,194,104,4,0,0,139,69,8,139,72,12,137,84,36,12,199,68,36,8,2,0,0,0,141,131,125,234,5,0,139,0,137,68,36,4,137, 12,36,232,8,74,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,15,132,181,0,0,0,139,69,8,139,128,52,4,0,0,139,64,4,133,192,15,132,161,0,0,0,139,85,8,129,194,104,4,0,0,139,69,8,139,128,52,4,0,0,139,72,4,137,84,36,12,199,68,36,8,2,0,0,0,141,131,125, 234,5,0,139,0,137,68,36,4,137,12,36,232,185,92,3,0,235,106,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,128,72,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,55,139,69,8,139,128,52,4,0,0,139,64,4,133, 192,116,39,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,139,128,52,4,0,0,139,64,4,243,15,17,68,36,4,137,4,36,232,240,91,3,0,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,243,15,16,69,12,243,15,44,192,137,69,244,131,125,244,0,121,7, 199,69,244,0,0,0,0,139,69,8,139,128,96,4,0,0,59,69,244,127,13,139,69,8,139,128,96,4,0,0,72,137,69,244,139,69,8,139,16,141,131,72,17,6,0,139,0,57,194,15,133,58,2,0,0,139,69,8,139,128,92,4,0,0,133,192,15,132,228,0,0,0,139,69,8,139,128,88,4,0,0,59,69,244, 15,132,210,0,0,0,139,69,8,199,128,104,4,0,0,1,0,0,0,139,69,8,139,128,88,4,0,0,243,15,42,192,139,69,8,243,15,17,128,108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,140,217,5,0,139,0,137,66,4,139,85,8,129,194, 104,4,0,0,139,69,8,139,72,12,137,84,36,12,199,68,36,8,2,0,0,0,141,131,0,232,5,0,139,0,137,68,36,4,137,12,36,232,67,72,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,69,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,53,139,85,8,129,194,104,4,0, 0,139,69,8,139,128,52,4,0,0,139,72,4,137,84,36,12,199,68,36,8,2,0,0,0,141,131,0,232,5,0,139,0,137,68,36,4,137,12,36,232,252,90,3,0,139,69,8,139,144,84,4,0,0,139,69,8,139,128,88,4,0,0,57,194,116,18,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139, 85,8,139,69,244,137,130,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,199,128,104,4,0,0,1,0,0,0,139,69,8,139,128,84,4,0,0,243,15,42, 192,139,69,8,243,15,17,128,108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,144,217,5,0,139,0,137,66,4,139,85,8,129,194,104,4,0,0,139,69,8,139,72,12,137,84,36,12,199,68,36,8,2,0,0,0,141,131,0,232,5,0,139,0, 137,68,36,4,137,12,36,232,11,71,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,15,132,246,0,0,0,139,69,8,139,128,52,4,0,0,139,64,4,133,192,15,132,226,0,0,0,139,85,8,129,194,104,4,0,0,139,69,8,139,128,52,4,0,0,139,72,4,137,84,36,12,199,68,36,8,2,0, 0,0,141,131,0,232,5,0,139,0,137,68,36,4,137,12,36,232,188,89,3,0,233,168,0,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,85,8,139,69,244,137,130,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137, 4,36,255,210,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,66,69,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,55,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,39,139,69,8,139,128,84,4,0,0,243,15, 42,192,139,69,8,139,128,52,4,0,0,139,64,4,243,15,17,68,36,4,137,4,36,232,178,88,3,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,243,15,16,69,12,243,15,44,192,137,69,244,131,125,244,0,121,7,199,69,244,0,0,0,0,139,69,8,139,128,96,4,0, 0,59,69,244,127,13,139,69,8,139,128,96,4,0,0,72,137,69,244,139,69,8,139,16,141,131,10,14,6,0,139,0,57,194,15,133,102,2,0,0,139,69,8,139,128,92,4,0,0,133,192,15,132,250,0,0,0,139,69,8,139,128,88,4,0,0,59,69,244,15,132,232,0,0,0,139,69,8,139,128,28,4,0, 0,37,0,0,0,4,133,192,15,132,210,0,0,0,139,69,8,199,128,104,4,0,0,1,0,0,0,139,69,8,139,128,88,4,0,0,243,15,42,192,139,69,8,243,15,17,128,108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,78,214,5,0,139,0,137, 66,4,139,85,8,129,194,104,4,0,0,139,69,8,139,72,12,137,84,36,12,199,68,36,8,2,0,0,0,141,131,194,228,5,0,139,0,137,68,36,4,137,12,36,232,239,68,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,69,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,53, 139,85,8,129,194,104,4,0,0,139,69,8,139,128,52,4,0,0,139,72,4,137,84,36,12,199,68,36,8,2,0,0,0,141,131,194,228,5,0,139,0,137,68,36,4,137,12,36,232,168,87,3,0,139,69,8,139,144,84,4,0,0,139,69,8,139,128,88,4,0,0,57,194,116,18,139,69,8,139,144,84,4,0,0, 139,69,8,137,144,88,4,0,0,139,85,8,139,69,244,137,130,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,139,128,28,4,0,0,37,0,0,0,4,133, 192,15,132,153,1,0,0,139,69,8,199,128,104,4,0,0,1,0,0,0,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,243,15,17,128,108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,82,214,5,0,139,0,137,66,4,139,85,8,129, 194,104,4,0,0,139,69,8,139,72,12,137,84,36,12,199,68,36,8,2,0,0,0,141,131,194,228,5,0,139,0,137,68,36,4,137,12,36,232,161,67,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,15,132,8,1,0,0,139,69,8,139,128,52,4,0,0,139,64,4,133,192,15,132,244,0,0,0, 139,85,8,129,194,104,4,0,0,139,69,8,139,128,52,4,0,0,139,72,4,137,84,36,12,199,68,36,8,2,0,0,0,141,131,194,228,5,0,139,0,137,68,36,4,137,12,36,232,82,86,3,0,233,186,0,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,85,8,139,69,244,137,130, 84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,128,28,4,0,0,37,0,0,0,4,133,192,116,106,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,198, 65,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,55,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,39,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,139,128,52,4,0,0,139,64,4,243,15,17,68,36,4,137,4,36,232,54,85,3,0,131,196,36,91,201,195,85, 137,229,86,131,236,36,243,15,16,69,12,243,15,44,240,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36,232,209,192,255,255,137,242,41,194,137,208,137,69,244,139,69,8,139,64,40,139,85,244,137,193,137,208,193,250,31,247,249,243,15,42,192,243,15,17,68,36, 4,139,69,8,137,4,36,232,241,248,255,255,131,196,36,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,131,125,36,0,116,67,243,15,42,69,28,243,15,42,77,24,243,15,42,85,20,243,15,42,93,16,139,85,8,243,15,17,68,36,20,141,131,119,210,5,0,139,0,137,68,36, 16,243,15,17,76,36,12,243,15,17,84,36,8,243,15,17,92,36,4,137,20,36,232,79,255,255,255,184,1,0,0,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,234,223,5,0,139,0,139,0,133,192,117,27,139,69,8,139,128,36,4,0,0,131,224,1,133,192, 116,11,139,69,8,137,4,36,232,215,245,255,255,131,196,20,91,201,195,85,137,229,131,236,40,243,15,16,69,12,243,15,44,192,137,69,244,131,125,244,0,127,7,199,69,244,1,0,0,0,129,125,244,128,0,0,0,126,7,199,69,244,128,0,0,0,139,69,8,139,128,96,4,0,0,59,69, 244,15,132,137,0,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,4,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,244,137,130,96,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,139,128,96,4,0,0,57,194,124,21,139,69,8,139,128,96,4,0,0,141, 80,255,139,69,8,137,144,84,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,2,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,131,236,24,139,69,20,137,68,36,8,139,69,16,137,68, 36,4,199,4,36,0,0,0,0,232,102,152,2,0,137,4,36,232,246,74,254,255,137,194,139,69,8,137,80,40,139,69,8,139,80,40,139,69,8,137,80,36,139,69,8,137,68,36,4,139,69,8,137,4,36,232,123,91,254,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16, 139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,155,91,254,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,30,92,254,255,201, 195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,132,92,254,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,106, 84,254,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,68,85,254,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,197,86,254,255,201,195,85,137,229,131, 236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,129,87,254,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36, 4,139,69,8,137,4,36,232,48,88,254,255,201,195,85,137,229,83,131,236,4,232,0,0,0,0,91,141,131,112,207,5,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,139,77,8,15,182,192,137,194,131,226,1,139,129,36,4,0,0,131,224,254,9,208,137,129,36,4,0,0,131, 196,4,91,201,195,85,137,229,131,236,8,139,69,8,199,128,92,4,0,0,1,0,0,0,201,195,85,137,229,131,236,8,139,69,8,199,128,92,4,0,0,0,0,0,0,201,195,85,137,229,83,129,236,244,0,0,0,232,0,0,0,0,91,139,69,8,137,133,36,255,255,255,139,69,16,137,133,32,255,255, 255,141,131,162,220,5,0,139,0,139,16,137,85,244,49,210,131,125,20,0,116,16,141,131,186,6,6,0,139,0,137,133,28,255,255,255,235,14,141,131,182,6,6,0,139,0,137,133,28,255,255,255,139,141,28,255,255,255,137,12,36,232,191,72,3,0,137,133,96,255,255,255,199, 133,44,255,255,255,0,0,252,255,199,133,48,255,255,255,255,255,255,255,199,133,52,255,255,255,255,255,255,255,199,133,92,255,255,255,15,0,0,0,199,133,88,255,255,255,0,0,0,0,199,133,84,255,255,255,0,0,0,0,199,133,80,255,255,255,0,0,0,0,199,133,76,255,255, 255,248,255,255,255,199,133,72,255,255,255,1,0,0,0,199,133,68,255,255,255,8,0,0,0,199,133,64,255,255,255,10,0,0,0,199,133,60,255,255,255,50,0,0,0,199,133,56,255,255,255,250,0,0,0,139,133,96,255,255,255,5,36,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,9,101, 254,255,139,133,96,255,255,255,5,28,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,5,102,254,255,131,125,12,15,15,133,67,3,0,0,139,133,32,255,255,255,139,0,131,248,1,15,133,50,3,0,0,139,133,32,255,255,255,131,192,8,139,0,131,248,1,15,133,30,3,0,0,139,133,32, 255,255,255,131,192,16,139,0,131,248,1,15,133,10,3,0,0,139,133,32,255,255,255,131,192,24,139,0,131,248,1,15,133,246,2,0,0,139,133,32,255,255,255,131,192,32,139,0,131,248,2,116,20,139,133,32,255,255,255,131,192,32,139,0,131,248,1,15,133,210,2,0,0,139, 133,32,255,255,255,131,192,40,139,0,131,248,2,116,20,139,133,32,255,255,255,131,192,40,139,0,131,248,1,15,133,174,2,0,0,139,133,32,255,255,255,131,192,48,139,0,131,248,2,116,20,139,133,32,255,255,255,131,192,48,139,0,131,248,1,15,133,138,2,0,0,139,133, 32,255,255,255,131,192,56,139,0,131,248,1,15,133,118,2,0,0,139,133,32,255,255,255,131,192,64,139,0,131,248,1,15,133,98,2,0,0,139,133,32,255,255,255,131,192,72,139,0,131,248,1,15,133,78,2,0,0,139,133,32,255,255,255,131,192,80,139,0,131,248,1,15,133,58, 2,0,0,139,133,32,255,255,255,131,192,88,139,0,131,248,1,15,133,38,2,0,0,139,133,32,255,255,255,131,192,96,139,0,131,248,1,15,133,18,2,0,0,139,133,32,255,255,255,131,192,104,139,0,131,248,1,15,133,254,1,0,0,139,133,32,255,255,255,131,192,112,139,0,131, 248,1,15,133,234,1,0,0,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,216,147,2,0,137,133,92,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,1,0,0,0,232,181,147,2,0,137,133,72,255,255,255,139, 133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,2,0,0,0,232,146,147,2,0,139,149,96,255,255,255,129,194,36,4,0,0,137,68,36,4,137,20,36,232,16,99,254,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,3,0,0,0,232,93,147, 2,0,137,133,68,255,255,255,139,149,96,255,255,255,139,133,32,255,255,255,137,68,36,8,199,68,36,4,4,0,0,0,137,20,36,232,77,73,254,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,7,0,0,0,232,26,147,2,0,137,133,80,255,255,255,139,133, 32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,8,0,0,0,232,247,146,2,0,137,133,76,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,9,0,0,0,232,212,146,2,0,139,149,96,255,255,255,129,194,28,4,0,0,137,68,36,4,137, 20,36,232,105,99,254,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,10,0,0,0,232,159,146,2,0,137,133,64,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,11,0,0,0,232,124,146,2,0,137,133,44,255,255,255, 139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,12,0,0,0,232,89,146,2,0,137,133,48,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,13,0,0,0,232,54,146,2,0,137,133,52,255,255,255,139,133,32,255,255,255,137, 68,36,8,139,69,12,137,68,36,4,199,4,36,14,0,0,0,232,19,146,2,0,137,133,88,255,255,255,235,30,139,133,96,255,255,255,199,68,36,8,0,0,0,0,199,68,36,4,4,0,0,0,137,4,36,232,3,72,254,255,141,147,164,234,255,255,139,133,96,255,255,255,137,80,32,139,149,96, 255,255,255,139,130,28,4,0,0,12,128,137,130,28,4,0,0,139,149,96,255,255,255,139,130,28,4,0,0,131,200,64,137,130,28,4,0,0,232,220,210,254,255,137,194,139,133,96,255,255,255,137,80,28,139,133,96,255,255,255,139,128,52,4,0,0,139,16,141,131,38,120,5,0,137, 68,36,4,137,20,36,232,59,210,5,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,128,226,127,137,144,28,4,0,0,139,133,96,255,255,255,139,128,56,4,0,0,139,16,141,131,38,120,5,0,137,68,36,4,137,20,36,232,2,210,5,0,133,192,117,21,139,133,96,255,255, 255,139,144,28,4,0,0,131,226,191,137,144,28,4,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,1,117,83,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,38,100,5,0,137,68,36, 4,137,20,36,232,139,207,5,0,233,232,0,0,0,139,149,96,255,255,255,131,194,52,141,131,38,100,5,0,137,68,36,4,137,20,36,232,172,2,0,0,233,200,0,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,2,117,80,184,255,255,255,255,131,248,255,116,41, 184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,102,162,5,0,137,68,36,4,137,20,36,232,36,207,5,0,233,129,0,0,0,139,149,96,255,255,255,131,194,52,141,131,102,162,5,0,137,68,36,4,137,20,36,232,69,2,0,0,235,100,139,149,96,255,255, 255,139,130,28,4,0,0,131,224,192,137,130,28,4,0,0,184,255,255,255,255,131,248,255,116,40,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,178,220,5,0,139,0,137,68,36,4,137,20,36,232,189,206,5,0,235,29,139,133,96,255,255,255,131, 192,52,141,147,178,220,5,0,139,18,137,84,36,4,137,4,36,232,223,1,0,0,131,189,68,255,255,255,0,127,10,199,133,68,255,255,255,1,0,0,0,129,189,68,255,255,255,128,0,0,0,126,10,199,133,68,255,255,255,128,0,0,0,139,149,96,255,255,255,139,133,68,255,255,255, 137,130,96,4,0,0,131,189,88,255,255,255,0,121,10,199,133,88,255,255,255,0,0,0,0,139,133,96,255,255,255,139,128,96,4,0,0,59,133,88,255,255,255,127,19,139,133,96,255,255,255,139,128,96,4,0,0,72,137,133,88,255,255,255,139,133,96,255,255,255,139,128,36,4, 0,0,131,224,1,133,192,116,20,139,149,96,255,255,255,139,133,88,255,255,255,137,130,84,4,0,0,235,16,139,133,96,255,255,255,199,128,84,4,0,0,0,0,0,0,139,133,96,255,255,255,139,144,84,4,0,0,139,133,96,255,255,255,137,144,88,4,0,0,131,189,72,255,255,255, 0,15,149,192,15,182,208,139,133,96,255,255,255,137,144,92,4,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,64,133,192,116,30,139,133,96,255,255,255,139,128,56,4,0,0,139,149,96,255,255,255,137,68,36,4,137,20,36,232,32,69,3,0,139,149,96,255,255,255, 139,133,80,255,255,255,137,66,44,139,149,96,255,255,255,139,133,76,255,255,255,137,66,48,131,189,64,255,255,255,3,127,10,199,133,64,255,255,255,4,0,0,0,139,149,96,255,255,255,139,133,64,255,255,255,137,130,32,4,0,0,139,133,92,255,255,255,137,4,36,232, 61,65,254,255,137,194,139,133,96,255,255,255,137,80,40,139,133,96,255,255,255,139,80,40,139,133,96,255,255,255,137,80,36,139,133,96,255,255,255,137,4,36,232,41,67,254,255,139,149,96,255,255,255,141,133,44,255,255,255,137,68,36,4,137,20,36,232,170,72, 254,255,139,149,96,255,255,255,141,131,114,221,5,0,139,0,137,68,36,4,137,20,36,232,191,51,3,0,139,133,96,255,255,255,141,147,162,220,5,0,139,18,139,77,244,51,10,116,5,232,188,204,5,0,129,196,244,0,0,0,91,201,195,85,137,229,131,236,24,184,255,255,255, 255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,158,204,5,0,201,195,85,137,229,131,236,24,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,98,247,255,255,201,195,85,137,229,131,236,24,199,68,36,12,1,0, 0,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,57,247,255,255,201,195,85,137,229,131,236,24,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116,24,139,69,8,139,128,56,4,0,0,139,85,8,137,68,36,4,137,20,36,232,140,68,3,0,139,69,8,137, 4,36,232,50,136,4,0,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,141,179,183,255,255,255,141,187,101,255,255,255,141,131,60,94,5,0,137,4,36,232,191,10,3,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,120,4,0,0, 137,116,36,8,137,124,36,4,137,4,36,232,115,255,2,0,137,194,141,131,179,253,5,0,137,16,141,147,230,233,255,255,141,131,179,253,5,0,139,0,137,84,36,4,137,4,36,232,230,6,3,0,141,147,161,239,255,255,141,131,179,253,5,0,139,0,137,84,36,4,137,4,36,232,238, 6,3,0,141,131,47,91,5,0,137,4,36,232,67,10,3,0,137,194,141,139,29,243,255,255,141,131,179,253,5,0,139,0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36, 4,137,4,36,232,222,2,3,0,141,131,3,118,5,0,137,4,36,232,229,9,3,0,137,194,141,139,54,231,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,160,2,3,0,141,131,87,93,5,0,137,4,36,232,167,9, 3,0,137,194,141,139,217,243,255,255,141,131,179,253,5,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,106,2,3,0,141,131,35,69,5,0,137,4,36,232,113,9,3,0,137,194,141,139,4,233,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199, 68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,44,2,3,0,141,131,11,118,5,0,137,4,36,232,51,9,3,0,137,194,141,139,225,244,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,238,1,3, 0,141,131,75,107,5,0,137,4,36,232,245,8,3,0,137,194,141,139,49,245,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,176,1,3,0,141,131,81,107,5,0,137,4,36,232,183,8,3,0,137,194,141,139,96, 245,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,114,1,3,0,141,131,85,107,5,0,137,4,36,232,121,8,3,0,137,194,141,139,143,245,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199, 68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,52,1,3,0,141,131,91,107,5,0,137,4,36,232,59,8,3,0,137,194,141,139,190,245,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,246,0,3, 0,141,131,19,118,5,0,137,4,36,232,253,7,3,0,137,194,141,139,223,245,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,184,0,3,0,141,131,27,118,5,0,137,4,36,232,191,7,3,0,137,194,141,139,0, 246,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,122,0,3,0,141,131,67,91,5,0,137,4,36,232,129,7,3,0,137,194,141,139,33,246,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199, 68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,60,0,3,0,141,131,35,118,5,0,137,4,36,232,67,7,3,0,137,194,141,139,80,246,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,254,255, 2,0,141,131,99,107,5,0,137,4,36,232,5,7,3,0,137,194,141,139,127,246,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,192,255,2,0,141,131,104,107,5,0,137,4,36,232,199,6,3,0,137,194,141,139, 21,244,255,255,141,131,179,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,130,255,2,0,141,131,111,107,5,0,137,4,36,232,137,6,3,0,137,194,141,139,217,246,255,255,141,131,179,253,5,0,139,0,199,68,36,12,0,0, 0,0,137,84,36,8,137,76,36,4,137,4,36,232,76,255,2,0,141,131,125,107,5,0,137,4,36,232,83,6,3,0,137,194,141,139,196,246,255,255,141,131,179,253,5,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,22,255,2,0,141,131,107,212,5,0,139,0,141, 147,130,226,255,255,137,16,141,131,107,212,5,0,139,0,141,147,215,211,5,0,139,18,137,80,4,141,131,107,212,5,0,139,0,141,147,195,211,5,0,139,18,137,80,8,141,131,107,212,5,0,139,0,199,64,12,0,0,0,0,141,131,107,212,5,0,139,0,141,147,211,211,5,0,139,18,137, 80,16,141,131,107,212,5,0,139,0,141,147,199,211,5,0,139,18,137,80,20,141,131,107,212,5,0,139,0,141,147,120,243,255,255,137,80,24,141,131,179,253,5,0,139,16,141,131,107,212,5,0,139,0,137,68,36,4,137,20,36,232,116,2,3,0,141,131,60,94,5,0,137,4,36,232,133, 5,3,0,137,194,141,131,179,253,5,0,139,0,137,84,36,4,137,4,36,232,145,2,3,0,141,131,179,253,5,0,139,16,141,131,243,226,255,255,137,68,36,4,137,20,36,232,187,3,3,0,141,131,179,253,5,0,139,16,141,131,217,228,255,255,137,68,36,4,137,20,36,232,192,3,3,0,141, 179,183,255,255,255,141,187,142,255,255,255,141,131,20,106,5,0,137,4,36,232,33,5,3,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,120,4,0,0,137,116,36,8,137,124,36,4,137,4,36,232,213,249,2,0,137,194,141,131,183,253,5,0, 137,16,141,131,139,107,5,0,137,4,36,232,217,4,3,0,141,147,101,255,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,195,252,2,0,141,131,143,107,5,0,137,4,36,232,169,4,3,0,141,147,101,255,255,255,199,68,36,12,0,0,0,0,199,68,36, 8,10,0,0,0,137,68,36,4,137,20,36,232,147,252,2,0,141,131,152,107,5,0,137,4,36,232,121,4,3,0,141,147,101,255,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,99,252,2,0,141,147,230,233,255,255,141,131,183,253,5,0,139,0,137,84, 36,4,137,4,36,232,184,0,3,0,141,147,161,239,255,255,141,131,183,253,5,0,139,0,137,84,36,4,137,4,36,232,192,0,3,0,141,131,47,91,5,0,137,4,36,232,21,4,3,0,137,194,141,139,29,243,255,255,141,131,183,253,5,0,139,0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0, 0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,176,252,2,0,141,131,3,118,5,0,137,4,36,232,183,3,3,0,137,194,141,139,54,231,255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0, 0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,114,252,2,0,141,131,87,93,5,0,137,4,36,232,121,3,3,0,137,194,141,139,217,243,255,255,141,131,183,253,5,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,60,252,2,0,141,131, 35,69,5,0,137,4,36,232,67,3,3,0,137,194,141,139,4,233,255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,254,251,2,0,141,131,11,118,5,0,137,4,36,232,5,3,3,0,137,194,141,139,225,244,255,255, 141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,192,251,2,0,141,131,75,107,5,0,137,4,36,232,199,2,3,0,137,194,141,139,49,245,255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12, 10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,130,251,2,0,141,131,81,107,5,0,137,4,36,232,137,2,3,0,137,194,141,139,96,245,255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,68,251,2,0,141, 131,85,107,5,0,137,4,36,232,75,2,3,0,137,194,141,139,143,245,255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,6,251,2,0,141,131,91,107,5,0,137,4,36,232,13,2,3,0,137,194,141,139,190,245, 255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,200,250,2,0,141,131,19,118,5,0,137,4,36,232,207,1,3,0,137,194,141,139,223,245,255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0,199, 68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,138,250,2,0,141,131,27,118,5,0,137,4,36,232,145,1,3,0,137,194,141,139,0,246,255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,76,250, 2,0,141,131,67,91,5,0,137,4,36,232,83,1,3,0,137,194,141,139,33,246,255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,14,250,2,0,141,131,35,118,5,0,137,4,36,232,21,1,3,0,137,194,141,139,80, 246,255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,208,249,2,0,141,131,99,107,5,0,137,4,36,232,215,0,3,0,137,194,141,139,127,246,255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0, 199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,146,249,2,0,141,131,104,107,5,0,137,4,36,232,153,0,3,0,137,194,141,139,21,244,255,255,141,131,183,253,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,84, 249,2,0,141,131,111,107,5,0,137,4,36,232,91,0,3,0,137,194,141,139,217,246,255,255,141,131,183,253,5,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,30,249,2,0,141,131,125,107,5,0,137,4,36,232,37,0,3,0,137,194,141,139,196,246,255,255, 141,131,183,253,5,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,232,248,2,0,141,131,183,253,5,0,139,16,141,131,107,212,5,0,139,0,137,68,36,4,137,20,36,232,194,252,2,0,141,131,60,94,5,0,137,4,36,232,211,255,2,0,137,194,141,131,183, 253,5,0,139,0,137,84,36,4,137,4,36,232,223,252,2,0,131,196,60,91,94,95,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,139,69,8,137,69,244,139,69,12,137,4,36,232,184,225,254,255,133,192,15,132,38,1,0,0,139,85,244,139,69,12,137,68,36,4,137,20,36,232, 181,168,255,255,137,198,139,69,244,139,128,88,4,0,0,141,72,50,199,69,228,31,133,235,81,139,69,228,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,141,4,6,137,69,240,139,85,244,139,69,12,137,68,36,4,137,20,36,232,122,169,255,255,137,69,236, 139,69,12,137,4,36,232,155,148,255,255,137,69,232,139,69,244,139,64,36,3,69,236,139,85,236,66,137,68,36,24,139,69,240,137,68,36,20,137,84,36,16,139,69,240,137,68,36,12,139,69,244,137,68,36,8,139,69,232,137,68,36,4,141,131,117,96,5,0,137,4,36,232,6,149, 3,0,139,69,244,139,144,88,4,0,0,139,69,244,139,128,92,4,0,0,57,194,117,56,139,69,244,139,128,96,4,0,0,133,192,117,97,139,69,244,137,68,36,8,139,69,232,137,68,36,4,141,131,153,96,5,0,137,4,36,232,199,148,3,0,139,69,244,199,128,96,4,0,0,1,0,0,0,235,54, 139,69,244,139,128,96,4,0,0,133,192,116,41,139,69,244,137,68,36,8,139,69,232,137,68,36,4,141,131,193,96,5,0,137,4,36,232,143,148,3,0,139,69,244,199,128,96,4,0,0,0,0,0,0,131,196,64,91,94,201,195,85,137,229,87,86,83,131,236,108,232,0,0,0,0,91,139,85,8, 139,69,12,137,68,36,4,137,20,36,232,121,167,255,255,137,69,228,139,85,8,139,69,12,137,68,36,4,137,20,36,232,105,168,255,255,137,69,224,139,69,8,139,128,88,4,0,0,141,72,50,199,69,196,31,133,235,81,139,69,196,247,233,193,250,5,137,200,193,248,31,137,209, 41,193,137,200,3,69,228,137,69,220,139,69,12,137,4,36,232,94,147,255,255,137,69,216,139,69,8,139,184,44,4,0,0,139,69,8,139,64,36,137,194,3,85,224,139,69,8,139,64,40,3,69,228,141,72,2,139,117,228,131,238,3,139,69,8,137,68,36,28,137,124,36,24,137,84,36, 20,137,76,36,16,139,69,224,137,68,36,12,137,116,36,8,139,69,216,137,68,36,4,141,131,124,73,5,0,137,4,36,232,175,147,3,0,139,69,8,139,136,40,4,0,0,139,69,8,139,64,36,137,194,3,85,224,139,117,224,70,139,69,8,137,68,36,28,137,76,36,24,137,84,36,20,139,69, 220,137,68,36,16,137,116,36,12,139,69,220,137,68,36,8,139,69,216,137,68,36,4,141,131,148,95,5,0,137,4,36,232,97,147,3,0,139,69,8,139,128,48,4,0,0,137,69,200,139,69,8,139,128,32,4,0,0,137,69,204,139,69,8,131,192,52,137,69,208,139,69,8,139,128,60,4,0,0, 139,16,141,131,156,98,5,0,137,68,36,4,137,20,36,232,76,192,5,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,212,235,9,141,139,192,67,5,0,137,77,212,139,69,8,139,64,48,137,194,3,85,224,139,69,8,139,64,44,137,193,3,77,228,139,69,8,137,68,36,36, 139,69,200,137,68,36,32,141,131,44,199,5,0,139,0,137,68,36,28,139,69,204,137,68,36,24,139,69,208,137,68,36,20,139,69,212,137,68,36,16,137,84,36,12,137,76,36,8,139,69,216,137,68,36,4,141,131,252,73,5,0,137,4,36,232,164,146,3,0,139,69,8,139,128,28,4,0, 0,37,128,0,0,0,133,192,117,87,139,69,8,139,64,36,137,194,3,85,224,139,77,228,131,193,4,139,69,8,139,64,36,3,69,224,141,112,255,139,125,228,131,239,3,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,137,124,36,8,139,69, 216,137,68,36,4,141,131,124,74,5,0,137,4,36,232,59,146,3,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,71,139,85,224,66,139,77,228,131,193,4,139,117,228,131,238,3,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,224,137, 68,36,12,137,116,36,8,139,69,216,137,68,36,4,141,131,192,74,5,0,137,4,36,232,228,145,3,0,131,196,108,91,94,95,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20,36,232,219,164,255,255,137,69,244,139,85,8,139,69,12, 137,68,36,4,137,20,36,232,203,165,255,255,137,69,240,139,69,8,139,128,88,4,0,0,141,72,50,199,69,228,31,133,235,81,139,69,228,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,3,69,244,137,69,236,139,69,12,137,4,36,232,192,144,255,255,137,69, 232,139,69,8,139,64,36,137,193,3,77,240,139,69,8,139,64,40,3,69,244,131,192,2,139,85,244,131,234,3,137,76,36,24,137,68,36,20,139,69,240,137,68,36,16,137,84,36,12,139,69,8,137,68,36,8,139,69,232,137,68,36,4,141,131,102,72,5,0,137,4,36,232,30,145,3,0,139, 69,8,139,64,36,3,69,240,139,85,240,66,137,68,36,24,139,69,236,137,68,36,20,137,84,36,16,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,232,137,68,36,4,141,131,130,92,5,0,137,4,36,232,223,144,3,0,139,69,8,139,64,48,137,194,3,85,240,139,69,8,139,64, 44,3,69,244,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,232,137,68,36,4,141,131,126,65,5,0,137,4,36,232,167,144,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,85,139,69,8,139,64,36,137,193,3,77,240,139,117,244,131,198,4,139,69,8,139, 64,36,3,69,240,72,139,85,244,131,234,3,137,76,36,28,137,116,36,24,137,68,36,20,137,84,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,232,137,68,36,4,141,131,174,72,5,0,137,4,36,232,64,144,3,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,71, 139,69,240,64,139,85,244,131,194,4,139,77,244,131,233,3,137,68,36,28,137,84,36,24,139,69,240,137,68,36,20,137,76,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,232,137,68,36,4,141,131,214,72,5,0,137,4,36,232,233,143,3,0,131,196,64,91,94,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,29,143,255,255,137,69,244,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,1,71,5,0,137,4,36,232,171,143,3,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,69,91,5,0,137,4,36,232, 143,143,3,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,93,91,5,0,137,4,36,232,115,143,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,49,71,5,0,137,4,36,232,61, 143,3,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,119,91,5,0,137,4,36,232,9,143,3,0,131,196,36,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,12,137,4,36,232, 62,142,255,255,137,69,244,139,69,8,139,128,60,4,0,0,139,16,141,131,38,93,5,0,137,68,36,4,137,20,36,232,244,187,5,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,224,235,9,141,131,74,62,5,0,137,69,224,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192, 117,14,139,69,8,139,128,48,4,0,0,137,69,228,235,7,199,69,228,255,0,0,0,139,69,8,139,144,32,4,0,0,139,77,8,131,193,52,139,69,224,137,68,36,28,139,69,228,137,68,36,24,141,131,182,193,5,0,139,0,137,68,36,20,137,84,36,16,137,76,36,12,139,69,8,137,68,36,8, 139,69,244,137,68,36,4,141,131,110,70,5,0,137,4,36,232,58,142,3,0,139,69,8,139,128,40,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,178,90,5,0,137,4,36,232,17,142,3,0,139,69,8,139,128,44,4,0,0,137,68,36,12,139,69,8,137,68,36, 8,139,69,244,137,68,36,4,141,131,190,70,5,0,137,4,36,232,232,141,3,0,131,196,68,91,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20,36,232,224,160,255,255,137,69,228,139,85,8,139,69,12,137,68,36,4,137,20,36, 232,208,161,255,255,137,69,224,139,69,12,137,4,36,232,241,140,255,255,137,69,220,139,69,16,131,224,1,132,192,116,105,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,87,139,69,8,139,64,36,137,194,3,85,224,139,77,228,131,193,4,139,69,8,139,64,36,3,69, 224,141,112,255,139,125,228,131,239,3,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,137,124,36,8,139,69,220,137,68,36,4,141,131,199,69,5,0,137,4,36,232,40,141,3,0,139,69,16,131,224,1,133,192,117,54,139,69,8,139,128, 28,4,0,0,37,128,0,0,0,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,220,137,68,36,4,141,131,47,69,5,0,137,4,36,232,232,140,3,0,139,69,16,131,224,2,133,192,116,87,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,71,139,85,224,66,139, 77,228,131,193,4,139,117,228,131,238,3,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,224,137,68,36,12,137,116,36,8,139,69,220,137,68,36,4,141,131,255,69,5,0,137,4,36,232,135,140,3,0,139,69,16,131,224,2,133,192,117,52,139, 69,8,139,128,28,4,0,0,131,224,64,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,220,137,68,36,4,141,131,117,89,5,0,137,4,36,232,73,140,3,0,131,196,60,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,124, 139,255,255,137,69,244,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,116,74,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,148,68,5,0,137,4,36,232,240,139,3,0,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36, 4,141,131,244,68,5,0,137,4,36,232,204,139,3,0,235,77,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,148,68,5,0,137,4,36,232,166,139,3,0,139,69,8,139,128,48,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131, 244,68,5,0,137,4,36,232,125,139,3,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,16,0,117,33,141,131,156,245,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,39,146,3,0,233,167,0,0,0,131,125,16,1,117,23,139,69, 12,137,68,36,4,139,69,8,137,4,36,232,79,249,255,255,233,138,0,0,0,131,125,16,2,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,147,246,255,255,235,112,131,125,16,3,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,179,254,255,255,235,86,131,125,16, 4,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,248,250,255,255,235,60,131,125,16,5,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,189,251,255,255,235,34,131,125,16,5,126,28,139,69,16,131,232,6,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137, 4,36,232,186,252,255,255,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,85,244,139,69,12,137,68,36,4,137,20,36,232,151,157,255,255,141,80,253,139,69,16,137,16,139,85,244,139,69,12,137,68,36,4,137,20,36,232,130,158,255,255,137,194, 139,69,20,137,16,139,69,16,139,16,139,69,244,139,64,40,141,4,2,141,80,5,139,69,24,137,16,139,69,20,139,16,139,69,244,139,64,36,1,194,139,69,28,137,16,201,195,85,137,229,87,86,83,129,236,252,0,0,0,232,0,0,0,0,91,139,69,8,137,69,228,139,85,228,141,69,216, 137,68,36,8,141,69,204,137,68,36,4,137,20,36,232,114,61,254,255,139,69,228,139,176,104,4,0,0,139,69,228,139,184,88,4,0,0,139,69,224,137,133,112,255,255,255,139,85,220,137,149,116,255,255,255,139,69,216,137,133,120,255,255,255,139,69,228,139,128,32,4, 0,0,137,133,124,255,255,255,139,69,228,5,28,4,0,0,137,4,36,232,169,71,254,255,137,69,128,139,69,228,139,64,48,137,69,132,139,69,228,139,64,44,137,69,136,139,85,212,137,85,140,139,69,208,137,69,144,139,85,204,137,85,148,139,69,228,5,36,4,0,0,137,4,36, 232,107,70,254,255,137,69,152,139,69,228,139,128,100,4,0,0,137,69,156,139,69,228,242,15,16,128,116,4,0,0,242,15,90,192,243,15,90,192,242,15,17,69,160,139,69,228,242,15,16,128,108,4,0,0,242,15,90,192,243,15,90,192,242,15,17,69,168,139,69,228,139,64,36, 137,69,176,139,69,228,139,64,40,137,69,180,141,131,4,86,5,0,137,4,36,232,0,243,2,0,137,69,184,139,69,228,15,183,64,22,152,137,69,188,139,69,228,15,183,64,20,152,137,69,192,141,131,67,83,5,0,137,4,36,232,217,242,2,0,137,69,196,141,131,199,68,5,0,137,4, 36,232,200,242,2,0,137,116,36,104,137,124,36,100,139,149,112,255,255,255,137,84,36,96,139,149,116,255,255,255,137,84,36,92,139,149,120,255,255,255,137,84,36,88,139,149,124,255,255,255,137,84,36,84,139,85,128,137,84,36,80,139,85,132,137,84,36,76,139,85, 136,137,84,36,72,139,85,140,137,84,36,68,139,85,144,137,84,36,64,139,85,148,137,84,36,60,139,85,152,137,84,36,56,139,85,156,137,84,36,52,242,15,16,69,160,242,15,17,68,36,44,242,15,16,69,168,242,15,17,68,36,36,139,85,176,137,84,36,32,139,85,180,137,84, 36,28,139,85,184,137,84,36,24,139,85,188,137,84,36,20,139,85,192,137,84,36,16,139,85,196,137,84,36,12,137,68,36,8,141,131,11,86,5,0,137,68,36,4,139,69,12,137,4,36,232,170,135,2,0,141,131,31,67,5,0,137,68,36,4,139,69,12,137,4,36,232,149,135,2,0,129,196, 252,0,0,0,91,94,95,201,195,85,137,229,131,236,40,131,125,12,1,127,7,199,69,12,2,0,0,0,139,85,8,139,69,12,137,66,40,139,69,8,139,64,40,107,192,50,141,80,206,139,69,8,137,144,92,4,0,0,139,69,8,139,144,88,4,0,0,139,69,8,139,64,40,107,192,100,131,232,100, 57,194,126,39,139,69,8,139,64,40,107,192,100,141,80,156,139,69,8,137,144,84,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,139,128,100,4,0,0,133,192,116,84,139,69,8,242,15,16,136,116,4,0,0,139,69,8,242,15,16,128,108,4,0,0,102,15,40, 209,242,15,94,208,102,15,40,194,242,15,17,4,36,232,120,179,5,0,221,93,240,139,69,8,139,64,40,72,242,15,42,192,242,15,16,77,240,242,15,94,200,102,15,40,193,139,69,8,242,15,17,128,124,4,0,0,235,60,139,69,8,242,15,16,136,116,4,0,0,139,69,8,242,15,16,128, 108,4,0,0,242,15,92,200,139,69,8,139,64,40,72,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,139,69,8,242,15,17,128,124,4,0,0,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,12,137,69,240,139,69,16,137,69,244,139,69,20,137,69,232,139, 69,24,137,69,236,139,69,8,139,128,100,4,0,0,133,192,15,132,172,0,0,0,141,131,4,172,5,0,242,15,16,0,102,15,46,69,240,122,2,116,2,235,36,141,131,4,172,5,0,242,15,16,0,102,15,46,69,232,122,2,116,2,235,15,141,131,12,172,5,0,242,15,16,0,242,15,17,69,232,141, 131,4,172,5,0,242,15,16,8,242,15,16,69,232,102,15,46,193,119,2,235,45,141,131,4,172,5,0,242,15,16,0,102,15,46,69,240,115,2,235,73,242,15,16,77,232,141,131,228,174,5,0,242,15,16,0,242,15,89,193,242,15,17,69,240,235,47,141,131,4,172,5,0,242,15,16,8,242, 15,16,69,240,102,15,46,193,119,2,235,24,242,15,16,77,240,141,131,228,174,5,0,242,15,16,0,242,15,89,193,242,15,17,69,232,139,69,8,242,15,16,69,240,242,15,17,128,108,4,0,0,139,69,8,242,15,16,69,232,242,15,17,128,116,4,0,0,139,69,8,242,15,16,136,108,4,0, 0,139,69,8,242,15,16,128,116,4,0,0,102,15,46,200,119,2,235,23,139,69,8,139,144,36,4,0,0,129,202,0,0,0,16,137,144,36,4,0,0,235,21,139,69,8,139,144,36,4,0,0,129,226,255,255,255,239,137,144,36,4,0,0,139,69,8,139,128,100,4,0,0,133,192,116,84,139,69,8,242, 15,16,136,116,4,0,0,139,69,8,242,15,16,128,108,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,4,36,232,141,177,5,0,221,93,224,139,69,8,139,64,40,72,242,15,42,192,242,15,16,77,224,242,15,94,200,102,15,40,193,139,69,8,242,15,17,128,124,4,0,0, 235,60,139,69,8,242,15,16,136,116,4,0,0,139,69,8,242,15,16,128,108,4,0,0,242,15,92,200,139,69,8,139,64,40,72,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,139,69,8,242,15,17,128,124,4,0,0,131,196,52,91,201,195,85,137,229,87,86,83,129,236,252, 3,0,0,232,0,0,0,0,91,139,69,8,137,133,164,252,255,255,139,69,12,137,133,160,252,255,255,141,131,156,183,5,0,139,0,139,16,137,85,228,49,210,139,133,164,252,255,255,137,133,192,252,255,255,139,149,192,252,255,255,141,133,180,252,255,255,137,68,36,4,137, 20,36,232,125,56,254,255,139,133,192,252,255,255,139,128,48,4,0,0,137,194,129,226,255,255,255,0,139,133,192,252,255,255,139,128,40,4,0,0,137,193,129,225,255,255,255,0,139,133,192,252,255,255,139,128,44,4,0,0,137,198,129,230,255,255,255,0,139,133,192, 252,255,255,139,184,32,4,0,0,139,133,192,252,255,255,139,128,28,4,0,0,131,224,63,15,182,192,137,133,116,252,255,255,139,133,192,252,255,255,139,64,48,137,133,120,252,255,255,139,133,192,252,255,255,139,64,44,137,133,124,252,255,255,139,133,188,252,255, 255,139,0,137,133,128,252,255,255,139,133,184,252,255,255,139,0,137,133,132,252,255,255,139,133,180,252,255,255,139,0,137,133,136,252,255,255,139,133,192,252,255,255,139,128,104,4,0,0,137,133,140,252,255,255,139,133,192,252,255,255,139,128,36,4,0,0,131, 224,1,15,182,192,137,133,144,252,255,255,139,133,192,252,255,255,139,128,100,4,0,0,137,133,148,252,255,255,139,133,192,252,255,255,242,15,16,136,116,4,0,0,139,133,192,252,255,255,242,15,16,144,108,4,0,0,139,133,192,252,255,255,139,64,36,137,133,152,252, 255,255,139,133,192,252,255,255,139,64,40,137,133,156,252,255,255,137,84,36,108,137,76,36,104,137,116,36,100,137,124,36,96,139,133,116,252,255,255,137,68,36,92,139,149,120,252,255,255,137,84,36,88,139,133,124,252,255,255,137,68,36,84,139,149,128,252, 255,255,137,84,36,80,139,133,132,252,255,255,137,68,36,76,139,149,136,252,255,255,137,84,36,72,199,68,36,68,255,255,255,255,139,133,140,252,255,255,137,68,36,64,139,149,144,252,255,255,137,84,36,60,139,133,148,252,255,255,137,68,36,56,141,131,16,170, 5,0,242,15,16,0,242,15,17,68,36,48,242,15,17,76,36,40,242,15,17,84,36,32,199,68,36,28,8,0,0,0,139,149,152,252,255,255,137,84,36,24,199,68,36,20,2,0,0,0,139,133,156,252,255,255,137,68,36,16,141,131,248,80,5,0,137,68,36,12,199,68,36,8,32,3,0,0,199,68,36, 4,0,0,0,0,141,133,196,252,255,255,137,4,36,232,174,173,5,0,139,149,192,252,255,255,141,133,196,252,255,255,137,68,36,8,139,133,192,252,255,255,137,68,36,4,137,20,36,232,225,102,4,0,141,131,156,183,5,0,139,0,139,85,228,51,16,116,5,232,126,173,5,0,129, 196,252,3,0,0,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,128,36,4,0,0,37,0,0,0,16,133,192,116,90,243,15,90,77,12,139,69,8,242,15,16,128,108,4,0,0,102,15,46,200,119,2,235,20,139,69,8,242,15,16,128,108,4,0,0,242,15,90,192,243, 15,17,69,12,243,15,90,77,12,139,69,8,242,15,16,128,116,4,0,0,102,15,46,193,119,2,235,110,139,69,8,242,15,16,128,116,4,0,0,242,15,90,192,243,15,17,69,12,235,88,243,15,90,77,12,139,69,8,242,15,16,128,116,4,0,0,102,15,46,200,119,2,235,20,139,69,8,242,15, 16,128,116,4,0,0,242,15,90,192,243,15,17,69,12,243,15,90,77,12,139,69,8,242,15,16,128,108,4,0,0,102,15,46,193,119,2,235,20,139,69,8,242,15,16,128,108,4,0,0,242,15,90,192,243,15,17,69,12,139,69,8,139,128,100,4,0,0,133,192,116,72,243,15,90,77,12,139,69, 8,242,15,16,128,108,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,4,36,232,143,173,5,0,221,93,224,139,69,8,242,15,16,128,124,4,0,0,242,15,16,77,224,242,15,94,200,102,15,40,193,242,15,17,69,240,235,48,243,15,90,77,12,139,69,8,242,15,16,128, 108,4,0,0,242,15,92,200,139,69,8,242,15,16,128,124,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,69,240,242,15,16,77,240,141,131,5,169,5,0,242,15,16,0,242,15,89,200,141,131,173,170,5,0,242,15,16,0,242,15,88,193,242,15,44,208,139,69,8,137, 144,88,4,0,0,139,69,8,139,144,88,4,0,0,139,69,8,137,144,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,128,100,4,0,0, 133,192,116,88,139,69,8,242,15,16,128,108,4,0,0,242,15,17,69,216,139,69,8,242,15,16,136,124,4,0,0,139,69,8,139,128,88,4,0,0,242,15,42,192,242,15,89,200,141,131,169,168,5,0,242,15,16,0,242,15,89,193,242,15,17,4,36,232,245,171,5,0,221,93,224,242,15,16, 69,216,242,15,89,69,224,242,15,17,69,240,235,62,139,69,8,139,128,88,4,0,0,242,15,42,200,141,131,169,168,5,0,242,15,16,0,242,15,89,200,139,69,8,242,15,16,128,124,4,0,0,242,15,89,200,139,69,8,242,15,16,128,108,4,0,0,242,15,88,193,242,15,17,69,240,242,15, 16,77,240,141,131,249,168,5,0,242,15,16,0,102,15,46,193,119,2,235,34,242,15,16,69,240,141,131,1,169,5,0,102,15,46,0,119,2,235,15,141,131,201,165,5,0,242,15,16,0,242,15,17,69,240,242,15,90,69,240,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,84,19, 3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,47,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,31,242,15,90,69,240,139,69,8,139,128,52,4,0,0,139,64,4,243,15,17,68,36,4,137,4,36,232,204,38,3,0,131,196,52,91,201,195,85,137,229,131,236,120,139, 69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,192,107,2,0,137,69,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,163,107,2,0,137,69,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,43,107,2,0,217, 93,176,243,15,90,69,176,242,15,17,69,216,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,4,107,2,0,217,93,180,243,15,90,69,180,242,15,17,69,208,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,56,107,2,0,137,69,236,139, 69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,17,0,0,0,232,27,107,2,0,137,69,232,131,125,236,0,116,7,199,69,236,1,0,0,0,139,85,8,139,69,236,137,130,100,4,0,0,131,125,232,0,116,15,139,69,8,199,128,104,4,0,0,1,0,0,0,235,13,139,69,8,199,128,104,4,0,0, 0,0,0,0,139,85,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,69,196,137,68,36,4,137,20,36,232,113,50,254,255,137,69,228,139,69,240,137,4,36,232,71,29,254,255,137,194,139,69,8,137,80,36,139,69,244,137,68,36,4,139,69,8,137,4,36,232,33,246,255,255, 242,15,16,69,208,242,15,17,68,36,12,242,15,16,69,216,242,15,17,68,36,4,139,69,8,137,4,36,232,16,247,255,255,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,5,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,72,32,139,85,228,131,194,6,139,69, 8,139,64,28,137,84,36,8,137,68,36,4,139,69,8,137,4,36,255,209,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,8,139,64,28,137,84,36,4,137,4,36,232,170,204,254,255,201,195,85,137,229,87,86, 131,236,64,139,69,8,139,128,88,4,0,0,137,69,244,139,69,8,139,128,28,4,0,0,37,0,0,0,2,133,192,116,31,139,69,8,139,144,84,4,0,0,243,15,16,69,12,243,15,44,192,1,194,139,69,8,137,144,84,4,0,0,235,32,139,69,8,139,144,84,4,0,0,243,15,16,69,12,243,15,44,192, 107,192,100,1,194,139,69,8,137,144,84,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,139,144,88,4,0,0,139,69,8,139,64,40,107,192,100,131,232,100,57,194,126,112,139,69,8,139,64,40,107,192,100,141,80,156,139,69,8,137,144,88,4,0,0,139, 69,8,139,128,84,4,0,0,141,80,50,139,69,8,137,144,84,4,0,0,139,69,8,139,176,84,4,0,0,139,69,8,139,136,84,4,0,0,199,69,212,31,133,235,81,139,69,212,247,233,193,250,5,137,200,193,248,31,137,215,41,199,137,125,224,107,69,224,100,137,202,41,194,137,85,224, 137,242,43,85,224,139,69,8,137,144,84,4,0,0,139,69,8,139,128,88,4,0,0,133,192,121,104,139,69,8,199,128,88,4,0,0,0,0,0,0,139,69,8,139,128,84,4,0,0,141,80,206,139,69,8,137,144,84,4,0,0,139,69,8,139,176,84,4,0,0,139,69,8,139,136,84,4,0,0,199,69,212,31,133, 235,81,139,69,212,247,233,193,250,5,137,200,193,248,31,137,215,41,199,137,125,228,107,69,228,100,137,202,41,194,137,85,228,137,242,43,85,228,139,69,8,137,144,84,4,0,0,139,69,8,139,128,88,4,0,0,59,69,244,116,43,139,69,8,139,80,32,139,69,8,139,64,28,199, 68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,137,4,36,232,36,251,255,255,131,196,64,94,95,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,139,69,8,139,128,104,4,0,0,133,192,117,65,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20, 36,232,193,142,255,255,243,15,42,200,243,15,16,69,12,243,15,92,193,243,15,90,200,141,131,100,162,5,0,242,15,16,0,242,15,89,193,242,15,44,208,139,69,8,137,144,88,4,0,0,139,69,8,139,144,88,4,0,0,139,69,8,139,64,40,107,192,100,131,232,100,57,194,126,21, 139,69,8,139,64,40,107,192,100,141,80,156,139,69,8,137,144,88,4,0,0,139,69,8,139,128,88,4,0,0,133,192,121,13,139,69,8,199,128,88,4,0,0,0,0,0,0,139,69,8,139,144,88,4,0,0,139,69,8,137,144,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0, 0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,137,4,36,232,59,250,255,255,243,15,16,69,16,243,15,44,208,243,15,16,69,12,243,15,44,200,141,179,61,254,255,255,139,125,8,139,69,8,139,64,28,137,84,36,20,137,76,36,16,199,68,36,12,0,0,0,0,137,116,36,8,137, 124,36,4,137,4,36,232,115,121,255,255,131,196,44,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,69,244,131,125,36,0,116,117,243,15,42,69,28,243,15,42,77,24,243,15,42,85,20,243,15,42,93,16,243,15,17,68,36,20,141,131,163,159,5,0, 139,0,137,68,36,16,243,15,17,76,36,12,243,15,17,84,36,8,243,15,17,92,36,4,139,69,244,137,4,36,232,121,254,255,255,131,125,24,0,116,23,139,69,244,139,144,28,4,0,0,129,202,0,0,0,2,137,144,28,4,0,0,235,21,139,69,244,139,144,28,4,0,0,129,226,255,255,255, 253,137,144,28,4,0,0,184,1,0,0,0,131,196,52,91,201,195,85,137,229,131,236,24,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,98,102,2,0,137,68,36,4,139,69,8,137,4,36,232,223,241,255,255,131,125,16,1,126,42,139,69,20,137,68,36,8,139,69, 16,137,68,36,4,199,4,36,1,0,0,0,232,51,102,2,0,137,4,36,232,195,24,254,255,137,194,139,69,8,137,80,36,139,69,8,137,68,36,4,139,69,8,137,4,36,232,84,41,254,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69, 12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,116,41,254,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,247,41,254,255,201,195,85,137,229,131,236,72, 139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,54,101,2,0,217,93,228,243,15,90,69,228,242,15,17,69,232,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,15,101,2,0,217,93,244,243,15,90,69,244,242,15,16,77,232,242,15,17, 76,36,12,242,15,17,68,36,4,139,69,8,137,4,36,232,226,241,255,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,240,41,254,255,201,195,85,137,229,131,236,24, 139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,214,33,254,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,176,34,254,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8, 137,68,36,4,139,69,8,137,4,36,232,49,36,254,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,237,36,254,255,201,195,85,137,229,131,236,40,139,85,8,139,69, 20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,156,37,254,255,201,195,85,137,229,131,236,40,139,69,8,199,128,100,4,0,0,1,0,0,0,139,69,8,242,15,16,136,116,4,0,0,139,69,8,242,15,16,128,108,4,0,0,242,15,17, 76,36,12,242,15,17,68,36,4,139,69,8,137,4,36,232,176,240,255,255,201,195,85,137,229,131,236,8,139,69,8,199,128,100,4,0,0,0,0,0,0,139,69,8,242,15,16,136,116,4,0,0,139,69,8,242,15,16,128,108,4,0,0,242,15,92,200,139,69,8,139,64,40,72,242,15,42,192,102,15, 40,209,242,15,94,208,102,15,40,194,139,69,8,242,15,17,128,124,4,0,0,201,195,85,137,229,83,131,236,4,232,0,0,0,0,91,141,131,73,156,5,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,139,77,8,15,182,192,137,194,131,226,1,139,129,36,4,0,0,131,224,254, 9,208,137,129,36,4,0,0,131,196,4,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,5,156,5,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,15,182,208,139,69,8,137,144,104,4,0,0,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,12,137, 68,36,4,139,69,8,137,4,36,232,72,244,255,255,139,69,8,139,128,100,4,0,0,133,192,116,88,139,69,8,242,15,16,128,108,4,0,0,242,15,17,69,216,139,69,8,242,15,16,136,124,4,0,0,139,69,8,139,128,88,4,0,0,242,15,42,192,242,15,89,200,141,131,204,158,5,0,242,15, 16,0,242,15,89,193,242,15,17,4,36,232,6,162,5,0,221,93,224,242,15,16,69,216,242,15,89,69,224,242,15,17,69,240,235,62,139,69,8,139,128,88,4,0,0,242,15,42,200,141,131,204,158,5,0,242,15,16,0,242,15,89,200,139,69,8,242,15,16,128,124,4,0,0,242,15,89,200, 139,69,8,242,15,16,128,108,4,0,0,242,15,88,193,242,15,17,69,240,242,15,16,77,240,141,131,28,159,5,0,242,15,16,0,102,15,46,193,119,2,235,34,242,15,16,69,240,141,131,36,159,5,0,102,15,46,0,119,2,235,15,141,131,236,155,5,0,242,15,16,0,242,15,17,69,240,139, 69,8,139,128,28,4,0,0,37,0,0,0,4,133,192,116,90,242,15,90,69,240,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,83,9,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,47,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,31,242,15,90,69,240,139,69, 8,139,128,52,4,0,0,139,64,4,243,15,17,68,36,4,137,4,36,232,203,28,3,0,131,196,52,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,59,168,5,0,139,0,139,0,133,192,117,59,139,69,8,139,128,36,4,0,0,131,224,1,133,192,116,43,139,69,8,139,80,32,139, 69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,137,4,36,232,96,244,255,255,131,196,20,91,201,195,85,137,229,83,129,236,20,1,0,0,232,0,0,0,0,91,139,69,8,137,133,20,255,255,255,139,69,16,137,133,16,255,255,255,141,131, 172,167,5,0,139,0,139,16,137,85,244,49,210,141,131,200,209,5,0,139,0,137,4,36,232,235,19,3,0,137,133,96,255,255,255,199,133,28,255,255,255,0,0,252,255,199,133,32,255,255,255,255,255,255,255,199,133,36,255,255,255,255,255,255,255,199,133,92,255,255,255, 128,0,0,0,199,133,88,255,255,255,15,0,0,0,199,133,84,255,255,255,0,0,0,0,199,133,80,255,255,255,254,255,255,255,199,133,76,255,255,255,248,255,255,255,199,133,72,255,255,255,0,0,0,0,199,133,68,255,255,255,0,0,0,0,199,133,64,255,255,255,1,0,0,0,199,133, 60,255,255,255,10,0,0,0,141,131,32,154,5,0,242,15,16,0,242,15,17,133,48,255,255,255,141,131,96,157,5,0,242,15,16,0,242,15,17,133,40,255,255,255,139,133,96,255,255,255,5,36,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,27,48,254,255,139,133,96,255,255,255,5, 28,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,23,49,254,255,131,125,12,17,116,10,131,125,12,18,15,133,209,3,0,0,139,133,16,255,255,255,139,0,131,248,1,15,133,192,3,0,0,139,133,16,255,255,255,131,192,8,139,0,131,248,1,15,133,172,3,0,0,139,133,16,255,255,255, 131,192,16,139,0,131,248,1,15,133,152,3,0,0,139,133,16,255,255,255,131,192,24,139,0,131,248,1,15,133,132,3,0,0,139,133,16,255,255,255,131,192,32,139,0,131,248,1,15,133,112,3,0,0,139,133,16,255,255,255,131,192,40,139,0,131,248,1,15,133,92,3,0,0,139,133, 16,255,255,255,131,192,48,139,0,131,248,2,116,20,139,133,16,255,255,255,131,192,48,139,0,131,248,1,15,133,56,3,0,0,139,133,16,255,255,255,131,192,56,139,0,131,248,2,116,20,139,133,16,255,255,255,131,192,56,139,0,131,248,1,15,133,20,3,0,0,139,133,16,255, 255,255,131,192,64,139,0,131,248,2,116,20,139,133,16,255,255,255,131,192,64,139,0,131,248,1,15,133,240,2,0,0,139,133,16,255,255,255,131,192,72,139,0,131,248,1,15,133,220,2,0,0,139,133,16,255,255,255,131,192,80,139,0,131,248,1,15,133,200,2,0,0,139,133, 16,255,255,255,131,192,88,139,0,131,248,1,15,133,180,2,0,0,139,133,16,255,255,255,131,192,96,139,0,131,248,1,15,133,160,2,0,0,139,133,16,255,255,255,131,192,104,139,0,131,248,1,15,133,140,2,0,0,139,133,16,255,255,255,131,192,112,139,0,131,248,1,15,133, 120,2,0,0,139,133,16,255,255,255,131,192,120,139,0,131,248,1,15,133,100,2,0,0,139,133,16,255,255,255,131,232,128,139,0,131,248,1,15,133,80,2,0,0,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,188,94,2,0,137,133,92,255,255, 255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,1,0,0,0,232,153,94,2,0,137,133,88,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,2,0,0,0,232,27,94,2,0,217,157,8,255,255,255,243,15,90,133,8,255,255, 255,242,15,17,133,48,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,3,0,0,0,232,232,93,2,0,217,157,12,255,255,255,243,15,90,133,12,255,255,255,242,15,17,133,40,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137, 68,36,4,199,4,36,4,0,0,0,232,16,94,2,0,137,133,84,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,5,0,0,0,232,237,93,2,0,139,149,96,255,255,255,129,194,36,4,0,0,137,68,36,4,137,20,36,232,107,45,254,255,139,149,96,255,255, 255,139,133,16,255,255,255,137,68,36,8,199,68,36,4,6,0,0,0,137,20,36,232,203,19,254,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,9,0,0,0,232,152,93,2,0,137,133,80,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68, 36,4,199,4,36,10,0,0,0,232,117,93,2,0,137,133,76,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,11,0,0,0,232,82,93,2,0,139,149,96,255,255,255,129,194,28,4,0,0,137,68,36,4,137,20,36,232,231,45,254,255,139,133,16,255,255, 255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,12,0,0,0,232,29,93,2,0,137,133,60,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,13,0,0,0,232,250,92,2,0,137,133,28,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12, 137,68,36,4,199,4,36,14,0,0,0,232,215,92,2,0,137,133,32,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,15,0,0,0,232,180,92,2,0,137,133,36,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,16, 0,0,0,232,145,92,2,0,137,133,68,255,255,255,235,30,139,133,96,255,255,255,199,68,36,8,0,0,0,0,199,68,36,4,6,0,0,0,137,4,36,232,129,18,254,255,131,125,12,18,117,53,139,133,16,255,255,255,5,136,0,0,0,139,0,131,248,1,117,35,139,133,16,255,255,255,137,68, 36,8,139,69,12,137,68,36,4,199,4,36,17,0,0,0,232,54,92,2,0,137,133,64,255,255,255,141,147,138,233,255,255,139,133,96,255,255,255,137,80,32,139,149,96,255,255,255,139,130,28,4,0,0,12,128,137,130,28,4,0,0,139,149,96,255,255,255,139,130,28,4,0,0,131,200, 64,137,130,28,4,0,0,232,31,157,254,255,137,194,139,133,96,255,255,255,137,80,28,139,133,96,255,255,255,139,128,36,4,0,0,131,224,1,133,192,116,20,139,149,96,255,255,255,139,133,68,255,255,255,137,130,88,4,0,0,235,16,139,133,96,255,255,255,199,128,88,4, 0,0,0,0,0,0,139,133,96,255,255,255,139,144,88,4,0,0,139,133,96,255,255,255,137,144,84,4,0,0,131,189,84,255,255,255,0,116,10,199,133,84,255,255,255,1,0,0,0,139,149,96,255,255,255,139,133,84,255,255,255,137,130,100,4,0,0,131,189,64,255,255,255,0,116,10, 199,133,64,255,255,255,1,0,0,0,139,149,96,255,255,255,139,133,64,255,255,255,137,130,104,4,0,0,139,133,96,255,255,255,139,128,52,4,0,0,139,16,141,131,48,67,5,0,137,68,36,4,137,20,36,232,229,155,5,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0, 0,128,226,127,137,144,28,4,0,0,139,133,96,255,255,255,139,128,56,4,0,0,139,16,141,131,48,67,5,0,137,68,36,4,137,20,36,232,172,155,5,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,131,226,191,137,144,28,4,0,0,139,133,96,255,255,255,139,128,28, 4,0,0,131,224,63,131,248,1,117,83,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,48,47,5,0,137,68,36,4,137,20,36,232,53,153,5,0,233,232,0,0,0,139,149,96,255,255,255,131,194,52,141,131, 48,47,5,0,137,68,36,4,137,20,36,232,15,2,0,0,233,200,0,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,2,117,80,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,112,109,5, 0,137,68,36,4,137,20,36,232,206,152,5,0,233,129,0,0,0,139,149,96,255,255,255,131,194,52,141,131,112,109,5,0,137,68,36,4,137,20,36,232,168,1,0,0,235,100,139,149,96,255,255,255,139,130,28,4,0,0,131,224,192,137,130,28,4,0,0,184,255,255,255,255,131,248,255, 116,40,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,188,167,5,0,139,0,137,68,36,4,137,20,36,232,103,152,5,0,235,29,139,133,96,255,255,255,131,192,52,141,147,188,167,5,0,139,18,137,84,36,4,137,4,36,232,66,1,0,0,139,133,96, 255,255,255,139,128,28,4,0,0,131,224,64,133,192,116,30,139,133,96,255,255,255,139,128,56,4,0,0,139,149,96,255,255,255,137,68,36,4,137,20,36,232,167,15,3,0,139,149,96,255,255,255,139,133,80,255,255,255,137,66,44,139,149,96,255,255,255,139,133,76,255,255, 255,137,66,48,131,189,60,255,255,255,3,127,10,199,133,60,255,255,255,4,0,0,0,139,149,96,255,255,255,139,133,60,255,255,255,137,130,32,4,0,0,139,133,88,255,255,255,137,4,36,232,196,11,254,255,137,194,139,133,96,255,255,255,137,80,36,139,133,92,255,255, 255,137,68,36,4,139,133,96,255,255,255,137,4,36,232,149,228,255,255,242,15,16,133,40,255,255,255,242,15,17,68,36,12,242,15,16,133,48,255,255,255,242,15,17,68,36,4,139,133,96,255,255,255,137,4,36,232,123,229,255,255,139,149,96,255,255,255,141,133,28,255, 255,255,137,68,36,4,137,20,36,232,15,19,254,255,139,133,96,255,255,255,199,128,96,4,0,0,0,0,0,0,139,133,96,255,255,255,137,4,36,232,88,13,254,255,139,149,96,255,255,255,141,131,60,167,5,0,139,0,137,68,36,4,137,20,36,232,6,254,2,0,139,133,96,255,255,255, 141,147,172,167,5,0,139,18,139,77,244,51,10,116,5,232,3,151,5,0,129,196,20,1,0,0,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,229,150,5,0,201,195,85,137,229,131,236,24,139,69,8,139,128,28, 4,0,0,131,224,64,133,192,116,24,139,69,8,139,128,56,4,0,0,139,85,8,137,68,36,4,137,20,36,232,37,15,3,0,139,69,8,137,4,36,232,203,82,4,0,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,141,179,183,255,255,255,141,187,125,246,255,255,141,131,117, 55,5,0,137,4,36,232,88,213,2,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,132,4,0,0,137,116,36,8,137,124,36,4,137,4,36,232,12,202,2,0,137,194,141,131,84,200,5,0,137,16,141,131,193,40,5,0,137,4,36,232,16,213,2,0,141,147, 125,246,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,250,204,2,0,141,147,215,234,255,255,141,131,84,200,5,0,139,0,137,84,36,4,137,4,36,232,79,209,2,0,141,147,180,244,255,255,141,131,84,200,5,0,139,0,137,84,36,4,137,4,36, 232,87,209,2,0,141,131,200,37,5,0,137,4,36,232,172,212,2,0,137,194,141,139,186,239,255,255,141,131,84,200,5,0,139,0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36, 8,137,76,36,4,137,4,36,232,71,205,2,0,141,131,154,44,5,0,137,4,36,232,78,212,2,0,137,194,141,139,5,238,255,255,141,131,84,200,5,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,1,205,2,0,141, 131,156,64,5,0,137,4,36,232,8,212,2,0,137,194,141,139,32,236,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,195,204,2,0,141,131,240,39,5,0,137,4,36,232,202,211,2,0,137,194,141,139,33,246, 255,255,141,131,84,200,5,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,141,204,2,0,141,131,188,15,5,0,137,4,36,232,148,211,2,0,137,194,141,139,27,233,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84, 36,8,137,76,36,4,137,4,36,232,79,204,2,0,141,131,164,64,5,0,137,4,36,232,86,211,2,0,137,194,141,139,126,241,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,17,204,2,0,141,131,228,53,5,0, 137,4,36,232,24,211,2,0,137,194,141,139,241,241,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,211,203,2,0,141,131,234,53,5,0,137,4,36,232,218,210,2,0,137,194,141,139,32,242,255,255,141, 131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,149,203,2,0,141,131,185,56,5,0,137,4,36,232,156,210,2,0,137,194,141,139,79,242,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10, 0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,87,203,2,0,141,131,238,53,5,0,137,4,36,232,94,210,2,0,137,194,141,139,188,242,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,25,203,2,0,141,131, 244,53,5,0,137,4,36,232,32,210,2,0,137,194,141,139,235,242,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,219,202,2,0,141,131,172,64,5,0,137,4,36,232,226,209,2,0,137,194,141,139,12,243, 255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,157,202,2,0,141,131,180,64,5,0,137,4,36,232,164,209,2,0,137,194,141,139,45,243,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68, 36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,95,202,2,0,141,131,220,37,5,0,137,4,36,232,102,209,2,0,137,194,141,139,78,243,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,33,202,2, 0,141,131,188,64,5,0,137,4,36,232,40,209,2,0,137,194,141,139,125,243,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,227,201,2,0,141,131,193,56,5,0,137,4,36,232,234,208,2,0,137,194,141, 139,172,243,255,255,141,131,84,200,5,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,173,201,2,0,141,131,197,56,5,0,137,4,36,232,180,208,2,0,137,194,141,139,238,243,255,255,141,131,84,200,5,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137, 76,36,4,137,4,36,232,119,201,2,0,141,131,252,53,5,0,137,4,36,232,126,208,2,0,137,194,141,139,63,244,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,57,201,2,0,141,131,202,56,5,0,137,4,36, 232,64,208,2,0,137,194,141,139,132,244,255,255,141,131,84,200,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,251,200,2,0,141,131,12,159,5,0,139,0,141,147,247,224,255,255,137,16,141,131,12,159,5,0,139,0,141,147, 112,158,5,0,139,18,137,80,4,141,131,12,159,5,0,139,0,141,147,92,158,5,0,139,18,137,80,8,141,131,12,159,5,0,139,0,199,64,12,0,0,0,0,141,131,12,159,5,0,139,0,141,147,108,158,5,0,139,18,137,80,16,141,131,12,159,5,0,139,0,141,147,96,158,5,0,139,18,137,80, 20,141,131,12,159,5,0,139,0,141,147,229,240,255,255,137,80,24,141,131,84,200,5,0,139,16,141,131,12,159,5,0,139,0,137,68,36,4,137,20,36,232,89,204,2,0,141,131,193,40,5,0,137,4,36,232,106,207,2,0,137,194,141,131,84,200,5,0,139,0,137,84,36,4,137,4,36,232, 118,204,2,0,141,131,84,200,5,0,139,16,141,131,96,225,255,255,137,68,36,4,137,20,36,232,160,205,2,0,141,131,84,200,5,0,139,16,141,131,139,230,255,255,137,68,36,4,137,20,36,232,165,205,2,0,131,196,60,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0, 0,91,141,131,213,151,5,0,139,0,139,0,137,4,36,232,47,4,3,0,137,69,244,232,170,146,254,255,137,194,139,69,244,137,80,28,139,85,244,139,69,244,139,64,28,199,68,36,8,0,0,0,0,137,84,36,4,137,4,36,232,218,103,255,255,137,194,139,69,244,137,80,32,139,69,244, 199,64,36,0,0,0,0,139,69,244,199,64,40,0,0,0,0,139,69,244,199,68,36,4,0,0,0,0,137,4,36,232,161,246,2,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,64,12,137,4,36,232,39,247,2,0,201,195,85,137,229,131,236,24,139,69,8,139,80,12, 139,69,12,137,68,36,4,137,20,36,232,134,247,2,0,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,0,248,2,0,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,102,248,2,0,201,195,85, 137,229,131,236,24,139,69,8,139,80,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,190,248,2,0,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137, 20,36,232,36,249,2,0,201,195,85,137,229,131,236,24,139,69,8,139,80,32,139,69,8,139,64,28,137,84,36,4,137,4,36,232,134,103,255,255,139,69,8,131,192,64,137,4,36,232,3,102,253,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,16,141,131,96, 150,5,0,139,0,139,0,57,194,116,14,141,131,245,48,5,0,137,4,36,232,82,204,3,0,139,69,8,139,64,32,131,196,20,91,201,195,85,137,229,131,236,8,139,69,8,139,64,40,133,192,15,149,192,15,182,192,201,195,85,137,229,131,236,24,139,69,8,131,192,4,139,0,137,69, 244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,244,139,64,52,137,69,232,235,18,139,69,232,139,16,139,69,240,137,16,131,69,240,4,131,69,232,4,255,77,236,131,125,236,255,117,229,139,69,244,139,64,44,59,69,232,117,9, 139,69,244,139,64,40,137,69,232,139,85,244,139,69,232,137,66,52,139,69,8,131,192,16,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,64,40,133,192,116,104,139,69,12,139,0,137,69,244,139,69,8,139,64,60,133,192,116,25,139,69,8,139,80,60,139, 69,12,139,0,137,84,36,4,137,4,36,232,155,232,253,255,235,61,139,69,244,139,80,32,139,69,244,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,130,255,255,255,137,4,36,232,159,226,253,255,139,69,8,139,80,40,139,69,8,137, 80,52,131,196,52,91,201,195,85,137,229,131,236,40,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,244,139,64,48,137,69,232,139,69,244,139,64,44,59,69,232,117,112,139,69,244,139,64,40, 137,69,228,139,69,244,139,80,40,139,69,244,139,64,56,193,224,2,141,4,2,137,69,224,139,69,244,139,80,36,139,69,244,139,64,56,137,209,41,193,137,200,137,69,220,139,69,244,139,64,56,193,224,2,41,69,232,235,18,139,69,224,139,16,139,69,228,137,16,131,69,228, 4,131,69,224,4,255,77,220,131,125,220,255,117,229,235,18,139,69,240,139,16,139,69,232,137,16,131,69,232,4,131,69,240,4,255,77,236,131,125,236,255,117,229,139,85,244,139,69,232,137,66,48,139,69,8,131,192,16,201,195,85,137,229,86,83,131,236,64,232,0,0, 0,0,91,139,69,8,139,64,40,133,192,15,132,201,2,0,0,139,85,8,139,69,36,137,66,68,139,85,8,139,69,40,137,66,72,131,125,44,0,15,132,145,2,0,0,139,69,8,139,64,40,133,192,15,132,159,2,0,0,139,69,24,72,139,85,28,74,33,208,137,69,224,131,125,12,0,116,56,139, 69,8,139,64,32,137,4,36,232,144,255,2,0,193,224,2,3,69,12,139,0,137,69,244,139,69,244,139,64,32,137,69,236,139,69,236,137,194,15,175,85,40,137,208,193,250,31,247,125,36,137,69,220,235,21,199,69,244,0,0,0,0,199,69,236,1,0,0,0,199,69,220,1,0,0,0,139,69, 220,137,69,232,139,69,232,59,69,16,125,6,139,69,16,137,69,232,139,69,8,139,64,36,137,69,228,139,69,228,59,69,232,15,132,161,0,0,0,139,69,8,139,64,40,137,69,216,139,69,228,193,224,2,137,68,36,4,139,69,216,137,4,36,232,28,230,2,0,139,69,232,193,224,2,137, 4,36,232,40,228,2,0,137,69,216,184,255,255,255,255,131,248,255,116,40,186,255,255,255,255,139,69,232,193,224,2,137,84,36,12,137,68,36,8,199,68,36,4,0,0,0,0,139,69,216,137,4,36,232,114,139,5,0,235,29,139,69,232,193,224,2,137,68,36,8,199,68,36,4,0,0,0, 0,139,69,216,137,4,36,232,159,1,0,0,139,85,8,139,69,232,137,66,36,139,69,232,193,224,2,137,194,3,85,216,139,69,8,137,80,44,139,85,8,139,69,216,137,66,40,131,125,12,0,15,132,230,0,0,0,139,69,28,137,194,15,175,85,220,139,69,8,137,80,56,139,69,8,139,72, 44,139,69,8,139,80,56,139,69,224,15,175,69,220,137,214,41,198,137,240,193,224,2,137,202,41,194,139,69,8,137,80,48,139,69,40,15,175,69,36,131,248,1,117,48,139,69,244,139,80,4,139,69,220,137,68,36,16,137,84,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0, 0,141,131,46,255,255,255,137,4,36,232,223,223,253,255,235,94,139,69,8,139,80,64,139,69,244,139,72,4,139,117,8,131,198,64,137,84,36,16,139,69,220,137,68,36,12,139,69,236,137,68,36,8,137,76,36,4,137,52,36,232,134,100,253,255,139,69,8,139,80,76,139,69,220, 137,68,36,16,137,84,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,46,255,255,255,137,4,36,232,127,223,253,255,139,69,244,139,64,12,133,192,117,106,139,69,244,137,4,36,232,81,226,253,255,235,93,184,255,255,255,255,131,248,255,116,47,186,255,255, 255,255,139,69,232,141,12,133,0,0,0,0,139,69,8,139,64,40,137,84,36,12,137,76,36,8,199,68,36,4,0,0,0,0,137,4,36,232,9,138,5,0,235,36,139,69,232,141,20,133,0,0,0,0,139,69,8,139,64,40,137,84,36,8,199,68,36,4,0,0,0,0,137,4,36,232,47,0,0,0,139,69,8,199,64, 60,0,0,0,0,235,28,139,69,8,139,64,32,137,4,36,232,32,253,2,0,193,224,2,3,69,12,139,16,139,69,8,137,80,60,131,196,64,91,94,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232, 140,137,5,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,62,145,5,0,139,0,139,0,137,4,36,232,152,253,2,0,137,69,244,232,19,140,254,255,137,194,139,69,244,137,80,28,139,77,244,139,69,244,139,80,28,141,131,190,144,5,0,139,0,137,68,36,8,137,76, 36,4,137,20,36,232,63,97,255,255,137,194,139,69,244,137,80,32,199,4,36,0,0,0,0,232,169,225,2,0,137,194,139,69,244,137,80,40,139,69,244,139,80,40,139,69,244,137,80,44,139,69,244,199,64,36,0,0,0,0,139,69,244,199,64,60,0,0,0,0,139,85,244,141,131,190,144, 5,0,139,0,137,68,36,4,137,20,36,232,226,239,2,0,139,69,244,131,192,64,137,4,36,232,195,95,253,255,141,131,224,43,5,0,137,4,36,232,194,199,2,0,59,69,8,117,12,139,69,244,199,64,64,1,0,0,0,235,41,141,131,199,43,5,0,137,4,36,232,163,199,2,0,59,69,8,117,12, 139,69,244,199,64,64,2,0,0,0,235,10,139,69,244,199,64,64,0,0,0,0,139,69,244,131,196,36,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,160,249,255,255,141,187,89,248,255,255,141,131,86,88,5,0,137,4,36,232,86,199,2,0,199,68,36,24,0,0, 0,0,199,68,36,20,7,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,100,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,10,188,2,0,137,194,141,131,58,144,5,0,139,0,137,16,141,131,92,88,5,0,137,4,36,232,12,199,2,0,141,147,240,254,255,255,199,68,36,12,0,0,0,0,199, 68,36,8,7,0,0,0,137,68,36,4,137,20,36,232,246,190,2,0,141,147,221,248,255,255,141,131,58,144,5,0,139,0,139,0,137,84,36,4,137,4,36,232,73,195,2,0,141,147,243,248,255,255,141,131,58,144,5,0,139,0,139,0,137,84,36,4,137,4,36,232,62,195,2,0,141,147,16,249, 255,255,141,131,58,144,5,0,139,0,139,0,137,84,36,4,137,4,36,232,51,195,2,0,141,147,45,249,255,255,141,131,58,144,5,0,139,0,139,0,137,84,36,4,137,4,36,232,40,195,2,0,141,147,74,249,255,255,141,131,58,144,5,0,139,0,139,0,137,84,36,4,137,4,36,232,29,195, 2,0,141,147,117,249,255,255,141,131,58,144,5,0,139,0,139,0,137,84,36,4,137,4,36,232,18,195,2,0,141,131,106,1,5,0,137,4,36,232,52,198,2,0,137,194,141,139,144,250,255,255,141,131,58,144,5,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4, 36,232,245,190,2,0,141,131,162,68,5,0,137,4,36,232,252,197,2,0,137,194,141,131,58,144,5,0,139,0,139,0,137,84,36,4,137,4,36,232,6,195,2,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,161,142,5,0,139,0,139,0,137,4,36,232, 243,250,2,0,137,69,244,232,110,137,254,255,137,194,139,69,244,137,80,28,139,85,244,139,69,244,139,64,28,199,68,36,8,0,0,0,0,137,84,36,4,137,4,36,232,4,98,255,255,137,194,139,69,244,137,80,32,139,69,244,139,85,244,199,68,36,12,0,0,0,0,199,68,36,8,0,0, 0,0,137,68,36,4,137,20,36,232,248,224,2,0,139,69,244,199,64,36,0,0,0,0,139,69,244,199,64,40,0,0,0,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,64,32,137,4,36,232,220,237,2,0,201,195,85,137,229,131,236,24,139,69,8,139,80,32,139, 69,12,137,68,36,4,137,20,36,232,59,238,2,0,201,195,85,137,229,131,236,24,139,69,8,139,80,32,139,69,12,137,68,36,4,137,20,36,232,181,238,2,0,201,195,85,137,229,131,236,24,139,69,8,139,80,32,139,69,12,137,68,36,4,137,20,36,232,27,239,2,0,201,195,85,137, 229,131,236,24,139,69,8,139,80,32,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,115,239,2,0,201,195,85,137,229,131,236,24,139,69,8,139,80,32,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20, 36,232,217,239,2,0,201,195,85,137,229,131,236,24,139,69,8,139,80,32,139,69,8,139,64,28,137,84,36,4,137,4,36,232,146,97,255,255,139,69,8,131,192,68,137,4,36,232,184,92,253,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,16,141,131,29, 141,5,0,139,0,139,0,57,194,116,14,141,131,188,39,5,0,137,4,36,232,7,195,3,0,139,69,8,139,64,32,131,196,20,91,201,195,85,137,229,131,236,8,139,69,8,139,64,40,133,192,15,149,192,15,182,192,201,195,85,137,229,131,236,40,139,69,8,131,192,4,139,0,137,69,244, 139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,244,139,64,52,137,69,232,139,69,232,137,69,228,235,50,139,85,232,243,15,16,10,139,69,240,243,15,16,0,243,15,88,193,243,15,17,2,131,69,232,4,131,69,240,4,139,69,244,139,64, 44,59,69,232,117,9,139,69,244,139,64,40,137,69,232,255,77,236,131,125,236,255,117,197,139,69,244,139,64,56,193,224,2,1,69,228,139,69,244,139,64,44,59,69,228,119,9,139,69,244,139,64,40,137,69,228,139,85,244,139,69,228,137,66,52,139,69,8,131,192,16,201, 195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,8,131,192,12,139,0,137,69,236,139,69,244,139,64,48,137,69,232,139,69,244,139,80,72,139,69,244,139,64,76,57,194,116,42,139,69,244,139, 64,80,137,69,240,235,31,139,69,232,139,16,139,69,240,137,16,131,69,240,4,139,85,232,141,129,122,126,5,0,139,0,137,2,131,69,232,4,255,77,236,131,125,236,255,117,216,139,69,244,139,64,44,59,69,232,117,9,139,69,244,139,64,40,137,69,232,139,85,244,139,69, 232,137,66,48,139,69,8,131,192,16,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,131,192,4,139,0,137,69,244,139,69,8,131,192,8,139,0,137,69,240,139,69,244,139,64,48,137,69,236,139,69,244,139,64,80,137,69,232,235,31,139,69,236,139,16,139,69,232, 137,16,131,69,232,4,139,85,236,141,129,220,125,5,0,139,0,137,2,131,69,236,4,255,77,240,131,125,240,255,117,216,139,69,244,139,64,44,59,69,236,117,9,139,69,244,139,64,40,137,69,236,139,85,244,139,69,236,137,66,48,139,69,8,131,192,12,201,195,85,137,229, 83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,40,133,192,116,122,139,85,8,139,69,36,137,66,72,139,85,8,139,69,40,137,66,76,131,125,48,0,116,15,131,125,44,0,117,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,15,182,85,244,139,69,8,136,80,64,131,125,44,0, 116,12,139,69,8,199,64,60,0,0,0,0,235,48,131,125,12,0,117,14,141,131,181,37,5,0,137,4,36,232,171,192,3,0,139,69,8,139,64,32,137,4,36,232,158,246,2,0,193,224,2,3,69,12,139,16,139,69,8,137,80,60,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0, 0,91,139,69,8,139,64,40,133,192,15,132,140,0,0,0,139,69,12,139,0,137,69,244,139,69,8,15,182,64,64,132,192,116,38,139,69,244,139,8,139,69,8,139,64,60,139,80,4,139,69,244,139,64,4,137,76,36,8,137,84,36,4,137,4,36,232,108,138,252,255,235,83,139,69,8,139, 64,60,133,192,116,25,139,69,12,139,16,139,69,8,139,64,60,137,84,36,4,137,4,36,232,49,221,253,255,235,48,139,69,244,139,16,139,69,244,139,64,4,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,3,0,0,0,141,131,152,253,255,255,137,4,36,232,54,215, 253,255,131,196,52,91,201,195,85,137,229,86,83,131,236,80,232,0,0,0,0,91,139,69,8,139,64,40,133,192,15,132,232,2,0,0,139,85,8,139,69,36,137,66,72,139,85,8,139,69,40,137,66,76,131,125,44,0,15,132,144,2,0,0,131,125,12,0,116,56,139,69,8,139,64,32,137,4, 36,232,145,245,2,0,193,224,2,3,69,12,139,0,137,69,240,139,69,240,139,64,32,137,69,236,139,69,236,137,194,15,175,85,40,137,208,193,250,31,247,125,36,137,69,224,235,21,199,69,240,0,0,0,0,199,69,236,1,0,0,0,199,69,224,1,0,0,0,139,85,16,137,208,193,250,31, 247,125,224,137,69,220,131,125,220,0,117,7,199,69,220,1,0,0,0,139,69,220,72,35,69,24,137,69,216,139,69,28,3,69,24,141,80,255,139,69,220,72,33,194,139,69,28,247,216,33,208,137,69,212,139,69,224,137,69,232,139,69,232,59,69,16,125,6,139,69,16,137,69,232, 139,69,8,139,64,36,137,69,228,139,69,228,59,69,232,15,132,161,0,0,0,139,69,8,139,64,40,137,69,208,139,69,228,193,224,2,137,68,36,4,139,69,208,137,4,36,232,97,219,2,0,139,69,232,193,224,2,137,4,36,232,109,217,2,0,137,69,208,184,255,255,255,255,131,248, 255,116,40,186,255,255,255,255,139,69,232,193,224,2,137,84,36,12,137,68,36,8,199,68,36,4,0,0,0,0,139,69,208,137,4,36,232,183,128,5,0,235,29,139,69,232,193,224,2,137,68,36,8,199,68,36,4,0,0,0,0,139,69,208,137,4,36,232,228,246,255,255,139,85,8,139,69,232, 137,66,36,139,69,232,193,224,2,137,194,3,85,208,139,69,8,137,80,44,139,85,8,139,69,208,137,66,40,139,69,224,15,175,69,28,59,69,232,126,14,141,131,130,36,5,0,137,4,36,232,47,190,3,0,139,69,8,139,80,40,139,69,224,15,175,69,212,193,224,2,1,194,139,69,8, 137,80,52,139,69,8,139,80,52,139,69,8,139,64,44,57,194,117,12,139,69,8,139,80,40,139,69,8,137,80,52,131,125,28,1,117,27,131,125,32,1,126,21,139,85,224,137,208,193,250,31,247,125,32,137,194,139,69,8,137,80,56,235,15,139,69,28,137,194,15,175,85,224,139, 69,8,137,80,56,131,125,12,0,15,132,233,0,0,0,139,69,8,139,80,40,139,69,224,15,175,69,216,193,224,2,1,194,139,69,8,137,80,48,139,69,40,15,175,69,36,131,248,1,117,51,139,69,240,139,80,4,139,69,224,137,68,36,16,137,84,36,12,139,69,8,137,68,36,8,199,68,36, 4,3,0,0,0,141,131,142,253,255,255,137,4,36,232,195,212,253,255,233,146,0,0,0,139,69,224,137,68,36,12,139,69,8,137,68,36,8,199,68,36,4,2,0,0,0,141,131,44,254,255,255,137,4,36,232,154,212,253,255,139,69,8,139,80,68,139,69,240,139,72,4,139,117,8,131,198, 68,137,84,36,16,139,69,236,137,68,36,12,139,69,224,137,68,36,8,137,76,36,4,137,52,36,232,13,90,253,255,235,60,131,125,48,0,116,54,131,125,12,0,116,48,139,69,8,139,64,32,137,4,36,232,251,242,2,0,193,224,2,3,69,12,139,0,137,69,204,139,69,204,139,16,139, 69,204,139,64,4,137,84,36,4,137,4,36,232,178,205,253,255,131,196,80,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,185,134,5,0,139,0,139,0,137,4,36,232,11,243,2,0,137,69,244,232,134,129,254,255,137,194,139,69,244,137,80,28,139,77,244,139, 69,244,139,80,28,141,131,49,134,5,0,139,0,137,68,36,8,137,76,36,4,137,20,36,232,24,90,255,255,137,194,139,69,244,137,80,32,139,85,244,139,77,244,141,131,49,134,5,0,139,0,137,68,36,12,141,131,49,134,5,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,4,217, 2,0,199,4,36,0,0,0,0,232,242,214,2,0,137,194,139,69,244,137,80,40,139,69,244,139,80,40,139,69,244,137,80,44,139,69,244,199,64,36,0,0,0,0,139,69,244,131,192,68,137,4,36,232,45,85,253,255,141,131,83,33,5,0,137,4,36,232,44,189,2,0,59,69,8,117,12,139,69, 244,199,64,68,1,0,0,0,235,72,141,131,58,33,5,0,137,4,36,232,13,189,2,0,59,69,8,117,12,139,69,244,199,64,68,2,0,0,0,235,41,141,131,138,33,5,0,137,4,36,232,238,188,2,0,59,69,8,117,12,139,69,244,199,64,68,2,0,0,0,235,10,139,69,244,199,64,68,0,0,0,0,139, 69,244,131,196,36,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,54,248,255,255,141,187,224,246,255,255,141,131,101,32,5,0,137,4,36,232,161,188,2,0,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,104,0,0, 0,137,116,36,8,137,124,36,4,137,4,36,232,85,177,2,0,137,194,141,131,141,133,5,0,139,0,137,16,141,131,177,77,5,0,137,4,36,232,87,188,2,0,141,147,200,254,255,255,199,68,36,12,0,0,0,0,199,68,36,8,7,0,0,0,137,68,36,4,137,20,36,232,65,180,2,0,141,147,115, 247,255,255,141,131,141,133,5,0,139,0,139,0,137,84,36,4,137,4,36,232,148,184,2,0,141,147,137,247,255,255,141,131,141,133,5,0,139,0,139,0,137,84,36,4,137,4,36,232,137,184,2,0,141,147,166,247,255,255,141,131,141,133,5,0,139,0,139,0,137,84,36,4,137,4,36, 232,126,184,2,0,141,147,195,247,255,255,141,131,141,133,5,0,139,0,139,0,137,84,36,4,137,4,36,232,115,184,2,0,141,147,224,247,255,255,141,131,141,133,5,0,139,0,139,0,137,84,36,4,137,4,36,232,104,184,2,0,141,147,11,248,255,255,141,131,141,133,5,0,139,0, 139,0,137,84,36,4,137,4,36,232,93,184,2,0,141,131,181,246,4,0,137,4,36,232,127,187,2,0,137,194,141,139,16,251,255,255,141,131,141,133,5,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,64,180,2,0,141,131,237,57,5,0,137,4,36,232, 71,187,2,0,137,194,141,131,141,133,5,0,139,0,139,0,137,84,36,4,137,4,36,232,81,184,2,0,131,196,44,91,94,95,201,195,85,137,229,131,236,8,232,157,243,255,255,232,77,254,255,255,201,195,85,137,229,87,86,83,131,236,92,232,0,0,0,0,91,139,85,8,139,69,12,137, 68,36,4,137,20,36,232,45,100,255,255,137,69,228,139,85,8,139,69,12,137,68,36,4,137,20,36,232,29,101,255,255,137,69,224,139,69,12,137,4,36,232,62,80,255,255,137,69,220,139,69,8,139,184,44,4,0,0,139,69,8,139,144,44,4,0,0,139,69,8,139,128,112,4,0,0,137, 193,3,77,224,139,69,8,139,128,108,4,0,0,137,198,3,117,228,139,69,8,137,68,36,32,137,124,36,28,137,84,36,24,137,76,36,20,137,116,36,16,139,69,224,137,68,36,12,139,69,228,137,68,36,8,139,69,220,137,68,36,4,141,131,184,30,5,0,137,4,36,232,128,80,3,0,139, 69,8,139,136,44,4,0,0,139,69,8,139,64,36,137,198,3,117,224,139,69,8,139,64,40,137,194,3,85,228,139,69,8,137,68,36,28,137,76,36,24,137,116,36,20,137,84,36,16,139,69,224,137,68,36,12,139,69,228,137,68,36,8,139,69,220,137,68,36,4,141,131,12,31,5,0,137,4, 36,232,43,80,3,0,139,69,8,139,128,48,4,0,0,137,69,200,139,69,8,139,128,32,4,0,0,137,69,204,139,69,8,131,192,52,137,69,208,139,69,8,139,128,60,4,0,0,139,16,141,131,80,31,5,0,137,68,36,4,137,20,36,232,22,125,5,0,133,192,116,16,139,69,8,139,128,60,4,0,0, 139,0,137,69,212,235,9,141,131,116,0,5,0,137,69,212,139,69,8,139,64,48,137,194,3,85,224,139,69,8,139,64,44,137,193,3,77,228,139,69,8,137,68,36,36,139,69,200,137,68,36,32,141,131,224,131,5,0,139,0,137,68,36,28,139,69,204,137,68,36,24,139,69,208,137,68, 36,20,139,69,212,137,68,36,16,137,84,36,12,137,76,36,8,139,69,220,137,68,36,4,141,131,176,6,5,0,137,4,36,232,110,79,3,0,131,196,92,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20,36,232,102,98,255,255,137, 69,244,139,85,8,139,69,12,137,68,36,4,137,20,36,232,86,99,255,255,137,69,240,139,69,12,137,4,36,232,119,78,255,255,137,69,236,139,69,8,139,128,112,4,0,0,137,194,3,85,240,139,69,8,139,128,108,4,0,0,3,69,244,137,84,36,24,137,68,36,20,139,69,240,137,68, 36,16,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,145,29,5,0,137,4,36,232,213,78,3,0,139,69,8,139,64,36,137,194,3,85,240,139,69,8,139,64,40,3,69,244,137,84,36,24,137,68,36,20,139,69,240,137,68,36,16,139,69,244,137,68,36, 12,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,241,5,5,0,137,4,36,232,143,78,3,0,139,69,8,139,64,48,137,194,3,85,240,139,69,8,139,64,44,3,69,244,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,9,255,4,0,137,4,36, 232,87,78,3,0,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,140,77,255,255,137,69,244,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,112,5,5,0,137,4,36,232,26,78,3,0,139,69,8,137,68,36,8,139,69,244,137,68,36, 4,141,131,163,28,5,0,137,4,36,232,254,77,3,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,204,25,5,0,137,4,36,232,226,77,3,0,131,196,36,91,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,139,69,12,137,4,36,232,22,77,255,255,137,69,244,139,69, 8,139,144,44,4,0,0,139,69,8,139,128,44,4,0,0,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,70,28,5,0,137,4,36,232,138,77,3,0,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,8,139,128,44,4,0,0,137,69,224,235, 7,199,69,224,255,0,0,0,139,69,224,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,46,6,5,0,137,4,36,232,64,77,3,0,139,69,8,139,128,60,4,0,0,139,16,141,131,254,27,5,0,137,68,36,4,137,20,36,232,76,122,5,0,133,192,116,16,139,69,8,139,128, 60,4,0,0,139,0,137,69,228,235,9,141,131,34,253,4,0,137,69,228,139,69,8,139,144,48,4,0,0,139,69,8,139,136,32,4,0,0,139,117,8,131,198,52,139,69,228,137,68,36,28,137,84,36,24,141,131,142,128,5,0,139,0,137,68,36,20,137,76,36,16,137,116,36,12,139,69,8,137, 68,36,8,139,69,244,137,68,36,4,141,131,70,5,5,0,137,4,36,232,179,76,3,0,131,196,64,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,231,75,255,255,137,69,244,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,116,38,199,68,36,12, 255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,255,4,5,0,137,4,36,232,91,76,3,0,235,41,139,69,8,139,128,44,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,255,4,5,0,137,4,36,232,48,76,3,0,131,196,36,91,201,195,85, 137,229,131,236,24,131,125,16,1,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,166,252,255,255,235,102,131,125,16,2,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,195,250,255,255,235,76,131,125,16,3,117,20,139,69,12,137,68,36,4,139,69,8,137,4, 36,232,44,255,255,255,235,50,131,125,16,4,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,109,253,255,255,235,24,131,125,16,5,117,18,139,69,12,137,68,36,4,139,69,8,137,4,36,232,200,253,255,255,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139, 85,244,139,69,12,137,68,36,4,137,20,36,232,163,94,255,255,137,194,139,69,16,137,16,139,85,244,139,69,12,137,68,36,4,137,20,36,232,143,95,255,255,137,194,139,69,20,137,16,139,69,16,139,16,139,69,244,139,64,40,1,194,139,69,24,137,16,139,69,20,139,16,139, 69,244,139,64,36,1,194,139,69,28,137,16,201,195,85,137,229,87,86,83,129,236,188,0,0,0,232,0,0,0,0,91,139,69,8,137,69,228,139,85,228,141,69,216,137,68,36,8,141,69,204,137,68,36,4,137,20,36,232,131,254,253,255,139,69,228,5,36,4,0,0,137,4,36,232,239,7,254, 255,137,198,139,125,224,139,69,216,137,69,140,139,69,228,139,128,32,4,0,0,137,69,144,139,69,228,5,28,4,0,0,137,4,36,232,207,8,254,255,137,69,148,139,69,228,139,64,48,137,69,152,139,69,228,139,64,44,137,69,156,139,85,212,137,85,160,139,69,208,137,69,164, 139,85,204,137,85,168,139,69,228,139,128,112,4,0,0,137,69,172,139,69,228,139,128,108,4,0,0,137,69,176,139,69,228,139,64,40,137,69,180,141,131,164,45,5,0,137,4,36,232,102,180,2,0,137,69,184,139,69,228,15,183,64,22,152,137,69,188,139,69,228,15,183,64,20, 152,137,69,192,141,131,84,20,5,0,137,4,36,232,63,180,2,0,137,69,196,141,131,216,5,5,0,137,4,36,232,46,180,2,0,137,116,36,76,137,124,36,72,139,85,140,137,84,36,68,139,85,144,137,84,36,64,139,85,148,137,84,36,60,139,85,152,137,84,36,56,139,85,156,137,84, 36,52,139,85,160,137,84,36,48,139,85,164,137,84,36,44,139,85,168,137,84,36,40,139,85,172,137,84,36,36,139,85,176,137,84,36,32,139,85,180,137,84,36,28,139,85,184,137,84,36,24,139,85,188,137,84,36,20,139,85,192,137,84,36,16,139,85,196,137,84,36,12,137, 68,36,8,141,131,224,25,5,0,137,68,36,4,139,69,12,137,4,36,232,71,73,2,0,141,131,48,4,5,0,137,68,36,4,139,69,12,137,4,36,232,50,73,2,0,129,196,188,0,0,0,91,94,95,201,195,85,137,229,87,86,83,129,236,220,3,0,0,232,0,0,0,0,91,139,69,8,137,133,164,252,255, 255,139,69,12,137,133,160,252,255,255,141,131,56,124,5,0,139,0,139,16,137,85,228,49,210,139,133,164,252,255,255,137,133,192,252,255,255,139,149,192,252,255,255,141,133,180,252,255,255,137,68,36,4,137,20,36,232,25,253,253,255,139,133,192,252,255,255,139, 128,48,4,0,0,137,194,129,226,255,255,255,0,139,133,192,252,255,255,139,128,44,4,0,0,137,193,129,225,255,255,255,0,139,133,192,252,255,255,139,176,32,4,0,0,139,133,192,252,255,255,139,128,28,4,0,0,131,224,63,15,182,248,139,133,192,252,255,255,139,64,48, 137,133,132,252,255,255,139,133,192,252,255,255,139,64,44,137,133,136,252,255,255,139,133,188,252,255,255,139,0,137,133,140,252,255,255,139,133,184,252,255,255,139,0,137,133,144,252,255,255,139,133,180,252,255,255,139,0,137,133,148,252,255,255,139,133, 192,252,255,255,139,128,112,4,0,0,137,133,152,252,255,255,139,133,192,252,255,255,139,128,108,4,0,0,137,133,156,252,255,255,139,133,192,252,255,255,139,64,40,137,84,36,88,199,68,36,84,255,255,255,255,137,76,36,80,137,116,36,76,137,124,36,72,139,149,132, 252,255,255,137,84,36,68,139,149,136,252,255,255,137,84,36,64,139,149,140,252,255,255,137,84,36,60,139,149,144,252,255,255,137,84,36,56,139,149,148,252,255,255,137,84,36,52,199,68,36,48,255,255,255,255,199,68,36,44,255,255,255,255,199,68,36,40,255,255, 255,255,199,68,36,36,255,255,255,255,199,68,36,32,0,0,0,0,139,149,152,252,255,255,137,84,36,28,139,149,156,252,255,255,137,84,36,24,199,68,36,20,1,0,0,0,137,68,36,16,141,131,84,24,5,0,137,68,36,12,199,68,36,8,32,3,0,0,199,68,36,4,0,0,0,0,141,133,196, 252,255,255,137,4,36,232,205,114,5,0,139,149,192,252,255,255,141,133,196,252,255,255,137,68,36,8,139,133,192,252,255,255,137,68,36,4,137,20,36,232,0,44,4,0,141,131,56,124,5,0,139,0,139,85,228,51,16,116,5,232,157,114,5,0,129,196,220,3,0,0,91,94,95,201, 195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,15,132,141,0,0,0,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,125,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36,232,104,90,255,255,243,15,42,192,139,69,8, 243,15,17,128,88,4,0,0,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36,232,73,91,255,255,243,15,42,192,139,69,8,243,15,17,128,96,4,0,0,139,85,8,129,194,84,4,0,0,139,69,8,139,128,52,4,0,0,139,72,4,137,84,36,12,199,68,36,8,2,0,0,0,141,131,0,123,5,0,139, 0,137,68,36,4,137,12,36,232,151,238,2,0,131,196,20,91,201,195,85,137,229,131,236,56,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,46,51,2,0,137,69,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,17,51,2,0,137,69, 240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,244,50,2,0,137,69,236,139,85,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,69,220,137,68,36,4,137,20,36,232,133,250,253,255,137,69,232,139,85,8,139,130,36,4,0,0,131,224,254,137, 130,36,4,0,0,131,125,244,0,127,7,199,69,244,1,0,0,0,139,85,8,139,69,244,137,66,40,139,69,8,139,80,40,139,69,8,137,80,36,131,125,240,0,127,7,199,69,240,1,0,0,0,139,85,8,139,69,240,137,130,108,4,0,0,131,125,236,0,127,7,199,69,236,1,0,0,0,139,85,8,139,69, 236,137,130,112,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,5,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,131,236,40,139,69, 20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,6,50,2,0,137,69,244,131,125,244,0,127,7,199,69,244,1,0,0,0,139,85,8,139,69,244,137,66,40,139,85,8,139,69,244,137,66,36,139,69,8,137,68,36,4,139,69,8,137,4,36,232,21,245,253,255,201,195,85,137, 229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,53,245,253,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137, 84,36,4,139,69,8,137,4,36,232,184,245,253,255,201,195,85,137,229,131,236,40,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,82,49,2,0,137,69,244,131,125,244,0,127,7,199,69,244,1,0,0,0,139,85,8,139,69,244,137,130,108,4,0,0,131,125,16, 1,126,42,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,22,49,2,0,137,69,244,131,125,244,0,127,7,199,69,244,1,0,0,0,139,85,8,139,69,244,137,130,112,4,0,0,139,69,8,139,64,28,137,4,36,232,129,144,254,255,133,192,116,32,139,69,8,139,80, 32,139,69,8,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,114,245,253,255,201,195,85,137, 229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,88,237,253,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,50,238,253,255,201,195,85,137,229,131,236,24,139,69,8,139,85, 12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,179,239,253,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,111,240,253,255,201,195,85,137,229,131,236,40, 139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,30,241,253,255,201,195,85,137,229,83,129,236,244,0,0,0,232,0,0,0,0,91,139,69,8,137,133,36,255,255,255,139,69,16,137,133,32,255,255,255,141, 131,255,117,5,0,139,0,139,16,137,85,244,49,210,141,131,35,160,5,0,139,0,137,4,36,232,62,226,2,0,137,133,96,255,255,255,199,133,52,255,255,255,199,113,252,255,199,133,56,255,255,255,255,255,255,255,199,133,60,255,255,255,239,251,254,255,199,133,92,255, 255,255,15,0,0,0,199,133,88,255,255,255,100,0,0,0,199,133,84,255,255,255,60,0,0,0,199,133,80,255,255,255,20,0,0,0,199,133,76,255,255,255,12,0,0,0,199,133,72,255,255,255,2,0,0,0,199,133,68,255,255,255,0,0,0,0,199,133,64,255,255,255,14,0,0,0,139,133,96, 255,255,255,5,36,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,156,254,253,255,139,133,96,255,255,255,5,28,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,152,255,253,255,131,125,12,9,15,142,164,0,0,0,131,125,12,13,15,143,154,0,0,0,139,133,32,255,255,255,139,0,131,248, 1,15,133,137,0,0,0,139,133,32,255,255,255,131,192,8,139,0,131,248,1,117,121,139,133,32,255,255,255,131,192,16,139,0,131,248,1,117,105,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,137,46,2,0,137,133,92,255,255,255,139, 133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,1,0,0,0,232,102,46,2,0,137,133,88,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,2,0,0,0,232,67,46,2,0,137,133,84,255,255,255,131,125,12,11,126,108,139,133,32, 255,255,255,131,192,24,139,0,131,248,2,116,16,139,133,32,255,255,255,131,192,24,139,0,131,248,1,117,76,139,133,32,255,255,255,131,192,32,139,0,131,248,2,116,16,139,133,32,255,255,255,131,192,32,139,0,131,248,1,117,44,199,133,68,255,255,255,2,0,0,0,139, 149,96,255,255,255,139,133,32,255,255,255,137,68,36,8,199,68,36,4,3,0,0,0,137,20,36,232,227,227,253,255,235,112,131,125,12,11,117,76,139,133,32,255,255,255,131,192,24,139,0,131,248,2,116,16,139,133,32,255,255,255,131,192,24,139,0,131,248,1,117,44,199, 133,68,255,255,255,1,0,0,0,139,149,96,255,255,255,139,133,32,255,255,255,137,68,36,8,199,68,36,4,3,0,0,0,137,20,36,232,145,227,253,255,235,30,139,133,96,255,255,255,199,68,36,8,0,0,0,0,199,68,36,4,3,0,0,0,137,4,36,232,113,227,253,255,131,125,12,9,15, 142,42,2,0,0,131,125,12,13,15,143,32,2,0,0,139,133,68,255,255,255,193,224,3,3,133,32,255,255,255,131,192,24,139,0,131,248,2,116,29,139,133,68,255,255,255,193,224,3,3,133,32,255,255,255,131,192,24,139,0,131,248,1,15,133,234,1,0,0,139,133,68,255,255,255, 193,224,3,3,133,32,255,255,255,131,192,32,139,0,131,248,1,15,133,205,1,0,0,139,133,68,255,255,255,193,224,3,3,133,32,255,255,255,131,192,40,139,0,131,248,1,15,133,176,1,0,0,139,133,68,255,255,255,193,224,3,3,133,32,255,255,255,131,192,48,139,0,131,248, 1,15,133,147,1,0,0,139,133,68,255,255,255,193,224,3,3,133,32,255,255,255,131,192,56,139,0,131,248,1,15,133,118,1,0,0,139,133,68,255,255,255,193,224,3,3,133,32,255,255,255,131,192,64,139,0,131,248,1,15,133,89,1,0,0,139,133,68,255,255,255,193,224,3,3,133, 32,255,255,255,131,192,72,139,0,131,248,1,15,133,60,1,0,0,139,149,68,255,255,255,131,194,3,139,141,96,255,255,255,139,133,32,255,255,255,137,68,36,8,137,84,36,4,137,12,36,232,102,225,253,255,139,149,68,255,255,255,131,194,4,139,133,96,255,255,255,137, 144,80,4,0,0,139,149,68,255,255,255,131,194,4,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,7,44,2,0,137,133,80,255,255,255,139,149,68,255,255,255,131,194,5,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232, 223,43,2,0,137,133,76,255,255,255,139,149,68,255,255,255,131,194,6,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,183,43,2,0,139,149,96,255,255,255,129,194,28,4,0,0,137,68,36,4,137,20,36,232,76,252,253,255,139,149,68,255,255,255, 131,194,7,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,125,43,2,0,137,133,64,255,255,255,139,149,68,255,255,255,131,194,8,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,85,43,2,0,137,133,52,255,255,255, 139,149,68,255,255,255,131,194,9,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,45,43,2,0,137,133,60,255,255,255,131,125,12,13,117,83,139,133,68,255,255,255,193,224,3,3,133,32,255,255,255,131,192,80,139,0,131,248,1,117,58,139, 149,68,255,255,255,131,194,10,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,230,42,2,0,139,149,96,255,255,255,129,194,36,4,0,0,137,68,36,4,137,20,36,232,100,250,253,255,141,147,42,247,255,255,139,133,96,255,255,255,137,80,32, 139,149,96,255,255,255,139,130,28,4,0,0,12,128,137,130,28,4,0,0,139,149,96,255,255,255,139,130,28,4,0,0,131,200,64,137,130,28,4,0,0,232,189,107,254,255,137,194,139,133,96,255,255,255,137,80,28,139,133,96,255,255,255,139,128,52,4,0,0,139,16,141,131,131, 17,5,0,137,68,36,4,137,20,36,232,28,107,5,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,128,226,127,137,144,28,4,0,0,139,133,96,255,255,255,139,128,56,4,0,0,139,16,141,131,131,17,5,0,137,68,36,4,137,20,36,232,227,106,5,0,133,192,117,21,139, 133,96,255,255,255,139,144,28,4,0,0,131,226,191,137,144,28,4,0,0,131,189,92,255,255,255,0,127,10,199,133,92,255,255,255,1,0,0,0,139,149,96,255,255,255,139,133,92,255,255,255,137,66,40,139,133,96,255,255,255,139,80,40,139,133,96,255,255,255,137,80,36, 131,189,88,255,255,255,0,127,10,199,133,88,255,255,255,1,0,0,0,139,149,96,255,255,255,139,133,88,255,255,255,137,130,108,4,0,0,131,189,84,255,255,255,0,127,10,199,133,84,255,255,255,1,0,0,0,139,149,96,255,255,255,139,133,84,255,255,255,137,130,112,4, 0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,1,117,83,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,131,253,4,0,137,68,36,4,137,20,36,232,238,103,5,0,233,232,0,0,0,139, 149,96,255,255,255,131,194,52,141,131,131,253,4,0,137,68,36,4,137,20,36,232,170,1,0,0,233,200,0,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,2,117,80,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255, 131,194,52,137,68,36,8,141,131,195,59,5,0,137,68,36,4,137,20,36,232,135,103,5,0,233,129,0,0,0,139,149,96,255,255,255,131,194,52,141,131,195,59,5,0,137,68,36,4,137,20,36,232,67,1,0,0,235,100,139,149,96,255,255,255,139,130,28,4,0,0,131,224,192,137,130, 28,4,0,0,184,255,255,255,255,131,248,255,116,40,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,15,118,5,0,139,0,137,68,36,4,137,20,36,232,32,103,5,0,235,29,139,133,96,255,255,255,131,192,52,141,147,15,118,5,0,139,18,137,84, 36,4,137,4,36,232,221,0,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,64,133,192,116,30,139,133,96,255,255,255,139,128,56,4,0,0,139,149,96,255,255,255,137,68,36,4,137,20,36,232,96,222,2,0,139,149,96,255,255,255,139,133,80,255,255,255,137,66,44, 139,149,96,255,255,255,139,133,76,255,255,255,137,66,48,131,189,64,255,255,255,3,127,10,199,133,64,255,255,255,4,0,0,0,139,149,96,255,255,255,139,133,64,255,255,255,137,130,32,4,0,0,139,149,96,255,255,255,141,133,52,255,255,255,137,68,36,4,137,20,36, 232,35,226,253,255,139,133,96,255,255,255,199,128,84,4,0,0,1,0,0,0,139,133,96,255,255,255,199,128,92,4,0,0,1,0,0,0,139,133,96,255,255,255,137,4,36,232,92,220,253,255,139,133,96,255,255,255,141,147,255,117,5,0,139,18,139,77,244,51,10,116,5,232,33,102, 5,0,129,196,244,0,0,0,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,3,102,5,0,201,195,85,137,229,131,236,24,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116,24,139,69,8,139,128,56,4,0,0,139, 85,8,137,68,36,4,137,20,36,232,67,222,2,0,139,69,8,137,4,36,232,233,33,4,0,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,183,255,255,255,141,187,72,247,255,255,141,131,34,29,5,0,137,4,36,232,118,164,2,0,199,68,36,24,0,0,0,0,199,68,36, 20,10,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,116,4,0,0,137,116,36,8,137,124,36,4,137,4,36,232,42,153,2,0,137,194,141,131,122,151,5,0,137,16,141,131,163,10,5,0,137,4,36,232,46,164,2,0,141,147,72,247,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137, 68,36,4,137,20,36,232,24,156,2,0,141,131,186,15,5,0,137,4,36,232,254,163,2,0,137,194,141,139,208,243,255,255,141,131,122,151,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,185,156,2,0,141,131,194,15,5,0,137, 4,36,232,192,163,2,0,137,194,141,139,248,244,255,255,141,131,122,151,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,123,156,2,0,141,131,2,5,5,0,137,4,36,232,130,163,2,0,137,194,141,139,78,245,255,255,141,131, 122,151,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,61,156,2,0,141,131,8,5,5,0,137,4,36,232,68,163,2,0,137,194,141,139,125,245,255,255,141,131,122,151,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0, 137,84,36,8,137,76,36,4,137,4,36,232,255,155,2,0,141,131,175,10,5,0,137,4,36,232,6,163,2,0,137,194,141,139,172,245,255,255,141,131,122,151,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,193,155,2,0,141,131,12, 5,5,0,137,4,36,232,200,162,2,0,137,194,141,139,88,246,255,255,141,131,122,151,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,131,155,2,0,141,131,18,5,5,0,137,4,36,232,138,162,2,0,137,194,141,139,135,246,255, 255,141,131,122,151,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,69,155,2,0,141,131,202,15,5,0,137,4,36,232,76,162,2,0,137,194,141,139,168,246,255,255,141,131,122,151,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36, 12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,7,155,2,0,141,131,210,15,5,0,137,4,36,232,14,162,2,0,137,194,141,139,201,246,255,255,141,131,122,151,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,201,154,2,0, 141,131,250,244,4,0,137,4,36,232,208,161,2,0,137,194,141,139,234,246,255,255,141,131,122,151,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,139,154,2,0,141,131,218,15,5,0,137,4,36,232,146,161,2,0,137,194,141, 139,25,247,255,255,141,131,122,151,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,77,154,2,0,141,131,186,10,5,0,137,4,36,232,84,161,2,0,137,194,141,139,26,243,255,255,141,131,122,151,5,0,139,0,199,68,36,12,0, 0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,23,154,2,0,141,131,46,110,5,0,139,0,141,147,9,239,255,255,137,16,141,131,46,110,5,0,139,0,141,147,142,109,5,0,139,18,137,80,4,141,131,46,110,5,0,139,0,141,147,122,109,5,0,139,18,137,80,8,141,131,46,110,5,0,139, 0,199,64,12,0,0,0,0,141,131,46,110,5,0,139,0,141,147,138,109,5,0,139,18,137,80,16,141,131,46,110,5,0,139,0,141,147,126,109,5,0,139,18,137,80,20,141,131,46,110,5,0,139,0,199,64,24,0,0,0,0,141,131,122,151,5,0,139,16,141,131,46,110,5,0,139,0,137,68,36,4, 137,20,36,232,119,157,2,0,141,131,163,10,5,0,137,4,36,232,136,160,2,0,137,194,141,131,122,151,5,0,139,0,137,84,36,4,137,4,36,232,148,157,2,0,141,131,122,151,5,0,139,16,141,131,109,239,255,255,137,68,36,4,137,20,36,232,190,158,2,0,141,131,122,151,5,0, 139,16,141,131,13,241,255,255,137,68,36,4,137,20,36,232,195,158,2,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,128,28,4,0,0,37,0,0,0,8,133,192,116,61,139,69,8,139,64,28,133,192,116,51,139,85,8,139,130,28,4,0,0,37, 255,255,255,247,137,130,28,4,0,0,139,69,8,139,80,28,141,131,225,3,0,0,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,211,60,3,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,80,28,141,131,127,3,0,0,137,68,36,8,137,84,36,4, 139,69,8,137,4,36,232,161,60,3,0,131,196,20,91,201,195,85,137,229,131,236,8,139,69,8,242,15,16,136,92,4,0,0,139,69,8,242,15,16,128,100,4,0,0,102,15,46,193,119,2,235,22,139,69,8,242,15,16,128,100,4,0,0,139,69,8,242,15,17,128,92,4,0,0,139,69,8,242,15,16, 136,92,4,0,0,139,69,8,242,15,16,128,108,4,0,0,102,15,46,200,119,2,235,22,139,69,8,242,15,16,128,108,4,0,0,139,69,8,242,15,17,128,92,4,0,0,201,195,85,137,229,131,236,40,199,69,240,31,0,0,0,139,69,8,139,128,28,4,0,0,131,224,63,131,248,1,117,9,199,69,240, 27,0,0,0,235,24,139,69,8,139,128,28,4,0,0,131,224,63,131,248,2,117,7,199,69,240,25,0,0,0,139,69,8,139,128,32,4,0,0,137,194,15,175,85,240,139,69,8,139,64,40,15,175,194,137,69,244,139,77,244,199,69,228,57,142,227,56,139,69,228,247,233,193,250,3,137,200, 193,248,31,137,209,41,193,137,200,137,69,244,139,69,8,139,80,36,137,208,193,232,31,1,208,209,248,3,69,244,141,80,4,139,69,8,137,144,160,4,0,0,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,242,15,16,128,92,4,0,0,242,15,17,69,216,199,69,240, 0,0,0,0,186,255,255,255,255,139,77,8,129,193,128,4,0,0,242,15,16,69,216,242,15,17,68,36,16,141,131,189,4,5,0,137,68,36,12,137,84,36,8,199,68,36,4,0,0,0,0,137,12,36,232,82,95,5,0,139,69,8,5,128,4,0,0,137,4,36,232,124,97,5,0,137,69,244,131,125,244,4,126, 52,139,69,244,131,232,4,137,69,236,139,85,236,139,69,8,15,182,132,2,128,4,0,0,60,101,116,18,139,69,236,139,85,8,15,182,132,16,128,4,0,0,60,69,117,7,199,69,240,1,0,0,0,139,69,8,139,64,40,59,69,244,15,141,146,1,0,0,131,125,240,0,15,132,16,1,0,0,139,69, 8,139,64,40,131,248,5,127,52,141,131,197,89,5,0,242,15,16,0,102,15,46,69,216,119,2,235,6,198,69,213,45,235,4,198,69,213,43,139,69,8,15,182,85,213,136,144,128,4,0,0,139,69,8,198,128,129,4,0,0,0,139,69,244,131,232,4,137,69,236,199,69,232,0,0,0,0,235,21, 139,69,232,139,85,8,15,182,132,16,128,4,0,0,60,46,116,11,255,69,232,139,69,232,59,69,236,124,227,139,69,8,139,64,40,131,232,4,59,69,232,125,57,141,131,197,89,5,0,242,15,16,0,102,15,46,69,216,119,2,235,6,198,69,214,45,235,4,198,69,214,43,139,69,8,15,182, 85,214,136,144,128,4,0,0,139,69,8,198,128,129,4,0,0,0,233,211,0,0,0,139,69,8,139,64,40,131,232,4,137,69,228,139,69,244,131,232,4,137,69,224,199,69,236,0,0,0,0,235,36,139,77,228,139,85,224,139,69,8,15,182,148,2,128,4,0,0,139,69,8,136,148,1,128,4,0,0,255, 69,236,255,69,228,255,69,224,131,125,236,3,126,214,139,69,8,139,80,40,139,69,8,198,132,2,128,4,0,0,0,235,120,199,69,232,0,0,0,0,235,21,139,69,232,139,85,8,15,182,132,16,128,4,0,0,60,46,116,11,255,69,232,139,69,232,59,69,244,124,227,139,69,8,139,64,40, 59,69,232,125,54,141,131,197,89,5,0,242,15,16,0,102,15,46,69,216,119,2,235,6,198,69,215,45,235,4,198,69,215,43,139,69,8,15,182,85,215,136,144,128,4,0,0,139,69,8,198,128,129,4,0,0,0,235,17,139,69,8,139,80,40,139,69,8,198,132,2,128,4,0,0,0,131,196,84,91, 201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,139,69,8,137,69,244,139,69,12,137,4,36,232,76,126,254,255,133,192,15,132,152,1,0,0,139,69,244,139,128,28,4,0,0,37,0,0,0,8,133,192,15,132,7,1,0,0,139,69,244,15,182,128,128,4,0,0,132,192,15,132,163,0,0, 0,139,69,244,5,128,4,0,0,137,69,240,139,69,244,5,128,4,0,0,137,4,36,232,46,95,5,0,137,69,236,139,85,236,139,69,244,198,132,2,128,4,0,0,62,139,85,236,66,139,69,244,198,132,2,128,4,0,0,0,139,69,244,139,64,40,59,69,236,127,21,139,77,240,65,139,69,244,139, 80,40,139,69,236,41,208,141,4,1,137,69,240,139,69,12,137,4,36,232,1,49,255,255,137,194,139,69,240,137,68,36,16,199,68,36,12,0,0,255,0,139,69,244,137,68,36,8,137,84,36,4,141,131,113,2,5,0,137,4,36,232,132,49,3,0,139,85,236,139,69,244,198,132,2,128,4,0, 0,0,233,205,0,0,0,139,69,244,137,4,36,232,180,252,255,255,139,117,244,129,198,128,4,0,0,139,69,12,137,4,36,232,165,48,255,255,137,194,137,116,36,16,199,68,36,12,0,0,255,0,139,69,244,137,68,36,8,137,84,36,4,141,131,113,2,5,0,137,4,36,232,43,49,3,0,139, 69,244,198,128,128,4,0,0,0,235,123,139,69,244,137,4,36,232,98,252,255,255,139,69,244,5,128,4,0,0,137,69,224,139,69,244,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,244,139,128,40,4,0,0,137,69,228,235,7,199,69,228,255,0,0,0,139,69,12,137,4,36,232, 42,48,255,255,137,194,139,69,224,137,68,36,16,139,69,228,137,68,36,12,139,69,244,137,68,36,8,137,84,36,4,141,131,113,2,5,0,137,4,36,232,174,48,3,0,139,69,244,198,128,128,4,0,0,0,131,196,64,91,94,201,195,85,137,229,87,86,83,129,236,172,0,0,0,232,0,0,0, 0,91,139,69,8,139,80,36,137,208,193,232,31,1,208,209,248,137,69,228,139,69,8,139,72,36,199,69,148,121,120,120,120,139,69,148,247,233,193,250,4,137,200,193,248,31,137,209,41,193,137,200,64,137,69,224,139,85,8,139,69,12,137,68,36,4,137,20,36,232,98,67, 255,255,137,69,220,139,85,8,139,69,12,137,68,36,4,137,20,36,232,82,68,255,255,137,69,216,139,69,12,137,4,36,232,115,47,255,255,137,69,212,139,69,8,139,144,44,4,0,0,139,69,8,139,64,36,137,193,3,77,216,139,69,8,139,64,36,137,198,3,117,216,139,69,8,139, 128,160,4,0,0,137,199,3,125,220,139,69,216,131,192,4,137,69,164,139,69,8,139,128,160,4,0,0,137,69,148,139,69,148,3,69,220,137,69,168,139,69,8,139,128,160,4,0,0,3,69,220,131,232,4,137,69,172,139,69,8,137,68,36,56,137,84,36,52,199,68,36,48,0,0,0,0,137, 76,36,44,139,69,220,137,68,36,40,137,116,36,36,137,124,36,32,139,77,164,137,76,36,28,139,69,168,137,68,36,24,139,69,216,137,68,36,20,139,77,172,137,76,36,16,139,69,216,137,68,36,12,139,69,220,137,68,36,8,139,69,212,137,68,36,4,141,131,227,0,5,0,137,4, 36,232,91,47,3,0,139,69,8,139,144,40,4,0,0,139,69,8,139,64,36,137,193,3,77,216,139,69,228,139,117,216,1,198,139,69,228,139,125,220,1,199,139,69,8,137,68,36,36,137,84,36,32,137,76,36,28,139,69,220,137,68,36,24,137,116,36,20,137,124,36,16,139,69,216,137, 68,36,12,139,69,220,137,68,36,8,139,69,212,137,68,36,4,141,131,71,1,5,0,137,4,36,232,246,46,3,0,139,69,8,139,128,48,4,0,0,137,69,176,139,69,8,139,128,32,4,0,0,137,69,180,139,69,8,131,192,52,137,69,184,139,69,8,139,128,60,4,0,0,139,16,141,131,187,254, 4,0,137,68,36,4,137,20,36,232,225,91,5,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,188,235,9,141,139,223,223,4,0,137,77,188,139,69,8,139,64,48,137,194,3,85,216,139,69,8,139,64,44,137,193,3,77,220,139,69,8,137,68,36,36,139,69,176,137,68,36, 32,141,131,75,99,5,0,139,0,137,68,36,28,139,69,180,137,68,36,24,139,69,184,137,68,36,20,139,69,188,137,68,36,16,137,84,36,12,137,76,36,8,139,69,212,137,68,36,4,141,131,139,1,5,0,137,4,36,232,57,46,3,0,139,69,8,137,4,36,232,124,249,255,255,139,69,8,139, 144,40,4,0,0,139,69,8,139,136,32,4,0,0,139,117,8,131,198,52,139,125,8,129,199,128,4,0,0,139,69,228,137,69,148,139,69,148,3,69,216,137,69,148,139,69,148,3,69,224,137,69,192,139,69,228,3,69,220,131,192,2,137,69,196,139,69,8,137,68,36,36,137,84,36,32,141, 131,75,99,5,0,139,0,137,68,36,28,137,76,36,24,137,116,36,20,137,124,36,16,139,77,192,137,76,36,12,139,69,196,137,68,36,8,139,69,212,137,68,36,4,141,131,7,2,5,0,137,4,36,232,163,45,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,84,139,69,8,139, 64,36,137,194,3,85,216,139,77,220,131,193,7,139,69,8,139,64,36,3,69,216,141,112,255,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,139,69,220,137,68,36,8,139,69,212,137,68,36,4,141,131,155,230,4,0,137,4,36,232,61,45, 3,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,85,216,66,139,77,220,131,193,7,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,216,137,68,36,12,139,69,220,137,68,36,8,139,69,212,137,68,36,4,141,131,223,230,4,0, 137,4,36,232,233,44,3,0,129,196,172,0,0,0,91,94,95,201,195,85,137,229,87,86,83,129,236,140,0,0,0,232,0,0,0,0,91,139,69,8,139,80,36,137,208,193,232,31,1,208,209,248,137,69,228,139,69,8,139,72,36,199,69,180,121,120,120,120,139,69,180,247,233,193,250,4, 137,200,193,248,31,137,209,41,193,137,200,64,137,69,224,139,85,8,139,69,12,137,68,36,4,137,20,36,232,163,63,255,255,137,69,220,139,85,8,139,69,12,137,68,36,4,137,20,36,232,147,64,255,255,137,69,216,139,69,12,137,4,36,232,180,43,255,255,137,69,212,139, 69,8,139,64,36,137,193,3,77,216,139,69,8,139,64,36,137,198,3,117,216,139,69,8,139,128,160,4,0,0,137,199,3,125,220,139,69,216,131,192,4,137,69,192,139,69,8,139,128,160,4,0,0,139,85,220,1,194,137,85,196,139,69,8,139,128,160,4,0,0,3,69,220,141,80,252,137, 76,36,48,139,69,220,137,68,36,44,137,116,36,40,137,124,36,36,139,77,192,137,76,36,32,139,69,196,137,68,36,28,139,69,216,137,68,36,24,137,84,36,20,139,69,216,137,68,36,16,139,69,220,137,68,36,12,139,69,8,137,68,36,8,139,69,212,137,68,36,4,141,131,180, 254,4,0,137,4,36,232,187,43,3,0,139,69,8,139,64,36,137,194,3,85,216,139,69,228,139,117,216,1,198,139,69,228,139,77,220,1,193,137,84,36,32,139,69,220,137,68,36,28,137,116,36,24,137,76,36,20,139,69,216,137,68,36,16,139,69,220,137,68,36,12,139,69,8,137, 68,36,8,139,69,212,137,68,36,4,141,131,236,254,4,0,137,4,36,232,99,43,3,0,139,69,8,139,64,48,137,194,3,85,216,139,69,8,139,64,44,3,69,220,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,212,137,68,36,4,141,131,124,220,4,0,137,4,36,232,43,43,3,0, 139,69,228,3,69,216,137,194,3,85,224,139,69,228,3,69,220,131,192,2,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,212,137,68,36,4,141,131,24,255,4,0,137,4,36,232,243,42,3,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,82,139,69,8,139,64, 36,137,194,3,85,216,139,77,220,131,193,7,139,69,8,139,64,36,3,69,216,72,137,84,36,28,137,76,36,24,137,68,36,20,139,69,220,137,68,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,212,137,68,36,4,141,131,172,227,4,0,137,4,36,232,143,42,3,0,139,69, 8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,69,216,64,139,85,220,131,194,7,137,68,36,28,137,84,36,24,139,69,216,137,68,36,20,139,69,220,137,68,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,212,137,68,36,4,141,131,212,227,4,0,137,4,36,232, 59,42,3,0,129,196,140,0,0,0,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,107,41,255,255,137,69,244,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,143,252,4,0,137,4,36,232,249,41,3,0,139,69,8,137,68,36,8,139,69, 244,137,68,36,4,141,131,168,252,4,0,137,4,36,232,221,41,3,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,171,245,4,0,137,4,36,232,193,41,3,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,194,252,4,0,137,4,36,232,165,41,3,0,139,69,8,139,128, 28,4,0,0,37,128,0,0,0,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,127,225,4,0,137,4,36,232,111,41,3,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244, 137,68,36,4,141,131,197,245,4,0,137,4,36,232,59,41,3,0,131,196,36,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,12,137,4,36,232,112,40,255,255,137,69,244,139,69,8,139,128,60,4,0,0,139,16,141,131,88,247,4,0,137,68,36,4,137,20,36,232,38,86, 5,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,216,235,9,141,131,124,216,4,0,137,69,216,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,8,139,128,48,4,0,0,137,69,220,235,7,199,69,220,255,0,0,0,139,69,8,139,144,32,4,0,0,139,77,8, 131,193,52,139,69,216,137,68,36,28,139,69,220,137,68,36,24,141,131,232,91,5,0,139,0,137,68,36,20,137,84,36,16,137,76,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,160,224,4,0,137,4,36,232,108,40,3,0,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133, 192,117,14,139,69,8,139,128,40,4,0,0,137,69,224,235,7,199,69,224,255,0,0,0,139,69,8,139,144,32,4,0,0,139,77,8,131,193,52,139,69,224,137,68,36,24,141,131,232,91,5,0,139,0,137,68,36,20,137,84,36,16,137,76,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36, 4,141,131,228,251,4,0,137,4,36,232,255,39,3,0,139,69,8,139,128,44,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,40,252,4,0,137,4,36,232,214,39,3,0,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,8,139,128,40,4,0,0, 137,69,228,235,7,199,69,228,255,0,0,0,139,69,228,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,88,252,4,0,137,4,36,232,140,39,3,0,131,196,68,91,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20, 36,232,133,58,255,255,137,69,244,139,85,8,139,69,12,137,68,36,4,137,20,36,232,117,59,255,255,137,69,240,139,69,12,137,4,36,232,150,38,255,255,137,69,236,139,69,16,131,224,1,132,192,116,102,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,84,139,69, 8,139,64,36,137,194,3,85,240,139,77,244,131,193,7,139,69,8,139,64,36,3,69,240,141,112,255,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,139,69,244,137,68,36,8,139,69,236,137,68,36,4,141,131,108,223,4,0,137,4,36,232, 208,38,3,0,139,69,16,131,224,1,133,192,117,54,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,212,222,4,0,137,4,36,232,144,38,3,0,139,69,16,131,224,2,133,192,116,84,139,69, 8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,85,240,66,139,77,244,131,193,7,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,240,137,68,36,12,139,69,244,137,68,36,8,139,69,236,137,68,36,4,141,131,164,223,4,0,137,4,36,232, 50,38,3,0,139,69,16,131,224,2,133,192,117,52,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141,131,26,243,4,0,137,4,36,232,244,37,3,0,131,196,48,91,94,201,195,85,137,229,83,131,236, 36,232,0,0,0,0,91,139,69,12,137,4,36,232,40,37,255,255,137,69,244,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,15,132,245,0,0,0,139,69,8,139,128,28,4,0,0,37,0,0,0,8,133,192,116,78,139,85,8,139,130,28,4,0,0,37,255,255,255,247,137,130,28,4,0,0,139,69,8, 139,128,84,4,0,0,137,4,36,232,5,206,2,0,139,69,8,198,128,128,4,0,0,0,139,69,8,139,80,28,141,131,126,243,255,255,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,59,44,3,0,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,64,249, 4,0,137,4,36,232,56,37,3,0,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,16,249,4,0,137,4,36,232,20,37,3,0,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,160,222,4,0,137,4,36,232,240,36,3,0,199, 68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,112,249,4,0,137,4,36,232,204,36,3,0,233,159,0,0,0,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,64,249,4,0,137,4,36,232,163,36,3,0,139,69,8,139,128,40,4, 0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,16,249,4,0,137,4,36,232,122,36,3,0,139,69,8,139,128,48,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,160,222,4,0,137,4,36,232,81,36,3,0,139,69,8,139,128,40, 4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,112,249,4,0,137,4,36,232,40,36,3,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,16,0,117,33,141,131,179,241,255,255,137,68,36,8,139,69,12,137,68,36,4,139, 69,8,137,4,36,232,210,42,3,0,233,167,0,0,0,131,125,16,1,117,23,139,69,12,137,68,36,4,139,69,8,137,4,36,232,248,246,255,255,233,138,0,0,0,131,125,16,2,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,28,243,255,255,235,112,131,125,16,3,117,20,139,69, 12,137,68,36,4,139,69,8,137,4,36,232,178,253,255,255,235,86,131,125,16,4,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,85,249,255,255,235,60,131,125,16,5,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,54,250,255,255,235,34,131,125,16,5,126,28, 139,69,16,131,232,6,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,193,251,255,255,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,85,244,139,69,12,137,68,36,4,137,20,36,232,66,54,255,255,137,194,139,69,16,137,16,139,85,244, 139,69,12,137,68,36,4,137,20,36,232,46,55,255,255,137,194,139,69,20,137,16,139,69,16,139,16,139,69,244,139,128,160,4,0,0,1,194,139,69,24,137,16,139,69,20,139,16,139,69,244,139,64,36,1,194,139,69,28,137,16,201,195,85,137,229,87,86,83,129,236,252,0,0,0, 232,0,0,0,0,91,139,69,8,137,69,228,139,85,228,141,69,216,137,68,36,8,141,69,204,137,68,36,4,137,20,36,232,31,214,253,255,139,69,228,139,128,28,4,0,0,37,0,0,0,8,133,192,116,68,139,85,228,139,130,28,4,0,0,37,255,255,255,247,137,130,28,4,0,0,139,69,228, 139,128,84,4,0,0,137,4,36,232,242,202,2,0,139,69,228,139,80,28,141,131,102,240,255,255,137,68,36,8,137,84,36,4,139,69,228,137,4,36,232,50,41,3,0,139,69,228,139,176,164,4,0,0,139,69,228,242,15,16,128,92,4,0,0,242,15,17,133,104,255,255,255,139,125,224, 139,69,220,137,133,116,255,255,255,139,85,216,137,149,120,255,255,255,139,69,228,139,128,32,4,0,0,137,133,124,255,255,255,139,69,228,5,28,4,0,0,137,4,36,232,252,223,253,255,137,69,128,139,69,228,139,64,48,137,69,132,139,69,228,139,64,44,137,69,136,139, 69,212,137,69,140,139,85,208,137,85,144,139,69,204,137,69,148,139,69,228,5,36,4,0,0,137,4,36,232,190,222,253,255,137,69,152,139,69,228,139,128,124,4,0,0,137,69,156,139,69,228,242,15,16,128,108,4,0,0,242,15,90,192,243,15,90,192,242,15,17,69,160,139,69, 228,242,15,16,128,100,4,0,0,242,15,90,192,243,15,90,192,242,15,17,69,168,139,69,228,139,64,36,137,69,176,139,69,228,139,64,40,137,69,180,141,131,68,5,5,0,137,4,36,232,83,139,2,0,137,69,184,139,69,228,15,183,64,22,152,137,69,188,139,69,228,15,183,64,20, 152,137,69,192,141,131,240,235,4,0,137,4,36,232,44,139,2,0,137,69,196,141,131,116,221,4,0,137,4,36,232,27,139,2,0,137,116,36,108,242,15,16,133,104,255,255,255,242,15,17,68,36,100,137,124,36,96,139,149,116,255,255,255,137,84,36,92,139,149,120,255,255, 255,137,84,36,88,139,149,124,255,255,255,137,84,36,84,139,85,128,137,84,36,80,139,85,132,137,84,36,76,139,85,136,137,84,36,72,139,85,140,137,84,36,68,139,85,144,137,84,36,64,139,85,148,137,84,36,60,139,85,152,137,84,36,56,139,85,156,137,84,36,52,242, 15,16,69,160,242,15,17,68,36,44,242,15,16,69,168,242,15,17,68,36,36,139,85,176,137,84,36,32,139,85,180,137,84,36,28,139,85,184,137,84,36,24,139,85,188,137,84,36,20,139,85,192,137,84,36,16,139,85,196,137,84,36,12,137,68,36,8,141,131,137,246,4,0,137,68, 36,4,139,69,12,137,4,36,232,249,31,2,0,141,131,204,219,4,0,137,68,36,4,139,69,12,137,4,36,232,228,31,2,0,129,196,252,0,0,0,91,94,95,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,12,137,69,224,139,69,16,137,69,228,139,69,20,137,69,216,139,69, 24,137,69,220,199,69,244,0,0,0,0,139,69,8,139,128,124,4,0,0,133,192,15,132,172,0,0,0,141,131,99,69,5,0,242,15,16,0,102,15,46,69,224,122,2,116,2,235,36,141,131,99,69,5,0,242,15,16,0,102,15,46,69,216,122,2,116,2,235,15,141,131,107,69,5,0,242,15,16,0,242, 15,17,69,216,141,131,99,69,5,0,242,15,16,8,242,15,16,69,216,102,15,46,193,119,2,235,45,141,131,99,69,5,0,242,15,16,0,102,15,46,69,224,115,2,235,73,242,15,16,77,216,141,131,67,72,5,0,242,15,16,0,242,15,89,193,242,15,17,69,224,235,47,141,131,99,69,5,0, 242,15,16,8,242,15,16,69,224,102,15,46,193,119,2,235,24,242,15,16,77,224,141,131,67,72,5,0,242,15,16,0,242,15,89,193,242,15,17,69,216,139,69,8,242,15,16,69,224,242,15,17,128,100,4,0,0,139,69,8,242,15,16,69,216,242,15,17,128,108,4,0,0,139,69,8,242,15, 16,136,92,4,0,0,139,69,8,242,15,16,128,100,4,0,0,102,15,46,193,119,2,235,29,139,69,8,242,15,16,128,100,4,0,0,139,69,8,242,15,17,128,92,4,0,0,199,69,244,1,0,0,0,139,69,8,242,15,16,136,92,4,0,0,139,69,8,242,15,16,128,108,4,0,0,102,15,46,200,119,2,235,29, 139,69,8,242,15,16,128,108,4,0,0,139,69,8,242,15,17,128,92,4,0,0,199,69,244,1,0,0,0,139,69,8,139,128,124,4,0,0,133,192,116,94,139,69,8,242,15,16,136,108,4,0,0,139,69,8,242,15,16,128,100,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,4,36,232, 185,74,5,0,221,93,208,139,69,8,139,128,164,4,0,0,242,15,42,192,242,15,16,77,208,242,15,94,200,102,15,40,193,242,15,17,4,36,232,14,74,5,0,139,69,8,221,152,116,4,0,0,235,21,139,85,8,141,131,107,69,5,0,242,15,16,0,242,15,17,130,116,4,0,0,139,69,244,131, 196,68,91,201,195,85,137,229,87,86,83,129,236,236,3,0,0,232,0,0,0,0,91,139,69,8,137,133,164,252,255,255,139,69,12,137,133,160,252,255,255,141,131,226,80,5,0,139,0,139,16,137,85,228,49,210,139,133,164,252,255,255,137,133,192,252,255,255,139,149,192,252, 255,255,141,133,180,252,255,255,137,68,36,4,137,20,36,232,195,209,253,255,139,133,192,252,255,255,139,128,28,4,0,0,37,0,0,0,8,133,192,116,80,139,149,192,252,255,255,139,130,28,4,0,0,37,255,255,255,247,137,130,28,4,0,0,139,133,192,252,255,255,139,128, 84,4,0,0,137,4,36,232,49,198,2,0,139,133,192,252,255,255,139,80,28,141,131,212,235,255,255,137,68,36,8,137,84,36,4,139,133,192,252,255,255,137,4,36,232,107,36,3,0,139,133,192,252,255,255,139,128,48,4,0,0,137,194,129,226,255,255,255,0,139,133,192,252, 255,255,139,128,40,4,0,0,137,193,129,225,255,255,255,0,139,133,192,252,255,255,139,128,44,4,0,0,137,198,129,230,255,255,255,0,139,133,192,252,255,255,139,184,32,4,0,0,139,133,192,252,255,255,139,128,28,4,0,0,131,224,63,15,182,192,137,133,120,252,255, 255,139,133,192,252,255,255,139,64,48,137,133,124,252,255,255,139,133,192,252,255,255,139,64,44,137,133,128,252,255,255,139,133,188,252,255,255,139,0,137,133,132,252,255,255,139,133,184,252,255,255,139,0,137,133,136,252,255,255,139,133,180,252,255,255, 139,0,137,133,140,252,255,255,139,133,192,252,255,255,139,128,164,4,0,0,137,133,144,252,255,255,139,133,192,252,255,255,139,128,36,4,0,0,131,224,1,15,182,192,137,133,148,252,255,255,139,133,192,252,255,255,139,128,124,4,0,0,137,133,152,252,255,255,139, 133,192,252,255,255,242,15,16,128,108,4,0,0,139,133,192,252,255,255,242,15,16,136,100,4,0,0,139,133,192,252,255,255,139,64,36,137,133,156,252,255,255,139,133,192,252,255,255,139,64,40,137,84,36,104,137,76,36,100,137,116,36,96,137,124,36,92,139,149,120, 252,255,255,137,84,36,88,139,149,124,252,255,255,137,84,36,84,139,149,128,252,255,255,137,84,36,80,139,149,132,252,255,255,137,84,36,76,139,149,136,252,255,255,137,84,36,72,139,149,140,252,255,255,137,84,36,68,139,149,144,252,255,255,137,84,36,64,199, 68,36,60,255,255,255,255,139,149,148,252,255,255,137,84,36,56,139,149,152,252,255,255,137,84,36,52,199,68,36,48,0,0,0,0,242,15,17,68,36,40,242,15,17,76,36,32,199,68,36,28,8,0,0,0,139,149,156,252,255,255,137,84,36,24,199,68,36,20,1,0,0,0,137,68,36,16, 141,131,18,242,4,0,137,68,36,12,199,68,36,8,32,3,0,0,199,68,36,4,0,0,0,0,141,133,196,252,255,255,137,4,36,232,163,70,5,0,139,149,192,252,255,255,141,133,196,252,255,255,137,68,36,8,139,133,192,252,255,255,137,68,36,4,137,20,36,232,214,255,3,0,141,131, 226,80,5,0,139,0,139,85,228,51,16,116,5,232,115,70,5,0,129,196,236,3,0,0,91,94,95,201,195,85,137,229,131,236,24,139,69,8,242,15,16,128,92,4,0,0,242,15,90,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,222,174,2,0,139,69,8,139,128,28,4,0,0,37,128, 0,0,0,133,192,116,57,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,41,139,69,8,242,15,16,128,92,4,0,0,242,15,90,192,139,69,8,139,128,52,4,0,0,139,64,4,243,15,17,68,36,4,137,4,36,232,76,194,2,0,201,195,85,137,229,131,236,120,139,69,20,137,68,36,8,139, 69,16,137,68,36,4,199,4,36,0,0,0,0,232,68,7,2,0,137,69,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,39,7,2,0,137,69,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,175,6,2,0,217,93,176,243,15,90,69,176,242, 15,17,69,216,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,136,6,2,0,217,93,180,243,15,90,69,180,242,15,17,69,208,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,188,6,2,0,137,69,236,139,69,20,137,68,36,8,139,69,16, 137,68,36,4,199,4,36,6,0,0,0,232,159,6,2,0,137,69,232,131,125,236,0,116,7,199,69,236,1,0,0,0,139,85,8,139,69,236,137,130,124,4,0,0,139,85,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,69,196,137,68,36,4,137,20,36,232,23,206,253,255,137,69,228,131, 125,244,0,127,7,199,69,244,1,0,0,0,139,85,8,139,69,244,137,66,40,131,125,240,7,127,7,199,69,240,8,0,0,0,139,85,8,139,69,240,137,66,36,131,125,232,9,127,7,199,69,232,10,0,0,0,139,85,8,139,69,232,137,130,164,4,0,0,139,69,8,137,4,36,232,81,228,255,255,242, 15,16,69,208,242,15,17,68,36,12,242,15,16,69,216,242,15,17,68,36,4,139,69,8,137,4,36,232,44,249,255,255,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,72,32,139,85,228,131,194,6,139,69,8,139, 64,28,137,84,36,8,137,68,36,4,139,69,8,137,4,36,255,209,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,5,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139, 85,8,139,69,8,139,64,28,137,84,36,4,137,4,36,232,5,104,254,255,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,141,131,254,61,5,0,242,15,16,0,242,15,17,69,240,139,69,8,139,128,28,4,0,0,37,0,0,0,2,133,192,116,15,141,131,214,64,5,0,242,15,16,0,242,15,17, 69,240,139,69,8,139,128,124,4,0,0,133,192,116,97,139,69,8,242,15,16,128,92,4,0,0,242,15,17,69,224,141,131,94,65,5,0,102,15,40,0,242,15,16,77,240,102,15,87,200,243,15,90,69,16,242,15,89,200,139,69,8,242,15,16,128,116,4,0,0,242,15,17,76,36,8,242,15,17, 4,36,232,181,68,5,0,221,93,208,242,15,16,69,208,242,15,89,69,224,139,69,8,242,15,17,128,92,4,0,0,235,44,139,69,8,242,15,16,136,92,4,0,0,243,15,90,69,16,242,15,89,69,240,102,15,40,209,242,15,92,208,102,15,40,194,139,69,8,242,15,17,128,92,4,0,0,139,69, 8,137,4,36,232,69,226,255,255,139,69,8,139,80,28,141,131,116,230,255,255,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,193,30,3,0,139,69,8,137,4,36,232,112,252,255,255,139,69,8,139,128,84,4,0,0,137,4,36,232,70,192,2,0,131,196,68,91,201,195,85,137,229, 87,86,83,131,236,60,232,0,0,0,0,91,243,15,16,69,16,243,15,44,208,243,15,16,69,12,243,15,44,200,141,179,207,254,255,255,139,125,8,139,69,8,139,64,28,137,69,228,137,84,36,20,137,76,36,16,141,131,45,7,0,0,137,68,36,12,137,116,36,8,137,124,36,4,139,69,228, 137,4,36,232,43,22,255,255,131,196,60,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,69,244,131,125,36,0,15,132,55,1,0,0,243,15,42,69,28,243,15,42,77,24,243,15,42,85,20,243,15,42,93,16,243,15,17,68,36,20,141,131,91,60,5,0,139,0, 137,68,36,16,243,15,17,76,36,12,243,15,17,84,36,8,243,15,17,92,36,4,139,69,244,137,4,36,232,64,255,255,255,131,125,24,0,116,23,139,69,244,139,144,28,4,0,0,129,202,0,0,0,2,137,144,28,4,0,0,235,21,139,69,244,139,144,28,4,0,0,129,226,255,255,255,253,137, 144,28,4,0,0,139,69,244,139,128,28,4,0,0,37,0,0,0,8,133,192,117,98,139,69,244,139,144,88,4,0,0,141,131,187,63,5,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,163,192,2,0,139,85,244,139,130,28,4,0,0,13,0,0,0,8,137,130,28,4,0,0,139,69,244,139,144,84,4, 0,0,141,131,195,63,5,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,110,192,2,0,139,69,244,198,128,128,4,0,0,0,235,78,139,85,244,139,130,28,4,0,0,37,255,255,255,247,137,130,28,4,0,0,139,69,244,139,128,84,4,0,0,137,4,36,232,181,190,2,0,139,69,244,198,128, 128,4,0,0,0,139,69,244,139,80,28,141,131,241,228,255,255,137,68,36,8,137,84,36,4,139,69,244,137,4,36,232,235,28,3,0,184,1,0,0,0,131,196,52,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,243,15,90,69,12,139,69,8,242,15,17,128,92,4,0,0,139,69,8,137, 4,36,232,29,224,255,255,139,69,8,139,80,28,141,131,146,227,255,255,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,153,28,3,0,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,243,15,16,69,12,141,131,195,59,5,0,243,15,16,8,15,46,200,119,2,235, 11,141,131,195,59,5,0,139,0,137,69,12,243,15,16,69,12,243,15,44,208,139,69,8,137,144,164,4,0,0,139,69,8,139,128,124,4,0,0,133,192,116,94,139,69,8,242,15,16,136,108,4,0,0,139,69,8,242,15,16,128,100,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15, 17,4,36,232,92,65,5,0,221,93,240,139,69,8,139,128,164,4,0,0,242,15,42,192,242,15,16,77,240,242,15,94,200,102,15,40,193,242,15,17,4,36,232,177,64,5,0,139,69,8,221,152,116,4,0,0,235,21,139,85,8,141,131,207,58,5,0,242,15,16,0,242,15,17,130,116,4,0,0,131, 196,36,91,201,195,85,137,229,131,236,24,139,69,12,137,68,36,4,139,69,8,137,4,36,232,213,254,255,255,139,69,8,139,128,28,4,0,0,37,0,0,0,4,133,192,116,11,139,69,8,137,4,36,232,82,249,255,255,201,195,85,137,229,131,236,40,139,69,20,137,68,36,8,139,69,16, 137,68,36,4,199,4,36,0,0,0,0,232,10,1,2,0,137,69,240,131,125,240,0,127,7,199,69,240,1,0,0,0,139,85,8,139,69,240,137,66,40,131,125,16,1,126,51,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,209,0,2,0,137,69,244,131,125,244,7,127,7,199, 69,244,8,0,0,0,139,85,8,139,69,244,137,66,36,139,69,8,137,4,36,232,238,222,255,255,139,69,8,137,68,36,4,139,69,8,137,4,36,232,222,195,253,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137, 84,36,4,139,69,8,137,4,36,232,254,195,253,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,129,196,253,255,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91, 139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,185,255,1,0,217,93,228,243,15,90,69,228,242,15,17,69,232,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,146,255,1,0,217,93,244,243,15,90,69,244,242,15,16,77,232,242,15, 17,76,36,12,242,15,17,68,36,4,139,69,8,137,4,36,232,6,243,255,255,133,192,116,31,139,69,8,139,80,28,141,131,89,225,255,255,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,18,26,3,0,131,196,68,91,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36, 16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,76,196,253,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,50,188,253,255,201,195,85,137,229,131,236,24,139,69,8,139, 85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,12,189,253,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,141,190,253,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16, 137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,73,191,253,255,201,195,85,137,229,131,236,56,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,191,254,1,0,137,69,244,131,125,244,3,127,7,199,69,244,4,0,0,0,139,85,8, 139,69,244,137,130,32,4,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,137,254,1,0,137,69,244,131,125,244,0,120,6,131,125,244,2,126,7,199,69,244,0,0,0,0,139,69,244,131,224,63,139,77,8,15,182,192,137,194,131,226,63,139,129,28,4,0, 0,131,224,192,9,208,137,129,28,4,0,0,139,69,8,137,4,36,232,135,220,255,255,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,101,191,253,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91, 139,69,8,199,128,124,4,0,0,1,0,0,0,139,69,8,242,15,16,136,108,4,0,0,139,69,8,242,15,16,128,100,4,0,0,242,15,17,76,36,12,242,15,17,68,36,4,139,69,8,137,4,36,232,19,241,255,255,133,192,116,31,139,69,8,139,80,28,141,131,59,223,255,255,137,68,36,8,137,84, 36,4,139,69,8,137,4,36,232,31,24,3,0,131,196,36,91,201,195,85,137,229,131,236,8,139,69,8,199,128,124,4,0,0,0,0,0,0,201,195,85,137,229,83,131,236,4,232,0,0,0,0,91,141,131,32,54,5,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,139,77,8,15,182,192, 137,194,131,226,1,139,129,36,4,0,0,131,224,254,9,208,137,129,36,4,0,0,131,196,4,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,175,67,5,0,139,0,139,0,133,192,117,58,139,69,8,139,128,36,4,0,0,131,224,1,133,192,116,42,139,69,8,139,80,28,141, 131,113,222,255,255,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,117,23,3,0,139,69,8,137,4,36,232,36,245,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,69,240,243,15,16,69,12,243,15,44,192,136,69,247,198,69,245,0, 128,125,247,0,117,73,139,85,240,139,130,28,4,0,0,37,255,255,255,247,137,130,28,4,0,0,139,69,240,139,128,84,4,0,0,137,4,36,232,183,184,2,0,139,69,240,139,80,28,141,131,22,222,255,255,137,68,36,8,137,84,36,4,139,69,240,137,4,36,232,247,22,3,0,233,192,1, 0,0,128,125,247,47,126,6,128,125,247,57,126,34,128,125,247,46,116,28,128,125,247,45,116,22,128,125,247,101,116,16,128,125,247,43,116,10,128,125,247,69,15,133,137,0,0,0,139,69,240,5,128,4,0,0,137,4,36,232,10,61,5,0,131,248,29,15,135,88,1,0,0,15,182,69, 247,136,69,244,184,255,255,255,255,131,248,255,116,35,184,255,255,255,255,139,85,240,129,194,128,4,0,0,137,68,36,8,141,69,244,137,68,36,4,137,20,36,232,161,58,5,0,235,24,139,85,240,129,194,128,4,0,0,141,69,244,137,68,36,4,137,20,36,232,51,1,0,0,139,69, 240,139,80,28,141,131,22,222,255,255,137,68,36,8,137,84,36,4,139,69,240,137,4,36,232,64,22,3,0,233,232,0,0,0,128,125,247,8,116,6,128,125,247,127,117,83,139,69,240,5,128,4,0,0,137,4,36,232,117,60,5,0,72,137,69,236,131,125,236,0,121,7,199,69,236,0,0,0, 0,139,85,236,139,69,240,198,132,2,128,4,0,0,0,139,69,240,139,80,28,141,131,22,222,255,255,137,68,36,8,137,84,36,4,139,69,240,137,4,36,232,225,21,3,0,233,137,0,0,0,128,125,247,10,116,6,128,125,247,13,117,125,139,69,240,5,128,4,0,0,137,4,36,232,36,58,5, 0,139,69,240,221,152,92,4,0,0,139,69,240,198,128,128,4,0,0,0,139,85,240,139,130,28,4,0,0,37,255,255,255,247,137,130,28,4,0,0,139,69,240,139,128,84,4,0,0,137,4,36,232,41,183,2,0,139,69,240,137,4,36,232,226,216,255,255,139,69,240,137,4,36,232,44,243,255, 255,139,69,240,139,80,28,141,131,22,222,255,255,137,68,36,8,137,84,36,4,139,69,240,137,4,36,232,83,21,3,0,139,69,240,139,144,84,4,0,0,141,131,232,56,5,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,91,184,2,0,131,196,36,91,201,195,85,137,229,131,236,24, 184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,51,57,5,0,201,195,85,137,229,131,236,24,139,69,20,139,0,131,248,1,117,52,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,24,250,1,0,217,92,36,4,139,69,8,137, 4,36,232,240,247,255,255,139,69,8,137,4,36,232,127,242,255,255,201,195,85,137,229,83,129,236,36,1,0,0,232,0,0,0,0,91,139,69,8,137,133,20,255,255,255,139,69,16,137,133,16,255,255,255,141,131,128,64,5,0,139,0,139,16,137,85,244,49,210,141,131,168,106,5, 0,139,0,137,4,36,232,191,172,2,0,137,133,96,255,255,255,199,133,28,255,255,255,0,0,252,255,199,133,32,255,255,255,255,255,255,255,199,133,36,255,255,255,255,255,255,255,199,133,92,255,255,255,5,0,0,0,199,133,88,255,255,255,14,0,0,0,199,133,84,255,255, 255,0,0,0,0,199,133,80,255,255,255,0,0,0,0,199,133,76,255,255,255,0,0,0,0,199,133,72,255,255,255,248,255,255,255,199,133,68,255,255,255,10,0,0,0,199,133,64,255,255,255,0,1,0,0,141,131,76,54,5,0,242,15,16,0,242,15,17,133,56,255,255,255,141,131,84,54,5, 0,242,15,16,0,242,15,17,133,48,255,255,255,141,131,244,50,5,0,242,15,16,0,242,15,17,133,40,255,255,255,131,125,12,16,15,142,225,3,0,0,139,133,16,255,255,255,139,0,131,248,1,15,133,208,3,0,0,139,133,16,255,255,255,131,192,8,139,0,131,248,1,15,133,188, 3,0,0,139,133,16,255,255,255,131,192,16,139,0,131,248,1,15,133,168,3,0,0,139,133,16,255,255,255,131,192,24,139,0,131,248,1,15,133,148,3,0,0,139,133,16,255,255,255,131,192,32,139,0,131,248,1,15,133,128,3,0,0,139,133,16,255,255,255,131,192,40,139,0,131, 248,1,15,133,108,3,0,0,139,133,16,255,255,255,131,192,48,139,0,131,248,2,116,20,139,133,16,255,255,255,131,192,48,139,0,131,248,1,15,133,72,3,0,0,139,133,16,255,255,255,131,192,56,139,0,131,248,2,116,20,139,133,16,255,255,255,131,192,56,139,0,131,248, 1,15,133,36,3,0,0,139,133,16,255,255,255,131,192,64,139,0,131,248,2,116,20,139,133,16,255,255,255,131,192,64,139,0,131,248,1,15,133,0,3,0,0,139,133,16,255,255,255,131,192,72,139,0,131,248,1,15,133,236,2,0,0,139,133,16,255,255,255,131,192,80,139,0,131, 248,1,15,133,216,2,0,0,139,133,16,255,255,255,131,192,88,139,0,131,248,1,15,133,196,2,0,0,139,133,16,255,255,255,131,192,96,139,0,131,248,1,15,133,176,2,0,0,139,133,16,255,255,255,131,192,104,139,0,131,248,1,15,133,156,2,0,0,139,133,16,255,255,255,131, 192,112,139,0,131,248,1,15,133,136,2,0,0,139,133,16,255,255,255,131,192,120,139,0,131,248,1,15,133,116,2,0,0,139,133,16,255,255,255,131,232,128,139,0,131,248,1,15,133,96,2,0,0,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0, 232,196,247,1,0,137,133,92,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,1,0,0,0,232,161,247,1,0,137,133,88,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,2,0,0,0,232,35,247,1,0,217,157,4, 255,255,255,243,15,90,133,4,255,255,255,242,15,17,133,56,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,3,0,0,0,232,240,246,1,0,217,157,8,255,255,255,243,15,90,133,8,255,255,255,242,15,17,133,48,255,255,255,139,133,16,255, 255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,4,0,0,0,232,24,247,1,0,137,133,84,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,5,0,0,0,232,245,246,1,0,139,149,96,255,255,255,129,194,36,4,0,0,137,68,36,4,137,20,36,232, 115,198,253,255,139,149,96,255,255,255,139,133,16,255,255,255,137,68,36,8,199,68,36,4,6,0,0,0,137,20,36,232,211,172,253,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,9,0,0,0,232,160,246,1,0,137,133,76,255,255,255,139,133,16,255, 255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,10,0,0,0,232,125,246,1,0,137,133,72,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,11,0,0,0,232,90,246,1,0,139,149,96,255,255,255,129,194,28,4,0,0,137,68,36,4,137,20,36, 232,239,198,253,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,12,0,0,0,232,37,246,1,0,137,133,68,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,13,0,0,0,232,2,246,1,0,137,133,28,255,255,255,139,133, 16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,14,0,0,0,232,223,245,1,0,137,133,32,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,15,0,0,0,232,188,245,1,0,137,133,36,255,255,255,139,133,16,255,255,255,137,68, 36,8,139,69,12,137,68,36,4,199,4,36,16,0,0,0,232,62,245,1,0,217,157,12,255,255,255,243,15,90,133,12,255,255,255,242,15,17,133,40,255,255,255,235,30,139,133,96,255,255,255,199,68,36,8,0,0,0,0,199,68,36,4,6,0,0,0,137,4,36,232,121,171,253,255,131,125,12, 18,117,53,139,133,16,255,255,255,5,136,0,0,0,139,0,131,248,1,117,35,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,17,0,0,0,232,46,245,1,0,137,133,64,255,255,255,141,147,179,233,255,255,139,133,96,255,255,255,137,80,32,139,149,96,255, 255,255,139,130,28,4,0,0,12,128,137,130,28,4,0,0,139,149,96,255,255,255,139,130,28,4,0,0,131,200,64,137,130,28,4,0,0,232,23,54,254,255,137,194,139,133,96,255,255,255,137,80,28,139,133,96,255,255,255,139,128,36,4,0,0,131,224,1,133,192,116,24,139,133,96, 255,255,255,242,15,16,133,40,255,255,255,242,15,17,128,92,4,0,0,235,24,139,149,96,255,255,255,141,131,244,50,5,0,242,15,16,0,242,15,17,130,92,4,0,0,131,189,84,255,255,255,0,116,10,199,133,84,255,255,255,1,0,0,0,139,149,96,255,255,255,139,133,84,255,255, 255,137,130,124,4,0,0,131,189,64,255,255,255,9,127,10,199,133,64,255,255,255,10,0,0,0,139,149,96,255,255,255,139,133,64,255,255,255,137,130,164,4,0,0,139,133,96,255,255,255,139,128,52,4,0,0,139,16,141,131,4,220,4,0,137,68,36,4,137,20,36,232,233,52,5, 0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,128,226,127,137,144,28,4,0,0,139,133,96,255,255,255,139,128,56,4,0,0,139,16,141,131,4,220,4,0,137,68,36,4,137,20,36,232,176,52,5,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,131,226, 191,137,144,28,4,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,1,117,83,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,4,200,4,0,137,68,36,4,137,20,36,232,57,50,5,0,233, 232,0,0,0,139,149,96,255,255,255,131,194,52,141,131,4,200,4,0,137,68,36,4,137,20,36,232,144,2,0,0,233,200,0,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,2,117,80,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96, 255,255,255,131,194,52,137,68,36,8,141,131,68,6,5,0,137,68,36,4,137,20,36,232,210,49,5,0,233,129,0,0,0,139,149,96,255,255,255,131,194,52,141,131,68,6,5,0,137,68,36,4,137,20,36,232,41,2,0,0,235,100,139,149,96,255,255,255,139,130,28,4,0,0,131,224,192,137, 130,28,4,0,0,184,255,255,255,255,131,248,255,116,40,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,144,64,5,0,139,0,137,68,36,4,137,20,36,232,107,49,5,0,235,29,139,133,96,255,255,255,131,192,52,141,147,144,64,5,0,139,18,137, 84,36,4,137,4,36,232,195,1,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,64,133,192,116,30,139,133,96,255,255,255,139,128,56,4,0,0,139,149,96,255,255,255,137,68,36,4,137,20,36,232,171,168,2,0,139,149,96,255,255,255,139,133,76,255,255,255,137,66, 44,139,149,96,255,255,255,139,133,72,255,255,255,137,66,48,131,189,68,255,255,255,3,127,10,199,133,68,255,255,255,4,0,0,0,139,149,96,255,255,255,139,133,68,255,255,255,137,130,32,4,0,0,131,189,92,255,255,255,0,127,10,199,133,92,255,255,255,1,0,0,0,139, 149,96,255,255,255,139,133,92,255,255,255,137,66,40,131,189,88,255,255,255,7,127,10,199,133,88,255,255,255,8,0,0,0,139,149,96,255,255,255,139,133,88,255,255,255,137,66,36,139,133,96,255,255,255,198,128,128,4,0,0,0,139,133,96,255,255,255,137,4,36,232, 32,208,255,255,242,15,16,133,48,255,255,255,242,15,17,68,36,12,242,15,16,133,56,255,255,255,242,15,17,68,36,4,139,133,96,255,255,255,137,4,36,232,242,228,255,255,139,149,96,255,255,255,141,133,28,255,255,255,137,68,36,4,137,20,36,232,229,171,253,255, 139,133,96,255,255,255,137,4,36,232,62,166,253,255,141,131,133,215,255,255,137,68,36,4,139,133,96,255,255,255,137,4,36,232,50,173,2,0,137,194,139,133,96,255,255,255,137,144,84,4,0,0,141,131,231,215,255,255,137,68,36,4,139,133,96,255,255,255,137,4,36, 232,12,173,2,0,137,194,139,133,96,255,255,255,137,144,88,4,0,0,139,149,96,255,255,255,139,130,28,4,0,0,37,255,255,255,247,137,130,28,4,0,0,139,149,96,255,255,255,141,131,16,64,5,0,139,0,137,68,36,4,137,20,36,232,137,150,2,0,139,133,96,255,255,255,141, 147,128,64,5,0,139,18,139,77,244,51,10,116,5,232,134,47,5,0,129,196,36,1,0,0,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,104,47,5,0,201,195,85,137,229,131,236,24,139,69,8,139,128,28,4,0, 0,131,224,64,133,192,116,24,139,69,8,139,128,56,4,0,0,139,85,8,137,68,36,4,137,20,36,232,168,167,2,0,139,69,8,139,128,84,4,0,0,137,4,36,232,75,175,2,0,139,69,8,139,128,88,4,0,0,137,4,36,232,58,175,2,0,139,69,8,137,4,36,232,44,235,3,0,201,195,85,137,229, 87,86,83,131,236,60,232,0,0,0,0,91,141,179,149,255,255,255,141,187,10,246,255,255,141,131,105,230,4,0,137,4,36,232,185,109,2,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,168,4,0,0,137,116,36,8,137,124,36,4,137,4,36,232, 109,98,2,0,137,194,141,131,193,96,5,0,137,16,141,131,242,216,4,0,137,4,36,232,113,109,2,0,141,147,10,246,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,91,101,2,0,141,147,135,232,255,255,141,131,193,96,5,0,139,0,137,84,36, 4,137,4,36,232,176,105,2,0,141,147,0,239,255,255,141,131,193,96,5,0,139,0,137,84,36,4,137,4,36,232,184,105,2,0,141,147,196,245,255,255,141,131,193,96,5,0,139,0,137,84,36,4,137,4,36,232,192,105,2,0,141,131,41,190,4,0,137,4,36,232,243,108,2,0,137,194,141, 139,46,236,255,255,141,131,193,96,5,0,139,0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,142,101,2,0,141,131,251,196,4,0,137,4,36,232, 149,108,2,0,137,194,141,139,11,235,255,255,141,131,193,96,5,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,72,101,2,0,141,131,253,216,4,0,137,4,36,232,79,108,2,0,137,194,141,139,253,232,255, 255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,10,101,2,0,141,131,81,192,4,0,137,4,36,232,17,108,2,0,137,194,141,139,14,243,255,255,141,131,193,96,5,0,139,0,199,68,36,12,0,0,0,0,137,84,36, 8,137,76,36,4,137,4,36,232,212,100,2,0,141,131,29,168,4,0,137,4,36,232,219,107,2,0,137,194,141,139,237,237,255,255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,150,100,2,0,141,131,5,217,4,0,137, 4,36,232,157,107,2,0,137,194,141,139,55,239,255,255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,88,100,2,0,141,131,69,206,4,0,137,4,36,232,95,107,2,0,137,194,141,139,200,239,255,255,141,131, 193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,26,100,2,0,141,131,75,206,4,0,137,4,36,232,33,107,2,0,137,194,141,139,247,239,255,255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0, 137,84,36,8,137,76,36,4,137,4,36,232,220,99,2,0,141,131,26,209,4,0,137,4,36,232,227,106,2,0,137,194,141,139,38,240,255,255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,158,99,2,0,141,131,79, 206,4,0,137,4,36,232,165,106,2,0,137,194,141,139,193,240,255,255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,96,99,2,0,141,131,85,206,4,0,137,4,36,232,103,106,2,0,137,194,141,139,240,240,255, 255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,34,99,2,0,141,131,13,217,4,0,137,4,36,232,41,106,2,0,137,194,141,139,17,241,255,255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12, 7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,228,98,2,0,141,131,21,217,4,0,137,4,36,232,235,105,2,0,137,194,141,139,50,241,255,255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,166,98,2,0,141, 131,61,190,4,0,137,4,36,232,173,105,2,0,137,194,141,139,83,241,255,255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,104,98,2,0,141,131,29,217,4,0,137,4,36,232,111,105,2,0,137,194,141,139,130, 241,255,255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,42,98,2,0,141,131,34,209,4,0,137,4,36,232,49,105,2,0,137,194,141,139,68,242,255,255,141,131,193,96,5,0,139,0,199,68,36,12,0,0,0,0,137, 84,36,8,137,76,36,4,137,4,36,232,244,97,2,0,141,131,38,209,4,0,137,4,36,232,251,104,2,0,137,194,141,139,180,242,255,255,141,131,193,96,5,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,190,97,2,0,141,131,93,206,4,0,137,4,36,232,197, 104,2,0,137,194,141,139,201,242,255,255,141,131,193,96,5,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,128,97,2,0,141,131,41,217,4,0,137,4,36,232,135,104,2,0,137,194,141,139,58,238,255,255,141,131,193,96,5,0,139, 0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,66,97,2,0,141,131,117,55,5,0,139,0,141,147,173,224,255,255,137,16,141,131,117,55,5,0,139,0,141,147,209,54,5,0,139,18,137,80,4,141,131,117,55,5,0,139,0,141,147,189,54,5,0, 139,18,137,80,8,141,131,117,55,5,0,139,0,199,64,12,0,0,0,0,141,131,117,55,5,0,139,0,141,147,205,54,5,0,139,18,137,80,16,141,131,117,55,5,0,139,0,141,147,193,54,5,0,139,18,137,80,20,141,131,117,55,5,0,139,0,141,147,142,236,255,255,137,80,24,141,131,193, 96,5,0,139,16,141,131,117,55,5,0,139,0,137,68,36,4,137,20,36,232,160,100,2,0,141,131,52,217,4,0,137,4,36,232,177,103,2,0,137,194,141,131,193,96,5,0,139,0,137,84,36,4,137,4,36,232,189,100,2,0,141,131,193,96,5,0,139,16,141,131,20,225,255,255,137,68,36, 4,137,20,36,232,231,101,2,0,141,131,193,96,5,0,139,16,141,131,166,229,255,255,137,68,36,4,137,20,36,232,236,101,2,0,131,196,60,91,94,95,201,195,85,137,229,131,236,40,139,69,20,139,0,137,69,236,139,85,16,139,69,236,137,2,139,69,236,59,69,8,124,9,199,69, 228,0,0,0,0,235,75,139,69,236,137,69,244,235,3,255,69,244,139,69,244,59,69,8,125,16,139,69,244,193,224,3,3,69,12,139,0,131,248,4,117,229,139,69,244,59,69,8,124,10,139,85,20,139,69,244,137,2,235,9,139,85,244,66,139,69,20,137,16,139,85,236,139,69,244,137, 193,41,209,137,77,228,139,69,228,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,24,137,4,36,232,76,99,3,0,141,131,69,210,4,0,137,4,36,232,43,97,3,0,139,69,16,193,224,3,3,69,12,137,68,36,4,139,69,20,137,4,36,232,197,97,3,0,232,177,98,3,0,131,196, 20,91,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,139,69,24,137,4,36,232,172,98,0,0,137,69,228,131,125,228,0,117,36,139,69,24,139,0,137,68,36,4,141,131,6,210,4,0,137,4,36,232,227,98,3,0,139,85,20,139,69,12,137,2,233,182,1,0,0,139,69,36,137,68,36, 12,139,69,32,137,68,36,8,139,69,228,137,68,36,4,139,69,28,137,4,36,232,127,64,0,0,139,69,228,139,64,12,137,69,236,199,69,232,0,0,0,0,233,117,1,0,0,139,69,228,139,72,16,139,85,232,137,208,1,192,1,208,193,224,2,141,4,1,139,0,131,248,3,15,133,6,1,0,0,139, 69,232,193,224,2,3,69,28,139,0,137,69,220,139,69,220,139,64,4,137,69,216,199,69,212,0,0,0,0,139,69,228,139,72,16,139,85,232,137,208,1,192,1,208,193,224,2,141,4,1,139,64,8,137,69,208,139,69,208,137,4,36,232,230,97,0,0,137,69,204,131,125,204,0,117,28,139, 69,208,139,0,137,68,36,4,141,131,6,210,4,0,137,4,36,232,29,98,3,0,233,233,0,0,0,139,69,20,137,68,36,12,141,69,244,137,68,36,8,139,69,16,137,68,36,4,139,69,12,137,4,36,232,29,254,255,255,137,69,196,131,125,196,0,15,132,188,0,0,0,139,69,212,64,137,68,36, 4,139,69,220,137,4,36,232,223,186,253,255,139,69,220,139,80,8,139,69,212,15,175,69,216,141,4,2,137,69,200,139,69,244,193,224,3,3,69,16,137,68,36,28,139,69,196,137,68,36,24,139,69,200,137,68,36,20,139,69,208,137,68,36,16,139,69,20,137,68,36,12,139,69, 16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,104,254,255,255,255,69,212,233,99,255,255,255,139,69,228,139,72,16,139,85,232,137,208,1,192,1,208,193,224,2,141,4,1,139,0,131,248,2,117,48,139,69,28,139,16,199,68,36,16,0,0,0,0,139,69,20,137, 68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,27,0,0,0,133,192,116,2,235,208,255,69,232,139,69,232,59,69,236,15,140,127,254,255,255,131,196,100,91,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,139,69,20,139,0,137,69,216,139,69, 8,137,4,36,232,160,70,254,255,137,69,212,139,69,216,59,69,12,125,16,139,69,216,193,224,3,3,69,16,139,0,131,248,2,116,57,139,69,216,59,69,12,125,29,139,69,216,193,224,3,3,69,16,139,0,137,68,36,4,141,131,26,208,4,0,137,4,36,232,1,94,3,0,139,85,20,139,69, 12,137,2,199,69,196,0,0,0,0,233,156,1,0,0,139,69,216,193,224,3,3,69,16,139,64,4,137,4,36,232,72,63,254,255,137,69,224,139,85,216,66,139,69,20,137,16,139,69,224,137,4,36,232,36,96,0,0,137,69,228,131,125,228,0,117,43,139,69,224,139,0,137,68,36,4,141,131, 51,208,4,0,137,4,36,232,91,96,3,0,139,85,20,139,69,12,137,2,199,69,196,0,0,0,0,233,61,1,0,0,139,69,224,137,68,36,4,139,69,8,137,4,36,232,56,63,0,0,137,69,220,131,125,220,0,117,43,139,69,224,139,0,137,68,36,4,141,131,85,208,4,0,137,4,36,232,21,96,3,0, 139,85,20,139,69,12,137,2,199,69,196,0,0,0,0,233,247,0,0,0,131,125,212,0,116,28,139,69,8,137,4,36,232,225,248,254,255,137,194,139,130,160,0,0,0,131,224,253,137,130,160,0,0,0,139,69,220,137,68,36,4,139,69,8,137,4,36,232,141,242,254,255,139,69,20,137,68, 36,12,141,69,244,137,68,36,8,139,69,16,137,68,36,4,139,69,12,137,4,36,232,210,251,255,255,137,69,232,139,69,244,193,224,3,3,69,16,139,85,220,131,194,12,137,68,36,28,139,69,232,137,68,36,24,137,84,36,20,139,69,224,137,68,36,16,139,69,20,137,68,36,12,139, 69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,74,252,255,255,131,125,212,0,116,54,139,69,8,137,4,36,232,69,248,254,255,137,194,139,130,160,0,0,0,131,200,2,137,130,160,0,0,0,139,85,220,199,68,36,8,1,0,0,0,139,69,8,137,68,36,4,137,20,36, 232,11,113,254,255,131,125,24,0,116,18,139,69,220,137,68,36,4,139,69,8,137,4,36,232,29,115,254,255,199,69,196,1,0,0,0,139,69,196,131,196,100,91,201,195,85,137,229,83,131,236,116,232,0,0,0,0,91,139,69,8,137,4,36,232,218,247,254,255,137,69,244,199,69,240, 0,0,0,0,199,69,224,0,0,0,0,139,69,12,137,4,36,232,77,255,1,0,137,69,236,139,69,12,137,4,36,232,76,255,1,0,137,69,208,141,69,224,137,68,36,12,141,69,228,137,68,36,8,139,69,208,137,68,36,4,139,69,236,137,4,36,232,193,250,255,255,137,69,232,131,125,232, 1,116,96,139,69,228,193,224,3,3,69,208,139,0,131,248,2,116,80,139,69,228,193,224,3,3,69,208,139,64,4,139,16,141,131,88,206,4,0,137,68,36,4,137,20,36,232,42,37,5,0,133,192,116,44,139,69,16,137,68,36,8,141,131,94,206,4,0,137,68,36,4,139,69,8,137,4,36,232, 111,95,3,0,139,69,12,137,4,36,232,168,234,1,0,233,206,2,0,0,199,4,36,0,0,0,0,232,55,123,2,0,137,69,188,199,69,184,0,0,0,0,141,69,224,137,68,36,12,141,69,228,137,68,36,8,139,69,208,137,68,36,4,139,69,236,137,4,36,232,34,250,255,255,137,69,232,131,125, 232,1,15,142,131,2,0,0,131,125,232,2,126,44,139,85,228,141,131,128,206,4,0,137,68,36,16,139,69,232,137,68,36,12,137,84,36,8,139,69,208,137,68,36,4,139,69,236,137,4,36,232,92,250,255,255,235,121,139,69,228,193,224,3,3,69,208,139,0,131,248,2,117,58,139, 69,228,193,224,3,3,69,208,139,64,4,139,16,141,131,148,206,4,0,137,68,36,4,137,20,36,232,85,36,5,0,133,192,117,22,139,85,208,131,194,8,139,69,228,193,224,3,141,4,2,139,0,131,248,2,116,47,139,85,228,141,131,157,206,4,0,137,68,36,16,139,69,232,137,68,36, 12,137,84,36,8,139,69,208,137,68,36,4,139,69,236,137,4,36,232,230,249,255,255,233,18,255,255,255,139,85,208,131,194,8,139,69,228,193,224,3,141,4,2,139,64,4,137,4,36,232,225,59,254,255,137,69,192,141,69,224,137,68,36,12,141,69,228,137,68,36,8,139,69,208, 137,68,36,4,139,69,236,137,4,36,232,45,249,255,255,137,69,232,131,125,232,2,116,10,131,125,232,3,15,133,174,0,0,0,139,69,232,3,69,184,137,69,180,139,69,180,141,20,197,0,0,0,0,139,69,184,193,224,3,137,84,36,8,137,68,36,4,139,69,188,137,4,36,232,201,122, 2,0,137,69,188,139,69,184,193,224,3,137,193,3,77,188,139,69,228,193,224,3,3,69,208,139,80,4,139,0,137,1,137,81,4,139,85,188,131,194,8,139,69,184,193,224,3,141,12,2,139,85,208,131,194,8,139,69,228,193,224,3,141,4,2,139,80,4,139,0,137,1,137,81,4,131,125, 232,3,117,40,139,85,188,131,194,16,139,69,184,193,224,3,141,12,2,139,85,208,131,194,16,139,69,228,193,224,3,141,4,2,139,80,4,139,0,137,1,137,81,4,139,69,180,137,69,184,233,31,255,255,255,139,69,188,137,68,36,8,139,69,184,137,68,36,4,139,69,192,137,4, 36,232,66,76,0,0,137,69,200,139,69,184,193,224,3,137,68,36,4,139,69,188,137,4,36,232,12,123,2,0,139,69,192,137,4,36,232,180,91,0,0,137,69,196,131,125,196,0,117,36,139,69,192,139,0,137,68,36,4,141,131,178,206,4,0,137,4,36,232,235,91,3,0,139,69,200,137, 4,36,232,225,93,0,0,235,121,139,69,200,137,68,36,4,139,69,196,137,4,36,232,222,81,0,0,133,192,117,36,139,69,192,139,0,137,68,36,4,141,131,218,206,4,0,137,4,36,232,177,91,3,0,139,69,200,137,4,36,232,167,93,0,0,235,63,139,69,200,137,4,36,232,154,93,0,0, 233,97,253,255,255,139,69,20,137,68,36,16,141,69,224,137,68,36,12,139,69,208,137,68,36,8,139,69,236,137,68,36,4,139,69,8,137,4,36,232,83,250,255,255,139,69,224,59,69,236,124,209,131,196,116,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,232,134,231, 1,0,137,69,244,139,69,8,137,4,36,232,48,244,254,255,137,69,240,139,69,240,137,4,36,232,215,64,254,255,137,69,236,199,69,232,0,0,0,0,199,69,216,0,0,0,0,139,69,16,139,16,141,131,202,24,5,0,137,68,36,4,137,20,36,232,208,33,5,0,133,192,117,9,199,69,232,1, 0,0,0,235,35,139,69,16,139,0,15,182,0,132,192,116,23,139,69,16,139,0,137,68,36,4,141,131,98,203,4,0,137,4,36,232,217,90,3,0,139,69,12,139,16,139,69,232,137,68,36,12,139,69,240,137,68,36,8,137,84,36,4,139,69,244,137,4,36,232,231,8,2,0,133,192,116,34,141, 131,127,203,4,0,137,68,36,4,139,69,8,137,4,36,232,202,91,3,0,139,69,244,137,4,36,232,3,231,1,0,235,121,131,125,236,0,116,23,141,131,248,25,5,0,139,0,137,68,36,4,139,69,240,137,4,36,232,88,139,254,255,131,125,20,0,116,11,139,69,8,137,4,36,232,203,241, 254,255,139,69,12,139,0,199,68,36,12,0,0,0,0,137,68,36,8,139,69,244,137,68,36,4,139,69,8,137,4,36,232,63,251,255,255,131,125,236,0,116,23,141,131,252,25,5,0,139,0,137,68,36,4,139,69,240,137,4,36,232,7,139,254,255,139,69,244,137,4,36,232,136,230,1,0,131, 196,68,91,201,195,85,137,229,131,236,24,199,68,36,12,1,0,0,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,140,254,255,255,201,195,85,137,229,131,236,24,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137, 4,36,232,99,254,255,255,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,69,228,0,0,0,0,199,69,220,0,0,0,0,139,69,8,139,64,28,137,69,232,199,69,244,0,0,0,0,199,69,236,255,255,255,255,235,32,139,69,12,59,69,232,117,12,139,69,244,137,69,236,139,69,232, 137,69,220,255,69,244,139,69,232,139,64,4,137,69,232,131,125,232,0,117,218,131,125,236,255,117,14,141,131,237,201,4,0,137,4,36,232,179,91,3,0,199,68,36,12,0,0,0,0,141,131,17,202,4,0,137,68,36,8,139,69,16,137,68,36,4,139,69,8,137,4,36,232,45,250,255,255, 199,69,224,0,0,0,0,131,125,236,0,120,99,131,125,244,0,116,72,139,69,8,139,64,28,137,69,232,199,69,240,1,0,0,0,235,37,139,69,240,59,69,244,117,20,139,69,228,137,69,224,139,69,228,139,80,4,139,69,232,137,80,4,235,47,139,69,228,137,69,232,255,69,240,139, 69,232,139,64,4,137,69,228,131,125,228,0,117,204,235,21,139,69,8,139,64,28,137,69,224,139,69,224,139,80,4,139,69,8,137,80,28,131,125,224,0,117,19,141,131,37,202,4,0,137,4,36,232,170,88,3,0,233,163,0,0,0,131,125,220,0,117,19,141,131,93,202,4,0,137,4,36, 232,242,90,3,0,233,138,0,0,0,139,69,220,137,68,36,4,139,69,8,137,4,36,232,207,236,254,255,131,125,236,0,126,93,139,69,8,139,64,28,137,69,232,199,69,240,1,0,0,0,235,53,139,69,240,59,69,236,116,10,139,69,232,139,64,4,133,192,117,23,139,69,232,139,80,4, 139,69,224,137,80,4,139,85,232,139,69,224,137,66,4,235,55,139,69,232,139,64,4,137,69,232,255,69,240,131,125,232,0,117,197,141,131,137,202,4,0,137,4,36,232,122,90,3,0,235,21,139,69,8,139,80,28,139,69,224,137,80,4,139,85,8,139,69,224,137,66,28,131,196, 52,91,201,195,85,137,229,131,236,40,139,69,12,139,0,137,69,244,139,69,16,139,0,137,69,236,199,69,240,0,0,0,0,235,19,139,69,240,193,224,2,3,69,236,139,0,59,69,8,116,81,255,69,240,139,69,240,59,69,244,124,229,139,69,244,64,193,224,2,137,194,139,69,244, 193,224,2,137,84,36,8,137,68,36,4,139,69,236,137,4,36,232,160,117,2,0,137,69,236,139,69,244,193,224,2,137,194,3,85,236,139,69,8,137,2,139,85,16,139,69,236,137,2,139,85,244,66,139,69,12,137,16,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,137, 4,36,232,11,87,0,0,137,69,240,199,4,36,0,0,0,0,232,99,116,2,0,137,69,236,139,69,240,139,64,12,137,69,228,199,69,224,0,0,0,0,131,125,20,0,117,52,199,69,196,2,0,0,0,139,69,8,139,0,131,192,3,137,4,36,232,167,90,2,0,137,69,200,141,69,196,137,68,36,8,199, 68,36,4,1,0,0,0,139,69,16,137,4,36,232,124,239,1,0,131,125,240,0,117,14,141,131,99,200,4,0,137,4,36,232,83,89,3,0,199,69,232,0,0,0,0,233,211,0,0,0,139,69,240,139,72,16,139,85,232,137,208,1,192,1,208,193,224,2,141,4,1,139,0,133,192,116,32,139,69,240,139, 72,16,139,85,232,137,208,1,192,1,208,193,224,2,141,4,1,139,0,131,248,1,15,133,149,0,0,0,139,69,224,64,193,224,3,137,194,139,69,224,193,224,3,137,84,36,8,137,68,36,4,139,69,236,137,4,36,232,137,116,2,0,137,69,236,139,69,240,139,72,16,139,85,232,137,208, 1,192,1,208,193,224,2,141,4,1,139,0,133,192,117,42,139,69,224,193,224,3,3,69,236,199,0,1,0,0,0,139,69,224,193,224,3,137,194,3,85,236,139,69,232,193,224,2,3,69,12,139,0,137,66,4,235,40,139,69,224,193,224,3,3,69,236,199,0,2,0,0,0,139,69,224,193,224,3,137, 194,3,85,236,139,69,232,193,224,2,3,69,12,139,0,137,66,4,255,69,224,255,69,232,139,69,232,59,69,228,15,140,33,255,255,255,131,125,224,0,117,46,131,125,20,0,116,40,139,69,224,193,224,3,3,69,236,199,0,2,0,0,0,139,69,224,193,224,3,137,194,3,85,236,141,131, 67,35,5,0,139,0,137,66,4,255,69,224,139,69,236,137,68,36,8,139,69,224,137,68,36,4,139,69,16,137,4,36,232,48,238,1,0,139,69,16,137,4,36,232,24,243,1,0,139,69,224,193,224,3,137,68,36,4,139,69,236,137,4,36,232,144,116,2,0,199,69,232,0,0,0,0,233,236,0,0, 0,139,69,240,139,72,16,139,85,232,137,208,1,192,1,208,193,224,2,141,4,1,139,0,131,248,3,15,133,139,0,0,0,139,69,232,193,224,2,3,69,12,139,0,137,69,216,139,69,216,139,64,4,137,69,212,139,69,216,139,0,137,69,208,139,69,240,139,72,16,139,85,232,137,208, 1,192,1,208,193,224,2,141,4,1,139,64,8,137,69,204,199,69,220,0,0,0,0,235,51,139,69,216,139,80,8,139,69,212,15,175,69,220,141,4,2,137,194,199,68,36,12,1,0,0,0,139,69,16,137,68,36,8,137,84,36,4,139,69,204,137,4,36,232,129,253,255,255,255,69,220,139,69, 220,59,69,208,124,197,139,69,16,137,4,36,232,78,242,1,0,235,62,139,69,240,139,72,16,139,85,232,137,208,1,192,1,208,193,224,2,141,4,1,139,0,131,248,2,117,34,139,69,12,139,0,139,80,28,139,69,16,137,68,36,4,137,20,36,232,32,0,0,0,139,69,16,137,4,36,232, 14,242,1,0,255,69,232,139,69,232,59,69,228,15,140,8,255,255,255,131,196,84,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,235,67,139,69,8,139,16,141,131,97,33,5,0,139,0,139,0,57,194,117,39,139,69,8,141,72,12,139,69,8,139,80,8,199,68,36,12,0,0,0,0, 139,69,12,137,68,36,8,137,76,36,4,137,20,36,232,205,252,255,255,139,69,8,139,64,4,137,69,8,131,125,8,0,117,183,131,196,20,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,4,36,232,195,83,0,0,137,69,236,139,69,20,137,68,36,8,139,69,16,137, 68,36,4,139,69,8,137,4,36,232,2,252,255,255,131,125,236,0,117,19,141,131,46,197,4,0,137,4,36,232,75,86,3,0,233,226,0,0,0,139,69,236,139,64,16,137,69,244,139,69,236,139,64,12,137,69,240,233,190,0,0,0,139,69,244,139,0,131,248,3,15,133,128,0,0,0,139,69, 12,139,0,137,69,228,139,69,228,139,64,4,137,69,224,139,69,228,139,0,137,69,220,139,69,244,139,64,8,137,69,216,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,216,137,4,36,232,137,251,255,255,199,69,232,0,0,0,0,235,50,139,69,228,139,80,8,139,69,224, 15,175,69,232,141,4,2,137,194,139,69,20,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,139,69,216,137,4,36,232,27,255,255,255,255,69,232,139,69,232,59,69,220,124,198,235,40,139,69,244,139,0,131,248,2,117,30,139,69,12,139,0,139,80,28,139,69,20,137,68, 36,8,139,69,16,137,68,36,4,137,20,36,232,27,0,0,0,131,69,244,12,131,69,12,4,255,77,240,131,125,240,255,15,133,53,255,255,255,131,196,52,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,235,66,139,69,8,139,16,141,131,206,31,5,0,139,0,139,0,57,194,117, 38,139,69,8,141,80,12,139,69,8,139,72,8,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,137,12,36,232,131,254,255,255,139,69,8,139,64,4,137,69,8,131,125,8,0,117,184,131,196,20,91,201,195,85,137,229,86,83,131,236,96,232,0,0,0,0,91,199,4,36,0, 0,0,0,232,150,111,2,0,137,69,240,199,69,236,0,0,0,0,232,176,222,1,0,137,69,228,139,69,8,139,64,28,137,69,232,235,94,139,69,232,139,16,141,131,112,31,5,0,139,0,139,0,57,194,117,66,131,125,12,0,117,22,139,69,232,137,68,36,4,139,69,8,137,4,36,232,248,101, 254,255,133,192,116,38,139,69,232,141,80,12,139,69,232,139,72,8,141,69,240,137,68,36,12,141,69,236,137,68,36,8,137,84,36,4,137,12,36,232,226,253,255,255,139,69,232,139,64,4,137,69,232,131,125,232,0,117,156,141,131,246,193,4,0,137,4,36,232,123,85,2,0, 137,68,36,8,141,131,184,195,4,0,137,68,36,4,139,69,228,137,4,36,232,5,235,1,0,199,69,244,0,0,0,0,233,223,1,0,0,139,69,244,193,224,2,137,194,139,69,240,141,4,2,139,0,137,4,36,232,99,81,0,0,137,69,224,139,69,224,139,64,12,137,69,216,139,69,244,193,224, 2,137,194,139,69,240,141,4,2,139,0,139,0,131,192,3,137,4,36,232,21,85,2,0,137,198,141,131,50,194,4,0,137,4,36,232,5,85,2,0,137,116,36,12,137,68,36,8,141,131,48,230,4,0,137,68,36,4,139,69,228,137,4,36,232,139,234,1,0,199,69,220,0,0,0,0,233,75,1,0,0,139, 69,224,139,72,16,139,85,220,137,208,1,192,1,208,193,224,2,141,4,1,139,0,137,69,196,131,125,196,1,116,41,131,125,196,1,127,8,131,125,196,0,116,16,235,72,131,125,196,2,116,53,131,125,196,3,116,28,235,58,141,131,108,30,5,0,139,0,137,69,212,235,70,141,131, 188,31,5,0,139,0,137,69,212,235,57,141,131,108,179,4,0,137,4,36,232,120,84,2,0,137,69,212,235,38,141,131,172,31,5,0,139,0,137,69,212,235,25,141,131,108,30,5,0,139,0,137,69,212,141,131,189,195,4,0,137,4,36,232,42,83,3,0,139,69,224,139,72,16,139,85,220, 137,208,1,192,1,208,193,224,2,141,4,1,139,0,131,248,3,117,101,139,69,224,139,72,16,139,85,220,137,208,1,192,1,208,193,224,2,141,4,1,139,64,8,139,0,131,192,3,137,4,36,232,12,84,2,0,137,198,139,69,224,139,72,16,139,85,220,137,208,1,192,1,208,193,224,2, 141,4,1,139,64,4,137,116,36,16,137,68,36,12,139,69,212,137,68,36,8,141,131,202,195,4,0,137,68,36,4,139,69,228,137,4,36,232,113,233,1,0,235,56,139,69,224,139,72,16,139,85,220,137,208,1,192,1,208,193,224,2,141,4,1,139,64,4,137,68,36,12,139,69,212,137,68, 36,8,141,131,48,230,4,0,137,68,36,4,139,69,228,137,4,36,232,55,233,1,0,255,69,220,139,69,220,59,69,216,15,140,169,254,255,255,139,69,228,137,4,36,232,95,237,1,0,255,69,244,139,69,236,57,69,244,15,140,21,254,255,255,139,69,228,137,4,36,232,69,237,1,0, 139,69,8,139,64,28,137,69,232,235,95,139,69,232,139,16,141,131,112,31,5,0,139,0,139,0,57,194,117,67,131,125,12,0,117,22,139,69,232,137,68,36,4,139,69,8,137,4,36,232,96,99,254,255,133,192,116,39,139,69,232,141,72,12,139,69,232,139,80,8,199,68,36,12,0, 0,0,0,139,69,228,137,68,36,8,137,76,36,4,137,20,36,232,1,248,255,255,139,69,232,139,64,4,137,69,232,131,125,232,0,117,155,139,69,228,131,196,96,91,94,201,195,85,137,229,83,129,236,52,4,0,0,232,0,0,0,0,91,139,69,8,137,133,228,251,255,255,139,69,12,137, 133,224,251,255,255,139,69,16,137,133,220,251,255,255,141,131,156,27,5,0,139,0,139,16,137,85,244,49,210,199,133,8,252,255,255,0,0,0,0,199,4,36,0,0,0,0,232,34,108,2,0,137,133,252,251,255,255,199,133,248,251,255,255,0,0,0,0,139,133,228,251,255,255,137, 4,36,232,229,231,254,255,137,133,240,251,255,255,139,133,224,251,255,255,139,16,199,68,36,12,232,3,0,0,141,133,12,252,255,255,137,68,36,8,137,84,36,4,139,133,240,251,255,255,137,4,36,232,230,23,254,255,139,133,220,251,255,255,139,16,141,131,202,12,5, 0,137,68,36,4,137,20,36,232,111,21,5,0,133,192,117,12,199,133,8,252,255,255,1,0,0,0,235,41,139,133,220,251,255,255,139,0,15,182,0,132,192,116,26,139,133,220,251,255,255,139,0,137,68,36,4,141,131,98,191,4,0,137,4,36,232,111,78,3,0,199,68,36,4,1,0,0,0, 139,133,228,251,255,255,137,4,36,232,185,251,255,255,137,133,0,252,255,255,131,189,0,252,255,255,0,116,88,139,133,8,252,255,255,137,68,36,12,141,131,68,152,4,0,137,68,36,8,141,133,12,252,255,255,137,68,36,4,139,133,0,252,255,255,137,4,36,232,156,254, 1,0,133,192,116,26,139,133,224,251,255,255,139,0,137,68,36,4,141,131,144,192,4,0,137,4,36,232,0,78,3,0,139,133,0,252,255,255,137,4,36,232,98,218,1,0,141,131,156,27,5,0,139,0,139,85,244,51,16,116,5,232,125,18,5,0,129,196,52,4,0,0,91,201,195,85,137,229, 87,86,83,129,236,156,1,0,0,232,0,0,0,0,91,139,69,8,139,64,40,133,192,15,132,93,1,0,0,139,69,8,139,128,156,0,0,0,133,192,15,133,76,1,0,0,232,216,217,1,0,137,69,220,139,69,8,139,64,8,137,68,36,4,139,69,220,137,4,36,232,22,232,1,0,139,69,220,137,4,36,232, 9,238,1,0,137,198,139,69,220,137,4,36,232,239,237,1,0,137,116,36,8,137,68,36,4,199,4,36,1,0,0,0,232,149,211,1,0,137,69,216,139,69,220,137,4,36,232,189,217,1,0,139,69,8,139,128,160,0,0,0,209,232,131,224,1,15,182,192,137,133,192,254,255,255,141,131,37, 26,5,0,139,0,57,69,216,117,22,141,131,18,191,4,0,137,4,36,232,159,80,2,0,137,133,196,254,255,255,235,9,139,69,216,137,133,196,254,255,255,139,69,8,139,80,80,139,69,8,139,64,72,137,214,41,198,139,69,8,139,80,76,139,69,8,139,64,68,137,215,41,199,139,69, 8,139,64,72,137,133,200,254,255,255,139,69,8,139,64,68,137,133,204,254,255,255,141,131,29,191,4,0,137,4,36,232,72,80,2,0,137,133,208,254,255,255,141,131,36,191,4,0,137,4,36,232,52,80,2,0,139,149,192,254,255,255,137,84,36,36,139,141,196,254,255,255,137, 76,36,32,137,116,36,28,137,124,36,24,139,149,200,254,255,255,137,84,36,20,139,141,204,254,255,255,137,76,36,16,139,149,208,254,255,255,137,84,36,12,137,68,36,8,141,131,39,191,4,0,137,68,36,4,139,69,12,137,4,36,232,132,229,1,0,233,198,0,0,0,139,69,8,139, 184,148,0,0,0,139,69,8,139,80,80,139,69,8,139,64,72,137,209,41,193,137,141,212,254,255,255,139,69,8,139,80,76,139,69,8,139,64,68,137,209,41,193,137,141,216,254,255,255,139,69,8,139,64,72,137,133,220,254,255,255,139,69,8,139,64,68,137,133,224,254,255, 255,141,131,29,191,4,0,137,4,36,232,129,79,2,0,137,198,141,131,36,191,4,0,137,4,36,232,113,79,2,0,137,124,36,32,139,149,212,254,255,255,137,84,36,28,139,141,216,254,255,255,137,76,36,24,139,149,220,254,255,255,137,84,36,20,139,141,224,254,255,255,137, 76,36,16,137,116,36,12,137,68,36,8,141,131,49,191,4,0,137,68,36,4,139,69,12,137,4,36,232,203,228,1,0,139,69,12,137,68,36,4,139,69,8,137,4,36,232,129,71,254,255,139,69,8,139,64,28,137,69,228,235,27,139,69,12,137,68,36,4,139,69,228,137,4,36,232,49,133, 2,0,139,69,228,139,64,4,137,69,228,131,125,228,0,117,223,139,69,8,137,68,36,4,141,133,116,255,255,255,137,4,36,232,185,23,254,255,233,144,0,0,0,139,133,120,255,255,255,137,68,36,4,139,69,8,137,4,36,232,104,23,254,255,137,69,212,139,69,132,137,68,36,4, 139,69,8,137,4,36,232,83,23,254,255,137,69,208,139,117,148,139,125,128,141,131,248,165,4,0,137,4,36,232,143,78,2,0,137,133,228,254,255,255,141,131,13,162,4,0,137,4,36,232,123,78,2,0,137,194,137,116,36,28,139,69,208,137,68,36,24,137,124,36,20,139,69,212, 137,68,36,16,139,133,228,254,255,255,137,68,36,12,137,84,36,8,141,131,61,191,4,0,137,68,36,4,139,69,12,137,4,36,232,227,227,1,0,141,133,116,255,255,255,137,4,36,232,80,23,254,255,137,69,224,131,125,224,0,15,133,85,255,255,255,139,69,8,139,128,160,0,0, 0,37,0,1,0,0,133,192,117,124,139,69,8,243,15,16,72,52,141,131,105,12,5,0,243,15,16,0,15,46,200,117,101,122,99,139,69,8,243,15,16,72,56,141,131,105,12,5,0,243,15,16,0,15,46,200,117,76,122,74,139,69,8,243,15,16,72,60,141,131,109,12,5,0,243,15,16,0,15,46, 200,117,51,122,49,139,69,8,243,15,16,72,64,141,131,109,12,5,0,243,15,16,0,15,46,200,117,26,122,24,139,69,8,139,64,44,133,192,117,14,139,69,8,139,64,48,133,192,15,132,6,3,0,0,139,69,8,139,128,160,0,0,0,37,0,1,0,0,133,192,15,132,180,1,0,0,139,69,8,139, 128,160,0,0,0,37,128,0,0,0,133,192,15,132,158,1,0,0,139,69,8,139,64,88,243,15,42,192,243,15,90,192,242,15,17,133,232,254,255,255,139,69,8,139,64,84,243,15,42,192,243,15,90,192,242,15,17,133,240,254,255,255,139,69,8,139,128,160,0,0,0,37,0,2,0,0,133,192, 116,20,141,131,249,14,5,0,242,15,16,0,242,15,17,133,248,254,255,255,235,18,141,131,137,12,5,0,242,15,16,0,242,15,17,133,248,254,255,255,139,69,8,139,64,48,243,15,42,192,243,15,90,192,242,15,17,133,0,255,255,255,139,69,8,139,64,44,243,15,42,192,243,15, 90,192,242,15,17,133,8,255,255,255,139,69,8,243,15,16,64,64,243,15,90,192,242,15,17,133,16,255,255,255,139,69,8,243,15,16,64,60,243,15,90,192,242,15,17,133,24,255,255,255,139,69,8,243,15,16,64,56,243,15,90,192,242,15,17,133,32,255,255,255,139,69,8,243, 15,16,64,52,243,15,90,192,242,15,17,133,40,255,255,255,141,131,69,191,4,0,137,4,36,232,125,76,2,0,137,198,141,131,13,162,4,0,137,4,36,232,109,76,2,0,242,15,16,133,232,254,255,255,242,15,17,68,36,80,242,15,16,133,240,254,255,255,242,15,17,68,36,72,242, 15,16,133,248,254,255,255,242,15,17,68,36,64,242,15,16,133,0,255,255,255,242,15,17,68,36,56,242,15,16,133,8,255,255,255,242,15,17,68,36,48,242,15,16,133,16,255,255,255,242,15,17,68,36,40,242,15,16,133,24,255,255,255,242,15,17,68,36,32,242,15,16,133,32, 255,255,255,242,15,17,68,36,24,242,15,16,133,40,255,255,255,242,15,17,68,36,16,137,116,36,12,137,68,36,8,141,131,76,191,4,0,137,68,36,4,139,69,12,137,4,36,232,117,225,1,0,233,60,1,0,0,139,69,8,139,128,160,0,0,0,193,232,8,131,224,1,15,182,192,152,243, 15,42,192,243,15,90,192,242,15,17,133,48,255,255,255,139,69,8,139,64,48,243,15,42,192,243,15,90,192,242,15,17,133,56,255,255,255,139,69,8,139,64,44,243,15,42,192,243,15,90,192,242,15,17,133,64,255,255,255,139,69,8,243,15,16,64,64,243,15,90,192,242,15, 17,133,72,255,255,255,139,69,8,243,15,16,64,60,243,15,90,192,242,15,17,133,80,255,255,255,139,69,8,243,15,16,64,56,243,15,90,192,242,15,17,133,88,255,255,255,139,69,8,243,15,16,64,52,243,15,90,192,242,15,17,133,96,255,255,255,141,131,69,191,4,0,137,4, 36,232,32,75,2,0,137,198,141,131,13,162,4,0,137,4,36,232,16,75,2,0,242,15,16,133,48,255,255,255,242,15,17,68,36,64,242,15,16,133,56,255,255,255,242,15,17,68,36,56,242,15,16,133,64,255,255,255,242,15,17,68,36,48,242,15,16,133,72,255,255,255,242,15,17, 68,36,40,242,15,16,133,80,255,255,255,242,15,17,68,36,32,242,15,16,133,88,255,255,255,242,15,17,68,36,24,242,15,16,133,96,255,255,255,242,15,17,68,36,16,137,116,36,12,137,68,36,8,141,131,89,191,4,0,137,68,36,4,139,69,12,137,4,36,232,52,224,1,0,129,196, 156,1,0,0,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,28,137,69,244,233,176,0,0,0,139,69,244,139,16,141,131,211,19,5,0,139,0,139,0,57,194,117,68,131,125,20,0,117,22,139,69,244,137,68,36,4,139,69,8,137,4,36,232,118,90,254, 255,133,192,116,40,139,69,244,141,80,12,139,69,244,139,72,8,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,137,12,36,232,96,242,255,255,235,80,139,69,244,139,16,141,131,71,19,5,0,139,0,139,0,57,194,117,61,131,125,20,0,117,22,139,69,244,137, 68,36,4,139,69,8,137,4,36,232,31,90,254,255,133,192,116,33,139,69,244,199,68,36,12,1,0,0,0,139,85,16,137,84,36,8,139,85,12,137,84,36,4,137,4,36,232,62,255,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,15,133,70,255,255,255,131,196,36,91,201,195, 85,137,229,86,83,131,236,80,232,0,0,0,0,91,199,4,36,0,0,0,0,232,29,99,2,0,137,69,244,199,69,236,0,0,0,0,139,69,16,137,68,36,12,141,69,244,137,68,36,8,141,69,236,137,68,36,4,139,69,8,137,4,36,232,225,254,255,255,199,69,240,0,0,0,0,233,4,2,0,0,139,69,240, 193,224,2,137,194,139,69,244,141,4,2,139,0,137,4,36,232,104,69,0,0,137,69,228,139,69,228,139,64,12,137,69,220,131,125,228,0,117,19,141,131,186,183,4,0,137,4,36,232,0,72,3,0,233,196,1,0,0,139,69,240,193,224,2,137,194,139,69,244,141,4,2,139,0,139,0,131, 192,3,137,4,36,232,1,73,2,0,137,198,141,131,87,188,4,0,137,4,36,232,241,72,2,0,137,116,36,16,137,68,36,12,141,131,71,19,5,0,139,0,137,68,36,8,141,131,212,183,4,0,137,68,36,4,139,69,12,137,4,36,232,107,222,1,0,199,69,224,0,0,0,0,233,75,1,0,0,139,69,228, 139,72,16,139,85,224,137,208,1,192,1,208,193,224,2,141,4,1,139,0,137,69,212,131,125,212,1,116,41,131,125,212,1,127,8,131,125,212,0,116,16,235,72,131,125,212,2,116,53,131,125,212,3,116,28,235,58,141,131,243,17,5,0,139,0,137,69,216,235,70,141,131,67,19, 5,0,139,0,137,69,216,235,57,141,131,243,166,4,0,137,4,36,232,88,72,2,0,137,69,216,235,38,141,131,51,19,5,0,139,0,137,69,216,235,25,141,131,243,17,5,0,139,0,137,69,216,141,131,68,183,4,0,137,4,36,232,10,71,3,0,139,69,228,139,72,16,139,85,224,137,208,1, 192,1,208,193,224,2,141,4,1,139,0,131,248,3,117,101,139,69,228,139,72,16,139,85,224,137,208,1,192,1,208,193,224,2,141,4,1,139,64,8,139,0,131,192,3,137,4,36,232,236,71,2,0,137,198,139,69,228,139,72,16,139,85,224,137,208,1,192,1,208,193,224,2,141,4,1,139, 64,4,137,116,36,16,137,68,36,12,139,69,216,137,68,36,8,141,131,212,183,4,0,137,68,36,4,139,69,12,137,4,36,232,81,221,1,0,235,56,139,69,228,139,72,16,139,85,224,137,208,1,192,1,208,193,224,2,141,4,1,139,64,4,137,68,36,12,139,69,216,137,68,36,8,141,131, 216,183,4,0,137,68,36,4,139,69,12,137,4,36,232,23,221,1,0,255,69,224,139,69,224,59,69,220,15,140,169,254,255,255,139,69,12,137,4,36,232,63,225,1,0,255,69,240,139,69,236,57,69,240,15,140,240,253,255,255,131,196,80,91,94,201,195,85,137,229,83,131,236,36, 232,0,0,0,0,91,232,231,207,1,0,137,69,244,199,68,36,8,1,0,0,0,139,69,244,137,68,36,4,139,69,8,137,4,36,232,106,253,255,255,139,69,244,137,68,36,4,139,69,8,137,4,36,232,170,245,255,255,139,69,16,139,16,139,69,12,139,0,199,68,36,12,0,0,0,0,137,84,36,8, 137,68,36,4,139,69,244,137,4,36,232,216,243,1,0,133,192,116,7,232,152,70,3,0,235,120,139,69,8,139,64,40,133,192,117,30,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,121,14,254,255,232,10,9,254,255,139,69,12,139,16,139,69,16,139,0, 137,84,36,8,137,68,36,4,141,131,117,181,4,0,137,4,36,232,78,64,3,0,141,131,89,2,5,0,139,0,137,68,36,4,139,69,8,137,4,36,232,254,35,254,255,139,69,8,137,68,36,8,139,69,16,137,68,36,4,139,69,12,137,4,36,232,147,109,254,255,139,69,244,137,4,36,232,60,207, 1,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,4,36,232,122,56,254,255,137,69,244,139,69,244,137,4,36,232,169,11,254,255,139,16,139,69,244,139,128,144,0,0,0,139,0,137,84,36,12,137,68,36,8,139,69,244,137,68,36,4,141,131, 139,180,4,0,137,4,36,232,20,220,2,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,4,36,232,36,56,254,255,137,69,244,139,69,244,139,128,144,0,0,0,139,0,137,69,240,139,69,240,15,182,0,132,192,15,132,174,0,0,0,199,68,36,8,8, 0,0,0,141,131,89,180,4,0,137,68,36,4,139,69,240,137,4,36,232,245,8,5,0,133,192,15,132,137,0,0,0,139,69,240,137,4,36,232,220,8,5,0,131,248,3,118,78,139,69,240,137,4,36,232,204,8,5,0,3,69,240,141,80,252,141,131,125,217,4,0,137,68,36,4,137,20,36,232,168, 8,5,0,133,192,117,39,139,69,240,137,4,36,232,165,8,5,0,3,69,240,141,80,252,141,131,99,180,4,0,137,68,36,4,137,20,36,232,129,8,5,0,133,192,116,43,139,69,244,137,4,36,232,180,10,254,255,137,194,139,69,244,139,128,144,0,0,0,137,84,36,8,137,68,36,4,139,69, 244,137,4,36,232,205,253,255,255,235,11,139,69,244,137,4,36,232,186,254,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,205,132,4,0,137,4,36,232,227,68,2,0,137,194,141,139,12,242,255,255,141,131,191,13,5,0,139,0,139,0,199, 68,36,20,0,0,0,0,199,68,36,16,7,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,148,61,2,0,141,131,65,255,4,0,137,4,36,232,155,68,2,0,137,194,141,139,92,231,255,255,141,131,191,13,5,0,139,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,7,0, 0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,76,61,2,0,141,131,117,179,4,0,137,4,36,232,83,68,2,0,137,194,141,139,133,231,255,255,141,131,191,13,5,0,139,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,7,0,0,0,199,68,36,12,2,0,0,0,137,84,36, 8,137,76,36,4,137,4,36,232,4,61,2,0,141,131,127,179,4,0,137,4,36,232,11,68,2,0,137,194,141,139,174,253,255,255,141,131,191,13,5,0,139,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,2,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,188,60,2, 0,141,131,31,191,4,0,137,4,36,232,195,67,2,0,137,194,141,139,153,243,255,255,141,131,191,13,5,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,11,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,124,60,2,0,141,131,141,179,4,0,137,4,36,232,131,67,2,0,137,194, 141,139,254,254,255,255,141,131,191,13,5,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,68,60,2,0,141,131,150,179,4,0,137,4,36,232,75,67,2,0,137,194,141,139,168,254,255,255,141,131,191,13,5,0,139,0,139,0,199,68,36,12,0,0,0,0, 137,84,36,8,137,76,36,4,137,4,36,232,12,60,2,0,131,196,36,91,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,199,4,36,100,0,0,0,232,141,92,2,0,137,69,244,199,69,240,0,0,0,0,199,69,236,0,0,0,0,139,69,244,199,64,24,255,255,255,255,139,85,244,139,69, 12,137,66,36,139,85,244,139,69,8,137,66,40,139,69,8,139,128,140,0,0,0,139,80,12,139,69,244,137,80,96,139,69,244,199,64,32,0,0,0,0,139,69,244,139,80,32,139,69,244,137,80,28,139,69,244,139,80,28,139,69,244,137,80,16,139,69,244,139,80,16,139,69,244,137, 80,12,139,69,244,139,80,12,139,69,244,137,80,8,139,85,244,131,194,4,139,77,244,139,69,12,139,64,8,137,84,36,8,137,76,36,4,137,4,36,232,178,212,1,0,139,69,8,139,144,140,0,0,0,139,69,244,137,66,12,139,117,244,139,69,244,139,64,40,137,4,36,232,182,215,254, 255,186,255,255,255,255,139,77,244,131,193,44,137,116,36,20,137,68,36,16,141,131,191,177,4,0,137,68,36,12,137,84,36,8,199,68,36,4,0,0,0,0,137,12,36,232,45,3,5,0,139,69,244,131,196,48,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139, 64,40,139,128,140,0,0,0,139,64,20,59,69,8,117,19,139,69,8,139,64,40,139,128,140,0,0,0,199,64,20,0,0,0,0,139,69,8,139,64,40,139,128,140,0,0,0,139,64,12,59,69,8,117,23,139,69,8,139,64,40,139,144,140,0,0,0,139,69,8,139,64,96,137,66,12,235,60,139,69,8,139, 64,40,139,128,140,0,0,0,139,64,12,137,69,244,235,34,139,69,244,139,64,96,59,69,8,117,14,139,69,8,139,80,96,139,69,244,137,80,96,235,15,139,69,244,139,64,96,137,69,244,131,125,244,0,117,216,141,131,247,52,5,0,139,0,59,69,8,117,12,141,131,247,52,5,0,199, 0,0,0,0,0,139,69,8,139,64,4,137,194,139,69,8,139,0,137,84,36,4,137,4,36,232,179,92,2,0,199,68,36,4,100,0,0,0,139,69,8,137,4,36,232,160,92,2,0,131,196,36,91,201,195,85,137,229,131,236,8,139,69,8,131,192,44,201,195,85,137,229,131,236,8,139,69,8,139,16, 139,69,12,137,16,139,69,8,139,80,4,139,69,16,137,16,201,195,85,137,229,131,236,8,139,69,8,139,16,139,69,8,139,64,8,1,194,139,69,12,137,16,139,69,8,139,80,12,139,69,8,139,64,8,41,194,139,69,16,137,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139, 69,8,139,64,36,139,64,24,193,232,16,131,224,3,15,182,192,137,69,240,131,125,240,1,116,47,131,125,240,1,127,8,131,125,240,0,116,16,235,90,131,125,240,2,116,46,131,125,240,3,116,59,235,76,141,131,247,147,4,0,137,4,36,232,126,64,2,0,137,69,244,235,68,141, 131,5,160,4,0,137,4,36,232,107,64,2,0,137,69,244,235,49,141,131,129,175,4,0,137,4,36,232,88,64,2,0,137,69,244,235,30,141,131,133,175,4,0,137,4,36,232,69,64,2,0,137,69,244,235,11,141,131,161,9,5,0,139,0,137,69,244,139,69,244,131,196,36,91,201,195,85,137, 229,131,236,40,139,69,16,3,69,8,137,69,244,199,69,240,0,0,0,0,235,28,139,69,8,15,182,0,15,190,192,59,69,12,117,8,139,69,240,137,69,228,235,21,255,69,240,255,69,8,139,69,8,59,69,244,117,220,199,69,228,255,255,255,255,139,69,228,201,195,85,137,229,131, 236,40,139,69,16,3,69,8,137,69,244,235,28,255,77,244,255,77,16,139,69,244,15,182,0,15,190,192,59,69,12,117,8,139,69,16,137,69,228,235,15,139,69,244,59,69,8,117,220,199,69,228,255,255,255,255,139,69,228,201,195,85,137,229,86,83,129,236,192,1,0,0,232,0, 0,0,0,91,139,69,8,137,133,164,254,255,255,139,69,16,137,133,160,254,255,255,139,69,20,137,133,156,254,255,255,139,69,24,137,133,152,254,255,255,141,131,88,8,5,0,139,0,139,16,137,85,244,49,210,199,133,28,255,255,255,0,0,0,0,199,133,24,255,255,255,0,0, 0,0,199,133,20,255,255,255,0,0,0,0,199,133,244,254,255,255,0,0,0,0,139,133,164,254,255,255,139,64,40,137,4,36,232,147,212,254,255,137,133,240,254,255,255,139,133,164,254,255,255,139,64,36,15,183,64,24,152,137,133,236,254,255,255,131,189,236,254,255,255, 0,116,14,139,141,236,254,255,255,137,141,116,254,255,255,235,10,199,133,116,254,255,255,60,0,0,0,139,133,116,254,255,255,137,133,232,254,255,255,199,133,228,254,255,255,0,0,0,0,199,133,224,254,255,255,0,0,0,0,199,133,220,254,255,255,0,0,0,0,199,133,216, 254,255,255,0,0,0,0,139,133,164,254,255,255,139,80,4,139,133,164,254,255,255,139,0,137,84,36,4,137,4,36,232,190,67,3,0,137,133,212,254,255,255,139,133,164,254,255,255,139,64,36,139,16,141,131,96,8,5,0,139,0,139,0,57,194,117,73,139,133,164,254,255,255, 139,64,36,139,128,160,0,0,0,37,0,1,0,0,133,192,116,49,139,133,164,254,255,255,139,64,36,139,128,160,0,0,0,37,128,0,0,0,133,192,116,25,139,133,164,254,255,255,139,64,36,137,4,36,232,220,32,254,255,137,133,8,255,255,255,235,23,139,133,164,254,255,255,139, 64,40,137,4,36,232,195,32,254,255,137,133,8,255,255,255,139,133,8,255,255,255,137,4,36,232,188,244,2,0,137,133,4,255,255,255,139,133,8,255,255,255,137,4,36,232,190,244,2,0,137,133,0,255,255,255,139,133,160,254,255,255,139,8,139,149,4,255,255,255,137, 208,193,232,31,1,208,209,248,141,20,1,137,208,193,250,31,247,189,4,255,255,255,137,133,252,254,255,255,139,133,156,254,255,255,139,16,137,208,193,250,31,247,189,0,255,255,255,137,133,248,254,255,255,139,133,164,254,255,255,139,64,4,131,248,99,126,31, 139,133,164,254,255,255,139,64,4,1,192,64,137,4,36,232,25,87,2,0,137,133,32,255,255,255,233,178,3,0,0,141,133,44,255,255,255,137,133,32,255,255,255,233,161,3,0,0,139,133,164,254,255,255,139,64,4,43,133,228,254,255,255,137,133,208,254,255,255,139,149, 224,254,255,255,139,133,212,254,255,255,41,208,137,133,204,254,255,255,139,133,232,254,255,255,57,133,204,254,255,255,15,78,133,204,254,255,255,137,133,200,254,255,255,139,133,164,254,255,255,139,16,139,133,228,254,255,255,1,194,139,133,200,254,255,255, 137,68,36,4,137,20,36,232,179,65,3,0,137,133,196,254,255,255,199,133,192,254,255,255,1,0,0,0,139,133,164,254,255,255,139,16,139,133,228,254,255,255,1,194,139,133,196,254,255,255,137,68,36,8,199,68,36,4,10,0,0,0,137,20,36,232,167,252,255,255,137,133,188, 254,255,255,131,189,188,254,255,255,0,15,137,189,0,0,0,139,133,204,254,255,255,59,133,232,254,255,255,15,142,135,0,0,0,139,133,164,254,255,255,139,16,139,133,228,254,255,255,1,194,139,133,196,254,255,255,137,68,36,8,199,68,36,4,32,0,0,0,137,20,36,232, 160,252,255,255,137,133,188,254,255,255,131,189,188,254,255,255,0,121,36,139,133,196,254,255,255,137,133,188,254,255,255,139,133,200,254,255,255,137,133,184,254,255,255,199,133,192,254,255,255,0,0,0,0,235,118,139,133,164,254,255,255,139,16,139,133,228, 254,255,255,1,194,139,133,188,254,255,255,137,68,36,4,137,20,36,232,83,65,3,0,137,133,184,254,255,255,235,76,139,133,208,254,255,255,137,133,188,254,255,255,139,133,204,254,255,255,137,133,184,254,255,255,199,133,192,254,255,255,0,0,0,0,235,40,139,133, 164,254,255,255,139,16,139,133,228,254,255,255,1,194,139,133,188,254,255,255,137,68,36,4,137,20,36,232,5,65,3,0,137,133,184,254,255,255,139,133,24,255,255,255,59,133,248,254,255,255,117,120,131,189,252,254,255,255,0,120,29,139,133,184,254,255,255,57, 133,252,254,255,255,137,194,15,78,149,252,254,255,255,137,149,120,254,255,255,235,10,199,133,120,254,255,255,0,0,0,0,139,141,120,254,255,255,137,141,180,254,255,255,139,133,164,254,255,255,139,16,139,133,228,254,255,255,1,194,139,133,180,254,255,255, 137,68,36,4,137,20,36,232,21,64,3,0,137,194,3,149,228,254,255,255,139,133,152,254,255,255,137,16,199,133,244,254,255,255,1,0,0,0,184,255,255,255,255,131,248,255,116,61,185,255,255,255,255,139,181,188,254,255,255,139,133,164,254,255,255,139,16,139,133, 228,254,255,255,1,194,139,133,28,255,255,255,3,133,32,255,255,255,137,76,36,12,137,116,36,8,137,84,36,4,137,4,36,232,67,252,4,0,235,50,139,141,188,254,255,255,139,133,164,254,255,255,139,16,139,133,228,254,255,255,1,194,139,133,28,255,255,255,3,133,32, 255,255,255,137,76,36,8,137,84,36,4,137,4,36,232,209,5,0,0,139,133,164,254,255,255,139,64,8,59,133,228,254,255,255,124,58,139,133,164,254,255,255,139,80,8,139,133,188,254,255,255,3,133,228,254,255,255,3,133,192,254,255,255,57,194,127,27,139,133,164,254, 255,255,139,64,8,3,133,28,255,255,255,43,133,228,254,255,255,137,133,220,254,255,255,139,133,164,254,255,255,139,64,12,59,133,228,254,255,255,124,58,139,133,164,254,255,255,139,80,12,139,133,188,254,255,255,3,133,228,254,255,255,3,133,192,254,255,255, 57,194,127,27,139,133,164,254,255,255,139,64,12,3,133,28,255,255,255,43,133,228,254,255,255,137,133,216,254,255,255,139,133,188,254,255,255,1,133,28,255,255,255,139,133,192,254,255,255,3,133,188,254,255,255,1,133,228,254,255,255,139,133,192,254,255,255, 3,133,184,254,255,255,1,133,224,254,255,255,139,133,164,254,255,255,139,64,4,59,133,228,254,255,255,126,21,139,133,28,255,255,255,3,133,32,255,255,255,198,0,10,255,133,28,255,255,255,139,133,184,254,255,255,59,133,20,255,255,255,126,12,139,133,184,254, 255,255,137,133,20,255,255,255,255,133,24,255,255,255,139,133,224,254,255,255,139,149,212,254,255,255,137,209,41,193,137,200,133,192,15,143,69,252,255,255,131,189,244,254,255,255,0,117,14,139,149,152,254,255,255,139,133,28,255,255,255,137,2,139,133,164, 254,255,255,139,80,40,139,133,164,254,255,255,139,64,36,137,84,36,4,137,4,36,232,186,226,254,255,243,15,42,192,243,15,17,133,40,255,255,255,139,133,164,254,255,255,139,80,40,139,133,164,254,255,255,139,64,36,137,84,36,4,137,4,36,232,149,227,254,255,243, 15,42,192,243,15,17,133,36,255,255,255,131,189,24,255,255,255,0,127,10,199,133,24,255,255,255,1,0,0,0,131,189,236,254,255,255,0,117,40,235,27,139,133,28,255,255,255,3,133,32,255,255,255,198,0,32,255,133,28,255,255,255,255,133,20,255,255,255,131,189,20, 255,255,255,2,126,220,235,12,139,133,236,254,255,255,137,133,20,255,255,255,139,133,20,255,255,255,15,175,133,4,255,255,255,131,192,4,137,133,16,255,255,255,139,133,24,255,255,255,15,175,133,0,255,255,255,131,192,4,137,133,12,255,255,255,131,125,12,1, 15,133,14,1,0,0,139,133,164,254,255,255,139,64,40,137,194,139,133,164,254,255,255,139,64,40,137,84,36,4,137,4,36,232,219,72,254,255,133,192,116,14,141,131,178,185,4,0,137,133,124,254,255,255,235,12,141,147,138,156,4,0,137,149,124,254,255,255,139,133, 8,255,255,255,137,4,36,232,18,239,2,0,137,198,243,15,16,141,36,255,255,255,141,131,20,251,4,0,243,15,16,0,243,15,88,193,243,15,90,192,242,15,17,133,128,254,255,255,243,15,16,141,40,255,255,255,141,131,20,251,4,0,243,15,16,0,243,15,88,193,243,15,90,192, 242,15,17,133,136,254,255,255,139,133,164,254,255,255,137,4,36,232,85,247,255,255,139,16,139,141,164,254,255,255,131,193,44,139,133,124,254,255,255,137,68,36,44,137,116,36,40,139,133,32,255,255,255,137,68,36,36,139,133,28,255,255,255,137,68,36,32,242, 15,16,133,128,254,255,255,242,15,17,68,36,24,242,15,16,133,136,254,255,255,242,15,17,68,36,16,137,84,36,12,137,76,36,8,139,133,240,254,255,255,137,68,36,4,141,131,92,174,4,0,137,4,36,232,214,205,2,0,233,40,2,0,0,131,125,12,2,15,133,30,2,0,0,139,149,164, 254,255,255,131,194,44,139,133,32,255,255,255,137,68,36,16,139,133,28,255,255,255,137,68,36,12,137,84,36,8,139,133,240,254,255,255,137,68,36,4,141,131,148,174,4,0,137,4,36,232,142,205,2,0,139,133,164,254,255,255,139,64,28,59,133,16,255,255,255,117,17, 139,133,164,254,255,255,139,64,32,59,133,12,255,255,255,116,71,139,149,164,254,255,255,131,194,44,139,133,164,254,255,255,139,72,40,139,133,164,254,255,255,139,112,36,199,68,36,20,0,0,0,0,139,133,12,255,255,255,137,68,36,16,139,133,16,255,255,255,137, 68,36,12,137,84,36,8,137,76,36,4,137,52,36,232,169,199,0,0,139,133,164,254,255,255,139,64,16,133,192,15,132,107,1,0,0,139,133,216,254,255,255,59,133,220,254,255,255,15,142,217,0,0,0,139,133,164,254,255,255,139,16,139,133,220,254,255,255,137,68,36,4,137, 20,36,232,242,59,3,0,139,149,164,254,255,255,131,194,44,137,68,36,12,137,84,36,8,139,133,240,254,255,255,137,68,36,4,141,131,181,174,4,0,137,4,36,232,191,204,2,0,139,133,164,254,255,255,139,16,139,133,216,254,255,255,137,68,36,4,137,20,36,232,175,59, 3,0,137,133,144,254,255,255,141,131,64,9,5,0,139,0,139,0,133,192,116,12,199,133,148,254,255,255,0,0,0,0,235,10,199,133,148,254,255,255,255,255,255,255,139,133,144,254,255,255,3,133,148,254,255,255,139,149,164,254,255,255,131,194,44,137,68,36,12,137,84, 36,8,139,133,240,254,255,255,137,68,36,4,141,131,208,174,4,0,137,4,36,232,70,204,2,0,139,133,240,254,255,255,137,68,36,4,141,131,233,174,4,0,137,4,36,232,46,204,2,0,233,128,0,0,0,139,133,240,254,255,255,137,68,36,4,141,131,251,174,4,0,137,4,36,232,17, 204,2,0,139,133,164,254,255,255,139,16,139,133,220,254,255,255,137,68,36,4,137,20,36,232,1,59,3,0,139,149,164,254,255,255,131,194,44,137,68,36,12,137,84,36,8,139,133,240,254,255,255,137,68,36,4,141,131,17,175,4,0,137,4,36,232,206,203,2,0,139,133,164, 254,255,255,131,192,44,137,68,36,8,139,133,240,254,255,255,137,68,36,4,141,131,40,175,4,0,137,4,36,232,169,203,2,0,139,149,164,254,255,255,139,133,16,255,255,255,137,66,28,139,149,164,254,255,255,139,133,12,255,255,255,137,66,32,139,149,160,254,255,255, 139,133,16,255,255,255,137,2,139,149,156,254,255,255,139,133,12,255,255,255,137,2,141,133,44,255,255,255,59,133,32,255,255,255,116,30,139,133,164,254,255,255,139,64,4,1,192,64,137,68,36,4,139,133,32,255,255,255,137,4,36,232,155,80,2,0,141,131,88,8,5, 0,139,0,139,85,244,51,16,116,5,232,48,246,4,0,129,196,192,1,0,0,91,94,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,22,246,4,0,201,195,85,137,229,83,131,236,116,232,0, 0,0,0,91,199,69,244,0,0,0,0,199,69,240,0,0,0,0,139,69,8,139,64,36,137,69,232,139,69,8,139,64,4,137,194,139,69,8,139,0,137,84,36,4,137,4,36,232,22,80,2,0,139,85,8,131,194,4,139,77,8,139,69,232,139,64,8,137,84,36,8,137,76,36,4,137,4,36,232,206,198,1,0, 139,69,232,15,183,64,24,102,133,192,15,142,37,2,0,0,139,69,232,139,64,24,37,0,0,3,0,61,0,0,3,0,15,133,15,2,0,0,139,69,8,139,80,4,139,69,232,15,183,64,24,152,57,194,15,142,249,1,0,0,139,69,232,139,64,8,137,4,36,232,68,209,1,0,137,69,228,139,69,232,139, 64,8,137,4,36,232,38,209,1,0,137,69,224,139,69,8,139,64,4,137,69,220,131,125,224,1,15,133,100,1,0,0,139,69,228,139,0,131,248,1,15,133,86,1,0,0,139,69,232,15,183,64,24,15,191,208,139,69,220,41,208,137,69,216,199,69,212,0,0,0,0,139,69,8,139,16,139,69,220, 141,4,2,137,69,204,139,69,8,139,0,137,69,212,235,13,139,69,212,15,182,0,60,46,116,11,255,69,212,139,69,212,59,69,204,114,235,139,69,212,59,69,204,15,131,164,0,0,0,139,69,212,64,137,69,208,235,23,139,69,208,15,182,0,60,47,126,21,139,69,208,15,182,0,60, 57,127,11,255,69,208,139,69,208,59,69,204,114,225,139,85,208,139,69,212,137,209,41,193,137,200,72,59,69,216,124,106,139,69,216,137,194,139,69,208,41,208,137,69,200,139,69,216,3,69,200,137,69,196,235,17,139,69,196,15,182,16,139,69,200,136,16,255,69,200, 255,69,196,139,69,196,59,69,204,114,231,139,69,232,15,183,64,24,15,191,208,139,77,220,139,69,8,139,0,137,84,36,8,137,76,36,4,137,4,36,232,163,77,2,0,137,194,139,69,8,137,16,139,69,232,15,183,64,24,152,137,69,220,233,183,0,0,0,139,69,8,139,0,137,69,176, 139,69,228,243,15,16,72,4,141,131,246,239,4,0,243,15,16,0,15,46,193,119,2,235,6,198,69,183,45,235,4,198,69,183,43,15,182,69,183,139,85,176,136,2,139,85,220,139,69,8,139,0,199,68,36,8,1,0,0,0,137,84,36,4,137,4,36,232,60,77,2,0,137,194,139,69,8,137,16, 199,69,220,1,0,0,0,235,87,139,69,232,15,183,64,24,152,59,69,220,125,74,139,69,8,139,0,141,80,255,139,69,232,15,183,64,24,152,141,4,2,198,0,62,139,69,232,15,183,64,24,15,191,208,139,77,220,139,69,8,139,0,137,84,36,8,137,76,36,4,137,4,36,232,231,76,2,0, 137,194,139,69,8,137,16,139,69,232,15,183,64,24,152,137,69,220,139,85,8,139,69,220,137,66,4,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,199,68,36,4,2,0,0,0,139,69,8,137,4,36,232,133,242,255,255,131,196,116,91,201,195,85,137, 229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,128,140,0,0,0,133,192,117,11,139,69,8,137,4,36,232,101,94,254,255,139,69,8,139,128,140,0,0,0,139,64,12,137,69,244,235,9,139,69,244,139,64,96,137,69,244,131,125,244,0,116,11,139,69,244,139,64,36,59,69,12,117, 230,131,125,244,0,117,14,141,131,189,161,4,0,137,4,36,232,155,48,3,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236,56,199,69,244,0,0,0,0,199,69,240,0,0,0,0,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,199,68,36,4,0,0,0, 0,139,69,8,137,4,36,232,214,241,255,255,139,69,244,201,195,85,137,229,131,236,56,199,69,244,0,0,0,0,199,69,240,0,0,0,0,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,149,241,255,255,139, 69,240,201,195,85,137,229,131,236,56,199,69,244,0,0,0,0,199,69,240,0,0,0,0,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,199,68,36,4,1,0,0,0,139,69,8,137,4,36,232,84,241,255,255,201,195,85,137,229,86,83,131,236,16,232,0,0,0,0, 91,139,117,8,131,198,44,139,69,8,139,64,40,137,4,36,232,64,198,254,255,137,116,36,8,137,68,36,4,141,131,111,140,4,0,137,4,36,232,215,198,2,0,131,196,16,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,117,8,131,198,44,139,69,8,139,64,40,137, 4,36,232,1,198,254,255,137,194,139,69,16,137,68,36,16,139,69,12,137,68,36,12,137,116,36,8,137,84,36,4,141,131,99,160,4,0,137,4,36,232,136,198,2,0,131,196,32,91,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,64,40,137,69,244,139,69,244, 137,4,36,232,179,197,254,255,137,69,240,131,125,12,0,116,11,141,131,122,170,4,0,137,69,228,235,9,141,147,82,141,4,0,137,85,228,139,69,8,131,192,44,139,85,228,137,84,36,12,137,68,36,8,139,69,240,137,68,36,4,141,131,44,160,4,0,137,4,36,232,29,198,2,0,141, 131,116,249,4,0,139,0,139,85,240,137,16,131,196,52,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,199,69,244,0,0,0,0,199,69,240,0,0,0,0,139,69,8,139,64,40,137,69,232,139,69,232,137,4,36,232,46,197,254,255,137,69,228,131,125,12,0,116,110,139,69,8, 131,192,44,137,68,36,8,139,69,228,137,68,36,4,141,131,216,159,4,0,137,4,36,232,179,197,2,0,139,69,232,139,144,140,0,0,0,139,69,8,137,66,20,139,69,232,139,144,140,0,0,0,139,66,80,131,224,239,137,66,80,139,69,8,199,64,8,0,0,0,0,139,69,8,139,80,8,139,69, 8,137,80,20,139,69,8,139,80,4,139,69,8,137,80,12,139,69,8,199,64,16,1,0,0,0,235,64,139,69,228,137,68,36,4,141,131,246,159,4,0,137,4,36,232,79,197,2,0,139,69,232,139,128,140,0,0,0,139,64,20,59,69,8,117,16,139,69,232,139,128,140,0,0,0,199,64,20,0,0,0,0, 139,69,8,199,64,16,0,0,0,0,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,199,68,36,4,2,0,0,0,139,69,8,137,4,36,232,63,239,255,255,131,196,68,91,201,195,85,137,229,87,86,83,131,236,92,232,0,0,0,0,91,199,69,228,0,0,0,0,199,69,224, 0,0,0,0,131,125,12,0,15,132,230,2,0,0,139,69,12,137,69,196,131,125,196,13,117,7,199,69,196,10,0,0,0,131,125,196,8,117,51,139,69,8,139,64,8,133,192,116,102,139,69,8,139,80,8,139,69,8,139,64,12,57,194,117,86,139,69,8,131,192,8,139,85,8,139,18,137,68,36, 4,137,20,36,232,76,53,3,0,235,61,131,125,196,127,117,55,139,69,8,139,80,12,139,69,8,139,64,4,57,194,125,39,139,69,8,139,80,8,139,69,8,139,64,12,57,194,117,23,139,69,8,131,192,12,139,85,8,139,18,137,68,36,4,137,20,36,232,131,52,3,0,139,69,8,139,80,12, 139,69,8,139,64,8,137,209,41,193,137,200,137,69,208,139,69,8,139,64,12,137,69,216,235,34,139,69,8,139,8,139,85,208,139,69,216,41,208,1,193,139,69,8,139,16,139,69,216,141,4,2,15,182,0,136,1,255,69,216,139,69,8,139,64,4,59,69,216,127,211,139,69,8,139,64, 4,43,69,208,137,69,212,139,77,212,139,69,8,139,64,4,137,194,139,69,8,139,0,137,76,36,8,137,84,36,4,137,4,36,232,47,72,2,0,137,194,139,69,8,137,16,139,85,8,139,69,212,137,66,4,131,125,196,10,116,20,131,125,196,31,15,142,161,0,0,0,131,125,196,126,15,143, 151,0,0,0,139,69,8,139,64,4,64,137,69,212,139,77,212,139,69,8,139,64,4,137,194,139,69,8,139,0,137,76,36,8,137,84,36,4,137,4,36,232,219,71,2,0,137,194,139,69,8,137,16,139,69,8,139,64,4,137,69,216,235,33,139,69,8,139,16,139,69,216,141,12,2,139,69,8,139, 0,141,80,255,139,69,216,141,4,2,15,182,0,136,1,255,77,216,139,69,8,139,64,8,59,69,216,124,212,139,69,8,139,16,139,69,8,139,64,8,1,194,139,69,196,136,2,139,85,8,139,69,212,137,66,4,139,69,8,139,64,8,141,80,1,139,69,8,137,80,8,233,253,0,0,0,131,125,196, 127,15,142,243,0,0,0,139,69,196,137,4,36,232,3,48,3,0,137,69,192,139,69,8,139,64,4,3,69,192,137,69,212,139,77,212,139,69,8,139,64,4,137,194,139,69,8,139,0,137,76,36,8,137,84,36,4,137,4,36,232,42,71,2,0,137,194,139,69,8,137,16,139,69,8,139,64,4,137,69, 216,235,33,139,69,8,139,16,139,69,216,141,12,2,139,69,8,139,0,141,80,255,139,69,216,141,4,2,15,182,0,136,1,255,77,216,139,69,8,139,64,8,59,69,216,124,212,139,69,8,139,85,212,137,80,4,184,255,255,255,255,131,248,255,116,49,190,255,255,255,255,139,125, 192,139,69,16,139,8,139,69,8,139,16,139,69,8,139,64,8,141,4,2,137,116,36,12,137,124,36,8,137,76,36,4,137,4,36,232,97,237,4,0,235,38,139,77,192,139,69,16,139,48,139,69,8,139,16,139,69,8,139,64,8,141,4,2,137,76,36,8,137,116,36,4,137,4,36,232,251,246,255, 255,139,69,8,139,64,8,137,194,3,85,192,139,69,8,137,80,8,139,69,8,139,80,8,139,69,8,137,80,12,139,69,8,139,64,40,139,144,140,0,0,0,139,66,80,131,200,16,137,66,80,233,243,1,0,0,139,69,16,139,16,141,131,95,134,4,0,137,68,36,4,137,20,36,232,251,238,4,0, 133,192,117,89,139,69,8,139,80,12,139,69,8,139,64,8,57,194,117,56,139,69,8,139,80,8,139,69,8,139,64,4,57,194,125,40,139,85,8,131,194,8,139,69,8,139,0,137,84,36,4,137,4,36,232,212,49,3,0,139,69,8,139,80,8,139,69,8,137,80,12,233,144,1,0,0,139,69,8,139, 80,12,139,69,8,137,80,8,233,127,1,0,0,139,69,16,139,16,141,131,90,134,4,0,137,68,36,4,137,20,36,232,135,238,4,0,133,192,117,83,139,69,8,139,80,12,139,69,8,139,64,8,57,194,117,50,139,69,8,139,64,8,133,192,126,40,139,85,8,131,194,8,139,69,8,139,0,137,84, 36,4,137,4,36,232,240,49,3,0,139,69,8,139,80,8,139,69,8,137,80,12,233,34,1,0,0,139,69,8,139,80,8,139,69,8,137,80,12,233,17,1,0,0,139,69,16,139,16,141,131,1,159,4,0,137,68,36,4,137,20,36,232,25,238,4,0,133,192,117,106,139,69,8,139,64,8,133,192,116,48, 139,69,8,131,192,8,139,85,8,139,18,137,68,36,4,137,20,36,232,146,49,3,0,235,23,139,69,8,131,192,8,139,85,8,139,18,137,68,36,4,137,20,36,232,121,49,3,0,139,69,8,139,64,8,133,192,126,21,139,69,8,139,16,139,69,8,139,64,8,141,4,2,15,182,0,60,10,117,202,139, 69,8,139,80,8,139,69,8,137,80,12,233,140,0,0,0,139,69,16,139,16,141,131,85,134,4,0,137,68,36,4,137,20,36,232,148,237,4,0,133,192,117,113,235,23,139,69,8,131,192,12,139,85,8,139,18,137,68,36,4,137,20,36,232,139,48,3,0,139,69,8,139,80,12,139,69,8,139,64, 4,57,194,125,21,139,69,8,139,16,139,69,8,139,64,12,141,4,2,15,182,0,60,10,117,196,139,69,8,139,80,12,139,69,8,139,64,4,57,194,125,23,139,69,8,131,192,12,139,85,8,139,18,137,68,36,4,137,20,36,232,63,48,3,0,139,69,8,139,80,12,139,69,8,137,80,8,141,69,220, 137,68,36,16,141,69,224,137,68,36,12,141,69,228,137,68,36,8,199,68,36,4,2,0,0,0,139,69,8,137,4,36,232,17,234,255,255,131,196,92,91,94,95,201,195,85,137,229,131,236,72,139,69,12,137,69,244,139,69,16,137,69,240,141,69,236,137,68,36,16,141,69,240,137,68, 36,12,141,69,244,137,68,36,8,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,207,233,255,255,131,125,20,1,117,38,139,85,236,139,69,8,137,80,12,139,69,8,139,80,12,139,69,8,137,80,8,139,69,8,139,80,8,139,69,8,137,80,20,233,146,2,0,0,131,125,20,3,15,133,3,2,0, 0,139,69,8,199,64,20,255,255,255,255,199,69,232,0,0,0,0,139,85,236,139,69,8,139,0,137,84,36,8,199,68,36,4,32,0,0,0,137,4,36,232,43,233,255,255,137,69,228,139,69,228,59,69,232,126,7,139,69,228,64,137,69,232,139,85,236,139,69,8,139,0,137,84,36,8,199,68, 36,4,10,0,0,0,137,4,36,232,253,232,255,255,137,69,228,139,69,228,59,69,232,126,7,139,69,228,64,137,69,232,139,85,236,139,69,8,139,0,137,84,36,8,199,68,36,4,59,0,0,0,137,4,36,232,207,232,255,255,137,69,228,139,69,228,59,69,232,126,7,139,69,228,64,137, 69,232,139,85,236,139,69,8,139,0,137,84,36,8,199,68,36,4,44,0,0,0,137,4,36,232,161,232,255,255,137,69,228,139,69,228,59,69,232,126,7,139,69,228,64,137,69,232,139,85,8,139,69,232,137,66,8,139,69,8,139,80,4,139,69,236,137,209,41,193,137,200,137,69,232, 139,69,8,139,80,4,139,69,236,137,209,41,193,139,69,8,139,16,139,69,236,141,4,2,137,76,36,8,199,68,36,4,32,0,0,0,137,4,36,232,0,232,255,255,137,69,228,131,125,228,0,120,14,139,69,228,59,69,232,125,6,139,69,228,137,69,232,139,69,8,139,80,4,139,69,236,137, 209,41,193,139,69,8,139,16,139,69,236,141,4,2,137,76,36,8,199,68,36,4,10,0,0,0,137,4,36,232,189,231,255,255,137,69,228,131,125,228,0,120,14,139,69,228,59,69,232,125,6,139,69,228,137,69,232,139,69,8,139,80,4,139,69,236,137,209,41,193,139,69,8,139,16,139, 69,236,141,4,2,137,76,36,8,199,68,36,4,59,0,0,0,137,4,36,232,122,231,255,255,137,69,228,131,125,228,0,120,14,139,69,228,59,69,232,125,6,139,69,228,137,69,232,139,69,8,139,80,4,139,69,236,137,209,41,193,139,69,8,139,16,139,69,236,141,4,2,137,76,36,8,199, 68,36,4,44,0,0,0,137,4,36,232,55,231,255,255,137,69,228,131,125,228,0,120,14,139,69,228,59,69,232,125,6,139,69,228,137,69,232,139,69,236,137,194,3,85,232,139,69,8,137,80,12,233,133,0,0,0,131,125,20,4,117,71,139,69,236,141,12,0,139,69,8,139,80,8,139,69, 8,139,64,12,141,4,2,57,193,126,23,139,69,8,139,80,8,139,69,8,137,80,20,139,85,236,139,69,8,137,80,12,235,79,139,69,8,139,80,12,139,69,8,137,80,20,139,85,236,139,69,8,137,80,8,235,56,131,125,20,2,117,50,139,69,8,139,64,20,133,192,120,80,139,69,8,139,80, 20,139,69,236,57,194,15,79,208,139,69,8,137,80,8,139,69,8,139,80,20,139,69,236,57,194,15,76,208,139,69,8,137,80,12,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,199,68,36,4,2,0,0,0,139,69,8,137,4,36,232,233,230,255,255,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,64,12,137,69,240,139,69,12,139,64,16,137,69,236,199,69,244,0,0,0,0,233,146,0,0,0,139,69,236,139,0,137,69,232,131,125,232,0,117,15,139,69,8,141,147,159,225,4,0,139,18,137,16,235,106,131,125,232,1,117, 15,139,69,8,141,147,35,240,4,0,139,18,137,16,235,85,131,125,232,3,117,30,139,69,236,139,80,8,139,69,16,137,68,36,4,137,20,36,232,228,122,253,255,137,194,139,69,8,137,16,235,49,131,125,232,2,117,43,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4, 0,0,0,0,199,4,36,0,0,0,0,232,130,243,253,255,137,194,139,69,8,137,16,255,69,244,131,69,236,12,131,69,8,4,139,69,244,59,69,240,15,140,98,255,255,255,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,12,139,64,12,137,69,240,139,69,12, 139,64,16,137,69,236,199,69,244,0,0,0,0,233,129,0,0,0,139,69,236,139,0,137,69,232,131,125,232,0,117,50,131,125,16,0,116,23,139,69,20,137,4,36,232,46,166,1,0,217,93,228,131,69,20,8,255,77,16,235,11,141,131,208,224,4,0,139,0,137,69,228,139,85,8,139,69, 228,137,2,235,54,131,125,232,1,117,48,131,125,16,0,116,23,139,69,20,137,4,36,232,74,166,1,0,137,69,224,131,69,20,8,255,77,16,235,11,141,131,140,238,4,0,139,0,137,69,224,139,85,8,139,69,224,137,2,255,69,244,131,69,236,12,131,69,8,4,139,69,244,59,69,240, 15,140,115,255,255,255,131,125,16,0,116,14,141,131,232,149,4,0,137,4,36,232,178,30,3,0,131,196,52,91,201,195,85,137,229,131,236,40,139,69,12,139,64,16,137,69,240,199,69,244,0,0,0,0,235,67,139,69,240,139,0,131,248,3,117,21,139,69,244,193,224,2,3,69,8, 139,0,137,4,36,232,199,123,253,255,235,29,139,69,240,139,0,131,248,2,117,19,139,69,244,193,224,2,3,69,8,139,0,137,4,36,232,127,7,254,255,255,69,244,131,69,240,12,139,69,12,139,64,12,59,69,244,127,178,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,141, 69,228,137,4,36,232,165,237,0,0,139,69,12,137,4,36,232,131,32,0,0,137,69,240,131,125,240,0,117,32,139,69,12,139,0,137,68,36,4,141,131,214,148,4,0,137,4,36,232,186,32,3,0,199,69,212,0,0,0,0,235,106,139,69,240,139,64,12,193,224,2,131,192,12,137,4,36,232, 173,61,2,0,137,69,244,141,131,206,237,4,0,139,0,139,16,139,69,244,137,16,139,85,244,139,69,12,137,66,8,139,69,244,137,68,36,8,139,69,8,137,68,36,4,141,69,228,137,4,36,232,123,236,0,0,139,85,244,131,194,12,141,69,228,137,68,36,8,139,69,240,137,68,36,4, 137,20,36,232,71,253,255,255,139,69,244,137,69,212,139,69,212,131,196,68,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,81,166,1,0,137,4,36,232,197,254,253,255,137,69,244,199,69,232, 0,0,0,0,139,69,244,137,4,36,232,163,31,0,0,133,192,117,55,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,22,166,1,0,139,0,137,68,36,8,141,131,41,143,4,0,137,68,36,4,139,69,8,137,4,36,232,237,32,3,0,235,112,232,243,171,1,0,137,69,240, 139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,240,137,4,36,232,55,189,1,0,139,69,240,137,4,36,232,19,192,1,0,137,69,236,139,69,240,137,4,36,232,18,192,1,0,137,69,228,199,68,36,16,0,0,0,0,141,69,232,137,68,36,12,139,69,228,137,68,36,8,139,69,236, 137,68,36,4,139,69,8,137,4,36,232,64,190,255,255,139,69,240,137,4,36,232,191,171,1,0,131,196,68,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,139,64,8,137,4,36,232,214,30,0,0,137,69,244,139,117,8,131,198,12,141,131,68,147,4,0,137,4,36, 232,154,34,2,0,199,68,36,12,0,0,0,0,137,116,36,8,137,68,36,4,139,69,244,137,4,36,232,55,18,0,0,139,69,12,217,24,139,117,8,131,198,12,141,131,13,152,4,0,137,4,36,232,102,34,2,0,199,68,36,12,0,0,0,0,137,116,36,8,137,68,36,4,139,69,244,137,4,36,232,3,18, 0,0,139,69,16,217,24,131,196,32,91,94,201,195,85,137,229,87,86,131,196,128,139,69,8,137,69,244,139,69,244,139,64,8,137,4,36,232,72,30,0,0,137,69,240,139,69,240,137,4,36,232,100,30,0,0,137,69,236,199,69,232,255,255,255,127,199,69,228,1,0,0,128,199,69, 224,255,255,255,127,199,69,220,1,0,0,128,141,69,208,137,68,36,8,141,69,212,137,68,36,4,139,69,244,137,4,36,232,16,255,255,255,131,125,236,0,117,75,139,69,212,137,68,36,4,139,69,12,137,4,36,232,58,199,254,255,217,93,176,243,15,44,69,176,137,69,228,139, 69,228,137,69,232,139,69,208,137,68,36,4,139,69,12,137,4,36,232,155,200,254,255,217,93,180,243,15,44,69,180,137,69,220,139,69,220,137,69,224,233,3,1,0,0,199,69,224,255,255,255,127,139,69,224,137,69,232,199,69,220,1,0,0,128,139,69,220,137,69,228,139,69, 236,139,64,28,137,69,216,233,168,0,0,0,139,69,216,137,4,36,232,140,30,2,0,137,69,204,131,125,204,0,15,132,135,0,0,0,139,69,204,139,16,139,77,208,139,117,212,139,125,244,131,199,12,141,69,188,137,68,36,36,141,69,192,137,68,36,32,141,69,196,137,68,36,28, 141,69,200,137,68,36,24,137,76,36,20,137,116,36,16,139,69,240,137,68,36,12,137,124,36,8,139,69,12,137,68,36,4,139,69,216,137,4,36,255,210,139,69,200,59,69,232,125,6,139,69,200,137,69,232,139,69,196,59,69,224,125,6,139,69,196,137,69,224,139,69,192,59, 69,228,126,6,139,69,192,137,69,228,139,69,188,59,69,220,126,6,139,69,188,137,69,220,139,69,216,139,64,4,137,69,216,131,125,216,0,15,133,78,255,255,255,139,69,228,59,69,232,124,8,139,69,220,59,69,224,125,25,199,69,220,0,0,0,0,139,69,220,137,69,228,139, 69,228,137,69,224,139,69,224,137,69,232,139,85,16,139,69,232,137,2,139,85,20,139,69,224,137,2,139,85,24,139,69,228,137,2,139,85,28,139,69,220,137,2,131,236,128,94,95,201,195,85,137,229,87,86,83,131,236,124,232,0,0,0,0,91,131,125,16,0,15,132,232,0,0,0, 139,85,8,141,69,216,137,68,36,20,141,69,220,137,68,36,16,141,69,224,137,68,36,12,141,69,228,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,220,253,255,255,139,69,228,72,137,69,228,139,69,220,64,137,69,220,139,69,224,72,137,69,224,139,69,216,64,137,69, 216,139,117,224,139,125,228,139,69,224,137,69,184,139,69,220,137,69,188,139,69,216,137,69,192,139,69,220,137,69,196,139,69,216,137,69,200,139,69,228,137,69,204,139,69,224,137,69,208,139,69,228,137,69,212,139,69,12,137,4,36,232,43,181,254,255,137,194, 139,69,8,137,68,36,48,137,116,36,44,137,124,36,40,139,69,184,137,68,36,36,139,69,188,137,68,36,32,139,69,192,137,68,36,28,139,69,196,137,68,36,24,139,69,200,137,68,36,20,139,69,204,137,68,36,16,139,69,208,137,68,36,12,139,69,212,137,68,36,8,137,84,36, 4,141,131,221,144,4,0,137,4,36,232,125,181,2,0,235,38,139,69,12,137,4,36,232,195,180,254,255,137,194,139,69,8,137,68,36,8,137,84,36,4,141,131,64,145,4,0,137,4,36,232,85,181,2,0,131,196,124,91,94,95,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139, 69,8,137,69,244,139,69,244,139,64,8,137,69,236,141,69,216,137,4,36,232,72,232,0,0,139,69,244,137,68,36,8,139,69,12,137,68,36,4,141,69,216,137,4,36,232,129,231,0,0,199,69,228,3,0,0,0,141,69,216,137,69,232,139,69,236,137,4,36,232,0,27,0,0,137,69,240,131, 125,240,0,116,75,131,125,16,0,116,19,141,131,45,144,4,0,137,4,36,232,190,30,2,0,137,69,212,235,17,141,131,52,144,4,0,137,4,36,232,171,30,2,0,137,69,212,141,69,228,137,68,36,12,199,68,36,8,1,0,0,0,139,69,212,137,68,36,4,139,69,240,137,4,36,232,33,27,0, 0,141,69,216,137,4,36,232,222,230,0,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,244,137,4,36,232,1,254,255,255,131,196,68,91,201,195,85,137,229,86,83,129,236,144,0,0,0,232,0,0,0,0,91,139,69,8,137,69,244,139,69,244,139,64,8,137,69,240,139,69, 240,137,4,36,232,87,26,0,0,137,69,236,131,125,236,0,117,28,139,69,240,139,0,137,68,36,4,141,131,174,142,4,0,137,4,36,232,142,26,3,0,233,69,2,0,0,141,131,209,142,4,0,137,4,36,232,255,29,2,0,137,194,141,69,232,137,68,36,16,141,69,220,137,68,36,12,141,69, 228,137,68,36,8,137,84,36,4,139,69,236,137,4,36,232,203,12,0,0,137,69,212,131,125,212,0,116,14,139,69,220,133,192,116,7,199,69,212,0,0,0,0,141,131,154,147,4,0,137,4,36,232,180,29,2,0,137,194,141,69,232,137,68,36,16,141,69,216,137,68,36,12,141,69,224, 137,68,36,8,137,84,36,4,139,69,236,137,4,36,232,128,12,0,0,137,69,208,131,125,208,0,116,14,139,69,216,133,192,116,7,199,69,208,0,0,0,0,131,125,212,0,116,125,139,69,244,131,192,12,137,194,139,69,228,141,4,2,137,198,139,69,244,131,192,12,137,194,139,69, 228,141,4,2,243,15,16,0,243,15,17,69,136,243,15,42,69,16,243,15,17,69,140,141,131,114,217,4,0,139,0,137,68,36,4,139,69,12,137,4,36,232,154,191,254,255,217,93,144,141,131,110,217,4,0,139,0,137,68,36,4,139,69,12,137,4,36,232,128,191,254,255,217,93,148, 243,15,16,69,144,243,15,92,69,148,243,15,89,69,140,243,15,88,69,136,243,15,17,6,131,125,208,0,116,125,139,69,244,131,192,12,137,194,139,69,224,141,4,2,137,198,139,69,244,131,192,12,137,194,139,69,224,141,4,2,243,15,16,0,243,15,17,69,152,243,15,42,69, 20,243,15,17,69,156,141,131,114,217,4,0,139,0,137,68,36,4,139,69,12,137,4,36,232,153,192,254,255,217,93,160,141,131,110,217,4,0,139,0,137,68,36,4,139,69,12,137,4,36,232,127,192,254,255,217,93,164,243,15,16,69,160,243,15,92,69,164,243,15,89,69,156,243, 15,88,69,152,243,15,17,6,141,69,196,137,4,36,232,162,229,0,0,139,69,244,137,68,36,8,139,69,12,137,68,36,4,141,69,196,137,4,36,232,219,228,0,0,199,69,172,3,0,0,0,141,69,196,137,69,176,141,69,172,131,192,8,199,0,1,0,0,0,141,69,172,131,192,8,243,15,42,69, 16,243,15,17,64,4,141,69,172,131,192,16,199,0,1,0,0,0,141,69,172,131,192,16,243,15,42,69,20,243,15,17,64,4,141,131,99,143,4,0,137,4,36,232,250,27,2,0,137,194,141,69,172,137,68,36,12,199,68,36,8,2,0,0,0,137,84,36,4,139,69,236,137,4,36,232,116,24,0,0,139, 69,12,137,68,36,4,139,69,244,137,4,36,232,57,2,0,0,129,196,144,0,0,0,91,94,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,8,201,195,85,137,229,87,86,83,131,236,108,232,0,0,0,0,91,139,69,8,137,69,228,139,69,228,139,64,8,137,4,36,232,176,23,0, 0,137,69,224,139,69,224,137,4,36,232,204,23,0,0,137,69,220,141,69,208,137,68,36,8,141,69,212,137,68,36,4,139,69,228,137,4,36,232,148,248,255,255,131,125,220,0,15,133,198,0,0,0,131,125,16,0,15,132,145,0,0,0,139,69,212,137,68,36,4,139,69,12,137,4,36,232, 176,192,254,255,217,93,168,243,15,44,69,168,137,69,204,139,69,208,137,68,36,4,139,69,12,137,4,36,232,23,194,254,255,217,93,172,243,15,44,69,172,137,69,200,139,117,200,70,139,125,204,71,139,69,200,72,137,69,176,139,69,204,72,137,69,180,139,69,12,137,4, 36,232,95,176,254,255,137,194,139,69,228,137,68,36,24,137,116,36,20,137,124,36,16,139,69,176,137,68,36,12,139,69,180,137,68,36,8,137,84,36,4,141,131,193,140,4,0,137,4,36,232,219,176,2,0,233,233,0,0,0,139,69,12,137,4,36,232,30,176,254,255,137,194,139, 69,228,137,68,36,8,137,84,36,4,141,131,247,140,4,0,137,4,36,232,176,176,2,0,233,190,0,0,0,139,69,220,139,64,28,137,69,216,235,88,139,69,216,137,4,36,232,174,23,2,0,137,69,196,131,125,196,0,116,59,139,69,196,139,120,16,139,85,208,139,77,212,139,117,228, 131,198,12,139,69,16,137,68,36,24,137,84,36,20,137,76,36,16,139,69,224,137,68,36,12,137,116,36,8,139,69,12,137,68,36,4,139,69,216,137,4,36,255,215,139,69,216,139,64,4,137,69,216,131,125,216,0,117,162,139,69,228,137,68,36,4,139,69,12,137,4,36,232,76,42, 254,255,133,192,116,52,199,68,36,8,0,0,0,0,139,69,12,137,68,36,4,139,69,228,137,4,36,232,150,249,255,255,199,68,36,8,1,0,0,0,139,69,12,137,68,36,4,139,69,228,137,4,36,232,124,249,255,255,139,69,228,137,4,36,232,120,183,2,0,131,196,108,91,94,95,201,195, 85,137,229,131,236,24,199,68,36,8,0,0,0,0,139,69,12,137,68,36,4,139,69,8,137,4,36,232,253,253,255,255,199,68,36,8,1,0,0,0,139,69,12,137,68,36,4,139,69,8,137,4,36,232,227,253,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,12,137,4,36,232, 153,251,253,255,133,192,116,28,141,131,184,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,80,182,2,0,131,196,20,91,201,195,85,137,229,83,129,236,132,0,0,0,232,0,0,0,0,91,199,69,244,0,0,0,0,139,69,12,137,4,36,232,126,21,0,0,137,69, 240,141,131,198,137,4,0,137,4,36,232,30,25,2,0,137,194,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,137,84,36,4,139,69,12,137,4,36,232,182,8,0,0,217,93,232,141,131,143,142,4,0,137,4,36,232,237,24,2,0,137,194,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,137, 84,36,4,139,69,12,137,4,36,232,133,8,0,0,217,93,228,199,69,208,1,0,0,0,243,15,16,69,232,243,15,88,69,28,243,15,17,69,212,141,69,208,131,192,8,199,0,1,0,0,0,141,69,208,131,192,8,243,15,16,69,228,243,15,88,69,32,243,15,17,64,4,131,125,56,0,116,60,141,131, 151,105,4,0,137,4,36,232,127,24,2,0,137,194,141,69,208,137,68,36,20,199,68,36,16,2,0,0,0,137,84,36,12,139,69,16,137,68,36,8,139,69,24,137,68,36,4,139,69,12,137,4,36,232,35,21,0,0,139,69,240,139,64,28,137,69,236,233,176,0,0,0,139,69,236,137,4,36,232,107, 21,2,0,137,69,224,131,125,224,0,15,132,143,0,0,0,139,69,224,139,80,20,243,15,16,69,228,15,40,200,243,15,88,77,32,243,15,16,69,232,243,15,88,69,28,139,69,56,137,68,36,52,139,69,52,137,68,36,48,139,69,48,137,68,36,44,139,69,44,137,68,36,40,139,69,40,137, 68,36,36,139,69,36,137,68,36,32,243,15,17,76,36,28,243,15,17,68,36,24,139,69,20,137,68,36,20,139,69,16,137,68,36,16,139,69,12,137,68,36,12,139,69,8,137,68,36,8,139,69,24,137,68,36,4,139,69,236,137,4,36,255,210,137,69,244,131,125,244,0,116,8,139,69,244, 137,69,196,235,26,139,69,236,139,64,4,137,69,236,131,125,236,0,15,133,70,255,255,255,199,69,196,0,0,0,0,139,69,196,129,196,132,0,0,0,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,137,69,244,139,69,244,139,64,8,137,4,36,232,122,19,0,0,137, 69,240,139,85,244,131,194,12,139,69,36,137,68,36,48,139,69,32,137,68,36,44,139,69,28,137,68,36,40,139,69,24,137,68,36,36,139,69,20,137,68,36,32,139,69,16,137,68,36,28,141,131,139,210,4,0,139,0,137,68,36,24,141,131,139,210,4,0,139,0,137,68,36,20,139,69, 12,137,68,36,16,199,68,36,12,0,0,0,0,139,69,244,137,68,36,8,139,69,240,137,68,36,4,137,20,36,232,148,253,255,255,131,196,84,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,69,244,232,124,159,1,0,137,69,240,139,77,244,131,193,12,139,69, 244,139,80,8,199,68,36,12,0,0,0,0,139,69,240,137,68,36,8,137,76,36,4,137,20,36,232,159,187,255,255,141,131,70,136,4,0,137,4,36,232,143,22,2,0,137,68,36,12,141,131,180,223,4,0,139,0,137,68,36,8,141,131,13,133,4,0,137,68,36,4,139,69,12,137,4,36,232,13, 172,1,0,139,69,240,137,68,36,4,139,69,12,137,4,36,232,99,173,1,0,139,69,12,137,4,36,232,50,176,1,0,139,69,240,137,4,36,232,46,159,1,0,131,196,52,91,201,195,85,137,229,83,129,236,148,0,0,0,232,0,0,0,0,91,139,69,8,137,69,132,139,69,12,137,69,128,141,131, 242,222,4,0,139,0,139,16,137,85,244,49,210,139,69,132,137,69,160,139,69,128,137,4,36,232,17,42,254,255,139,69,132,137,68,36,4,139,69,128,137,4,36,232,118,38,254,255,199,68,36,4,0,0,0,0,139,69,128,137,4,36,232,183,191,255,255,137,69,148,141,69,152,137, 68,36,8,141,69,156,137,68,36,4,139,69,148,137,4,36,232,8,168,1,0,139,69,148,137,4,36,232,160,158,1,0,139,69,152,64,137,193,139,69,152,139,85,156,137,76,36,8,137,68,36,4,137,20,36,232,20,48,2,0,137,69,156,139,85,156,139,69,152,141,4,2,198,0,0,141,131, 170,135,4,0,137,68,36,12,199,68,36,8,80,0,0,0,199,68,36,4,0,0,0,0,141,69,164,137,4,36,232,121,214,4,0,139,85,128,141,69,164,137,68,36,8,139,69,160,137,68,36,4,137,20,36,232,181,143,3,0,139,69,156,137,4,36,232,48,174,2,0,141,131,193,135,4,0,137,4,36,232, 34,174,2,0,139,69,152,64,139,85,156,137,68,36,4,137,20,36,232,145,48,2,0,141,131,242,222,4,0,139,0,139,85,244,51,16,116,5,232,38,214,4,0,129,196,148,0,0,0,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,64,8,137,69,232,139,69,232,137, 4,36,232,6,17,0,0,137,69,228,131,125,228,0,117,25,139,69,232,139,0,137,68,36,4,141,131,87,133,4,0,137,4,36,232,61,17,3,0,235,59,139,85,8,131,194,12,139,69,228,137,68,36,4,137,20,36,232,193,239,255,255,139,69,8,137,4,36,232,231,145,3,0,139,69,228,139, 64,12,193,224,2,131,192,12,137,68,36,4,139,69,8,137,4,36,232,246,47,2,0,131,196,52,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,111,255,255,255,141,131,228,133,4,0,137,4,36,232,92,20,2,0,199,68,36,20,0,0,0,0,199,68,36,16,2,0,0,0,199, 68,36,12,0,0,0,0,137,116,36,8,199,68,36,4,0,0,0,0,137,4,36,232,20,9,2,0,137,194,141,131,202,221,4,0,139,0,137,16,141,131,202,221,4,0,139,0,139,16,141,131,138,226,4,0,137,68,36,4,137,20,36,232,233,16,2,0,141,131,202,221,4,0,139,0,139,16,141,131,146,253, 255,255,137,68,36,4,137,20,36,232,82,18,2,0,141,131,202,221,4,0,139,0,139,16,141,131,53,254,255,255,137,68,36,4,137,20,36,232,85,18,2,0,131,196,32,91,94,201,195,85,137,229,131,236,24,131,125,16,0,116,16,139,69,8,139,80,4,139,69,12,139,64,4,57,194,117, 49,139,69,8,139,16,139,69,12,139,0,57,194,117,35,139,69,8,139,0,131,248,3,117,16,139,69,8,139,80,8,139,69,12,139,64,8,57,194,117,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,101,6,5, 0,139,0,137,4,36,232,137,72,2,0,137,69,244,139,69,244,199,64,12,0,0,0,0,199,4,36,0,0,0,0,232,198,44,2,0,137,194,139,69,244,137,80,16,233,198,1,0,0,141,131,65,220,4,0,139,0,137,69,224,131,125,12,1,15,142,169,1,0,0,139,69,16,139,0,131,248,2,15,133,155, 1,0,0,139,69,16,131,192,8,139,0,131,248,2,15,133,138,1,0,0,139,69,16,139,64,4,137,69,220,139,69,16,131,192,8,139,64,4,137,69,228,141,131,185,219,4,0,139,0,57,69,220,117,12,199,69,240,0,0,0,0,233,185,0,0,0,141,131,9,221,4,0,139,0,57,69,220,117,12,199, 69,240,1,0,0,0,233,160,0,0,0,141,131,249,220,4,0,139,0,57,69,220,117,12,199,69,240,2,0,0,0,233,135,0,0,0,141,131,185,112,4,0,137,4,36,232,139,18,2,0,59,69,220,117,81,131,125,12,2,126,13,139,69,16,131,192,16,139,0,131,248,2,116,26,141,131,253,132,4,0, 137,68,36,4,139,69,244,137,4,36,232,6,16,3,0,233,234,0,0,0,139,69,16,131,192,16,139,64,4,137,4,36,232,122,237,253,255,137,69,224,199,69,240,3,0,0,0,255,77,12,131,69,16,8,235,35,139,69,220,139,0,137,68,36,8,141,131,34,133,4,0,137,68,36,4,139,69,244,137, 4,36,232,191,15,3,0,233,163,0,0,0,139,69,244,139,64,12,137,69,236,139,69,236,64,137,69,232,139,85,232,137,208,1,192,1,208,193,224,2,137,193,139,85,236,137,208,1,192,1,208,193,224,2,137,194,139,69,244,139,64,16,137,76,36,8,137,84,36,4,137,4,36,232,76, 44,2,0,137,194,139,69,244,137,80,16,139,85,244,139,69,232,137,66,12,139,69,244,139,72,16,139,85,236,137,208,1,192,1,208,193,224,2,141,20,1,139,69,240,137,2,139,69,244,139,72,16,139,85,236,137,208,1,192,1,208,193,224,2,141,20,1,139,69,228,137,66,4,139, 69,244,139,72,16,139,85,236,137,208,1,192,1,208,193,224,2,141,20,1,139,69,224,137,66,8,131,109,12,2,131,69,16,16,131,125,12,0,15,143,48,254,255,255,139,69,8,139,0,15,182,0,132,192,116,32,139,85,244,139,69,8,137,66,8,139,69,244,139,64,8,139,85,244,137, 68,36,4,137,20,36,232,234,73,2,0,235,9,139,85,244,139,69,8,137,66,8,139,69,244,131,196,52,91,201,195,85,137,229,131,236,8,139,69,8,139,64,12,193,224,2,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,8,0,117,26,141,131,209,130,4,0,137,4,36,232, 202,15,3,0,199,69,228,0,0,0,0,233,144,0,0,0,139,69,8,139,64,12,137,69,236,199,69,240,0,0,0,0,235,111,139,69,8,139,72,16,139,85,240,137,208,1,192,1,208,193,224,2,141,4,1,139,64,4,59,69,12,117,79,139,69,240,193,224,2,137,194,139,69,16,137,16,139,69,8,139, 72,16,139,85,240,137,208,1,192,1,208,193,224,2,141,4,1,139,16,139,69,20,137,16,139,69,8,139,72,16,139,85,240,137,208,1,192,1,208,193,224,2,141,4,1,139,80,8,139,69,24,137,16,199,69,228,1,0,0,0,235,18,255,69,240,139,69,240,59,69,236,124,137,199,69,228, 0,0,0,0,139,69,228,131,196,52,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,141,131,93,203,4,0,139,0,137,69,232,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,251,254,255,255,133, 192,116,66,139,69,240,133,192,117,16,139,85,16,139,69,244,141,4,2,139,0,137,69,232,235,84,131,125,20,0,116,78,139,69,12,139,16,139,69,8,139,64,8,139,0,137,84,36,8,137,68,36,4,141,131,31,130,4,0,137,4,36,232,65,12,3,0,235,41,131,125,20,0,116,35,139,69, 12,139,16,139,69,8,139,64,8,139,0,137,84,36,8,137,68,36,4,141,131,51,130,4,0,137,4,36,232,22,12,3,0,139,69,232,137,69,228,243,15,16,69,228,243,15,17,69,228,217,69,228,131,196,68,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,69,236,137,68,36, 16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,63,254,255,255,133,192,116,68,139,69,240,133,192,117,18,139,85,16,139,69,244,141,4,2,137,194,139,69,20,137,2,235,84,131,125,24,0,116,78,139,69,12,139,16,139, 69,8,139,64,8,139,0,137,84,36,8,137,68,36,4,141,131,88,129,4,0,137,4,36,232,131,11,3,0,235,41,131,125,24,0,116,35,139,69,12,139,16,139,69,8,139,64,8,139,0,137,84,36,8,137,68,36,4,141,131,108,129,4,0,137,4,36,232,88,11,3,0,131,196,52,91,201,195,85,137, 229,83,131,236,52,232,0,0,0,0,91,141,131,167,215,4,0,139,0,137,69,232,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,137,253,255,255,133,192,116,67,139,69,240,131,248,1,117,16,139,85, 16,139,69,244,141,4,2,139,0,137,69,232,235,84,131,125,20,0,116,78,139,69,12,139,16,139,69,8,139,64,8,139,0,137,84,36,8,137,68,36,4,141,131,214,128,4,0,137,4,36,232,206,10,3,0,235,41,131,125,20,0,116,35,139,69,12,139,16,139,69,8,139,64,8,139,0,137,84, 36,8,137,68,36,4,141,131,193,128,4,0,137,4,36,232,163,10,3,0,139,69,232,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,220, 252,255,255,133,192,116,69,139,69,240,131,248,1,117,18,139,85,16,139,69,244,141,4,2,137,194,139,69,20,137,2,235,84,131,125,24,0,116,78,139,69,12,139,16,139,69,8,139,64,8,139,0,137,84,36,8,137,68,36,4,141,131,30,128,4,0,137,4,36,232,31,10,3,0,235,41,131, 125,24,0,116,35,139,69,12,139,16,139,69,8,139,64,8,139,0,137,84,36,8,137,68,36,4,141,131,9,128,4,0,137,4,36,232,244,9,3,0,131,196,52,91,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,139,69,8,139,80,12,139,69,12,139,64,12,57,194,125,12,199,69,228, 0,0,0,0,233,228,0,0,0,139,69,12,139,64,12,137,69,244,235,71,139,69,8,139,72,16,139,85,244,137,208,1,192,1,208,193,224,2,141,4,1,139,0,131,248,3,116,28,139,69,8,139,72,16,139,85,244,137,208,1,192,1,208,193,224,2,141,4,1,139,0,131,248,2,117,12,199,69,228, 0,0,0,0,233,149,0,0,0,255,69,244,139,69,8,139,64,12,59,69,244,127,174,139,69,12,139,80,12,139,69,8,139,64,12,57,194,126,14,141,131,133,127,4,0,137,4,36,232,144,6,3,0,199,69,244,0,0,0,0,235,78,139,69,12,139,72,16,139,85,244,137,208,1,192,1,208,193,224, 2,141,52,1,139,69,8,139,72,16,139,85,244,137,208,1,192,1,208,193,224,2,141,4,1,199,68,36,8,1,0,0,0,137,116,36,4,137,4,36,232,189,248,255,255,133,192,117,9,199,69,228,0,0,0,0,235,21,255,69,244,139,69,12,139,64,12,59,69,244,127,167,199,69,228,1,0,0,0,139, 69,228,131,196,48,91,94,201,195,85,137,229,131,236,24,139,69,8,139,64,12,137,69,244,139,69,12,139,64,12,137,69,240,199,69,236,0,0,0,0,235,88,139,69,236,193,224,2,3,69,16,139,0,133,192,120,70,139,69,236,193,224,2,3,69,24,139,0,137,69,232,139,69,236,193, 224,2,137,194,3,85,24,139,69,236,193,224,2,3,69,16,139,0,193,224,2,3,69,20,139,0,137,2,139,69,236,193,224,2,3,69,16,139,0,193,224,2,137,194,3,85,20,139,69,232,137,2,255,69,236,139,69,236,59,69,240,124,160,201,195,85,137,229,83,131,236,84,232,0,0,0,0, 91,139,69,12,139,64,12,137,69,240,139,69,8,139,64,12,137,69,236,139,69,24,139,80,8,139,69,8,139,64,8,57,194,15,133,35,1,0,0,141,69,200,137,4,36,232,213,212,0,0,139,69,12,139,64,12,193,224,2,131,192,12,137,4,36,232,17,37,2,0,137,69,244,141,131,36,213, 4,0,139,0,139,16,139,69,244,137,16,139,69,8,139,80,8,139,69,244,137,80,8,139,69,244,137,68,36,8,139,69,20,137,68,36,4,141,69,200,137,4,36,232,220,211,0,0,139,85,244,131,194,12,141,69,200,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,168,228,255,255, 139,69,244,131,192,12,139,85,24,131,194,12,137,68,36,16,137,84,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,171,254,255,255,139,69,20,139,80,28,139,69,24,57,194,117,23,139,85,244,139,69,20,137,80,28,139,69,24,139,80,4,139,69, 244,137,80,4,235,77,139,69,20,139,64,28,137,69,224,235,37,139,69,24,59,69,220,117,23,139,69,220,139,80,4,139,69,244,137,80,4,139,85,244,139,69,224,137,80,4,235,35,139,69,220,137,69,224,139,69,224,139,64,4,137,69,220,131,125,220,0,117,204,141,131,251, 125,4,0,137,4,36,232,113,9,3,0,139,69,24,137,4,36,232,33,64,2,0,139,69,12,137,69,228,235,23,139,69,24,137,69,244,139,69,244,139,64,8,137,4,36,232,146,6,0,0,137,69,228,199,69,232,0,0,0,0,233,133,0,0,0,139,69,228,139,72,16,139,85,232,137,208,1,192,1,208, 193,224,2,141,4,1,137,69,216,139,69,216,139,0,131,248,2,117,47,139,85,232,139,69,244,139,68,144,12,137,69,212,139,69,16,137,68,36,12,139,69,212,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,109,2,0,0,235,49,139,69,216,139,0,131,248,3,117,39, 139,85,232,139,69,244,139,68,144,12,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,27,0,0,0,255,69,232,139,69,228,139,64,12,59,69,232,15,143,108,255,255,255,139,69,244,131,196,84,91,201,195,85,137,229,83,131,236,84,232, 0,0,0,0,91,199,69,236,0,0,0,0,139,69,20,139,80,12,139,69,8,139,64,8,57,194,15,133,5,1,0,0,139,69,8,139,64,12,193,224,2,137,69,232,139,69,12,139,64,12,193,224,2,137,69,228,139,69,20,139,0,15,175,69,228,137,4,36,232,252,34,2,0,137,69,224,139,69,20,139, 64,8,137,69,220,139,69,20,139,64,4,59,69,232,116,14,141,131,252,123,4,0,137,4,36,232,40,8,3,0,199,69,244,0,0,0,0,235,119,139,69,228,15,175,69,244,3,69,224,137,69,216,139,69,20,131,192,20,137,68,36,8,139,69,12,137,68,36,4,139,69,216,137,4,36,232,143,226, 255,255,139,69,232,15,175,69,244,3,69,220,137,194,139,69,216,137,68,36,16,137,84,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,143,252,255,255,139,69,232,15,175,69,244,3,69,220,137,194,139,69,8,137,68,36,4,137,20,36,232,229, 227,255,255,255,69,244,139,69,20,139,0,59,69,244,15,143,123,255,255,255,139,69,12,137,69,236,139,85,20,139,69,224,137,66,8,139,69,20,139,0,15,175,69,232,137,68,36,4,139,69,220,137,4,36,232,8,36,2,0,235,17,139,69,20,139,64,12,137,4,36,232,171,4,0,0,137, 69,236,199,69,244,0,0,0,0,233,193,0,0,0,139,69,20,139,72,8,139,69,20,139,0,137,194,139,69,244,15,175,194,193,224,2,141,4,1,137,69,212,199,69,240,0,0,0,0,233,135,0,0,0,139,69,236,139,72,16,139,85,240,137,208,1,192,1,208,193,224,2,141,4,1,137,69,208,139, 69,208,139,0,131,248,2,117,48,139,69,240,193,224,2,3,69,212,139,0,137,69,204,139,69,16,137,68,36,12,139,69,204,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,93,0,0,0,235,50,139,69,208,139,0,131,248,3,117,40,139,69,240,193,224,2,3,69,212,139, 0,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,10,254,255,255,255,69,240,139,69,236,139,64,12,59,69,240,15,143,106,255,255,255,255,69,244,139,69,20,139,0,59,69,244,15,143,49,255,255,255,131,196,84,91,201,195,85,137,229, 83,131,236,52,232,0,0,0,0,91,139,69,16,139,64,28,137,69,244,233,184,0,0,0,139,69,244,139,16,141,131,239,208,4,0,139,0,139,0,57,194,117,44,139,69,244,137,68,36,16,139,69,16,137,68,36,12,139,69,20,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232, 118,251,255,255,137,69,244,235,112,139,69,244,139,16,141,131,99,208,4,0,139,0,139,0,57,194,117,34,139,85,244,139,69,20,137,68,36,12,137,84,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,115,255,255,255,235,59,139,69,244,139,16,141,131,227,207,4,0,139, 0,139,0,57,194,117,40,139,69,244,137,4,36,232,77,97,253,255,137,68,36,12,139,69,20,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,23,253,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,15,133,62,255,255,255,131,196,52,91,201,195,85,137, 229,83,131,236,68,232,0,0,0,0,91,139,69,12,139,64,12,137,69,244,139,69,8,139,64,12,137,69,240,139,69,244,193,224,2,137,4,36,232,30,32,2,0,137,69,228,139,69,240,193,224,2,137,4,36,232,13,32,2,0,137,69,224,199,69,220,0,0,0,0,199,69,236,0,0,0,0,235,18,139, 69,236,193,224,2,3,69,228,199,0,255,255,255,255,255,69,236,139,69,236,59,69,244,124,230,199,69,236,0,0,0,0,235,18,139,69,236,193,224,2,3,69,224,199,0,0,0,0,0,255,69,236,139,69,236,59,69,240,124,230,199,69,236,0,0,0,0,233,132,0,0,0,139,69,12,139,72,16, 139,85,236,137,208,1,192,1,208,193,224,2,141,4,1,137,69,216,199,69,232,0,0,0,0,235,88,139,69,8,139,72,16,139,85,232,137,208,1,192,1,208,193,224,2,141,4,1,137,69,212,199,68,36,8,1,0,0,0,139,69,212,137,68,36,4,139,69,216,137,4,36,232,9,242,255,255,133, 192,116,31,139,69,236,193,224,2,137,194,3,85,228,139,69,232,137,2,139,69,232,193,224,2,3,69,224,199,0,1,0,0,0,255,69,232,139,69,232,59,69,240,124,160,255,69,236,139,69,236,59,69,244,15,140,112,255,255,255,199,69,236,0,0,0,0,233,160,0,0,0,139,69,236,193, 224,2,3,69,228,139,0,133,192,15,137,138,0,0,0,139,69,12,139,72,16,139,85,236,137,208,1,192,1,208,193,224,2,141,4,1,137,69,208,199,69,232,0,0,0,0,235,97,139,69,232,193,224,2,3,69,224,139,0,133,192,117,79,139,69,8,139,72,16,139,85,232,137,208,1,192,1,208, 193,224,2,141,4,1,199,68,36,8,0,0,0,0,137,68,36,4,139,69,208,137,4,36,232,81,241,255,255,133,192,116,31,139,69,236,193,224,2,137,194,3,85,228,139,69,232,137,2,139,69,232,193,224,2,3,69,224,199,0,1,0,0,0,255,69,232,139,69,232,59,69,240,124,151,255,69, 236,139,69,236,59,69,244,15,140,84,255,255,255,139,69,244,59,69,240,116,9,199,69,220,1,0,0,0,235,43,199,69,236,0,0,0,0,235,26,139,69,236,193,224,2,3,69,228,139,0,59,69,236,116,7,199,69,220,1,0,0,0,255,69,236,139,69,236,59,69,244,124,222,131,125,220,0, 15,132,140,0,0,0,139,69,8,139,64,8,139,0,137,68,36,4,141,131,16,121,4,0,137,4,36,232,64,254,2,0,199,69,236,0,0,0,0,235,32,139,69,236,193,224,2,3,69,228,139,0,137,68,36,4,141,131,58,121,4,0,137,4,36,232,26,254,2,0,255,69,236,139,69,236,59,69,244,124,216, 141,131,24,208,4,0,139,0,139,0,137,69,204,235,44,139,69,228,137,68,36,12,139,69,204,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,123,252,255,255,139,69,204,139,128,152,0,0,0,137,69,204,131,125,204,0,117,206,139,69,244,193,224,2,137,68,36,4, 139,69,228,137,4,36,232,104,31,2,0,139,69,240,193,224,2,137,68,36,4,139,69,224,137,4,36,232,83,31,2,0,131,196,68,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,208,246,4,0,139,0,137,68,36,4,139,69,8,137,4,36,232,141,62,2,0,131,196,20,91,201, 195,85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,8,0,117,14,141,131,51,118,4,0,137,4,36,232,109,2,3,0,139,69,8,139,64,4,137,69,244,131,125,244,0,117,9,199,69,228,0,0,0,0,235,9,139,69,244,139,64,32,137,69,228,139,69,228,131,196,52,91,201,195,85,137, 229,131,236,24,139,69,8,139,64,4,133,192,116,38,139,69,8,139,64,4,139,80,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,129,46,2,0,201,195,85,137,229,131,236,40,141,69,236,137,4,36,232,89,204,0,0,139,69,16,137,68, 36,8,139,69,12,137,68,36,4,141,69,236,137,4,36,232,146,203,0,0,139,69,28,199,0,3,0,0,0,139,85,28,141,69,236,137,66,4,139,69,28,137,68,36,12,139,69,24,137,68,36,8,139,69,20,137,68,36,4,139,69,8,137,4,36,232,108,255,255,255,141,69,236,137,4,36,232,41,203, 0,0,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,84,133,1,0,137,4,36,232,200,221,253,255,137,69,240,131,125,16,0,117,12,199,69,228,0,0,0,0,233,245,0,0,0,255,77,16,131,69,20,8,141,131, 186,245,4,0,139,0,137,68,36,4,139,69,240,137,4,36,232,57,61,2,0,137,69,244,131,125,244,0,15,132,170,0,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,141,131,150,203,4,0,139,0,137,4,36,232,200,238,255,255,137,69,236,139,69,236,137,68,36,4,139,69,244, 137,4,36,232,177,244,255,255,133,192,117,102,139,69,244,139,64,4,133,192,116,25,139,69,240,139,0,137,68,36,4,141,131,91,117,4,0,137,4,36,232,122,254,2,0,235,67,139,69,236,137,68,36,4,139,69,244,137,4,36,232,43,251,255,255,139,69,244,137,4,36,232,119, 55,2,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,240,137,4,36,232,86,238,255,255,137,69,232,139,69,232,199,64,4,0,0,0,0,139,69,236,137,4,36,232,70,55,2,0,235,25,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,240,137,4,36,232,35,238,255,255, 199,69,228,0,0,0,0,139,69,228,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,139,64,8,139,0,15,182,0,132,192,116,21,139,69,8,139,64,8,139,85,8,137,68,36,4,137,20,36,232,240,58,2,0,139,69,8,139,64,12,137,194,137,208,1,192,1,208,193,224,2,137,194, 139,69,8,139,64,16,137,84,36,4,137,4,36,232,166,28,2,0,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,162,255,255,255,141,131,64,109,4,0,137,4,36,232,16,1,2,0,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,20,0,0,0,137,116,36,8,199, 68,36,4,0,0,0,0,137,4,36,232,200,245,1,0,137,194,141,131,38,244,4,0,137,16,141,131,222,115,4,0,137,4,36,232,204,0,2,0,137,194,141,139,96,254,255,255,141,131,142,202,4,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137, 4,36,232,133,249,1,0,131,196,32,91,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,132,243,4,0,139,0,137,4,36,232,172,53,2,0,137,69,244,139,69,8,137,4,36,232,141,252,255,255,137,69,240,141,131,11,113,4,0,137,4,36,232,87,0,2,0,137,69,232,232, 8,196,253,255,137,194,139,69,244,137,80,32,139,69,244,199,64,40,0,0,0,0,139,85,244,139,69,8,137,66,36,139,85,244,139,69,12,137,66,44,139,69,12,193,224,3,137,4,36,232,169,25,2,0,137,194,139,69,244,137,80,48,199,69,236,0,0,0,0,235,37,139,69,244,139,80, 48,139,69,236,193,224,3,141,12,2,139,69,236,193,224,3,3,69,16,139,80,4,139,0,137,1,137,81,4,255,69,236,139,69,236,59,69,12,124,211,131,125,240,0,15,132,7,1,0,0,139,85,244,139,69,240,137,66,28,139,69,240,139,64,4,133,192,116,72,139,69,244,139,64,28,139, 64,4,137,69,228,235,6,139,69,224,137,69,228,139,69,228,139,64,40,137,69,224,131,125,224,0,117,235,139,85,228,139,69,244,137,66,40,139,69,8,139,0,137,68,36,4,141,131,72,115,4,0,137,4,36,232,66,249,2,0,233,218,0,0,0,139,69,16,137,68,36,8,139,69,12,137, 68,36,4,141,131,100,201,4,0,139,0,137,4,36,232,236,235,255,255,137,69,220,199,68,36,4,2,0,0,0,139,69,240,137,4,36,232,47,246,253,255,139,69,220,137,68,36,4,139,69,240,137,4,36,232,194,241,255,255,133,192,117,57,139,69,220,137,68,36,4,139,69,240,137,4, 36,232,95,248,255,255,139,69,240,137,4,36,232,171,52,2,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,138,235,255,255,137,69,240,139,69,220,137,4,36,232,132,52,2,0,139,85,240,139,69,244,137,66,4,199,68,36,4,1,0,0,0,139,69,240,137, 4,36,232,185,245,253,255,235,46,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,69,235,255,255,137,69,240,139,85,244,139,69,240,137,66,28,139,85,240,139,69,244,137,66,4,139,69,244,199,68,36,4,0,0,0,0,137,4,36,232,145,38,2,0,139,69,244, 131,196,52,91,201,195,85,137,229,131,236,40,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,26,129,1,0,137,69,244,131,125,12,0,126,3,255,77,12,131,69,16,8,139,69,244,137,4,36,232,123,217,253,255,137,194,139,69,16,137,68,36,8,139,69,12, 137,68,36,4,137,20,36,232,158,253,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,232,214,193,253,255,139,128,144,0,0,0,137,4,36,232,65,217,253,255,137,69,244,141,131,28,241,4,0,139,0,133,192,117,35,139,69,244,139,0,137,68,36,4,141,131,12,113, 4,0,137,4,36,232,172,247,2,0,141,131,28,241,4,0,199,0,1,0,0,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,244,137,4,36,232,49,253,255,255,131,196,36,91,201,195,85,137,229,131,236,8,139,69,8,139,64,28,201,195,85,137,229,83,131,236,52,232,0,0,0, 0,91,139,69,8,139,64,28,137,69,244,139,69,244,139,64,4,59,69,8,15,133,241,0,0,0,199,68,36,4,2,0,0,0,139,69,244,137,4,36,232,97,244,253,255,139,69,8,139,64,40,133,192,15,132,177,0,0,0,139,69,8,139,64,40,139,80,48,139,69,8,139,64,40,139,64,44,137,84,36, 8,137,68,36,4,141,131,129,198,4,0,139,0,137,4,36,232,208,233,255,255,137,69,236,139,69,236,137,68,36,4,139,69,244,137,4,36,232,108,246,255,255,139,69,244,137,4,36,232,184,50,2,0,139,69,236,137,4,36,232,173,50,2,0,139,69,8,139,64,40,139,72,48,139,69,8, 139,64,40,139,80,44,139,69,8,139,64,36,137,76,36,8,137,84,36,4,137,4,36,232,125,233,255,255,137,69,236,139,69,8,139,80,40,139,69,236,137,80,4,139,69,236,139,64,4,137,69,240,235,18,139,85,240,139,69,236,137,66,28,139,69,240,139,64,40,137,69,240,131,125, 240,0,117,232,235,10,139,69,244,199,64,4,0,0,0,0,199,68,36,4,1,0,0,0,139,69,244,137,4,36,232,133,243,253,255,235,54,139,69,244,139,64,4,137,69,232,235,28,139,69,8,59,69,228,117,14,139,69,228,139,80,40,139,69,232,137,80,40,235,21,139,69,228,137,69,232, 139,69,232,139,64,40,137,69,228,131,125,228,0,117,213,139,69,8,139,64,44,141,20,197,0,0,0,0,139,69,8,139,64,48,137,84,36,4,137,4,36,232,183,23,2,0,131,196,52,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,129,254,255,255,141,187,173, 253,255,255,141,131,234,110,4,0,137,4,36,232,22,252,1,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,52,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,202,240,1,0,137,194,141,131,46,239,4,0,137,16,141,131,76,104,4,0,137, 4,36,232,206,251,1,0,141,147,2,254,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,184,243,1,0,131,196,44,91,94,95,201,195,85,137,229,131,236,8,232,0,0,0,0,89,139,69,8,198,0,1,139,69,8,198,64,1,0,139,85,8,139,69,12,137,66, 4,139,85,8,141,129,186,182,4,0,139,0,137,66,24,139,69,8,139,80,24,139,69,8,137,80,20,139,69,8,139,80,20,139,69,8,137,80,16,139,69,8,139,80,16,139,69,8,137,80,12,139,69,8,139,80,12,139,69,8,137,80,8,201,195,85,137,229,131,236,8,232,0,0,0,0,89,139,69,8, 198,0,2,139,69,8,198,64,1,0,139,85,8,139,69,12,137,66,4,139,85,8,141,129,88,182,4,0,139,0,137,66,24,139,69,8,139,80,24,139,69,8,137,80,20,139,69,8,139,80,20,139,69,8,137,80,16,139,69,8,139,80,16,139,69,8,137,80,12,139,69,8,139,80,12,139,69,8,137,80,8, 201,195,85,137,229,83,129,236,100,4,0,0,232,0,0,0,0,91,139,69,8,137,133,196,251,255,255,139,69,12,137,133,192,251,255,255,141,131,150,195,4,0,139,0,139,16,137,85,244,49,210,139,133,196,251,255,255,198,0,1,139,133,196,251,255,255,198,64,1,1,139,133,192, 251,255,255,139,0,199,68,36,4,40,0,0,0,137,4,36,232,193,189,4,0,137,133,8,252,255,255,131,189,8,252,255,255,0,116,53,139,133,192,251,255,255,139,0,199,68,36,4,41,0,0,0,137,4,36,232,154,189,4,0,137,133,4,252,255,255,131,189,4,252,255,255,0,116,14,139, 133,8,252,255,255,59,133,4,252,255,255,118,109,139,149,196,251,255,255,139,133,192,251,255,255,137,66,4,139,149,196,251,255,255,141,131,242,181,4,0,139,0,137,66,24,139,133,196,251,255,255,139,80,24,139,133,196,251,255,255,137,80,20,139,133,196,251,255, 255,139,80,20,139,133,196,251,255,255,137,80,16,139,133,196,251,255,255,139,80,16,139,133,196,251,255,255,137,80,12,139,133,196,251,255,255,139,80,12,139,133,196,251,255,255,137,80,8,233,166,2,0,0,139,149,8,252,255,255,139,133,192,251,255,255,139,0,137, 209,41,193,137,200,137,133,248,251,255,255,129,189,248,251,255,255,227,3,0,0,126,10,199,133,248,251,255,255,227,3,0,0,139,149,248,251,255,255,139,133,192,251,255,255,139,0,199,68,36,12,232,3,0,0,137,84,36,8,137,68,36,4,141,133,12,252,255,255,137,4,36, 232,170,186,4,0,139,133,248,251,255,255,198,132,5,12,252,255,255,0,141,133,12,252,255,255,137,4,36,232,91,249,1,0,137,194,139,133,196,251,255,255,137,80,4,141,133,200,251,255,255,137,68,36,24,141,133,208,251,255,255,137,68,36,20,141,133,216,251,255,255, 137,68,36,16,141,133,224,251,255,255,137,68,36,12,141,133,232,251,255,255,137,68,36,8,141,131,248,109,4,0,137,68,36,4,139,133,8,252,255,255,137,4,36,232,55,188,4,0,137,133,244,251,255,255,242,15,16,133,232,251,255,255,242,15,90,192,139,133,196,251,255, 255,243,15,17,64,8,242,15,16,133,224,251,255,255,242,15,90,192,139,133,196,251,255,255,243,15,17,64,12,242,15,16,133,216,251,255,255,242,15,90,192,139,133,196,251,255,255,243,15,17,64,16,242,15,16,133,208,251,255,255,242,15,90,192,139,133,196,251,255, 255,243,15,17,64,20,242,15,16,133,200,251,255,255,242,15,90,192,139,133,196,251,255,255,243,15,17,64,24,131,189,244,251,255,255,1,15,142,224,0,0,0,131,189,244,251,255,255,3,15,132,211,0,0,0,131,189,244,251,255,255,3,127,30,199,68,36,4,40,0,0,0,139,133, 4,252,255,255,137,4,36,232,145,187,4,0,133,192,15,133,172,0,0,0,131,189,244,251,255,255,4,127,64,199,68,36,4,40,0,0,0,139,133,4,252,255,255,137,4,36,232,106,187,4,0,137,133,0,252,255,255,131,189,0,252,255,255,0,116,27,139,133,0,252,255,255,64,199,68, 36,4,40,0,0,0,137,4,36,232,68,187,4,0,133,192,117,99,131,189,244,251,255,255,4,117,22,139,133,196,251,255,255,141,147,242,181,4,0,139,18,137,80,24,233,183,0,0,0,131,189,244,251,255,255,2,15,133,170,0,0,0,139,149,196,251,255,255,141,131,242,181,4,0,139, 0,137,66,24,139,133,196,251,255,255,139,80,8,139,133,196,251,255,255,137,80,16,139,133,196,251,255,255,139,80,12,139,133,196,251,255,255,137,80,20,235,115,139,133,192,251,255,255,139,0,137,68,36,4,141,131,16,110,4,0,137,4,36,232,73,241,2,0,139,149,196, 251,255,255,141,131,242,181,4,0,139,0,137,66,24,139,133,196,251,255,255,139,80,24,139,133,196,251,255,255,137,80,20,139,133,196,251,255,255,139,80,20,139,133,196,251,255,255,137,80,12,139,133,196,251,255,255,139,80,12,139,133,196,251,255,255,137,80,16, 139,133,196,251,255,255,139,80,16,139,133,196,251,255,255,137,80,8,141,131,150,195,4,0,139,0,139,85,244,51,16,116,5,232,52,184,4,0,129,196,100,4,0,0,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,12,0,127,25,141,131,37,178,4,0,139,0,137,68, 36,4,139,69,8,137,4,36,232,66,251,255,255,235,54,139,69,16,139,0,131,248,2,117,23,139,69,16,139,64,4,137,68,36,4,139,69,8,137,4,36,232,229,251,255,255,235,21,139,69,16,139,64,4,137,68,36,4,139,69,8,137,4,36,232,10,251,255,255,131,196,20,91,201,195,85, 137,229,83,131,236,20,232,0,0,0,0,91,131,125,12,0,127,25,141,131,121,191,4,0,139,0,137,68,36,4,139,69,8,137,4,36,232,60,251,255,255,235,122,139,69,16,139,0,131,248,2,117,89,139,69,8,198,0,2,139,69,8,198,64,1,1,139,69,16,139,80,4,139,69,8,137,80,4,139, 85,8,141,131,189,177,4,0,139,0,137,66,24,139,69,8,139,80,24,139,69,8,137,80,20,139,69,8,139,80,20,139,69,8,137,80,16,139,69,8,139,80,16,139,69,8,137,80,12,139,69,8,139,80,12,139,69,8,137,80,8,235,23,141,131,121,191,4,0,139,0,137,68,36,4,139,69,8,137, 4,36,232,192,250,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,12,0,127,25,141,131,17,177,4,0,139,0,137,68,36,4,139,69,8,137,4,36,232,46,250,255,255,235,58,139,69,16,139,0,131,248,2,117,27,139,69,8,198,0,55,139,69,8,198, 64,1,1,139,69,16,139,80,4,139,69,8,137,80,4,235,21,139,69,16,139,64,4,137,68,36,4,139,69,8,137,4,36,232,242,249,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,15,182,0,60,1,117,66,139,69,8,15,182,64,1,132,192,116,40,139, 69,8,139,80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,139,69,12,137,4,36,232,3,229,255,255,217,93,244,235,50,139,69,8,243,15,16,64,4,243,15,17,69,244,235,35,131,125,20,0,116,14,141,131,213,104,4,0,137,4,36,232,159,241,2,0,141,131,165, 176,4,0,243,15,16,0,243,15,17,69,244,217,69,244,131,196,36,91,201,195,85,137,229,131,236,40,139,69,8,243,15,16,72,12,139,69,8,243,15,16,64,8,15,46,200,122,2,116,2,235,15,243,15,16,69,12,243,15,17,69,220,233,21,1,0,0,139,69,8,243,15,16,72,20,139,69,8, 243,15,16,64,16,15,40,209,243,15,92,208,139,69,8,243,15,16,72,12,139,69,8,243,15,16,64,8,15,40,217,243,15,92,216,15,40,195,15,40,202,243,15,94,200,15,40,193,243,15,17,69,232,139,69,8,243,15,16,80,16,139,69,8,243,15,16,72,8,243,15,16,69,12,243,15,92,193, 243,15,89,69,232,243,15,88,194,243,15,17,69,244,139,69,8,243,15,16,72,16,139,69,8,243,15,16,64,20,15,46,193,119,2,235,15,139,69,8,243,15,16,88,16,243,15,17,93,224,235,13,139,69,8,243,15,16,64,20,243,15,17,69,224,243,15,16,77,224,243,15,17,77,236,243, 15,16,77,244,243,15,16,69,236,15,46,193,119,2,235,6,139,69,236,137,69,244,139,69,8,243,15,16,72,16,139,69,8,243,15,16,64,20,15,46,200,119,2,235,15,139,69,8,243,15,16,88,16,243,15,17,93,228,235,13,139,69,8,243,15,16,64,20,243,15,17,69,228,243,15,16,77, 228,243,15,17,77,236,243,15,16,69,244,15,46,69,236,119,2,235,6,139,69,236,137,69,244,243,15,16,93,244,243,15,17,93,220,217,69,220,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,15,182,0,60,1,117,87,139,69,8,15,182,64,1,132,192,116,61,139,69, 8,139,80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,139,69,12,137,4,36,232,54,227,255,255,217,93,244,139,69,244,137,68,36,4,139,69,8,137,4,36,232,94,254,255,255,217,93,228,235,50,139,69,8,243,15,16,64,4,243,15,17,69,228,235,35,131,125, 20,0,116,14,141,131,8,103,4,0,137,4,36,232,189,239,2,0,141,131,216,174,4,0,243,15,16,0,243,15,17,69,228,217,69,228,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,15,182,0,60,2,117,62,139,69,8,15,182,64,1,132,192,116,40,139,69, 8,139,80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,139,69,12,137,4,36,232,14,228,255,255,137,69,244,235,42,139,69,8,139,64,4,137,69,244,235,31,131,125,20,0,116,14,141,131,146,102,4,0,137,4,36,232,60,239,2,0,141,131,250,187,4,0,139,0, 137,69,244,139,69,244,131,196,36,91,201,195,85,137,229,131,236,56,232,0,0,0,0,89,139,69,8,243,15,16,72,20,139,69,8,243,15,16,64,16,15,46,200,122,2,116,2,235,11,139,69,12,137,69,244,233,98,1,0,0,139,69,8,243,15,16,72,12,139,69,8,243,15,16,64,8,15,40,209, 243,15,92,208,139,69,8,243,15,16,72,20,139,69,8,243,15,16,64,16,15,40,217,243,15,92,216,15,40,195,15,40,202,243,15,94,200,15,40,193,243,15,17,69,240,139,69,8,243,15,16,80,8,139,69,8,243,15,16,72,16,243,15,16,69,12,243,15,92,193,243,15,89,69,240,243,15, 88,194,243,15,17,69,244,139,69,8,243,15,16,72,24,141,129,194,173,4,0,243,15,16,0,15,46,200,117,4,122,2,235,60,139,69,8,243,15,16,72,24,243,15,16,69,244,243,15,94,193,243,15,90,200,141,129,50,174,4,0,242,15,16,0,242,15,88,193,242,15,44,192,243,15,42,200, 139,69,8,243,15,16,64,24,243,15,89,193,243,15,17,69,244,139,69,8,243,15,16,72,8,139,69,8,243,15,16,64,12,15,46,193,119,2,235,15,139,69,8,243,15,16,88,8,243,15,17,93,224,235,13,139,69,8,243,15,16,64,12,243,15,17,69,224,243,15,16,77,224,243,15,17,77,236, 243,15,16,77,244,243,15,16,69,236,15,46,193,119,2,235,6,139,69,236,137,69,244,139,69,8,243,15,16,72,8,139,69,8,243,15,16,64,12,15,46,200,119,2,235,15,139,69,8,243,15,16,88,8,243,15,17,93,228,235,13,139,69,8,243,15,16,64,12,243,15,17,69,228,243,15,16, 77,228,243,15,17,77,236,243,15,16,69,244,15,46,69,236,119,2,235,6,139,69,236,137,69,244,139,69,244,137,69,212,243,15,16,93,212,243,15,17,93,212,217,69,212,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,15,182,0,60,1,117,76,139,69,8,15,182,64, 1,132,192,116,65,139,69,20,137,68,36,4,139,69,8,137,4,36,232,37,254,255,255,217,93,244,139,69,8,139,80,4,139,69,24,137,68,36,16,139,69,244,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,139,69,12,137,4,36,232,35,225,255,255,235,20,131,125,24,0,116,14, 141,131,146,100,4,0,137,4,36,232,10,237,2,0,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,49,186,4,0,139,0,139,0,137,4,36,232,159,37,2,0,137,69,244,139,69,8,139,0,137,69,240,199,69,236,0,0,0,0,232,11,180,253,255,137,194,139,69, 244,137,144,152,0,0,0,139,69,240,15,182,0,60,102,117,10,131,69,240,6,131,77,236,1,235,4,131,69,240,4,139,69,240,15,182,0,60,99,117,4,131,77,236,2,139,69,244,131,192,116,141,147,161,171,4,0,139,18,137,84,36,4,137,4,36,232,99,244,255,255,139,69,16,137, 68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,163,114,1,0,137,69,220,139,69,220,139,16,141,131,80,100,4,0,137,68,36,4,137,20,36,232,22,179,4,0,133,192,117,48,131,125,12,1,126,42,139,69,16,131,192,8,139,85,244,131,194,116,137,68,36,8,199,68,36,4, 1,0,0,0,137,20,36,232,153,248,255,255,131,109,12,2,131,69,16,16,235,152,139,69,220,139,16,141,131,83,100,4,0,137,68,36,4,137,20,36,232,203,178,4,0,133,192,117,16,131,77,236,4,255,77,12,131,69,16,8,233,109,255,255,255,139,85,244,139,69,236,137,66,28,139, 69,236,131,224,1,131,240,1,132,192,117,43,131,125,12,0,116,37,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,131,194,32,137,68,36,8,137,76,36,4,137,20,36,232,37,248,255,255,235,26,139,69,244,131,192,32,141,147,157,171,4,0,139,18,137,84,36,4,137, 4,36,232,117,243,255,255,131,125,12,0,116,37,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,131,194,60,137,68,36,8,137,76,36,4,137,20,36,232,224,247,255,255,235,26,139,69,244,131,192,60,141,147,157,171,4,0,139,18,137,84,36,4,137,4,36,232,48,243, 255,255,131,125,12,0,116,37,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,131,194,88,137,68,36,8,137,76,36,4,137,20,36,232,155,247,255,255,235,26,139,69,244,131,192,88,141,147,161,171,4,0,139,18,137,84,36,4,137,4,36,232,235,242,255,255,131,125, 12,0,121,7,199,69,12,0,0,0,0,139,69,12,131,224,1,3,69,12,137,69,232,139,69,232,137,194,209,250,139,69,244,137,144,144,0,0,0,139,69,232,141,20,133,0,0,0,0,141,4,213,0,0,0,0,41,208,137,4,36,232,215,7,2,0,137,194,139,69,244,137,144,148,0,0,0,199,69,228, 0,0,0,0,139,69,244,139,128,148,0,0,0,137,69,224,235,37,139,69,16,137,68,36,8,199,68,36,4,1,0,0,0,139,69,224,137,4,36,232,1,247,255,255,255,69,228,131,69,224,28,131,69,16,8,139,69,228,59,69,12,124,211,139,69,12,131,224,1,132,192,116,23,141,131,157,171, 4,0,139,0,137,68,36,4,139,69,224,137,4,36,232,57,242,255,255,139,69,244,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,15,182,64,116,60,1,117,11,139,69,8,15,182,64,117,132,192,116,26,141,131,165,97,4,0,137,68,36,4,139,69,8,137, 4,36,232,68,235,2,0,233,216,0,0,0,139,69,8,243,15,16,72,120,141,131,233,168,4,0,243,15,16,0,15,46,200,15,149,192,15,154,194,9,208,15,182,192,137,69,244,141,131,233,168,4,0,243,15,16,0,15,46,69,12,122,2,116,10,131,125,244,0,15,133,153,0,0,0,141,131,233, 168,4,0,243,15,16,0,15,46,69,12,117,10,122,8,131,125,244,0,117,2,235,127,139,69,8,139,128,152,0,0,0,199,68,36,4,2,0,0,0,137,4,36,232,84,228,253,255,141,131,233,168,4,0,243,15,16,0,15,46,69,12,117,4,122,2,235,17,141,131,237,168,4,0,243,15,16,0,243,15, 17,69,228,235,15,141,131,233,168,4,0,243,15,16,0,243,15,17,69,228,139,69,8,131,192,116,243,15,16,69,228,243,15,17,68,36,4,137,4,36,232,52,241,255,255,139,69,8,139,128,152,0,0,0,199,68,36,4,1,0,0,0,137,4,36,232,238,227,253,255,131,196,52,91,201,195,85, 137,229,83,131,236,100,232,0,0,0,0,91,139,69,8,137,69,244,139,69,244,139,128,144,0,0,0,137,69,236,139,69,244,139,128,148,0,0,0,137,69,232,199,69,228,255,255,255,127,199,69,224,1,0,0,128,199,69,220,255,255,255,127,199,69,216,1,0,0,128,139,85,244,131,194, 116,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69,20,137,68,36,4,137,20,36,232,190,246,255,255,217,93,180,141,131,206,167,4,0,243,15,16,0,243,15,16,77,180,15,46,200,122,2,116,13,139,69,244,139,64,28,131,224,4,133,192,116,43,139,69,36,199,0,255,255, 255,127,139,69,36,139,16,139,69,32,137,16,139,69,44,199,0,1,0,0,128,139,69,44,139,16,139,69,40,137,16,233,26,1,0,0,199,69,240,0,0,0,0,139,69,244,139,128,148,0,0,0,137,69,232,233,214,0,0,0,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69,20,137,68,36, 4,139,69,232,137,4,36,232,1,248,255,255,217,93,184,243,15,16,69,184,243,15,88,69,24,243,15,17,68,36,4,139,69,12,137,4,36,232,27,145,254,255,217,93,188,243,15,44,69,188,137,69,212,139,85,232,131,194,28,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69, 20,137,68,36,4,137,20,36,232,180,247,255,255,217,93,192,243,15,16,69,192,243,15,88,69,28,243,15,17,68,36,4,139,69,12,137,4,36,232,82,146,254,255,217,93,196,243,15,44,69,196,137,69,208,139,69,212,59,69,228,125,6,139,69,212,137,69,228,139,69,212,59,69, 224,126,6,139,69,212,137,69,224,139,69,208,59,69,220,125,6,139,69,208,137,69,220,139,69,208,59,69,216,126,6,139,69,208,137,69,216,255,69,240,131,69,232,56,139,69,240,59,69,236,15,140,30,255,255,255,139,85,32,139,69,228,137,2,139,85,36,139,69,220,137, 2,139,85,40,139,69,224,137,2,139,85,44,139,69,216,137,2,131,196,100,91,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,40,131,125,8,9,116,8,139,69,8,137,69,228,235,7,199,69,228,8,0,0,0, 139,69,228,137,69,244,139,69,244,193,224,5,137,69,240,129,125,240,255,0,0,0,126,7,199,69,240,255,0,0,0,139,69,240,201,195,85,137,229,87,86,83,131,236,76,232,0,0,0,0,91,131,125,8,0,121,7,199,69,8,0,0,0,0,139,77,8,199,69,212,31,133,235,81,139,69,212,247, 233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,69,228,139,77,8,199,69,212,103,102,102,102,139,69,212,247,233,193,250,2,137,200,193,248,31,137,209,41,193,199,69,212,103,102,102,102,139,69,212,247,233,193,250,2,137,200,193,248,31,137,214,41, 198,137,240,137,69,224,139,85,224,137,208,193,224,2,1,208,1,192,137,202,41,194,137,208,137,69,224,139,77,8,199,69,212,103,102,102,102,139,69,212,247,233,193,250,2,137,200,193,248,31,41,194,137,208,193,224,2,1,208,1,192,137,202,41,194,137,208,137,69,220, 139,69,220,137,4,36,232,2,255,255,255,137,198,139,69,224,137,4,36,232,245,254,255,255,137,199,139,69,228,137,4,36,232,232,254,255,255,186,255,255,255,255,137,116,36,24,137,124,36,20,137,68,36,16,141,131,142,94,4,0,137,68,36,12,137,84,36,8,199,68,36,4, 0,0,0,0,139,69,12,137,4,36,232,144,170,4,0,131,196,76,91,94,95,201,195,85,137,229,86,83,129,236,176,3,0,0,232,0,0,0,0,91,139,69,8,137,133,132,252,255,255,139,69,12,137,133,128,252,255,255,139,69,16,137,133,124,252,255,255,139,69,20,137,133,120,252,255, 255,141,131,40,178,4,0,139,0,139,16,137,85,244,49,210,139,133,132,252,255,255,137,69,200,139,69,200,139,128,144,0,0,0,137,69,192,139,69,200,139,128,148,0,0,0,137,69,188,131,125,32,0,116,77,139,85,200,131,194,116,199,68,36,12,0,0,0,0,139,133,124,252,255, 255,137,68,36,8,139,133,120,252,255,255,137,68,36,4,137,20,36,232,78,243,255,255,217,157,92,252,255,255,141,131,132,164,4,0,243,15,16,0,243,15,16,141,92,252,255,255,15,46,200,122,6,15,132,102,3,0,0,131,125,32,0,15,132,42,3,0,0,131,125,192,1,15,142,16, 3,0,0,139,69,200,139,64,28,137,69,184,139,69,184,131,224,1,137,69,180,139,85,200,131,194,88,199,68,36,12,1,0,0,0,139,133,124,252,255,255,137,68,36,8,139,133,120,252,255,255,137,68,36,4,137,20,36,232,219,242,255,255,217,93,176,131,125,192,100,126,7,199, 69,192,100,0,0,0,199,69,196,0,0,0,0,139,69,200,139,128,148,0,0,0,137,69,188,233,222,0,0,0,139,69,196,141,52,0,199,68,36,12,1,0,0,0,139,133,124,252,255,255,137,68,36,8,139,133,120,252,255,255,137,68,36,4,139,69,188,137,4,36,232,83,244,255,255,217,157, 96,252,255,255,243,15,16,133,96,252,255,255,243,15,88,69,24,243,15,17,68,36,4,139,133,128,252,255,255,137,4,36,232,100,141,254,255,217,157,100,252,255,255,243,15,44,133,100,252,255,255,137,132,181,144,252,255,255,139,69,196,1,192,141,112,1,139,85,188, 131,194,28,199,68,36,12,1,0,0,0,139,133,124,252,255,255,137,68,36,8,139,133,120,252,255,255,137,68,36,4,137,20,36,232,229,243,255,255,217,157,104,252,255,255,243,15,16,133,104,252,255,255,243,15,88,69,28,243,15,17,68,36,4,139,133,128,252,255,255,137, 4,36,232,122,142,254,255,217,157,108,252,255,255,243,15,44,133,108,252,255,255,137,132,181,144,252,255,255,255,69,196,131,69,188,56,139,69,196,59,69,192,15,140,22,255,255,255,141,131,136,164,4,0,243,15,16,0,15,46,69,176,119,2,235,11,141,131,136,164,4, 0,139,0,137,69,176,139,85,200,131,194,60,199,68,36,12,1,0,0,0,139,133,124,252,255,255,137,68,36,8,139,133,120,252,255,255,137,68,36,4,137,20,36,232,130,241,255,255,217,157,112,252,255,255,243,15,44,149,112,252,255,255,141,69,224,137,68,36,4,137,20,36, 232,111,252,255,255,139,69,184,131,224,1,132,192,116,105,139,85,200,131,194,32,199,68,36,12,1,0,0,0,139,133,124,252,255,255,137,68,36,8,139,133,120,252,255,255,137,68,36,4,137,20,36,232,49,241,255,255,217,157,116,252,255,255,243,15,44,149,116,252,255, 255,141,69,204,137,68,36,4,137,20,36,232,30,252,255,255,139,133,128,252,255,255,137,4,36,232,3,124,254,255,137,68,36,4,141,131,138,93,4,0,137,4,36,232,158,124,2,0,235,32,139,133,128,252,255,255,137,4,36,232,225,123,254,255,137,68,36,4,141,131,163,93, 4,0,137,4,36,232,124,124,2,0,199,69,196,0,0,0,0,235,50,139,69,196,1,192,64,139,148,133,144,252,255,255,139,69,196,1,192,139,132,133,144,252,255,255,137,84,36,8,137,68,36,4,141,131,185,93,4,0,137,4,36,232,68,124,2,0,255,69,196,139,69,196,59,69,192,124, 198,243,15,90,69,176,242,15,17,68,36,4,141,131,193,93,4,0,137,4,36,232,32,124,2,0,139,69,184,131,224,1,132,192,116,30,141,69,224,137,68,36,8,141,69,204,137,68,36,4,141,131,205,93,4,0,137,4,36,232,250,123,2,0,235,21,141,69,224,137,68,36,4,141,131,228, 93,4,0,137,4,36,232,227,123,2,0,139,69,184,131,224,2,133,192,116,14,141,131,239,93,4,0,137,4,36,232,203,123,2,0,139,133,124,252,255,255,137,68,36,4,141,131,251,93,4,0,137,4,36,232,179,123,2,0,235,66,141,131,12,94,4,0,137,4,36,232,76,223,2,0,235,50,131, 125,192,1,126,44,139,133,128,252,255,255,137,4,36,232,224,122,254,255,137,194,139,133,124,252,255,255,137,68,36,8,137,84,36,4,141,131,67,94,4,0,137,4,36,232,111,123,2,0,141,131,40,178,4,0,139,0,139,85,244,51,16,116,5,232,92,166,4,0,129,196,176,3,0,0, 91,94,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,139,69,8,137,69,228,139,69,228,139,136,148,0,0,0,141,131,46,216,4,0,139,0,141,20,133,0,0,0,0,141,4,213,0,0,0,0,41,208,141,4,1,137,69,224,199,68,36,4,0,0,0,0,141,131,94,216,4,0,137,4,36,232,5, 172,0,0,133,192,117,19,141,131,34,90,4,0,137,4,36,232,150,222,2,0,233,203,1,0,0,141,131,50,216,4,0,243,15,16,0,243,15,88,69,12,141,131,50,216,4,0,243,15,17,0,141,131,62,216,4,0,243,15,16,0,243,15,88,69,16,141,131,62,216,4,0,243,15,17,0,139,69,224,15, 182,64,1,132,192,116,107,141,131,74,160,4,0,243,15,16,0,15,46,69,12,117,4,122,2,235,87,141,131,50,216,4,0,243,15,16,8,141,131,58,216,4,0,243,15,16,0,243,15,89,200,141,131,54,216,4,0,243,15,16,0,243,15,88,193,141,131,86,216,4,0,139,16,141,131,90,216,4, 0,139,0,199,68,36,16,1,0,0,0,243,15,17,68,36,12,137,84,36,8,137,68,36,4,139,69,224,137,4,36,232,33,243,255,255,139,69,224,131,192,28,15,182,64,1,132,192,116,110,141,131,74,160,4,0,243,15,16,0,15,46,69,16,117,4,122,2,235,90,141,131,62,216,4,0,243,15,16, 8,141,131,70,216,4,0,243,15,16,0,243,15,89,200,141,131,66,216,4,0,243,15,16,0,243,15,88,193,141,131,86,216,4,0,139,8,141,131,90,216,4,0,139,0,139,85,224,131,194,28,199,68,36,16,1,0,0,0,243,15,17,68,36,12,137,76,36,8,137,68,36,4,137,20,36,232,165,242, 255,255,141,131,78,216,4,0,139,0,133,192,116,75,141,131,212,154,4,0,137,4,36,232,144,227,1,0,137,194,141,131,78,216,4,0,139,8,141,131,74,216,4,0,139,48,141,131,90,216,4,0,139,56,141,69,216,137,68,36,20,199,68,36,16,1,0,0,0,137,84,36,12,137,76,36,8,137, 116,36,4,137,60,36,232,37,224,255,255,141,131,78,216,4,0,139,0,133,192,116,28,141,131,74,216,4,0,139,16,141,131,78,216,4,0,139,0,137,84,36,4,137,4,36,232,156,201,255,255,141,131,82,216,4,0,139,0,133,192,116,28,141,131,74,216,4,0,139,16,141,131,82,216, 4,0,139,0,137,84,36,4,137,4,36,232,130,79,253,255,131,196,60,91,94,95,201,195,85,137,229,83,129,236,132,0,0,0,232,0,0,0,0,91,139,69,8,137,69,244,139,69,244,139,128,144,0,0,0,137,69,236,199,69,232,255,255,255,255,199,69,228,255,255,255,127,139,85,244, 131,194,116,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69,20,137,68,36,4,137,20,36,232,23,237,255,255,217,93,160,141,131,13,158,4,0,243,15,16,0,243,15,16,77,160,15,46,200,122,2,116,2,235,12,199,69,164,0,0,0,0,233,247,2,0,0,199,69,240,0,0,0,0,139, 69,244,139,128,148,0,0,0,137,69,224,233,47,1,0,0,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69,20,137,68,36,4,139,69,224,137,4,36,232,132,238,255,255,217,93,168,243,15,44,69,168,137,69,220,243,15,42,69,220,243,15,88,69,32,243,15,17,68,36,4,139,69, 12,137,4,36,232,150,135,254,255,217,93,172,243,15,44,69,172,137,69,216,139,85,224,131,194,28,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69,20,137,68,36,4,137,20,36,232,47,238,255,255,217,93,176,243,15,44,69,176,137,69,212,243,15,42,69,212,243,15, 88,69,36,243,15,17,68,36,4,139,69,12,137,4,36,232,197,136,254,255,217,93,180,243,15,44,69,180,137,69,208,139,85,40,139,69,216,41,208,137,69,204,139,85,44,139,69,208,41,208,137,69,200,139,69,224,15,182,64,1,132,192,117,14,139,69,224,131,192,28,15,182, 64,1,132,192,116,82,131,125,204,0,121,3,247,93,204,131,125,200,0,121,3,247,93,200,139,69,200,59,69,204,126,6,139,69,200,137,69,204,139,69,204,59,69,228,125,42,243,15,42,69,220,141,131,249,213,4,0,243,15,17,0,243,15,42,69,212,141,131,5,214,4,0,243,15, 17,0,139,69,204,137,69,228,139,69,240,137,69,232,255,69,240,131,69,224,56,139,69,240,59,69,236,15,140,197,254,255,255,131,125,228,6,126,12,199,69,164,0,0,0,0,233,146,1,0,0,131,125,60,0,15,132,129,1,0,0,141,131,17,158,4,0,139,0,137,68,36,4,139,69,12,137, 4,36,232,107,131,254,255,217,93,184,141,131,13,158,4,0,139,0,137,68,36,4,139,69,12,137,4,36,232,81,131,254,255,217,93,188,243,15,16,69,184,243,15,92,69,188,141,131,253,213,4,0,243,15,17,0,141,131,17,158,4,0,139,0,137,68,36,4,139,69,12,137,4,36,232,165, 132,254,255,217,93,192,141,131,13,158,4,0,139,0,137,68,36,4,139,69,12,137,4,36,232,139,132,254,255,217,93,196,243,15,16,69,192,243,15,92,69,196,141,131,9,214,4,0,243,15,17,0,141,147,245,213,4,0,141,131,13,158,4,0,139,0,137,2,141,147,1,214,4,0,141,131, 13,158,4,0,139,0,137,2,141,147,13,214,4,0,139,69,12,137,2,141,147,17,214,4,0,139,69,24,137,2,141,147,21,214,4,0,139,69,28,137,2,141,147,25,214,4,0,139,69,16,137,2,139,69,232,141,20,0,141,131,241,213,4,0,137,16,141,147,29,214,4,0,139,69,20,137,2,141,131, 17,214,4,0,139,0,133,192,116,40,141,131,17,214,4,0,139,16,141,131,13,214,4,0,139,0,137,84,36,8,137,68,36,4,141,131,33,214,4,0,137,4,36,232,120,168,0,0,235,38,141,131,25,214,4,0,139,16,141,131,21,214,4,0,139,0,137,84,36,8,137,68,36,4,141,131,33,214,4, 0,137,4,36,232,167,168,0,0,139,69,44,137,68,36,20,139,69,40,137,68,36,16,199,68,36,12,0,0,0,0,141,131,181,253,255,255,137,68,36,8,139,69,8,137,68,36,4,139,69,12,137,4,36,232,109,116,254,255,199,69,164,1,0,0,0,139,69,164,129,196,132,0,0,0,91,201,195,85, 137,229,131,236,24,139,69,8,139,128,144,0,0,0,141,20,197,0,0,0,0,141,4,213,0,0,0,0,41,208,137,194,139,69,8,139,128,148,0,0,0,137,84,36,4,137,4,36,232,185,250,1,0,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,186,255,255,255,141,187,175, 238,255,255,141,131,84,84,4,0,137,4,36,232,28,223,1,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,156,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,208,211,1,0,137,194,141,131,236,168,4,0,139,0,137,16,141,131,236,168,4, 0,139,0,139,0,137,4,36,232,17,220,1,0,141,131,96,84,4,0,137,4,36,232,192,222,1,0,141,147,175,238,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,170,214,1,0,141,131,106,84,4,0,137,4,36,232,144,222,1,0,141,147,175,238,255,255, 199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,122,214,1,0,141,131,120,84,4,0,137,4,36,232,96,222,1,0,141,147,175,238,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,74,214,1,0,141,131,236,168,4,0,139, 0,139,16,141,131,108,173,4,0,137,68,36,4,137,20,36,232,20,219,1,0,141,147,99,241,255,255,141,131,236,168,4,0,139,0,139,0,137,84,36,4,137,4,36,232,163,218,1,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,163,167,4,0,139, 0,139,0,137,4,36,232,21,19,2,0,137,69,244,199,69,240,1,0,0,0,232,137,161,253,255,137,194,139,69,244,137,80,28,141,131,118,78,4,0,137,4,36,232,186,221,1,0,139,85,244,129,194,228,0,0,0,137,68,36,4,137,20,36,232,197,226,255,255,141,131,63,83,4,0,137,4,36, 232,151,221,1,0,139,85,244,129,194,0,1,0,0,137,68,36,4,137,20,36,232,162,226,255,255,141,131,65,83,4,0,137,4,36,232,116,221,1,0,139,85,244,129,194,28,1,0,0,137,68,36,4,137,20,36,232,127,226,255,255,139,85,244,129,194,56,1,0,0,141,131,23,153,4,0,139,0, 137,68,36,4,137,20,36,232,158,225,255,255,139,85,244,129,194,84,1,0,0,141,131,23,153,4,0,139,0,137,68,36,4,137,20,36,232,129,225,255,255,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,193,95,1,0,137,69,236,139,69,236,139,16,141,131, 67,83,4,0,137,68,36,4,137,20,36,232,52,160,4,0,133,192,116,27,139,69,236,139,16,141,131,115,126,4,0,137,68,36,4,137,20,36,232,25,160,4,0,133,192,117,16,199,69,240,2,0,0,0,255,77,12,131,69,16,8,235,157,139,69,236,139,16,141,131,198,81,4,0,137,68,36,4, 137,20,36,232,238,159,4,0,133,192,117,54,131,125,12,1,126,48,139,69,16,131,192,8,139,85,244,129,194,56,1,0,0,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,110,229,255,255,131,109,12,2,131,69,16,16,233,76,255,255,255,139,69,236,139,16,141,131,76,83,4, 0,137,68,36,4,137,20,36,232,157,159,4,0,133,192,117,54,131,125,12,1,126,48,139,69,16,131,192,8,139,85,244,129,194,84,1,0,0,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,29,229,255,255,131,109,12,2,131,69,16,16,233,251,254,255,255,139,69,236,139,16,141, 131,201,81,4,0,137,68,36,4,137,20,36,232,76,159,4,0,133,192,117,54,131,125,12,1,126,48,139,69,16,131,192,8,139,85,244,129,194,228,0,0,0,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,204,228,255,255,131,109,12,2,131,69,16,16,233,170,254,255,255,139,69, 236,139,16,141,131,80,83,4,0,137,68,36,4,137,20,36,232,251,158,4,0,133,192,117,54,131,125,12,1,126,48,139,69,16,131,192,8,139,85,244,129,194,0,1,0,0,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,123,228,255,255,131,109,12,2,131,69,16,16,233,89,254,255, 255,139,69,236,139,16,141,131,83,83,4,0,137,68,36,4,137,20,36,232,170,158,4,0,133,192,117,54,131,125,12,1,126,48,139,69,16,131,192,8,139,85,244,129,194,28,1,0,0,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,42,228,255,255,131,109,12,2,131,69,16,16,233, 8,254,255,255,131,125,12,0,116,40,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,129,194,200,0,0,0,137,68,36,8,137,76,36,4,137,20,36,232,5,229,255,255,235,28,139,69,244,5,200,0,0,0,141,147,23,153,4,0,139,18,137,84,36,4,137,4,36,232,63,223,255,255, 131,125,12,0,116,37,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,131,194,32,137,68,36,8,137,76,36,4,137,20,36,232,170,227,255,255,235,26,139,69,244,131,192,32,141,147,19,153,4,0,139,18,137,84,36,4,137,4,36,232,250,222,255,255,131,125,12,0,116, 37,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,131,194,60,137,68,36,8,137,76,36,4,137,20,36,232,101,227,255,255,235,26,139,69,244,131,192,60,141,147,23,153,4,0,139,18,137,84,36,4,137,4,36,232,181,222,255,255,131,125,12,0,116,37,139,69,16,131, 69,16,8,139,77,12,255,77,12,139,85,244,131,194,88,137,68,36,8,137,76,36,4,137,20,36,232,32,227,255,255,235,26,139,69,244,131,192,88,141,147,23,153,4,0,139,18,137,84,36,4,137,4,36,232,112,222,255,255,131,125,12,0,116,37,139,69,16,131,69,16,8,139,77,12, 255,77,12,139,85,244,131,194,116,137,68,36,8,137,76,36,4,137,20,36,232,219,226,255,255,235,26,139,69,244,131,192,116,141,147,23,153,4,0,139,18,137,84,36,4,137,4,36,232,43,222,255,255,131,125,12,0,116,40,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85, 244,129,194,144,0,0,0,137,68,36,8,137,76,36,4,137,20,36,232,147,226,255,255,235,28,139,69,244,5,144,0,0,0,141,147,23,153,4,0,139,18,137,84,36,4,137,4,36,232,225,221,255,255,131,125,12,0,116,40,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,129, 194,172,0,0,0,137,68,36,8,137,76,36,4,137,20,36,232,73,226,255,255,235,27,243,15,42,69,240,139,69,244,5,172,0,0,0,243,15,17,68,36,4,137,4,36,232,152,221,255,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,15,182, 128,56,1,0,0,60,1,117,14,139,69,8,15,182,128,57,1,0,0,132,192,116,26,141,131,4,77,4,0,137,68,36,4,139,69,8,137,4,36,232,157,214,2,0,233,215,0,0,0,139,69,8,243,15,16,136,60,1,0,0,141,131,72,148,4,0,243,15,16,0,15,46,200,15,149,192,15,154,194,9,208,15, 182,192,137,69,244,141,131,72,148,4,0,243,15,16,0,15,46,69,12,122,2,116,10,131,125,244,0,15,133,149,0,0,0,141,131,72,148,4,0,243,15,16,0,15,46,69,12,117,10,122,8,131,125,244,0,117,2,235,123,139,69,8,139,64,28,199,68,36,4,2,0,0,0,137,4,36,232,173,207, 253,255,141,131,72,148,4,0,243,15,16,0,15,46,69,12,117,4,122,2,235,17,141,131,76,148,4,0,243,15,16,0,243,15,17,69,228,235,15,141,131,72,148,4,0,243,15,16,0,243,15,17,69,228,139,69,8,5,56,1,0,0,243,15,16,69,228,243,15,17,68,36,4,137,4,36,232,139,220,255, 255,139,69,8,139,64,28,199,68,36,4,1,0,0,0,137,4,36,232,72,207,253,255,131,196,52,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,15,182,128,200,0,0,0,60,55,117,14,139,69,8,15,182,128,201,0,0,0,132,192,117,26,141,131,107,77,4,0,137,4,36,232, 88,212,2,0,199,69,228,255,255,255,255,233,5,2,0,0,139,69,8,139,144,204,0,0,0,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,137,84,36,4,139,69,16,137,4,36,232,149,198,255,255,133,192,117,41,139,69,8,139,128,204,0,0,0,139,0,137, 68,36,4,141,131,134,77,4,0,137,4,36,232,254,211,2,0,199,69,228,255,255,255,255,233,171,1,0,0,139,69,240,131,248,3,116,41,139,69,8,139,128,204,0,0,0,139,0,137,68,36,4,141,131,158,77,4,0,137,4,36,232,205,211,2,0,199,69,228,255,255,255,255,233,122,1,0,0, 139,85,12,139,69,244,141,4,2,139,0,137,69,232,139,85,8,131,194,60,199,68,36,12,1,0,0,0,139,69,12,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,131,225,255,255,139,69,28,217,24,139,85,8,131,194,88,199,68,36,12,1,0,0,0,139,69,12,137,68,36,8,139,69,16, 137,68,36,4,137,20,36,232,90,225,255,255,139,69,32,217,24,139,85,8,129,194,144,0,0,0,199,68,36,12,1,0,0,0,139,69,12,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,46,225,255,255,139,69,36,217,24,139,85,8,131,194,116,199,68,36,12,1,0,0,0,139,69,12,137, 68,36,8,139,69,16,137,68,36,4,137,20,36,232,5,225,255,255,139,69,40,217,24,139,85,8,129,194,172,0,0,0,199,68,36,12,1,0,0,0,139,69,12,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,217,224,255,255,139,69,44,217,24,139,85,8,129,194,56,1,0,0,199,68,36, 12,1,0,0,0,139,69,12,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,173,224,255,255,139,69,48,217,24,139,85,8,129,194,84,1,0,0,199,68,36,12,1,0,0,0,139,69,12,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,129,224,255,255,139,69,52,217,24,139,85,236, 139,69,20,137,16,139,85,24,139,69,232,137,2,139,85,8,129,194,228,0,0,0,139,69,56,137,16,139,85,8,129,194,0,1,0,0,139,69,60,137,16,139,85,8,129,194,28,1,0,0,139,69,64,137,16,199,69,228,0,0,0,0,139,69,228,131,196,68,91,201,195,85,137,229,83,131,236,100, 232,0,0,0,0,91,199,69,208,0,0,0,0,139,69,8,137,4,36,232,200,209,255,255,137,69,220,131,125,220,0,117,35,139,69,8,139,0,137,68,36,4,141,131,100,75,4,0,137,4,36,232,255,209,2,0,199,69,196,255,255,255,255,233,185,1,0,0,141,131,11,158,4,0,139,0,57,69,8,116, 55,139,69,220,137,4,36,232,174,209,255,255,137,69,208,131,125,208,0,117,35,139,69,8,139,0,137,68,36,4,141,131,127,75,4,0,137,4,36,232,187,209,2,0,199,69,196,255,255,255,255,233,117,1,0,0,139,69,220,139,64,12,193,224,2,137,69,240,131,125,28,0,116,22,139, 69,28,15,182,64,1,132,192,116,11,139,69,28,139,64,4,137,69,212,235,17,141,131,3,75,4,0,137,4,36,232,253,212,1,0,137,69,212,141,69,216,137,68,36,16,141,69,224,137,68,36,12,141,69,236,137,68,36,8,139,69,212,137,68,36,4,139,69,220,137,4,36,232,197,195,255, 255,133,192,116,7,139,69,224,133,192,116,7,199,69,236,255,255,255,255,131,125,24,0,116,22,139,69,24,15,182,64,1,132,192,116,11,139,69,24,139,64,4,137,69,212,235,17,141,131,58,70,4,0,137,4,36,232,151,212,1,0,137,69,212,141,69,216,137,68,36,16,141,69,224, 137,68,36,12,141,69,228,137,68,36,8,139,69,212,137,68,36,4,139,69,220,137,4,36,232,95,195,255,255,133,192,116,7,139,69,224,133,192,116,7,199,69,228,255,255,255,255,131,125,32,0,116,22,139,69,32,15,182,64,1,132,192,116,11,139,69,32,139,64,4,137,69,212, 235,17,141,131,5,75,4,0,137,4,36,232,49,212,1,0,137,69,212,141,69,216,137,68,36,16,141,69,224,137,68,36,12,141,69,232,137,68,36,8,139,69,212,137,68,36,4,139,69,220,137,4,36,232,249,194,255,255,133,192,116,7,139,69,224,133,192,116,7,199,69,232,255,255, 255,255,139,85,12,139,69,208,137,2,139,85,16,139,69,220,137,2,139,85,20,139,69,240,137,2,139,85,228,139,69,36,137,16,139,85,236,139,69,40,137,16,139,85,232,139,69,44,137,16,199,69,196,0,0,0,0,139,69,196,131,196,100,91,201,195,85,137,229,87,86,83,129, 236,28,1,0,0,232,0,0,0,0,91,139,69,8,137,69,228,199,69,156,255,255,255,127,199,69,152,255,255,255,127,199,69,148,1,0,0,128,199,69,144,1,0,0,128,141,133,116,255,255,255,137,68,36,56,141,133,120,255,255,255,137,68,36,52,141,133,124,255,255,255,137,68,36, 48,141,69,164,137,68,36,44,141,69,168,137,68,36,40,141,69,180,137,68,36,36,141,69,184,137,68,36,32,141,69,188,137,68,36,28,141,69,192,137,68,36,24,141,69,196,137,68,36,20,141,69,160,137,68,36,16,141,69,200,137,68,36,12,139,69,20,137,68,36,8,139,69,16, 137,68,36,4,139,69,228,137,4,36,232,248,250,255,255,133,192,15,133,122,4,0,0,243,15,16,69,168,141,131,197,142,4,0,243,15,16,8,15,46,193,117,7,122,5,233,95,4,0,0,139,149,116,255,255,255,139,141,120,255,255,255,139,181,124,255,255,255,139,125,200,141,69, 216,137,68,36,36,141,69,220,137,68,36,32,141,69,212,137,68,36,28,137,84,36,24,137,76,36,20,137,116,36,16,141,69,224,137,68,36,12,141,69,204,137,68,36,8,141,69,208,137,68,36,4,137,60,36,232,211,252,255,255,133,192,15,133,4,4,0,0,139,69,160,139,0,61,208, 7,0,0,126,43,139,69,160,139,8,199,133,36,255,255,255,211,77,98,16,139,133,36,255,255,255,247,233,193,250,6,137,200,193,248,31,137,209,41,193,137,141,40,255,255,255,235,10,199,133,40,255,255,255,1,0,0,0,139,133,40,255,255,255,137,133,112,255,255,255,199, 69,140,0,0,0,0,141,131,197,142,4,0,139,0,137,69,176,233,146,3,0,0,139,141,116,255,255,255,139,181,120,255,255,255,139,189,124,255,255,255,243,15,16,77,188,243,15,16,69,184,15,40,208,243,15,88,85,28,243,15,16,69,192,243,15,88,69,24,139,69,216,137,133, 44,255,255,255,139,69,220,137,133,48,255,255,255,139,69,212,137,133,52,255,255,255,139,69,160,139,80,8,139,69,224,15,175,69,140,1,194,141,69,128,137,68,36,56,141,69,132,137,68,36,52,141,69,136,137,68,36,48,137,76,36,44,137,116,36,40,137,124,36,36,243, 15,17,76,36,32,243,15,17,84,36,28,243,15,17,68,36,24,139,69,140,137,68,36,20,139,141,44,255,255,255,137,76,36,16,139,133,48,255,255,255,137,68,36,12,139,141,52,255,255,255,137,76,36,8,137,84,36,4,139,69,12,137,4,36,232,33,62,253,255,243,15,42,77,156, 243,15,16,69,136,15,46,200,119,2,235,12,243,15,16,69,136,243,15,44,192,137,69,156,243,15,42,77,148,243,15,16,69,136,15,46,193,119,2,235,12,243,15,16,69,136,243,15,44,192,137,69,148,243,15,16,77,132,243,15,16,69,128,243,15,92,200,243,15,42,69,152,15,46, 193,119,2,235,27,243,15,16,77,132,243,15,16,69,128,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,152,243,15,16,77,132,243,15,16,69,128,243,15,88,200,243,15,42,69,144,15,46,200,119,2,235,21,243,15,16,77,132,243,15,16,69,128,243,15,88,193,243, 15,44,192,137,69,144,243,15,16,69,164,141,131,197,142,4,0,243,15,16,8,15,46,193,117,7,122,5,233,17,2,0,0,139,69,212,133,192,120,94,243,15,16,69,192,15,40,200,243,15,88,77,24,243,15,17,141,56,255,255,255,139,69,160,139,80,8,139,69,224,15,175,69,140,1, 194,139,69,212,141,4,2,139,0,139,149,124,255,255,255,137,68,36,4,137,20,36,232,97,219,255,255,217,157,60,255,255,255,243,15,16,133,56,255,255,255,243,15,88,133,60,255,255,255,243,15,17,133,108,255,255,255,235,37,243,15,16,69,24,243,15,88,69,176,243,15, 17,133,108,255,255,255,243,15,16,77,188,243,15,16,69,176,243,15,88,193,243,15,17,69,176,139,69,220,133,192,120,28,139,69,160,139,80,8,139,69,224,15,175,69,140,1,194,139,69,220,141,4,2,139,0,137,69,172,235,11,141,131,197,142,4,0,139,0,137,69,172,243,15, 16,69,184,15,40,208,243,15,88,85,28,243,15,17,149,64,255,255,255,139,149,120,255,255,255,139,69,172,137,68,36,4,137,20,36,232,196,218,255,255,217,157,68,255,255,255,243,15,16,133,64,255,255,255,243,15,88,133,68,255,255,255,243,15,17,133,104,255,255,255, 139,69,208,139,64,28,137,133,100,255,255,255,233,243,0,0,0,139,133,100,255,255,255,137,4,36,232,197,204,1,0,137,133,80,255,255,255,131,189,80,255,255,255,0,15,132,195,0,0,0,139,133,80,255,255,255,139,8,139,117,204,139,69,160,139,80,8,139,69,224,15,175, 69,140,141,4,2,137,194,141,133,84,255,255,255,137,68,36,36,141,133,92,255,255,255,137,68,36,32,141,133,88,255,255,255,137,68,36,28,141,133,96,255,255,255,137,68,36,24,139,133,104,255,255,255,137,68,36,20,139,133,108,255,255,255,137,68,36,16,137,116,36, 12,137,84,36,8,139,69,12,137,68,36,4,139,133,100,255,255,255,137,4,36,255,209,139,133,96,255,255,255,59,69,156,125,9,139,133,96,255,255,255,137,69,156,139,133,88,255,255,255,59,69,152,125,9,139,133,88,255,255,255,137,69,152,139,133,92,255,255,255,59, 69,148,126,9,139,133,92,255,255,255,137,69,148,139,133,84,255,255,255,59,69,144,126,9,139,133,84,255,255,255,137,69,144,139,133,100,255,255,255,139,64,4,137,133,100,255,255,255,131,189,100,255,255,255,0,15,133,0,255,255,255,139,133,112,255,255,255,1, 69,140,139,69,160,139,0,59,69,140,15,143,96,252,255,255,139,85,32,139,69,156,137,2,139,85,36,139,69,152,137,2,139,85,40,139,69,148,137,2,139,85,44,139,69,144,137,2,129,196,28,1,0,0,91,94,95,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,8,201, 195,85,137,229,131,236,8,201,195,85,137,229,87,86,83,129,236,220,1,0,0,232,0,0,0,0,91,139,69,8,137,133,4,255,255,255,139,69,12,137,133,0,255,255,255,139,69,16,137,133,252,254,255,255,139,69,20,137,133,248,254,255,255,141,131,250,150,4,0,139,0,139,16, 137,85,228,49,210,139,133,4,255,255,255,137,69,204,141,133,108,255,255,255,137,68,36,56,141,133,112,255,255,255,137,68,36,52,141,133,116,255,255,255,137,68,36,48,141,69,132,137,68,36,44,141,69,136,137,68,36,40,141,69,152,137,68,36,36,141,69,156,137,68, 36,32,141,69,160,137,68,36,28,141,69,164,137,68,36,24,141,69,168,137,68,36,20,141,69,128,137,68,36,16,141,69,172,137,68,36,12,139,133,248,254,255,255,137,68,36,8,139,133,252,254,255,255,137,68,36,4,139,69,204,137,4,36,232,105,245,255,255,133,192,15,133, 135,16,0,0,243,15,16,69,136,141,131,86,137,4,0,243,15,16,8,15,46,193,117,12,122,10,131,125,32,0,15,133,103,16,0,0,139,149,108,255,255,255,139,141,112,255,255,255,139,181,116,255,255,255,139,125,172,141,69,192,137,68,36,36,141,69,196,137,68,36,32,141, 69,188,137,68,36,28,137,84,36,24,137,76,36,20,137,116,36,16,141,69,200,137,68,36,12,141,69,176,137,68,36,8,141,69,180,137,68,36,4,137,60,36,232,63,247,255,255,133,192,116,5,233,11,16,0,0,139,69,128,139,0,137,133,124,255,255,255,139,69,128,139,64,8,137, 133,120,255,255,255,131,125,32,0,15,132,215,14,0,0,243,15,16,69,152,141,131,86,137,4,0,243,15,16,8,15,46,193,122,2,116,5,233,62,3,0,0,141,131,122,138,4,0,139,0,137,133,104,255,255,255,141,131,230,140,4,0,139,0,137,133,100,255,255,255,199,133,96,255,255, 255,0,0,0,0,243,15,16,77,164,243,15,16,69,24,243,15,88,193,243,15,17,69,144,199,69,184,0,0,0,0,233,229,2,0,0,139,69,188,133,192,120,126,243,15,16,69,164,15,40,200,243,15,88,77,24,139,69,200,15,175,69,184,137,194,3,149,120,255,255,255,139,69,188,141,4, 2,243,15,16,0,243,15,88,193,243,15,17,69,148,139,149,116,255,255,255,139,69,148,137,68,36,4,137,20,36,232,33,215,255,255,217,92,36,4,139,133,0,255,255,255,137,4,36,232,143,113,254,255,217,157,96,254,255,255,243,15,44,133,96,254,255,255,137,133,76,255, 255,255,139,133,76,255,255,255,131,192,2,137,133,72,255,255,255,233,143,0,0,0,139,69,144,137,69,148,243,15,16,77,160,243,15,16,69,144,243,15,88,193,243,15,17,69,144,139,149,116,255,255,255,139,69,148,137,68,36,4,137,20,36,232,185,214,255,255,217,92,36, 4,139,133,0,255,255,255,137,4,36,232,39,113,254,255,217,157,100,254,255,255,243,15,44,133,100,254,255,255,137,133,76,255,255,255,139,149,116,255,255,255,139,69,144,137,68,36,4,137,20,36,232,126,214,255,255,217,92,36,4,139,133,0,255,255,255,137,4,36,232, 236,112,254,255,217,157,104,254,255,255,243,15,44,133,104,254,255,255,137,133,72,255,255,255,139,69,196,133,192,120,44,139,69,200,15,175,69,184,137,194,3,149,120,255,255,255,139,69,196,141,4,2,243,15,16,8,243,15,16,69,156,243,15,88,193,243,15,17,133, 92,255,255,255,235,14,141,131,86,137,4,0,139,0,137,133,92,255,255,255,243,15,16,133,92,255,255,255,15,46,133,100,255,255,255,119,2,235,12,139,133,92,255,255,255,137,133,100,255,255,255,243,15,16,141,92,255,255,255,243,15,16,133,104,255,255,255,15,46, 193,119,2,235,12,139,133,92,255,255,255,137,133,104,255,255,255,139,133,124,255,255,255,72,59,69,184,116,18,139,133,72,255,255,255,59,133,76,255,255,255,15,132,13,1,0,0,139,149,112,255,255,255,139,133,100,255,255,255,137,68,36,4,137,20,36,232,159,213, 255,255,217,157,108,254,255,255,243,15,16,133,108,254,255,255,243,15,88,69,28,243,15,17,68,36,4,139,133,0,255,255,255,137,4,36,232,124,113,254,255,217,157,112,254,255,255,243,15,16,69,168,243,15,88,133,112,254,255,255,243,15,44,248,139,149,112,255,255, 255,139,133,104,255,255,255,137,68,36,4,137,20,36,232,73,213,255,255,217,157,116,254,255,255,243,15,16,133,116,254,255,255,243,15,88,69,28,243,15,17,68,36,4,139,133,0,255,255,255,137,4,36,232,38,113,254,255,217,157,120,254,255,255,243,15,44,181,120,254, 255,255,139,133,0,255,255,255,137,4,36,232,126,95,254,255,137,194,139,133,252,254,255,255,137,68,36,24,137,124,36,20,139,133,72,255,255,255,137,68,36,16,137,116,36,12,139,133,76,255,255,255,137,68,36,8,137,84,36,4,141,131,38,68,4,0,137,4,36,232,241,95, 2,0,255,133,96,255,255,255,141,131,122,138,4,0,139,0,137,133,104,255,255,255,141,131,230,140,4,0,139,0,137,133,100,255,255,255,129,189,96,255,255,255,208,7,0,0,15,143,241,9,0,0,129,189,76,255,255,255,183,11,0,0,15,143,225,9,0,0,255,69,184,139,69,184, 59,133,124,255,255,255,15,140,12,253,255,255,233,202,9,0,0,199,133,68,255,255,255,255,255,255,255,199,133,64,255,255,255,0,0,0,0,141,131,86,137,4,0,139,0,137,133,60,255,255,255,141,131,86,137,4,0,139,0,137,133,56,255,255,255,199,133,48,255,255,255,0, 0,0,0,139,85,204,131,194,32,199,68,36,12,1,0,0,0,139,133,252,254,255,255,137,68,36,8,139,133,248,254,255,255,137,68,36,4,137,20,36,232,138,211,255,255,217,157,124,254,255,255,243,15,44,149,124,254,255,255,141,69,208,137,68,36,4,137,20,36,232,119,222, 255,255,139,69,192,133,192,15,136,36,6,0,0,139,133,0,255,255,255,137,4,36,232,81,94,254,255,137,68,36,4,141,131,125,68,4,0,137,4,36,232,236,94,2,0,199,69,184,0,0,0,0,139,69,164,137,69,144,233,228,1,0,0,139,69,188,133,192,120,41,139,69,200,15,175,69,184, 137,194,3,149,120,255,255,255,139,69,188,141,4,2,243,15,16,8,243,15,16,69,164,243,15,88,193,243,15,17,69,148,235,25,139,69,144,137,69,148,243,15,16,77,160,243,15,16,69,144,243,15,88,193,243,15,17,69,144,139,69,196,133,192,120,31,139,69,200,15,175,69, 184,137,194,3,149,120,255,255,255,139,69,196,141,4,2,139,0,137,133,60,255,255,255,235,14,141,131,86,137,4,0,139,0,137,133,60,255,255,255,139,69,200,15,175,69,184,137,194,3,149,120,255,255,255,139,69,192,141,4,2,139,0,137,133,56,255,255,255,139,149,116, 255,255,255,139,69,148,137,68,36,4,137,20,36,232,6,211,255,255,217,157,128,254,255,255,243,15,16,133,128,254,255,255,243,15,88,69,24,243,15,17,68,36,4,139,133,0,255,255,255,137,4,36,232,95,109,254,255,217,157,52,255,255,255,243,15,90,141,52,255,255,255, 141,131,198,137,4,0,242,15,16,0,242,15,88,193,242,15,44,192,137,133,48,255,255,255,139,69,188,133,192,121,18,139,133,48,255,255,255,59,133,68,255,255,255,15,132,176,0,0,0,243,15,16,69,156,243,15,88,133,60,255,255,255,139,133,112,255,255,255,243,15,17, 68,36,4,137,4,36,232,127,210,255,255,217,157,132,254,255,255,243,15,16,133,132,254,255,255,243,15,88,69,28,243,15,17,133,136,254,255,255,139,149,108,255,255,255,139,133,56,255,255,255,137,68,36,4,137,20,36,232,76,210,255,255,217,157,140,254,255,255,243, 15,16,133,136,254,255,255,243,15,92,133,140,254,255,255,243,15,17,68,36,4,139,133,0,255,255,255,137,4,36,232,38,110,254,255,217,157,144,254,255,255,243,15,90,133,144,254,255,255,242,15,17,68,36,8,139,133,48,255,255,255,137,68,36,4,141,131,151,68,4,0, 137,4,36,232,27,93,2,0,255,133,64,255,255,255,139,133,48,255,255,255,137,133,68,255,255,255,129,189,64,255,255,255,231,3,0,0,15,143,182,3,0,0,255,69,184,139,69,184,59,133,124,255,255,255,15,140,13,254,255,255,199,133,68,255,255,255,255,255,255,255,139, 133,124,255,255,255,72,137,69,184,233,252,1,0,0,139,69,188,133,192,120,44,139,69,200,15,175,69,184,137,194,3,149,120,255,255,255,139,69,188,141,4,2,243,15,16,8,243,15,16,69,164,243,15,88,193,243,15,17,133,44,255,255,255,235,28,243,15,16,77,160,243,15, 16,69,144,243,15,92,193,243,15,17,69,144,139,69,144,137,133,44,255,255,255,139,69,196,133,192,120,31,139,69,200,15,175,69,184,137,194,3,149,120,255,255,255,139,69,196,141,4,2,139,0,137,133,60,255,255,255,235,14,141,131,86,137,4,0,139,0,137,133,60,255, 255,255,139,69,200,15,175,69,184,137,194,3,149,120,255,255,255,139,69,192,141,4,2,139,0,137,133,56,255,255,255,139,149,116,255,255,255,139,133,44,255,255,255,137,68,36,4,137,20,36,232,241,208,255,255,217,157,148,254,255,255,243,15,16,133,148,254,255, 255,243,15,88,69,24,243,15,17,68,36,4,139,133,0,255,255,255,137,4,36,232,74,107,254,255,217,157,52,255,255,255,243,15,90,141,52,255,255,255,141,131,198,137,4,0,242,15,16,0,242,15,88,193,242,15,44,192,137,133,48,255,255,255,139,69,188,133,192,121,18,139, 133,48,255,255,255,59,133,68,255,255,255,15,132,191,0,0,0,243,15,16,69,156,15,40,200,243,15,88,77,28,243,15,17,141,152,254,255,255,139,149,112,255,255,255,139,133,60,255,255,255,137,68,36,4,137,20,36,232,94,208,255,255,217,157,156,254,255,255,243,15, 16,133,152,254,255,255,243,15,88,133,156,254,255,255,243,15,17,133,160,254,255,255,139,149,108,255,255,255,139,133,56,255,255,255,137,68,36,4,137,20,36,232,40,208,255,255,217,157,164,254,255,255,243,15,16,133,160,254,255,255,243,15,88,133,164,254,255, 255,243,15,17,68,36,4,139,133,0,255,255,255,137,4,36,232,2,108,254,255,217,157,168,254,255,255,243,15,90,133,168,254,255,255,242,15,17,68,36,8,139,133,48,255,255,255,137,68,36,4,141,131,151,68,4,0,137,4,36,232,247,90,2,0,255,133,64,255,255,255,139,133, 48,255,255,255,137,133,68,255,255,255,129,189,64,255,255,255,231,3,0,0,15,143,146,1,0,0,255,77,184,131,125,184,0,15,137,250,253,255,255,131,189,64,255,255,255,3,15,143,120,1,0,0,243,15,16,69,156,15,40,200,243,15,88,77,28,243,15,17,141,172,254,255,255, 139,149,112,255,255,255,139,133,60,255,255,255,137,68,36,4,137,20,36,232,105,207,255,255,217,157,176,254,255,255,243,15,16,133,172,254,255,255,243,15,88,133,176,254,255,255,243,15,17,133,180,254,255,255,139,149,108,255,255,255,139,133,56,255,255,255, 137,68,36,4,137,20,36,232,51,207,255,255,217,157,184,254,255,255,243,15,16,133,180,254,255,255,243,15,88,133,184,254,255,255,243,15,17,68,36,4,139,133,0,255,255,255,137,4,36,232,13,107,254,255,217,157,188,254,255,255,243,15,90,133,188,254,255,255,139, 133,48,255,255,255,131,192,10,242,15,17,68,36,8,137,68,36,4,141,131,151,68,4,0,137,4,36,232,255,89,2,0,243,15,16,69,156,15,40,200,243,15,88,77,28,243,15,17,141,192,254,255,255,139,149,112,255,255,255,139,133,60,255,255,255,137,68,36,4,137,20,36,232,173, 206,255,255,217,157,196,254,255,255,243,15,16,133,192,254,255,255,243,15,88,133,196,254,255,255,243,15,17,133,200,254,255,255,139,149,108,255,255,255,139,133,56,255,255,255,137,68,36,4,137,20,36,232,119,206,255,255,217,157,204,254,255,255,243,15,16,133, 200,254,255,255,243,15,92,133,204,254,255,255,243,15,17,68,36,4,139,133,0,255,255,255,137,4,36,232,81,106,254,255,217,157,208,254,255,255,243,15,90,133,208,254,255,255,139,133,48,255,255,255,131,192,10,242,15,17,68,36,8,137,68,36,4,141,131,151,68,4,0, 137,4,36,232,67,89,2,0,141,69,208,137,68,36,8,141,69,208,137,68,36,4,141,131,162,68,4,0,137,4,36,232,39,89,2,0,243,15,16,69,152,141,131,182,137,4,0,15,46,0,122,2,116,2,235,14,141,131,193,66,4,0,137,4,36,232,5,89,2,0,139,133,252,254,255,255,137,68,36, 4,141,131,195,68,4,0,137,4,36,232,237,88,2,0,233,26,3,0,0,243,15,16,69,168,141,131,86,137,4,0,243,15,16,8,15,46,193,119,5,233,1,3,0,0,139,133,0,255,255,255,137,4,36,232,20,88,254,255,137,68,36,4,141,131,223,68,4,0,137,4,36,232,175,88,2,0,139,69,164,137, 69,144,199,69,184,0,0,0,0,233,165,1,0,0,139,69,188,133,192,120,44,139,69,200,15,175,69,184,137,194,3,149,120,255,255,255,139,69,188,141,4,2,243,15,16,8,243,15,16,69,164,243,15,88,193,243,15,17,133,40,255,255,255,235,28,139,69,144,137,133,40,255,255,255, 243,15,16,77,160,243,15,16,69,144,243,15,88,193,243,15,17,69,144,139,69,196,133,192,120,31,139,69,200,15,175,69,184,137,194,3,149,120,255,255,255,139,69,196,141,4,2,139,0,137,133,60,255,255,255,235,14,141,131,86,137,4,0,139,0,137,133,60,255,255,255,139, 149,116,255,255,255,139,133,40,255,255,255,137,68,36,4,137,20,36,232,221,204,255,255,217,157,212,254,255,255,243,15,16,133,212,254,255,255,243,15,88,69,24,243,15,17,68,36,4,139,133,0,255,255,255,137,4,36,232,54,103,254,255,217,157,52,255,255,255,243, 15,90,141,52,255,255,255,141,131,198,137,4,0,242,15,16,0,242,15,88,193,242,15,44,192,137,133,48,255,255,255,139,69,188,133,192,121,18,139,133,48,255,255,255,59,133,68,255,255,255,15,132,137,0,0,0,243,15,16,69,156,15,40,200,243,15,88,77,28,243,15,17,141, 216,254,255,255,139,149,112,255,255,255,139,133,60,255,255,255,137,68,36,4,137,20,36,232,74,204,255,255,217,157,220,254,255,255,243,15,16,133,216,254,255,255,243,15,88,133,220,254,255,255,243,15,17,68,36,4,139,133,0,255,255,255,137,4,36,232,36,104,254, 255,217,157,224,254,255,255,243,15,90,133,224,254,255,255,242,15,17,68,36,8,139,133,48,255,255,255,137,68,36,4,141,131,151,68,4,0,137,4,36,232,25,87,2,0,255,133,64,255,255,255,139,133,48,255,255,255,137,133,68,255,255,255,129,189,64,255,255,255,231,3, 0,0,127,18,255,69,184,139,69,184,59,133,124,255,255,255,15,140,76,254,255,255,131,189,64,255,255,255,0,117,19,141,131,246,68,4,0,137,4,36,232,210,86,2,0,233,147,0,0,0,131,189,64,255,255,255,1,15,133,134,0,0,0,243,15,16,69,156,15,40,200,243,15,88,77,28, 243,15,17,141,228,254,255,255,139,149,112,255,255,255,139,133,60,255,255,255,137,68,36,4,137,20,36,232,110,203,255,255,217,157,232,254,255,255,243,15,16,133,228,254,255,255,243,15,88,133,232,254,255,255,243,15,17,68,36,4,139,133,0,255,255,255,137,4,36, 232,72,103,254,255,217,157,236,254,255,255,243,15,90,133,236,254,255,255,139,133,48,255,255,255,131,192,10,242,15,17,68,36,8,137,68,36,4,141,131,151,68,4,0,137,4,36,232,58,86,2,0,243,15,16,69,168,243,15,90,192,242,15,17,68,36,4,141,131,147,66,4,0,137, 4,36,232,29,86,2,0,141,69,208,137,68,36,4,141,131,182,66,4,0,137,4,36,232,8,86,2,0,243,15,16,69,152,141,131,182,137,4,0,15,46,0,122,2,116,2,235,14,141,131,193,66,4,0,137,4,36,232,230,85,2,0,139,133,252,254,255,255,137,68,36,4,141,131,195,68,4,0,137,4, 36,232,206,85,2,0,243,15,16,69,132,141,131,86,137,4,0,243,15,16,8,15,46,193,117,7,122,5,233,172,2,0,0,139,69,164,137,69,144,199,69,184,0,0,0,0,233,115,1,0,0,139,69,188,133,192,120,52,243,15,16,69,164,15,40,200,243,15,88,77,24,139,69,200,15,175,69,184, 137,194,3,149,120,255,255,255,139,69,188,141,4,2,243,15,16,0,243,15,88,193,243,15,17,133,36,255,255,255,235,37,243,15,16,69,24,243,15,88,69,144,243,15,17,133,36,255,255,255,243,15,16,77,160,243,15,16,69,144,243,15,88,193,243,15,17,69,144,139,69,196,133, 192,120,28,139,69,200,15,175,69,184,137,194,3,149,120,255,255,255,139,69,196,141,4,2,139,0,137,69,140,235,11,141,131,86,137,4,0,139,0,137,69,140,243,15,16,69,156,15,40,200,243,15,88,77,28,243,15,17,141,240,254,255,255,139,149,112,255,255,255,139,69,140, 137,68,36,4,137,20,36,232,196,201,255,255,217,157,244,254,255,255,243,15,16,133,240,254,255,255,243,15,88,133,244,254,255,255,243,15,17,133,32,255,255,255,139,69,180,139,64,28,137,133,28,255,255,255,235,127,139,133,28,255,255,255,137,4,36,232,200,187, 1,0,137,133,24,255,255,255,131,189,24,255,255,255,0,116,83,139,133,24,255,255,255,139,72,16,139,117,176,139,69,200,15,175,69,184,3,133,120,255,255,255,137,194,139,69,32,137,68,36,24,139,133,32,255,255,255,137,68,36,20,139,133,36,255,255,255,137,68,36, 16,137,116,36,12,137,84,36,8,139,133,0,255,255,255,137,68,36,4,139,133,28,255,255,255,137,4,36,255,209,139,133,28,255,255,255,139,64,4,137,133,28,255,255,255,131,189,28,255,255,255,0,15,133,116,255,255,255,255,69,184,139,69,184,59,133,124,255,255,255, 15,140,126,254,255,255,233,19,1,0,0,243,15,16,69,132,141,131,86,137,4,0,243,15,16,8,15,46,193,117,7,122,5,233,204,0,0,0,199,133,20,255,255,255,0,0,0,0,233,171,0,0,0,139,69,180,139,64,28,137,133,16,255,255,255,233,135,0,0,0,139,133,16,255,255,255,137, 4,36,232,234,186,1,0,137,133,12,255,255,255,131,189,12,255,255,255,0,116,91,139,133,12,255,255,255,139,72,16,139,117,176,139,69,200,15,175,133,20,255,255,255,3,133,120,255,255,255,137,194,199,68,36,24,0,0,0,0,141,131,86,137,4,0,139,0,137,68,36,20,141, 131,86,137,4,0,139,0,137,68,36,16,137,116,36,12,137,84,36,8,139,133,0,255,255,255,137,68,36,4,139,133,16,255,255,255,137,4,36,255,209,139,133,16,255,255,255,139,64,4,137,133,16,255,255,255,131,189,16,255,255,255,0,15,133,108,255,255,255,255,133,20,255, 255,255,139,133,20,255,255,255,59,133,124,255,255,255,15,140,67,255,255,255,139,133,0,255,255,255,137,4,36,232,120,82,254,255,137,194,139,133,252,254,255,255,137,68,36,8,137,84,36,4,141,131,1,69,4,0,137,4,36,232,7,83,2,0,141,131,250,150,4,0,139,0,139, 85,228,51,16,116,5,232,244,125,4,0,129,196,220,1,0,0,91,94,95,201,195,85,137,229,87,86,83,129,236,172,0,0,0,232,0,0,0,0,91,139,69,8,137,69,228,141,69,180,137,68,36,56,141,69,184,137,68,36,52,141,69,188,137,68,36,48,141,69,196,137,68,36,44,141,69,200, 137,68,36,40,141,69,204,137,68,36,36,141,69,208,137,68,36,32,141,69,212,137,68,36,28,141,69,216,137,68,36,24,141,69,220,137,68,36,20,141,69,192,137,68,36,16,141,69,224,137,68,36,12,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,228,137,4,36,232,54, 228,255,255,133,192,15,133,209,0,0,0,243,15,16,69,200,141,131,222,119,4,0,243,15,16,8,15,46,193,122,6,15,132,183,0,0,0,139,85,180,139,77,184,139,117,188,139,125,196,243,15,16,69,208,15,40,200,243,15,88,77,36,243,15,16,85,212,243,15,16,69,216,243,15,88, 69,32,243,15,16,93,220,139,69,224,137,69,160,139,69,192,137,69,164,139,69,60,137,68,36,72,139,69,56,137,68,36,68,139,69,52,137,68,36,64,139,69,48,137,68,36,60,139,69,44,137,68,36,56,139,69,40,137,68,36,52,137,84,36,48,137,76,36,44,137,116,36,40,137,124, 36,36,243,15,17,76,36,32,243,15,17,84,36,28,243,15,17,68,36,24,243,15,17,92,36,20,139,69,160,137,68,36,16,139,69,28,137,68,36,12,139,69,24,137,68,36,8,139,69,12,137,68,36,4,139,69,164,137,4,36,232,30,48,253,255,137,69,156,235,7,199,69,156,0,0,0,0,139, 69,156,129,196,172,0,0,0,91,94,95,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,80,221,255,255,141,131,50,50,4,0,137,4,36,232,57,187,1,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,112,1,0,0,199,68,36,8,0, 0,0,0,137,116,36,4,137,4,36,232,233,175,1,0,137,194,141,131,255,132,4,0,139,0,137,16,141,131,255,132,4,0,139,0,139,0,137,4,36,232,42,184,1,0,141,147,27,226,255,255,141,131,255,132,4,0,139,0,139,0,137,84,36,4,137,4,36,232,104,183,1,0,141,131,255,132,4, 0,139,0,139,16,141,131,155,137,4,0,137,68,36,4,137,20,36,232,161,183,1,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,85,132,4,0,139,0,139,0,137,4,36,232,191,239,1,0,137,69,244,139,69,8,139,0,137,69,240,199,69,236,0,0,0,0, 139,69,240,131,192,4,15,182,0,60,115,117,4,131,77,236,1,139,85,244,139,69,236,137,130,172,0,0,0,139,85,244,129,194,140,0,0,0,141,131,193,117,4,0,139,0,137,68,36,4,137,20,36,232,153,190,255,255,232,241,125,253,255,137,194,139,69,244,137,144,176,0,0,0, 139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,201,60,1,0,137,69,232,139,69,232,139,16,141,131,112,46,4,0,137,68,36,4,137,20,36,232,60,125,4,0,133,192,117,51,131,125,12,1,126,45,139,69,16,131,192,8,139,85,244,129,194,140,0,0,0,137,68, 36,8,199,68,36,4,1,0,0,0,137,20,36,232,188,194,255,255,131,109,12,2,131,69,16,16,235,149,139,69,236,131,224,1,132,192,116,71,131,125,12,0,116,37,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,131,194,28,137,68,36,8,137,76,36,4,137,20,36,232,231, 194,255,255,235,97,139,69,244,131,192,28,141,147,121,131,4,0,139,18,137,84,36,4,137,4,36,232,49,190,255,255,235,69,131,125,12,0,116,37,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,131,194,28,137,68,36,8,137,76,36,4,137,20,36,232,56,194,255,255, 235,26,139,69,244,131,192,28,141,147,189,117,4,0,139,18,137,84,36,4,137,4,36,232,136,189,255,255,131,125,12,0,116,37,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,131,194,56,137,68,36,8,137,76,36,4,137,20,36,232,243,193,255,255,235,26,139,69,244, 131,192,56,141,147,189,117,4,0,139,18,137,84,36,4,137,4,36,232,67,189,255,255,131,125,12,0,116,37,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,131,194,84,137,68,36,8,137,76,36,4,137,20,36,232,174,193,255,255,235,26,139,69,244,131,192,84,141,147, 189,117,4,0,139,18,137,84,36,4,137,4,36,232,254,188,255,255,131,125,12,0,116,37,139,69,16,131,69,16,8,139,77,12,255,77,12,139,85,244,131,194,112,137,68,36,8,137,76,36,4,137,20,36,232,105,193,255,255,235,26,139,69,244,131,192,112,141,147,193,117,4,0,139, 18,137,84,36,4,137,4,36,232,185,188,255,255,131,125,12,0,116,39,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,243,58,1,0,137,194,139,69,244,137,144,168,0,0,0,235,17,139,69,244,141,147,121,131,4,0,139,18,137,144,168,0,0,0,139,69,244, 131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,15,182,128,140,0,0,0,60,1,117,14,139,69,8,15,182,128,141,0,0,0,132,192,116,26,141,131,231,43,4,0,137,68,36,4,139,69,8,137,4,36,232,128,181,2,0,233,224,0,0,0,139,69,8,243,15,16,136, 144,0,0,0,141,131,43,115,4,0,243,15,16,0,15,46,200,15,149,192,15,154,194,9,208,15,182,192,137,69,244,141,131,43,115,4,0,243,15,16,0,15,46,69,12,122,2,116,10,131,125,244,0,15,133,158,0,0,0,141,131,43,115,4,0,243,15,16,0,15,46,69,12,117,13,122,11,131,125, 244,0,117,5,233,129,0,0,0,139,69,8,139,128,176,0,0,0,199,68,36,4,2,0,0,0,137,4,36,232,138,174,253,255,141,131,43,115,4,0,243,15,16,0,15,46,69,12,117,4,122,2,235,17,141,131,47,115,4,0,243,15,16,0,243,15,17,69,228,235,15,141,131,43,115,4,0,243,15,16,0, 243,15,17,69,228,139,69,8,5,140,0,0,0,243,15,16,69,228,243,15,17,68,36,4,137,4,36,232,104,187,255,255,139,69,8,139,128,176,0,0,0,199,68,36,4,1,0,0,0,137,4,36,232,34,174,253,255,131,196,52,91,201,195,85,137,229,131,236,40,184,255,255,255,255,131,248,255, 116,45,186,255,255,255,255,139,69,8,139,128,168,0,0,0,139,0,137,84,36,12,199,68,36,8,80,0,0,0,137,68,36,4,139,69,12,137,4,36,232,229,119,4,0,235,34,139,69,8,139,128,168,0,0,0,139,0,199,68,36,8,80,0,0,0,137,68,36,4,139,69,12,137,4,36,232,60,0,0,0,139, 69,12,131,192,79,198,0,0,139,69,12,137,4,36,232,201,121,4,0,137,69,244,184,80,0,0,0,43,69,244,137,194,139,69,244,3,69,12,137,84,36,8,137,68,36,4,139,69,16,137,4,36,232,89,57,1,0,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16, 137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,93,119,4,0,201,195,85,137,229,83,129,236,212,0,0,0,232,0,0,0,0,91,139,69,8,137,133,116,255,255,255,139,69,12,137,133,112,255,255,255,139,69,16,137,133,108,255,255,255,139,69,20,137,133,104,255,255, 255,139,69,32,137,133,100,255,255,255,139,69,36,137,133,96,255,255,255,139,69,40,137,133,92,255,255,255,139,69,44,137,133,88,255,255,255,141,131,222,126,4,0,139,0,139,16,137,85,244,49,210,139,133,116,255,255,255,137,69,160,139,85,160,129,194,140,0,0, 0,199,68,36,12,0,0,0,0,139,133,108,255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,137,20,36,232,251,191,255,255,217,157,68,255,255,255,141,131,58,113,4,0,243,15,16,0,243,15,16,141,68,255,255,255,15,46,200,122,2,116,2,235,61,139,133,96,255, 255,255,199,0,255,255,255,127,139,133,96,255,255,255,139,16,139,133,100,255,255,255,137,16,139,133,88,255,255,255,199,0,1,0,0,128,139,133,88,255,255,255,139,16,139,133,92,255,255,255,137,16,233,205,1,0,0,139,85,160,131,194,56,199,68,36,12,0,0,0,0,139, 133,108,255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,137,20,36,232,64,193,255,255,217,157,72,255,255,255,243,15,16,133,72,255,255,255,243,15,88,69,24,243,15,17,68,36,4,139,133,112,255,255,255,137,4,36,232,81,90,254,255,217,157,76,255,255, 255,243,15,44,133,76,255,255,255,137,69,156,139,85,160,131,194,84,199,68,36,12,0,0,0,0,139,133,108,255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,137,20,36,232,222,192,255,255,217,157,80,255,255,255,243,15,16,133,80,255,255,255,243,15,88, 69,28,243,15,17,68,36,4,139,133,112,255,255,255,137,4,36,232,115,91,254,255,217,157,84,255,255,255,243,15,44,133,84,255,255,255,137,69,152,139,133,112,255,255,255,137,4,36,232,253,150,253,255,137,69,148,139,69,148,137,4,36,232,252,106,2,0,137,69,144, 139,69,148,137,4,36,232,4,107,2,0,137,69,140,139,69,160,139,128,172,0,0,0,131,224,1,132,192,116,54,199,69,132,2,0,0,0,139,85,160,131,194,28,199,68,36,12,0,0,0,0,139,133,108,255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,137,20,36,232,210, 192,255,255,137,69,136,235,52,199,69,132,1,0,0,0,139,85,160,131,194,28,199,68,36,12,0,0,0,0,139,133,108,255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,137,20,36,232,53,190,255,255,217,93,136,141,69,132,137,68,36,8,141,69,164,137,68,36,4, 139,69,160,137,4,36,232,188,252,255,255,139,149,100,255,255,255,139,69,156,137,2,139,149,96,255,255,255,139,69,152,137,2,141,69,164,137,4,36,232,215,118,4,0,137,194,139,69,144,15,175,208,139,69,156,141,4,2,137,194,139,133,92,255,255,255,137,16,139,69, 140,139,85,152,1,194,139,133,88,255,255,255,137,16,141,131,222,126,4,0,139,0,139,85,244,51,16,116,5,232,103,116,4,0,129,196,212,0,0,0,91,201,195,85,137,229,131,236,8,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,32,137,68,36,4,141,131,24,42, 4,0,137,4,36,232,220,172,2,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,32,137,68,36,4,141,131,5,42,4,0,137,4,36,232,180,172,2,0,131,196,20,91,201,195,85,137,229,83,129,236,212,0,0,0,232,0,0,0,0,91,139,69,8,137,133,116,255,255, 255,139,69,12,137,133,112,255,255,255,139,69,16,137,133,108,255,255,255,139,69,20,137,133,104,255,255,255,141,131,161,123,4,0,139,0,139,16,137,85,244,49,210,139,133,116,255,255,255,137,69,140,131,125,32,0,116,80,139,85,140,129,194,140,0,0,0,199,68,36, 12,0,0,0,0,139,133,108,255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,137,20,36,232,220,188,255,255,217,157,80,255,255,255,141,131,253,109,4,0,243,15,16,0,243,15,16,141,80,255,255,255,15,46,200,122,6,15,132,119,2,0,0,131,125,32,0,15,132, 65,2,0,0,139,85,140,131,194,56,199,68,36,12,0,0,0,0,139,133,108,255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,137,20,36,232,82,190,255,255,217,157,84,255,255,255,243,15,16,133,84,255,255,255,243,15,88,69,24,243,15,17,68,36,4,139,133,112, 255,255,255,137,4,36,232,99,87,254,255,217,157,88,255,255,255,243,15,44,133,88,255,255,255,137,69,136,139,85,140,131,194,84,199,68,36,12,0,0,0,0,139,133,108,255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,137,20,36,232,240,189,255,255,217, 157,92,255,255,255,243,15,16,133,92,255,255,255,243,15,88,69,28,243,15,17,68,36,4,139,133,112,255,255,255,137,4,36,232,133,88,254,255,217,157,96,255,255,255,243,15,44,133,96,255,255,255,137,69,132,139,85,140,131,194,112,199,68,36,12,1,0,0,0,139,133,108, 255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,137,20,36,232,193,187,255,255,217,157,100,255,255,255,243,15,44,149,100,255,255,255,141,69,224,137,68,36,4,137,20,36,232,174,198,255,255,139,69,140,139,128,172,0,0,0,131,224,1,132,192,116,57, 199,133,124,255,255,255,2,0,0,0,139,85,140,131,194,28,199,68,36,12,0,0,0,0,139,133,108,255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,137,20,36,232,199,189,255,255,137,69,128,235,55,199,133,124,255,255,255,1,0,0,0,139,85,140,131,194,28,199, 68,36,12,0,0,0,0,139,133,108,255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,137,20,36,232,39,187,255,255,217,93,128,141,133,124,255,255,255,137,68,36,8,141,69,144,137,68,36,4,139,69,140,137,4,36,232,171,249,255,255,139,133,112,255,255,255, 137,4,36,232,247,69,254,255,137,194,141,69,144,137,68,36,20,141,69,224,137,68,36,16,139,69,132,137,68,36,12,139,69,136,137,68,36,8,137,84,36,4,141,131,241,41,4,0,137,4,36,232,116,70,2,0,139,133,112,255,255,255,137,4,36,232,238,146,253,255,137,4,36,232, 221,102,2,0,137,194,141,131,181,123,4,0,139,0,137,68,36,12,137,84,36,8,141,131,177,123,4,0,139,0,137,68,36,4,141,131,42,42,4,0,137,4,36,232,50,70,2,0,139,133,108,255,255,255,137,68,36,4,141,131,65,42,4,0,137,4,36,232,26,70,2,0,235,44,139,133,112,255, 255,255,137,4,36,232,93,69,254,255,137,194,139,133,108,255,255,255,137,68,36,8,137,84,36,4,141,131,100,42,4,0,137,4,36,232,236,69,2,0,141,131,161,123,4,0,139,0,139,85,244,51,16,116,5,232,217,112,4,0,129,196,212,0,0,0,91,201,195,85,137,229,87,86,83,131, 236,60,232,0,0,0,0,91,139,69,8,137,69,228,139,69,228,131,192,28,137,69,224,199,68,36,4,0,0,0,0,141,131,0,163,4,0,137,4,36,232,161,118,0,0,133,192,117,19,141,131,80,39,4,0,137,4,36,232,50,169,2,0,233,25,1,0,0,141,131,12,163,4,0,139,0,133,192,116,19,141, 131,118,39,4,0,137,4,36,232,19,169,2,0,233,250,0,0,0,141,131,232,162,4,0,243,15,16,0,243,15,92,69,16,141,131,232,162,4,0,243,15,17,0,141,131,232,162,4,0,139,16,141,131,248,162,4,0,139,8,139,69,224,139,112,4,141,131,252,162,4,0,139,0,199,68,36,16,1,0, 0,0,137,84,36,12,137,76,36,8,137,116,36,4,137,4,36,232,119,159,255,255,141,131,240,162,4,0,139,0,133,192,116,75,141,131,82,101,4,0,137,4,36,232,222,174,1,0,137,194,141,131,240,162,4,0,139,8,141,131,236,162,4,0,139,48,141,131,252,162,4,0,139,56,141,69, 216,137,68,36,20,199,68,36,16,1,0,0,0,137,84,36,12,137,76,36,8,137,116,36,4,137,60,36,232,115,171,255,255,141,131,240,162,4,0,139,0,133,192,116,28,141,131,236,162,4,0,139,16,141,131,240,162,4,0,139,0,137,84,36,4,137,4,36,232,234,148,255,255,141,131,244, 162,4,0,139,0,133,192,116,28,141,131,236,162,4,0,139,16,141,131,244,162,4,0,139,0,137,84,36,4,137,4,36,232,208,26,253,255,131,196,60,91,94,95,201,195,85,137,229,87,86,83,129,236,76,4,0,0,232,0,0,0,0,91,139,69,8,137,133,212,251,255,255,141,131,253,118, 4,0,139,0,139,16,137,85,228,49,210,139,133,212,251,255,255,137,133,248,251,255,255,139,133,248,251,255,255,131,192,28,137,133,244,251,255,255,243,15,16,69,12,243,15,44,192,137,133,240,251,255,255,199,68,36,4,0,0,0,0,141,131,145,161,4,0,137,4,36,232,255, 116,0,0,133,192,117,19,141,131,225,37,4,0,137,4,36,232,144,167,2,0,233,13,3,0,0,131,189,240,251,255,255,0,15,132,0,3,0,0,141,131,157,161,4,0,139,0,133,192,15,132,211,0,0,0,141,131,161,161,4,0,139,0,133,192,116,9,198,133,252,251,255,255,0,235,77,141,131, 137,161,4,0,139,8,139,133,244,251,255,255,139,80,4,141,131,141,161,4,0,139,0,199,68,36,12,1,0,0,0,137,76,36,8,137,84,36,4,137,4,36,232,143,158,255,255,139,0,199,68,36,8,232,3,0,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,164,112,4,0,198,69,227, 0,131,189,240,251,255,255,8,117,43,15,182,133,252,251,255,255,132,192,15,132,114,2,0,0,141,133,252,251,255,255,137,4,36,232,110,112,4,0,72,198,132,5,252,251,255,255,0,233,86,2,0,0,141,133,252,251,255,255,137,4,36,232,82,112,4,0,64,198,132,5,252,251,255, 255,0,141,133,252,251,255,255,137,4,36,232,59,112,4,0,137,194,139,133,240,251,255,255,136,132,21,252,251,255,255,233,29,2,0,0,141,131,161,161,4,0,139,0,133,192,116,9,198,133,252,251,255,255,0,235,109,141,131,137,161,4,0,139,8,139,133,244,251,255,255, 139,80,4,141,131,141,161,4,0,139,0,199,68,36,12,1,0,0,0,137,76,36,8,137,84,36,4,137,4,36,232,74,156,255,255,217,157,208,251,255,255,243,15,90,133,208,251,255,255,242,15,17,68,36,16,141,131,105,20,4,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0, 0,0,141,133,252,251,255,255,137,4,36,232,107,109,4,0,131,189,240,251,255,255,10,15,148,192,15,182,208,141,131,161,161,4,0,137,16,131,189,240,251,255,255,8,117,36,15,182,133,252,251,255,255,132,192,116,77,141,133,252,251,255,255,137,4,36,232,110,111,4, 0,72,198,132,5,252,251,255,255,0,235,52,141,133,252,251,255,255,137,4,36,232,85,111,4,0,64,198,132,5,252,251,255,255,0,141,133,252,251,255,255,137,4,36,232,62,111,4,0,137,194,139,133,240,251,255,255,136,132,21,252,251,255,255,141,133,224,251,255,255, 137,68,36,8,141,131,36,38,4,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,239,110,4,0,133,192,127,18,141,131,113,105,4,0,242,15,16,0,242,15,17,133,224,251,255,255,242,15,16,133,224,251,255,255,242,15,90,192,141,131,137,161,4,0,139,16,139,133,244, 251,255,255,139,72,4,141,131,141,161,4,0,139,0,199,68,36,16,1,0,0,0,243,15,17,68,36,12,137,84,36,8,137,76,36,4,137,4,36,232,228,155,255,255,141,131,129,161,4,0,139,0,133,192,116,78,141,131,227,99,4,0,137,4,36,232,75,171,1,0,137,194,141,131,129,161,4, 0,139,8,141,131,125,161,4,0,139,48,141,131,141,161,4,0,139,56,141,133,232,251,255,255,137,68,36,20,199,68,36,16,1,0,0,0,137,84,36,12,137,76,36,8,137,116,36,4,137,60,36,232,221,167,255,255,141,131,129,161,4,0,139,0,133,192,116,28,141,131,125,161,4,0,139, 16,141,131,129,161,4,0,139,0,137,84,36,4,137,4,36,232,84,145,255,255,141,131,133,161,4,0,139,0,133,192,116,28,141,131,125,161,4,0,139,16,141,131,133,161,4,0,139,0,137,84,36,4,137,4,36,232,58,23,253,255,141,131,253,118,4,0,139,0,139,85,228,51,16,116,5, 232,194,107,4,0,129,196,76,4,0,0,91,94,95,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,139,69,8,137,69,244,141,69,228,137,68,36,36,141,69,232,137,68,36,32,141,69,236,137,68,36,28,141,69,240,137,68,36,24,139,69,36,137,68,36,20,139,69,32,137,68,36, 16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,23,244,255,255,139,69,240,57,69,40,15,140,157,1,0,0,139,69,232,57,69,40,15,143,145,1,0,0,139,69,236,57,69,44,15,140,133,1,0,0,139,69,228,57,69,44,15,143,121,1, 0,0,139,69,244,15,182,64,29,132,192,15,132,106,1,0,0,139,85,244,129,194,140,0,0,0,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69,20,137,68,36,4,137,20,36,232,73,180,255,255,217,93,208,141,131,177,101,4,0,243,15,16,0,243,15,16,77,208,15,46,200,122, 6,15,132,38,1,0,0,131,125,60,0,15,132,19,1,0,0,141,147,213,157,4,0,139,69,12,137,2,141,147,225,157,4,0,139,69,16,137,2,141,147,229,157,4,0,139,69,20,137,2,141,147,217,157,4,0,139,69,24,137,2,141,147,221,157,4,0,139,69,28,137,2,141,131,249,157,4,0,199, 0,1,0,0,0,139,85,244,131,194,28,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69,20,137,68,36,4,137,20,36,232,187,179,255,255,141,131,209,157,4,0,217,24,139,69,244,139,128,172,0,0,0,137,194,131,226,1,141,131,245,157,4,0,137,16,141,131,217,157,4,0,139, 0,133,192,116,40,141,131,217,157,4,0,139,16,141,131,213,157,4,0,139,0,137,84,36,8,137,68,36,4,141,131,233,157,4,0,137,4,36,232,137,113,0,0,235,38,141,131,225,157,4,0,139,16,141,131,221,157,4,0,139,0,137,84,36,8,137,68,36,4,141,131,233,157,4,0,137,4,36, 232,184,113,0,0,139,69,44,137,68,36,20,139,69,40,137,68,36,16,141,131,71,252,255,255,137,68,36,12,141,131,219,250,255,255,137,68,36,8,139,69,8,137,68,36,4,139,69,12,137,4,36,232,124,61,254,255,199,69,212,1,0,0,0,235,7,199,69,212,0,0,0,0,139,69,212,131, 196,100,91,201,195,85,137,229,131,236,8,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,234,255,255,255,141,187,200,237,255,255,141,131,96,32,4,0,137,4,36,232,85,168,1,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199, 68,36,12,180,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,9,157,1,0,137,194,141,131,41,114,4,0,139,0,137,16,141,131,41,114,4,0,139,0,139,0,137,4,36,232,74,165,1,0,141,147,90,240,255,255,141,131,41,114,4,0,139,0,139,0,137,84,36,4,137,4,36,232,136,164, 1,0,141,131,107,32,4,0,137,4,36,232,221,167,1,0,141,147,200,237,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,199,159,1,0,141,131,41,114,4,0,139,0,139,16,141,131,213,118,4,0,137,68,36,4,137,20,36,232,145,164,1,0,131,196, 44,91,94,95,201,195,85,137,229,131,236,8,232,90,166,255,255,232,72,171,255,255,232,61,200,255,255,232,34,236,255,255,232,250,254,255,255,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,141,131,238,112,4,0,139,0,139,0,137,4,36,232,140,220,1,0,137,69, 244,139,69,244,102,199,64,24,0,0,139,85,244,139,66,24,37,255,255,252,255,137,66,24,232,236,47,1,0,137,194,139,69,244,137,80,8,131,125,16,1,15,142,204,0,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,61,41,1,0,217,93,208,243,15,44, 69,208,137,194,139,69,244,102,137,80,20,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,18,41,1,0,217,93,212,243,15,44,69,212,137,194,139,69,244,102,137,80,22,131,125,16,2,126,36,139,85,20,131,194,16,139,77,16,131,233,2,139,69,244,139, 64,8,137,84,36,8,137,76,36,4,137,4,36,232,188,64,1,0,235,53,199,69,228,2,0,0,0,141,131,114,31,4,0,137,4,36,232,144,166,1,0,137,69,232,139,69,244,139,80,8,141,69,228,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,133,64,1,0,139,69,244,137,68,36,4,139,69, 8,137,4,36,232,154,53,254,255,233,240,0,0,0,141,131,122,31,4,0,137,4,36,232,75,166,1,0,137,198,139,69,8,137,4,36,232,171,59,254,255,137,194,199,68,36,12,1,0,0,0,141,131,118,91,4,0,137,68,36,8,137,116,36,4,137,20,36,232,12,179,1,0,199,69,228,2,0,0,0,141, 131,114,31,4,0,137,4,36,232,9,166,1,0,137,69,232,139,69,8,137,4,36,232,12,186,253,255,141,69,236,137,68,36,8,141,69,240,137,68,36,4,139,69,8,137,4,36,232,129,45,254,255,139,69,240,72,137,194,139,69,244,102,137,80,20,139,69,236,72,137,194,139,69,244,102, 137,80,22,139,69,244,139,80,8,141,69,228,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,192,63,1,0,139,69,244,137,68,36,4,139,69,8,137,4,36,232,213,52,254,255,139,69,8,137,4,36,232,159,185,253,255,139,69,244,137,68,36,4,139,69,8,137,4,36,232,4,182,253, 255,139,69,8,137,4,36,232,222,58,254,255,137,4,36,232,22,7,254,255,131,196,64,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,167,110,4,0,139,0,199,0,0,0,0,0,139,69,8,137,4,36,232,38,105,253,255,141,69,236,137,68,36,4,141,69,240,137,4,36, 232,228,105,253,255,139,69,236,139,85,240,137,68,36,12,137,84,36,8,141,131,19,111,4,0,139,0,137,68,36,4,139,69,24,137,4,36,232,234,69,1,0,139,69,24,137,4,36,232,246,65,1,0,133,192,116,102,141,131,167,110,4,0,139,0,139,0,133,192,117,34,139,69,24,137,4, 36,232,44,65,1,0,141,131,114,29,4,0,137,4,36,232,146,158,2,0,199,69,244,0,0,0,0,235,61,141,131,167,110,4,0,139,0,139,0,137,4,36,232,222,212,1,0,137,69,244,131,125,244,0,117,34,139,69,24,137,4,36,232,239,64,1,0,141,131,135,29,4,0,137,4,36,232,85,158,2, 0,235,7,199,69,244,0,0,0,0,131,125,244,0,117,21,141,131,219,110,4,0,139,0,139,0,137,4,36,232,167,217,1,0,137,69,244,139,85,244,139,69,24,137,66,8,139,69,12,137,194,139,69,244,102,137,80,20,139,69,16,137,194,139,69,244,102,137,80,22,139,69,244,102,199, 64,24,0,0,139,85,244,139,66,24,37,255,255,252,255,13,0,0,1,0,137,66,24,139,69,244,137,68,36,4,139,69,8,137,4,36,232,91,51,254,255,131,125,20,0,116,44,139,69,244,137,68,36,4,139,69,8,137,4,36,232,143,180,253,255,139,85,244,199,68,36,8,1,0,0,0,139,69,8, 137,68,36,4,137,20,36,232,168,175,253,255,139,69,244,139,16,141,131,31,110,4,0,139,0,139,0,57,194,117,19,139,69,8,137,4,36,232,60,57,254,255,137,4,36,232,130,62,254,255,139,69,244,139,16,141,131,39,110,4,0,139,0,139,0,57,194,117,19,139,69,8,137,4,36, 232,22,57,254,255,137,4,36,232,179,65,254,255,139,69,8,137,4,36,232,147,103,253,255,131,196,36,91,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,199,69,236,0,0,0,0,199,69,232,0,0,0,0,139,69,8,139,128,140,0,0,0,139,64,16,133,192,116,42,139,69,8,139, 128,140,0,0,0,139,64,16,139,64,4,133,192,117,23,141,131,69,109,4,0,139,0,139,0,133,192,117,9,199,69,196,1,0,0,0,235,7,199,69,196,0,0,0,0,139,69,196,137,69,208,131,125,208,0,15,132,214,0,0,0,139,69,8,139,128,140,0,0,0,139,64,16,139,0,137,69,200,139,69, 8,139,64,28,137,69,204,199,69,232,0,0,0,0,235,91,139,69,204,59,69,200,117,71,141,69,212,137,68,36,20,141,69,220,137,68,36,16,141,69,216,137,68,36,12,141,69,224,137,68,36,8,139,69,8,137,68,36,4,139,69,204,137,4,36,232,160,173,253,255,139,69,232,137,69, 236,139,85,224,139,69,16,137,16,139,69,212,141,80,5,139,69,20,137,16,139,69,204,139,64,4,137,69,204,255,69,232,131,125,204,0,117,159,139,69,8,137,4,36,232,166,182,253,255,139,69,8,139,64,28,137,69,204,199,69,228,0,0,0,0,235,45,139,69,204,59,69,200,117, 8,139,69,228,137,69,236,235,73,139,69,204,139,64,4,133,192,117,7,139,69,232,72,137,69,236,139,69,204,139,64,4,137,69,204,255,69,228,131,125,204,0,117,205,235,36,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,8,137,4,36,232,212,41,254,255,139,69,8, 137,4,36,232,59,182,253,255,139,85,12,139,69,208,137,2,139,85,24,139,69,236,137,2,139,85,28,139,69,232,137,2,131,196,100,91,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,131,125,16,1,15,142,134,0,0,0,232,164,42,1,0,137,69,240,139,69,20,131,192,16, 139,85,16,131,234,2,137,68,36,8,137,84,36,4,139,69,240,137,4,36,232,226,59,1,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,64,36,1,0,137,198,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,36,36,1,0,137,194,139,69, 240,137,68,36,16,199,68,36,12,0,0,0,0,137,116,36,8,137,84,36,4,139,69,8,137,4,36,232,17,252,255,255,233,10,1,0,0,139,69,8,137,4,36,232,133,131,253,255,133,192,117,19,141,131,88,26,4,0,137,4,36,232,20,155,2,0,233,232,0,0,0,232,252,41,1,0,137,69,236,141, 69,216,137,68,36,20,141,69,220,137,68,36,16,141,69,224,137,68,36,12,141,69,228,137,68,36,8,141,69,232,137,68,36,4,139,69,8,137,4,36,232,134,253,255,255,141,131,16,26,4,0,137,4,36,232,8,161,1,0,137,194,139,77,8,199,68,36,12,1,0,0,0,141,131,12,86,4,0,137, 68,36,8,137,84,36,4,137,12,36,232,211,173,1,0,139,85,224,139,77,228,139,69,236,137,68,36,16,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,139,69,8,137,4,36,232,91,251,255,255,139,69,232,133,192,116,63,139,69,216,243,15,42,192,139,69,220,243,15,42,200, 141,131,32,93,4,0,139,0,137,68,36,16,243,15,17,68,36,12,141,131,32,93,4,0,139,0,137,68,36,8,243,15,17,76,36,4,139,69,8,137,4,36,232,0,26,254,255,235,19,139,69,8,137,4,36,232,217,53,254,255,137,4,36,232,17,2,254,255,131,196,64,91,94,201,195,85,137,229, 83,131,236,68,232,0,0,0,0,91,232,0,41,1,0,137,69,244,141,131,98,24,4,0,137,4,36,232,58,160,1,0,137,194,139,77,8,199,68,36,12,1,0,0,0,141,131,94,84,4,0,137,68,36,8,137,84,36,4,137,12,36,232,5,173,1,0,139,69,8,137,4,36,232,29,180,253,255,199,69,228,2,0, 0,0,139,69,12,137,69,232,141,69,228,137,68,36,8,199,68,36,4,1,0,0,0,139,69,244,137,4,36,232,250,57,1,0,141,69,236,137,68,36,8,141,69,240,137,68,36,4,139,69,8,137,4,36,232,107,39,254,255,139,85,236,139,77,240,139,69,244,137,68,36,16,199,68,36,12,1,0,0, 0,137,84,36,8,137,76,36,4,139,69,8,137,4,36,232,66,250,255,255,139,69,8,137,4,36,232,6,53,254,255,137,4,36,232,62,1,254,255,131,196,68,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,186,242,3,0,137,4,36,232,112,159,1,0,137,68,36,4,139,69, 8,137,4,36,232,4,255,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,48,48,4,0,137,4,36,232,64,159,1,0,137,68,36,4,139,69,8,137,4,36,232,212,254,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131, 224,47,4,0,137,4,36,232,16,159,1,0,137,68,36,4,139,69,8,137,4,36,232,164,254,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,241,0,4,0,137,4,36,232,224,158,1,0,137,68,36,4,139,69,8,137,4,36,232,116,254,255,255,131,196,20, 91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,249,253,3,0,137,4,36,232,176,158,1,0,137,68,36,4,139,69,8,137,4,36,232,68,254,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,23,23,4,0,137,4,36,232,128,158,1,0, 137,68,36,4,139,69,8,137,4,36,232,20,254,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,193,241,3,0,137,4,36,232,80,158,1,0,137,68,36,4,139,69,8,137,4,36,232,228,253,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20, 232,0,0,0,0,91,141,131,152,241,3,0,137,4,36,232,32,158,1,0,137,68,36,4,139,69,8,137,4,36,232,180,253,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,141,22,4,0,137,4,36,232,240,157,1,0,137,68,36,4,139,69,8,137,4,36,232,132, 253,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,96,22,4,0,137,4,36,232,192,157,1,0,137,68,36,4,139,69,8,137,4,36,232,84,253,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,52,22,4,0,137, 4,36,232,144,157,1,0,137,68,36,4,139,69,8,137,4,36,232,36,253,255,255,131,196,20,91,201,195,85,137,229,131,236,40,139,69,12,102,199,64,24,0,0,139,85,12,139,66,24,37,255,255,252,255,13,0,0,1,0,137,66,24,232,9,38,1,0,137,194,139,69,12,137,80,8,139,69,20, 137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,100,31,1,0,217,93,240,243,15,44,69,240,137,194,139,69,12,102,137,80,20,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,57,31,1,0,217,93,244,243,15,44,69,244,137,194,139,69,12,102, 137,80,22,131,125,16,2,126,34,139,85,20,131,194,16,139,77,16,131,233,2,139,69,12,139,64,8,137,84,36,8,137,76,36,4,137,4,36,232,227,54,1,0,139,69,12,137,68,36,4,139,69,8,137,4,36,232,248,43,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,4,137,4, 36,232,77,197,1,0,201,195,85,137,229,131,236,24,139,69,8,139,80,4,139,69,12,137,68,36,4,137,20,36,232,67,198,1,0,201,195,85,137,229,131,236,24,139,69,8,139,80,4,139,69,12,137,68,36,4,137,20,36,232,169,198,1,0,201,195,85,137,229,131,236,24,139,69,8,139, 80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,1,199,1,0,201,195,85,137,229,131,236,24,139,69,8,139,80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,103,199,1,0,201,195,85,137, 229,131,236,24,139,69,8,131,192,28,139,85,8,139,82,8,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,203,60,1,0,201,195,85,137,229,131,236,40,199,69,240,1,0,0,0,139,69,12,137,69,244,139,77,8,131,193,28,139,69,8,139,80,8,141,69,240, 137,68,36,12,199,68,36,8,1,0,0,0,137,76,36,4,137,20,36,232,143,60,1,0,201,195,85,137,229,131,236,40,199,69,240,2,0,0,0,139,69,12,137,69,244,139,77,8,131,193,28,139,69,8,139,80,8,141,69,240,137,68,36,12,199,68,36,8,1,0,0,0,137,76,36,4,137,20,36,232,83, 60,1,0,201,195,85,137,229,131,236,24,139,85,8,131,194,28,139,69,8,139,72,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,137,12,36,232,37,60,1,0,201,195,85,137,229,131,236,24,139,69,8,139,64,8,137,4,36,232,31,37,1,0,139,69,8,139,80,8,139,69, 20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,0,48,1,0,139,85,8,139,69,8,139,64,36,137,84,36,4,137,4,36,232,125,47,254,255,201,195,85,137,229,131,236,24,139,69,8,139,80,8,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,199,47,1,0,139,85, 8,139,69,8,139,64,36,137,84,36,4,137,4,36,232,68,47,254,255,201,195,85,137,229,131,236,24,139,69,8,139,80,8,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,142,47,1,0,139,69,8,139,64,8,137,4,36,232,115,52,1,0,139,85,8,139,69,8,139,64,36,137, 84,36,4,137,4,36,232,253,46,254,255,201,195,85,137,229,131,236,40,199,69,240,5,0,0,0,199,69,244,0,0,0,0,139,69,8,139,80,8,141,69,240,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,56,47,1,0,139,85,8,139,69,8,139,64,36,137,84,36,4,137,4,36,232,181,46,254, 255,201,195,85,137,229,131,236,24,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,72,255,255,255,201,195,85,137,229,131,236,40,243,15,16,69,12,243,15,44,192,137,69,244,131,125,244,0,121,7,199,69,244,0,0,0,0,199,69,236, 8,0,0,0,139,69,244,137,69,240,139,69,8,139,80,8,141,69,236,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,173,46,1,0,139,85,8,139,69,8,139,64,36,137,84,36,4,137,4,36,232,42,46,254,255,201,195,85,137,229,83,129,236,36,4,0,0,232,0,0,0,0,91,139,69,8,137, 133,244,251,255,255,139,69,12,137,133,240,251,255,255,141,131,90,98,4,0,139,0,139,16,137,85,244,49,210,198,133,12,252,255,255,36,184,255,255,255,255,131,248,255,116,46,186,255,255,255,255,139,133,240,251,255,255,139,8,141,133,12,252,255,255,64,137,84, 36,12,199,68,36,8,230,3,0,0,137,76,36,4,137,4,36,232,105,90,4,0,235,35,139,133,240,251,255,255,139,16,141,133,12,252,255,255,64,199,68,36,8,230,3,0,0,137,84,36,4,137,4,36,232,125,0,0,0,198,69,243,0,199,133,4,252,255,255,9,0,0,0,141,133,12,252,255,255, 137,4,36,232,245,152,1,0,137,133,8,252,255,255,139,133,244,251,255,255,139,80,8,141,133,4,252,255,255,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,190,45,1,0,139,149,244,251,255,255,139,133,244,251,255,255,139,64,36,137,84,36,4,137,4,36,232,53,45,254, 255,141,131,90,98,4,0,139,0,139,85,244,51,16,116,5,232,184,89,4,0,129,196,36,4,0,0,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,159,89,4,0,201,195,85,137,229,86,83, 131,236,32,232,0,0,0,0,91,141,131,126,83,4,0,139,0,137,68,36,4,139,69,8,137,4,36,232,97,252,255,255,139,69,8,139,64,36,137,4,36,232,89,122,253,255,133,192,116,103,139,85,8,139,69,8,139,64,36,137,84,36,4,137,4,36,232,252,101,255,255,137,69,244,139,69, 244,137,4,36,232,232,86,255,255,137,198,139,69,8,139,64,36,137,4,36,232,109,45,254,255,137,116,36,8,137,68,36,4,141,131,246,16,4,0,137,4,36,232,4,46,2,0,139,69,8,139,80,40,141,131,22,87,4,0,242,15,16,0,242,15,17,68,36,4,137,20,36,232,238,215,1,0,131, 196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,139,64,36,137,4,36,232,203,121,253,255,133,192,116,73,139,85,8,139,69,8,139,64,36,137,84,36,4,137,4,36,232,110,101,255,255,137,69,244,139,69,244,137,4,36,232,90,86,255,255,137,198, 139,69,8,139,64,36,137,4,36,232,223,44,254,255,137,116,36,8,137,68,36,4,141,131,117,16,4,0,137,4,36,232,118,45,2,0,131,196,32,91,94,201,195,85,137,229,131,236,24,139,69,8,139,64,40,137,4,36,232,140,216,1,0,201,195,85,137,229,83,131,236,84,232,0,0,0,0, 91,141,131,160,138,4,0,139,0,137,4,36,232,88,204,1,0,137,69,244,141,131,168,138,4,0,139,16,139,69,244,137,80,28,139,85,244,141,131,136,95,4,0,139,0,137,68,36,4,137,20,36,232,254,190,1,0,137,194,139,69,244,137,80,32,139,69,244,102,199,64,24,0,0,139,85, 244,139,66,24,37,255,255,252,255,13,0,0,2,0,137,66,24,232,134,31,1,0,137,194,139,69,244,137,80,8,139,85,244,139,69,8,137,66,36,141,131,110,255,255,255,137,68,36,4,139,69,244,137,4,36,232,243,212,1,0,137,194,139,69,244,137,80,40,131,125,16,1,15,142,149, 0,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,177,24,1,0,217,93,208,243,15,44,69,208,137,194,139,69,244,102,137,80,20,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,134,24,1,0,217,93,212,243,15,44,69,212,137, 194,139,69,244,102,137,80,22,131,125,16,2,126,34,139,85,20,131,194,16,139,77,16,131,233,2,139,69,244,139,64,8,137,84,36,8,137,76,36,4,137,4,36,232,48,48,1,0,139,69,244,137,68,36,4,139,69,8,137,4,36,232,69,37,254,255,233,59,1,0,0,139,69,8,137,4,36,232, 27,120,253,255,133,192,117,19,141,131,20,16,4,0,137,4,36,232,170,143,2,0,233,25,1,0,0,141,69,224,137,68,36,20,141,69,228,137,68,36,16,141,69,232,137,68,36,12,141,69,236,137,68,36,8,141,69,240,137,68,36,4,139,69,8,137,4,36,232,36,242,255,255,141,131,68, 15,4,0,137,4,36,232,166,149,1,0,137,194,139,77,8,199,68,36,12,1,0,0,0,141,131,64,75,4,0,137,68,36,8,137,84,36,4,137,12,36,232,113,162,1,0,139,69,236,137,194,139,69,244,102,137,80,20,139,69,232,137,194,139,69,244,102,137,80,22,139,69,244,137,68,36,4,139, 69,8,137,4,36,232,149,36,254,255,139,69,8,137,4,36,232,95,169,253,255,139,69,244,137,68,36,4,139,69,8,137,4,36,232,196,165,253,255,139,85,244,199,68,36,8,1,0,0,0,139,69,8,137,68,36,4,137,20,36,232,221,160,253,255,139,69,240,133,192,116,63,139,69,224, 243,15,42,192,139,69,228,243,15,42,200,141,131,84,82,4,0,139,0,137,68,36,16,243,15,17,68,36,12,141,131,84,82,4,0,139,0,137,68,36,8,243,15,17,76,36,4,139,69,8,137,4,36,232,101,14,254,255,235,19,139,69,8,137,4,36,232,62,42,254,255,137,4,36,232,118,246, 253,255,131,196,84,91,201,195,85,137,229,83,129,236,148,0,0,0,232,0,0,0,0,91,139,69,8,137,69,132,141,131,121,93,4,0,139,0,139,16,137,85,244,49,210,139,69,132,139,0,15,182,0,132,192,117,22,141,131,197,13,4,0,137,4,36,232,132,148,1,0,137,69,128,233,129, 0,0,0,139,69,132,139,0,15,182,0,60,45,117,103,198,69,144,45,184,255,255,255,255,131,248,255,116,40,186,255,255,255,255,139,69,132,139,8,141,69,144,64,137,84,36,12,199,68,36,8,99,0,0,0,137,76,36,4,137,4,36,232,111,85,4,0,235,29,139,69,132,139,16,141,69, 144,64,199,68,36,8,99,0,0,0,137,84,36,4,137,4,36,232,137,251,255,255,198,69,243,0,141,69,144,137,4,36,232,14,148,1,0,137,69,128,235,14,139,69,132,137,4,36,232,118,201,252,255,137,69,128,139,69,128,141,147,121,93,4,0,139,18,139,77,244,51,10,116,5,232, 255,84,4,0,129,196,148,0,0,0,91,201,195,85,137,229,131,236,40,139,69,8,139,0,15,182,0,60,45,117,19,139,69,8,139,0,64,137,4,36,232,187,147,1,0,137,69,244,235,14,139,69,8,137,4,36,232,5,202,252,255,137,69,244,139,69,244,201,195,85,137,229,131,236,40,139, 69,8,137,69,244,139,85,244,139,69,244,139,64,36,137,84,36,4,137,4,36,232,6,40,254,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,64,8,137,4,36,232,90,29,1,0,139,85,8,131,194,28,139,69,8,139,64,8,137,84,36,8,199,68,36,4,1,0,0,0,137,4, 36,232,55,40,1,0,131,125,12,0,116,49,139,69,8,139,64,36,137,4,36,232,83,117,253,255,133,192,116,31,139,69,8,139,80,36,141,131,209,255,255,255,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,7,48,2,0,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8, 139,80,32,139,64,28,137,69,236,137,85,240,199,69,244,0,0,0,0,131,125,16,0,15,132,142,0,0,0,139,69,8,139,64,28,131,248,1,117,49,139,69,20,137,4,36,232,137,19,1,0,139,69,8,217,88,32,139,69,8,243,15,16,72,32,243,15,16,69,240,15,46,200,15,149,192,15,154, 194,9,208,15,182,192,137,69,244,235,50,139,69,8,139,64,28,131,248,2,117,39,139,69,20,137,4,36,232,161,19,1,0,137,194,139,69,8,137,80,32,139,69,8,139,80,32,139,69,240,57,194,15,149,192,15,182,192,137,69,244,131,125,244,0,116,19,199,68,36,4,1,0,0,0,139, 69,8,137,4,36,232,219,254,255,255,139,69,8,198,64,64,0,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,64,28,131,248,1,15,133,156,0,0,0,139,69,8,139,64,12,133,192,116,24,139,69,8,139,80,32,139,69,8,139,64,12,137,84,36,4,137,4,36,232,206, 187,1,0,139,69,8,139,64,108,139,0,15,182,0,132,192,15,132,2,1,0,0,139,69,8,139,64,108,139,64,4,133,192,15,132,241,0,0,0,139,69,8,139,80,60,139,69,8,139,64,56,57,194,117,38,139,69,8,139,64,60,139,0,137,68,36,8,141,131,91,11,4,0,137,68,36,4,139,69,8,137, 4,36,232,103,143,2,0,233,187,0,0,0,139,69,8,139,80,32,139,69,8,139,64,108,139,64,4,137,84,36,4,137,4,36,232,18,207,1,0,233,155,0,0,0,139,69,8,139,64,28,131,248,2,15,133,140,0,0,0,139,69,8,139,64,12,133,192,116,24,139,69,8,139,80,32,139,69,8,139,64,12, 137,84,36,4,137,4,36,232,166,187,1,0,139,69,8,139,64,60,139,0,15,182,0,132,192,116,91,139,69,8,139,64,108,139,64,4,133,192,116,78,139,69,8,139,80,60,139,69,8,139,64,56,57,194,117,35,139,69,8,139,64,60,139,0,137,68,36,8,141,131,91,11,4,0,137,68,36,4,139, 69,8,137,4,36,232,196,142,2,0,235,27,139,69,8,139,80,32,139,69,8,139,64,108,139,64,4,137,84,36,4,137,4,36,232,176,206,1,0,131,196,20,91,201,195,85,137,229,131,236,40,199,69,240,1,0,0,0,139,69,12,137,69,244,141,69,240,137,68,36,12,199,68,36,8,1,0,0,0, 199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,188,253,255,255,139,69,8,137,4,36,232,103,254,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,243,15,16,72,48,141,131,204,75,4,0,243,15,16,0,15,46,200,117,29,122,27,139,69,8,243,15,16,72,44,141, 131,204,75,4,0,243,15,16,0,15,46,200,117,4,122,2,235,54,139,69,8,243,15,16,64,48,15,46,69,12,119,2,235,9,139,69,8,139,64,48,137,69,12,139,69,8,243,15,16,72,44,243,15,16,69,12,15,46,193,119,2,235,9,139,69,8,139,64,44,137,69,12,139,69,12,137,68,36,4,139, 69,8,137,4,36,232,53,255,255,255,131,196,20,91,201,195,85,137,229,131,236,40,199,69,240,2,0,0,0,139,69,12,137,69,244,141,69,240,137,68,36,12,199,68,36,8,1,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,235,252,255,255,139,69,8,137,4,36,232,150,253,255, 255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,16,0,117,13,139,69,8,137,4,36,232,118,253,255,255,235,87,139,69,20,139,0,131,248,1,117,23,139,69,20,139,64,4,137,68,36,4,139,69,8,137,4,36,232,174,254,255,255,235,54,139,69,20,139,0,131,248, 2,117,23,139,69,20,139,64,4,137,68,36,4,139,69,8,137,4,36,232,94,255,255,255,235,21,141,131,39,9,4,0,137,68,36,4,139,69,8,137,4,36,232,23,141,2,0,131,196,20,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,137,69,244,141,131,126,74,4,0,243, 15,16,0,15,46,69,16,122,6,15,132,3,2,0,0,139,69,244,139,64,28,131,248,1,15,133,244,1,0,0,139,69,244,15,182,64,104,132,192,15,132,203,0,0,0,139,69,244,243,15,16,64,32,243,15,90,208,243,15,90,77,16,141,131,30,78,4,0,242,15,16,0,242,15,89,193,242,15,88, 194,242,15,17,69,232,242,15,16,77,232,141,131,22,76,4,0,242,15,16,0,242,15,89,200,141,131,238,74,4,0,242,15,16,0,242,15,88,193,242,15,17,4,36,232,158,80,4,0,221,93,184,141,131,118,77,4,0,242,15,16,0,242,15,89,69,184,242,15,17,69,224,242,15,16,77,232, 141,131,38,78,4,0,242,15,16,0,242,15,88,193,102,15,46,69,224,119,2,235,42,242,15,16,77,232,141,131,38,78,4,0,242,15,16,0,242,15,92,200,242,15,16,69,224,102,15,46,193,119,2,235,10,242,15,16,69,224,242,15,17,69,232,242,15,90,69,232,243,15,17,68,36,4,139, 69,244,137,4,36,232,165,253,255,255,233,26,1,0,0,139,69,244,243,15,16,64,32,243,15,92,69,16,243,15,90,192,242,15,17,69,216,242,15,16,77,216,141,131,22,76,4,0,242,15,16,0,242,15,89,200,141,131,238,74,4,0,242,15,16,0,242,15,88,193,242,15,17,4,36,232,229, 79,4,0,221,93,192,141,131,118,77,4,0,242,15,16,0,242,15,89,69,192,242,15,17,69,208,242,15,16,77,216,141,131,38,78,4,0,242,15,16,0,242,15,88,193,102,15,46,69,208,119,2,235,42,242,15,16,77,216,141,131,38,78,4,0,242,15,16,0,242,15,92,200,242,15,16,69,208, 102,15,46,193,119,2,235,10,242,15,16,69,208,242,15,17,69,216,242,15,16,77,216,141,131,238,74,4,0,242,15,16,0,242,15,88,193,242,15,17,4,36,232,107,79,4,0,221,93,208,242,15,16,77,216,141,131,246,74,4,0,242,15,16,0,242,15,88,193,102,15,46,69,208,119,2,235, 42,242,15,16,77,216,141,131,246,74,4,0,242,15,16,0,242,15,92,200,242,15,16,69,208,102,15,46,193,119,2,235,10,242,15,16,69,208,242,15,17,69,216,242,15,90,69,216,243,15,17,68,36,4,139,69,244,137,4,36,232,134,252,255,255,131,196,84,91,201,195,85,137,229, 83,129,236,132,0,0,0,232,0,0,0,0,91,139,69,8,137,69,164,141,131,237,85,4,0,139,0,139,16,137,85,244,49,210,139,69,164,137,69,196,243,15,16,69,12,243,15,44,192,137,69,192,139,69,196,131,192,64,137,4,36,232,65,80,4,0,137,69,188,131,125,192,0,117,39,139, 69,196,15,182,64,64,132,192,15,132,165,1,0,0,199,68,36,4,1,0,0,0,139,69,196,137,4,36,232,71,249,255,255,233,141,1,0,0,131,125,192,8,117,27,131,125,188,0,15,142,249,0,0,0,139,85,188,74,139,69,196,198,68,2,64,0,233,232,0,0,0,131,125,192,10,15,133,134,0, 0,0,139,69,196,139,64,28,131,248,1,117,32,139,69,196,131,192,64,137,4,36,232,219,77,4,0,221,93,152,242,15,90,69,152,139,69,196,243,15,17,64,32,235,49,139,69,196,139,64,28,131,248,2,117,24,139,69,196,131,192,64,137,4,36,232,83,140,1,0,137,194,139,69,196, 137,80,32,235,14,141,131,150,6,4,0,137,4,36,232,24,139,2,0,139,69,196,137,4,36,232,222,249,255,255,199,68,36,4,1,0,0,0,139,69,196,137,4,36,232,157,248,255,255,139,69,196,198,64,64,0,233,220,0,0,0,131,125,188,38,15,143,210,0,0,0,139,69,196,139,64,28,131, 248,2,116,40,131,125,192,47,126,6,131,125,192,57,126,28,131,125,192,46,116,22,131,125,192,45,116,16,131,125,192,101,116,10,131,125,192,69,15,133,159,0,0,0,139,77,188,139,69,192,137,194,139,69,196,136,84,1,64,139,85,188,66,139,69,196,198,68,2,64,0,139, 69,196,131,192,64,137,68,36,16,141,131,160,6,4,0,137,68,36,12,199,68,36,8,44,0,0,0,199,68,36,4,0,0,0,0,141,69,200,137,4,36,232,159,76,4,0,199,69,180,2,0,0,0,141,69,200,137,4,36,232,120,139,1,0,137,69,184,139,69,196,139,64,8,137,4,36,232,92,21,1,0,139, 69,196,139,80,8,141,69,180,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,60,32,1,0,139,85,196,139,69,196,139,64,36,137,84,36,4,137,4,36,232,185,31,254,255,141,131,237,85,4,0,139,0,139,85,244,51,16,116,5,232,60,76,4,0,129,196,132,0,0,0,91,201,195,85,137, 229,87,86,83,131,236,60,232,0,0,0,0,91,139,69,8,15,183,64,24,102,131,248,1,117,101,139,69,8,139,64,28,131,248,1,15,133,41,1,0,0,139,69,8,243,15,16,72,32,141,131,43,70,4,0,243,15,16,0,15,46,200,122,2,116,2,235,17,141,131,47,70,4,0,243,15,16,0,243,15,17, 69,228,235,15,141,131,43,70,4,0,243,15,16,0,243,15,17,69,228,243,15,16,69,228,243,15,17,68,36,4,139,69,8,137,4,36,232,163,249,255,255,233,211,0,0,0,141,131,43,70,4,0,243,15,16,0,15,46,69,28,117,4,122,2,235,100,139,69,8,139,64,28,131,248,1,15,133,176, 0,0,0,139,69,8,243,15,16,72,32,141,131,43,70,4,0,243,15,16,0,15,46,200,117,4,122,2,235,37,139,69,8,139,80,32,139,69,8,137,80,40,141,131,43,70,4,0,139,0,137,68,36,4,139,69,8,137,4,36,232,61,249,255,255,235,112,139,69,8,139,64,40,137,68,36,4,139,69,8,137, 4,36,232,38,249,255,255,243,15,16,69,20,243,15,44,192,137,194,139,69,8,136,80,104,139,69,8,198,64,64,0,243,15,16,69,16,243,15,44,200,243,15,16,69,12,243,15,44,208,139,117,8,139,69,8,139,120,36,137,76,36,20,137,84,36,16,141,131,211,253,255,255,137,68, 36,12,141,131,161,251,255,255,137,68,36,8,137,116,36,4,137,60,36,232,161,30,254,255,131,196,60,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,199,11,1,0,217,93,244,139,69,20,137, 68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,170,11,1,0,217,93,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,141,11,1,0,217,93,236,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,244,11,1,0,137,4,36,232,91, 245,255,255,137,69,232,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,75,11,1,0,217,93,228,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,5,0,0,0,232,178,11,1,0,137,4,36,232,25,245,255,255,137,69,224,139,69,20,137,68,36,8,139, 69,16,137,68,36,4,199,4,36,6,0,0,0,232,141,11,1,0,137,4,36,232,244,244,255,255,137,69,220,139,69,8,139,64,36,139,85,8,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,13,151,253,255,139,69,224,139,0,15,182,0,132,192,117,51,139,69,8,139,64,56,139,0,15,182, 0,132,192,116,36,139,69,8,139,85,8,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,4,164,1,0,235,90,139,69,224,139,0,15,182,0,132,192,116,78,139,69,8,139,64,56,139,0,15,182,0,132,192,117,63,139,69,8,139,64,16,133,192,116,53,139,69, 8,139,80,16,139,77,8,139,69,8,139,64,36,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,161,110,253,255,139,69,8,139,64,16,137,4,36,232,224,169,1,0,139,69,220,139,0,15,182,0,132,192,117,36,139,69,8,139,64,60,139,0,15,182,0,132,192,116,21,139, 69,8,199,68,36,4,0,0,0,0,137,4,36,232,236,175,1,0,235,90,139,69,220,139,0,15,182,0,132,192,116,78,139,69,8,139,64,60,139,0,15,182,0,132,192,117,63,139,69,8,139,64,12,133,192,116,53,139,69,8,139,80,12,139,77,8,139,69,8,139,64,36,137,84,36,12,199,68,36, 8,0,0,0,0,137,76,36,4,137,4,36,232,23,110,253,255,139,69,8,139,64,12,137,4,36,232,124,179,1,0,243,15,16,69,240,15,46,69,236,115,2,235,17,141,131,209,68,4,0,139,0,137,69,236,139,69,236,137,69,240,139,85,8,139,69,240,137,66,48,139,85,8,139,69,236,137,66, 44,141,131,209,68,4,0,243,15,16,0,15,46,69,244,119,2,235,13,141,131,237,69,4,0,139,0,137,69,244,235,29,243,15,16,69,244,141,131,101,72,4,0,15,46,0,119,2,235,11,141,131,101,72,4,0,139,0,137,69,244,243,15,16,69,244,243,15,44,192,137,194,139,69,8,102,137, 80,24,243,15,16,69,228,243,15,44,192,137,194,131,226,3,139,69,8,136,80,105,139,85,8,139,69,232,137,66,52,139,69,8,139,64,56,139,0,15,182,0,132,192,116,39,139,69,8,139,80,56,139,69,8,139,64,36,137,84,36,4,137,4,36,232,178,75,253,255,139,85,8,137,68,36, 4,137,20,36,232,82,192,1,0,139,85,8,139,69,224,137,66,56,139,69,8,139,64,56,139,0,15,182,0,132,192,116,39,139,69,8,139,80,56,139,69,8,139,64,36,137,84,36,4,137,4,36,232,115,75,253,255,139,85,8,137,68,36,4,137,20,36,232,51,191,1,0,139,85,8,139,69,220, 137,66,60,139,69,8,139,80,60,139,69,8,139,64,36,137,84,36,4,137,4,36,232,67,75,253,255,137,194,139,69,8,137,80,108,139,69,8,139,64,36,139,85,8,199,68,36,8,1,0,0,0,137,68,36,4,137,20,36,232,148,148,253,255,139,69,8,139,80,36,141,131,213,68,4,0,139,0,137, 68,36,4,137,20,36,232,166,99,253,255,131,196,52,91,201,195,85,137,229,87,86,131,236,64,139,85,8,141,69,232,137,68,36,20,141,69,236,137,68,36,16,141,69,240,137,68,36,12,141,69,244,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,149,9,0,0,139,85,236,139, 69,244,137,209,41,193,137,200,137,69,228,139,85,232,139,69,240,137,209,41,193,137,200,137,69,224,139,69,8,15,182,64,105,132,192,117,92,139,69,244,137,199,139,69,8,139,80,52,139,69,8,139,64,36,137,84,36,4,137,4,36,232,130,74,253,255,139,0,137,4,36,232, 223,72,4,0,137,198,139,69,12,137,4,36,232,37,104,253,255,137,4,36,232,42,60,2,0,15,175,198,137,250,41,194,137,208,131,232,3,137,194,139,69,16,137,16,139,69,240,141,80,2,139,69,20,137,16,235,115,139,69,8,15,182,64,105,60,1,117,24,139,69,236,141,80,2,139, 69,16,137,16,139,69,240,141,80,2,139,69,20,137,16,235,80,139,69,8,15,182,64,105,60,2,117,47,139,69,244,141,80,255,139,69,16,137,16,139,69,240,141,112,255,139,69,12,137,4,36,232,179,103,253,255,137,4,36,232,206,59,2,0,137,242,41,194,139,69,20,137,16,235, 22,139,69,244,141,80,255,139,69,16,137,16,139,69,232,141,80,3,139,69,20,137,16,131,196,64,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,69,244,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232, 14,10,0,0,139,69,12,137,4,36,232,16,26,254,255,137,194,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,244,137,68,36,8,137,84,36,4,141,131,83,254,3,0,137,4,36,232,148,26,2,0,131,196,52,91,201,195,85,137,229,87,86,83,131,236,92,232,0,0,0,0,91,139, 69,8,137,69,228,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,164,11,0,0,139,69,228,139,64,52,139,0,15,182,0,132,192,15,132,231,0,0,0,131,125,16,0,15,132,183,0,0,0,141,69,220,137,68,36,12,141,69,224,137,68,36,8,139,69,12,137,68,36, 4,139,69,228,137,4,36,232,243,253,255,255,139,69,12,137,4,36,232,160,102,253,255,137,4,36,232,143,58,2,0,137,198,139,69,228,139,80,52,139,69,228,139,64,36,137,84,36,4,137,4,36,232,196,72,253,255,139,56,139,69,220,242,15,42,192,242,15,17,69,200,139,69, 224,242,15,42,192,242,15,17,69,208,139,69,12,137,4,36,232,36,25,254,255,137,194,141,131,93,225,3,0,137,68,36,36,137,116,36,32,137,124,36,28,242,15,16,69,200,242,15,17,68,36,20,242,15,16,69,208,242,15,17,68,36,12,139,69,228,137,68,36,8,137,84,36,4,141, 131,255,253,3,0,137,4,36,232,142,25,2,0,235,38,139,69,12,137,4,36,232,212,24,254,255,137,194,139,69,228,137,68,36,8,137,84,36,4,141,131,58,254,3,0,137,4,36,232,102,25,2,0,131,125,16,0,117,11,139,69,228,137,4,36,232,224,32,2,0,131,196,92,91,94,95,201, 195,85,137,229,83,131,236,100,232,0,0,0,0,91,141,131,152,118,4,0,139,0,137,4,36,232,76,184,1,0,137,69,244,139,69,244,102,199,64,24,0,0,139,85,244,139,66,24,13,0,0,3,0,137,66,24,232,172,11,1,0,137,194,139,69,244,137,80,8,139,85,244,139,69,8,137,66,36, 139,85,244,139,69,12,137,66,28,139,85,244,141,131,76,62,4,0,139,0,137,66,40,139,85,244,141,131,72,62,4,0,139,0,137,66,48,139,85,244,141,131,72,62,4,0,139,0,137,66,44,139,69,244,198,64,105,0,139,85,244,141,131,4,76,4,0,139,0,137,66,52,139,85,244,141,131, 4,76,4,0,139,0,137,66,56,139,85,244,141,131,4,76,4,0,139,0,137,66,108,139,69,244,139,80,108,139,69,244,137,80,60,131,125,12,1,117,43,139,85,244,141,131,72,62,4,0,139,0,137,66,32,139,69,244,102,199,64,24,5,0,199,69,216,1,0,0,0,141,131,72,62,4,0,139,0, 137,69,220,235,41,139,85,244,141,131,204,76,4,0,139,0,137,66,32,139,69,244,102,199,64,24,10,0,199,69,216,2,0,0,0,141,131,204,76,4,0,139,0,137,69,220,139,69,244,139,80,8,141,69,216,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,241,22,1,0,131,125,20,1, 15,142,110,2,0,0,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,0,0,0,0,232,13,4,1,0,217,93,196,243,15,44,69,196,137,194,139,69,244,102,137,80,20,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,1,0,0,0,232,226,3,1,0,217,93,200,243,15,44,69, 200,137,194,139,69,244,102,137,80,22,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,2,0,0,0,232,18,4,1,0,137,194,139,69,244,102,137,80,24,139,69,244,15,183,64,24,102,133,192,120,13,139,69,244,15,183,64,24,102,61,244,1,126,9,139,69,244,102,199,64, 24,4,0,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,3,0,0,0,232,114,3,1,0,139,69,244,217,88,48,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,4,0,0,0,232,82,3,1,0,139,69,244,217,88,44,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36, 5,0,0,0,232,50,3,1,0,217,93,204,243,15,44,69,204,137,194,131,226,3,139,69,244,136,80,105,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,6,0,0,0,232,137,3,1,0,137,4,36,232,240,236,255,255,137,194,139,69,244,137,80,52,139,69,24,137,68,36,8,139,69, 20,137,68,36,4,199,4,36,7,0,0,0,232,95,3,1,0,137,4,36,232,198,236,255,255,137,194,139,69,244,137,80,56,139,69,244,139,64,56,139,0,15,182,0,132,192,116,39,139,69,244,139,80,56,139,69,244,139,64,36,137,84,36,4,137,4,36,232,90,69,253,255,139,85,244,137, 68,36,4,137,20,36,232,26,185,1,0,139,69,24,137,68,36,8,139,69,20,137,68,36,4,199,4,36,8,0,0,0,232,255,2,1,0,137,4,36,232,102,236,255,255,137,194,139,69,244,137,80,60,139,69,244,139,80,60,139,69,244,139,64,36,137,84,36,4,137,4,36,232,9,69,253,255,137, 194,139,69,244,137,80,108,139,69,244,139,80,60,141,131,4,76,4,0,139,0,57,194,117,53,139,69,244,139,64,28,131,248,1,117,13,141,131,124,75,4,0,139,0,137,69,208,235,11,141,131,204,76,4,0,139,0,137,69,208,139,69,244,139,85,208,137,84,36,4,137,4,36,232,214, 167,1,0,139,69,244,139,80,56,141,131,4,76,4,0,139,0,57,194,117,34,139,69,244,139,85,244,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,48,155,1,0,139,69,244,137,68,36,4,139,69,8,137,4,36,232,200,14,254,255,233,86,1,0,0,141,69,224, 137,68,36,20,141,69,228,137,68,36,16,141,69,232,137,68,36,12,141,69,236,137,68,36,8,141,69,240,137,68,36,4,139,69,8,137,4,36,232,201,219,255,255,139,69,244,139,64,28,131,248,1,117,13,141,131,124,75,4,0,139,0,137,69,212,235,11,141,131,204,76,4,0,139,0, 137,69,212,139,69,244,139,85,212,137,84,36,4,137,4,36,232,40,167,1,0,139,69,244,139,85,244,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,148,154,1,0,141,131,56,251,3,0,137,4,36,232,244,126,1,0,137,194,139,77,8,199,68,36,12,1,0,0, 0,141,131,52,55,4,0,137,68,36,8,137,84,36,4,137,12,36,232,191,139,1,0,139,69,236,137,194,139,69,244,102,137,80,20,139,69,232,137,194,139,69,244,102,137,80,22,139,69,244,137,68,36,4,139,69,8,137,4,36,232,227,13,254,255,139,69,8,137,4,36,232,173,146,253, 255,139,69,244,137,68,36,4,139,69,8,137,4,36,232,18,143,253,255,139,69,240,133,192,116,63,139,69,224,243,15,42,192,139,69,228,243,15,42,200,141,131,72,62,4,0,139,0,137,68,36,16,243,15,17,68,36,12,141,131,72,62,4,0,139,0,137,68,36,8,243,15,17,76,36,4, 139,69,8,137,4,36,232,205,247,253,255,235,19,139,69,8,137,4,36,232,166,19,254,255,137,4,36,232,222,223,253,255,131,196,100,91,201,195,85,137,229,131,236,40,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,199,68,36,4,1,0,0,0,139,69, 8,137,4,36,232,202,250,255,255,201,195,85,137,229,131,236,40,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,199,68,36,4,2,0,0,0,139,69,8,137,4,36,232,154,250,255,255,201,195,85,137,229,131,236,24,139,69,8,139,64,56,139,0,15,182,0, 132,192,116,39,139,69,8,139,80,56,139,69,8,139,64,36,137,84,36,4,137,4,36,232,134,66,253,255,139,85,8,137,68,36,4,137,20,36,232,38,183,1,0,139,69,8,137,4,36,232,204,250,2,0,201,195,85,137,229,87,86,83,129,236,44,1,0,0,232,0,0,0,0,91,139,69,8,137,133, 20,255,255,255,139,69,12,137,133,16,255,255,255,141,131,54,70,4,0,139,0,139,16,137,85,228,49,210,139,133,20,255,255,255,137,133,24,255,255,255,139,133,24,255,255,255,139,64,60,137,4,36,232,111,232,255,255,139,48,139,133,24,255,255,255,139,64,56,137,4, 36,232,92,232,255,255,139,56,139,133,24,255,255,255,139,64,52,137,4,36,232,73,232,255,255,139,16,139,133,24,255,255,255,15,182,64,105,15,190,200,139,133,24,255,255,255,243,15,16,64,44,243,15,90,200,139,133,24,255,255,255,243,15,16,64,48,243,15,90,192, 139,133,24,255,255,255,15,183,64,24,152,137,116,36,48,137,124,36,44,137,84,36,40,137,76,36,36,242,15,17,76,36,28,242,15,17,68,36,20,137,68,36,16,141,131,94,247,3,0,137,68,36,12,199,68,36,8,200,0,0,0,199,68,36,4,0,0,0,0,141,133,28,255,255,255,137,4,36, 232,161,61,4,0,139,149,24,255,255,255,141,133,28,255,255,255,137,68,36,8,139,133,24,255,255,255,137,68,36,4,137,20,36,232,212,246,2,0,141,131,54,70,4,0,139,0,139,85,228,51,16,116,5,232,113,61,4,0,129,196,44,1,0,0,91,94,95,201,195,85,137,229,131,236,88, 139,69,8,137,69,244,139,69,244,139,64,24,37,0,0,3,0,133,192,15,148,192,15,182,192,137,69,232,139,69,244,139,64,24,37,0,0,3,0,61,0,0,3,0,117,108,139,69,244,15,183,64,24,102,133,192,126,96,139,69,12,137,4,36,232,162,94,253,255,137,69,212,139,69,212,137, 4,36,232,161,50,2,0,137,69,208,139,69,212,137,4,36,232,169,50,2,0,137,69,204,139,69,244,15,183,64,24,102,133,192,126,13,139,69,244,15,183,64,24,152,137,69,196,235,7,199,69,196,6,0,0,0,139,69,196,15,175,69,208,131,192,2,137,69,240,139,69,204,64,137,69, 236,235,106,139,69,12,139,128,140,0,0,0,133,192,116,80,139,69,12,139,128,140,0,0,0,139,64,12,133,192,116,64,139,69,244,137,68,36,4,139,69,12,137,4,36,232,90,73,255,255,137,69,200,139,69,200,137,4,36,232,185,73,255,255,137,69,240,139,69,200,137,4,36,232, 236,73,255,255,137,194,139,69,232,1,192,137,209,41,193,137,200,137,69,236,235,13,199,69,236,10,0,0,0,139,69,236,137,69,240,139,69,12,137,68,36,4,139,69,244,137,4,36,232,104,36,254,255,243,15,42,192,243,15,17,69,228,139,69,12,137,68,36,4,139,69,244,137, 4,36,232,82,37,254,255,243,15,42,192,243,15,17,69,224,243,15,42,69,240,243,15,88,69,228,243,15,17,69,220,243,15,42,69,236,243,15,88,69,224,243,15,17,69,216,243,15,42,77,232,243,15,16,69,224,243,15,88,193,243,15,17,69,224,243,15,16,69,228,243,15,44,208, 139,69,16,137,16,243,15,16,69,224,243,15,44,208,139,69,20,137,16,243,15,16,69,220,243,15,44,208,139,69,24,137,16,243,15,16,69,216,243,15,44,208,139,69,28,137,16,201,195,85,137,229,87,86,131,236,48,139,69,8,137,69,244,139,69,244,15,183,64,20,137,194,139, 69,16,141,4,2,137,194,139,69,244,102,137,80,20,139,69,244,15,183,64,22,137,194,139,69,20,141,4,2,137,194,139,69,244,102,137,80,22,139,69,12,137,4,36,232,121,92,253,255,133,192,15,132,139,0,0,0,139,69,244,137,68,36,4,139,69,12,137,4,36,232,27,72,255,255, 137,69,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,240,137,4,36,232,107,73,255,255,139,69,240,137,4,36,232,162,72,255,255,137,198,139,69,240,137,4,36,232,84,72,255,255,137,199,139,69,240,137,4,36,232,212,56,255,255,199,68,36,20,0,0,0,0,137, 116,36,16,137,124,36,12,137,68,36,8,139,69,12,137,68,36,4,139,69,244,137,4,36,232,116,10,0,0,139,69,244,137,68,36,4,139,69,12,137,4,36,232,254,94,253,255,131,196,48,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,69,244,139,69,244, 137,68,36,4,139,69,12,137,4,36,232,118,71,255,255,137,69,240,139,69,16,137,68,36,4,139,69,240,137,4,36,232,28,73,255,255,139,69,12,137,4,36,232,154,91,253,255,133,192,116,91,139,69,244,139,85,12,137,84,36,4,137,4,36,232,158,133,253,255,133,192,116,69, 131,125,16,0,116,11,141,131,208,243,3,0,137,69,228,235,9,141,147,168,214,3,0,137,85,228,139,69,240,137,4,36,232,17,56,255,255,139,85,228,137,84,36,12,137,68,36,8,139,69,12,137,68,36,4,141,131,174,214,3,0,137,4,36,232,51,15,2,0,131,196,52,91,201,195,85, 137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,69,244,139,69,244,137,68,36,4,139,69,12,137,4,36,232,204,70,255,255,137,69,240,139,69,8,139,16,141,131,120,108,4,0,139,0,57,194,116,18,139,69,16,137,68,36,4,139,69,240,137,4,36,232,216,72,255,255,131, 196,36,91,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,69,244,137,68,36,4,139,69,12,137,4,36,232,129,94,253,255,201,195,85,137,229,87,86,131,236,48,139,69,8,137,69,244,131,125,16,0,15,132,171,0,0,0,139,69,244,139,85,12,137,84,36,4,137,4,36,232, 180,132,253,255,133,192,15,132,232,0,0,0,139,69,244,137,68,36,4,139,69,12,137,4,36,232,60,70,255,255,137,69,240,139,69,244,139,64,24,37,0,0,3,0,61,0,0,3,0,117,18,139,69,244,137,68,36,4,139,69,12,137,4,36,232,187,12,254,255,139,69,240,137,4,36,232,184, 70,255,255,137,198,139,69,240,137,4,36,232,106,70,255,255,137,199,139,69,240,137,4,36,232,234,54,255,255,199,68,36,20,1,0,0,0,137,116,36,16,137,124,36,12,137,68,36,8,139,69,12,137,68,36,4,139,69,244,137,4,36,232,138,8,0,0,139,69,240,137,4,36,232,174, 70,255,255,235,87,139,69,244,137,68,36,4,139,69,12,137,4,36,232,171,69,255,255,137,69,236,139,85,244,139,69,12,137,68,36,4,137,20,36,232,244,131,253,255,133,192,116,44,139,69,236,137,4,36,232,129,54,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,244, 137,4,36,232,226,15,0,0,139,69,236,137,4,36,232,147,70,255,255,131,196,48,94,95,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,139,69,8,137,69,244,139,69,244,139,64,24,37,0,0,3,0,61,0,0,1,0,15,133,157,0,0,0,141,131,202,199,3,0,137,4,36,232,74,119,1, 0,137,69,240,139,85,244,139,69,240,137,68,36,4,137,20,36,232,223,134,1,0,133,192,116,106,131,125,36,0,116,88,242,15,42,69,28,242,15,42,77,24,242,15,42,85,20,242,15,42,93,16,139,85,244,242,15,17,68,36,44,141,131,174,50,4,0,242,15,16,0,242,15,17,68,36, 36,242,15,17,76,36,28,242,15,17,84,36,20,242,15,17,92,36,12,141,131,156,241,3,0,137,68,36,8,139,69,240,137,68,36,4,137,20,36,232,193,131,1,0,199,69,228,1,0,0,0,233,219,0,0,0,199,69,228,0,0,0,0,233,207,0,0,0,139,69,244,139,64,24,37,0,0,3,0,61,0,0,3,0, 117,82,131,125,36,0,116,67,243,15,42,69,28,243,15,42,77,24,243,15,42,85,20,243,15,42,93,16,139,85,244,243,15,17,68,36,20,141,131,150,50,4,0,139,0,137,68,36,16,243,15,17,76,36,12,243,15,17,84,36,8,243,15,17,92,36,4,137,20,36,232,72,235,255,255,199,69, 228,1,0,0,0,235,107,139,69,244,139,64,24,37,0,0,3,0,61,0,0,2,0,117,82,131,125,36,0,116,67,243,15,42,69,28,243,15,42,77,24,243,15,42,85,20,243,15,42,93,16,139,85,244,243,15,17,68,36,20,141,131,150,50,4,0,139,0,137,68,36,16,243,15,17,76,36,12,243,15,17, 84,36,8,243,15,17,92,36,4,137,20,36,232,146,221,255,255,199,69,228,1,0,0,0,235,7,199,69,228,0,0,0,0,139,69,228,131,196,100,91,201,195,85,137,229,87,86,83,129,236,172,0,0,0,232,0,0,0,0,91,139,69,8,137,69,228,139,69,228,139,64,24,37,0,0,3,0,61,0,0,1,0, 15,133,115,1,0,0,141,131,255,239,3,0,137,4,36,232,167,117,1,0,139,85,228,137,68,36,4,137,20,36,232,66,133,1,0,133,192,15,132,196,0,0,0,139,69,228,139,16,141,131,159,62,4,0,139,0,139,0,57,194,117,38,139,69,228,137,4,36,232,37,102,253,255,133,192,15,133, 158,0,0,0,139,69,228,137,4,36,232,43,102,253,255,133,192,15,133,139,0,0,0,141,131,255,239,3,0,137,4,36,232,73,117,1,0,139,85,228,137,68,36,4,137,20,36,232,94,132,1,0,137,193,139,85,228,139,69,12,137,68,36,4,137,20,36,255,209,139,69,228,15,183,64,22,152, 137,69,148,139,69,228,15,183,64,20,15,191,240,141,131,241,200,3,0,137,4,36,232,6,117,1,0,137,199,141,131,151,198,3,0,137,4,36,232,246,116,1,0,139,85,148,137,84,36,20,137,116,36,16,137,124,36,12,137,68,36,8,141,131,9,240,3,0,137,68,36,4,139,69,12,137, 4,36,232,113,10,1,0,235,91,139,69,228,15,183,64,22,152,137,69,152,139,69,228,15,183,64,20,15,191,240,141,131,19,213,3,0,137,4,36,232,169,116,1,0,137,199,141,131,151,198,3,0,137,4,36,232,153,116,1,0,139,85,152,137,84,36,20,137,116,36,16,137,124,36,12, 137,68,36,8,141,131,9,240,3,0,137,68,36,4,139,69,12,137,4,36,232,20,10,1,0,139,69,228,139,64,8,137,68,36,4,139,69,12,137,4,36,232,103,11,1,0,141,131,239,196,3,0,137,68,36,4,139,69,12,137,4,36,232,234,9,1,0,233,169,2,0,0,139,69,228,139,64,24,37,0,0,3, 0,61,0,0,2,0,15,133,138,0,0,0,139,69,228,15,183,64,22,152,137,69,156,139,69,228,15,183,64,20,15,191,240,141,131,143,228,3,0,137,4,36,232,9,116,1,0,137,199,141,131,151,198,3,0,137,4,36,232,249,115,1,0,139,85,156,137,84,36,20,137,116,36,16,137,124,36,12, 137,68,36,8,141,131,9,240,3,0,137,68,36,4,139,69,12,137,4,36,232,116,9,1,0,139,69,228,139,64,8,137,68,36,4,139,69,12,137,4,36,232,199,10,1,0,141,131,239,196,3,0,137,68,36,4,139,69,12,137,4,36,232,74,9,1,0,233,9,2,0,0,139,69,228,139,64,24,37,0,0,3,0,61, 0,0,3,0,15,133,110,1,0,0,139,69,228,139,64,28,137,69,224,131,125,224,2,117,19,141,131,250,200,3,0,137,4,36,232,111,115,1,0,137,69,160,235,48,131,125,224,1,117,19,141,131,15,240,3,0,137,4,36,232,86,115,1,0,137,69,164,235,17,141,131,25,240,3,0,137,4,36, 232,67,115,1,0,137,69,164,139,69,164,137,69,160,139,85,160,137,85,220,139,69,228,139,64,52,137,4,36,232,99,222,255,255,137,69,216,139,69,228,139,64,56,137,4,36,232,82,222,255,255,137,69,212,139,69,228,139,64,60,137,4,36,232,65,222,255,255,137,69,208, 139,69,228,15,182,64,105,102,152,152,242,15,42,192,242,15,17,69,168,139,69,228,243,15,16,64,44,243,15,90,192,242,15,17,69,176,139,69,228,243,15,16,64,48,243,15,90,192,242,15,17,69,184,139,69,228,15,183,64,24,15,191,240,139,69,228,15,183,64,22,15,191, 248,139,69,228,15,183,64,20,152,137,69,192,141,131,151,198,3,0,137,4,36,232,159,114,1,0,137,194,139,69,208,137,68,36,60,139,69,212,137,68,36,56,139,69,216,137,68,36,52,242,15,16,69,168,242,15,17,68,36,44,242,15,16,69,176,242,15,17,68,36,36,242,15,16, 69,184,242,15,17,68,36,28,137,116,36,24,137,124,36,20,139,69,192,137,68,36,16,139,69,220,137,68,36,12,137,84,36,8,141,131,33,240,3,0,137,68,36,4,139,69,12,137,4,36,232,219,7,1,0,141,131,239,196,3,0,137,68,36,4,139,69,12,137,4,36,232,198,7,1,0,233,133, 0,0,0,139,69,228,15,183,64,22,152,137,69,196,139,69,228,15,183,64,20,15,191,240,141,131,5,201,3,0,137,4,36,232,251,113,1,0,137,199,141,131,151,198,3,0,137,4,36,232,235,113,1,0,139,85,196,137,84,36,20,137,116,36,16,137,124,36,12,137,68,36,8,141,131,9, 240,3,0,137,68,36,4,139,69,12,137,4,36,232,102,7,1,0,139,69,228,139,64,8,137,68,36,4,139,69,12,137,4,36,232,185,8,1,0,141,131,239,196,3,0,137,68,36,4,139,69,12,137,4,36,232,60,7,1,0,129,196,172,0,0,0,91,94,95,201,195,85,137,229,87,86,83,131,236,92,232, 0,0,0,0,91,139,69,12,137,4,36,232,11,160,1,0,137,69,228,131,125,228,1,116,9,139,69,228,72,137,69,192,235,7,199,69,192,1,0,0,0,139,77,192,137,77,224,139,69,24,139,85,32,137,209,41,193,137,200,137,69,216,199,69,220,0,0,0,0,233,191,0,0,0,139,69,216,131, 232,7,137,194,15,175,85,220,137,208,193,250,31,247,125,224,3,69,24,137,69,212,131,125,16,0,116,79,139,117,212,131,198,7,139,125,36,79,139,69,8,137,4,36,232,114,6,254,255,137,194,139,69,220,137,68,36,28,139,69,20,137,68,36,24,139,69,36,137,68,36,20,137, 116,36,16,137,124,36,12,139,69,212,137,68,36,8,137,84,36,4,141,131,221,235,3,0,137,4,36,232,231,6,2,0,235,77,139,117,212,131,198,7,139,125,36,79,139,69,8,137,4,36,232,35,6,254,255,137,194,139,69,36,137,68,36,28,137,116,36,24,137,124,36,20,139,69,212, 137,68,36,16,139,69,220,137,68,36,12,139,69,20,137,68,36,8,137,84,36,4,141,131,29,236,3,0,137,4,36,232,152,6,2,0,255,69,220,139,69,220,59,69,228,15,140,53,255,255,255,139,69,12,137,4,36,232,42,159,1,0,137,69,228,131,125,228,1,116,9,139,69,228,72,137, 69,196,235,7,199,69,196,1,0,0,0,139,77,196,137,77,224,199,69,220,0,0,0,0,233,195,0,0,0,139,69,216,131,232,7,137,194,15,175,85,220,137,208,193,250,31,247,125,224,3,69,24,137,69,208,131,125,16,0,116,81,139,117,28,131,198,2,139,125,208,131,199,7,139,69, 8,137,4,36,232,111,5,254,255,137,194,139,69,220,137,68,36,28,139,69,20,137,68,36,24,137,116,36,20,137,124,36,16,139,69,28,137,68,36,12,139,69,208,137,68,36,8,137,84,36,4,141,131,65,236,3,0,137,4,36,232,228,5,2,0,235,79,139,117,28,131,198,2,139,125,208, 131,199,7,139,69,8,137,4,36,232,30,5,254,255,137,194,137,116,36,28,137,124,36,24,139,69,28,137,68,36,20,139,69,208,137,68,36,16,139,69,220,137,68,36,12,139,69,20,137,68,36,8,137,84,36,4,141,131,129,236,3,0,137,4,36,232,147,5,2,0,255,69,220,139,69,220, 59,69,228,15,140,49,255,255,255,131,196,92,91,94,95,201,195,85,137,229,87,86,83,129,236,124,1,0,0,232,0,0,0,0,91,139,85,8,141,69,212,137,68,36,20,141,69,216,137,68,36,16,141,69,220,137,68,36,12,141,69,224,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232, 215,242,255,255,139,85,216,139,69,224,137,209,41,193,137,200,137,69,208,139,85,212,139,69,220,137,209,41,193,137,200,137,69,204,139,69,8,139,64,24,37,0,0,3,0,61,0,0,1,0,15,133,22,2,0,0,139,69,8,139,16,141,131,214,56,4,0,139,0,139,0,57,194,117,14,141, 131,98,232,3,0,137,133,212,254,255,255,235,12,141,139,116,234,3,0,137,141,212,254,255,255,139,133,212,254,255,255,137,69,200,131,125,28,0,15,132,216,0,0,0,139,117,220,139,125,224,139,77,212,137,141,216,254,255,255,139,69,224,137,133,220,254,255,255,139, 77,212,137,141,224,254,255,255,139,69,216,137,133,228,254,255,255,139,77,220,137,141,232,254,255,255,139,69,216,137,133,236,254,255,255,139,77,220,137,141,240,254,255,255,139,69,224,137,133,244,254,255,255,139,69,12,137,4,36,232,194,3,254,255,137,194, 139,69,16,137,68,36,52,139,69,200,137,68,36,48,137,116,36,44,137,124,36,40,139,141,216,254,255,255,137,76,36,36,139,133,220,254,255,255,137,68,36,32,139,141,224,254,255,255,137,76,36,28,139,133,228,254,255,255,137,68,36,24,139,141,232,254,255,255,137, 76,36,20,139,133,236,254,255,255,137,68,36,16,139,141,240,254,255,255,137,76,36,12,139,133,244,254,255,255,137,68,36,8,137,84,36,4,141,131,122,234,3,0,137,4,36,232,245,3,2,0,233,25,5,0,0,139,117,220,139,125,224,139,77,212,137,141,248,254,255,255,139, 69,224,137,133,252,254,255,255,139,77,212,137,141,0,255,255,255,139,69,216,137,133,4,255,255,255,139,77,220,137,141,8,255,255,255,139,69,216,137,133,12,255,255,255,139,77,220,137,141,16,255,255,255,139,69,224,137,133,20,255,255,255,139,69,12,137,4,36, 232,234,2,254,255,137,194,137,116,36,48,137,124,36,44,139,141,248,254,255,255,137,76,36,40,139,133,252,254,255,255,137,68,36,36,139,141,0,255,255,255,137,76,36,32,139,133,4,255,255,255,137,68,36,28,139,141,8,255,255,255,137,76,36,24,139,133,12,255,255, 255,137,68,36,20,139,141,16,255,255,255,137,76,36,16,139,133,20,255,255,255,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,141,131,206,234,3,0,137,4,36,232,36,3,2,0,139,69,12,137,4,36,232,108,2,254,255,137,194,139,69,200,137,68,36,12,139,69,16,137,68, 36,8,137,84,36,4,141,131,2,235,3,0,137,4,36,232,247,2,2,0,233,27,4,0,0,139,69,8,139,64,24,37,0,0,3,0,61,0,0,2,0,15,133,92,2,0,0,131,125,28,0,15,132,41,1,0,0,139,117,220,139,125,224,139,77,212,137,141,24,255,255,255,139,69,224,137,133,28,255,255,255,139, 77,212,137,141,32,255,255,255,139,69,216,131,192,4,137,133,36,255,255,255,139,69,212,131,232,4,137,133,40,255,255,255,139,69,216,137,133,44,255,255,255,139,69,220,131,192,4,137,133,48,255,255,255,139,77,216,137,141,52,255,255,255,139,69,220,137,133,56, 255,255,255,139,69,216,131,192,4,137,133,60,255,255,255,139,77,220,137,141,64,255,255,255,139,69,224,137,133,68,255,255,255,139,69,12,137,4,36,232,156,1,254,255,137,194,139,69,16,137,68,36,64,137,116,36,60,137,124,36,56,139,141,24,255,255,255,137,76, 36,52,139,133,28,255,255,255,137,68,36,48,139,141,32,255,255,255,137,76,36,44,139,133,36,255,255,255,137,68,36,40,139,141,40,255,255,255,137,76,36,36,139,133,44,255,255,255,137,68,36,32,139,141,48,255,255,255,137,76,36,28,139,133,52,255,255,255,137,68, 36,24,139,141,56,255,255,255,137,76,36,20,139,133,60,255,255,255,137,68,36,16,139,141,64,255,255,255,137,76,36,12,139,133,68,255,255,255,137,68,36,8,137,84,36,4,141,131,38,235,3,0,137,4,36,232,174,1,2,0,233,210,2,0,0,139,117,220,139,125,224,139,77,212, 137,141,72,255,255,255,139,69,224,137,133,76,255,255,255,139,77,212,137,141,80,255,255,255,139,69,216,131,192,4,137,133,84,255,255,255,139,69,212,131,232,4,137,133,88,255,255,255,139,69,216,137,133,92,255,255,255,139,69,220,131,192,4,137,133,96,255,255, 255,139,77,216,137,141,100,255,255,255,139,69,220,137,133,104,255,255,255,139,69,216,131,192,4,137,133,108,255,255,255,139,77,220,137,141,112,255,255,255,139,69,224,137,133,116,255,255,255,139,69,12,137,4,36,232,115,0,254,255,137,194,137,116,36,64,137, 124,36,60,139,141,72,255,255,255,137,76,36,56,139,133,76,255,255,255,137,68,36,52,139,141,80,255,255,255,137,76,36,48,139,133,84,255,255,255,137,68,36,44,139,141,88,255,255,255,137,76,36,40,139,133,92,255,255,255,137,68,36,36,139,141,96,255,255,255,137, 76,36,32,139,133,100,255,255,255,137,68,36,28,139,141,104,255,255,255,137,76,36,24,139,133,108,255,255,255,137,68,36,20,139,141,112,255,255,255,137,76,36,16,139,133,116,255,255,255,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,141,131,122,235,3,0,137, 4,36,232,133,0,2,0,233,169,1,0,0,139,69,8,139,64,24,37,0,0,3,0,61,0,0,3,0,15,133,147,1,0,0,131,125,28,0,15,132,205,0,0,0,139,117,220,139,125,224,139,77,212,137,141,120,255,255,255,139,69,224,137,133,124,255,255,255,139,77,212,137,77,128,139,69,216,137, 69,132,139,69,220,131,192,4,137,69,136,139,77,216,137,77,140,139,69,220,137,69,144,139,69,216,131,232,4,137,69,148,139,77,220,137,77,152,139,69,224,137,69,156,139,69,12,137,4,36,232,90,255,253,255,137,194,139,69,16,137,68,36,56,137,116,36,52,137,124, 36,48,139,141,120,255,255,255,137,76,36,44,139,133,124,255,255,255,137,68,36,40,139,77,128,137,76,36,36,139,69,132,137,68,36,32,139,77,136,137,76,36,28,139,69,140,137,68,36,24,139,77,144,137,76,36,20,139,69,148,137,68,36,16,139,77,152,137,76,36,12,139, 69,156,137,68,36,8,137,84,36,4,141,131,186,235,3,0,137,4,36,232,152,255,1,0,233,188,0,0,0,139,117,220,139,125,224,139,77,212,137,77,160,139,69,224,137,69,164,139,77,212,137,77,168,139,69,216,137,69,172,139,69,220,131,192,4,137,69,176,139,77,216,137,77, 180,139,69,220,137,69,184,139,69,216,131,232,4,137,69,188,139,77,220,137,77,192,139,69,224,137,69,196,139,69,12,137,4,36,232,147,254,253,255,137,194,137,116,36,56,137,124,36,52,139,77,160,137,76,36,48,139,69,164,137,68,36,44,139,77,168,137,76,36,40,139, 69,172,137,68,36,36,139,77,176,137,76,36,32,139,69,180,137,68,36,28,139,77,184,137,76,36,24,139,69,188,137,68,36,20,139,77,192,137,76,36,16,139,69,196,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,141,131,10,236,3,0,137,4,36,232,215,254,1,0,139,69,8, 137,4,36,232,220,152,1,0,137,69,228,131,125,228,0,116,60,139,69,212,139,85,216,139,77,220,139,117,224,137,68,36,28,137,84,36,24,137,76,36,20,137,116,36,16,139,69,16,137,68,36,12,139,69,28,137,68,36,8,139,69,228,137,68,36,4,139,69,12,137,4,36,232,223, 246,255,255,129,196,124,1,0,0,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,225,150,1,0,137,69,240,199,69,244,0,0,0,0,235,48,139,69,8,137,4,36,232,160,253,253,255,137,194,139,69,244,137,68,36,12,139,69,16,137,68,36,8, 137,84,36,4,141,131,71,229,3,0,137,4,36,232,43,254,1,0,255,69,244,139,69,244,59,69,240,124,200,139,69,12,137,4,36,232,193,150,1,0,137,69,240,199,69,244,0,0,0,0,235,48,139,69,8,137,4,36,232,81,253,253,255,137,194,139,69,244,137,68,36,12,139,69,16,137, 68,36,8,137,84,36,4,141,131,93,229,3,0,137,4,36,232,220,253,1,0,255,69,244,139,69,244,59,69,240,124,200,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,64,24,37,0,0,3,0,133,192,116,63,139,69,12,137,4,36,232,247,252,253,255, 137,194,139,69,16,137,68,36,8,137,84,36,4,141,131,194,228,3,0,137,4,36,232,137,253,1,0,139,69,16,137,68,36,8,139,69,8,137,68,36,4,139,69,12,137,4,36,232,244,254,255,255,131,196,20,91,201,195,85,137,229,87,86,83,131,236,76,232,0,0,0,0,91,139,69,8,139, 64,24,37,0,0,3,0,61,0,0,1,0,15,133,228,1,0,0,232,219,239,0,0,137,69,228,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,228,137,4,36,232,62,241,0,0,139,69,8,139,64,8,137,4,36,232,248,3,1,0,137,69,224,139,69,8,139,64,8,137,4,36,232,244,3,1,0,137,69, 216,139,69,228,137,4,36,232,217,3,1,0,137,69,220,139,69,228,137,4,36,232,216,3,1,0,137,69,212,131,125,224,0,15,142,169,0,0,0,131,125,220,0,15,142,159,0,0,0,139,69,216,139,0,131,248,2,15,133,145,0,0,0,139,69,216,139,64,4,139,16,141,131,115,228,3,0,137, 68,36,4,137,20,36,232,211,41,4,0,133,192,117,115,139,69,212,139,0,131,248,2,117,105,139,69,212,139,64,4,139,16,141,131,115,228,3,0,137,68,36,4,137,20,36,232,171,41,4,0,133,192,117,75,139,117,212,131,198,8,139,125,220,79,141,131,225,177,3,0,137,4,36,232, 76,102,1,0,139,85,8,137,116,36,12,137,124,36,8,137,68,36,4,137,20,36,232,98,107,1,0,139,69,8,139,64,8,137,4,36,232,19,239,0,0,139,85,8,139,69,228,137,66,8,233,157,0,0,0,139,69,8,15,183,64,20,152,137,69,208,139,69,8,15,183,64,22,152,137,69,204,139,69, 8,137,68,36,4,139,69,12,137,4,36,232,194,246,253,255,139,69,228,137,68,36,16,199,68,36,12,0,0,0,0,139,69,204,137,68,36,8,139,69,208,137,68,36,4,139,69,12,137,4,36,232,103,192,255,255,141,131,147,48,4,0,139,0,139,0,133,192,116,44,141,131,147,48,4,0,139, 0,139,0,139,16,141,131,15,48,4,0,139,0,139,0,57,194,117,18,141,131,147,48,4,0,139,0,139,0,137,4,36,232,148,79,253,255,139,69,12,137,4,36,232,241,250,253,255,137,4,36,232,183,210,253,255,131,125,220,0,126,75,139,69,212,139,0,131,248,2,117,65,139,69,212, 139,64,4,139,16,141,131,115,228,3,0,137,68,36,4,137,20,36,232,149,40,4,0,133,192,117,35,232,168,39,253,255,235,28,139,85,20,139,69,8,139,72,8,137,84,36,8,139,69,16,137,68,36,4,137,12,36,232,95,239,0,0,131,196,76,91,94,95,201,195,85,137,229,131,236,8, 201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,141,131,65,184,3,0,137,4,36,232,255,100,1,0,199,68,36,20,0,0,0,0,199,68,36,16,11,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,179,89,1,0,137,194,141,131,147,46,4,0, 139,0,137,16,141,147,235,255,255,255,141,131,147,46,4,0,139,0,139,0,137,84,36,4,137,4,36,232,119,97,1,0,141,179,185,205,255,255,141,131,69,226,3,0,137,4,36,232,147,100,1,0,199,68,36,20,0,0,0,0,199,68,36,16,3,0,0,0,199,68,36,12,44,0,0,0,137,116,36,8,199, 68,36,4,0,0,0,0,137,4,36,232,75,89,1,0,137,194,141,131,123,88,4,0,137,16,141,147,250,200,255,255,141,131,123,88,4,0,139,0,137,84,36,4,137,4,36,232,190,96,1,0,141,147,42,201,255,255,141,131,123,88,4,0,139,0,137,84,36,4,137,4,36,232,198,96,1,0,141,147, 102,201,255,255,141,131,123,88,4,0,139,0,137,84,36,4,137,4,36,232,189,96,1,0,141,147,162,201,255,255,141,131,123,88,4,0,139,0,137,84,36,4,137,4,36,232,180,96,1,0,141,147,162,201,255,255,141,131,123,88,4,0,139,0,137,84,36,4,137,4,36,232,171,96,1,0,141, 131,99,181,3,0,137,4,36,232,205,99,1,0,137,194,141,139,164,204,255,255,141,131,123,88,4,0,139,0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137, 4,36,232,104,92,1,0,141,131,87,159,3,0,137,4,36,232,111,99,1,0,137,194,141,139,208,201,255,255,141,131,123,88,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,42,92,1,0,141,131,77,226,3,0,137,4,36,232,49,99,1, 0,137,194,141,139,80,202,255,255,141,131,123,88,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,236,91,1,0,141,131,81,226,3,0,137,4,36,232,243,98,1,0,137,194,141,139,23,202,255,255,141,131,123,88,4,0,139,0,199, 68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,174,91,1,0,141,131,86,226,3,0,137,4,36,232,181,98,1,0,137,194,141,139,151,202,255,255,141,131,123,88,4,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,120,91, 1,0,141,131,95,226,3,0,137,4,36,232,127,98,1,0,137,194,141,139,223,202,255,255,141,131,123,88,4,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,66,91,1,0,141,131,103,226,3,0,137,4,36,232,73,98,1,0,137,194,141,139,10,203,255,255,141, 131,123,88,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,4,91,1,0,141,131,113,226,3,0,137,4,36,232,11,98,1,0,137,194,141,139,106,203,255,255,141,131,123,88,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0, 137,84,36,8,137,76,36,4,137,4,36,232,198,90,1,0,141,131,124,226,3,0,137,4,36,232,205,97,1,0,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,129,86,1,0,137,194,141,131,131,88,4,0,137, 16,141,147,84,200,255,255,141,131,131,88,4,0,139,0,137,84,36,4,137,4,36,232,244,93,1,0,141,147,106,200,255,255,141,131,131,88,4,0,139,0,137,84,36,4,137,4,36,232,252,93,1,0,141,147,135,200,255,255,141,131,131,88,4,0,139,0,137,84,36,4,137,4,36,232,243, 93,1,0,141,147,164,200,255,255,141,131,131,88,4,0,139,0,137,84,36,4,137,4,36,232,234,93,1,0,141,147,207,200,255,255,141,131,131,88,4,0,139,0,137,84,36,4,137,4,36,232,225,93,1,0,141,179,67,231,255,255,141,131,138,226,3,0,137,4,36,232,253,96,1,0,199,68, 36,20,0,0,0,0,199,68,36,16,11,0,0,0,199,68,36,12,112,0,0,0,137,116,36,8,199,68,36,4,0,0,0,0,137,4,36,232,181,85,1,0,137,194,141,131,127,88,4,0,137,16,141,147,188,210,255,255,141,131,127,88,4,0,139,0,137,84,36,4,137,4,36,232,40,93,1,0,141,147,21,212,255, 255,141,131,127,88,4,0,139,0,137,84,36,4,137,4,36,232,48,93,1,0,141,147,230,212,255,255,141,131,127,88,4,0,139,0,137,84,36,4,137,4,36,232,39,93,1,0,141,147,40,213,255,255,141,131,127,88,4,0,139,0,137,84,36,4,137,4,36,232,30,93,1,0,141,131,87,159,3,0, 137,4,36,232,81,96,1,0,137,194,141,139,6,210,255,255,141,131,127,88,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,12,89,1,0,141,131,99,181,3,0,137,4,36,232,19,96,1,0,137,194,141,139,246,217,255,255,141,131, 127,88,4,0,139,0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,174,88,1,0,141,131,144,226,3,0,137,4,36,232,181,95,1,0,137,194,141,139, 82,219,255,255,141,131,127,88,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,112,88,1,0,141,131,127,88,4,0,139,16,141,131,167,51,4,0,137,68,36,4,137,20,36,232,76,92,1,0,141,131,127,88,4,0,139,16,141,131,140, 231,255,255,137,68,36,4,137,20,36,232,214,93,1,0,131,196,48,91,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,12,137,4,36,232,84,65,253,255,133,192,15,132,196,0,0,0,139,69,12,137,4,36,232,140,244,253,255,137,69,244,139,69,8,243,15,16,136,84, 4,0,0,141,131,95,26,4,0,243,15,16,0,15,46,200,117,4,122,2,235,14,139,69,8,139,128,40,4,0,0,137,69,224,235,12,139,69,8,139,128,44,4,0,0,137,69,224,139,69,224,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,199,220,3,0,137,4,36,232,219, 244,1,0,139,69,8,243,15,16,136,84,4,0,0,141,131,95,26,4,0,243,15,16,0,15,46,200,117,4,122,2,235,14,139,69,8,139,128,40,4,0,0,137,69,228,235,12,139,69,8,139,128,44,4,0,0,137,69,228,139,69,228,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141, 131,243,220,3,0,137,4,36,232,128,244,1,0,131,196,52,91,201,195,85,137,229,87,86,83,131,236,108,232,0,0,0,0,91,139,69,12,137,4,36,232,179,243,253,255,137,69,228,199,69,224,1,0,0,0,139,85,8,139,69,12,137,68,36,4,137,20,36,232,99,7,254,255,137,69,220,139, 85,8,139,69,12,137,68,36,4,137,20,36,232,83,8,254,255,137,69,216,139,69,8,139,64,40,131,248,29,126,7,199,69,224,2,0,0,0,139,69,8,139,64,40,131,248,59,126,7,199,69,224,3,0,0,0,139,69,8,139,136,44,4,0,0,139,69,8,139,64,36,137,198,3,117,216,139,69,8,139, 64,40,137,194,3,85,220,139,69,8,137,68,36,28,137,76,36,24,137,116,36,20,137,84,36,16,139,69,216,137,68,36,12,139,69,220,137,68,36,8,139,69,228,137,68,36,4,141,131,123,169,3,0,137,4,36,232,179,243,1,0,139,69,8,243,15,16,136,84,4,0,0,141,131,115,25,4,0, 243,15,16,0,15,46,200,117,4,122,2,235,14,139,69,8,139,128,40,4,0,0,137,69,192,235,12,139,69,8,139,128,44,4,0,0,137,69,192,139,69,8,139,64,36,3,69,216,137,193,43,77,224,139,69,8,139,64,40,3,69,220,137,198,43,117,224,139,69,224,3,69,216,141,120,1,139,69, 224,3,69,220,141,80,1,139,69,8,137,68,36,32,139,69,192,137,68,36,28,139,69,224,137,68,36,24,137,76,36,20,137,116,36,16,137,124,36,12,137,84,36,8,139,69,228,137,68,36,4,141,131,51,220,3,0,137,4,36,232,19,243,1,0,139,69,8,243,15,16,136,84,4,0,0,141,131, 115,25,4,0,243,15,16,0,15,46,200,117,4,122,2,235,14,139,69,8,139,128,40,4,0,0,137,69,196,235,12,139,69,8,139,128,44,4,0,0,137,69,196,139,69,224,139,77,216,1,193,139,69,8,139,64,40,3,69,220,137,198,43,117,224,139,69,8,139,64,36,3,69,216,43,69,224,141, 120,255,139,69,224,3,69,220,141,80,1,139,69,8,137,68,36,32,139,69,196,137,68,36,28,139,69,224,137,68,36,24,137,76,36,20,137,116,36,16,137,124,36,12,137,84,36,8,139,69,228,137,68,36,4,141,131,119,220,3,0,137,4,36,232,115,242,1,0,139,69,8,139,128,48,4, 0,0,137,69,200,139,69,8,139,128,32,4,0,0,137,69,204,139,69,8,131,192,52,137,69,208,139,69,8,139,128,60,4,0,0,139,16,141,131,155,194,3,0,137,68,36,4,137,20,36,232,94,31,4,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,212,235,9,141,131,191,163, 3,0,137,69,212,139,69,8,139,64,48,137,194,3,85,216,139,69,8,139,64,44,137,193,3,77,220,139,69,8,137,68,36,36,139,69,200,137,68,36,32,141,131,43,39,4,0,139,0,137,68,36,28,139,69,204,137,68,36,24,139,69,208,137,68,36,20,139,69,212,137,68,36,16,137,84,36, 12,137,76,36,8,139,69,228,137,68,36,4,141,131,251,169,3,0,137,4,36,232,182,241,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,84,139,69,8,139,64,36,137,194,3,85,216,139,77,220,131,193,7,139,69,8,139,64,36,3,69,216,141,112,255,199,68,36,28,0,0, 0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,139,69,220,137,68,36,8,139,69,228,137,68,36,4,141,131,123,170,3,0,137,4,36,232,80,241,1,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,85,216,66,139,77,220,131,193,7,199,68, 36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,216,137,68,36,12,139,69,220,137,68,36,8,139,69,228,137,68,36,4,141,131,191,170,3,0,137,4,36,232,252,240,1,0,131,196,108,91,94,95,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,139, 69,12,137,4,36,232,46,240,253,255,137,69,244,199,69,240,1,0,0,0,139,85,8,139,69,12,137,68,36,4,137,20,36,232,222,3,254,255,137,69,236,139,85,8,139,69,12,137,68,36,4,137,20,36,232,206,4,254,255,137,69,232,139,69,8,139,64,40,131,248,29,126,7,199,69,240, 2,0,0,0,139,69,8,139,64,40,131,248,59,126,7,199,69,240,3,0,0,0,139,69,8,139,64,36,137,194,3,85,232,139,69,8,139,64,40,3,69,236,137,84,36,24,137,68,36,20,139,69,232,137,68,36,16,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131, 126,167,3,0,137,4,36,232,61,240,1,0,139,69,240,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,54,217,3,0,137,4,36,232,26,240,1,0,139,69,8,139,64,36,3,69,232,137,198,43,117,240,139,69,8,139,64,40,3,69,236,137,194,43,85,240,139,69,240, 3,69,232,141,72,1,139,69,240,3,69,236,64,137,116,36,24,137,84,36,20,137,76,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,94,217,3,0,137,4,36,232,194,239,1,0,139,69,240,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4, 141,131,130,217,3,0,137,4,36,232,159,239,1,0,139,69,240,139,117,232,1,198,139,69,8,139,64,40,3,69,236,137,194,43,85,240,139,69,8,139,64,36,3,69,232,43,69,240,141,72,255,139,69,240,3,69,236,64,137,116,36,24,137,84,36,20,137,76,36,16,137,68,36,12,139,69, 8,137,68,36,8,139,69,244,137,68,36,4,141,131,170,217,3,0,137,4,36,232,71,239,1,0,139,69,8,139,64,48,137,194,3,85,232,139,69,8,139,64,44,3,69,236,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,150,160,3,0,137,4,36,232,15, 239,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,82,139,69,8,139,64,36,137,194,3,85,232,139,77,236,131,193,7,139,69,8,139,64,36,3,69,232,72,137,84,36,28,137,76,36,24,137,68,36,20,139,69,236,137,68,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68, 36,8,139,69,244,137,68,36,4,141,131,198,167,3,0,137,4,36,232,171,238,1,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,69,232,64,139,85,236,131,194,7,137,68,36,28,137,84,36,24,139,69,232,137,68,36,20,139,69,236,137,68,36,16,199,68,36,12,0,0, 0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,238,167,3,0,137,4,36,232,87,238,1,0,131,196,48,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,139,237,253,255,137,69,244,139,69,8,137,68,36,8,139,69,244,137,68,36,4, 141,131,111,165,3,0,137,4,36,232,25,238,1,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,43,215,3,0,137,4,36,232,253,237,1,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,65,215,3,0,137,4,36,232,225,237,1,0,139,69,8,137,68,36,8,139,69,244, 137,68,36,4,141,131,203,185,3,0,137,4,36,232,197,237,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,159,165,3,0,137,4,36,232,143,237,1,0,139,69,8,139,128,28,4,0,0,131, 224,64,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,229,185,3,0,137,4,36,232,91,237,1,0,131,196,36,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,12,137,4,36,232,144,236,253,255,137,69,244,139,69, 8,139,128,60,4,0,0,139,16,141,131,120,187,3,0,137,68,36,4,137,20,36,232,70,26,4,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,216,235,9,141,131,156,156,3,0,137,69,216,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,8,139,128,48,4, 0,0,137,69,220,235,7,199,69,220,255,0,0,0,139,69,8,139,144,32,4,0,0,139,77,8,131,193,52,139,69,216,137,68,36,28,139,69,220,137,68,36,24,141,131,8,32,4,0,139,0,137,68,36,20,137,84,36,16,137,76,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131, 192,164,3,0,137,4,36,232,140,236,1,0,139,69,8,139,128,44,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,16,165,3,0,137,4,36,232,99,236,1,0,139,69,8,243,15,16,136,84,4,0,0,141,131,80,18,4,0,243,15,16,0,15,46,200,117,4,122,2,235, 14,139,69,8,139,128,40,4,0,0,137,69,224,235,12,139,69,8,139,128,44,4,0,0,137,69,224,139,69,224,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,184,212,3,0,137,4,36,232,8,236,1,0,139,69,8,243,15,16,136,84,4,0,0,141,131,80,18,4,0,243,15, 16,0,15,46,200,117,4,122,2,235,14,139,69,8,139,128,40,4,0,0,137,69,228,235,12,139,69,8,139,128,44,4,0,0,137,69,228,139,69,228,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,228,212,3,0,137,4,36,232,173,235,1,0,131,196,68,91,201,195, 85,137,229,86,83,131,236,48,232,0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20,36,232,166,254,253,255,137,69,244,139,85,8,139,69,12,137,68,36,4,137,20,36,232,150,255,253,255,137,69,240,139,69,12,137,4,36,232,183,234,253,255,137,69,236,139,69,16,131, 224,1,132,192,116,102,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,84,139,69,8,139,64,36,137,194,3,85,240,139,77,244,131,193,7,139,69,8,139,64,36,3,69,240,141,112,255,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116, 36,12,139,69,244,137,68,36,8,139,69,236,137,68,36,4,141,131,141,163,3,0,137,4,36,232,241,234,1,0,139,69,16,131,224,1,133,192,117,54,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,236,137,68,36,4, 141,131,245,162,3,0,137,4,36,232,177,234,1,0,139,69,16,131,224,2,133,192,116,84,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,85,240,66,139,77,244,131,193,7,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,240,137, 68,36,12,139,69,244,137,68,36,8,139,69,236,137,68,36,4,141,131,197,163,3,0,137,4,36,232,83,234,1,0,139,69,16,131,224,2,133,192,117,52,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,236,137,68,36,4, 141,131,59,183,3,0,137,4,36,232,21,234,1,0,131,196,48,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,73,233,253,255,137,69,244,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,116,74,199,68,36,12,255,0,0,0,139,69,8,137,68,36, 8,139,69,244,137,68,36,4,141,131,97,162,3,0,137,4,36,232,189,233,1,0,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,193,162,3,0,137,4,36,232,153,233,1,0,235,77,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36, 4,141,131,97,162,3,0,137,4,36,232,115,233,1,0,139,69,8,139,128,48,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,193,162,3,0,137,4,36,232,74,233,1,0,131,196,36,91,201,195,85,137,229,131,236,24,131,125,16,0,117,23,139,69,12,137, 68,36,4,139,69,8,137,4,36,232,194,243,255,255,233,167,0,0,0,131,125,16,1,117,23,139,69,12,137,68,36,4,139,69,8,137,4,36,232,21,248,255,255,233,138,0,0,0,131,125,16,2,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,114,244,255,255,235,112,131,125,16, 3,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,196,254,255,255,235,86,131,125,16,4,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,104,250,255,255,235,60,131,125,16,5,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,73,251,255,255,235,34,131, 125,16,5,126,28,139,69,16,131,232,6,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,211,252,255,255,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,85,244,139,69,12,137,68,36,4,137,20,36,232,121,251,253,255,137,194,139,69,16,137,16,139, 85,244,139,69,12,137,68,36,4,137,20,36,232,101,252,253,255,137,194,139,69,20,137,16,139,69,16,139,16,139,69,244,139,64,40,1,194,139,69,24,137,16,139,69,20,139,16,139,69,244,139,64,36,1,194,139,69,28,137,16,201,195,85,137,229,87,86,83,129,236,220,0,0, 0,232,0,0,0,0,91,139,69,8,137,69,228,139,85,228,141,69,216,137,68,36,8,141,69,204,137,68,36,4,137,20,36,232,89,155,252,255,139,69,228,243,15,16,128,88,4,0,0,243,15,90,192,242,15,17,69,128,139,69,228,243,15,16,128,84,4,0,0,243,15,90,192,242,15,17,69,136, 139,117,224,139,125,220,139,69,216,137,69,144,139,69,228,139,128,32,4,0,0,137,69,148,139,69,228,5,28,4,0,0,137,4,36,232,140,165,252,255,137,69,152,139,69,228,139,64,48,137,69,156,139,69,228,139,64,44,137,69,160,139,85,212,137,85,164,139,69,208,137,69, 168,139,85,204,137,85,172,139,69,228,5,36,4,0,0,137,4,36,232,78,164,252,255,137,69,176,139,69,228,139,64,40,137,69,180,141,131,202,226,3,0,137,4,36,232,40,81,1,0,137,69,184,139,69,228,15,183,64,22,152,137,69,188,139,69,228,15,183,64,20,152,137,69,192, 141,131,42,177,3,0,137,4,36,232,1,81,1,0,137,69,196,141,131,174,162,3,0,137,4,36,232,240,80,1,0,242,15,16,69,128,242,15,17,68,36,84,242,15,16,69,136,242,15,17,68,36,76,137,116,36,72,137,124,36,68,139,85,144,137,84,36,64,139,85,148,137,84,36,60,139,85, 152,137,84,36,56,139,85,156,137,84,36,52,139,85,160,137,84,36,48,139,85,164,137,84,36,44,139,85,168,137,84,36,40,139,85,172,137,84,36,36,139,85,176,137,84,36,32,139,85,180,137,84,36,28,139,85,184,137,84,36,24,139,85,188,137,84,36,20,139,85,192,137,84, 36,16,139,85,196,137,84,36,12,137,68,36,8,141,131,22,209,3,0,137,68,36,4,139,69,12,137,4,36,232,250,229,0,0,141,131,6,161,3,0,137,68,36,4,139,69,12,137,4,36,232,229,229,0,0,129,196,220,0,0,0,91,94,95,201,195,85,137,229,87,86,83,129,236,220,3,0,0,232, 0,0,0,0,91,139,69,8,137,133,164,252,255,255,139,69,12,137,133,160,252,255,255,141,131,235,24,4,0,139,0,139,16,137,85,228,49,210,139,133,164,252,255,255,137,133,192,252,255,255,139,149,192,252,255,255,141,133,180,252,255,255,137,68,36,4,137,20,36,232, 204,153,252,255,139,133,192,252,255,255,139,128,48,4,0,0,137,194,129,226,255,255,255,0,139,133,192,252,255,255,139,128,40,4,0,0,137,193,129,225,255,255,255,0,139,133,192,252,255,255,139,128,44,4,0,0,137,198,129,230,255,255,255,0,139,133,192,252,255,255, 139,184,32,4,0,0,139,133,192,252,255,255,139,128,28,4,0,0,131,224,63,15,182,192,137,133,128,252,255,255,139,133,192,252,255,255,139,64,48,137,133,132,252,255,255,139,133,192,252,255,255,139,64,44,137,133,136,252,255,255,139,133,188,252,255,255,139,0, 137,133,140,252,255,255,139,133,184,252,255,255,139,0,137,133,144,252,255,255,139,133,180,252,255,255,139,0,137,133,148,252,255,255,139,133,192,252,255,255,139,128,36,4,0,0,131,224,1,15,182,192,137,133,152,252,255,255,139,133,192,252,255,255,243,15,16, 128,88,4,0,0,243,15,90,200,139,133,192,252,255,255,139,64,40,137,133,156,252,255,255,137,84,36,88,137,76,36,84,137,116,36,80,137,124,36,76,139,133,128,252,255,255,137,68,36,72,139,149,132,252,255,255,137,84,36,68,139,133,136,252,255,255,137,68,36,64, 139,149,140,252,255,255,137,84,36,60,139,133,144,252,255,255,137,68,36,56,139,149,148,252,255,255,137,84,36,52,199,68,36,48,255,255,255,255,199,68,36,44,255,255,255,255,139,133,152,252,255,255,137,68,36,40,141,131,103,11,4,0,242,15,16,0,242,15,17,68, 36,32,242,15,17,76,36,24,199,68,36,20,8,0,0,0,139,149,156,252,255,255,137,84,36,16,141,131,103,207,3,0,137,68,36,12,199,68,36,8,32,3,0,0,199,68,36,4,0,0,0,0,141,133,196,252,255,255,137,4,36,232,94,15,4,0,139,149,192,252,255,255,141,133,196,252,255,255, 137,68,36,8,139,133,192,252,255,255,137,68,36,4,137,20,36,232,145,200,2,0,141,131,235,24,4,0,139,0,139,85,228,51,16,116,5,232,46,15,4,0,129,196,220,3,0,0,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16,136,84,4,0,0,141,131, 29,9,4,0,243,15,16,0,15,46,200,122,2,116,2,235,18,139,69,8,243,15,16,128,88,4,0,0,243,15,17,69,244,235,15,141,131,29,9,4,0,243,15,16,0,243,15,17,69,244,139,69,8,243,15,16,69,244,243,15,17,128,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8, 0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,144,84,4,0,0,139,69,8,139,64,12,137,84,36,4,137,4,36,232,43,119,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,49,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,33,139,69,8,139,144,84, 4,0,0,139,69,8,139,128,52,4,0,0,139,64,4,137,84,36,4,137,4,36,232,161,138,1,0,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,142,207,0,0,137,69,244,139,69,20,137,68,36,8, 139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,22,207,0,0,217,93,240,141,131,61,8,4,0,243,15,16,0,15,46,69,240,122,2,116,2,235,11,141,131,65,8,4,0,139,0,137,69,240,139,85,8,139,69,240,137,130,88,4,0,0,139,69,8,243,15,16,136,84,4,0,0,141,131,61,8,4,0,243, 15,16,0,15,46,200,117,4,122,2,235,18,139,69,8,139,144,88,4,0,0,139,69,8,137,144,84,4,0,0,139,85,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,69,224,137,68,36,4,137,20,36,232,167,150,252,255,137,69,236,139,69,244,137,4,36,232,125,129,252,255,137, 194,139,69,8,137,80,40,139,69,8,139,80,40,139,69,8,137,80,36,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,5,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,72,32,139,85,236,131,194,6,139,69,8,139,64,28,137,84,36,8,137,68,36,4,139,69,8,137, 4,36,255,209,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,8,139,64,28,137,84,36,4,137,4,36,232,7,49,253,255,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,174,253,255, 255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,131,125,36,0,116,67,243,15,42,69,28,243,15,42,77,24,243,15,42,85,20,243,15,42,93,16,139,85,8,243,15,17,68,36,20,141,131,201,6,4,0,139,0,137,68,36,16,243,15,17,76,36,12,243,15,17,84,36,8,243,15,17,92, 36,4,137,20,36,232,151,255,255,255,184,1,0,0,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,85,8,139,69,12,137,130,84,4,0,0,141,131,104,6,4,0,243,15,16,0,15,46,69,12,117,4,122,2,235,12,139,85,8,139,69,12,137,130,88,4,0,0,139,69,8, 139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,131,196,20,91,201,195,85,137,229,131,236,24,139,69,12,137,68,36,4,139,69,8,137,4,36,232,137,255,255,255,139,69,8,139,128,28,4,0,0,37,0,0,0,4,133,192,116,94,139,69, 8,139,144,84,4,0,0,139,69,8,139,64,12,137,84,36,4,137,4,36,232,105,116,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,49,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,33,139,69,8,139,144,84,4,0,0,139,69,8,139,128,52,4,0,0,139,64,4,137,84,36, 4,137,4,36,232,223,135,1,0,201,195,85,137,229,131,236,24,139,69,12,137,68,36,4,139,69,8,137,4,36,232,255,254,255,255,139,69,8,139,144,84,4,0,0,139,69,8,139,64,12,137,84,36,4,137,4,36,232,241,115,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116, 49,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,33,139,69,8,139,144,84,4,0,0,139,69,8,139,128,52,4,0,0,139,64,4,137,84,36,4,137,4,36,232,103,135,1,0,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,219,18,4,0,139,0,139,0,133,192,117,40,139,69, 8,139,128,36,4,0,0,131,224,1,133,192,116,24,139,69,8,139,128,84,4,0,0,137,68,36,4,139,69,8,137,4,36,232,69,255,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,22,204,0,0,137,4,36,232, 166,126,252,255,137,194,139,69,8,137,80,40,139,69,8,139,80,40,139,69,8,137,80,36,139,69,8,137,68,36,4,139,69,8,137,4,36,232,43,143,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137, 84,36,4,139,69,8,137,4,36,232,75,143,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,206,143,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20, 137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,52,144,252,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,26,136,252,255,201,195,85,137,229,131,236,24,139, 69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,244,136,252,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,117,138,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16, 139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,15,140,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,2,139,252,255,201, 195,85,137,229,83,131,236,4,232,0,0,0,0,91,141,131,32,3,4,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,139,77,8,15,182,192,137,194,131,226,1,139,129,36,4,0,0,131,224,254,9,208,137,129,36,4,0,0,131,196,4,91,201,195,85,137,229,131,236,8,232,0, 0,0,0,89,141,129,220,2,4,0,243,15,16,0,15,46,69,12,117,4,122,2,235,12,139,85,8,139,69,12,137,130,88,4,0,0,201,195,85,137,229,83,129,236,228,0,0,0,232,0,0,0,0,91,139,69,8,137,133,52,255,255,255,139,69,16,137,133,48,255,255,255,141,131,78,16,4,0,139,0, 139,16,137,85,244,49,210,141,131,2,59,4,0,139,0,137,4,36,232,141,124,1,0,137,133,96,255,255,255,199,133,56,255,255,255,0,0,252,255,199,133,60,255,255,255,255,255,255,255,199,133,64,255,255,255,255,255,255,255,199,133,92,255,255,255,15,0,0,0,199,133,88, 255,255,255,0,0,0,0,199,133,84,255,255,255,17,0,0,0,199,133,80,255,255,255,7,0,0,0,199,133,76,255,255,255,10,0,0,0,141,131,170,2,4,0,139,0,137,133,72,255,255,255,141,131,174,2,4,0,139,0,137,133,68,255,255,255,139,133,96,255,255,255,5,36,4,0,0,199,68, 36,4,0,0,0,0,137,4,36,232,237,152,252,255,139,133,96,255,255,255,5,28,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,233,153,252,255,131,125,12,13,116,10,131,125,12,14,15,133,213,2,0,0,139,133,48,255,255,255,139,0,131,248,1,15,133,196,2,0,0,139,133,48,255,255, 255,131,192,8,139,0,131,248,1,15,133,176,2,0,0,139,133,48,255,255,255,131,192,16,139,0,131,248,2,116,20,139,133,48,255,255,255,131,192,16,139,0,131,248,1,15,133,140,2,0,0,139,133,48,255,255,255,131,192,24,139,0,131,248,2,116,20,139,133,48,255,255,255, 131,192,24,139,0,131,248,1,15,133,104,2,0,0,139,133,48,255,255,255,131,192,32,139,0,131,248,2,116,20,139,133,48,255,255,255,131,192,32,139,0,131,248,1,15,133,68,2,0,0,139,133,48,255,255,255,131,192,40,139,0,131,248,1,15,133,48,2,0,0,139,133,48,255,255, 255,131,192,48,139,0,131,248,1,15,133,28,2,0,0,139,133,48,255,255,255,131,192,56,139,0,131,248,1,15,133,8,2,0,0,139,133,48,255,255,255,131,192,64,139,0,131,248,1,15,133,244,1,0,0,139,133,48,255,255,255,131,192,72,139,0,131,248,1,15,133,224,1,0,0,139, 133,48,255,255,255,131,192,80,139,0,131,248,1,15,133,204,1,0,0,139,133,48,255,255,255,131,192,88,139,0,131,248,1,15,133,184,1,0,0,139,133,48,255,255,255,131,192,96,139,0,131,248,1,15,133,164,1,0,0,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36, 4,199,4,36,0,0,0,0,232,222,199,0,0,137,133,92,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,1,0,0,0,232,187,199,0,0,139,149,96,255,255,255,129,194,36,4,0,0,137,68,36,4,137,20,36,232,57,151,252,255,139,149,96,255,255,255, 139,133,48,255,255,255,137,68,36,8,199,68,36,4,2,0,0,0,137,20,36,232,153,125,252,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,5,0,0,0,232,102,199,0,0,137,133,84,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68, 36,4,199,4,36,6,0,0,0,232,67,199,0,0,137,133,80,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,7,0,0,0,232,32,199,0,0,139,149,96,255,255,255,129,194,28,4,0,0,137,68,36,4,137,20,36,232,181,151,252,255,139,133,48,255,255, 255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,8,0,0,0,232,235,198,0,0,137,133,76,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,9,0,0,0,232,200,198,0,0,137,133,56,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12, 137,68,36,4,199,4,36,10,0,0,0,232,165,198,0,0,137,133,60,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,11,0,0,0,232,130,198,0,0,137,133,64,255,255,255,139,133,48,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,12, 0,0,0,232,4,198,0,0,217,157,72,255,255,255,235,30,139,133,96,255,255,255,199,68,36,8,0,0,0,0,199,68,36,4,2,0,0,0,137,4,36,232,79,124,252,255,131,125,12,14,117,51,139,133,48,255,255,255,131,192,104,139,0,131,248,1,117,35,139,133,48,255,255,255,137,68, 36,8,139,69,12,137,68,36,4,199,4,36,13,0,0,0,232,171,197,0,0,217,157,68,255,255,255,141,147,95,244,255,255,139,133,96,255,255,255,137,80,32,139,149,96,255,255,255,139,130,28,4,0,0,12,128,137,130,28,4,0,0,139,149,96,255,255,255,139,130,28,4,0,0,131,200, 64,137,130,28,4,0,0,232,239,6,253,255,137,194,139,133,96,255,255,255,137,80,28,139,133,96,255,255,255,139,128,52,4,0,0,139,16,141,131,210,171,3,0,137,68,36,4,137,20,36,232,78,6,4,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,128,226,127,137, 144,28,4,0,0,139,133,96,255,255,255,139,128,56,4,0,0,139,16,141,131,210,171,3,0,137,68,36,4,137,20,36,232,21,6,4,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,131,226,191,137,144,28,4,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63, 131,248,1,117,83,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,210,151,3,0,137,68,36,4,137,20,36,232,158,3,4,0,233,232,0,0,0,139,149,96,255,255,255,131,194,52,141,131,210,151,3,0,137, 68,36,4,137,20,36,232,154,2,0,0,233,200,0,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,2,117,80,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,18,214,3,0,137,68,36,4, 137,20,36,232,55,3,4,0,233,129,0,0,0,139,149,96,255,255,255,131,194,52,141,131,18,214,3,0,137,68,36,4,137,20,36,232,51,2,0,0,235,100,139,149,96,255,255,255,139,130,28,4,0,0,131,224,192,137,130,28,4,0,0,184,255,255,255,255,131,248,255,116,40,184,255,255, 255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,94,16,4,0,139,0,137,68,36,4,137,20,36,232,208,2,4,0,235,29,139,133,96,255,255,255,131,192,52,141,147,94,16,4,0,139,18,137,84,36,4,137,4,36,232,205,1,0,0,141,131,170,2,4,0,243,15,16,0,15,46, 133,68,255,255,255,117,4,122,2,235,18,243,15,16,133,68,255,255,255,243,15,17,133,40,255,255,255,235,18,141,131,174,2,4,0,243,15,16,0,243,15,17,133,40,255,255,255,139,133,96,255,255,255,243,15,16,133,40,255,255,255,243,15,17,128,88,4,0,0,139,133,96,255, 255,255,139,128,36,4,0,0,131,224,1,133,192,116,83,141,131,170,2,4,0,243,15,16,0,15,46,133,72,255,255,255,117,4,122,2,235,18,243,15,16,133,68,255,255,255,243,15,17,133,44,255,255,255,235,18,141,131,170,2,4,0,243,15,16,0,243,15,17,133,44,255,255,255,139, 133,96,255,255,255,243,15,16,133,44,255,255,255,243,15,17,128,84,4,0,0,235,20,139,133,96,255,255,255,141,147,170,2,4,0,139,18,137,144,84,4,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,64,133,192,116,30,139,133,96,255,255,255,139,128,56,4,0,0,139, 149,96,255,255,255,137,68,36,4,137,20,36,232,69,121,1,0,139,149,96,255,255,255,139,133,84,255,255,255,137,66,44,139,149,96,255,255,255,139,133,80,255,255,255,137,66,48,131,189,76,255,255,255,3,127,10,199,133,76,255,255,255,4,0,0,0,139,149,96,255,255, 255,139,133,76,255,255,255,137,130,32,4,0,0,139,133,92,255,255,255,137,4,36,232,98,117,252,255,137,194,139,133,96,255,255,255,137,80,40,139,133,96,255,255,255,139,80,40,139,133,96,255,255,255,137,80,36,139,149,96,255,255,255,141,133,56,255,255,255,137, 68,36,4,137,20,36,232,221,124,252,255,139,133,96,255,255,255,137,4,36,232,54,119,252,255,139,149,96,255,255,255,141,131,222,15,4,0,139,0,137,68,36,4,137,20,36,232,228,103,1,0,139,133,96,255,255,255,141,147,78,16,4,0,139,18,139,77,244,51,10,116,5,232, 225,0,4,0,129,196,228,0,0,0,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,195,0,4,0,201,195,85,137,229,131,236,24,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116,24,139,69,8,139,128,56,4, 0,0,139,85,8,137,68,36,4,137,20,36,232,3,121,1,0,139,69,8,137,4,36,232,169,188,2,0,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,141,179,183,255,255,255,141,187,185,247,255,255,141,131,50,208,3,0,137,4,36,232,54,63,1,0,199,68,36,24,0,0,0,0,199, 68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,92,4,0,0,137,116,36,8,137,124,36,4,137,4,36,232,234,51,1,0,137,194,141,131,202,50,4,0,137,16,141,131,144,146,3,0,137,4,36,232,238,62,1,0,141,147,185,247,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0, 0,0,137,68,36,4,137,20,36,232,216,54,1,0,141,147,73,241,255,255,141,131,202,50,4,0,139,0,137,84,36,4,137,4,36,232,45,59,1,0,141,147,93,244,255,255,141,131,202,50,4,0,139,0,137,84,36,4,137,4,36,232,53,59,1,0,141,131,166,143,3,0,137,4,36,232,138,62,1,0, 137,194,141,139,138,243,255,255,141,131,202,50,4,0,139,0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,37,55,1,0,141,131,122,170,3,0, 137,4,36,232,44,62,1,0,137,194,141,139,41,242,255,255,141,131,202,50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,231,54,1,0,141,131,206,145,3,0,137,4,36,232,238,61,1,0,137,194,141,139,95,245,255,255,141,131, 202,50,4,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,177,54,1,0,141,131,154,121,3,0,137,4,36,232,184,61,1,0,137,194,141,139,254,243,255,255,141,131,202,50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36, 4,137,4,36,232,115,54,1,0,141,131,130,170,3,0,137,4,36,232,122,61,1,0,137,194,141,139,168,245,255,255,141,131,202,50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,53,54,1,0,141,131,194,159,3,0,137,4,36,232, 60,61,1,0,137,194,141,139,248,245,255,255,141,131,202,50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,247,53,1,0,141,131,200,159,3,0,137,4,36,232,254,60,1,0,137,194,141,139,39,246,255,255,141,131,202,50,4, 0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,185,53,1,0,141,131,204,159,3,0,137,4,36,232,192,60,1,0,137,194,141,139,86,246,255,255,141,131,202,50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36, 8,137,76,36,4,137,4,36,232,123,53,1,0,141,131,210,159,3,0,137,4,36,232,130,60,1,0,137,194,141,139,133,246,255,255,141,131,202,50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,61,53,1,0,141,131,138,170,3,0,137, 4,36,232,68,60,1,0,137,194,141,139,166,246,255,255,141,131,202,50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,255,52,1,0,141,131,146,170,3,0,137,4,36,232,6,60,1,0,137,194,141,139,199,246,255,255,141,131,202, 50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,193,52,1,0,141,131,186,143,3,0,137,4,36,232,200,59,1,0,137,194,141,139,23,247,255,255,141,131,202,50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137, 84,36,8,137,76,36,4,137,4,36,232,131,52,1,0,141,131,154,170,3,0,137,4,36,232,138,59,1,0,137,194,141,139,232,246,255,255,141,131,202,50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,69,52,1,0,141,131,218,159, 3,0,137,4,36,232,76,59,1,0,137,194,141,139,70,247,255,255,141,131,202,50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,7,52,1,0,141,131,184,191,3,0,137,4,36,232,14,59,1,0,137,194,141,139,139,247,255,255,141, 131,202,50,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,201,51,1,0,141,131,22,9,4,0,139,0,141,147,243,236,255,255,137,16,141,131,22,9,4,0,139,0,141,147,78,8,4,0,139,18,137,80,4,141,131,22,9,4,0,139,0,141,147, 58,8,4,0,139,18,137,80,8,141,131,22,9,4,0,139,0,199,64,12,0,0,0,0,141,131,22,9,4,0,139,0,141,147,74,8,4,0,139,18,137,80,16,141,131,22,9,4,0,139,0,141,147,62,8,4,0,139,18,137,80,20,141,131,22,9,4,0,139,0,141,147,157,243,255,255,137,80,24,141,131,202,50, 4,0,139,16,141,131,22,9,4,0,139,0,137,68,36,4,137,20,36,232,39,55,1,0,141,131,144,146,3,0,137,4,36,232,56,58,1,0,137,194,141,131,202,50,4,0,139,0,137,84,36,4,137,4,36,232,68,55,1,0,141,131,202,50,4,0,139,16,141,131,87,237,255,255,137,68,36,4,137,20,36, 232,110,56,1,0,141,131,202,50,4,0,139,16,141,131,26,239,255,255,137,68,36,4,137,20,36,232,115,56,1,0,131,196,60,91,94,95,201,195,85,137,229,131,236,40,199,4,36,12,0,0,0,232,96,83,1,0,137,69,244,131,125,8,0,116,20,139,69,244,199,64,4,1,0,0,0,139,85,244, 139,69,8,137,2,235,18,139,69,244,199,64,4,2,0,0,0,139,85,244,139,69,12,137,2,139,69,244,199,64,8,0,0,0,0,139,69,244,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,8,141,80,255,139,69,8,137,80,8,139,69,8,139,64,8,137,69,244,131,125,244, 0,117,31,139,69,8,139,64,4,133,192,117,21,199,68,36,4,12,0,0,0,139,69,8,137,4,36,232,192,84,1,0,235,20,131,125,244,0,121,14,141,131,251,185,3,0,137,4,36,232,21,56,2,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,199,64,4,0,0, 0,0,139,69,8,139,64,8,133,192,121,14,141,131,161,185,3,0,137,4,36,232,224,55,2,0,139,69,8,139,64,8,133,192,117,19,199,68,36,4,12,0,0,0,139,69,8,137,4,36,232,88,84,1,0,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8,139,64,8,137,69,244,131,125,244, 0,117,9,199,69,228,0,0,0,0,235,125,139,69,244,139,64,4,131,248,2,117,36,139,69,244,139,0,139,80,16,139,69,8,139,64,4,57,194,116,9,199,69,228,0,0,0,0,235,87,199,69,228,1,0,0,0,235,78,139,69,244,139,64,4,131,248,1,117,60,131,125,12,0,117,18,139,69,8,139, 0,133,192,117,9,199,69,228,0,0,0,0,235,43,139,69,244,139,0,139,80,36,139,69,8,139,64,4,57,194,116,9,199,69,228,0,0,0,0,235,16,199,69,228,1,0,0,0,235,7,199,69,228,0,0,0,0,139,69,228,201,195,85,137,229,131,236,40,139,69,8,139,64,8,137,69,244,139,69,244, 139,64,4,131,248,1,117,34,139,69,8,139,0,137,69,240,131,125,240,0,116,11,139,69,240,139,64,8,137,69,228,235,26,199,69,228,0,0,0,0,235,17,139,69,244,139,0,137,69,236,139,69,236,139,64,12,137,69,228,139,69,228,201,195,85,137,229,83,131,236,20,232,0,0,0, 0,91,139,77,12,139,85,8,139,2,137,1,139,66,4,137,65,4,139,66,8,137,65,8,139,69,12,139,64,8,133,192,116,15,139,69,12,139,80,8,139,66,8,64,137,66,8,235,14,141,131,106,184,3,0,137,4,36,232,129,54,2,0,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8, 139,64,8,137,69,244,131,125,244,0,116,21,139,69,244,137,4,36,232,232,253,255,255,139,69,8,199,64,8,0,0,0,0,201,195,85,137,229,131,236,40,139,69,8,139,64,8,137,69,244,131,125,244,0,116,11,139,69,244,137,4,36,232,188,253,255,255,139,69,12,139,64,32,137, 69,244,139,85,8,139,69,244,137,66,8,139,69,12,139,80,36,139,69,8,137,80,4,139,85,8,139,69,16,137,2,139,69,244,139,64,8,141,80,1,139,69,244,137,80,8,201,195,85,137,229,131,236,40,139,69,8,139,64,8,137,69,244,131,125,244,0,116,11,139,69,244,137,4,36,232, 101,253,255,255,139,69,12,139,64,32,137,69,244,139,85,8,139,69,244,137,66,8,139,69,12,139,80,16,139,69,8,137,80,4,139,85,8,139,69,16,137,2,139,69,244,139,64,8,141,80,1,139,69,244,137,80,8,201,195,85,137,229,131,236,8,139,69,8,199,64,8,0,0,0,0,139,69, 8,199,64,4,0,0,0,0,139,69,8,199,0,0,0,0,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,16,42,4,0,139,0,137,4,36,232,184,107,1,0,137,69,244,139,69,244,131,192,28,137,4,36,232,173,255,255,255,139,69,12,193,224,3,137,4,36,232,239,79,1,0,137,69, 240,139,85,244,139,69,240,137,66,40,139,69,12,137,69,236,139,85,244,139,69,236,137,66,44,235,65,139,85,244,141,131,92,0,4,0,139,0,137,68,36,4,137,20,36,232,51,94,1,0,137,194,139,69,240,137,80,4,139,69,16,131,69,16,8,137,4,36,232,41,183,0,0,137,4,36,232, 66,17,253,255,137,194,139,69,240,137,16,131,69,240,8,255,77,236,131,125,236,255,117,182,139,85,244,141,131,92,0,4,0,139,0,137,68,36,4,137,20,36,232,233,93,1,0,137,194,139,69,244,137,80,48,139,85,244,141,131,228,254,3,0,139,0,137,68,36,4,137,20,36,232, 202,93,1,0,137,194,139,69,244,137,80,52,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,41,88,1,0,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,97,254,3,0,139,0,139,0,137,68,36,4,139,69,12,137,4,36,232,80, 112,1,0,137,69,244,131,125,244,0,116,31,139,85,8,131,194,28,199,68,36,8,0,0,0,0,139,69,244,137,68,36,4,137,20,36,232,226,253,255,255,235,30,139,69,12,139,0,137,68,36,8,141,131,42,182,3,0,137,68,36,4,139,69,8,137,4,36,232,220,50,2,0,131,196,36,91,201, 195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,131,192,28,137,69,240,139,69,240,139,64,8,137,69,236,141,131,67,240,3,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,15,182,192,137,69,228,131,125,236,0,117,26,141,131,215,181,3,0,137,68,36, 4,139,69,8,137,4,36,232,128,50,2,0,233,125,1,0,0,139,69,236,139,64,4,131,248,1,116,26,141,131,247,181,3,0,137,68,36,4,139,69,8,137,4,36,232,91,50,2,0,233,88,1,0,0,139,69,236,139,0,137,69,232,139,69,232,139,80,36,139,69,240,139,64,4,57,194,116,26,141, 131,27,182,3,0,137,68,36,4,139,69,8,137,4,36,232,41,50,2,0,233,38,1,0,0,131,125,228,0,116,41,139,69,232,137,4,36,232,141,22,253,255,133,192,117,26,141,131,55,182,3,0,137,68,36,4,139,69,8,137,4,36,232,250,49,2,0,233,247,0,0,0,139,69,240,139,0,137,69,244, 131,125,244,0,117,11,139,69,232,139,64,28,137,69,244,235,20,139,69,244,139,64,4,137,69,244,235,9,139,69,244,139,64,4,137,69,244,131,125,244,0,116,47,139,69,244,139,16,141,131,123,254,3,0,139,0,139,0,57,194,117,222,131,125,228,0,116,22,139,69,244,137, 68,36,4,139,69,232,137,4,36,232,37,68,253,255,133,192,116,194,131,125,244,0,116,118,139,69,244,137,69,216,139,69,216,139,64,8,137,69,212,139,85,240,139,69,216,137,2,139,69,8,139,64,44,137,69,220,139,69,8,139,64,40,137,69,224,235,40,139,69,224,139,0,59, 69,212,117,26,139,69,8,131,192,28,139,85,224,139,82,4,137,68,36,4,137,20,36,232,187,92,1,0,235,64,131,69,224,8,255,77,220,131,125,220,255,117,207,139,69,8,131,192,28,139,85,8,139,82,48,137,68,36,4,137,20,36,232,148,92,1,0,235,25,139,69,240,137,4,36,232, 198,251,255,255,139,69,8,139,64,52,137,4,36,232,253,91,1,0,131,196,68,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,101,238,3,0,139,0,137,68,36,4,139,69,8,137,4,36,232,254,253,255,255,131,196,20,91,201,195,85,137,229,83,131,236,52,232,0, 0,0,0,91,139,69,8,131,192,28,199,68,36,4,1,0,0,0,137,4,36,232,35,250,255,255,133,192,117,26,141,131,107,180,3,0,137,68,36,4,139,69,8,137,4,36,232,146,48,2,0,233,168,0,0,0,139,69,8,139,64,36,137,69,220,139,69,220,139,64,4,131,248,1,117,10,139,69,220,139, 0,137,69,228,235,46,139,69,220,139,0,137,69,216,235,11,139,69,216,139,64,28,139,0,137,69,216,139,69,216,139,64,28,139,64,4,131,248,2,116,231,139,69,216,139,64,28,139,0,137,69,228,139,69,228,137,4,36,232,251,199,253,255,137,69,224,131,125,16,0,116,51, 139,69,20,139,0,131,248,2,117,41,139,85,20,131,194,8,139,77,16,73,139,69,20,139,64,4,137,84,36,12,137,76,36,8,137,68,36,4,139,69,224,137,4,36,232,129,55,1,0,235,21,141,131,134,180,3,0,137,68,36,4,139,69,8,137,4,36,232,229,47,2,0,131,196,52,91,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,131,192,28,199,68,36,4,1,0,0,0,137,4,36,232,52,249,255,255,133,192,117,23,141,131,124,179,3,0,137,68,36,4,139,69,8,137,4,36,232,163,47,2,0,235,110,139,69,8,131,192,28,137,4,36,232,171,249,255,255,137,69, 244,139,69,8,139,64,44,137,69,240,139,69,8,139,64,40,137,69,236,235,40,139,69,236,139,0,59,69,244,117,26,139,69,8,131,192,28,139,85,236,139,82,4,137,68,36,4,137,20,36,232,213,90,1,0,235,37,131,69,236,8,255,77,240,131,125,240,255,117,207,139,69,8,131, 192,28,139,85,8,139,82,48,137,68,36,4,137,20,36,232,174,90,1,0,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,131,192,28,137,4,36,232,211,249,255,255,139,69,8,131,192,28,137,68,36,4,139,69,12,137,4,36,232,110,249,255,255,139,69,8,137,4,36,232,26, 255,255,255,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,131,192,28,199,68,36,4,1,0,0,0,137,4,36,232,76,248,255,255,133,192,117,23,141,131,200,178,3,0,137,68,36,4,139,69,8,137,4,36,232,187,46,2,0,235,91,139,69,8,139,64,36,137,69,220,139,69, 220,139,64,4,131,248,1,116,23,141,131,232,178,3,0,137,68,36,4,139,69,8,137,4,36,232,144,46,2,0,235,48,139,69,220,139,0,137,69,228,139,85,8,131,194,28,199,68,36,8,0,0,0,0,139,69,228,137,68,36,4,137,20,36,232,79,249,255,255,139,69,8,137,4,36,232,127,254, 255,255,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,139,64,44,141,20,197,0,0,0,0,139,69,8,139,64,40,137,84,36,4,137,4,36,232,253,75,1,0,139,69,8,131,192,28,137,4,36,232,223,248,255,255,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141, 179,189,255,255,255,141,187,206,249,255,255,141,131,64,178,3,0,137,4,36,232,82,48,1,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,56,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,6,37,1,0,137,194,141,131,234,35,4,0,137, 16,141,131,72,178,3,0,137,4,36,232,10,48,1,0,137,194,141,139,205,250,255,255,141,131,234,35,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,197,40,1,0,141,131,81,178,3,0,137,4,36,232,204,47,1,0,137,194,141,139, 29,253,255,255,141,131,234,35,4,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,143,40,1,0,141,131,86,178,3,0,137,4,36,232,150,47,1,0,137,194,141,139,63,251,255,255,141,131,234,35,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0, 137,84,36,8,137,76,36,4,137,4,36,232,81,40,1,0,141,131,92,178,3,0,137,4,36,232,88,47,1,0,137,194,141,139,71,253,255,255,141,131,234,35,4,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,19,40,1,0,141,131,174,234, 3,0,137,4,36,232,26,47,1,0,137,194,141,139,30,255,255,255,141,131,234,35,4,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,221,39,1,0,141,147,232,254,255,255,141,131,234,35,4,0,139,0,137,84,36,4,137,4,36,232,100,43,1,0,141,147,54,254, 255,255,141,131,234,35,4,0,139,0,137,84,36,4,137,4,36,232,57,43,1,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,43,34,4,0,139,0,137,4,36,232,207,99,1,0,137,69,244,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0, 0,0,0,232,50,177,0,0,137,4,36,232,166,9,253,255,137,194,139,69,244,137,80,28,131,125,12,0,116,7,255,77,12,131,69,16,8,139,69,12,193,224,3,137,4,36,232,221,71,1,0,137,194,139,69,244,137,80,36,139,85,244,139,69,12,137,66,32,199,69,240,0,0,0,0,139,69,244, 139,64,36,137,69,236,235,66,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,240,137,4,36,232,203,176,0,0,137,194,139,69,236,137,16,139,69,244,199,68,36,4,0,0,0,0,137,4,36,232,255,85,1,0,137,194,139,69,236,137,80,4,255,69,240,131,69,236,8,139,69,240, 59,69,12,124,182,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,139,64,32,137,69,244,139,69,8,139,64,28,137,69,236,139,69,236,137,4,36,232,214,41,255,255,137,69,232,139,69,12,139,64,8,137,69,228,131,125,232,0,117,35, 139,69,236,139,0,137,68,36,8,141,131,204,175,3,0,137,68,36,4,139,69,8,137,4,36,232,41,43,2,0,233,87,1,0,0,199,68,36,4,0,0,0,0,139,69,12,137,4,36,232,137,244,255,255,133,192,117,26,141,131,235,175,3,0,137,68,36,4,139,69,8,137,4,36,232,248,42,2,0,233,38, 1,0,0,139,69,228,139,64,4,131,248,2,117,10,139,69,12,139,0,137,69,224,235,11,139,69,12,139,0,131,192,12,137,69,224,139,69,244,72,137,69,240,139,69,8,139,80,36,139,69,240,193,224,3,141,4,2,137,69,220,233,222,0,0,0,139,69,220,139,16,141,69,208,137,68,36, 16,141,69,212,137,68,36,12,141,69,216,137,68,36,8,137,84,36,4,139,69,232,137,4,36,232,214,27,255,255,133,192,116,126,139,69,212,133,192,117,34,139,85,224,139,69,216,141,4,2,139,16,139,69,220,139,64,4,137,84,36,4,137,4,36,232,118,86,1,0,233,129,0,0,0, 139,69,212,131,248,1,117,31,139,85,224,139,69,216,141,4,2,139,16,139,69,220,139,64,4,137,84,36,4,137,4,36,232,207,86,1,0,235,90,139,69,220,139,0,139,16,139,69,232,139,64,8,139,0,137,84,36,12,137,68,36,8,141,131,8,176,3,0,137,68,36,4,139,69,8,137,4,36, 232,12,42,2,0,235,44,139,69,220,139,0,139,16,139,69,232,139,64,8,139,0,137,84,36,12,137,68,36,8,141,131,45,176,3,0,137,68,36,4,139,69,8,137,4,36,232,222,41,2,0,255,77,240,131,109,220,8,131,125,240,0,15,137,24,255,255,255,131,196,84,91,201,195,85,137, 229,131,236,24,139,69,8,139,64,32,141,20,197,0,0,0,0,139,69,8,139,64,36,137,84,36,4,137,4,36,232,108,71,1,0,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,203,255,255,255,141,187,52,253,255,255,141,131,98,174,3,0,137,4,36,232,207,43,1, 0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,131,32,1,0,137,194,141,131,107,31,4,0,137,16,141,147,15,254,255,255,141,131,107,31,4,0,139,0,137,84,36,4,137,4,36,232,7,40, 1,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,236,30,4,0,139,0,137,4,36,232,140,96,1,0,137,69,244,131,125,12,0,116,59,139,69,16,139,0,131,248,2,117,49,139,69,16,139,64,4,139,16,141,131,227,173,3,0,137,68,36,4,137,20, 36,232,108,238,3,0,133,192,117,19,139,69,244,199,64,48,1,0,0,0,255,77,12,131,69,16,8,235,10,139,69,244,199,64,48,0,0,0,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,164,173,0,0,137,4,36,232,24,6,253,255,137,194,139,69,244,137,80, 40,131,125,12,0,116,7,255,77,12,131,69,16,8,139,69,12,193,224,3,137,4,36,232,79,68,1,0,137,194,139,69,244,137,80,52,139,85,244,139,69,12,137,66,44,131,125,12,0,15,132,172,0,0,0,199,69,240,0,0,0,0,139,69,244,139,64,52,137,69,236,233,139,0,0,0,139,69,16, 137,68,36,8,139,69,12,137,68,36,4,139,69,240,137,4,36,232,48,173,0,0,137,194,139,69,236,137,16,139,69,244,139,64,48,133,192,116,16,139,69,236,141,147,68,244,3,0,139,18,137,80,4,235,14,139,69,236,141,147,136,230,3,0,139,18,137,80,4,131,125,240,0,116,54, 139,69,244,139,64,48,133,192,116,23,139,69,236,131,192,4,139,85,244,137,68,36,4,137,20,36,232,250,77,1,0,235,21,139,69,236,131,192,4,139,85,244,137,68,36,4,137,20,36,232,57,77,1,0,255,69,240,131,69,236,8,139,69,240,59,69,12,15,140,105,255,255,255,139, 69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,103,76,1,0,139,69,244,131,192,28,137,4,36,232,21,243,255,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,139,64,44,137,69,244,139,69,8,139,64,40,137,69,236,139, 69,236,137,4,36,232,203,37,255,255,137,69,232,139,69,8,131,192,28,137,69,224,139,69,224,139,64,8,137,69,220,131,125,232,0,117,35,139,69,236,139,0,137,68,36,8,141,131,73,172,3,0,137,68,36,4,139,69,8,137,4,36,232,21,39,2,0,233,177,1,0,0,199,68,36,4,0,0, 0,0,139,69,224,137,4,36,232,117,240,255,255,133,192,117,26,141,131,104,172,3,0,137,68,36,4,139,69,8,137,4,36,232,228,38,2,0,233,128,1,0,0,139,69,224,137,4,36,232,236,240,255,255,137,194,139,69,8,139,64,40,57,194,116,55,139,69,224,137,4,36,232,213,240, 255,255,139,16,139,69,8,139,64,40,139,0,137,84,36,12,137,68,36,8,141,131,125,172,3,0,137,68,36,4,139,69,8,137,4,36,232,150,38,2,0,233,50,1,0,0,131,125,244,0,15,132,40,1,0,0,139,69,220,139,64,4,131,248,2,117,10,139,69,224,139,0,137,69,216,235,11,139,69, 224,139,0,131,192,12,137,69,216,139,69,8,139,64,48,133,192,116,80,199,69,240,0,0,0,0,139,69,8,139,64,52,137,69,228,235,52,139,69,228,139,80,4,139,69,228,139,8,199,68,36,16,1,0,0,0,137,84,36,12,139,69,216,137,68,36,8,137,76,36,4,139,69,232,137,4,36,232, 88,26,255,255,255,69,240,131,69,228,8,139,69,240,59,69,244,124,196,235,78,199,69,240,0,0,0,0,139,69,8,139,64,52,137,69,228,235,52,139,69,228,139,80,4,139,69,228,139,8,199,68,36,16,1,0,0,0,137,84,36,12,139,69,216,137,68,36,8,137,76,36,4,139,69,232,137, 4,36,232,165,24,255,255,255,69,240,131,69,228,8,139,69,240,59,69,244,124,196,139,69,220,139,64,4,131,248,1,117,24,139,69,220,139,16,139,69,224,139,0,137,84,36,4,137,4,36,232,103,14,255,255,235,61,139,69,220,139,0,137,69,212,235,11,139,69,212,139,64,28, 139,0,137,69,212,139,69,212,139,64,28,139,64,4,131,248,2,116,231,139,69,212,139,64,28,139,16,139,69,212,139,64,20,137,84,36,4,137,4,36,232,40,14,255,255,131,196,84,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,64,44,133,192,116,35,139, 69,8,139,64,48,133,192,117,25,139,69,8,139,80,52,139,69,12,137,66,4,139,69,8,137,4,36,232,169,253,255,255,235,21,141,131,126,170,3,0,137,68,36,4,139,69,8,137,4,36,232,10,37,2,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139, 64,44,133,192,116,35,139,69,8,139,64,48,133,192,116,25,139,69,8,139,80,52,139,69,12,137,66,4,139,69,8,137,4,36,232,84,253,255,255,235,21,141,131,41,170,3,0,137,68,36,4,139,69,8,137,4,36,232,181,36,2,0,131,196,20,91,201,195,85,137,229,131,236,24,139,69, 8,139,64,44,141,20,197,0,0,0,0,139,69,8,139,64,52,137,84,36,4,137,4,36,232,84,66,1,0,139,69,8,131,192,28,137,4,36,232,54,239,255,255,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,189,255,255,255,141,187,81,251,255,255,141,131,13,97,3, 0,137,4,36,232,169,38,1,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,56,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,93,27,1,0,137,194,141,131,73,26,4,0,137,16,141,147,19,255,255,255,141,131,73,26,4,0,139,0,137,84,36, 4,137,4,36,232,242,34,1,0,141,147,104,255,255,255,141,131,73,26,4,0,139,0,137,84,36,4,137,4,36,232,233,34,1,0,141,147,244,252,255,255,141,131,73,26,4,0,139,0,137,84,36,4,137,4,36,232,156,34,1,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232, 0,0,0,0,91,141,131,150,25,4,0,139,0,137,4,36,232,50,91,1,0,137,69,244,139,69,8,137,4,36,232,32,1,253,255,137,194,139,69,244,137,80,28,139,85,244,139,69,12,137,66,32,139,69,244,131,192,36,137,4,36,232,11,239,255,255,139,69,244,131,192,48,137,4,36,232, 253,238,255,255,139,69,244,131,192,48,139,85,244,137,68,36,4,137,20,36,232,44,72,1,0,139,85,244,141,131,214,239,3,0,139,0,137,68,36,4,137,20,36,232,153,77,1,0,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,243,15,16,69,12,243, 15,44,192,137,69,244,139,69,8,139,64,28,137,69,232,139,69,8,139,64,32,137,69,228,139,69,232,137,4,36,232,123,33,255,255,137,69,220,139,69,8,131,192,48,137,69,212,199,68,36,4,0,0,0,0,139,69,212,137,4,36,232,87,236,255,255,133,192,117,26,141,131,125,168, 3,0,137,68,36,4,139,69,8,137,4,36,232,198,34,2,0,233,198,1,0,0,139,69,212,137,4,36,232,206,236,255,255,137,194,139,69,8,139,64,28,57,194,116,55,139,69,212,137,4,36,232,183,236,255,255,139,16,139,69,8,139,64,28,139,0,137,84,36,12,137,68,36,8,141,131,149, 168,3,0,137,68,36,4,139,69,8,137,4,36,232,120,34,2,0,233,120,1,0,0,139,69,212,139,64,8,139,64,4,131,248,2,117,10,139,69,212,139,0,137,69,208,235,11,139,69,212,139,0,131,192,12,137,69,208,131,125,220,0,117,35,139,69,232,139,0,137,68,36,8,141,131,185,168, 3,0,137,68,36,4,139,69,8,137,4,36,232,44,34,2,0,233,44,1,0,0,141,69,224,137,68,36,16,141,69,196,137,68,36,12,141,69,236,137,68,36,8,139,69,228,137,68,36,4,139,69,220,137,4,36,232,74,19,255,255,133,192,117,35,139,69,228,139,0,137,68,36,8,141,131,221,168, 3,0,137,68,36,4,139,69,8,137,4,36,232,222,33,2,0,233,222,0,0,0,139,69,196,131,248,3,116,35,139,69,228,139,0,137,68,36,8,141,131,5,169,3,0,137,68,36,4,139,69,8,137,4,36,232,179,33,2,0,233,179,0,0,0,139,69,224,137,4,36,232,32,32,255,255,137,69,216,131, 125,216,0,117,32,139,69,224,139,0,137,68,36,8,141,131,41,169,3,0,137,68,36,4,139,69,8,137,4,36,232,124,33,2,0,235,127,139,69,216,139,64,12,193,224,2,137,69,200,139,85,208,139,69,236,141,4,2,139,0,137,69,204,139,69,204,139,0,137,69,240,131,125,244,0,121, 7,199,69,244,0,0,0,0,139,69,244,59,69,240,124,7,139,69,240,72,137,69,244,139,69,204,139,80,8,139,69,244,15,175,69,200,141,4,2,139,85,8,131,194,36,137,68,36,8,139,69,204,137,68,36,4,137,20,36,232,80,236,255,255,139,85,8,131,194,36,139,69,8,139,64,12,137, 84,36,4,137,4,36,232,118,76,1,0,131,196,100,91,201,195,85,137,229,131,236,24,139,69,8,131,192,36,137,4,36,232,155,235,255,255,139,69,8,131,192,48,137,4,36,232,141,235,255,255,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,206,255,255,255, 141,187,2,253,255,255,141,131,237,166,3,0,137,4,36,232,0,35,1,0,199,68,36,28,0,0,0,0,199,68,36,24,7,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,60,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,172,23,1,0,137,194,141,131,164,22,4,0,137, 16,141,147,143,253,255,255,141,131,164,22,4,0,139,0,137,84,36,4,137,4,36,232,65,31,1,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,29,22,4,0,139,0,137,4,36,232,181,87,1,0,137,69,244,139,69,8,137,4,36,232,163,253,252,255, 137,194,139,69,244,137,80,28,139,85,244,139,69,12,137,66,32,139,85,244,141,131,229,234,3,0,139,0,137,68,36,4,137,20,36,232,77,74,1,0,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,139,64,28,137,69,232,139,69,8,139,64, 32,137,69,228,139,69,232,137,4,36,232,59,30,255,255,137,69,220,139,69,12,139,64,8,137,69,204,131,125,220,0,117,35,139,69,232,139,0,137,68,36,8,141,131,17,166,3,0,137,68,36,4,139,69,8,137,4,36,232,142,31,2,0,233,64,1,0,0,141,69,224,137,68,36,16,141,69, 236,137,68,36,12,141,69,240,137,68,36,8,139,69,228,137,68,36,4,139,69,220,137,4,36,232,172,16,255,255,133,192,117,35,139,69,228,139,0,137,68,36,8,141,131,53,166,3,0,137,68,36,4,139,69,8,137,4,36,232,64,31,2,0,233,242,0,0,0,139,69,236,131,248,3,116,35, 139,69,228,139,0,137,68,36,8,141,131,93,166,3,0,137,68,36,4,139,69,8,137,4,36,232,21,31,2,0,233,199,0,0,0,199,68,36,4,0,0,0,0,139,69,12,137,4,36,232,117,232,255,255,133,192,117,26,141,131,80,164,3,0,137,68,36,4,139,69,8,137,4,36,232,228,30,2,0,233,150, 0,0,0,139,69,12,137,4,36,232,236,232,255,255,137,194,139,69,8,139,64,28,57,194,116,52,139,69,12,137,4,36,232,213,232,255,255,139,16,139,69,8,139,64,28,139,0,137,84,36,12,137,68,36,8,141,131,129,166,3,0,137,68,36,4,139,69,8,137,4,36,232,150,30,2,0,235, 75,139,69,204,139,64,4,131,248,2,117,10,139,69,12,139,0,137,69,216,235,11,139,69,12,139,0,131,192,12,137,69,216,139,85,216,139,69,240,141,4,2,139,0,137,69,212,139,69,212,139,0,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,91,74,1,0, 131,196,84,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,242,253,255,255,141,131,255,164,3,0,137,4,36,232,121,32,1,0,199,68,36,28,0,0,0,0,199,68,36,24,7,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8, 0,0,0,0,137,116,36,4,137,4,36,232,33,21,1,0,137,194,141,131,27,20,4,0,137,16,141,147,78,254,255,255,141,131,27,20,4,0,139,0,137,84,36,4,137,4,36,232,165,28,1,0,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,151,19,4,0,139,0, 137,4,36,232,43,85,1,0,137,69,244,139,69,8,137,4,36,232,25,251,252,255,137,194,139,69,244,137,80,28,139,85,244,139,69,12,137,66,32,139,69,244,131,192,36,137,4,36,232,4,233,255,255,139,69,244,131,192,36,139,85,244,137,68,36,4,137,20,36,232,51,66,1,0,139, 69,244,131,196,36,91,201,195,85,137,229,83,129,236,132,0,0,0,232,0,0,0,0,91,139,69,8,139,64,28,137,69,232,139,69,8,139,64,32,137,69,228,139,69,232,137,4,36,232,162,27,255,255,137,69,220,243,15,16,69,12,243,15,44,192,137,69,200,139,69,8,131,192,36,137, 69,196,139,69,196,139,64,8,137,69,192,139,69,8,131,192,36,199,68,36,4,0,0,0,0,137,4,36,232,102,230,255,255,133,192,117,26,141,131,20,164,3,0,137,68,36,4,139,69,8,137,4,36,232,213,28,2,0,233,90,3,0,0,139,69,8,131,192,36,137,4,36,232,218,230,255,255,137, 194,139,69,8,139,64,28,57,194,116,58,139,69,8,131,192,36,137,4,36,232,192,230,255,255,139,16,139,69,8,139,64,28,139,0,137,84,36,12,137,68,36,8,141,131,44,164,3,0,137,68,36,4,139,69,8,137,4,36,232,129,28,2,0,233,6,3,0,0,139,69,192,139,64,4,131,248,2,117, 10,139,69,196,139,0,137,69,212,235,11,139,69,196,139,0,131,192,12,137,69,212,131,125,220,0,117,35,139,69,232,139,0,137,68,36,8,141,131,80,164,3,0,137,68,36,4,139,69,8,137,4,36,232,56,28,2,0,233,189,2,0,0,141,69,224,137,68,36,16,141,69,236,137,68,36,12, 141,69,240,137,68,36,8,139,69,228,137,68,36,4,139,69,220,137,4,36,232,86,13,255,255,133,192,117,35,139,69,228,139,0,137,68,36,8,141,131,116,164,3,0,137,68,36,4,139,69,8,137,4,36,232,234,27,2,0,233,111,2,0,0,139,69,236,131,248,3,116,35,139,69,228,139, 0,137,68,36,8,141,131,156,164,3,0,137,68,36,4,139,69,8,137,4,36,232,191,27,2,0,233,68,2,0,0,139,69,224,137,4,36,232,44,26,255,255,137,69,216,131,125,216,0,117,35,139,69,224,139,0,137,68,36,8,141,131,68,163,3,0,137,68,36,4,139,69,8,137,4,36,232,136,27, 2,0,233,13,2,0,0,139,69,216,139,64,12,193,224,2,137,69,204,139,85,212,139,69,240,141,4,2,139,0,137,69,208,139,69,208,139,64,4,59,69,204,116,14,141,131,192,164,3,0,137,4,36,232,133,28,2,0,139,69,208,139,0,137,69,244,131,125,200,0,127,7,199,69,200,1,0, 0,0,139,69,200,59,69,244,15,132,185,1,0,0,139,69,192,139,64,4,131,248,1,117,49,139,69,192,139,0,137,4,36,232,145,255,252,255,133,192,116,121,139,69,192,139,16,139,69,196,139,0,199,68,36,8,0,0,0,0,137,84,36,4,137,4,36,232,171,43,253,255,235,89,139,69, 192,139,0,137,69,188,235,11,139,69,188,139,64,28,139,0,137,69,188,139,69,188,139,64,28,139,64,4,131,248,2,116,231,139,69,188,139,64,28,139,0,137,4,36,232,58,255,252,255,133,192,116,34,139,69,188,139,64,28,139,16,139,69,188,139,64,20,199,68,36,8,0,0,0, 0,137,84,36,4,137,4,36,232,80,43,253,255,139,69,204,15,175,69,200,137,193,139,69,204,15,175,69,244,137,194,139,69,208,139,64,8,137,76,36,8,137,84,36,4,137,4,36,232,70,55,1,0,137,194,139,69,208,137,80,8,139,85,208,139,69,200,137,2,139,69,200,59,69,244, 126,79,139,69,208,139,80,8,139,69,244,15,175,69,204,141,4,2,137,69,184,199,69,180,0,0,0,0,139,85,244,139,69,200,41,208,137,69,176,235,31,139,85,184,139,69,196,137,68,36,8,139,69,216,137,68,36,4,137,20,36,232,232,245,254,255,139,69,204,1,69,184,255,77, 176,131,125,176,255,117,216,139,69,192,139,64,4,131,248,1,117,49,139,69,192,139,0,137,4,36,232,109,254,252,255,133,192,116,121,139,69,192,139,16,139,69,196,139,0,199,68,36,8,1,0,0,0,137,84,36,4,137,4,36,232,135,42,253,255,235,89,139,69,192,139,0,137, 69,172,235,11,139,69,172,139,64,28,139,0,137,69,172,139,69,172,139,64,28,139,64,4,131,248,2,116,231,139,69,172,139,64,28,139,0,137,4,36,232,22,254,252,255,133,192,116,34,139,69,172,139,64,28,139,16,139,69,172,139,64,20,199,68,36,8,1,0,0,0,137,84,36,4, 137,4,36,232,44,42,253,255,129,196,132,0,0,0,91,201,195,85,137,229,131,236,24,139,69,8,131,192,36,137,4,36,232,19,228,255,255,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,141,179,220,255,255,255,141,187,143,251,255,255,141,131,215,160,3,0,137, 4,36,232,134,27,1,0,199,68,36,32,0,0,0,0,199,68,36,28,6,0,0,0,199,68,36,24,7,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,48,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,42,16,1,0,137,194,141,131,50,15,4,0,137,16,141,147,247,251,255,255, 141,131,50,15,4,0,139,0,137,84,36,4,137,4,36,232,191,23,1,0,131,196,60,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,163,14,4,0,139,0,137,4,36,232,51,80,1,0,137,69,244,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232, 150,157,0,0,137,4,36,232,10,246,252,255,137,194,139,69,244,137,80,40,131,125,12,0,116,7,255,77,12,131,69,16,8,139,69,12,193,224,3,137,4,36,232,65,52,1,0,137,194,139,69,244,137,80,48,139,85,244,139,69,12,137,66,44,131,125,12,0,116,106,199,69,240,0,0,0, 0,139,69,244,139,64,48,137,69,236,235,80,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,240,137,4,36,232,41,157,0,0,137,194,139,69,236,137,16,139,85,236,141,131,47,214,3,0,139,0,137,66,4,131,125,240,0,116,21,139,69,236,131,192,4,139,85,244,137,68, 36,4,137,20,36,232,109,61,1,0,255,69,240,131,69,236,8,139,69,240,59,69,12,124,168,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,159,60,1,0,139,85,244,141,131,215,228,3,0,139,0,137,68,36,4,137,20,36,232,12,66,1,0,139,69,244,131,192,28,137, 4,36,232,54,227,255,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,139,64,44,137,69,244,139,69,8,139,64,40,137,69,236,139,69,236,137,4,36,232,236,21,255,255,137,69,232,139,69,8,131,192,28,137,69,224,139,69,224,139, 64,8,137,69,220,131,125,232,0,117,35,139,69,236,139,0,137,68,36,8,141,131,38,159,3,0,137,68,36,4,139,69,8,137,4,36,232,54,23,2,0,233,170,1,0,0,131,125,220,0,117,26,141,131,72,159,3,0,137,68,36,4,139,69,8,137,4,36,232,22,23,2,0,233,138,1,0,0,139,69,220, 139,64,4,131,248,1,116,26,141,131,102,159,3,0,137,68,36,4,139,69,8,137,4,36,232,241,22,2,0,233,101,1,0,0,139,69,220,139,0,137,69,204,139,69,204,139,80,36,139,69,224,139,64,4,57,194,116,26,141,131,133,159,3,0,137,68,36,4,139,69,8,137,4,36,232,191,22,2, 0,233,51,1,0,0,131,125,244,0,15,132,41,1,0,0,139,69,8,139,80,48,139,69,12,137,66,4,139,69,236,137,68,36,4,139,69,204,137,4,36,232,105,244,254,255,137,69,212,131,125,212,0,117,35,139,69,236,139,0,137,68,36,8,141,131,155,159,3,0,137,68,36,4,139,69,8,137, 4,36,232,107,22,2,0,233,223,0,0,0,139,69,224,139,0,137,69,208,131,125,208,0,116,23,139,69,208,139,80,4,139,69,212,137,80,4,139,85,212,139,69,208,137,80,4,235,21,139,69,204,139,80,28,139,69,212,137,80,4,139,85,212,139,69,204,137,80,28,139,85,224,139,69, 212,137,2,139,69,212,131,192,12,137,69,216,199,69,240,0,0,0,0,139,69,8,139,64,48,137,69,228,235,52,139,69,228,139,80,4,139,69,228,139,8,199,68,36,16,1,0,0,0,137,84,36,12,139,69,216,137,68,36,8,137,76,36,4,139,69,232,137,4,36,232,179,8,255,255,255,69, 240,131,69,228,8,139,69,240,59,69,244,124,196,139,69,204,137,4,36,232,135,173,253,255,137,4,36,232,52,250,252,255,133,192,116,26,139,85,212,199,68,36,8,1,0,0,0,139,69,204,137,68,36,4,137,20,36,232,82,38,253,255,139,69,8,139,80,12,139,69,224,137,68,36, 4,137,20,36,232,2,65,1,0,131,196,84,91,201,195,85,137,229,131,236,24,139,69,8,139,64,44,141,20,197,0,0,0,0,139,69,8,139,64,48,137,84,36,4,137,4,36,232,38,51,1,0,139,69,8,131,192,28,137,4,36,232,8,224,255,255,201,195,85,137,229,87,86,83,131,236,44,232, 0,0,0,0,91,141,179,189,255,255,255,141,187,124,252,255,255,141,131,103,157,3,0,137,4,36,232,123,23,1,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,52,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,47,12,1,0,137,194,141, 131,43,11,4,0,137,16,141,147,165,253,255,255,141,131,43,11,4,0,139,0,137,84,36,4,137,4,36,232,196,19,1,0,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,172,10,4,0,139,0,137,4,36,232,56,76,1,0,137,69,244,139,69,8,137,4,36, 232,38,242,252,255,137,194,139,69,244,137,80,28,139,85,244,139,69,12,137,66,32,139,69,244,131,192,36,137,4,36,232,17,224,255,255,139,85,244,141,131,220,224,3,0,139,0,137,68,36,4,137,20,36,232,194,62,1,0,139,69,244,131,196,36,91,201,195,85,137,229,83, 131,236,84,232,0,0,0,0,91,139,69,8,139,64,28,137,69,244,139,69,244,137,4,36,232,185,18,255,255,137,69,236,139,69,12,139,64,8,137,69,232,131,125,236,0,117,35,139,69,244,139,0,137,68,36,8,141,131,130,156,3,0,137,68,36,4,139,69,8,137,4,36,232,12,20,2,0, 233,13,1,0,0,199,68,36,4,0,0,0,0,139,69,12,137,4,36,232,108,221,255,255,133,192,117,26,141,131,197,152,3,0,137,68,36,4,139,69,8,137,4,36,232,219,19,2,0,233,220,0,0,0,139,69,8,139,80,32,141,69,240,137,68,36,16,141,69,216,137,68,36,12,141,69,220,137,68, 36,8,137,84,36,4,139,69,236,137,4,36,232,246,4,255,255,133,192,117,38,139,69,8,139,64,32,139,0,137,68,36,8,141,131,166,156,3,0,137,68,36,4,139,69,8,137,4,36,232,135,19,2,0,233,136,0,0,0,139,69,216,131,248,2,116,35,139,69,8,139,64,32,139,0,137,68,36,8, 141,131,198,156,3,0,137,68,36,4,139,69,8,137,4,36,232,89,19,2,0,235,93,139,69,232,139,64,4,131,248,2,117,10,139,69,12,139,0,137,69,212,235,11,139,69,12,139,0,131,192,12,137,69,212,139,85,212,139,69,220,141,4,2,139,0,139,85,8,131,194,36,199,68,36,8,0, 0,0,0,137,68,36,4,137,20,36,232,248,221,255,255,139,85,8,131,194,36,139,69,8,139,64,12,137,84,36,4,137,4,36,232,117,62,1,0,131,196,84,91,201,195,85,137,229,131,236,24,139,69,8,131,192,36,137,4,36,232,154,221,255,255,201,195,85,137,229,87,86,83,131,236, 44,232,0,0,0,0,91,141,179,220,255,255,255,141,187,9,254,255,255,141,131,104,155,3,0,137,4,36,232,13,21,1,0,199,68,36,28,0,0,0,0,199,68,36,24,7,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,48,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232, 185,9,1,0,137,194,141,131,193,8,4,0,137,16,141,147,115,254,255,255,141,131,193,8,4,0,139,0,137,84,36,4,137,4,36,232,61,17,1,0,131,196,44,91,94,95,201,195,85,137,229,131,236,8,232,35,228,255,255,232,161,232,255,255,232,194,237,255,255,232,102,241,255, 255,232,239,243,255,255,232,214,248,255,255,232,220,252,255,255,232,69,255,255,255,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,69,244,139,69,12,137,4,36,232,125,246,252,255,133,192,15,132,166,0,0,0,139,69,12,137,4,36,232,181,169,253, 255,137,69,240,139,69,244,139,144,44,4,0,0,139,69,244,139,136,44,4,0,0,139,69,244,139,128,100,4,0,0,137,84,36,20,137,76,36,16,137,68,36,12,139,69,244,137,68,36,8,139,69,240,137,68,36,4,141,131,234,113,3,0,137,4,36,232,28,170,1,0,139,69,244,139,144,40, 4,0,0,139,69,244,139,136,40,4,0,0,139,69,244,139,128,84,4,0,0,137,84,36,20,137,76,36,16,137,68,36,12,139,69,244,137,68,36,8,139,69,240,137,68,36,4,141,131,234,113,3,0,137,4,36,232,217,169,1,0,139,69,244,139,144,84,4,0,0,139,69,244,137,144,100,4,0,0,131, 196,52,91,201,195,85,137,229,83,129,236,148,0,0,0,232,0,0,0,0,91,139,69,12,137,4,36,232,249,168,253,255,137,69,244,139,69,8,139,128,96,4,0,0,137,69,240,139,69,8,139,64,36,137,69,232,139,69,232,141,80,3,133,192,15,72,194,193,248,2,137,69,228,139,85,8, 139,69,12,137,68,36,4,137,20,36,232,143,189,253,255,137,69,224,139,69,224,137,69,220,139,69,232,3,69,220,137,69,216,139,69,228,3,69,220,137,69,212,139,85,228,139,69,216,41,208,137,69,208,139,85,8,139,69,12,137,68,36,4,137,20,36,232,82,188,253,255,137, 69,204,139,69,232,3,69,204,137,69,200,139,69,228,3,69,204,137,69,196,139,85,228,139,69,200,41,208,137,69,192,199,69,236,0,0,0,0,233,22,1,0,0,139,69,8,139,144,44,4,0,0,139,69,236,137,68,36,32,139,69,8,137,68,36,28,137,84,36,24,139,69,216,137,68,36,20, 139,69,200,137,68,36,16,139,69,220,137,68,36,12,139,69,204,137,68,36,8,139,69,244,137,68,36,4,141,131,85,113,3,0,137,4,36,232,187,168,1,0,139,69,8,139,128,84,4,0,0,59,69,236,117,14,139,69,8,139,128,40,4,0,0,137,69,160,235,12,139,69,8,139,128,44,4,0,0, 137,69,160,139,69,8,139,128,84,4,0,0,59,69,236,117,14,139,69,8,139,128,40,4,0,0,137,69,164,235,12,139,69,8,139,128,44,4,0,0,137,69,164,139,69,236,137,68,36,36,139,69,8,137,68,36,32,139,69,160,137,68,36,28,139,69,164,137,68,36,24,139,69,208,137,68,36, 20,139,69,192,137,68,36,16,139,69,212,137,68,36,12,139,69,196,137,68,36,8,139,69,244,137,68,36,4,141,131,153,113,3,0,137,4,36,232,30,168,1,0,139,69,232,1,69,220,139,69,232,1,69,216,139,69,232,1,69,212,139,69,232,1,69,208,139,69,8,139,144,84,4,0,0,139, 69,8,137,144,100,4,0,0,255,69,236,139,69,236,59,69,240,15,140,222,254,255,255,139,69,8,139,128,48,4,0,0,137,69,168,139,69,8,139,128,32,4,0,0,137,69,172,139,69,8,131,192,52,137,69,176,139,69,8,139,128,60,4,0,0,139,16,141,131,225,119,3,0,137,68,36,4,137, 20,36,232,208,212,3,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,180,235,9,141,131,5,89,3,0,137,69,180,139,69,8,139,64,48,137,194,3,85,224,139,69,8,139,64,44,137,193,3,77,204,139,69,8,137,68,36,36,139,69,168,137,68,36,32,141,131,113,220,3, 0,139,0,137,68,36,28,139,69,172,137,68,36,24,139,69,176,137,68,36,20,139,69,180,137,68,36,16,137,84,36,12,137,76,36,8,139,69,244,137,68,36,4,141,131,65,95,3,0,137,4,36,232,40,167,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,68,139,85,204,131, 194,7,139,77,220,73,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,139,69,220,137,68,36,20,137,84,36,16,137,76,36,12,139,69,204,137,68,36,8,139,69,244,137,68,36,4,141,131,193,95,3,0,137,4,36,232,210,166,1,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117, 68,139,85,224,66,139,77,204,131,193,7,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,224,137,68,36,12,139,69,204,137,68,36,8,139,69,244,137,68,36,4,141,131,5,96,3,0,137,4,36,232,126,166,1,0,129,196,148,0,0,0,91,201,195,85, 137,229,83,131,236,100,232,0,0,0,0,91,139,69,12,137,4,36,232,176,165,253,255,137,69,244,139,69,8,139,128,96,4,0,0,137,69,240,139,69,8,139,64,36,137,69,232,139,69,232,141,80,3,133,192,15,72,194,193,248,2,137,69,228,139,85,8,139,69,12,137,68,36,4,137,20, 36,232,70,186,253,255,137,69,224,139,69,224,137,69,220,139,69,232,3,69,220,137,69,216,139,69,228,3,69,220,137,69,212,139,85,228,139,69,216,41,208,137,69,208,139,85,8,139,69,12,137,68,36,4,137,20,36,232,9,185,253,255,137,69,204,139,69,232,3,69,204,137, 69,200,139,69,228,3,69,204,137,69,196,139,85,228,139,69,200,41,208,137,69,192,199,69,236,0,0,0,0,233,153,0,0,0,139,69,216,137,68,36,28,139,69,200,137,68,36,24,139,69,220,137,68,36,20,139,69,204,137,68,36,16,139,69,236,137,68,36,12,139,69,8,137,68,36, 8,139,69,244,137,68,36,4,141,131,164,110,3,0,137,4,36,232,127,165,1,0,139,69,208,137,68,36,28,139,69,192,137,68,36,24,139,69,212,137,68,36,20,139,69,196,137,68,36,16,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,204,110, 3,0,137,4,36,232,64,165,1,0,139,69,232,1,69,220,139,69,232,1,69,216,139,69,232,1,69,212,139,69,232,1,69,208,255,69,236,139,69,236,59,69,240,15,140,91,255,255,255,139,69,8,139,64,48,137,194,3,85,224,139,69,8,139,64,44,3,69,204,137,84,36,16,137,68,36,12, 139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,24,86,3,0,137,4,36,232,225,164,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,68,139,85,204,131,194,7,139,77,220,73,139,69,220,137,68,36,28,137,84,36,24,137,76,36,20,139,69,204,137,68,36,16, 199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,72,93,3,0,137,4,36,232,139,164,1,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,68,139,69,224,64,139,85,204,131,194,7,137,68,36,28,137,84,36,24,139,69,224,137,68,36,20,139,69, 204,137,68,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,112,93,3,0,137,4,36,232,55,164,1,0,131,196,100,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,108,163,253,255,137,69,244,139,69,8,139, 128,96,4,0,0,137,69,240,199,69,236,0,0,0,0,235,73,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,176,108,3,0,137,4,36,232,222,163,1,0,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,202,108,3,0, 137,4,36,232,187,163,1,0,255,69,236,139,69,236,59,69,240,124,175,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,172,111,3,0,137,4,36,232,148,163,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8, 139,69,244,137,68,36,4,141,131,128,91,3,0,137,4,36,232,94,163,1,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,198,111,3,0,137,4,36,232,42,163,1,0,131,196,36,91,201,195,85, 137,229,83,131,236,68,232,0,0,0,0,91,139,69,12,137,4,36,232,95,162,253,255,137,69,244,139,69,8,139,128,96,4,0,0,137,69,240,139,69,8,139,128,60,4,0,0,139,16,141,131,71,113,3,0,137,68,36,4,137,20,36,232,9,208,3,0,133,192,116,16,139,69,8,139,128,60,4,0, 0,139,0,137,69,216,235,9,141,131,107,82,3,0,137,69,216,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,8,139,128,48,4,0,0,137,69,220,235,7,199,69,220,255,0,0,0,139,69,8,139,144,32,4,0,0,139,77,8,131,193,52,139,69,216,137,68,36,28,139,69,220, 137,68,36,24,141,131,215,213,3,0,139,0,137,68,36,20,137,84,36,16,137,76,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,143,90,3,0,137,4,36,232,79,162,1,0,199,69,236,0,0,0,0,233,180,0,0,0,139,69,8,139,128,44,4,0,0,137,68,36,16,139,69,236,137, 68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,215,107,3,0,137,4,36,232,19,162,1,0,139,69,8,139,128,84,4,0,0,59,69,236,117,14,139,69,8,139,128,40,4,0,0,137,69,224,235,12,139,69,8,139,128,44,4,0,0,137,69,224,139,69,8,139,128,84,4,0,0,59, 69,236,117,14,139,69,8,139,128,40,4,0,0,137,69,228,235,12,139,69,8,139,128,44,4,0,0,137,69,228,139,69,224,137,68,36,20,139,69,228,137,68,36,16,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,123,106,3,0,137,4,36,232,146,161, 1,0,255,69,236,139,69,236,59,69,240,15,140,64,255,255,255,131,196,68,91,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,139,69,12,137,4,36,232,183,160,253,255,137,69,244,139,85,8,139,69,12,137,68,36,4,137,20,36,232,110,180,253,255,137,69,240,139,85, 8,139,69,12,137,68,36,4,137,20,36,232,94,181,253,255,137,69,236,139,69,16,131,224,1,132,192,116,126,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,108,139,69,8,139,144,96,4,0,0,139,69,8,139,64,36,15,175,194,137,193,3,77,236,139,117,240,131,198,7, 139,69,8,139,144,96,4,0,0,139,69,8,139,64,36,15,175,194,3,69,236,141,80,255,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,76,36,20,137,116,36,16,137,84,36,12,139,69,240,137,68,36,8,139,69,244,137,68,36,4,141,131,99,89,3,0,137,4,36,232,175,160,1,0,139, 69,16,131,224,1,133,192,117,54,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,203,88,3,0,137,4,36,232,111,160,1,0,139,69,16,131,224,2,133,192,116,84,139,69,8,139,128,28,4, 0,0,131,224,64,133,192,117,68,139,85,236,66,139,77,240,131,193,7,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,139,69,236,137,68,36,12,139,69,240,137,68,36,8,139,69,244,137,68,36,4,141,131,155,89,3,0,137,4,36,232,17,160,1,0,139, 69,16,131,224,2,133,192,117,52,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,17,109,3,0,137,4,36,232,211,159,1,0,131,196,48,91,94,201,195,85,137,229,83,131,236,52,232,0,0, 0,0,91,139,69,12,137,4,36,232,7,159,253,255,137,69,244,139,69,8,139,128,96,4,0,0,137,69,240,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,116,101,199,69,236,0,0,0,0,235,46,199,68,36,16,255,0,0,0,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244, 137,68,36,4,141,131,175,104,3,0,137,4,36,232,95,159,1,0,255,69,236,139,69,236,59,69,240,124,202,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,127,88,3,0,137,4,36,232,48,159,1,0,235,104,199,69,236,0,0,0,0,235,46,199,68,36, 16,0,0,0,0,139,69,236,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,175,104,3,0,137,4,36,232,250,158,1,0,255,69,236,139,69,236,59,69,240,124,202,139,69,8,139,128,48,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141, 131,127,88,3,0,137,4,36,232,198,158,1,0,131,196,52,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,16,0,117,33,141,131,33,244,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,112,165,1,0,233,167,0,0,0,131,125,16,1,117,23,139, 69,12,137,68,36,4,139,69,8,137,4,36,232,255,247,255,255,233,138,0,0,0,131,125,16,2,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,150,244,255,255,235,112,131,125,16,3,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,113,254,255,255,235,86,131,125, 16,4,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,242,249,255,255,235,60,131,125,16,5,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,229,250,255,255,235,34,131,125,16,5,126,28,139,69,16,131,232,6,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137, 4,36,232,104,252,255,255,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,85,244,139,69,12,137,68,36,4,137,20,36,232,224,176,253,255,137,194,139,69,16,137,16,139,85,244,139,69,12,137,68,36,4,137,20,36,232,204,177,253,255,137,194,139, 69,20,137,16,139,69,16,139,16,139,69,244,139,64,40,1,194,139,69,24,137,16,139,69,20,139,8,139,69,244,139,80,36,139,69,244,139,128,96,4,0,0,15,175,194,141,20,1,139,69,28,137,16,201,195,85,137,229,87,86,83,129,236,220,0,0,0,232,0,0,0,0,91,139,69,8,137, 69,228,139,85,228,141,69,216,137,68,36,8,141,69,204,137,68,36,4,137,20,36,232,179,80,252,255,139,69,228,139,128,84,4,0,0,137,69,132,139,69,224,137,69,136,139,85,220,137,85,140,139,69,216,137,69,144,139,69,228,139,128,32,4,0,0,137,69,148,139,69,228,5, 28,4,0,0,137,4,36,232,252,90,252,255,137,69,152,139,69,228,139,64,48,137,69,156,139,69,228,139,64,44,137,69,160,139,85,212,137,85,164,139,69,208,137,69,168,139,85,204,137,85,172,139,69,228,139,128,96,4,0,0,137,69,176,139,69,228,5,36,4,0,0,137,4,36,232, 178,89,252,255,137,69,180,139,69,228,139,128,92,4,0,0,137,69,184,139,69,228,139,64,40,137,69,188,139,69,228,139,16,141,131,228,250,3,0,139,0,57,194,117,19,141,131,203,127,3,0,137,4,36,232,111,6,1,0,137,69,192,235,17,141,131,172,90,3,0,137,4,36,232,92, 6,1,0,137,69,192,139,69,228,15,183,64,22,15,191,240,139,69,228,15,183,64,20,15,191,248,141,131,132,102,3,0,137,4,36,232,55,6,1,0,137,69,196,141,131,8,88,3,0,137,4,36,232,38,6,1,0,139,85,132,137,84,36,84,139,85,136,137,84,36,80,139,85,140,137,84,36,76, 139,85,144,137,84,36,72,139,85,148,137,84,36,68,139,85,152,137,84,36,64,139,85,156,137,84,36,60,139,85,160,137,84,36,56,139,85,164,137,84,36,52,139,85,168,137,84,36,48,139,85,172,137,84,36,44,139,85,176,137,84,36,40,139,85,180,137,84,36,36,139,85,184, 137,84,36,32,139,85,188,137,84,36,28,139,85,192,137,84,36,24,137,116,36,20,137,124,36,16,139,85,196,137,84,36,12,137,68,36,8,141,131,139,102,3,0,137,68,36,4,139,69,12,137,4,36,232,49,155,0,0,141,131,96,86,3,0,137,68,36,4,139,69,12,137,4,36,232,28,155, 0,0,129,196,220,0,0,0,91,94,95,201,195,85,137,229,87,86,83,129,236,220,3,0,0,232,0,0,0,0,91,139,69,8,137,133,164,252,255,255,139,69,12,137,133,160,252,255,255,141,131,34,206,3,0,139,0,139,16,137,85,228,49,210,139,133,164,252,255,255,137,133,192,252,255, 255,199,133,188,252,255,255,255,255,255,255,139,149,192,252,255,255,141,133,176,252,255,255,137,68,36,4,137,20,36,232,249,78,252,255,139,133,192,252,255,255,139,16,141,131,254,248,3,0,139,0,57,194,117,18,139,133,192,252,255,255,139,128,92,4,0,0,137,133, 188,252,255,255,139,133,192,252,255,255,139,128,48,4,0,0,137,194,129,226,255,255,255,0,139,133,192,252,255,255,139,128,40,4,0,0,137,193,129,225,255,255,255,0,139,133,192,252,255,255,139,128,44,4,0,0,137,198,129,230,255,255,255,0,139,133,192,252,255,255, 139,184,32,4,0,0,139,133,192,252,255,255,139,128,28,4,0,0,131,224,63,15,182,192,137,133,124,252,255,255,139,133,192,252,255,255,139,64,48,137,133,128,252,255,255,139,133,192,252,255,255,139,64,44,137,133,132,252,255,255,139,133,184,252,255,255,139,0, 137,133,136,252,255,255,139,133,180,252,255,255,139,0,137,133,140,252,255,255,139,133,176,252,255,255,139,0,137,133,144,252,255,255,139,133,192,252,255,255,139,128,96,4,0,0,137,133,148,252,255,255,139,133,192,252,255,255,139,128,36,4,0,0,131,224,1,15, 182,192,137,133,152,252,255,255,139,133,192,252,255,255,139,64,40,137,133,156,252,255,255,137,84,36,80,137,76,36,76,137,116,36,72,137,124,36,68,139,133,124,252,255,255,137,68,36,64,139,149,128,252,255,255,137,84,36,60,139,133,132,252,255,255,137,68,36, 56,139,149,136,252,255,255,137,84,36,52,139,133,140,252,255,255,137,68,36,48,139,149,144,252,255,255,137,84,36,44,139,133,148,252,255,255,137,68,36,40,199,68,36,36,255,255,255,255,139,149,152,252,255,255,137,84,36,32,139,133,188,252,255,255,137,68,36, 28,199,68,36,24,0,0,0,0,199,68,36,20,8,0,0,0,139,133,156,252,255,255,137,68,36,16,141,131,166,139,3,0,137,68,36,12,199,68,36,8,32,3,0,0,199,68,36,4,0,0,0,0,141,133,196,252,255,255,137,4,36,232,103,196,3,0,139,149,192,252,255,255,141,133,196,252,255,255, 137,68,36,8,139,133,192,252,255,255,137,68,36,4,137,20,36,232,154,125,2,0,141,131,34,206,3,0,139,0,139,85,228,51,16,116,5,232,55,196,3,0,129,196,220,3,0,0,91,94,95,201,195,85,137,229,131,236,56,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0, 0,0,232,126,133,0,0,137,69,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,97,133,0,0,137,69,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,6,0,0,0,232,68,133,0,0,137,69,236,131,125,240,0,116,7,199,69,240,1,0,0,0,139,85, 8,139,69,240,137,130,92,4,0,0,139,85,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,69,220,137,68,36,4,137,20,36,232,188,76,252,255,137,69,232,139,69,244,137,4,36,232,146,55,252,255,137,194,139,69,8,137,80,40,139,69,8,139,80,40,139,69,8,137,80,36, 139,69,8,139,128,96,4,0,0,59,69,236,15,132,139,0,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,4,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,236,137,130,96,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,139,128,96,4,0,0,57,194,124,39, 139,69,8,139,128,96,4,0,0,141,80,255,139,69,8,137,144,84,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,2,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,235,119,139,69,8,139,80,32,139,69,8,139, 64,28,199,68,36,8,5,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,72,32,139,85,232,131,194,6,139,69,8,139,64,28,137,84,36,8,137,68,36,4,139,69,8,137,4,36,255,209,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69, 8,137,4,36,255,210,139,85,8,139,69,8,139,64,28,137,84,36,4,137,4,36,232,127,230,252,255,201,195,85,137,229,131,236,40,243,15,16,69,12,243,15,44,192,137,69,244,131,125,244,0,121,7,199,69,244,0,0,0,0,139,69,8,139,128,96,4,0,0,59,69,244,127,13,139,69,8, 139,128,96,4,0,0,72,137,69,244,139,69,8,139,144,84,4,0,0,139,69,8,139,128,88,4,0,0,57,194,116,88,139,69,8,139,128,88,4,0,0,137,69,240,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,85,8,139,69,244,137,130,84,4,0,0,139,69,8,139,80,32,139,69,8, 139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,240,137,130,88,4,0,0,235,44,139,85,8,139,69,244,137,130,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,201,195, 85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,16,141,131,2,244,3,0,139,0,57,194,15,133,235,1,0,0,139,69,8,139,128,92,4,0,0,133,192,15,132,236,0,0,0,139,69,8,139,144,84,4,0,0,139,69,8,139,128,88,4,0,0,57,194,15,132,210,0,0,0,139,69,8,199,128,104, 4,0,0,1,0,0,0,139,69,8,139,128,88,4,0,0,243,15,42,192,139,69,8,243,15,17,128,108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,130,187,3,0,139,0,137,66,4,139,85,8,129,194,104,4,0,0,139,69,8,139,72,12,137,84, 36,12,199,68,36,8,2,0,0,0,141,131,246,201,3,0,139,0,137,68,36,4,137,12,36,232,101,42,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,69,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,53,139,85,8,129,194,104,4,0,0,139,69,8,139,128,52,4,0,0,139, 72,4,137,84,36,12,199,68,36,8,2,0,0,0,141,131,246,201,3,0,139,0,137,68,36,4,137,12,36,232,30,61,1,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,199,128,104,4,0,0,1,0,0,0,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,243,15,17,128, 108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,134,187,3,0,139,0,137,66,4,139,85,8,129,194,104,4,0,0,139,69,8,139,72,12,137,84,36,12,199,68,36,8,2,0,0,0,141,131,246,201,3,0,139,0,137,68,36,4,137,12,36,232, 129,41,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,15,132,181,0,0,0,139,69,8,139,128,52,4,0,0,139,64,4,133,192,15,132,161,0,0,0,139,85,8,129,194,104,4,0,0,139,69,8,139,128,52,4,0,0,139,72,4,137,84,36,12,199,68,36,8,2,0,0,0,141,131,246,201,3,0, 139,0,137,68,36,4,137,12,36,232,50,60,1,0,235,106,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,249,39,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,55,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116, 39,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,139,128,52,4,0,0,139,64,4,243,15,17,68,36,4,137,4,36,232,105,59,1,0,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,243,15,16,69,12,243,15,44,192,137,69,244,131,125,244,0,121,7,199,69, 244,0,0,0,0,139,69,8,139,128,96,4,0,0,59,69,244,127,13,139,69,8,139,128,96,4,0,0,72,137,69,244,139,69,8,139,16,141,131,133,241,3,0,139,0,57,194,15,133,58,2,0,0,139,69,8,139,128,92,4,0,0,133,192,15,132,228,0,0,0,139,69,8,139,128,88,4,0,0,59,69,244,15, 132,210,0,0,0,139,69,8,199,128,104,4,0,0,1,0,0,0,139,69,8,139,128,88,4,0,0,243,15,42,192,139,69,8,243,15,17,128,108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,5,185,3,0,139,0,137,66,4,139,85,8,129,194,104, 4,0,0,139,69,8,139,72,12,137,84,36,12,199,68,36,8,2,0,0,0,141,131,121,199,3,0,139,0,137,68,36,4,137,12,36,232,188,39,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,69,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,53,139,85,8,129,194,104,4,0, 0,139,69,8,139,128,52,4,0,0,139,72,4,137,84,36,12,199,68,36,8,2,0,0,0,141,131,121,199,3,0,139,0,137,68,36,4,137,12,36,232,117,58,1,0,139,69,8,139,144,84,4,0,0,139,69,8,139,128,88,4,0,0,57,194,116,18,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0, 139,85,8,139,69,244,137,130,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,199,128,104,4,0,0,1,0,0,0,139,69,8,139,128,84,4,0,0,243, 15,42,192,139,69,8,243,15,17,128,108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,9,185,3,0,139,0,137,66,4,139,85,8,129,194,104,4,0,0,139,69,8,139,72,12,137,84,36,12,199,68,36,8,2,0,0,0,141,131,121,199,3,0, 139,0,137,68,36,4,137,12,36,232,132,38,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,15,132,246,0,0,0,139,69,8,139,128,52,4,0,0,139,64,4,133,192,15,132,226,0,0,0,139,85,8,129,194,104,4,0,0,139,69,8,139,128,52,4,0,0,139,72,4,137,84,36,12,199,68,36, 8,2,0,0,0,141,131,121,199,3,0,139,0,137,68,36,4,137,12,36,232,53,57,1,0,233,168,0,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,85,8,139,69,244,137,130,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69, 8,137,4,36,255,210,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,187,36,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,55,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,39,139,69,8,139,128,84,4,0,0, 243,15,42,192,139,69,8,139,128,52,4,0,0,139,64,4,243,15,17,68,36,4,137,4,36,232,43,56,1,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,243,15,16,69,12,243,15,44,192,137,69,244,131,125,244,0,121,7,199,69,244,0,0,0,0,139,69,8,139,128,96, 4,0,0,59,69,244,127,13,139,69,8,139,128,96,4,0,0,72,137,69,244,139,69,8,139,16,141,131,71,238,3,0,139,0,57,194,15,133,102,2,0,0,139,69,8,139,128,92,4,0,0,133,192,15,132,250,0,0,0,139,69,8,139,128,88,4,0,0,59,69,244,15,132,232,0,0,0,139,69,8,139,128,28, 4,0,0,37,0,0,0,4,133,192,15,132,210,0,0,0,139,69,8,199,128,104,4,0,0,1,0,0,0,139,69,8,139,128,88,4,0,0,243,15,42,192,139,69,8,243,15,17,128,108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,199,181,3,0,139,0, 137,66,4,139,85,8,129,194,104,4,0,0,139,69,8,139,72,12,137,84,36,12,199,68,36,8,2,0,0,0,141,131,59,196,3,0,139,0,137,68,36,4,137,12,36,232,104,36,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,69,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116, 53,139,85,8,129,194,104,4,0,0,139,69,8,139,128,52,4,0,0,139,72,4,137,84,36,12,199,68,36,8,2,0,0,0,141,131,59,196,3,0,139,0,137,68,36,4,137,12,36,232,33,55,1,0,139,69,8,139,144,84,4,0,0,139,69,8,139,128,88,4,0,0,57,194,116,18,139,69,8,139,144,84,4,0,0, 139,69,8,137,144,88,4,0,0,139,85,8,139,69,244,137,130,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,139,128,28,4,0,0,37,0,0,0,4,133, 192,15,132,153,1,0,0,139,69,8,199,128,104,4,0,0,1,0,0,0,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,243,15,17,128,108,4,0,0,139,69,8,5,104,4,0,0,131,192,8,199,0,1,0,0,0,139,69,8,5,104,4,0,0,141,80,8,141,131,203,181,3,0,139,0,137,66,4,139,85,8,129, 194,104,4,0,0,139,69,8,139,72,12,137,84,36,12,199,68,36,8,2,0,0,0,141,131,59,196,3,0,139,0,137,68,36,4,137,12,36,232,26,35,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,15,132,8,1,0,0,139,69,8,139,128,52,4,0,0,139,64,4,133,192,15,132,244,0,0,0,139, 85,8,129,194,104,4,0,0,139,69,8,139,128,52,4,0,0,139,72,4,137,84,36,12,199,68,36,8,2,0,0,0,141,131,59,196,3,0,139,0,137,68,36,4,137,12,36,232,203,53,1,0,233,186,0,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,85,8,139,69,244,137,130,84, 4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,128,28,4,0,0,37,0,0,0,4,133,192,116,106,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,63,33, 1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,55,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,39,139,69,8,139,128,84,4,0,0,243,15,42,192,139,69,8,139,128,52,4,0,0,139,64,4,243,15,17,68,36,4,137,4,36,232,175,52,1,0,131,196,36,91,201,195,85, 137,229,86,131,236,36,243,15,16,69,16,243,15,44,240,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36,232,79,161,253,255,137,242,41,194,137,208,137,69,244,139,69,8,139,64,36,139,85,244,137,193,137,208,193,250,31,247,249,243,15,42,192,243,15,17,68,36, 4,139,69,8,137,4,36,232,241,248,255,255,131,196,36,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,131,125,36,0,116,67,243,15,42,69,28,243,15,42,77,24,243,15,42,85,20,243,15,42,93,16,139,85,8,243,15,17,68,36,20,141,131,240,177,3,0,139,0,137,68,36, 16,243,15,17,76,36,12,243,15,17,84,36,8,243,15,17,92,36,4,137,20,36,232,79,255,255,255,184,1,0,0,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,99,191,3,0,139,0,139,0,133,192,117,27,139,69,8,139,128,36,4,0,0,131,224,1,133,192, 116,11,139,69,8,137,4,36,232,215,245,255,255,131,196,20,91,201,195,85,137,229,131,236,40,243,15,16,69,12,243,15,44,192,137,69,244,131,125,244,0,127,7,199,69,244,1,0,0,0,129,125,244,128,0,0,0,126,7,199,69,244,128,0,0,0,139,69,8,139,128,96,4,0,0,59,69, 244,15,132,137,0,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,4,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,244,137,130,96,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,139,128,96,4,0,0,57,194,124,21,139,69,8,139,128,96,4,0,0,141, 80,255,139,69,8,137,144,84,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,2,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,131,236,24,139,69,20,137,68,36,8,139,69,16,137,68, 36,4,199,4,36,0,0,0,0,232,223,119,0,0,137,4,36,232,111,42,252,255,137,194,139,69,8,137,80,40,139,69,8,139,80,40,139,69,8,137,80,36,139,69,8,137,68,36,4,139,69,8,137,4,36,232,244,58,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16, 139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,20,59,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,151,59,252,255,201, 195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,253,59,252,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,227, 51,252,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,189,52,252,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,62,54,252,255,201,195,85,137,229,131, 236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,250,54,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36, 4,139,69,8,137,4,36,232,169,55,252,255,201,195,85,137,229,83,131,236,4,232,0,0,0,0,91,141,131,233,174,3,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,139,77,8,15,182,192,137,194,131,226,1,139,129,36,4,0,0,131,224,254,9,208,137,129,36,4,0,0,131, 196,4,91,201,195,85,137,229,131,236,8,139,69,8,199,128,92,4,0,0,1,0,0,0,201,195,85,137,229,131,236,8,139,69,8,199,128,92,4,0,0,0,0,0,0,201,195,85,137,229,83,129,236,244,0,0,0,232,0,0,0,0,91,139,69,8,137,133,36,255,255,255,139,69,16,137,133,32,255,255, 255,141,131,27,188,3,0,139,0,139,16,137,85,244,49,210,131,125,20,0,116,16,141,131,247,230,3,0,139,0,137,133,28,255,255,255,235,14,141,131,243,230,3,0,139,0,137,133,28,255,255,255,139,141,28,255,255,255,137,12,36,232,56,40,1,0,137,133,96,255,255,255,199, 133,44,255,255,255,0,0,252,255,199,133,48,255,255,255,255,255,255,255,199,133,52,255,255,255,255,255,255,255,199,133,92,255,255,255,15,0,0,0,199,133,88,255,255,255,0,0,0,0,199,133,84,255,255,255,0,0,0,0,199,133,80,255,255,255,0,0,0,0,199,133,76,255,255, 255,248,255,255,255,199,133,72,255,255,255,1,0,0,0,199,133,68,255,255,255,8,0,0,0,199,133,64,255,255,255,10,0,0,0,199,133,60,255,255,255,50,0,0,0,199,133,56,255,255,255,250,0,0,0,131,125,12,15,15,133,67,3,0,0,139,133,32,255,255,255,139,0,131,248,1,15, 133,50,3,0,0,139,133,32,255,255,255,131,192,8,139,0,131,248,1,15,133,30,3,0,0,139,133,32,255,255,255,131,192,16,139,0,131,248,1,15,133,10,3,0,0,139,133,32,255,255,255,131,192,24,139,0,131,248,1,15,133,246,2,0,0,139,133,32,255,255,255,131,192,32,139,0, 131,248,2,116,20,139,133,32,255,255,255,131,192,32,139,0,131,248,1,15,133,210,2,0,0,139,133,32,255,255,255,131,192,40,139,0,131,248,2,116,20,139,133,32,255,255,255,131,192,40,139,0,131,248,1,15,133,174,2,0,0,139,133,32,255,255,255,131,192,48,139,0,131, 248,2,116,20,139,133,32,255,255,255,131,192,48,139,0,131,248,1,15,133,138,2,0,0,139,133,32,255,255,255,131,192,56,139,0,131,248,1,15,133,118,2,0,0,139,133,32,255,255,255,131,192,64,139,0,131,248,1,15,133,98,2,0,0,139,133,32,255,255,255,131,192,72,139, 0,131,248,1,15,133,78,2,0,0,139,133,32,255,255,255,131,192,80,139,0,131,248,1,15,133,58,2,0,0,139,133,32,255,255,255,131,192,88,139,0,131,248,1,15,133,38,2,0,0,139,133,32,255,255,255,131,192,96,139,0,131,248,1,15,133,18,2,0,0,139,133,32,255,255,255,131, 192,104,139,0,131,248,1,15,133,254,1,0,0,139,133,32,255,255,255,131,192,112,139,0,131,248,1,15,133,234,1,0,0,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,135,115,0,0,137,133,92,255,255,255,139,133,32,255,255,255,137,68, 36,8,139,69,12,137,68,36,4,199,4,36,1,0,0,0,232,100,115,0,0,137,133,72,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,2,0,0,0,232,65,115,0,0,139,149,96,255,255,255,129,194,36,4,0,0,137,68,36,4,137,20,36,232,191,66,252,255, 139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,3,0,0,0,232,12,115,0,0,137,133,68,255,255,255,139,149,96,255,255,255,139,133,32,255,255,255,137,68,36,8,199,68,36,4,4,0,0,0,137,20,36,232,252,40,252,255,139,133,32,255,255,255,137,68,36, 8,139,69,12,137,68,36,4,199,4,36,7,0,0,0,232,201,114,0,0,137,133,80,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,8,0,0,0,232,166,114,0,0,137,133,76,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4, 199,4,36,9,0,0,0,232,131,114,0,0,139,149,96,255,255,255,129,194,28,4,0,0,137,68,36,4,137,20,36,232,24,67,252,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,10,0,0,0,232,78,114,0,0,137,133,64,255,255,255,139,133,32,255,255,255,137, 68,36,8,139,69,12,137,68,36,4,199,4,36,11,0,0,0,232,43,114,0,0,137,133,44,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,12,0,0,0,232,8,114,0,0,137,133,48,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68, 36,4,199,4,36,13,0,0,0,232,229,113,0,0,137,133,52,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,14,0,0,0,232,194,113,0,0,137,133,88,255,255,255,235,30,139,133,96,255,255,255,199,68,36,8,0,0,0,0,199,68,36,4,4,0,0,0,137, 4,36,232,178,39,252,255,141,147,176,234,255,255,139,133,96,255,255,255,137,80,32,139,149,96,255,255,255,139,130,28,4,0,0,12,128,137,130,28,4,0,0,139,149,96,255,255,255,139,130,28,4,0,0,131,200,64,137,130,28,4,0,0,232,139,178,252,255,137,194,139,133,96, 255,255,255,137,80,28,139,133,96,255,255,255,139,128,52,4,0,0,139,16,141,131,159,87,3,0,137,68,36,4,137,20,36,232,234,177,3,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,128,226,127,137,144,28,4,0,0,139,133,96,255,255,255,139,128,56,4,0,0, 139,16,141,131,159,87,3,0,137,68,36,4,137,20,36,232,177,177,3,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,131,226,191,137,144,28,4,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,1,117,83,184,255,255,255,255,131,248,255,116, 41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,159,67,3,0,137,68,36,4,137,20,36,232,58,175,3,0,233,232,0,0,0,139,149,96,255,255,255,131,194,52,141,131,159,67,3,0,137,68,36,4,137,20,36,232,172,2,0,0,233,200,0,0,0,139,133, 96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,2,117,80,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,223,129,3,0,137,68,36,4,137,20,36,232,211,174,3,0,233,129,0,0,0,139,149,96,255, 255,255,131,194,52,141,131,223,129,3,0,137,68,36,4,137,20,36,232,69,2,0,0,235,100,139,149,96,255,255,255,139,130,28,4,0,0,131,224,192,137,130,28,4,0,0,184,255,255,255,255,131,248,255,116,40,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68, 36,8,141,131,43,188,3,0,139,0,137,68,36,4,137,20,36,232,108,174,3,0,235,29,139,133,96,255,255,255,131,192,52,141,147,43,188,3,0,139,18,137,84,36,4,137,4,36,232,223,1,0,0,131,189,68,255,255,255,0,127,10,199,133,68,255,255,255,1,0,0,0,129,189,68,255,255, 255,128,0,0,0,126,10,199,133,68,255,255,255,128,0,0,0,139,149,96,255,255,255,139,133,68,255,255,255,137,130,96,4,0,0,131,189,88,255,255,255,0,121,10,199,133,88,255,255,255,0,0,0,0,139,133,96,255,255,255,139,128,96,4,0,0,59,133,88,255,255,255,127,19,139, 133,96,255,255,255,139,128,96,4,0,0,72,137,133,88,255,255,255,139,133,96,255,255,255,139,128,36,4,0,0,131,224,1,133,192,116,20,139,149,96,255,255,255,139,133,88,255,255,255,137,130,84,4,0,0,235,16,139,133,96,255,255,255,199,128,84,4,0,0,0,0,0,0,139,133, 96,255,255,255,139,144,84,4,0,0,139,133,96,255,255,255,137,144,88,4,0,0,131,189,72,255,255,255,0,15,149,192,15,182,208,139,133,96,255,255,255,137,144,92,4,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,64,133,192,116,30,139,133,96,255,255,255,139, 128,56,4,0,0,139,149,96,255,255,255,137,68,36,4,137,20,36,232,207,36,1,0,139,149,96,255,255,255,139,133,80,255,255,255,137,66,44,139,149,96,255,255,255,139,133,76,255,255,255,137,66,48,131,189,64,255,255,255,3,127,10,199,133,64,255,255,255,4,0,0,0,139, 149,96,255,255,255,139,133,64,255,255,255,137,130,32,4,0,0,139,133,92,255,255,255,137,4,36,232,236,32,252,255,137,194,139,133,96,255,255,255,137,80,40,139,133,96,255,255,255,139,80,40,139,133,96,255,255,255,137,80,36,139,133,96,255,255,255,137,4,36,232, 216,34,252,255,139,149,96,255,255,255,141,133,44,255,255,255,137,68,36,4,137,20,36,232,89,40,252,255,139,149,96,255,255,255,141,131,235,188,3,0,139,0,137,68,36,4,137,20,36,232,110,19,1,0,139,133,96,255,255,255,141,147,27,188,3,0,139,18,139,77,244,51, 10,116,5,232,107,172,3,0,129,196,244,0,0,0,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,77,172,3,0,201,195,85,137,229,131,236,24,199,68,36,12,0,0,0,0,139,69,16,137,68,36,8,139,69,12,137, 68,36,4,139,69,8,137,4,36,232,152,247,255,255,201,195,85,137,229,131,236,24,199,68,36,12,1,0,0,0,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,111,247,255,255,201,195,85,137,229,131,236,24,139,69,8,139,128,28,4,0,0,131,224,64,133, 192,116,24,139,69,8,139,128,56,4,0,0,139,85,8,137,68,36,4,137,20,36,232,59,36,1,0,139,69,8,137,4,36,232,225,103,2,0,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,141,179,183,255,255,255,141,187,101,255,255,255,141,131,242,61,3,0,137,4,36,232, 110,234,0,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,120,4,0,0,137,116,36,8,137,124,36,4,137,4,36,232,34,223,0,0,137,194,141,131,38,222,3,0,137,16,141,147,28,234,255,255,141,131,38,222,3,0,139,0,137,84,36,4,137,4,36, 232,149,230,0,0,141,147,215,239,255,255,141,131,38,222,3,0,139,0,137,84,36,4,137,4,36,232,157,230,0,0,141,131,222,58,3,0,137,4,36,232,242,233,0,0,137,194,141,139,83,243,255,255,141,131,38,222,3,0,139,0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0,0,199,68, 36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,141,226,0,0,141,131,178,85,3,0,137,4,36,232,148,233,0,0,137,194,141,139,120,231,255,255,141,131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199, 68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,79,226,0,0,141,131,6,61,3,0,137,4,36,232,86,233,0,0,137,194,141,139,15,244,255,255,141,131,38,222,3,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,25,226,0,0,141,131,210,36,3,0, 137,4,36,232,32,233,0,0,137,194,141,139,70,233,255,255,141,131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,219,225,0,0,141,131,186,85,3,0,137,4,36,232,226,232,0,0,137,194,141,139,23,245,255,255,141, 131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,157,225,0,0,141,131,250,74,3,0,137,4,36,232,164,232,0,0,137,194,141,139,103,245,255,255,141,131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10, 0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,95,225,0,0,141,131,0,75,3,0,137,4,36,232,102,232,0,0,137,194,141,139,150,245,255,255,141,131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,33,225,0,0,141,131, 4,75,3,0,137,4,36,232,40,232,0,0,137,194,141,139,197,245,255,255,141,131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,227,224,0,0,141,131,10,75,3,0,137,4,36,232,234,231,0,0,137,194,141,139,244,245,255, 255,141,131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,165,224,0,0,141,131,194,85,3,0,137,4,36,232,172,231,0,0,137,194,141,139,21,246,255,255,141,131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36, 12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,103,224,0,0,141,131,202,85,3,0,137,4,36,232,110,231,0,0,137,194,141,139,54,246,255,255,141,131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,41,224,0,0, 141,131,242,58,3,0,137,4,36,232,48,231,0,0,137,194,141,139,87,246,255,255,141,131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,235,223,0,0,141,131,210,85,3,0,137,4,36,232,242,230,0,0,137,194,141,139, 134,246,255,255,141,131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,173,223,0,0,141,131,18,75,3,0,137,4,36,232,180,230,0,0,137,194,141,139,181,246,255,255,141,131,38,222,3,0,139,0,199,68,36,16,0,0, 0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,111,223,0,0,141,131,23,75,3,0,137,4,36,232,118,230,0,0,137,194,141,139,75,244,255,255,141,131,38,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232, 49,223,0,0,141,131,30,75,3,0,137,4,36,232,56,230,0,0,137,194,141,139,15,247,255,255,141,131,38,222,3,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,251,222,0,0,141,131,44,75,3,0,137,4,36,232,2,230,0,0,137,194,141,139,250,246,255,255, 141,131,38,222,3,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,197,222,0,0,141,131,86,180,3,0,139,0,141,147,196,226,255,255,137,16,141,131,86,180,3,0,139,0,141,147,134,179,3,0,139,18,137,80,4,141,131,86,180,3,0,139,0,141,147,114,179, 3,0,139,18,137,80,8,141,131,86,180,3,0,139,0,199,64,12,0,0,0,0,141,131,86,180,3,0,139,0,141,147,130,179,3,0,139,18,137,80,16,141,131,86,180,3,0,139,0,141,147,118,179,3,0,139,18,137,80,20,141,131,86,180,3,0,139,0,141,147,174,243,255,255,137,80,24,141, 131,38,222,3,0,139,16,141,131,86,180,3,0,139,0,137,68,36,4,137,20,36,232,35,226,0,0,141,131,242,61,3,0,137,4,36,232,52,229,0,0,137,194,141,131,38,222,3,0,139,0,137,84,36,4,137,4,36,232,64,226,0,0,141,131,38,222,3,0,139,16,141,131,53,227,255,255,137,68, 36,4,137,20,36,232,106,227,0,0,141,131,38,222,3,0,139,16,141,131,27,229,255,255,137,68,36,4,137,20,36,232,111,227,0,0,141,179,183,255,255,255,141,187,142,255,255,255,141,131,17,99,3,0,137,4,36,232,208,228,0,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0, 0,199,68,36,16,0,0,0,0,199,68,36,12,120,4,0,0,137,116,36,8,137,124,36,4,137,4,36,232,132,217,0,0,137,194,141,131,42,222,3,0,137,16,141,147,28,234,255,255,141,131,42,222,3,0,139,0,137,84,36,4,137,4,36,232,247,224,0,0,141,147,215,239,255,255,141,131,42, 222,3,0,139,0,137,84,36,4,137,4,36,232,255,224,0,0,141,131,222,58,3,0,137,4,36,232,84,228,0,0,137,194,141,139,83,243,255,255,141,131,42,222,3,0,139,0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0, 0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,239,220,0,0,141,131,178,85,3,0,137,4,36,232,246,227,0,0,137,194,141,139,120,231,255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36, 232,177,220,0,0,141,131,6,61,3,0,137,4,36,232,184,227,0,0,137,194,141,139,15,244,255,255,141,131,42,222,3,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,123,220,0,0,141,131,210,36,3,0,137,4,36,232,130,227,0,0,137,194,141,139,70,233, 255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,61,220,0,0,141,131,186,85,3,0,137,4,36,232,68,227,0,0,137,194,141,139,23,245,255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68, 36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,255,219,0,0,141,131,250,74,3,0,137,4,36,232,6,227,0,0,137,194,141,139,103,245,255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,193,219, 0,0,141,131,0,75,3,0,137,4,36,232,200,226,0,0,137,194,141,139,150,245,255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,131,219,0,0,141,131,4,75,3,0,137,4,36,232,138,226,0,0,137,194,141,139, 197,245,255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,69,219,0,0,141,131,10,75,3,0,137,4,36,232,76,226,0,0,137,194,141,139,244,245,255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0, 0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,7,219,0,0,141,131,194,85,3,0,137,4,36,232,14,226,0,0,137,194,141,139,21,246,255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,201, 218,0,0,141,131,202,85,3,0,137,4,36,232,208,225,0,0,137,194,141,139,54,246,255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,139,218,0,0,141,131,242,58,3,0,137,4,36,232,146,225,0,0,137,194, 141,139,87,246,255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,77,218,0,0,141,131,210,85,3,0,137,4,36,232,84,225,0,0,137,194,141,139,134,246,255,255,141,131,42,222,3,0,139,0,199,68,36,16, 0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,15,218,0,0,141,131,18,75,3,0,137,4,36,232,22,225,0,0,137,194,141,139,181,246,255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36, 232,209,217,0,0,141,131,23,75,3,0,137,4,36,232,216,224,0,0,137,194,141,139,75,244,255,255,141,131,42,222,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,147,217,0,0,141,131,30,75,3,0,137,4,36,232,154,224,0,0,137, 194,141,139,15,247,255,255,141,131,42,222,3,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,93,217,0,0,141,131,44,75,3,0,137,4,36,232,100,224,0,0,137,194,141,139,250,246,255,255,141,131,42,222,3,0,139,0,199,68,36,12,0,0,0,0,137,84,36, 8,137,76,36,4,137,4,36,232,39,217,0,0,141,131,42,222,3,0,139,16,141,131,86,180,3,0,139,0,137,68,36,4,137,20,36,232,1,221,0,0,141,131,242,61,3,0,137,4,36,232,18,224,0,0,137,194,141,131,42,222,3,0,139,0,137,84,36,4,137,4,36,232,30,221,0,0,131,196,60,91, 94,95,201,195,85,137,229,87,86,83,131,236,76,232,0,0,0,0,91,139,69,8,137,69,228,139,69,12,137,4,36,232,246,193,252,255,133,192,15,132,172,0,0,0,139,85,228,139,69,12,137,68,36,4,137,20,36,232,248,137,253,255,137,194,139,69,228,139,64,36,141,52,2,139,69, 228,139,128,88,4,0,0,141,72,50,199,69,212,31,133,235,81,139,69,212,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,242,41,194,137,208,137,69,224,139,85,228,139,69,12,137,68,36,4,137,20,36,232,167,136,253,255,137,69,220,139,69,228,139, 64,40,137,198,3,117,220,139,125,220,71,139,69,12,137,4,36,232,190,116,253,255,137,194,139,69,224,137,68,36,24,137,116,36,20,139,69,224,137,68,36,16,137,124,36,12,139,69,228,137,68,36,8,137,84,36,4,141,131,179,64,3,0,137,4,36,232,58,117,1,0,131,196,76, 91,94,95,201,195,85,137,229,87,86,83,131,236,108,232,0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20,36,232,48,136,253,255,137,69,228,139,85,8,139,69,12,137,68,36,4,137,20,36,232,32,137,253,255,137,69,224,139,69,8,139,64,36,137,198,3,117,224,139,69, 8,139,128,88,4,0,0,141,72,50,199,69,196,31,133,235,81,139,69,196,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,242,41,194,137,208,137,69,220,139,69,12,137,4,36,232,7,116,253,255,137,69,216,139,69,8,139,184,44,4,0,0,139,69,8,139,64,36, 3,69,224,141,80,3,139,69,8,139,64,40,137,193,3,77,228,139,117,224,131,238,2,139,69,8,137,68,36,28,137,124,36,24,137,84,36,20,137,76,36,16,137,116,36,12,139,69,228,137,68,36,8,139,69,216,137,68,36,4,141,131,51,42,3,0,137,4,36,232,88,116,1,0,139,69,8,139, 144,40,4,0,0,139,69,8,139,64,40,137,193,3,77,228,139,117,228,70,139,69,8,137,68,36,28,137,84,36,24,139,69,220,137,68,36,20,137,76,36,16,139,69,220,137,68,36,12,137,116,36,8,139,69,216,137,68,36,4,141,131,75,64,3,0,137,4,36,232,10,116,1,0,139,69,8,139, 128,48,4,0,0,137,69,200,139,69,8,139,128,32,4,0,0,137,69,204,139,77,8,131,193,52,137,77,208,139,69,8,139,128,60,4,0,0,139,16,141,131,83,67,3,0,137,68,36,4,137,20,36,232,245,160,3,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,212,235,9,141,131, 119,36,3,0,137,69,212,139,69,8,139,64,48,137,194,3,85,224,139,69,8,139,64,44,137,193,3,77,228,139,69,8,137,68,36,36,139,69,200,137,68,36,32,141,131,227,167,3,0,139,0,137,68,36,28,139,69,204,137,68,36,24,139,69,208,137,68,36,20,139,69,212,137,68,36,16, 137,84,36,12,137,76,36,8,139,69,216,137,68,36,4,141,131,179,42,3,0,137,4,36,232,77,115,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,85,139,69,8,139,64,36,3,69,224,141,80,3,139,77,228,131,193,7,139,69,8,139,64,36,3,69,224,141,112,2,199,68,36, 28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,139,69,228,137,68,36,8,139,69,216,137,68,36,4,141,131,51,43,3,0,137,4,36,232,230,114,1,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,71,139,85,224,74,139,77,228,131,193,7,139, 117,224,131,238,2,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,139,69,228,137,68,36,8,139,69,216,137,68,36,4,141,131,119,43,3,0,137,4,36,232,143,114,1,0,131,196,108,91,94,95,201,195,85,137,229,86,83,131,236,64,232, 0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20,36,232,134,133,253,255,137,69,244,139,85,8,139,69,12,137,68,36,4,137,20,36,232,118,134,253,255,137,69,240,139,69,8,139,64,36,137,198,3,117,240,139,69,8,139,128,88,4,0,0,141,72,50,199,69,228,31,133,235, 81,139,69,228,247,233,193,250,5,137,200,193,248,31,137,209,41,193,137,200,137,242,41,194,137,208,137,69,236,139,69,12,137,4,36,232,93,113,253,255,137,69,232,139,69,8,139,64,36,3,69,240,141,72,3,139,69,8,139,64,40,3,69,244,139,85,240,131,234,2,137,76, 36,24,137,68,36,20,137,84,36,16,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,232,137,68,36,4,141,131,17,41,3,0,137,4,36,232,189,113,1,0,139,69,8,139,64,40,137,194,3,85,244,139,77,244,65,139,69,236,137,68,36,24,137,84,36,20,139,69,236,137,68,36, 16,137,76,36,12,139,69,8,137,68,36,8,139,69,232,137,68,36,4,141,131,45,61,3,0,137,4,36,232,124,113,1,0,139,69,8,139,64,48,137,194,3,85,240,139,69,8,139,64,44,3,69,244,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,232,137,68,36,4,141,131,41,34, 3,0,137,4,36,232,68,113,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,85,139,69,8,139,64,36,3,69,240,141,80,3,139,77,244,131,193,7,139,69,8,139,64,36,3,69,240,131,192,2,137,84,36,28,137,76,36,24,137,68,36,20,139,69,244,137,68,36,16,199,68,36, 12,0,0,0,0,139,69,8,137,68,36,8,139,69,232,137,68,36,4,141,131,89,41,3,0,137,4,36,232,221,112,1,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,71,139,69,240,72,139,85,244,131,194,7,139,77,240,131,233,2,137,68,36,28,137,84,36,24,137,76,36,20,139,69, 244,137,68,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,232,137,68,36,4,141,131,129,41,3,0,137,4,36,232,134,112,1,0,131,196,64,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,186,111,253,255,137,69,244,139,69,8, 137,68,36,8,139,69,244,137,68,36,4,141,131,158,39,3,0,137,4,36,232,72,112,1,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,226,59,3,0,137,4,36,232,44,112,1,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,250,59,3,0,137,4,36,232,16,112,1, 0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,206,39,3,0,137,4,36,232,218,111,1,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,36,199,68,36,12,0,0,0,0,139,69,8,137, 68,36,8,139,69,244,137,68,36,4,141,131,20,60,3,0,137,4,36,232,166,111,1,0,131,196,36,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,12,137,4,36,232,219,110,253,255,137,69,244,139,69,8,139,128,60,4,0,0,139,16,141,131,195,61,3,0,137,68,36,4, 137,20,36,232,145,156,3,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,224,235,9,141,131,231,30,3,0,137,69,224,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,8,139,128,48,4,0,0,137,69,228,235,7,199,69,228,255,0,0,0,139,69,8,139,144, 32,4,0,0,139,77,8,131,193,52,139,69,224,137,68,36,28,139,69,228,137,68,36,24,141,131,83,162,3,0,139,0,137,68,36,20,137,84,36,16,137,76,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,11,39,3,0,137,4,36,232,215,110,1,0,139,69,8,139,128,40,4, 0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,79,59,3,0,137,4,36,232,174,110,1,0,139,69,8,139,128,44,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,91,39,3,0,137,4,36,232,133,110,1,0,131,196,68,91,201,195, 85,137,229,86,83,131,236,48,232,0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20,36,232,126,129,253,255,137,69,244,139,85,8,139,69,12,137,68,36,4,137,20,36,232,110,130,253,255,137,69,240,139,69,12,137,4,36,232,143,109,253,255,137,69,236,139,69,16,131, 224,1,132,192,116,103,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,117,85,139,69,8,139,64,36,3,69,240,141,80,3,139,77,244,131,193,7,139,69,8,139,64,36,3,69,240,141,112,2,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36, 12,139,69,244,137,68,36,8,139,69,236,137,68,36,4,141,131,101,38,3,0,137,4,36,232,200,109,1,0,139,69,16,131,224,1,133,192,117,54,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,236,137,68,36,4,141, 131,205,37,3,0,137,4,36,232,136,109,1,0,139,69,16,131,224,2,133,192,116,87,139,69,8,139,128,28,4,0,0,131,224,64,133,192,117,71,139,85,240,74,139,77,244,131,193,7,139,117,240,131,238,2,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36, 16,137,116,36,12,139,69,244,137,68,36,8,139,69,236,137,68,36,4,141,131,157,38,3,0,137,4,36,232,39,109,1,0,139,69,16,131,224,2,133,192,117,52,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116,36,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,236,137, 68,36,4,141,131,19,58,3,0,137,4,36,232,233,108,1,0,131,196,48,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,29,108,253,255,137,69,244,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,116,74,199,68,36,12,255,0,0,0,139,69,8,137, 68,36,8,139,69,244,137,68,36,4,141,131,53,37,3,0,137,4,36,232,145,108,1,0,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,149,37,3,0,137,4,36,232,109,108,1,0,235,77,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68, 36,4,141,131,53,37,3,0,137,4,36,232,71,108,1,0,139,69,8,139,128,48,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,149,37,3,0,137,4,36,232,30,108,1,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,16,0,117, 33,141,131,254,245,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,200,114,1,0,233,167,0,0,0,131,125,16,1,117,23,139,69,12,137,68,36,4,139,69,8,137,4,36,232,69,249,255,255,233,138,0,0,0,131,125,16,2,117,20,139,69,12,137,68,36,4,139,69, 8,137,4,36,232,125,246,255,255,235,112,131,125,16,3,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,179,254,255,255,235,86,131,125,16,4,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,252,250,255,255,235,60,131,125,16,5,117,20,139,69,12,137,68, 36,4,139,69,8,137,4,36,232,193,251,255,255,235,34,131,125,16,5,126,28,139,69,16,131,232,6,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,190,252,255,255,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,85,244,139,69,12,137, 68,36,4,137,20,36,232,56,126,253,255,137,194,139,69,16,137,16,139,85,244,139,69,12,137,68,36,4,137,20,36,232,36,127,253,255,141,80,254,139,69,20,137,16,139,69,16,139,16,139,69,244,139,64,40,1,194,139,69,24,137,16,139,69,20,139,16,139,69,244,139,64,36, 141,4,2,141,80,5,139,69,28,137,16,201,195,85,137,229,87,86,83,129,236,252,0,0,0,232,0,0,0,0,91,139,69,8,137,69,228,139,85,228,141,69,216,137,68,36,8,141,69,204,137,68,36,4,137,20,36,232,19,30,252,255,139,69,228,139,176,96,4,0,0,139,69,228,139,184,88, 4,0,0,139,69,224,137,133,112,255,255,255,139,85,220,137,149,116,255,255,255,139,69,216,137,133,120,255,255,255,139,69,228,139,128,32,4,0,0,137,133,124,255,255,255,139,69,228,5,28,4,0,0,137,4,36,232,74,40,252,255,137,69,128,139,69,228,139,64,48,137,69, 132,139,69,228,139,64,44,137,69,136,139,85,212,137,85,140,139,69,208,137,69,144,139,85,204,137,85,148,139,69,228,5,36,4,0,0,137,4,36,232,12,39,252,255,137,69,152,139,69,228,139,128,92,4,0,0,137,69,156,139,69,228,242,15,16,128,108,4,0,0,242,15,90,192, 243,15,90,192,242,15,17,69,160,139,69,228,242,15,16,128,100,4,0,0,242,15,90,192,243,15,90,192,242,15,17,69,168,139,69,228,139,64,36,137,69,176,139,69,228,139,64,40,137,69,180,141,131,100,101,3,0,137,4,36,232,161,211,0,0,137,69,184,139,69,228,15,183,64, 22,152,137,69,188,139,69,228,15,183,64,20,152,137,69,192,141,131,228,51,3,0,137,4,36,232,122,211,0,0,137,69,196,141,131,104,37,3,0,137,4,36,232,105,211,0,0,137,116,36,104,137,124,36,100,139,149,112,255,255,255,137,84,36,96,139,149,116,255,255,255,137, 84,36,92,139,149,120,255,255,255,137,84,36,88,139,149,124,255,255,255,137,84,36,84,139,85,128,137,84,36,80,139,85,132,137,84,36,76,139,85,136,137,84,36,72,139,85,140,137,84,36,68,139,85,144,137,84,36,64,139,85,148,137,84,36,60,139,85,152,137,84,36,56, 139,85,156,137,84,36,52,242,15,16,69,160,242,15,17,68,36,44,242,15,16,69,168,242,15,17,68,36,36,139,85,176,137,84,36,32,139,85,180,137,84,36,28,139,85,184,137,84,36,24,139,85,188,137,84,36,20,139,85,192,137,84,36,16,139,85,196,137,84,36,12,137,68,36, 8,141,131,172,54,3,0,137,68,36,4,139,69,12,137,4,36,232,75,104,0,0,141,131,192,35,3,0,137,68,36,4,139,69,12,137,4,36,232,54,104,0,0,129,196,252,0,0,0,91,94,95,201,195,85,137,229,131,236,40,131,125,12,1,127,7,199,69,12,2,0,0,0,139,85,8,139,69,12,137,66, 36,139,69,8,139,144,88,4,0,0,139,69,8,139,64,36,107,192,100,131,232,100,57,194,126,39,139,69,8,139,64,36,107,192,100,141,80,156,139,69,8,137,144,84,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,139,128,92,4,0,0,133,192,116,84,139, 69,8,242,15,16,136,108,4,0,0,139,69,8,242,15,16,128,100,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,4,36,232,46,148,3,0,221,93,240,139,69,8,139,64,36,72,242,15,42,192,242,15,16,77,240,242,15,94,200,102,15,40,193,139,69,8,242,15,17,128,116, 4,0,0,235,60,139,69,8,242,15,16,136,108,4,0,0,139,69,8,242,15,16,128,100,4,0,0,242,15,92,200,139,69,8,139,64,36,72,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,139,69,8,242,15,17,128,116,4,0,0,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91, 139,69,12,137,69,240,139,69,16,137,69,244,139,69,20,137,69,232,139,69,24,137,69,236,139,69,8,139,128,92,4,0,0,133,192,15,132,172,0,0,0,141,131,186,140,3,0,242,15,16,0,102,15,46,69,240,122,2,116,2,235,36,141,131,186,140,3,0,242,15,16,0,102,15,46,69,232, 122,2,116,2,235,15,141,131,194,140,3,0,242,15,16,0,242,15,17,69,232,141,131,186,140,3,0,242,15,16,8,242,15,16,69,232,102,15,46,193,119,2,235,45,141,131,186,140,3,0,242,15,16,0,102,15,46,69,240,115,2,235,73,242,15,16,77,232,141,131,154,143,3,0,242,15, 16,0,242,15,89,193,242,15,17,69,240,235,47,141,131,186,140,3,0,242,15,16,8,242,15,16,69,240,102,15,46,193,119,2,235,24,242,15,16,77,240,141,131,154,143,3,0,242,15,16,0,242,15,89,193,242,15,17,69,232,139,69,8,242,15,16,69,240,242,15,17,128,100,4,0,0,139, 69,8,242,15,16,69,232,242,15,17,128,108,4,0,0,139,69,8,242,15,16,136,100,4,0,0,139,69,8,242,15,16,128,108,4,0,0,102,15,46,200,119,2,235,23,139,69,8,139,144,36,4,0,0,129,202,0,0,0,16,137,144,36,4,0,0,235,21,139,69,8,139,144,36,4,0,0,129,226,255,255,255, 239,137,144,36,4,0,0,139,69,8,139,128,92,4,0,0,133,192,116,84,139,69,8,242,15,16,136,108,4,0,0,139,69,8,242,15,16,128,100,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,4,36,232,67,146,3,0,221,93,224,139,69,8,139,64,36,72,242,15,42,192,242, 15,16,77,224,242,15,94,200,102,15,40,193,139,69,8,242,15,17,128,116,4,0,0,235,60,139,69,8,242,15,16,136,108,4,0,0,139,69,8,242,15,16,128,100,4,0,0,242,15,92,200,139,69,8,139,64,36,72,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,139,69,8,242, 15,17,128,116,4,0,0,131,196,52,91,201,195,85,137,229,87,86,83,129,236,236,3,0,0,232,0,0,0,0,91,139,69,8,137,133,164,252,255,255,139,69,12,137,133,160,252,255,255,141,131,82,152,3,0,139,0,139,16,137,85,228,49,210,139,133,164,252,255,255,137,133,192,252, 255,255,139,149,192,252,255,255,141,133,180,252,255,255,137,68,36,4,137,20,36,232,51,25,252,255,139,133,192,252,255,255,139,128,48,4,0,0,137,194,129,226,255,255,255,0,139,133,192,252,255,255,139,128,40,4,0,0,137,193,129,225,255,255,255,0,139,133,192, 252,255,255,139,128,44,4,0,0,137,198,129,230,255,255,255,0,139,133,192,252,255,255,139,184,32,4,0,0,139,133,192,252,255,255,139,128,28,4,0,0,131,224,63,15,182,192,137,133,120,252,255,255,139,133,192,252,255,255,139,64,48,137,133,124,252,255,255,139,133, 192,252,255,255,139,64,44,137,133,128,252,255,255,139,133,188,252,255,255,139,0,137,133,132,252,255,255,139,133,184,252,255,255,139,0,137,133,136,252,255,255,139,133,180,252,255,255,139,0,137,133,140,252,255,255,139,133,192,252,255,255,139,128,96,4,0, 0,137,133,144,252,255,255,139,133,192,252,255,255,139,128,36,4,0,0,131,224,1,15,182,192,137,133,148,252,255,255,139,133,192,252,255,255,139,128,92,4,0,0,137,133,152,252,255,255,139,133,192,252,255,255,242,15,16,128,108,4,0,0,139,133,192,252,255,255,242, 15,16,136,100,4,0,0,139,133,192,252,255,255,139,64,36,137,133,156,252,255,255,139,133,192,252,255,255,139,64,40,137,84,36,104,137,76,36,100,137,116,36,96,137,124,36,92,139,149,120,252,255,255,137,84,36,88,139,149,124,252,255,255,137,84,36,84,139,149, 128,252,255,255,137,84,36,80,139,149,132,252,255,255,137,84,36,76,139,149,136,252,255,255,137,84,36,72,139,149,140,252,255,255,137,84,36,68,199,68,36,64,255,255,255,255,139,149,144,252,255,255,137,84,36,60,139,149,148,252,255,255,137,84,36,56,139,149, 152,252,255,255,137,84,36,52,199,68,36,48,0,0,0,0,242,15,17,68,36,40,242,15,17,76,36,32,199,68,36,28,2,0,0,0,139,149,156,252,255,255,137,84,36,24,199,68,36,20,8,0,0,0,137,68,36,16,141,131,234,86,3,0,137,68,36,12,199,68,36,8,32,3,0,0,199,68,36,4,0,0,0, 0,141,133,196,252,255,255,137,4,36,232,120,142,3,0,139,149,192,252,255,255,141,133,196,252,255,255,137,68,36,8,139,133,192,252,255,255,137,68,36,4,137,20,36,232,171,71,2,0,141,131,82,152,3,0,139,0,139,85,228,51,16,116,5,232,72,142,3,0,129,196,236,3,0, 0,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,128,92,4,0,0,133,192,116,88,139,69,8,242,15,16,128,100,4,0,0,242,15,17,69,216,139,69,8,242,15,16,136,116,4,0,0,139,69,8,139,128,88,4,0,0,242,15,42,192,242,15,89,200,141,131,47,139, 3,0,242,15,16,0,242,15,89,193,242,15,17,4,36,232,123,142,3,0,221,93,224,242,15,16,69,216,242,15,89,69,224,242,15,17,69,240,235,62,139,69,8,139,128,88,4,0,0,242,15,42,200,141,131,47,139,3,0,242,15,16,0,242,15,89,200,139,69,8,242,15,16,128,116,4,0,0,242, 15,89,200,139,69,8,242,15,16,128,100,4,0,0,242,15,88,193,242,15,17,69,240,242,15,16,77,240,141,131,127,139,3,0,242,15,16,0,102,15,46,193,119,2,235,34,242,15,16,69,240,141,131,135,139,3,0,102,15,46,0,119,2,235,15,141,131,79,136,3,0,242,15,16,0,242,15, 17,69,240,242,15,90,69,240,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,218,245,0,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,47,139,69,8,139,128,52,4,0,0,139,64,4,133,192,116,31,242,15,90,69,240,139,69,8,139,128,52,4,0,0,139,64,4,243,15, 17,68,36,4,137,4,36,232,82,9,1,0,131,196,52,91,201,195,85,137,229,131,236,120,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,70,78,0,0,137,69,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,41,78,0,0,137,69,240, 139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,177,77,0,0,217,93,176,243,15,90,69,176,242,15,17,69,216,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,3,0,0,0,232,138,77,0,0,217,93,180,243,15,90,69,180,242,15,17,69,208,139,69,20, 137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,190,77,0,0,137,69,236,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,17,0,0,0,232,161,77,0,0,137,69,232,131,125,236,0,116,7,199,69,236,1,0,0,0,139,85,8,139,69,236,137,130,92,4,0,0,131,125,232, 0,116,15,139,69,8,199,128,96,4,0,0,1,0,0,0,235,13,139,69,8,199,128,96,4,0,0,0,0,0,0,139,85,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,69,196,137,68,36,4,137,20,36,232,247,20,252,255,137,69,228,139,69,244,137,4,36,232,205,255,251,255,137,194,139, 69,8,137,80,40,139,69,240,137,68,36,4,139,69,8,137,4,36,232,6,248,255,255,242,15,16,69,208,242,15,17,68,36,12,242,15,16,69,216,242,15,17,68,36,4,139,69,8,137,4,36,232,224,248,255,255,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,5,0,0,0,137,68,36, 4,139,69,8,137,4,36,255,210,139,69,8,139,72,32,139,85,228,131,194,6,139,69,8,139,64,28,137,84,36,8,137,68,36,4,139,69,8,137,4,36,255,209,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,8, 139,64,28,137,84,36,4,137,4,36,232,48,175,252,255,201,195,85,137,229,87,86,131,236,64,139,69,8,139,128,88,4,0,0,137,69,244,139,69,8,139,128,28,4,0,0,37,0,0,0,2,133,192,116,31,139,69,8,139,144,84,4,0,0,243,15,16,69,16,243,15,44,192,41,194,139,69,8,137, 144,84,4,0,0,235,32,139,69,8,139,144,84,4,0,0,243,15,16,69,16,243,15,44,192,107,192,100,41,194,139,69,8,137,144,84,4,0,0,139,69,8,139,144,84,4,0,0,139,69,8,137,144,88,4,0,0,139,69,8,139,144,88,4,0,0,139,69,8,139,64,36,107,192,100,131,232,100,57,194,126, 112,139,69,8,139,64,36,107,192,100,141,80,156,139,69,8,137,144,88,4,0,0,139,69,8,139,128,84,4,0,0,141,80,50,139,69,8,137,144,84,4,0,0,139,69,8,139,176,84,4,0,0,139,69,8,139,136,84,4,0,0,199,69,212,31,133,235,81,139,69,212,247,233,193,250,5,137,200,193, 248,31,137,215,41,199,137,125,224,107,69,224,100,137,202,41,194,137,85,224,137,242,43,85,224,139,69,8,137,144,84,4,0,0,139,69,8,139,128,88,4,0,0,133,192,121,104,139,69,8,199,128,88,4,0,0,0,0,0,0,139,69,8,139,128,84,4,0,0,141,80,206,139,69,8,137,144,84, 4,0,0,139,69,8,139,176,84,4,0,0,139,69,8,139,136,84,4,0,0,199,69,212,31,133,235,81,139,69,212,247,233,193,250,5,137,200,193,248,31,137,215,41,199,137,125,228,107,69,228,100,137,202,41,194,137,85,228,137,242,43,85,228,139,69,8,137,144,84,4,0,0,139,69, 8,139,128,88,4,0,0,59,69,244,116,43,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,137,4,36,232,36,251,255,255,131,196,64,94,95,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,139,69,8,139, 128,96,4,0,0,133,192,117,70,139,69,8,139,112,36,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36,232,70,114,253,255,141,4,6,243,15,42,192,243,15,92,69,16,243,15,90,200,141,131,234,132,3,0,242,15,16,0,242,15,89,193,242,15,44,208,139,69,8,137,144,88,4, 0,0,139,69,8,139,144,88,4,0,0,139,69,8,139,64,36,107,192,100,131,232,100,57,194,126,21,139,69,8,139,64,36,107,192,100,141,80,156,139,69,8,137,144,88,4,0,0,139,69,8,139,128,88,4,0,0,133,192,121,13,139,69,8,199,128,88,4,0,0,0,0,0,0,139,69,8,139,144,88, 4,0,0,139,69,8,137,144,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,137,4,36,232,54,250,255,255,243,15,16,69,16,243,15,44,208,243,15,16,69,12,243,15,44,200,141,179,61,254,255,255,139, 125,8,139,69,8,139,64,28,137,84,36,20,137,76,36,16,199,68,36,12,0,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,244,91,253,255,131,196,44,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,69,244,131,125,36,0,116,117,243,15,42,69,28, 243,15,42,77,24,243,15,42,85,20,243,15,42,93,16,243,15,17,68,36,20,141,131,36,130,3,0,139,0,137,68,36,16,243,15,17,76,36,12,243,15,17,84,36,8,243,15,17,92,36,4,139,69,244,137,4,36,232,116,254,255,255,131,125,24,0,116,23,139,69,244,139,144,28,4,0,0,129, 202,0,0,0,2,137,144,28,4,0,0,235,21,139,69,244,139,144,28,4,0,0,129,226,255,255,255,253,137,144,28,4,0,0,184,1,0,0,0,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,128,36,4,0,0,37,0,0,0,16,133,192,116,90,243,15,90,77,12,139, 69,8,242,15,16,128,100,4,0,0,102,15,46,200,119,2,235,20,139,69,8,242,15,16,128,100,4,0,0,242,15,90,192,243,15,17,69,12,243,15,90,77,12,139,69,8,242,15,16,128,108,4,0,0,102,15,46,193,119,2,235,110,139,69,8,242,15,16,128,108,4,0,0,242,15,90,192,243,15, 17,69,12,235,88,243,15,90,77,12,139,69,8,242,15,16,128,108,4,0,0,102,15,46,200,119,2,235,20,139,69,8,242,15,16,128,108,4,0,0,242,15,90,192,243,15,17,69,12,243,15,90,77,12,139,69,8,242,15,16,128,100,4,0,0,102,15,46,193,119,2,235,20,139,69,8,242,15,16, 128,100,4,0,0,242,15,90,192,243,15,17,69,12,139,69,8,139,128,92,4,0,0,133,192,116,72,243,15,90,77,12,139,69,8,242,15,16,128,100,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,4,36,232,173,135,3,0,221,93,224,139,69,8,242,15,16,128,116,4,0,0, 242,15,16,77,224,242,15,94,200,102,15,40,193,242,15,17,69,240,235,48,243,15,90,77,12,139,69,8,242,15,16,128,100,4,0,0,242,15,92,200,139,69,8,242,15,16,128,116,4,0,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,17,69,240,242,15,16,77,240,141,131,35, 131,3,0,242,15,16,0,242,15,89,200,141,131,203,132,3,0,242,15,16,0,242,15,88,193,242,15,44,208,139,69,8,137,144,88,4,0,0,139,69,8,139,144,88,4,0,0,139,69,8,137,144,84,4,0,0,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8, 137,4,36,255,210,131,196,52,91,201,195,85,137,229,131,236,24,139,69,12,137,68,36,4,139,69,8,137,4,36,232,44,254,255,255,139,69,8,139,128,28,4,0,0,37,0,0,0,4,133,192,116,11,139,69,8,137,4,36,232,99,247,255,255,201,195,85,137,229,131,236,24,139,69,20,137, 68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,240,70,0,0,137,4,36,232,128,249,251,255,137,194,139,69,8,137,80,40,131,125,16,1,126,41,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,192,70,0,0,137,68,36,4,139,69,8,137,4,36,232,156, 241,255,255,139,69,8,137,68,36,4,139,69,8,137,4,36,232,226,9,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,2,10,252,255,201,195,85,137,229,131,236, 40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,133,10,252,255,201,195,85,137,229,131,236,72,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,196,69,0,0,217,93,228,243, 15,90,69,228,242,15,17,69,232,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,157,69,0,0,217,93,244,243,15,90,69,244,242,15,16,77,232,242,15,17,76,36,12,242,15,17,68,36,4,139,69,8,137,4,36,232,186,241,255,255,201,195,85,137,229,131,236, 40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,126,10,252,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,100,2,252,255,201,195,85,137, 229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,62,3,252,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,191,4,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20, 137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,123,5,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,42, 6,252,255,201,195,85,137,229,131,236,40,139,69,8,199,128,92,4,0,0,1,0,0,0,139,69,8,242,15,16,136,108,4,0,0,139,69,8,242,15,16,128,100,4,0,0,242,15,17,76,36,12,242,15,17,68,36,4,139,69,8,137,4,36,232,136,240,255,255,201,195,85,137,229,131,236,8,139,69, 8,199,128,92,4,0,0,0,0,0,0,139,69,8,242,15,16,136,108,4,0,0,139,69,8,242,15,16,128,100,4,0,0,242,15,92,200,139,69,8,139,64,36,72,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,139,69,8,242,15,17,128,116,4,0,0,201,195,85,137,229,83,131,236,4, 232,0,0,0,0,91,141,131,215,124,3,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,139,77,8,15,182,192,137,194,131,226,1,139,129,36,4,0,0,131,224,254,9,208,137,129,36,4,0,0,131,196,4,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,147,124, 3,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,15,182,208,139,69,8,137,144,96,4,0,0,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,54,138,3,0,139,0,139,0,133,192,117,59,139,69,8,139,128,36,4,0,0,131,224,1,133,192,116,43,139,69,8,139, 80,32,139,69,8,139,64,28,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,137,4,36,232,213,243,255,255,131,196,20,91,201,195,85,137,229,83,129,236,20,1,0,0,232,0,0,0,0,91,139,69,8,137,133,20,255,255,255,139,69,16,137,133,16,255,255, 255,141,131,167,137,3,0,139,0,139,16,137,85,244,49,210,141,131,135,180,3,0,139,0,137,4,36,232,230,245,0,0,137,133,96,255,255,255,199,133,28,255,255,255,0,0,252,255,199,133,32,255,255,255,255,255,255,255,199,133,36,255,255,255,255,255,255,255,199,133, 92,255,255,255,15,0,0,0,199,133,88,255,255,255,128,0,0,0,199,133,84,255,255,255,0,0,0,0,199,133,80,255,255,255,0,0,0,0,199,133,76,255,255,255,0,0,0,0,199,133,72,255,255,255,247,255,255,255,199,133,68,255,255,255,10,0,0,0,199,133,64,255,255,255,0,0,0, 0,199,133,60,255,255,255,1,0,0,0,141,131,27,124,3,0,242,15,16,0,242,15,17,133,48,255,255,255,141,131,91,127,3,0,242,15,16,0,242,15,17,133,40,255,255,255,139,133,96,255,255,255,5,36,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,22,18,252,255,139,133,96,255,255, 255,5,28,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,18,19,252,255,131,125,12,17,116,10,131,125,12,18,15,133,209,3,0,0,139,133,16,255,255,255,139,0,131,248,1,15,133,192,3,0,0,139,133,16,255,255,255,131,192,8,139,0,131,248,1,15,133,172,3,0,0,139,133,16,255, 255,255,131,192,16,139,0,131,248,1,15,133,152,3,0,0,139,133,16,255,255,255,131,192,24,139,0,131,248,1,15,133,132,3,0,0,139,133,16,255,255,255,131,192,32,139,0,131,248,1,15,133,112,3,0,0,139,133,16,255,255,255,131,192,40,139,0,131,248,1,15,133,92,3,0, 0,139,133,16,255,255,255,131,192,48,139,0,131,248,2,116,20,139,133,16,255,255,255,131,192,48,139,0,131,248,1,15,133,56,3,0,0,139,133,16,255,255,255,131,192,56,139,0,131,248,2,116,20,139,133,16,255,255,255,131,192,56,139,0,131,248,1,15,133,20,3,0,0,139, 133,16,255,255,255,131,192,64,139,0,131,248,2,116,20,139,133,16,255,255,255,131,192,64,139,0,131,248,1,15,133,240,2,0,0,139,133,16,255,255,255,131,192,72,139,0,131,248,1,15,133,220,2,0,0,139,133,16,255,255,255,131,192,80,139,0,131,248,1,15,133,200,2, 0,0,139,133,16,255,255,255,131,192,88,139,0,131,248,1,15,133,180,2,0,0,139,133,16,255,255,255,131,192,96,139,0,131,248,1,15,133,160,2,0,0,139,133,16,255,255,255,131,192,104,139,0,131,248,1,15,133,140,2,0,0,139,133,16,255,255,255,131,192,112,139,0,131, 248,1,15,133,120,2,0,0,139,133,16,255,255,255,131,192,120,139,0,131,248,1,15,133,100,2,0,0,139,133,16,255,255,255,131,232,128,139,0,131,248,1,15,133,80,2,0,0,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,183,64,0,0,137, 133,92,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,1,0,0,0,232,148,64,0,0,137,133,88,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,2,0,0,0,232,22,64,0,0,217,157,8,255,255,255,243,15,90, 133,8,255,255,255,242,15,17,133,48,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,3,0,0,0,232,227,63,0,0,217,157,12,255,255,255,243,15,90,133,12,255,255,255,242,15,17,133,40,255,255,255,139,133,16,255,255,255,137,68,36, 8,139,69,12,137,68,36,4,199,4,36,4,0,0,0,232,11,64,0,0,137,133,84,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,5,0,0,0,232,232,63,0,0,139,149,96,255,255,255,129,194,36,4,0,0,137,68,36,4,137,20,36,232,102,15,252,255,139, 149,96,255,255,255,139,133,16,255,255,255,137,68,36,8,199,68,36,4,6,0,0,0,137,20,36,232,198,245,251,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,9,0,0,0,232,147,63,0,0,137,133,76,255,255,255,139,133,16,255,255,255,137,68,36,8, 139,69,12,137,68,36,4,199,4,36,10,0,0,0,232,112,63,0,0,137,133,72,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,11,0,0,0,232,77,63,0,0,139,149,96,255,255,255,129,194,28,4,0,0,137,68,36,4,137,20,36,232,226,15,252,255,139, 133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,12,0,0,0,232,24,63,0,0,137,133,68,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,13,0,0,0,232,245,62,0,0,137,133,28,255,255,255,139,133,16,255,255,255,137,68, 36,8,139,69,12,137,68,36,4,199,4,36,14,0,0,0,232,210,62,0,0,137,133,32,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,15,0,0,0,232,175,62,0,0,137,133,36,255,255,255,139,133,16,255,255,255,137,68,36,8,139,69,12,137,68,36, 4,199,4,36,16,0,0,0,232,140,62,0,0,137,133,64,255,255,255,235,30,139,133,96,255,255,255,199,68,36,8,0,0,0,0,199,68,36,4,6,0,0,0,137,4,36,232,124,244,251,255,131,125,12,18,117,53,139,133,16,255,255,255,5,136,0,0,0,139,0,131,248,1,117,35,139,133,16,255, 255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,17,0,0,0,232,49,62,0,0,137,133,60,255,255,255,141,147,228,234,255,255,139,133,96,255,255,255,137,80,32,139,149,96,255,255,255,139,130,28,4,0,0,12,128,137,130,28,4,0,0,139,149,96,255,255,255,139,130,28, 4,0,0,131,200,64,137,130,28,4,0,0,232,26,127,252,255,137,194,139,133,96,255,255,255,137,80,28,139,133,96,255,255,255,139,128,36,4,0,0,131,224,1,133,192,116,20,139,149,96,255,255,255,139,133,64,255,255,255,137,130,88,4,0,0,235,16,139,133,96,255,255,255, 199,128,88,4,0,0,0,0,0,0,139,133,96,255,255,255,139,144,88,4,0,0,139,133,96,255,255,255,137,144,84,4,0,0,131,189,84,255,255,255,0,116,10,199,133,84,255,255,255,1,0,0,0,139,149,96,255,255,255,139,133,84,255,255,255,137,130,92,4,0,0,131,189,60,255,255, 255,0,116,10,199,133,60,255,255,255,1,0,0,0,139,149,96,255,255,255,139,133,60,255,255,255,137,130,96,4,0,0,139,133,96,255,255,255,139,128,52,4,0,0,139,16,141,131,43,37,3,0,137,68,36,4,137,20,36,232,224,125,3,0,133,192,117,21,139,133,96,255,255,255,139, 144,28,4,0,0,128,226,127,137,144,28,4,0,0,139,133,96,255,255,255,139,128,56,4,0,0,139,16,141,131,43,37,3,0,137,68,36,4,137,20,36,232,167,125,3,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,131,226,191,137,144,28,4,0,0,139,133,96,255,255,255, 139,128,28,4,0,0,131,224,63,131,248,1,117,83,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,43,17,3,0,137,68,36,4,137,20,36,232,48,123,3,0,233,232,0,0,0,139,149,96,255,255,255,131,194, 52,141,131,43,17,3,0,137,68,36,4,137,20,36,232,255,1,0,0,233,200,0,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,2,117,80,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131, 107,79,3,0,137,68,36,4,137,20,36,232,201,122,3,0,233,129,0,0,0,139,149,96,255,255,255,131,194,52,141,131,107,79,3,0,137,68,36,4,137,20,36,232,152,1,0,0,235,100,139,149,96,255,255,255,139,130,28,4,0,0,131,224,192,137,130,28,4,0,0,184,255,255,255,255,131, 248,255,116,40,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,183,137,3,0,139,0,137,68,36,4,137,20,36,232,98,122,3,0,235,29,139,133,96,255,255,255,131,192,52,141,147,183,137,3,0,139,18,137,84,36,4,137,4,36,232,50,1,0,0,139, 133,96,255,255,255,139,128,28,4,0,0,131,224,64,133,192,116,30,139,133,96,255,255,255,139,128,56,4,0,0,139,149,96,255,255,255,137,68,36,4,137,20,36,232,162,241,0,0,139,149,96,255,255,255,139,133,76,255,255,255,137,66,44,139,149,96,255,255,255,139,133, 72,255,255,255,137,66,48,131,189,68,255,255,255,3,127,10,199,133,68,255,255,255,4,0,0,0,139,149,96,255,255,255,139,133,68,255,255,255,137,130,32,4,0,0,139,133,92,255,255,255,137,4,36,232,191,237,251,255,137,194,139,133,96,255,255,255,137,80,40,139,133, 88,255,255,255,137,68,36,4,139,133,96,255,255,255,137,4,36,232,239,229,255,255,242,15,16,133,40,255,255,255,242,15,17,68,36,12,242,15,16,133,48,255,255,255,242,15,17,68,36,4,139,133,96,255,255,255,137,4,36,232,192,230,255,255,139,149,96,255,255,255,141, 133,28,255,255,255,137,68,36,4,137,20,36,232,10,245,251,255,139,133,96,255,255,255,137,4,36,232,99,239,251,255,139,149,96,255,255,255,141,131,55,137,3,0,139,0,137,68,36,4,137,20,36,232,17,224,0,0,139,133,96,255,255,255,141,147,167,137,3,0,139,18,139, 77,244,51,10,116,5,232,14,121,3,0,129,196,20,1,0,0,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,240,120,3,0,201,195,85,137,229,131,236,24,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116, 24,139,69,8,139,128,56,4,0,0,139,85,8,137,68,36,4,137,20,36,232,48,241,0,0,139,69,8,137,4,36,232,214,52,2,0,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,141,179,183,255,255,255,141,187,141,246,255,255,141,131,63,72,3,0,137,4,36,232,99,183,0, 0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,124,4,0,0,137,116,36,8,137,124,36,4,137,4,36,232,23,172,0,0,137,194,141,131,35,171,3,0,137,16,141,131,196,10,3,0,137,4,36,232,27,183,0,0,141,147,141,246,255,255,199,68,36, 12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,5,175,0,0,141,147,92,234,255,255,141,131,35,171,3,0,139,0,137,84,36,4,137,4,36,232,90,179,0,0,141,147,196,242,255,255,141,131,35,171,3,0,139,0,137,84,36,4,137,4,36,232,98,179,0,0,141,131,211,7, 3,0,137,4,36,232,183,182,0,0,137,194,141,139,63,239,255,255,141,131,35,171,3,0,139,0,199,68,36,32,0,0,0,0,199,68,36,28,1,0,0,0,199,68,36,24,1,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,82, 175,0,0,141,131,165,14,3,0,137,4,36,232,89,182,0,0,137,194,141,139,138,237,255,255,141,131,35,171,3,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,12,175,0,0,141,131,167,34,3,0,137,4,36,232, 19,182,0,0,137,194,141,139,165,235,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,206,174,0,0,141,131,251,9,3,0,137,4,36,232,213,181,0,0,137,194,141,139,49,246,255,255,141,131,35,171,3, 0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,152,174,0,0,141,131,199,241,2,0,137,4,36,232,159,181,0,0,137,194,141,139,8,241,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4, 36,232,90,174,0,0,141,131,175,34,3,0,137,4,36,232,97,181,0,0,137,194,141,139,251,242,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,28,174,0,0,141,131,239,23,3,0,137,4,36,232,35,181,0, 0,137,194,141,139,110,243,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,222,173,0,0,141,131,245,23,3,0,137,4,36,232,229,180,0,0,137,194,141,139,157,243,255,255,141,131,35,171,3,0,139, 0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,160,173,0,0,141,131,196,26,3,0,137,4,36,232,167,180,0,0,137,194,141,139,204,243,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8, 137,76,36,4,137,4,36,232,98,173,0,0,141,131,249,23,3,0,137,4,36,232,105,180,0,0,137,194,141,139,57,244,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,36,173,0,0,141,131,255,23,3,0,137, 4,36,232,43,180,0,0,137,194,141,139,104,244,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,230,172,0,0,141,131,183,34,3,0,137,4,36,232,237,179,0,0,137,194,141,139,137,244,255,255,141,131, 35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,168,172,0,0,141,131,191,34,3,0,137,4,36,232,175,179,0,0,137,194,141,139,170,244,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0, 137,84,36,8,137,76,36,4,137,4,36,232,106,172,0,0,141,131,231,7,3,0,137,4,36,232,113,179,0,0,137,194,141,139,203,244,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,44,172,0,0,141,131,199, 34,3,0,137,4,36,232,51,179,0,0,137,194,141,139,250,244,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,238,171,0,0,141,131,204,26,3,0,137,4,36,232,245,178,0,0,137,194,141,139,41,245,255, 255,141,131,35,171,3,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,184,171,0,0,141,131,208,26,3,0,137,4,36,232,191,178,0,0,137,194,141,139,107,245,255,255,141,131,35,171,3,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4, 36,232,130,171,0,0,141,131,7,24,3,0,137,4,36,232,137,178,0,0,137,194,141,139,188,245,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,68,171,0,0,141,131,213,26,3,0,137,4,36,232,75,178,0,0, 137,194,141,139,1,246,255,255,141,131,35,171,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,6,171,0,0,141,131,79,129,3,0,139,0,141,147,97,226,255,255,137,16,141,131,79,129,3,0,139,0,141,147,123,128,3,0,139,18, 137,80,4,141,131,79,129,3,0,139,0,141,147,103,128,3,0,139,18,137,80,8,141,131,79,129,3,0,139,0,199,64,12,0,0,0,0,141,131,79,129,3,0,139,0,141,147,119,128,3,0,139,18,137,80,16,141,131,79,129,3,0,139,0,141,147,107,128,3,0,139,18,137,80,20,141,131,79,129, 3,0,139,0,141,147,111,240,255,255,137,80,24,141,131,35,171,3,0,139,16,141,131,79,129,3,0,139,0,137,68,36,4,137,20,36,232,100,174,0,0,141,131,196,10,3,0,137,4,36,232,117,177,0,0,137,194,141,131,35,171,3,0,139,0,137,84,36,4,137,4,36,232,129,174,0,0,141, 131,35,171,3,0,139,16,141,131,202,226,255,255,137,68,36,4,137,20,36,232,171,175,0,0,141,131,35,171,3,0,139,16,141,131,224,231,255,255,137,68,36,4,137,20,36,232,176,175,0,0,131,196,60,91,94,95,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,139,69, 12,137,4,36,232,44,147,252,255,133,192,15,132,188,0,0,0,139,69,8,139,64,40,141,80,3,133,192,15,72,194,193,248,2,137,69,244,139,85,8,139,69,12,137,68,36,4,137,20,36,232,26,91,253,255,72,137,69,240,139,85,8,139,69,12,137,68,36,4,137,20,36,232,255,89,253, 255,137,69,236,139,69,244,3,69,236,64,137,69,232,139,69,8,139,64,40,3,69,236,43,69,244,72,137,69,228,139,69,8,139,128,84,4,0,0,141,72,1,139,69,8,139,144,92,4,0,0,184,40,0,0,0,41,208,15,175,193,137,198,3,117,240,139,69,12,137,4,36,232,231,69,253,255,137, 194,137,116,36,24,139,69,228,137,68,36,20,139,69,240,137,68,36,16,139,69,232,137,68,36,12,139,69,8,137,68,36,8,137,84,36,4,141,131,155,57,3,0,137,4,36,232,96,70,1,0,131,196,64,91,94,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,12,137,4,36,232, 148,69,253,255,137,69,244,139,69,12,137,4,36,232,59,146,252,255,133,192,15,132,129,1,0,0,139,85,8,139,69,12,137,68,36,4,137,20,36,232,56,89,253,255,137,69,240,139,85,8,139,69,12,137,68,36,4,137,20,36,232,40,90,253,255,137,69,236,139,69,8,139,128,88,4, 0,0,133,192,15,132,202,0,0,0,139,69,8,139,144,88,4,0,0,141,131,24,122,3,0,139,0,139,4,144,137,69,232,139,69,8,139,128,84,4,0,0,141,72,1,139,69,8,139,144,88,4,0,0,184,41,0,0,0,41,208,15,175,193,137,193,3,77,236,139,69,8,139,128,84,4,0,0,141,80,1,137,208, 193,232,31,1,208,209,248,137,202,41,194,137,208,137,69,228,139,69,8,139,64,40,3,69,240,141,80,1,139,69,228,137,68,36,24,137,84,36,20,139,69,228,137,68,36,16,139,69,240,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,224,56,3,0,137,4, 36,232,86,69,1,0,139,85,232,141,131,16,122,3,0,139,0,139,4,144,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,4,57,3,0,137,4,36,232,40,69,1,0,235,124,139,69,8,139,80,40,137,208,193,232,31,1,208,209,248,3,69,240,137,69,224,139,69,8,139, 128,44,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,4,57,3,0,137,4,36,232,232,68,1,0,139,69,236,131,192,20,139,85,236,131,194,20,137,68,36,24,139,69,224,137,68,36,20,137,84,36,16,139,69,224,137,68,36,12,139,69,8,137,68,36,8, 139,69,244,137,68,36,4,141,131,224,56,3,0,137,4,36,232,170,68,1,0,131,196,68,91,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,69,244,139,128,116,4,0,0,131,224,1,133,192,116,36,139,69,12,137,68,36,4,139,69,244,137,4,36,232,57,253,255,255,139,85, 244,139,130,116,4,0,0,131,224,254,137,130,116,4,0,0,139,69,244,139,128,116,4,0,0,131,224,2,133,192,116,36,139,69,12,137,68,36,4,139,69,244,137,4,36,232,233,253,255,255,139,85,244,139,130,116,4,0,0,131,224,253,137,130,116,4,0,0,201,195,85,137,229,87,86, 83,129,236,172,0,0,0,232,0,0,0,0,91,139,69,12,137,4,36,232,100,67,253,255,137,69,228,139,85,8,139,69,12,137,68,36,4,137,20,36,232,27,87,253,255,137,69,224,139,85,8,139,69,12,137,68,36,4,137,20,36,232,11,88,253,255,137,69,220,139,69,8,139,64,40,141,80, 3,133,192,15,72,194,193,248,2,137,69,216,139,69,8,139,80,40,137,208,193,232,31,1,208,209,248,3,69,224,137,69,212,139,69,216,3,69,224,64,137,69,208,139,69,8,139,64,40,3,69,224,43,69,216,137,69,204,139,69,8,139,64,40,3,69,224,131,192,4,137,69,200,139,69, 8,139,128,84,4,0,0,64,137,69,196,199,69,192,41,0,0,0,139,85,196,137,208,193,232,31,1,208,209,248,137,69,188,139,85,188,139,69,220,41,208,137,69,172,139,69,8,139,128,44,4,0,0,137,69,136,139,69,8,139,64,36,3,69,220,141,80,2,139,69,8,139,64,40,3,69,224, 141,72,1,139,117,220,131,238,2,139,125,224,79,139,69,8,137,68,36,28,139,69,136,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,137,124,36,8,139,69,228,137,68,36,4,141,131,44,249,2,0,137,4,36,232,4,67,1,0,199,69,176,1,0,0,0,233,40,1,0,0,139,85,176, 141,131,232,119,3,0,139,0,139,4,144,137,69,184,139,85,176,139,69,192,41,208,15,175,69,196,3,69,172,137,69,180,139,85,184,141,131,224,119,3,0,139,0,139,20,144,139,69,8,139,136,84,4,0,0,139,69,176,137,68,36,36,139,69,8,137,68,36,32,137,84,36,28,137,76, 36,24,139,69,180,137,68,36,20,139,69,204,137,68,36,16,139,69,180,137,68,36,12,139,69,208,137,68,36,8,139,69,228,137,68,36,4,141,131,0,55,3,0,137,4,36,232,119,66,1,0,139,69,176,131,192,2,131,224,3,133,192,15,132,147,0,0,0,139,69,8,139,128,104,4,0,0,133, 192,15,132,130,0,0,0,139,69,8,139,136,48,4,0,0,139,69,8,139,176,32,4,0,0,139,125,8,131,199,52,139,85,176,141,131,216,119,3,0,139,0,139,20,144,139,69,188,137,69,132,139,69,132,3,69,180,137,69,140,139,69,176,137,68,36,40,139,69,8,137,68,36,36,137,76,36, 32,141,131,220,118,3,0,139,0,137,68,36,28,137,116,36,24,137,124,36,20,137,84,36,16,139,69,140,137,68,36,12,139,69,200,137,68,36,8,139,69,228,137,68,36,4,141,131,72,55,3,0,137,4,36,232,211,65,1,0,255,69,176,131,125,176,40,15,142,206,254,255,255,139,69, 8,139,128,104,4,0,0,133,192,15,132,155,0,0,0,199,69,176,41,0,0,0,139,85,176,139,69,192,41,208,15,175,69,196,3,69,172,137,69,180,139,69,8,139,136,48,4,0,0,139,69,8,139,176,32,4,0,0,139,125,8,131,199,52,139,85,176,141,131,216,119,3,0,139,0,139,20,144,139, 69,188,137,69,132,139,69,132,3,69,180,137,69,144,139,69,176,137,68,36,40,139,69,8,137,68,36,36,137,76,36,32,141,131,220,118,3,0,139,0,137,68,36,28,137,116,36,24,137,124,36,20,137,84,36,16,139,69,144,137,68,36,12,139,69,200,137,68,36,8,139,69,228,137, 68,36,4,141,131,192,55,3,0,137,4,36,232,26,65,1,0,139,69,8,139,184,44,4,0,0,139,69,8,139,128,44,4,0,0,137,69,148,139,77,220,73,139,85,196,137,208,193,224,2,1,208,193,224,3,141,20,1,139,77,204,73,139,117,220,78,139,69,8,137,68,36,32,137,124,36,28,139, 69,148,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,139,69,208,137,68,36,8,139,69,228,137,68,36,4,141,131,52,56,3,0,137,4,36,232,175,64,1,0,139,69,8,139,144,44,4,0,0,139,69,8,139,136,84,4,0,0,139,117,220,131,198,10,139,125,220,131,199,10,139, 69,8,137,68,36,32,137,84,36,28,137,76,36,24,137,116,36,20,139,69,212,137,68,36,16,137,124,36,12,139,69,212,137,68,36,8,139,69,228,137,68,36,4,141,131,136,56,3,0,137,4,36,232,87,64,1,0,139,69,8,139,128,48,4,0,0,137,69,152,139,69,8,139,128,32,4,0,0,137, 69,156,139,69,8,131,192,52,137,69,160,139,69,8,139,128,60,4,0,0,139,16,141,131,76,18,3,0,137,68,36,4,137,20,36,232,66,109,3,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,164,235,9,141,131,112,243,2,0,137,69,164,139,69,8,139,64,48,137,194,3, 85,220,139,69,8,139,64,44,137,193,3,77,224,139,69,8,137,68,36,36,139,69,152,137,68,36,32,141,131,220,118,3,0,139,0,137,68,36,28,139,69,156,137,68,36,24,139,69,160,137,68,36,20,139,69,164,137,68,36,16,137,84,36,12,137,76,36,8,139,69,228,137,68,36,4,141, 131,172,249,2,0,137,4,36,232,154,63,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,15,133,186,0,0,0,139,69,8,139,64,36,3,69,220,141,80,2,139,77,224,131,193,6,139,69,8,139,64,36,3,69,220,141,112,1,139,125,224,79,199,68,36,28,0,0,0,0,139,69,8,137,68, 36,24,137,84,36,20,137,76,36,16,137,116,36,12,137,124,36,8,139,69,228,137,68,36,4,141,131,44,250,2,0,137,4,36,232,46,63,1,0,139,69,8,139,64,36,3,69,220,141,112,2,139,69,8,139,64,40,3,69,224,141,120,1,139,69,8,139,64,36,3,69,220,141,80,1,139,69,8,139, 64,40,3,69,224,141,72,250,199,68,36,28,1,0,0,0,139,69,8,137,68,36,24,137,116,36,20,137,124,36,16,137,84,36,12,137,76,36,8,139,69,228,137,68,36,4,141,131,208,56,3,0,137,4,36,232,202,62,1,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,15,133,158,0,0,0, 139,85,220,74,139,77,224,131,193,6,139,117,220,131,238,2,139,125,224,79,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,137,124,36,8,139,69,228,137,68,36,4,141,131,112,250,2,0,137,4,36,232,110,62,1,0,139,125,220,79, 139,69,8,139,64,40,3,69,224,141,80,1,139,77,220,131,233,2,139,69,8,139,64,40,3,69,224,141,112,250,199,68,36,28,1,0,0,0,139,69,8,137,68,36,24,137,124,36,20,137,84,36,16,137,76,36,12,137,116,36,8,139,69,228,137,68,36,4,141,131,112,250,2,0,137,4,36,232, 24,62,1,0,139,85,8,139,130,116,4,0,0,131,200,2,137,130,116,4,0,0,139,69,8,139,128,116,4,0,0,209,232,131,224,1,139,77,8,15,182,192,137,194,131,226,1,139,129,116,4,0,0,131,224,254,9,208,137,129,116,4,0,0,139,69,8,139,80,28,141,131,121,255,255,255,137,68, 36,8,137,84,36,4,139,69,8,137,4,36,232,156,68,1,0,129,196,172,0,0,0,91,94,95,201,195,85,137,229,86,83,131,236,96,232,0,0,0,0,91,139,69,12,137,4,36,232,236,60,253,255,137,69,244,139,85,8,139,69,12,137,68,36,4,137,20,36,232,163,80,253,255,137,69,240,139, 85,8,139,69,12,137,68,36,4,137,20,36,232,147,81,253,255,137,69,236,139,69,8,139,64,40,141,80,3,133,192,15,72,194,193,248,2,137,69,232,139,69,232,3,69,240,64,137,69,228,139,69,8,139,64,40,3,69,240,43,69,232,137,69,224,139,69,8,139,64,40,3,69,240,131,192, 4,137,69,220,139,69,8,139,128,84,4,0,0,64,137,69,216,199,69,212,41,0,0,0,139,85,216,137,208,193,232,31,1,208,209,248,137,69,208,139,85,208,139,69,236,41,208,137,69,196,139,69,8,139,64,36,3,69,236,141,112,2,139,69,8,139,64,40,3,69,240,64,139,85,236,131, 234,2,139,77,240,73,137,116,36,24,137,68,36,20,137,84,36,16,137,76,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,60,244,2,0,137,4,36,232,182,60,1,0,199,69,200,1,0,0,0,233,162,0,0,0,139,85,200,139,69,212,41,208,15,175,69,216,3,69,196,137,69, 204,139,69,204,137,68,36,28,139,69,224,137,68,36,24,139,69,204,137,68,36,20,139,69,228,137,68,36,16,139,69,200,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,156,50,3,0,137,4,36,232,89,60,1,0,139,69,200,131,192,2,131,224,3,133,192,116, 65,139,69,8,139,128,104,4,0,0,133,192,116,52,139,69,208,3,69,204,137,68,36,20,139,69,220,137,68,36,16,139,69,200,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,196,50,3,0,137,4,36,232,11,60,1,0,255,69,200,131,125,200,40,15,142,84,255, 255,255,139,69,8,139,128,104,4,0,0,133,192,116,77,199,69,200,41,0,0,0,139,85,200,139,69,212,41,208,15,175,69,216,3,69,196,137,69,204,139,69,208,3,69,204,137,68,36,20,139,69,220,137,68,36,16,139,69,200,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137, 68,36,4,141,131,196,50,3,0,137,4,36,232,164,59,1,0,139,85,8,139,130,116,4,0,0,131,200,2,137,130,116,4,0,0,139,69,8,139,128,116,4,0,0,209,232,131,224,1,139,77,8,15,182,192,137,194,131,226,1,139,129,116,4,0,0,131,224,254,9,208,137,129,116,4,0,0,141,131, 1,249,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,43,66,1,0,139,69,8,139,64,48,137,194,3,85,236,139,69,8,139,64,44,3,69,240,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,84,237,2,0,137,4,36,232,20,59, 1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,15,133,184,0,0,0,139,69,8,139,64,36,3,69,236,141,72,2,139,117,240,131,198,6,139,69,8,139,64,36,3,69,236,64,139,85,240,74,137,76,36,28,137,116,36,24,137,68,36,20,137,84,36,16,199,68,36,12,0,0,0,0,139, 69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,132,244,2,0,137,4,36,232,170,58,1,0,139,69,8,139,64,36,3,69,236,141,112,2,139,69,8,139,64,40,3,69,240,141,80,1,139,69,8,139,64,36,3,69,236,141,72,1,139,69,8,139,64,40,3,69,240,131,232,6,137,116,36,28,137, 84,36,24,137,76,36,20,137,68,36,16,199,68,36,12,1,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,132,244,2,0,137,4,36,232,70,58,1,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,15,133,158,0,0,0,139,69,236,72,139,85,240,131,194,6,139,77,236, 131,233,2,139,117,240,78,137,68,36,28,137,84,36,24,137,76,36,20,137,116,36,16,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,172,244,2,0,137,4,36,232,234,57,1,0,139,85,236,74,139,69,8,139,64,40,3,69,240,141,72,1,139,117,236, 131,238,2,139,69,8,139,64,40,3,69,240,131,232,6,137,84,36,28,137,76,36,24,137,116,36,20,137,68,36,16,199,68,36,12,1,0,0,0,139,69,8,137,68,36,8,139,69,244,137,68,36,4,141,131,172,244,2,0,137,4,36,232,148,57,1,0,131,196,96,91,94,201,195,85,137,229,83,131, 236,36,232,0,0,0,0,91,139,69,12,137,4,36,232,200,56,253,255,137,69,240,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,172,240,2,0,137,4,36,232,86,57,1,0,199,69,244,1,0,0,0,235,99,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36, 4,141,131,196,46,3,0,137,4,36,232,42,57,1,0,139,69,244,131,192,2,131,224,3,133,192,116,48,139,69,8,139,128,104,4,0,0,133,192,116,35,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,222,46,3,0,137,4,36,232,237,56,1,0,255,69, 244,131,125,244,40,126,151,139,69,8,139,128,104,4,0,0,133,192,116,42,199,69,244,41,0,0,0,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,222,46,3,0,137,4,36,232,173,56,1,0,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131, 249,46,3,0,137,4,36,232,145,56,1,0,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,17,47,3,0,137,4,36,232,117,56,1,0,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,8,5,3,0,137,4,36,232,89,56,1,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192, 117,72,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,220,240,2,0,137,4,36,232,35,56,1,0,199,68,36,12,1,0,0,0,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,220,240,2,0,137,4,36,232,255,55,1,0,139,69,8,139,128,28,4,0,0, 131,224,64,133,192,117,72,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,34,5,3,0,137,4,36,232,203,55,1,0,199,68,36,12,1,0,0,0,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,34,5,3,0,137,4,36,232,167,55,1,0,131,196,36,91, 201,195,85,137,229,86,83,131,236,80,232,0,0,0,0,91,139,69,12,137,4,36,232,219,54,253,255,137,69,240,139,69,8,139,128,44,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,91,239,2,0,137,4,36,232,92,55,1,0,199,69,244,1,0,0,0,233,219, 0,0,0,139,69,8,139,128,84,4,0,0,137,68,36,16,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,63,45,3,0,137,4,36,232,32,55,1,0,139,69,244,131,192,2,131,224,3,133,192,15,132,151,0,0,0,139,69,8,139,128,104,4,0,0,133,192,15,132, 134,0,0,0,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,8,139,128,48,4,0,0,137,69,216,235,7,199,69,216,255,0,0,0,139,69,8,139,136,32,4,0,0,139,117,8,131,198,52,139,85,244,141,131,79,107,3,0,139,0,139,20,144,139,69,216,137,68,36,32,141,131, 83,106,3,0,139,0,137,68,36,28,137,76,36,24,137,116,36,20,137,84,36,16,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,107,45,3,0,137,4,36,232,120,54,1,0,255,69,244,131,125,244,40,15,142,27,255,255,255,139,69,8,139,128,104, 4,0,0,133,192,15,132,141,0,0,0,199,69,244,41,0,0,0,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,8,139,128,48,4,0,0,137,69,220,235,7,199,69,220,255,0,0,0,139,69,8,139,136,32,4,0,0,139,117,8,131,198,52,139,85,244,141,131,79,107,3,0,139,0, 139,20,144,139,69,220,137,68,36,32,141,131,83,106,3,0,139,0,137,68,36,28,137,76,36,24,137,116,36,20,137,84,36,16,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,107,45,3,0,137,4,36,232,205,53,1,0,139,69,8,139,128,60,4,0,0, 139,16,141,131,195,5,3,0,137,68,36,4,137,20,36,232,217,98,3,0,133,192,116,16,139,69,8,139,128,60,4,0,0,139,0,137,69,224,235,9,141,131,231,230,2,0,137,69,224,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,117,14,139,69,8,139,128,48,4,0,0,137,69,228,235, 7,199,69,228,255,0,0,0,139,69,8,139,144,32,4,0,0,139,77,8,131,193,52,139,69,224,137,68,36,28,139,69,228,137,68,36,24,141,131,83,106,3,0,139,0,137,68,36,20,137,84,36,16,137,76,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,11,239,2,0,137,4, 36,232,31,53,1,0,139,69,8,139,144,44,4,0,0,139,69,8,139,128,44,4,0,0,137,84,36,16,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,187,45,3,0,137,4,36,232,233,52,1,0,139,69,8,139,128,84,4,0,0,137,68,36,12,139,69,8,137,68,36,8,139,69,240, 137,68,36,4,141,131,251,45,3,0,137,4,36,232,192,52,1,0,131,196,80,91,94,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,139,85,8,139,69,12,137,68,36,4,137,20,36,232,183,71,253,255,137,69,228,139,85,8,139,69,12,137,68,36,4,137,20,36,232,167,72,253, 255,137,69,224,139,69,12,137,4,36,232,200,51,253,255,137,69,220,139,69,16,131,224,1,132,192,15,132,208,0,0,0,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,15,133,186,0,0,0,139,69,8,139,64,36,3,69,224,141,80,2,139,77,228,131,193,6,139,69,8,139,64,36, 3,69,224,141,112,1,139,125,228,79,199,68,36,28,0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,137,124,36,8,139,69,220,137,68,36,4,141,131,158,236,2,0,137,4,36,232,248,51,1,0,139,69,8,139,64,36,3,69,224,141,112,2,139,69,8,139,64, 40,3,69,228,141,120,1,139,69,8,139,64,36,3,69,224,141,80,1,139,69,8,139,64,40,3,69,228,141,72,250,199,68,36,28,1,0,0,0,139,69,8,137,68,36,24,137,116,36,20,137,124,36,16,137,84,36,12,137,76,36,8,139,69,220,137,68,36,4,141,131,158,236,2,0,137,4,36,232, 148,51,1,0,139,69,16,131,224,1,133,192,117,90,139,69,8,139,128,28,4,0,0,37,128,0,0,0,133,192,116,72,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,220,137,68,36,4,141,131,6,236,2,0,137,4,36,232,84,51,1,0,199,68,36,12,1,0,0,0,139,69,8,137,68,36,8,139, 69,220,137,68,36,4,141,131,6,236,2,0,137,4,36,232,48,51,1,0,139,69,16,131,224,2,133,192,15,132,178,0,0,0,139,69,8,139,128,28,4,0,0,131,224,64,133,192,15,133,158,0,0,0,139,85,224,74,139,77,228,131,193,6,139,117,224,131,238,2,139,125,228,79,199,68,36,28, 0,0,0,0,139,69,8,137,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,137,124,36,8,139,69,220,137,68,36,4,141,131,214,236,2,0,137,4,36,232,198,50,1,0,139,125,224,79,139,69,8,139,64,40,3,69,228,141,80,1,139,77,224,131,233,2,139,69,8,139,64,40,3,69,228, 141,112,250,199,68,36,28,1,0,0,0,139,69,8,137,68,36,24,137,124,36,20,137,84,36,16,137,76,36,12,137,116,36,8,139,69,220,137,68,36,4,141,131,214,236,2,0,137,4,36,232,112,50,1,0,139,69,16,131,224,2,133,192,117,88,139,69,8,139,128,28,4,0,0,131,224,64,133, 192,116,72,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,220,137,68,36,4,141,131,76,0,3,0,137,4,36,232,50,50,1,0,199,68,36,12,1,0,0,0,139,69,8,137,68,36,8,139,69,220,137,68,36,4,141,131,76,0,3,0,137,4,36,232,14,50,1,0,131,196,60,91,94,95,201,195,85, 137,229,83,131,236,52,232,0,0,0,0,91,139,69,12,137,4,36,232,65,49,253,255,137,69,240,139,69,8,139,128,28,4,0,0,37,0,0,0,1,133,192,15,132,227,0,0,0,199,68,36,12,255,0,0,0,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,89,234,2,0,137,4,36,232,177, 49,1,0,199,69,244,1,0,0,0,235,72,139,69,244,131,192,2,131,224,3,133,192,116,56,139,69,8,139,128,104,4,0,0,133,192,116,43,199,68,36,16,255,0,0,0,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,141,40,3,0,137,4,36,232,99,49, 1,0,255,69,244,131,125,244,40,126,178,139,69,8,139,128,104,4,0,0,133,192,116,50,199,69,244,41,0,0,0,199,68,36,16,255,0,0,0,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,141,40,3,0,137,4,36,232,27,49,1,0,199,68,36,12,255, 0,0,0,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,185,234,2,0,137,4,36,232,247,48,1,0,233,237,0,0,0,199,68,36,12,0,0,0,0,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,89,234,2,0,137,4,36,232,206,48,1,0,199,69,244,1,0,0,0,235,77,139,69,244, 131,192,2,131,224,3,133,192,116,61,139,69,8,139,128,104,4,0,0,133,192,116,48,139,69,8,139,128,48,4,0,0,137,68,36,16,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,141,40,3,0,137,4,36,232,123,48,1,0,255,69,244,131,125,244, 40,126,173,139,69,8,139,128,104,4,0,0,133,192,116,55,199,69,244,41,0,0,0,139,69,8,139,128,48,4,0,0,137,68,36,16,139,69,244,137,68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,141,40,3,0,137,4,36,232,46,48,1,0,139,69,8,139,128,48,4,0,0,137, 68,36,12,139,69,8,137,68,36,8,139,69,240,137,68,36,4,141,131,185,234,2,0,137,4,36,232,5,48,1,0,131,196,52,91,201,195,85,137,229,131,236,24,131,125,16,1,117,23,139,69,12,137,68,36,4,139,69,8,137,4,36,232,47,242,255,255,233,138,0,0,0,131,125,16,2,117,20, 139,69,12,137,68,36,4,139,69,8,137,4,36,232,150,235,255,255,235,112,131,125,16,3,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,164,253,255,255,235,86,131,125,16,4,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,3,246,255,255,235,60,131,125,16, 5,117,20,139,69,12,137,68,36,4,139,69,8,137,4,36,232,213,247,255,255,235,34,131,125,16,5,126,28,139,69,16,131,232,6,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,153,250,255,255,201,195,85,137,229,131,236,40,139,69,8,137,69,244,139,85,244,139, 69,12,137,68,36,4,137,20,36,232,81,66,253,255,141,80,255,139,69,16,137,16,139,85,244,139,69,12,137,68,36,4,137,20,36,232,60,67,253,255,141,80,254,139,69,20,137,16,139,69,16,139,16,139,69,244,139,64,40,141,4,2,141,80,2,139,69,24,137,16,139,69,20,139,16, 139,69,244,139,64,36,141,4,2,141,80,4,139,69,28,137,16,201,195,85,137,229,87,86,83,129,236,188,0,0,0,232,0,0,0,0,91,139,69,8,137,69,228,139,85,228,141,69,216,137,68,36,8,141,69,204,137,68,36,4,137,20,36,232,39,226,251,255,139,69,228,5,36,4,0,0,137,4, 36,232,147,235,251,255,137,198,139,69,228,139,184,104,4,0,0,139,69,224,137,69,144,139,85,216,137,85,148,139,69,228,139,128,32,4,0,0,137,69,152,139,69,228,5,28,4,0,0,137,4,36,232,103,236,251,255,137,69,156,139,69,228,139,64,48,137,69,160,139,69,228,139, 64,44,137,69,164,139,69,212,137,69,168,139,85,208,137,85,172,139,69,228,139,64,36,137,69,176,139,69,228,139,64,40,137,69,180,141,131,69,17,3,0,137,4,36,232,19,152,0,0,137,69,184,139,69,228,15,183,64,22,152,137,69,188,139,69,228,15,183,64,20,152,137,69, 192,141,131,248,247,2,0,137,4,36,232,236,151,0,0,137,69,196,141,131,124,233,2,0,137,4,36,232,219,151,0,0,137,116,36,72,137,124,36,68,139,85,144,137,84,36,64,139,85,148,137,84,36,60,139,85,152,137,84,36,56,139,85,156,137,84,36,52,139,85,160,137,84,36, 48,139,85,164,137,84,36,44,139,85,168,137,84,36,40,139,85,172,137,84,36,36,139,85,176,137,84,36,32,139,85,180,137,84,36,28,139,85,184,137,84,36,24,139,85,188,137,84,36,20,139,85,192,137,84,36,16,139,85,196,137,84,36,12,137,68,36,8,141,131,147,37,3,0, 137,68,36,4,139,69,12,137,4,36,232,251,44,0,0,141,131,212,231,2,0,137,68,36,4,139,69,12,137,4,36,232,230,44,0,0,129,196,188,0,0,0,91,94,95,201,195,85,137,229,131,236,40,139,77,12,199,69,228,103,102,102,102,139,69,228,247,233,193,250,4,137,200,193,248, 31,137,209,41,193,137,200,137,69,244,131,125,244,1,127,7,199,69,244,2,0,0,0,139,85,244,74,139,69,8,137,144,84,4,0,0,139,85,244,137,208,193,224,2,1,208,193,224,3,137,194,139,69,8,137,80,36,201,195,85,137,229,87,86,83,129,236,140,0,0,0,232,0,0,0,0,91,243, 15,16,69,12,243,15,44,192,137,69,224,131,125,224,0,116,7,199,69,224,1,0,0,0,139,69,8,139,128,104,4,0,0,133,192,15,132,165,0,0,0,131,125,224,0,15,133,155,0,0,0,139,69,8,139,64,28,137,4,36,232,250,43,253,255,137,69,220,139,85,8,139,69,224,137,130,104,4, 0,0,139,69,8,139,64,28,137,4,36,232,146,120,252,255,133,192,116,108,199,69,228,1,0,0,0,235,51,139,69,228,131,192,2,131,224,3,133,192,116,35,139,69,228,137,68,36,12,139,69,8,137,68,36,8,139,69,220,137,68,36,4,141,131,71,34,3,0,137,4,36,232,77,44,1,0,255, 69,228,131,125,228,40,126,199,199,69,228,41,0,0,0,139,69,228,137,68,36,12,139,69,8,137,68,36,8,139,69,220,137,68,36,4,141,131,71,34,3,0,137,4,36,232,26,44,1,0,139,69,8,139,128,104,4,0,0,133,192,15,133,26,2,0,0,131,125,224,0,15,132,16,2,0,0,139,69,8,139, 64,40,141,80,3,133,192,15,72,194,193,248,2,137,69,216,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36,232,245,62,253,255,137,194,139,69,8,139,64,40,141,4,2,131,192,4,137,69,212,139,69,8,139,128,84,4,0,0,64,137,69,208,199,69,204,41,0,0,0,139,85,208, 137,208,193,232,31,1,208,209,248,137,69,200,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36,232,177,63,253,255,43,69,200,137,69,192,139,69,8,139,64,28,137,4,36,232,204,42,253,255,137,69,188,139,85,8,139,69,224,137,130,104,4,0,0,139,69,8,139,64,28,137, 4,36,232,100,119,252,255,133,192,15,132,101,1,0,0,199,69,228,1,0,0,0,233,168,0,0,0,139,85,228,139,69,204,41,208,15,175,69,208,3,69,192,137,69,196,139,69,228,131,192,2,131,224,3,133,192,15,132,130,0,0,0,139,69,8,139,136,48,4,0,0,139,69,8,139,176,32,4, 0,0,139,125,8,131,199,52,139,85,228,141,131,165,96,3,0,139,0,139,20,144,139,69,200,137,69,164,139,69,164,3,69,196,137,69,176,139,69,228,137,68,36,40,139,69,8,137,68,36,36,137,76,36,32,141,131,169,95,3,0,139,0,137,68,36,28,137,116,36,24,137,124,36,20, 137,84,36,16,139,69,176,137,68,36,12,139,69,212,137,68,36,8,139,69,188,137,68,36,4,141,131,193,35,3,0,137,4,36,232,163,42,1,0,255,69,228,131,125,228,40,15,142,78,255,255,255,199,69,228,41,0,0,0,139,85,228,139,69,204,41,208,15,175,69,208,3,69,192,137, 69,196,139,69,8,139,136,48,4,0,0,139,69,8,139,176,32,4,0,0,139,125,8,131,199,52,139,85,228,141,131,165,96,3,0,139,0,139,20,144,139,69,200,137,69,164,139,69,164,3,69,196,137,69,180,139,69,228,137,68,36,44,139,69,8,137,68,36,40,137,76,36,36,141,131,169, 95,3,0,139,0,137,68,36,32,141,131,169,95,3,0,139,0,137,68,36,28,137,116,36,24,137,124,36,20,137,84,36,16,139,69,180,137,68,36,12,139,69,212,137,68,36,8,139,69,188,137,68,36,4,141,131,21,32,3,0,137,4,36,232,239,41,1,0,129,196,140,0,0,0,91,94,95,201,195, 85,137,229,87,86,83,129,236,220,3,0,0,232,0,0,0,0,91,139,69,8,137,133,164,252,255,255,139,69,12,137,133,160,252,255,255,141,131,126,92,3,0,139,0,139,16,137,85,228,49,210,139,133,164,252,255,255,137,133,192,252,255,255,139,149,192,252,255,255,141,133, 180,252,255,255,137,68,36,4,137,20,36,232,95,221,251,255,139,133,192,252,255,255,139,128,48,4,0,0,137,194,129,226,255,255,255,0,139,133,192,252,255,255,139,128,44,4,0,0,137,193,129,225,255,255,255,0,139,133,192,252,255,255,139,176,32,4,0,0,139,133,192, 252,255,255,139,128,28,4,0,0,131,224,63,15,182,248,139,133,192,252,255,255,139,64,48,137,133,132,252,255,255,139,133,192,252,255,255,139,64,44,137,133,136,252,255,255,139,133,188,252,255,255,139,0,137,133,140,252,255,255,139,133,184,252,255,255,139,0, 137,133,144,252,255,255,139,133,192,252,255,255,139,128,104,4,0,0,137,133,148,252,255,255,139,133,192,252,255,255,139,64,36,137,133,152,252,255,255,139,133,192,252,255,255,139,64,40,137,133,156,252,255,255,137,84,36,88,199,68,36,84,255,255,255,255,137, 76,36,80,137,116,36,76,137,124,36,72,139,133,132,252,255,255,137,68,36,68,139,149,136,252,255,255,137,84,36,64,139,133,140,252,255,255,137,68,36,60,139,149,144,252,255,255,137,84,36,56,141,131,41,33,3,0,137,68,36,52,199,68,36,48,255,255,255,255,199,68, 36,44,255,255,255,255,199,68,36,40,255,255,255,255,139,133,148,252,255,255,137,68,36,36,199,68,36,32,0,0,0,0,199,68,36,28,80,0,0,0,139,149,152,252,255,255,137,84,36,24,199,68,36,20,8,0,0,0,139,133,156,252,255,255,137,68,36,16,141,131,50,33,3,0,137,68, 36,12,199,68,36,8,32,3,0,0,199,68,36,4,0,0,0,0,141,133,196,252,255,255,137,4,36,232,24,83,3,0,139,149,192,252,255,255,141,133,196,252,255,255,137,68,36,8,139,133,192,252,255,255,137,68,36,4,137,20,36,232,75,12,2,0,141,131,126,92,3,0,139,0,139,85,228, 51,16,116,5,232,232,82,3,0,129,196,220,3,0,0,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,40,20,0,0,137,69,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232, 11,20,0,0,137,69,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,4,0,0,0,232,238,19,0,0,137,69,236,141,131,255,245,2,0,137,4,36,232,80,145,0,0,137,69,220,139,85,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,69,220,137,68,36,4,137,20,36, 232,110,219,251,255,137,69,232,139,85,8,139,130,28,4,0,0,36,127,137,130,28,4,0,0,139,85,8,139,130,36,4,0,0,131,224,254,137,130,36,4,0,0,139,69,244,137,4,36,232,33,198,251,255,137,194,139,69,8,137,80,40,139,69,240,137,68,36,4,139,69,8,137,4,36,232,170, 249,255,255,131,125,236,0,116,7,199,69,236,1,0,0,0,243,15,42,69,236,243,15,17,68,36,4,139,69,8,137,4,36,232,222,249,255,255,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,5,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,72,32,139,85,232, 131,194,6,139,69,8,139,64,28,137,84,36,8,137,68,36,4,139,69,8,137,4,36,255,209,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,8,139,64,28,137,84,36,4,137,4,36,232,130,117,252,255,131,196, 52,91,201,195,85,137,229,131,236,24,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,175,18,0,0,137,4,36,232,63,197,251,255,137,194,139,69,8,137,80,40,131,125,16,1,126,41,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232, 127,18,0,0,137,68,36,4,139,69,8,137,4,36,232,171,248,255,255,139,69,8,139,64,28,137,4,36,232,247,113,252,255,133,192,116,85,139,69,8,139,80,32,139,69,8,139,64,28,199,68,36,8,1,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,69,8,139,80,32,139,69,8,139, 64,28,199,68,36,8,5,0,0,0,137,68,36,4,139,69,8,137,4,36,255,210,139,85,8,139,69,8,139,64,28,137,84,36,4,137,4,36,232,182,116,252,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36, 4,139,69,8,137,4,36,232,108,213,251,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,239,213,251,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137, 68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,85,214,251,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,54,207,251,255,201,195,85,137,229,131,236,24,139,69, 8,139,85,12,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,183,208,251,255,201,195,85,137,229,131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,115,209,251,255,201,195,85,137,229, 131,236,40,139,85,8,139,69,20,137,68,36,16,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,34,210,251,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,243,15,90,77,12,141,131,18,77,3,0,242,15,16,0,102,15,46,193,115,2, 235,15,139,69,8,199,128,92,4,0,0,0,0,0,0,235,86,243,15,16,69,12,141,131,34,77,3,0,15,46,0,115,2,235,15,139,69,8,199,128,92,4,0,0,40,0,0,0,235,53,243,15,90,77,12,141,131,250,74,3,0,242,15,16,0,242,15,88,193,242,15,88,192,242,15,44,192,137,69,240,139,85, 240,141,131,34,88,3,0,139,0,139,20,144,139,69,8,137,144,92,4,0,0,243,15,90,77,12,141,131,250,74,3,0,242,15,16,0,242,15,89,200,141,131,26,77,3,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,244,139,69,244,45,16,39,0,0,243,15,42,192,243,15,90,200,141, 131,90,76,3,0,242,15,16,0,242,15,89,193,242,15,90,192,243,15,17,69,12,139,85,8,139,69,12,137,130,100,4,0,0,139,69,8,139,128,108,4,0,0,137,194,139,69,12,137,68,36,4,137,20,36,232,9,183,0,0,139,85,8,139,130,116,4,0,0,131,200,1,137,130,116,4,0,0,139,69, 8,139,80,28,141,131,183,223,255,255,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,23,42,1,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,243,15,90,77,12,141,131,221,75,3,0,242,15,16,0,102,15,46,193,115,2,235,15,139,69,8,199,128,88,4, 0,0,0,0,0,0,235,86,243,15,16,69,12,141,131,237,75,3,0,15,46,0,115,2,235,15,139,69,8,199,128,88,4,0,0,40,0,0,0,235,53,243,15,90,77,12,141,131,197,73,3,0,242,15,16,0,242,15,88,193,242,15,88,192,242,15,44,192,137,69,240,139,85,240,141,131,237,86,3,0,139, 0,139,20,144,139,69,8,137,144,88,4,0,0,243,15,90,77,12,141,131,197,73,3,0,242,15,16,0,242,15,89,200,141,131,229,75,3,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,244,139,69,244,45,16,39,0,0,243,15,42,192,243,15,90,200,141,131,37,75,3,0,242,15,16, 0,242,15,89,193,242,15,90,192,243,15,17,69,12,139,85,8,139,69,12,137,130,96,4,0,0,139,85,8,139,130,116,4,0,0,131,200,2,137,130,116,4,0,0,139,69,8,139,80,28,141,131,130,222,255,255,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,252,40,1,0,139,69,8,139, 128,112,4,0,0,137,194,139,69,12,137,68,36,4,137,20,36,232,163,181,0,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,144,96,4,0,0,139,69,8,139,128,112,4,0,0,137,84,36,4,137,4,36,232,114,181,0,0,139,69,8,139,144,100,4,0,0,139, 69,8,139,128,108,4,0,0,137,84,36,4,137,4,36,232,84,181,0,0,139,85,8,139,130,116,4,0,0,131,200,2,137,130,116,4,0,0,139,69,8,139,128,116,4,0,0,209,232,131,224,1,139,77,8,15,182,192,137,194,131,226,1,139,129,116,4,0,0,131,224,254,9,208,137,129,116,4,0,0, 139,69,8,139,80,28,141,131,77,221,255,255,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,56,40,1,0,131,196,20,91,201,195,85,137,229,83,129,236,244,0,0,0,232,0,0,0,0,91,139,69,8,137,133,36,255,255,255,139,69,16,137,133,32,255,255,255,141,131,239,83,3,0, 139,0,139,16,137,85,244,49,210,141,131,211,126,3,0,139,0,137,4,36,232,46,192,0,0,137,133,96,255,255,255,199,133,48,255,255,255,239,251,254,255,199,133,52,255,255,255,255,255,255,255,199,133,56,255,255,255,255,255,255,255,199,133,92,255,255,255,15,0,0, 0,199,133,88,255,255,255,120,0,0,0,199,133,84,255,255,255,255,255,255,255,199,133,80,255,255,255,248,255,255,255,199,133,76,255,255,255,0,0,0,0,199,133,72,255,255,255,10,0,0,0,199,133,68,255,255,255,1,0,0,0,199,133,64,255,255,255,50,0,0,0,199,133,60, 255,255,255,250,0,0,0,139,133,96,255,255,255,5,36,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,130,220,251,255,139,133,96,255,255,255,5,28,4,0,0,199,68,36,4,0,0,0,0,137,4,36,232,126,221,251,255,131,125,12,10,15,142,104,2,0,0,139,133,32,255,255,255,139,0,131, 248,1,15,133,87,2,0,0,139,133,32,255,255,255,131,192,8,139,0,131,248,1,15,133,67,2,0,0,139,133,32,255,255,255,131,192,16,139,0,131,248,2,116,20,139,133,32,255,255,255,131,192,16,139,0,131,248,1,15,133,31,2,0,0,139,133,32,255,255,255,131,192,24,139,0, 131,248,2,116,20,139,133,32,255,255,255,131,192,24,139,0,131,248,1,15,133,251,1,0,0,139,133,32,255,255,255,131,192,32,139,0,131,248,1,15,133,231,1,0,0,139,133,32,255,255,255,131,192,40,139,0,131,248,1,15,133,211,1,0,0,139,133,32,255,255,255,131,192,48, 139,0,131,248,1,15,133,191,1,0,0,139,133,32,255,255,255,131,192,56,139,0,131,248,1,15,133,171,1,0,0,139,133,32,255,255,255,131,192,64,139,0,131,248,1,15,133,151,1,0,0,139,133,32,255,255,255,131,192,72,139,0,131,248,1,15,133,131,1,0,0,139,133,32,255,255, 255,131,192,80,139,0,131,248,1,15,133,111,1,0,0,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,177,11,0,0,137,133,92,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,1,0,0,0,232,142,11,0,0,137, 133,88,255,255,255,139,149,96,255,255,255,139,133,32,255,255,255,137,68,36,8,199,68,36,4,1,0,0,0,137,20,36,232,126,193,251,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,4,0,0,0,232,75,11,0,0,137,133,84,255,255,255,139,133,32,255, 255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,5,0,0,0,232,40,11,0,0,137,133,80,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,6,0,0,0,232,5,11,0,0,139,149,96,255,255,255,129,194,28,4,0,0,137,68,36,4,137,20,36,232,154, 219,251,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,7,0,0,0,232,208,10,0,0,137,133,72,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,8,0,0,0,232,173,10,0,0,137,133,48,255,255,255,139,133,32,255, 255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,9,0,0,0,232,138,10,0,0,137,133,56,255,255,255,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,10,0,0,0,232,103,10,0,0,137,133,68,255,255,255,235,30,139,133,96,255,255,255,199,68,36, 8,0,0,0,0,199,68,36,4,1,0,0,0,137,4,36,232,87,192,251,255,131,125,12,12,117,69,139,133,32,255,255,255,131,192,88,139,0,131,248,1,117,53,139,133,32,255,255,255,137,68,36,8,139,69,12,137,68,36,4,199,4,36,11,0,0,0,232,14,10,0,0,139,149,96,255,255,255,129, 194,36,4,0,0,137,68,36,4,137,20,36,232,140,217,251,255,141,147,69,241,255,255,139,133,96,255,255,255,137,80,32,139,149,96,255,255,255,139,130,28,4,0,0,36,127,137,130,28,4,0,0,139,149,96,255,255,255,139,130,28,4,0,0,131,200,64,137,130,28,4,0,0,232,229, 74,252,255,137,194,139,133,96,255,255,255,137,80,28,139,133,96,255,255,255,139,128,56,4,0,0,139,16,141,131,115,239,2,0,137,68,36,4,137,20,36,232,68,74,3,0,133,192,117,21,139,133,96,255,255,255,139,144,28,4,0,0,131,226,191,137,144,28,4,0,0,139,133,96, 255,255,255,139,128,28,4,0,0,131,224,63,131,248,1,117,83,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,115,219,2,0,137,68,36,4,137,20,36,232,205,71,3,0,233,232,0,0,0,139,149,96,255,255, 255,131,194,52,141,131,115,219,2,0,137,68,36,4,137,20,36,232,174,2,0,0,233,200,0,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,63,131,248,2,117,80,184,255,255,255,255,131,248,255,116,41,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137, 68,36,8,141,131,179,25,3,0,137,68,36,4,137,20,36,232,102,71,3,0,233,129,0,0,0,139,149,96,255,255,255,131,194,52,141,131,179,25,3,0,137,68,36,4,137,20,36,232,71,2,0,0,235,100,139,149,96,255,255,255,139,130,28,4,0,0,131,224,192,137,130,28,4,0,0,184,255, 255,255,255,131,248,255,116,40,184,255,255,255,255,139,149,96,255,255,255,131,194,52,137,68,36,8,141,131,255,83,3,0,139,0,137,68,36,4,137,20,36,232,255,70,3,0,235,29,139,133,96,255,255,255,131,192,52,141,147,255,83,3,0,139,18,137,84,36,4,137,4,36,232, 225,1,0,0,139,133,96,255,255,255,139,128,28,4,0,0,131,224,64,133,192,116,30,139,133,96,255,255,255,139,128,56,4,0,0,139,149,96,255,255,255,137,68,36,4,137,20,36,232,63,190,0,0,139,149,96,255,255,255,139,133,84,255,255,255,137,66,44,139,149,96,255,255, 255,139,133,80,255,255,255,137,66,48,131,189,72,255,255,255,3,127,10,199,133,72,255,255,255,4,0,0,0,139,149,96,255,255,255,139,133,72,255,255,255,137,130,32,4,0,0,139,133,92,255,255,255,137,4,36,232,92,186,251,255,137,194,139,133,96,255,255,255,137,80, 40,139,133,88,255,255,255,137,68,36,4,139,133,96,255,255,255,137,4,36,232,220,237,255,255,139,149,96,255,255,255,141,133,48,255,255,255,137,68,36,4,137,20,36,232,209,193,251,255,131,189,68,255,255,255,0,116,10,199,133,68,255,255,255,1,0,0,0,139,149,96, 255,255,255,139,133,68,255,255,255,137,130,104,4,0,0,139,133,96,255,255,255,199,128,88,4,0,0,0,0,0,0,139,133,96,255,255,255,199,128,92,4,0,0,0,0,0,0,139,149,96,255,255,255,141,131,15,74,3,0,139,0,137,130,96,4,0,0,139,149,96,255,255,255,141,131,15,74, 3,0,139,0,137,130,100,4,0,0,139,133,96,255,255,255,137,4,36,232,189,187,251,255,141,131,127,198,2,0,137,4,36,232,115,132,0,0,139,149,96,255,255,255,139,141,96,255,255,255,137,68,36,12,141,131,127,83,3,0,139,0,137,68,36,8,137,84,36,4,137,12,36,232,221, 159,0,0,139,149,96,255,255,255,141,131,127,83,3,0,139,0,137,68,36,4,137,20,36,232,53,172,0,0,137,194,139,133,96,255,255,255,137,144,108,4,0,0,139,149,96,255,255,255,141,131,127,83,3,0,139,0,137,68,36,4,137,20,36,232,13,172,0,0,137,194,139,133,96,255, 255,255,137,144,112,4,0,0,139,133,96,255,255,255,141,147,239,83,3,0,139,18,139,77,244,51,10,116,5,232,252,68,3,0,129,196,244,0,0,0,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,222,68,3,0, 201,195,85,137,229,131,236,24,139,69,8,139,128,28,4,0,0,131,224,64,133,192,116,24,139,69,8,139,128,56,4,0,0,139,85,8,137,68,36,4,137,20,36,232,30,189,0,0,139,69,8,137,4,36,232,196,0,2,0,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,183, 255,255,255,141,187,51,248,255,255,141,131,250,251,2,0,137,4,36,232,81,131,0,0,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,120,4,0,0,137,116,36,8,137,124,36,4,137,4,36,232,5,120,0,0,137,194,141,131,21,119,3,0,137,16,141, 147,137,247,255,255,141,131,21,119,3,0,139,0,137,84,36,4,137,4,36,232,120,127,0,0,141,147,31,245,255,255,141,131,21,119,3,0,139,0,137,84,36,4,137,4,36,232,128,127,0,0,141,131,193,190,2,0,137,4,36,232,213,130,0,0,137,194,141,139,84,246,255,255,141,131, 21,119,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,144,123,0,0,141,131,149,238,2,0,137,4,36,232,151,130,0,0,137,194,141,139,170,241,255,255,141,131,21,119,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0, 0,137,84,36,8,137,76,36,4,137,4,36,232,82,123,0,0,141,131,157,238,2,0,137,4,36,232,89,130,0,0,137,194,141,139,42,243,255,255,141,131,21,119,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,20,123,0,0,141,131,251, 17,3,0,137,4,36,232,27,130,0,0,137,194,141,139,139,236,255,255,141,131,21,119,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,214,122,0,0,141,131,221,227,2,0,137,4,36,232,221,129,0,0,137,194,141,139,242,243,255, 255,141,131,21,119,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,152,122,0,0,141,131,227,227,2,0,137,4,36,232,159,129,0,0,137,194,141,139,33,244,255,255,141,131,21,119,3,0,139,0,199,68,36,16,0,0,0,0,199,68, 36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,90,122,0,0,141,131,231,227,2,0,137,4,36,232,97,129,0,0,137,194,141,139,80,244,255,255,141,131,21,119,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,28,122, 0,0,141,131,165,238,2,0,137,4,36,232,35,129,0,0,137,194,141,139,127,244,255,255,141,131,21,119,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,222,121,0,0,141,131,173,238,2,0,137,4,36,232,229,128,0,0,137,194,141, 139,160,244,255,255,141,131,21,119,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,160,121,0,0,141,131,213,211,2,0,137,4,36,232,167,128,0,0,137,194,141,139,193,244,255,255,141,131,21,119,3,0,139,0,199,68,36,16, 0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,98,121,0,0,141,131,181,238,2,0,137,4,36,232,105,128,0,0,137,194,141,139,240,244,255,255,141,131,21,119,3,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137, 4,36,232,36,121,0,0,141,131,69,77,3,0,139,0,141,147,54,234,255,255,137,16,141,131,69,77,3,0,139,0,141,147,105,76,3,0,139,18,137,80,4,141,131,69,77,3,0,139,0,141,147,85,76,3,0,139,18,137,80,8,141,131,69,77,3,0,139,0,199,64,12,0,0,0,0,141,131,69,77,3,0, 139,0,141,147,101,76,3,0,139,18,137,80,16,141,131,69,77,3,0,139,0,141,147,89,76,3,0,139,18,137,80,20,141,131,69,77,3,0,139,0,199,64,24,0,0,0,0,141,131,21,119,3,0,139,16,141,131,69,77,3,0,139,0,137,68,36,4,137,20,36,232,132,124,0,0,141,131,250,251,2,0, 137,4,36,232,149,127,0,0,137,194,141,131,21,119,3,0,139,0,137,84,36,4,137,4,36,232,161,124,0,0,141,131,21,119,3,0,139,16,141,131,164,234,255,255,137,68,36,4,137,20,36,232,203,125,0,0,141,131,21,119,3,0,139,16,141,131,162,239,255,255,137,68,36,4,137,20, 36,232,208,125,0,0,131,196,44,91,94,95,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,139,0,131,248,1,117,15,139,69,8,243,15,16,64,4,243,15,17,69,244,235,15,141,129,89,58,3,0,243,15,16,0,243,15,17,69,244,217,69,244,201,195,85,137,229,131,236,40, 139,69,8,137,4,36,232,182,255,255,255,217,93,244,243,15,44,69,244,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,137,69,196,141,131,168,71,3,0,139,0,139,16,137,85,244,49,210,139,69,196,139,0,131,248,2,117,11,139,69,196,139,64,4,137,69,192,235, 11,141,131,56,71,3,0,139,0,137,69,192,139,69,192,141,147,168,71,3,0,139,18,139,77,244,51,10,116,5,232,177,63,3,0,131,196,68,91,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,139,69,8,137,69,196,141,131,73,71,3,0,139,0,139,16,137,85,244,49,210,139,69, 196,139,0,131,248,2,117,11,139,69,196,139,64,4,137,69,192,235,110,139,69,196,139,0,131,248,1,117,57,139,69,196,243,15,16,64,4,243,15,90,192,242,15,17,68,36,16,141,131,181,228,2,0,137,68,36,12,199,68,36,8,30,0,0,0,199,68,36,4,0,0,0,0,141,69,214,137,4, 36,232,45,63,3,0,235,29,199,68,36,8,4,0,0,0,141,131,7,216,2,0,137,68,36,4,141,69,214,137,4,36,232,82,64,3,0,141,69,214,137,4,36,232,238,125,0,0,137,69,192,139,69,192,141,147,73,71,3,0,139,18,139,77,244,51,10,116,5,232,239,62,3,0,131,196,100,91,201,195, 85,137,229,131,236,24,232,0,0,0,0,89,139,69,12,59,69,8,127,17,141,129,228,56,3,0,243,15,16,0,243,15,17,69,244,235,49,139,69,8,193,224,3,1,69,16,139,69,16,139,0,131,248,1,117,15,139,69,16,243,15,16,64,4,243,15,17,69,244,235,15,141,129,228,56,3,0,243,15, 16,0,243,15,17,69,244,217,69,244,201,195,85,137,229,131,236,40,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,134,255,255,255,217,93,244,243,15,44,69,244,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,12,59,69,8,127,13,141,129, 28,70,3,0,139,0,137,69,244,235,41,139,69,8,193,224,3,1,69,16,139,69,16,139,0,131,248,2,117,11,139,69,16,139,64,4,137,69,244,235,11,141,129,28,70,3,0,139,0,137,69,244,139,69,244,201,195,85,137,229,83,131,236,116,232,0,0,0,0,91,139,69,8,137,69,180,139, 69,12,137,69,176,141,131,180,69,3,0,139,0,139,16,137,85,244,49,210,139,69,180,139,0,137,69,172,131,125,172,9,15,135,254,4,0,0,139,85,172,193,226,2,141,131,68,0,0,0,139,4,2,1,216,255,224,15,31,0,44,5,0,0,65,1,0,0,117,2,0,0,250,0,0,0,108,0,0,0,179,0,0, 0,44,5,0,0,44,5,0,0,155,4,0,0,205,4,0,0,184,255,255,255,255,131,248,255,116,35,184,255,255,255,255,137,68,36,8,141,131,12,204,2,0,137,68,36,4,139,69,176,137,4,36,232,130,61,3,0,233,161,4,0,0,141,131,12,204,2,0,137,68,36,4,139,69,176,137,4,36,232,166, 4,0,0,233,135,4,0,0,184,255,255,255,255,131,248,255,116,35,184,255,255,255,255,137,68,36,8,141,131,132,11,3,0,137,68,36,4,139,69,176,137,4,36,232,59,61,3,0,233,90,4,0,0,141,131,132,11,3,0,137,68,36,4,139,69,176,137,4,36,232,95,4,0,0,233,64,4,0,0,184, 255,255,255,255,131,248,255,116,35,184,255,255,255,255,137,68,36,8,141,131,134,11,3,0,137,68,36,4,139,69,176,137,4,36,232,244,60,3,0,233,19,4,0,0,141,131,134,11,3,0,137,68,36,4,139,69,176,137,4,36,232,24,4,0,0,233,249,3,0,0,139,69,180,243,15,16,64,4, 243,15,90,192,242,15,17,68,36,16,141,131,32,227,2,0,137,68,36,12,199,68,36,8,30,0,0,0,199,68,36,4,0,0,0,0,141,69,214,137,4,36,232,140,60,3,0,141,69,214,137,4,36,232,187,62,3,0,137,194,139,69,16,72,57,194,115,65,184,255,255,255,255,131,248,255,116,32, 184,255,255,255,255,137,68,36,8,141,69,214,137,68,36,4,139,69,176,137,4,36,232,100,60,3,0,233,131,3,0,0,141,69,214,137,68,36,4,139,69,176,137,4,36,232,139,3,0,0,233,108,3,0,0,139,69,180,243,15,16,72,4,141,131,16,56,3,0,243,15,16,0,15,46,193,119,2,235, 71,184,255,255,255,255,131,248,255,116,35,184,255,255,255,255,137,68,36,8,141,131,0,246,2,0,137,68,36,4,139,69,176,137,4,36,232,7,60,3,0,233,38,3,0,0,141,131,0,246,2,0,137,68,36,4,139,69,176,137,4,36,232,43,3,0,0,233,12,3,0,0,184,255,255,255,255,131, 248,255,116,35,184,255,255,255,255,137,68,36,8,141,131,144,11,3,0,137,68,36,4,139,69,176,137,4,36,232,192,59,3,0,233,223,2,0,0,141,131,144,11,3,0,137,68,36,4,139,69,176,137,4,36,232,228,2,0,0,233,197,2,0,0,139,69,180,139,64,4,139,0,137,69,208,199,69, 204,0,0,0,0,199,69,200,0,0,0,0,235,75,139,69,208,15,182,0,60,59,116,52,139,69,208,15,182,0,60,44,116,42,139,69,208,15,182,0,60,92,116,32,139,69,208,15,182,0,60,36,117,29,139,69,208,64,15,182,0,60,47,126,18,139,69,208,64,15,182,0,60,57,127,7,199,69,200, 1,0,0,0,255,69,208,255,69,204,139,69,208,15,182,0,132,192,117,171,131,125,200,0,15,132,170,0,0,0,139,69,176,137,69,196,139,85,176,131,234,2,139,69,16,141,4,2,137,69,192,139,69,180,139,64,4,139,0,137,69,208,235,88,139,69,208,15,182,0,60,59,116,52,139, 69,208,15,182,0,60,44,116,42,139,69,208,15,182,0,60,92,116,32,139,69,208,15,182,0,60,36,117,31,139,69,208,64,15,182,0,60,47,126,20,139,69,208,64,15,182,0,60,57,127,9,139,69,196,198,0,92,255,69,196,139,69,208,15,182,16,139,69,196,136,16,255,69,196,255, 69,208,139,69,196,59,69,192,115,10,139,69,208,15,182,0,132,192,117,150,139,69,208,15,182,0,132,192,116,9,139,69,196,198,0,42,255,69,196,139,69,196,198,0,0,233,161,1,0,0,139,69,16,72,59,69,204,118,75,184,255,255,255,255,131,248,255,116,37,186,255,255, 255,255,139,69,180,139,64,4,139,0,137,84,36,8,137,68,36,4,139,69,176,137,4,36,232,74,58,3,0,233,105,1,0,0,139,69,180,139,64,4,139,0,137,68,36,4,139,69,176,137,4,36,232,108,1,0,0,233,77,1,0,0,184,255,255,255,255,131,248,255,116,44,186,255,255,255,255, 139,77,16,131,233,2,139,69,180,139,64,4,139,0,137,84,36,12,137,76,36,8,137,68,36,4,139,69,176,137,4,36,232,1,58,3,0,235,33,139,85,16,131,234,2,139,69,180,139,64,4,139,0,137,84,36,8,137,68,36,4,139,69,176,137,4,36,232,51,1,0,0,184,255,255,255,255,131, 248,255,116,43,185,255,255,255,255,139,85,176,131,234,2,139,69,16,1,194,137,76,36,8,141,131,146,11,3,0,137,68,36,4,137,20,36,232,162,57,3,0,233,193,0,0,0,139,85,176,131,234,2,139,69,16,1,194,141,131,146,11,3,0,137,68,36,4,137,20,36,232,190,0,0,0,233, 159,0,0,0,139,69,180,139,64,4,186,255,255,255,255,137,68,36,16,141,131,148,11,3,0,137,68,36,12,137,84,36,8,199,68,36,4,0,0,0,0,139,69,176,137,4,36,232,57,57,3,0,235,109,184,255,255,255,255,131,248,255,116,41,186,255,255,255,255,139,69,180,139,64,4,139, 8,137,84,36,12,139,69,16,137,68,36,8,137,76,36,4,139,69,176,137,4,36,232,36,57,3,0,235,30,139,69,180,139,64,4,139,16,139,69,16,137,68,36,8,137,84,36,4,139,69,176,137,4,36,232,89,0,0,0,139,69,176,72,139,85,16,1,208,198,0,0,235,14,141,131,152,11,3,0,137, 4,36,232,146,118,1,0,141,131,180,69,3,0,139,0,139,85,244,51,16,116,5,232,188,56,3,0,131,196,116,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,161,56,3,0,201,195,85,137,229,131,236,24,184, 255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,131,56,3,0,201,195,144,144,144,85,137,229,131,236,40,199,4,36,8,0,0,0,232,197,144,0,0,137,69,244,139,69,244,199,0,0,0,0,0,199,4,36,0,0,0,0,232,173,144,0,0, 137,194,139,69,244,137,80,4,139,69,244,201,195,85,137,229,131,236,24,139,69,8,139,0,141,20,197,0,0,0,0,139,69,8,139,64,4,137,84,36,4,137,4,36,232,98,146,0,0,199,68,36,4,8,0,0,0,139,69,8,137,4,36,232,79,146,0,0,201,195,85,137,229,86,131,236,36,199,4,36, 8,0,0,0,232,84,144,0,0,137,69,244,139,69,8,139,16,139,69,244,137,16,139,69,244,139,0,193,224,3,137,4,36,232,55,144,0,0,137,194,139,69,244,137,80,4,184,255,255,255,255,131,248,255,116,51,185,255,255,255,255,139,69,244,139,0,141,52,197,0,0,0,0,139,69,8, 139,80,4,139,69,244,139,64,4,137,76,36,12,137,116,36,8,137,84,36,4,137,4,36,232,101,55,3,0,235,40,139,69,244,139,0,141,20,197,0,0,0,0,139,69,8,139,72,4,139,69,244,139,64,4,137,84,36,8,137,76,36,4,137,4,36,232,9,0,0,0,139,69,244,131,196,36,94,201,195, 85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,10,55,3,0,201,195,85,137,229,131,236,24,139,69,8,139,0,141,20,197,0,0,0,0,139,69,8,139,64,4,199,68,36,8,0,0,0,0,137,84,36,4,137,4, 36,232,91,144,0,0,137,194,139,69,8,137,80,4,139,69,8,199,0,0,0,0,0,201,195,85,137,229,83,129,236,116,4,0,0,232,0,0,0,0,91,139,69,8,137,133,180,251,255,255,139,69,12,137,133,176,251,255,255,141,131,130,62,3,0,139,0,139,16,137,85,244,49,210,141,133,11, 252,255,255,5,232,3,0,0,137,133,0,252,255,255,139,133,176,251,255,255,137,133,252,251,255,255,139,69,16,3,133,176,251,255,255,137,133,248,251,255,255,199,133,240,251,255,255,16,0,0,0,199,133,236,251,255,255,0,0,0,0,139,133,180,251,255,255,139,0,141,20, 197,0,0,0,0,139,133,180,251,255,255,139,64,4,137,84,36,4,137,4,36,232,169,144,0,0,139,133,240,251,255,255,193,224,3,137,4,36,232,178,142,0,0,137,194,139,133,180,251,255,255,137,80,4,139,133,180,251,255,255,139,64,4,137,133,244,251,255,255,139,133,180, 251,255,255,199,0,0,0,0,0,235,6,255,133,252,251,255,255,139,133,252,251,255,255,59,133,248,251,255,255,116,52,139,133,252,251,255,255,15,182,0,60,32,116,223,139,133,252,251,255,255,15,182,0,60,10,116,210,139,133,252,251,255,255,15,182,0,60,13,116,197, 139,133,252,251,255,255,15,182,0,60,9,116,184,139,133,252,251,255,255,59,133,248,251,255,255,15,132,132,6,0,0,139,133,252,251,255,255,15,182,0,60,59,117,36,139,133,244,251,255,255,199,0,4,0,0,0,139,133,244,251,255,255,199,64,4,0,0,0,0,255,133,252,251, 255,255,233,200,5,0,0,139,133,252,251,255,255,15,182,0,60,44,117,36,139,133,244,251,255,255,199,0,5,0,0,0,139,133,244,251,255,255,199,64,4,0,0,0,0,255,133,252,251,255,255,233,151,5,0,0,199,133,228,251,255,255,0,0,0,0,199,133,224,251,255,255,0,0,0,0,199, 133,220,251,255,255,0,0,0,0,199,133,216,251,255,255,0,0,0,0,141,133,11,252,255,255,137,133,4,252,255,255,139,133,252,251,255,255,15,182,16,139,133,4,252,255,255,136,16,139,133,4,252,255,255,15,182,0,136,133,10,252,255,255,255,133,252,251,255,255,139, 133,224,251,255,255,137,133,220,251,255,255,128,189,10,252,255,255,92,15,148,192,15,182,192,137,133,224,251,255,255,131,189,228,251,255,255,0,15,136,249,2,0,0,128,189,10,252,255,255,47,126,21,128,189,10,252,255,255,57,127,12,199,133,156,251,255,255,1, 0,0,0,235,10,199,133,156,251,255,255,0,0,0,0,139,133,156,251,255,255,137,133,212,251,255,255,128,189,10,252,255,255,46,15,148,192,15,182,192,137,133,208,251,255,255,128,189,10,252,255,255,45,15,148,192,15,182,192,137,133,204,251,255,255,131,189,204,251, 255,255,0,117,9,128,189,10,252,255,255,43,117,12,199,133,160,251,255,255,1,0,0,0,235,10,199,133,160,251,255,255,0,0,0,0,139,149,160,251,255,255,137,149,200,251,255,255,128,189,10,252,255,255,101,116,9,128,189,10,252,255,255,69,117,12,199,133,164,251, 255,255,1,0,0,0,235,10,199,133,164,251,255,255,0,0,0,0,139,133,164,251,255,255,137,133,196,251,255,255,131,189,228,251,255,255,0,117,87,131,189,204,251,255,255,0,116,15,199,133,228,251,255,255,1,0,0,0,233,22,2,0,0,131,189,212,251,255,255,0,116,15,199, 133,228,251,255,255,2,0,0,0,233,254,1,0,0,131,189,208,251,255,255,0,116,15,199,133,228,251,255,255,3,0,0,0,233,230,1,0,0,199,133,228,251,255,255,255,255,255,255,233,215,1,0,0,131,189,228,251,255,255,1,117,63,131,189,212,251,255,255,0,116,15,199,133,228, 251,255,255,2,0,0,0,233,182,1,0,0,131,189,208,251,255,255,0,116,15,199,133,228,251,255,255,3,0,0,0,233,158,1,0,0,199,133,228,251,255,255,255,255,255,255,233,143,1,0,0,131,189,228,251,255,255,2,117,76,131,189,208,251,255,255,0,116,15,199,133,228,251,255, 255,4,0,0,0,233,110,1,0,0,131,189,196,251,255,255,0,116,15,199,133,228,251,255,255,6,0,0,0,233,86,1,0,0,131,189,212,251,255,255,0,15,133,73,1,0,0,199,133,228,251,255,255,255,255,255,255,233,58,1,0,0,131,189,228,251,255,255,3,117,39,131,189,212,251,255, 255,0,116,15,199,133,228,251,255,255,5,0,0,0,233,25,1,0,0,199,133,228,251,255,255,255,255,255,255,233,10,1,0,0,131,189,228,251,255,255,4,117,63,131,189,212,251,255,255,0,116,15,199,133,228,251,255,255,5,0,0,0,233,233,0,0,0,131,189,196,251,255,255,0,116, 15,199,133,228,251,255,255,6,0,0,0,233,209,0,0,0,199,133,228,251,255,255,255,255,255,255,233,194,0,0,0,131,189,228,251,255,255,5,117,52,131,189,196,251,255,255,0,116,15,199,133,228,251,255,255,6,0,0,0,233,161,0,0,0,131,189,212,251,255,255,0,15,133,148, 0,0,0,199,133,228,251,255,255,255,255,255,255,233,133,0,0,0,131,189,228,251,255,255,6,117,54,131,189,200,251,255,255,0,116,12,199,133,228,251,255,255,7,0,0,0,235,103,131,189,212,251,255,255,0,116,12,199,133,228,251,255,255,8,0,0,0,235,82,199,133,228, 251,255,255,255,255,255,255,235,70,131,189,228,251,255,255,7,117,33,131,189,212,251,255,255,0,116,12,199,133,228,251,255,255,8,0,0,0,235,40,199,133,228,251,255,255,255,255,255,255,235,28,131,189,228,251,255,255,8,117,19,131,189,212,251,255,255,0,117, 10,199,133,228,251,255,255,255,255,255,255,131,189,220,251,255,255,0,117,59,128,189,10,252,255,255,36,117,50,139,133,252,251,255,255,59,133,248,251,255,255,116,36,139,133,252,251,255,255,15,182,0,60,47,126,23,139,133,252,251,255,255,15,182,0,60,57,127, 10,199,133,216,251,255,255,1,0,0,0,131,189,224,251,255,255,0,117,6,255,133,4,252,255,255,139,133,252,251,255,255,59,133,248,251,255,255,116,109,139,133,4,252,255,255,59,133,0,252,255,255,116,95,131,189,224,251,255,255,0,15,133,57,252,255,255,139,133, 252,251,255,255,15,182,0,60,32,116,69,139,133,252,251,255,255,15,182,0,60,10,116,56,139,133,252,251,255,255,15,182,0,60,13,116,43,139,133,252,251,255,255,15,182,0,60,9,116,30,139,133,252,251,255,255,15,182,0,60,44,116,17,139,133,252,251,255,255,15,182, 0,60,59,15,133,231,251,255,255,139,133,4,252,255,255,198,0,0,131,189,228,251,255,255,2,116,27,131,189,228,251,255,255,4,116,18,131,189,228,251,255,255,5,116,9,131,189,228,251,255,255,8,117,56,139,133,244,251,255,255,199,0,1,0,0,0,141,133,11,252,255,255, 137,4,36,232,11,49,3,0,221,157,168,251,255,255,242,15,90,133,168,251,255,255,139,133,244,251,255,255,243,15,17,64,4,233,229,0,0,0,131,189,216,251,255,255,0,15,132,179,0,0,0,15,182,133,11,252,255,255,60,36,116,10,199,133,216,251,255,255,0,0,0,0,141,133, 11,252,255,255,64,137,133,4,252,255,255,235,42,139,133,4,252,255,255,15,182,0,60,47,126,13,139,133,4,252,255,255,15,182,0,60,57,126,10,199,133,216,251,255,255,0,0,0,0,255,133,4,252,255,255,139,133,4,252,255,255,15,182,0,132,192,117,201,131,189,216,251, 255,255,0,116,40,139,133,244,251,255,255,199,0,8,0,0,0,141,133,11,252,255,255,64,137,4,36,232,103,48,3,0,137,194,139,133,244,251,255,255,137,80,4,235,76,139,133,244,251,255,255,199,0,9,0,0,0,141,133,11,252,255,255,137,4,36,232,221,110,0,0,137,194,139, 133,244,251,255,255,137,80,4,235,37,139,133,244,251,255,255,199,0,2,0,0,0,141,133,11,252,255,255,137,4,36,232,182,110,0,0,137,194,139,133,244,251,255,255,137,80,4,131,133,244,251,255,255,8,255,133,236,251,255,255,139,133,236,251,255,255,59,133,240,251, 255,255,117,93,139,133,240,251,255,255,137,194,193,226,4,139,133,240,251,255,255,141,12,197,0,0,0,0,139,133,180,251,255,255,139,64,4,137,84,36,8,137,76,36,4,137,4,36,232,219,136,0,0,137,194,139,133,180,251,255,255,137,80,4,209,165,240,251,255,255,139, 133,180,251,255,255,139,80,4,139,133,236,251,255,255,193,224,3,141,4,2,137,133,244,251,255,255,139,133,252,251,255,255,59,133,248,251,255,255,116,5,233,40,249,255,255,139,133,236,251,255,255,141,20,197,0,0,0,0,139,133,240,251,255,255,141,12,197,0,0,0, 0,139,133,180,251,255,255,139,64,4,137,84,36,8,137,76,36,4,137,4,36,232,105,136,0,0,137,194,139,133,180,251,255,255,137,80,4,139,149,180,251,255,255,139,133,236,251,255,255,137,2,141,131,130,62,3,0,139,0,139,85,244,51,16,116,5,232,219,46,3,0,129,196, 116,4,0,0,91,201,195,85,137,229,83,129,236,52,4,0,0,232,0,0,0,0,91,139,69,8,137,133,228,251,255,255,139,69,12,137,133,224,251,255,255,139,69,16,137,133,220,251,255,255,141,131,109,54,3,0,139,0,139,16,137,85,244,49,210,199,4,36,0,0,0,0,232,253,134,0,0, 137,133,8,252,255,255,199,133,0,252,255,255,0,0,0,0,139,133,228,251,255,255,139,64,4,137,133,252,251,255,255,139,133,228,251,255,255,139,0,137,133,248,251,255,255,233,94,1,0,0,139,133,252,251,255,255,139,0,131,248,4,116,13,139,133,252,251,255,255,139, 0,131,248,5,117,38,131,189,0,252,255,255,0,116,29,139,149,8,252,255,255,74,139,133,0,252,255,255,141,4,2,15,182,0,60,32,117,6,255,141,0,252,255,255,199,68,36,8,232,3,0,0,141,133,12,252,255,255,137,68,36,4,139,133,252,251,255,255,137,4,36,232,228,239, 255,255,141,133,12,252,255,255,137,4,36,232,32,48,3,0,137,194,139,133,0,252,255,255,141,4,2,64,137,133,244,251,255,255,139,133,244,251,255,255,139,149,0,252,255,255,137,68,36,8,137,84,36,4,139,133,8,252,255,255,137,4,36,232,25,135,0,0,137,133,4,252,255, 255,131,189,4,252,255,255,0,15,132,188,0,0,0,139,133,4,252,255,255,137,133,8,252,255,255,184,255,255,255,255,131,248,255,116,43,186,255,255,255,255,139,133,0,252,255,255,137,193,3,141,8,252,255,255,137,84,36,8,141,133,12,252,255,255,137,68,36,4,137,12, 36,232,114,45,3,0,235,32,139,133,0,252,255,255,137,194,3,149,8,252,255,255,141,133,12,252,255,255,137,68,36,4,137,20,36,232,248,0,0,0,139,133,244,251,255,255,137,133,0,252,255,255,139,133,252,251,255,255,139,0,131,248,4,117,21,139,149,8,252,255,255,74, 139,133,0,252,255,255,141,4,2,198,0,10,235,19,139,149,8,252,255,255,74,139,133,0,252,255,255,141,4,2,198,0,32,131,133,252,251,255,255,8,255,141,248,251,255,255,131,189,248,251,255,255,255,15,133,143,254,255,255,131,189,0,252,255,255,0,116,91,139,149, 8,252,255,255,74,139,133,0,252,255,255,141,4,2,15,182,0,60,32,117,68,139,133,0,252,255,255,72,139,149,0,252,255,255,137,68,36,8,137,84,36,4,139,133,8,252,255,255,137,4,36,232,7,134,0,0,137,133,4,252,255,255,131,189,4,252,255,255,0,116,18,139,133,4,252, 255,255,137,133,8,252,255,255,255,141,0,252,255,255,139,149,224,251,255,255,139,133,8,252,255,255,137,2,139,149,220,251,255,255,139,133,0,252,255,255,137,2,141,131,109,54,3,0,139,0,139,85,244,51,16,116,5,232,85,44,3,0,129,196,52,4,0,0,91,201,195,85,137, 229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,55,44,3,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,0,3,69,12,137,69,244,139,69,244,141,12,197,0,0,0,0,139,69,8,139,0,141,20,197,0,0,0,0,139, 69,8,139,64,4,137,76,36,8,137,84,36,4,137,4,36,232,70,133,0,0,137,69,236,131,125,236,0,116,37,139,85,8,139,69,236,137,66,4,139,69,8,139,80,4,139,69,8,139,0,193,224,3,141,4,2,137,69,236,139,69,12,137,69,240,235,40,141,131,183,249,2,0,137,4,36,232,10,103, 1,0,235,41,139,69,16,139,80,4,139,0,139,77,236,137,1,137,81,4,131,69,16,8,131,69,236,8,255,77,240,131,125,240,255,117,223,139,85,8,139,69,244,137,2,131,196,36,91,201,195,85,137,229,83,129,236,84,3,0,0,232,0,0,0,0,91,141,133,200,252,255,255,137,69,240, 199,69,236,0,0,0,0,139,69,12,137,69,232,141,69,16,137,69,244,131,125,236,99,126,27,199,68,36,4,100,0,0,0,141,131,35,249,2,0,137,4,36,232,145,102,1,0,233,246,0,0,0,139,69,232,15,182,0,15,190,192,137,133,196,252,255,255,255,69,232,131,189,196,252,255,255, 102,116,99,131,189,196,252,255,255,102,127,31,131,189,196,252,255,255,44,15,132,166,0,0,0,131,189,196,252,255,255,59,15,132,132,0,0,0,233,179,0,0,0,131,189,196,252,255,255,105,116,14,131,189,196,252,255,255,115,116,79,233,156,0,0,0,139,69,240,199,0,1, 0,0,0,139,85,244,141,66,4,137,69,244,137,208,139,0,243,15,42,192,139,69,240,243,15,17,64,4,235,108,139,69,240,199,0,1,0,0,0,139,85,244,141,66,8,137,69,244,137,208,242,15,16,0,242,15,90,192,139,69,240,243,15,17,64,4,235,70,139,69,240,199,0,2,0,0,0,139, 85,244,141,66,4,137,69,244,137,208,139,16,139,69,240,137,80,4,235,40,139,69,240,199,0,4,0,0,0,139,69,240,199,64,4,0,0,0,0,235,19,139,69,240,199,0,5,0,0,0,139,69,240,199,64,4,0,0,0,0,131,69,240,8,255,69,236,233,233,254,255,255,141,133,200,252,255,255, 137,68,36,8,139,69,236,137,68,36,4,139,69,8,137,4,36,232,240,253,255,255,129,196,84,3,0,0,91,201,195,85,137,229,83,129,236,52,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,141,131,171,49,3,0,139,0,139,16,137, 85,244,49,210,232,116,241,255,255,137,133,8,252,255,255,139,133,240,251,255,255,139,80,4,139,133,240,251,255,255,139,0,137,84,36,8,137,68,36,4,139,133,8,252,255,255,137,4,36,232,132,253,255,255,199,133,4,252,255,255,0,0,0,0,139,133,8,252,255,255,139, 64,4,137,133,0,252,255,255,233,1,2,0,0,139,133,0,252,255,255,139,0,137,133,236,251,255,255,131,189,236,251,255,255,9,15,135,203,1,0,0,139,149,236,251,255,255,193,226,2,141,131,163,0,0,0,139,4,2,1,216,255,224,88,2,0,0,102,2,0,0,200,1,0,0,88,2,0,0,203, 0,0,0,245,0,0,0,88,2,0,0,88,2,0,0,31,1,0,0,126,1,0,0,139,133,0,252,255,255,199,0,2,0,0,0,141,131,3,184,2,0,137,4,36,232,1,104,0,0,137,194,139,133,0,252,255,255,137,80,4,233,113,1,0,0,139,133,0,252,255,255,199,0,2,0,0,0,141,131,123,247,2,0,137,4,36,232, 215,103,0,0,137,194,139,133,0,252,255,255,137,80,4,233,71,1,0,0,139,133,0,252,255,255,139,64,4,137,68,36,16,141,131,139,247,2,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,167,40,3,0,139,133,0,252,255,255, 199,0,2,0,0,0,141,133,12,252,255,255,137,4,36,232,120,103,0,0,137,194,139,133,0,252,255,255,137,80,4,233,232,0,0,0,199,68,36,8,232,3,0,0,141,133,12,252,255,255,137,68,36,4,139,133,0,252,255,255,137,4,36,232,77,234,255,255,139,133,0,252,255,255,199,0, 2,0,0,0,141,133,12,252,255,255,137,4,36,232,46,103,0,0,137,194,139,133,0,252,255,255,137,80,4,233,158,0,0,0,139,133,0,252,255,255,139,64,4,139,16,141,131,3,184,2,0,137,68,36,4,137,20,36,232,68,42,3,0,133,192,117,39,139,133,0,252,255,255,199,0,2,0,0,0, 141,131,3,184,2,0,137,4,36,232,227,102,0,0,137,194,139,133,0,252,255,255,137,80,4,235,86,139,133,0,252,255,255,139,64,4,139,16,141,131,123,247,2,0,137,68,36,4,137,20,36,232,252,41,3,0,133,192,117,53,139,133,0,252,255,255,199,0,2,0,0,0,141,131,123,247, 2,0,137,4,36,232,155,102,0,0,137,194,139,133,0,252,255,255,137,80,4,235,14,141,131,220,247,2,0,137,4,36,232,93,101,1,0,255,133,4,252,255,255,131,133,0,252,255,255,8,139,133,8,252,255,255,139,0,59,133,4,252,255,255,15,143,235,253,255,255,139,133,8,252, 255,255,139,80,4,139,133,8,252,255,255,139,0,137,84,36,8,137,68,36,4,139,133,244,251,255,255,137,4,36,232,42,251,255,255,141,131,171,49,3,0,139,0,139,85,244,51,16,116,5,232,63,39,3,0,129,196,52,4,0,0,91,201,195,85,137,229,131,236,40,199,69,240,4,0,0, 0,199,69,244,0,0,0,0,141,69,240,137,68,36,8,199,68,36,4,1,0,0,0,139,69,8,137,4,36,232,223,250,255,255,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,0,3,69,12,137,69,244,139,69,244,141,12,197,0,0,0,0,139,69,8,139,0,141,20,197,0,0,0,0,139, 69,8,139,64,4,137,76,36,8,137,84,36,4,137,4,36,232,35,128,0,0,137,69,236,131,125,236,0,116,40,139,85,8,139,69,236,137,66,4,139,69,8,139,80,4,139,69,8,139,0,193,224,3,141,4,2,137,69,236,139,69,12,137,69,240,233,170,1,0,0,141,131,148,244,2,0,137,4,36,232, 228,97,1,0,233,172,1,0,0,139,69,16,139,0,131,248,2,15,133,113,1,0,0,139,69,16,139,64,4,139,0,137,69,232,141,131,252,180,2,0,137,68,36,4,139,69,232,137,4,36,232,120,40,3,0,133,192,117,24,139,69,236,199,0,4,0,0,0,139,69,236,199,64,4,0,0,0,0,233,47,1,0, 0,141,131,116,244,2,0,137,68,36,4,139,69,232,137,4,36,232,71,40,3,0,133,192,117,24,139,69,236,199,0,5,0,0,0,139,69,236,199,64,4,0,0,0,0,233,254,0,0,0,199,68,36,4,36,0,0,0,139,69,232,137,4,36,232,18,40,3,0,137,69,228,131,125,228,0,15,132,206,0,0,0,139, 69,228,64,15,182,0,60,47,15,142,191,0,0,0,139,69,228,64,15,182,0,60,57,15,143,176,0,0,0,199,69,224,0,0,0,0,139,69,232,15,182,0,60,36,116,9,199,69,224,1,0,0,0,235,51,139,69,232,64,137,69,228,235,32,139,69,228,15,182,0,60,47,126,10,139,69,228,15,182,0, 60,57,126,9,199,69,224,1,0,0,0,235,13,255,69,228,139,69,228,15,182,0,132,192,117,214,131,125,224,0,116,30,139,69,236,199,0,9,0,0,0,139,69,232,137,4,36,232,67,100,0,0,137,194,139,69,236,137,80,4,235,79,199,69,220,0,0,0,0,139,69,16,139,64,4,139,0,141,80, 1,141,69,220,137,68,36,8,141,131,120,171,2,0,137,68,36,4,137,20,36,232,63,39,3,0,139,69,236,199,0,8,0,0,0,139,85,220,139,69,236,137,80,4,235,16,139,69,16,139,80,4,139,0,139,77,236,137,1,137,81,4,131,69,16,8,235,20,139,69,16,139,80,4,139,0,139,77,236, 137,1,137,81,4,131,69,16,8,131,69,236,8,255,77,240,131,125,240,255,15,133,92,254,255,255,139,85,8,139,69,244,137,2,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,240,0,0,0,0,199,69,236,1,0,0,0,199,69,244,0,0,0,0,235,110,131,125, 236,0,116,32,131,125,240,0,116,5,232,136,95,1,0,141,131,18,169,2,0,137,4,36,232,215,93,1,0,199,69,240,1,0,0,0,139,69,8,139,80,4,139,69,244,193,224,3,141,4,2,137,68,36,4,199,4,36,1,0,0,0,232,99,94,1,0,139,69,8,139,80,4,139,69,244,193,224,3,141,4,2,139, 0,131,248,4,117,9,199,69,236,1,0,0,0,235,7,199,69,236,0,0,0,0,255,69,244,139,69,8,139,0,59,69,244,127,136,131,125,240,0,116,5,232,22,95,1,0,131,196,36,91,201,195,85,137,229,131,236,8,139,69,8,139,0,201,195,85,137,229,131,236,8,139,69,8,139,64,4,201,195, 85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,137,4,36,232,58,36,3,0,137,69,240,199,69,236,0,0,0,0,139,69,8,137,69,232,139,69,232,15,182,0,136,69,247,139,69,12,198,0,0,235,15,139,69,232,15,182,0,136,69,247,255,69,232,255,69,236,128,125,247,0,116,12, 128,125,247,47,126,6,128,125,247,57,126,223,139,69,232,59,69,8,117,50,184,255,255,255,255,141,147,228,241,2,0,137,84,36,12,137,68,36,8,199,68,36,4,0,0,0,0,139,69,12,137,4,36,232,118,35,3,0,199,69,228,0,0,0,0,233,154,0,0,0,131,125,240,0,120,8,139,69,240, 59,69,24,126,62,131,125,32,0,117,9,199,69,228,0,0,0,0,235,125,186,255,255,255,255,139,69,240,137,68,36,16,141,131,130,241,2,0,137,68,36,12,137,84,36,8,199,68,36,4,0,0,0,0,139,69,12,137,4,36,232,32,35,3,0,235,71,131,125,240,0,117,28,199,68,36,8,243,1, 0,0,139,69,12,137,68,36,4,141,69,16,137,4,36,232,238,228,255,255,235,37,139,85,28,131,234,8,139,69,240,193,224,3,1,194,199,68,36,8,243,1,0,0,139,69,12,137,68,36,4,137,20,36,232,199,228,255,255,139,69,236,72,137,69,228,139,69,228,131,196,68,91,201,195, 85,137,229,83,129,236,36,8,0,0,232,0,0,0,0,91,139,69,8,137,133,4,248,255,255,139,69,16,137,133,0,248,255,255,141,131,104,42,3,0,139,0,139,16,137,85,244,49,210,139,133,4,248,255,255,139,0,137,133,32,248,255,255,199,133,24,248,255,255,0,0,0,0,199,133,20, 248,255,255,232,3,0,0,199,133,12,248,255,255,1,0,0,0,232,188,37,252,255,243,15,42,192,243,15,17,133,16,248,255,255,235,14,139,133,20,248,255,255,198,132,5,36,248,255,255,0,255,141,20,248,255,255,131,189,20,248,255,255,255,117,227,199,68,36,4,36,0,0,0, 139,133,32,248,255,255,137,4,36,232,76,36,3,0,137,133,28,248,255,255,131,189,28,248,255,255,0,116,21,139,133,28,248,255,255,139,149,32,248,255,255,41,208,61,231,3,0,0,126,17,139,141,4,248,255,255,137,141,252,247,255,255,233,156,1,0,0,139,149,28,248,255, 255,139,133,32,248,255,255,137,209,41,193,137,200,199,68,36,12,232,3,0,0,137,68,36,8,139,133,32,248,255,255,137,68,36,4,141,133,36,248,255,255,137,4,36,232,209,33,3,0,139,133,28,248,255,255,64,137,133,32,248,255,255,233,233,0,0,0,131,125,20,0,117,35, 131,189,24,248,255,255,0,117,26,15,182,133,12,252,255,255,132,192,117,15,199,133,252,247,255,255,0,0,0,0,233,43,1,0,0,199,68,36,12,232,3,0,0,199,68,36,8,243,1,0,0,141,133,12,252,255,255,137,68,36,4,141,133,36,248,255,255,137,4,36,232,110,33,3,0,139,133, 24,248,255,255,1,133,32,248,255,255,199,68,36,4,36,0,0,0,139,133,32,248,255,255,137,4,36,232,92,35,3,0,137,133,28,248,255,255,131,189,28,248,255,255,0,116,69,139,149,28,248,255,255,139,133,32,248,255,255,137,209,41,193,137,200,199,68,36,12,232,3,0,0, 137,68,36,8,139,133,32,248,255,255,137,68,36,4,141,133,36,248,255,255,137,4,36,232,7,33,3,0,139,133,28,248,255,255,64,137,133,32,248,255,255,235,34,199,68,36,8,232,3,0,0,139,133,32,248,255,255,137,68,36,4,141,133,36,248,255,255,137,4,36,232,204,32,3, 0,235,87,139,69,20,137,68,36,24,139,133,0,248,255,255,137,68,36,20,139,69,12,137,68,36,16,139,133,12,248,255,255,139,149,16,248,255,255,137,68,36,8,137,84,36,12,141,133,12,252,255,255,137,68,36,4,139,133,32,248,255,255,137,4,36,232,124,252,255,255,137, 133,24,248,255,255,131,189,24,248,255,255,0,15,137,192,254,255,255,141,133,36,248,255,255,137,4,36,232,68,95,0,0,137,133,252,247,255,255,139,133,252,247,255,255,141,147,104,42,3,0,139,18,139,77,244,51,10,116,5,232,63,32,3,0,129,196,36,8,0,0,91,201,195, 85,137,229,83,129,236,132,0,0,0,232,0,0,0,0,91,139,69,8,139,64,4,137,69,236,139,69,8,139,0,137,69,232,199,69,224,0,0,0,0,131,125,232,5,127,11,141,69,164,137,69,244,233,167,0,0,0,141,131,201,40,3,0,139,0,57,69,12,117,8,139,69,232,137,69,224,235,115,131, 125,12,0,116,9,199,69,140,0,0,0,0,235,7,199,69,140,255,255,255,255,139,69,140,137,69,216,199,69,220,0,0,0,0,235,70,139,69,220,193,224,3,3,69,236,139,0,131,248,4,117,9,199,69,216,255,255,255,255,235,42,139,69,220,193,224,3,3,69,236,139,0,131,248,5,117, 9,199,69,216,0,0,0,0,235,17,255,69,216,139,69,216,59,69,224,126,6,139,69,216,137,69,224,255,69,220,139,69,220,59,69,232,124,178,131,125,224,5,127,8,141,69,164,137,69,244,235,17,139,69,224,193,224,3,137,4,36,232,202,119,0,0,137,69,244,139,69,244,137,69, 240,233,100,1,0,0,255,77,232,131,69,236,8,131,125,232,0,116,20,139,69,236,139,0,131,248,4,116,233,139,69,236,139,0,131,248,5,116,223,131,125,232,0,15,132,67,1,0,0,139,69,236,139,0,131,248,8,15,133,130,0,0,0,139,69,236,139,64,4,133,192,126,11,139,69,236, 139,64,4,59,69,16,126,29,139,69,236,139,64,4,137,68,36,4,141,131,21,238,2,0,137,4,36,232,70,90,1,0,233,215,0,0,0,139,85,20,131,234,8,139,69,236,139,64,4,193,224,3,141,4,2,139,0,131,248,2,116,29,139,69,236,139,64,4,137,68,36,4,141,131,57,238,2,0,137,4, 36,232,16,90,1,0,233,161,0,0,0,139,85,20,131,234,8,139,69,236,139,64,4,193,224,3,141,4,2,139,64,4,137,69,208,235,97,139,69,236,139,0,131,248,9,117,73,139,69,236,139,80,4,199,68,36,12,0,0,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,149, 251,255,255,137,69,208,131,125,208,0,117,42,139,69,236,139,64,4,139,0,137,68,36,4,141,131,101,238,2,0,137,4,36,232,160,89,1,0,235,52,139,69,236,137,4,36,232,40,222,255,255,137,69,208,139,69,208,139,64,4,137,69,12,131,125,12,0,117,48,139,69,208,139,0, 137,68,36,4,141,131,136,238,2,0,137,4,36,232,106,89,1,0,131,69,236,8,255,77,232,131,125,232,0,116,21,139,69,236,139,0,131,248,4,117,233,235,9,131,69,236,8,255,77,232,235,10,131,125,12,0,15,132,153,254,255,255,131,125,232,0,15,132,241,2,0,0,199,69,228, 0,0,0,0,139,69,12,137,69,212,131,125,232,0,15,132,57,2,0,0,139,69,236,139,0,137,69,144,131,125,144,9,15,135,1,2,0,0,139,85,144,193,226,2,141,131,145,2,0,0,139,4,2,1,216,255,224,144,126,4,0,0,43,3,0,0,43,3,0,0,126,4,0,0,185,2,0,0,246,2,0,0,126,4,0,0,126, 4,0,0,64,3,0,0,255,3,0,0,141,131,201,40,3,0,139,0,57,69,12,117,36,139,69,240,199,0,2,0,0,0,141,131,41,174,2,0,137,4,36,232,47,92,0,0,137,194,139,69,240,137,80,4,233,167,1,0,0,199,69,212,0,0,0,0,233,174,1,0,0,141,131,201,40,3,0,139,0,57,69,12,15,133,157, 1,0,0,139,69,240,199,0,2,0,0,0,141,131,161,237,2,0,137,4,36,232,238,91,0,0,137,194,139,69,240,137,80,4,233,102,1,0,0,139,69,236,139,80,4,139,0,139,77,240,137,1,137,81,4,233,81,1,0,0,139,69,236,139,64,4,133,192,126,47,139,69,236,139,64,4,59,69,16,127, 36,139,85,20,131,234,8,139,69,236,139,64,4,193,224,3,141,4,2,139,80,4,139,0,139,77,240,137,1,137,81,4,233,24,1,0,0,139,69,236,139,64,4,133,192,117,31,139,69,240,199,0,1,0,0,0,232,231,31,252,255,243,15,42,192,139,69,240,243,15,17,64,4,233,239,0,0,0,141, 131,201,40,3,0,139,0,57,69,12,117,28,139,69,240,199,0,1,0,0,0,139,85,240,141,131,45,26,3,0,139,0,137,66,4,233,198,0,0,0,139,69,236,139,64,4,137,68,36,4,141,131,157,238,2,0,137,4,36,232,165,87,1,0,139,69,240,199,0,1,0,0,0,139,85,240,141,131,45,26,3,0, 139,0,137,66,4,233,146,0,0,0,141,131,201,40,3,0,139,0,57,69,12,15,148,192,15,182,208,139,69,236,139,72,4,137,84,36,12,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,12,36,232,42,249,255,255,137,69,204,131,125,204,0,117,49,139,69,236,139,64,4,139,0,137, 68,36,4,141,131,193,238,2,0,137,4,36,232,53,87,1,0,139,69,240,199,0,2,0,0,0,139,69,236,139,80,4,139,69,240,137,80,4,235,39,139,69,240,199,0,2,0,0,0,139,85,240,139,69,204,137,66,4,235,19,141,131,226,238,2,0,137,4,36,232,93,89,1,0,233,180,0,0,0,131,69, 240,8,255,77,232,131,69,236,8,255,69,228,233,189,253,255,255,131,125,228,0,116,125,139,69,244,139,0,137,69,148,131,125,148,1,116,49,131,125,148,2,116,2,235,103,139,85,244,131,194,8,139,77,228,73,139,69,244,139,64,4,137,84,36,12,137,76,36,8,137,68,36, 4,139,69,12,137,4,36,232,82,95,0,0,235,62,131,125,228,1,117,23,139,69,244,139,64,4,137,68,36,4,139,69,12,137,4,36,232,123,151,0,0,235,33,139,69,244,137,68,36,12,139,69,228,137,68,36,8,199,68,36,4,0,0,0,0,139,69,12,137,4,36,232,181,151,0,0,139,69,244, 137,69,240,131,125,232,0,116,18,139,69,212,137,69,12,131,69,236,8,255,77,232,233,251,252,255,255,131,125,224,5,126,21,139,69,224,193,224,3,137,68,36,4,139,69,244,137,4,36,232,30,117,0,0,129,196,132,0,0,0,91,201,195,85,137,229,83,129,236,20,4,0,0,232, 0,0,0,0,91,139,69,8,137,133,4,252,255,255,141,131,89,34,3,0,139,0,139,16,137,85,244,49,210,141,133,12,252,255,255,137,68,36,4,139,133,4,252,255,255,137,4,36,232,22,49,1,0,139,69,12,137,68,36,4,141,133,12,252,255,255,137,4,36,232,179,27,3,0,141,147,89, 34,3,0,139,18,139,77,244,51,10,116,5,232,85,26,3,0,129,196,20,4,0,0,91,201,195,85,137,229,83,129,236,20,4,0,0,232,0,0,0,0,91,139,69,8,137,133,4,252,255,255,139,69,12,137,133,0,252,255,255,141,131,231,33,3,0,139,0,139,16,137,85,244,49,210,141,133,12,252, 255,255,137,68,36,4,139,133,4,252,255,255,137,4,36,232,155,48,1,0,139,133,0,252,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,165,26,3,0,141,147,231,33,3,0,139,18,139,77,244,51,10,116,5,232,215,25,3,0,129,196,20,4,0,0,91,201,195,85,137,229, 83,129,236,52,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,139,69,16,137,133,236,251,255,255,141,131,105,33,3,0,139,0,139,16,137,85,244,49,210,198,133,12,252,255,255,0,139,133,236,251,255,255,15,182,0,132,192, 116,64,199,68,36,8,232,3,0,0,139,133,236,251,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,102,25,3,0,199,68,36,8,232,3,0,0,141,131,141,232,2,0,137,68,36,4,141,133,12,252,255,255,137,4,36,232,70,25,3,0,199,68,36,8,232,3,0,0,139,133,240,251, 255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,38,25,3,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,76,254,255,255,137,133,4,252,255,255,131,189,4,252,255,255,0,121,73,141,131,21,33,3,0,139,0,139,0,137,68,36,12,199,68,36,8,6,0,0, 0,199,68,36,4,1,0,0,0,141,131,143,232,2,0,137,4,36,232,191,25,3,0,141,133,12,252,255,255,137,4,36,232,23,26,3,0,199,133,232,251,255,255,1,0,0,0,233,32,2,0,0,199,68,36,12,2,0,0,0,199,68,36,4,0,0,0,0,199,68,36,8,0,0,0,0,139,133,4,252,255,255,137,4,36,232, 190,25,3,0,137,133,8,252,255,255,131,189,8,252,255,255,0,120,71,199,68,36,12,0,0,0,0,199,68,36,4,0,0,0,0,199,68,36,8,0,0,0,0,139,133,4,252,255,255,137,4,36,232,137,25,3,0,133,210,120,29,139,133,8,252,255,255,137,4,36,232,182,112,0,0,137,133,252,251,255, 255,131,189,252,251,255,255,0,117,87,141,131,21,33,3,0,139,0,139,0,137,68,36,12,199,68,36,8,7,0,0,0,199,68,36,4,1,0,0,0,141,131,150,232,2,0,137,4,36,232,250,24,3,0,141,133,12,252,255,255,137,4,36,232,82,25,3,0,139,133,4,252,255,255,137,4,36,232,84,24, 3,0,199,133,232,251,255,255,1,0,0,0,233,77,1,0,0,139,133,8,252,255,255,137,68,36,8,139,133,252,251,255,255,137,68,36,4,139,133,4,252,255,255,137,4,36,232,121,25,3,0,137,133,0,252,255,255,139,133,0,252,255,255,59,133,8,252,255,255,125,125,141,131,21,33, 3,0,139,0,139,16,139,133,0,252,255,255,137,68,36,16,139,133,8,252,255,255,137,68,36,12,139,133,4,252,255,255,137,68,36,8,141,131,158,232,2,0,137,68,36,4,137,20,36,232,53,24,3,0,141,133,12,252,255,255,137,4,36,232,183,24,3,0,139,133,4,252,255,255,137, 4,36,232,185,23,3,0,139,133,8,252,255,255,137,68,36,4,139,133,252,251,255,255,137,4,36,232,146,113,0,0,199,133,232,251,255,255,1,0,0,0,233,154,0,0,0,131,125,20,0,116,66,199,133,248,251,255,255,0,0,0,0,235,40,139,133,248,251,255,255,3,133,252,251,255, 255,15,182,0,60,10,117,15,139,133,248,251,255,255,3,133,252,251,255,255,198,0,59,255,133,248,251,255,255,139,133,248,251,255,255,59,133,8,252,255,255,124,202,139,133,8,252,255,255,137,68,36,8,139,133,252,251,255,255,137,68,36,4,139,133,244,251,255,255, 137,4,36,232,219,223,255,255,139,133,8,252,255,255,137,68,36,4,139,133,252,251,255,255,137,4,36,232,1,113,0,0,139,133,4,252,255,255,137,4,36,232,2,23,3,0,199,133,232,251,255,255,0,0,0,0,139,133,232,251,255,255,141,147,105,33,3,0,139,18,139,77,244,51, 10,116,5,232,120,22,3,0,129,196,52,4,0,0,91,201,195,85,137,229,83,129,236,52,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,139,69,16,137,133,236,251,255,255,141,131,10,30,3,0,139,0,139,16,137,85,244,49,210,199, 68,36,24,0,0,0,0,199,68,36,20,232,3,0,0,141,133,4,252,255,255,137,68,36,16,141,133,12,252,255,255,137,68,36,12,141,131,178,154,2,0,137,68,36,8,139,133,240,251,255,255,137,68,36,4,139,133,236,251,255,255,137,4,36,232,41,82,252,255,137,133,8,252,255,255, 131,189,8,252,255,255,0,121,36,139,133,240,251,255,255,137,68,36,4,141,131,68,159,2,0,137,4,36,232,41,81,1,0,199,133,232,251,255,255,1,0,0,0,235,81,139,133,8,252,255,255,137,4,36,232,20,22,3,0,139,149,4,252,255,255,139,69,20,137,68,36,12,141,133,12,252, 255,255,137,68,36,8,137,84,36,4,139,133,244,251,255,255,137,4,36,232,183,251,255,255,133,192,116,12,199,133,232,251,255,255,1,0,0,0,235,10,199,133,232,251,255,255,0,0,0,0,139,133,232,251,255,255,141,147,10,30,3,0,139,18,139,77,244,51,10,116,5,232,81, 21,3,0,129,196,52,4,0,0,91,201,195,85,137,229,83,129,236,52,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,139,69,16,137,133,236,251,255,255,141,131,227,28,3,0,139,0,139,16,137,85,244,49,210,199,68,36,24,0,0,0, 0,199,68,36,20,232,3,0,0,141,133,4,252,255,255,137,68,36,16,141,133,12,252,255,255,137,68,36,12,141,131,139,153,2,0,137,68,36,8,139,133,240,251,255,255,137,68,36,4,139,133,236,251,255,255,137,4,36,232,253,56,1,0,137,133,8,252,255,255,131,189,8,252,255, 255,0,121,36,139,133,240,251,255,255,137,68,36,4,141,131,29,158,2,0,137,4,36,232,2,80,1,0,199,133,232,251,255,255,1,0,0,0,235,81,139,133,8,252,255,255,137,4,36,232,237,20,3,0,139,149,4,252,255,255,139,69,20,137,68,36,12,141,133,12,252,255,255,137,68, 36,8,137,84,36,4,139,133,244,251,255,255,137,4,36,232,144,250,255,255,133,192,116,12,199,133,232,251,255,255,1,0,0,0,235,10,199,133,232,251,255,255,0,0,0,0,139,133,232,251,255,255,141,147,227,28,3,0,139,18,139,77,244,51,10,116,5,232,42,20,3,0,129,196, 52,4,0,0,91,201,195,85,137,229,83,129,236,52,20,0,0,232,0,0,0,0,91,139,69,8,137,133,228,235,255,255,139,69,12,137,133,224,235,255,255,139,69,16,137,133,220,235,255,255,141,131,188,27,3,0,139,0,139,16,137,85,244,49,210,199,133,8,236,255,255,0,0,0,0,141, 133,12,236,255,255,137,133,4,236,255,255,141,133,12,236,255,255,5,0,16,0,0,137,133,0,236,255,255,199,133,244,235,255,255,0,0,0,0,199,133,240,235,255,255,0,0,0,0,198,133,12,252,255,255,0,139,133,220,235,255,255,15,182,0,132,192,116,64,199,68,36,8,232, 3,0,0,139,133,220,235,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,126,19,3,0,199,68,36,8,232,3,0,0,141,131,224,226,2,0,137,68,36,4,141,133,12,252,255,255,137,4,36,232,94,19,3,0,199,68,36,8,232,3,0,0,139,133,224,235,255,255,137,68,36,4,141, 133,12,252,255,255,137,4,36,232,62,19,3,0,139,133,224,235,255,255,137,4,36,232,94,21,3,0,3,133,224,235,255,255,141,80,252,141,131,140,230,2,0,137,68,36,4,137,20,36,232,55,21,3,0,133,192,116,45,139,133,224,235,255,255,137,4,36,232,49,21,3,0,3,133,224, 235,255,255,141,80,252,141,131,114,193,2,0,137,68,36,4,137,20,36,232,10,21,3,0,133,192,117,38,199,68,36,4,0,0,0,0,139,133,228,235,255,255,137,4,36,232,53,3,0,0,137,133,228,235,255,255,199,133,244,235,255,255,1,0,0,0,141,131,70,200,2,0,137,68,36,4,141, 133,12,252,255,255,137,4,36,232,84,248,255,255,137,133,8,236,255,255,131,189,8,236,255,255,0,117,63,141,131,104,27,3,0,139,0,139,0,137,68,36,12,199,68,36,8,6,0,0,0,199,68,36,4,1,0,0,0,141,131,226,226,2,0,137,4,36,232,85,19,3,0,141,133,12,252,255,255, 137,4,36,232,200,80,1,0,233,100,2,0,0,139,133,228,235,255,255,139,64,4,137,133,252,235,255,255,139,133,228,235,255,255,139,0,137,133,248,235,255,255,233,178,1,0,0,139,133,252,235,255,255,139,0,131,248,2,116,13,139,133,252,235,255,255,139,0,131,248,9, 117,30,139,133,252,235,255,255,139,64,4,139,0,137,4,36,232,55,20,3,0,131,192,80,137,133,236,235,255,255,235,10,199,133,236,235,255,255,40,0,0,0,139,133,0,236,255,255,139,149,4,236,255,255,41,208,59,133,236,235,255,255,125,91,139,149,4,236,255,255,141, 133,12,236,255,255,137,209,41,193,137,200,137,194,139,133,8,236,255,255,137,68,36,12,199,68,36,8,1,0,0,0,137,84,36,4,141,133,12,236,255,255,137,4,36,232,144,18,3,0,133,192,117,19,141,133,12,252,255,255,137,4,36,232,255,79,1,0,233,155,1,0,0,141,133,12, 236,255,255,137,133,4,236,255,255,139,133,252,235,255,255,139,0,131,248,4,116,13,139,133,252,235,255,255,139,0,131,248,5,117,34,141,133,12,236,255,255,59,133,4,236,255,255,115,20,139,133,4,236,255,255,72,15,182,0,60,32,117,6,255,141,4,236,255,255,131, 125,20,0,116,13,139,133,252,235,255,255,139,0,131,248,4,116,93,139,149,0,236,255,255,139,133,4,236,255,255,137,209,41,193,137,200,131,232,2,137,68,36,8,139,133,4,236,255,255,137,68,36,4,139,133,252,235,255,255,137,4,36,232,231,210,255,255,139,133,4,236, 255,255,137,4,36,232,35,19,3,0,137,133,236,235,255,255,139,133,236,235,255,255,1,133,4,236,255,255,139,133,236,235,255,255,1,133,240,235,255,255,139,133,252,235,255,255,139,0,131,248,4,116,15,131,125,20,0,117,36,131,189,240,235,255,255,65,126,27,139, 133,4,236,255,255,198,0,10,255,133,4,236,255,255,199,133,240,235,255,255,0,0,0,0,235,21,139,133,4,236,255,255,198,0,32,255,133,4,236,255,255,255,133,240,235,255,255,131,133,252,235,255,255,8,255,141,248,235,255,255,131,189,248,235,255,255,255,15,133, 59,254,255,255,139,149,4,236,255,255,141,133,12,236,255,255,137,209,41,193,137,200,137,194,139,133,8,236,255,255,137,68,36,12,199,68,36,8,1,0,0,0,137,84,36,4,141,133,12,236,255,255,137,4,36,232,35,17,3,0,133,192,117,16,141,133,12,252,255,255,137,4,36, 232,146,78,1,0,235,49,131,189,244,235,255,255,0,116,14,139,133,228,235,255,255,137,4,36,232,217,215,255,255,139,133,8,236,255,255,137,4,36,232,162,16,3,0,199,133,216,235,255,255,0,0,0,0,235,56,131,189,244,235,255,255,0,116,14,139,133,228,235,255,255, 137,4,36,232,168,215,255,255,131,189,8,236,255,255,0,116,14,139,133,8,236,255,255,137,4,36,232,104,16,3,0,199,133,216,235,255,255,1,0,0,0,139,133,216,235,255,255,141,147,188,27,3,0,139,18,139,77,244,51,10,116,5,232,156,15,3,0,129,196,52,20,0,0,91,201, 195,85,137,229,87,86,83,129,236,124,53,0,0,232,0,0,0,0,91,139,69,8,137,133,36,208,255,255,141,131,44,23,3,0,139,0,139,16,137,85,228,49,210,232,254,214,255,255,137,133,124,255,255,255,139,133,36,208,255,255,139,64,4,137,133,120,255,255,255,139,133,36, 208,255,255,139,0,137,133,116,255,255,255,199,133,108,255,255,255,0,0,0,0,199,133,104,255,255,255,0,0,0,0,199,133,96,255,255,255,0,0,0,0,141,131,156,10,3,0,139,0,137,133,88,255,255,255,131,125,12,0,117,62,141,131,121,222,2,0,137,4,36,232,230,77,0,0,137, 198,141,131,124,222,2,0,137,4,36,232,214,77,0,0,137,116,36,12,137,68,36,8,141,131,128,222,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,89,227,255,255,199,133,112,255,255,255,0,0,0,0,233,139,58,0,0,139,133,112,255,255,255,137,133,84,255,255,255, 235,6,255,133,84,255,255,255,139,133,84,255,255,255,59,133,116,255,255,255,125,22,139,133,84,255,255,255,193,224,3,3,133,120,255,255,255,139,0,131,248,4,117,214,139,133,84,255,255,255,59,133,116,255,255,255,15,132,83,58,0,0,139,133,84,255,255,255,59, 133,112,255,255,255,116,65,139,133,112,255,255,255,64,59,133,84,255,255,255,116,50,139,133,112,255,255,255,193,224,3,3,133,120,255,255,255,139,0,131,248,2,117,28,139,149,120,255,255,255,131,194,8,139,133,112,255,255,255,193,224,3,141,4,2,139,0,131,248, 2,116,18,139,133,84,255,255,255,64,137,133,112,255,255,255,233,224,57,0,0,139,133,112,255,255,255,139,149,84,255,255,255,137,209,41,193,137,200,137,133,80,255,255,255,129,189,80,255,255,255,222,3,0,0,126,10,199,133,80,255,255,255,222,3,0,0,139,133,112, 255,255,255,193,224,3,3,133,120,255,255,255,137,133,92,255,255,255,139,133,92,255,255,255,139,64,4,139,0,137,133,76,255,255,255,139,133,92,255,255,255,131,192,8,139,64,4,139,0,137,133,72,255,255,255,131,125,12,0,15,132,251,28,0,0,199,133,100,255,255, 255,0,0,0,0,233,23,1,0,0,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,139,0,131,248,8,117,116,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,139,64,4,137,68,36,16,141,131,12,221,2,0,137,68,36,12,199,68,36,8,100,0,0,0,199,68,36,4,0,0, 0,0,141,69,128,137,4,36,232,63,13,3,0,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,199,0,2,0,0,0,139,133,100,255,255,255,193,224,3,137,198,3,181,92,255,255,255,141,69,128,137,4,36,232,249,75,0,0,137,70,4,233,135,0,0,0,139,133,100,255,255,255, 193,224,3,3,133,92,255,255,255,139,0,131,248,9,117,113,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,139,64,4,139,0,137,68,36,16,141,131,132,222,2,0,137,68,36,12,199,68,36,8,100,0,0,0,199,68,36,4,0,0,0,0,141,69,128,137,4,36,232,179,12,3,0,139, 133,100,255,255,255,193,224,3,3,133,92,255,255,255,199,0,2,0,0,0,139,133,100,255,255,255,193,224,3,137,198,3,181,92,255,255,255,141,69,128,137,4,36,232,109,75,0,0,137,70,4,255,133,100,255,255,255,139,133,100,255,255,255,59,133,80,255,255,255,15,140,215, 254,255,255,141,131,67,188,2,0,137,68,36,4,139,133,76,255,255,255,137,4,36,232,125,14,3,0,133,192,15,133,72,2,0,0,141,131,138,222,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,93,14,3,0,133,192,15,133,40,2,0,0,129,189,108,255,255,255,231,3,0,0, 126,31,141,131,147,222,2,0,137,4,36,232,187,68,1,0,139,133,124,255,255,255,137,133,44,203,255,255,233,45,56,0,0,139,149,108,255,255,255,139,133,104,255,255,255,137,132,149,104,239,255,255,255,133,108,255,255,255,199,133,104,255,255,255,0,0,0,0,141,131, 112,23,3,0,139,0,139,0,243,15,42,192,243,15,90,192,242,15,17,133,48,203,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,188,204,255,255,217,157,56,203,255,255,139,133,92,255,255,255,137,68,36,8,139,133, 80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,150,204,255,255,217,157,60,203,255,255,243,15,16,133,56,203,255,255,243,15,92,133,60,203,255,255,243,15,90,192,242,15,17,133,64,203,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137, 68,36,4,199,4,36,4,0,0,0,232,84,204,255,255,217,157,72,203,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,46,204,255,255,217,157,76,203,255,255,243,15,16,133,72,203,255,255,243,15,92,133,76,203,255, 255,243,15,90,192,242,15,17,133,80,203,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,236,203,255,255,217,157,92,203,255,255,243,15,90,133,92,203,255,255,242,15,17,133,96,203,255,255,139,133,92,255, 255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,182,203,255,255,217,157,108,203,255,255,243,15,90,141,108,203,255,255,242,15,17,141,112,203,255,255,141,131,60,188,2,0,137,4,36,232,96,73,0,0,137,198,141,131,67,188,2,0,137,4, 36,232,80,73,0,0,242,15,16,149,48,203,255,255,242,15,17,84,36,48,242,15,16,133,64,203,255,255,242,15,17,68,36,40,242,15,16,141,80,203,255,255,242,15,17,76,36,32,242,15,16,149,96,203,255,255,242,15,17,84,36,24,242,15,16,133,112,203,255,255,242,15,17,68, 36,16,137,116,36,12,137,68,36,8,141,131,176,222,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,141,222,255,255,141,131,185,222,2,0,137,68,36,4,139,133,76,255,255,255,137,4,36,232,21,12,3,0,133,192,15,133,161,53,0,0,141,131,188,222,2,0,137,68,36, 4,139,133,72,255,255,255,137,4,36,232,245,11,3,0,133,192,117,33,131,133,92,255,255,255,8,255,141,80,255,255,255,139,133,92,255,255,255,131,192,8,139,64,4,139,0,137,133,72,255,255,255,131,189,80,255,255,255,6,15,142,199,1,0,0,141,131,195,222,2,0,137,68, 36,4,139,133,72,255,255,255,137,4,36,232,171,11,3,0,133,192,15,133,167,1,0,0,139,133,92,255,255,255,131,192,48,139,0,131,248,2,117,36,139,133,92,255,255,255,131,192,48,139,64,4,139,16,141,131,202,222,2,0,137,68,36,4,137,20,36,232,115,11,3,0,133,192,116, 60,139,133,92,255,255,255,131,192,48,139,0,131,248,2,15,133,95,1,0,0,139,133,92,255,255,255,131,192,48,139,64,4,139,16,141,131,210,222,2,0,137,68,36,4,137,20,36,232,59,11,3,0,133,192,15,133,55,1,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255, 255,137,68,36,4,199,4,36,7,0,0,0,232,134,202,255,255,137,199,141,131,152,203,2,0,137,4,36,232,192,71,0,0,137,133,120,203,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,204,201,255,255,217,157,124,203, 255,255,243,15,90,141,124,203,255,255,242,15,17,141,128,203,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,150,201,255,255,217,157,140,203,255,255,243,15,90,149,140,203,255,255,242,15,17,149,144,203, 255,255,141,131,134,161,2,0,137,4,36,232,64,71,0,0,137,198,141,131,44,159,2,0,137,4,36,232,48,71,0,0,137,124,36,36,139,149,120,203,255,255,137,84,36,32,242,15,16,133,128,203,255,255,242,15,17,68,36,24,242,15,16,141,144,203,255,255,242,15,17,76,36,16, 137,116,36,12,137,68,36,8,141,131,214,222,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,137,220,255,255,131,189,108,255,255,255,0,116,6,255,141,108,255,255,255,139,133,108,255,255,255,139,132,133,104,239,255,255,137,133,104,255,255,255,255,133, 104,255,255,255,233,144,51,0,0,141,131,222,222,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,228,9,3,0,133,192,116,32,141,131,195,222,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,200,9,3,0,133,192,15,133,70,2,0,0,139,133,92,255,255,255,137, 68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,6,0,0,0,232,19,201,255,255,137,133,64,255,255,255,141,131,228,222,2,0,137,4,36,232,73,70,0,0,59,133,64,255,255,255,116,22,141,131,236,222,2,0,137,4,36,232,51,70,0,0,59,133,64,255,255,255,117,124,199, 133,100,255,255,255,7,0,0,0,235,98,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,139,0,131,248,2,117,70,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,139,112,4,141,131,116,2,3,0,137,4,36,232,233,69,0,0,57,198,117,34,139,133,100,255, 255,255,193,224,3,137,198,3,181,92,255,255,255,141,131,240,222,2,0,137,4,36,232,198,69,0,0,137,70,4,255,133,100,255,255,255,139,133,100,255,255,255,59,133,80,255,255,255,124,144,141,131,242,222,2,0,137,4,36,232,161,69,0,0,59,133,64,255,255,255,117,20, 141,131,248,222,2,0,137,4,36,232,139,69,0,0,137,133,64,255,255,255,199,133,40,208,255,255,2,0,0,0,141,131,44,159,2,0,137,4,36,232,109,69,0,0,137,133,44,208,255,255,141,133,40,208,255,255,131,192,8,199,0,2,0,0,0,141,133,40,208,255,255,141,112,8,141,131, 168,173,2,0,137,4,36,232,65,69,0,0,137,70,4,139,133,92,255,255,255,131,192,16,139,80,4,139,0,137,133,56,208,255,255,137,149,60,208,255,255,139,133,92,255,255,255,131,192,24,139,80,4,139,0,137,133,64,208,255,255,137,149,68,208,255,255,141,133,40,208,255, 255,131,192,32,199,0,2,0,0,0,141,133,40,208,255,255,141,80,32,139,133,64,255,255,255,137,66,4,199,133,100,255,255,255,7,0,0,0,235,49,139,141,100,255,255,255,131,233,2,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,139,80,4,139,0,137,132,205,40, 208,255,255,137,148,205,44,208,255,255,255,133,100,255,255,255,139,133,100,255,255,255,59,133,80,255,255,255,124,193,139,133,80,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,232,16,199,0,4,0,0,0,139,133,80,255,255,255,193,224,3,137,194, 141,133,40,208,255,255,1,208,131,232,16,199,64,4,0,0,0,0,139,149,80,255,255,255,74,141,133,40,208,255,255,137,68,36,8,137,84,36,4,139,133,124,255,255,255,137,4,36,232,52,217,255,255,255,133,104,255,255,255,233,14,49,0,0,141,131,158,203,2,0,137,68,36, 4,139,133,72,255,255,255,137,4,36,232,98,7,3,0,133,192,116,32,141,131,112,198,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,70,7,3,0,133,192,15,133,111,1,0,0,199,133,40,208,255,255,2,0,0,0,141,131,44,159,2,0,137,4,36,232,227,67,0,0,137,133,44,208, 255,255,141,133,40,208,255,255,131,192,8,199,0,2,0,0,0,141,133,40,208,255,255,131,192,8,137,133,156,203,255,255,141,131,158,203,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,234,6,3,0,133,192,116,14,141,131,154,161,2,0,137,133,160,203,255,255,235, 12,141,147,36,189,2,0,137,149,160,203,255,255,139,141,160,203,255,255,137,12,36,232,123,67,0,0,139,149,156,203,255,255,137,66,4,139,133,92,255,255,255,131,192,16,139,80,4,139,0,137,133,56,208,255,255,137,149,60,208,255,255,139,133,92,255,255,255,131, 192,24,139,80,4,139,0,137,133,64,208,255,255,137,149,68,208,255,255,199,133,100,255,255,255,6,0,0,0,235,49,139,141,100,255,255,255,131,233,2,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,139,80,4,139,0,137,132,205,40,208,255,255,137,148,205, 44,208,255,255,255,133,100,255,255,255,139,133,100,255,255,255,59,133,80,255,255,255,124,193,139,133,80,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,232,16,199,0,4,0,0,0,139,133,80,255,255,255,193,224,3,137,194,141,133,40,208,255,255, 1,208,131,232,16,199,64,4,0,0,0,0,139,149,80,255,255,255,74,141,133,40,208,255,255,137,68,36,8,137,84,36,4,139,133,124,255,255,255,137,4,36,232,137,215,255,255,255,133,104,255,255,255,233,99,47,0,0,141,131,255,222,2,0,137,68,36,4,139,133,72,255,255,255, 137,4,36,232,183,5,3,0,133,192,15,133,229,0,0,0,141,131,162,161,2,0,137,4,36,232,94,66,0,0,137,199,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,110,196,255,255,217,157,164,203,255,255,243,15,90,133,164,203, 255,255,242,15,17,133,168,203,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,56,196,255,255,217,157,180,203,255,255,243,15,90,141,180,203,255,255,242,15,17,141,184,203,255,255,141,131,168,173,2,0,137, 4,36,232,226,65,0,0,137,198,141,131,44,159,2,0,137,4,36,232,210,65,0,0,137,124,36,32,242,15,16,149,168,203,255,255,242,15,17,84,36,24,242,15,16,133,184,203,255,255,242,15,17,68,36,16,137,116,36,12,137,68,36,8,141,131,6,223,2,0,137,68,36,4,139,133,124, 255,255,255,137,4,36,232,53,215,255,255,255,133,104,255,255,255,233,94,46,0,0,141,131,245,174,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,178,4,3,0,133,192,116,32,141,131,16,223,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,150,4,3,0,133, 192,15,133,209,0,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,93,195,255,255,217,157,196,203,255,255,243,15,90,141,196,203,255,255,242,15,17,141,200,203,255,255,139,133,92,255,255,255,137,68,36,8,139, 133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,39,195,255,255,217,157,212,203,255,255,243,15,90,149,212,203,255,255,242,15,17,149,216,203,255,255,141,131,164,200,2,0,137,4,36,232,209,64,0,0,137,198,141,131,44,159,2,0,137,4,36,232,193,64,0,0,242, 15,16,133,200,203,255,255,242,15,17,68,36,24,242,15,16,141,216,203,255,255,242,15,17,76,36,16,137,116,36,12,137,68,36,8,141,131,25,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,40,214,255,255,255,133,104,255,255,255,233,81,45,0,0,141,131,31, 223,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,165,3,3,0,133,192,15,133,164,3,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,7,0,0,0,232,108,194,255,255,217,157,60,255,255,255,141,131,136,9,3,0,243,15,16,0, 15,46,133,60,255,255,255,115,2,235,14,141,131,140,9,3,0,139,0,137,133,60,255,255,255,141,131,176,178,2,0,137,4,36,232,3,64,0,0,137,198,141,131,176,178,2,0,137,4,36,232,243,63,0,0,137,199,141,131,176,178,2,0,137,4,36,232,227,63,0,0,137,133,228,203,255, 255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,6,0,0,0,232,239,193,255,255,217,157,232,203,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,201,193,255,255,217,157, 236,203,255,255,141,131,140,9,3,0,243,15,16,0,243,15,16,149,236,203,255,255,243,15,92,208,15,40,194,243,15,89,133,60,255,255,255,243,15,88,133,232,203,255,255,243,15,90,192,242,15,17,133,240,203,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255, 255,255,137,68,36,4,199,4,36,6,0,0,0,232,110,193,255,255,217,157,252,203,255,255,243,15,90,133,252,203,255,255,242,15,17,133,0,204,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,56,193,255,255,217,157, 12,204,255,255,243,15,90,141,12,204,255,255,242,15,17,141,16,204,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,4,0,0,0,232,2,193,255,255,217,157,28,204,255,255,243,15,90,149,28,204,255,255,242,15,17,149,32,204, 255,255,141,131,40,223,2,0,137,4,36,232,172,62,0,0,137,133,40,204,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,184,192,255,255,217,157,44,204,255,255,243,15,90,133,44,204,255,255,242,15,17,133,48, 204,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,130,192,255,255,217,157,60,204,255,255,243,15,90,141,60,204,255,255,242,15,17,141,64,204,255,255,141,131,168,173,2,0,137,4,36,232,44,62,0,0,137,133, 72,204,255,255,141,131,44,159,2,0,137,4,36,232,24,62,0,0,137,194,141,131,168,9,3,0,242,15,16,0,242,15,17,132,36,160,0,0,0,141,131,160,9,3,0,242,15,16,0,242,15,17,132,36,152,0,0,0,141,131,216,11,3,0,242,15,16,0,242,15,17,132,36,144,0,0,0,141,131,216,11, 3,0,242,15,16,0,242,15,17,132,36,136,0,0,0,141,131,88,13,3,0,242,15,16,0,242,15,17,132,36,128,0,0,0,141,131,96,13,3,0,242,15,16,0,242,15,17,68,36,120,141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,112,141,131,104,13,3,0,242,15,16,0,242,15,17,68,36,104, 141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,96,137,116,36,92,137,124,36,88,139,133,228,203,255,255,137,68,36,84,141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,76,141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,68,242,15,16,133,240,203,255,255,242,15,17, 68,36,60,242,15,16,141,0,204,255,255,242,15,17,76,36,52,242,15,16,149,16,204,255,255,242,15,17,84,36,44,242,15,16,133,32,204,255,255,242,15,17,68,36,36,139,133,40,204,255,255,137,68,36,32,242,15,16,133,48,204,255,255,242,15,17,68,36,24,242,15,16,141, 64,204,255,255,242,15,17,76,36,16,139,133,72,204,255,255,137,68,36,12,137,84,36,8,141,131,44,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,100,210,255,255,255,133,104,255,255,255,233,141,41,0,0,141,131,166,161,2,0,137,68,36,4,139,133,72,255, 255,255,137,4,36,232,225,255,2,0,133,192,15,133,229,0,0,0,141,131,72,223,2,0,137,4,36,232,136,60,0,0,137,199,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,152,190,255,255,217,157,76,204,255,255,243,15,90,133, 76,204,255,255,242,15,17,133,80,204,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,98,190,255,255,217,157,92,204,255,255,243,15,90,141,92,204,255,255,242,15,17,141,96,204,255,255,141,131,168,173,2,0, 137,4,36,232,12,60,0,0,137,198,141,131,44,159,2,0,137,4,36,232,252,59,0,0,137,124,36,32,242,15,16,149,80,204,255,255,242,15,17,84,36,24,242,15,16,133,96,204,255,255,242,15,17,68,36,16,137,116,36,12,137,68,36,8,141,131,6,223,2,0,137,68,36,4,139,133,124, 255,255,255,137,4,36,232,95,209,255,255,255,133,104,255,255,255,233,136,40,0,0,141,131,76,223,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,220,254,2,0,133,192,15,133,8,1,0,0,131,189,80,255,255,255,5,126,14,141,131,82,223,2,0,137,133,104,204,255, 255,235,12,141,147,76,223,2,0,137,149,104,204,255,255,139,141,104,204,255,255,137,12,36,232,96,59,0,0,137,199,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,112,189,255,255,217,157,108,204,255,255,243,15,90, 133,108,204,255,255,242,15,17,133,112,204,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,58,189,255,255,217,157,124,204,255,255,243,15,90,141,124,204,255,255,242,15,17,141,128,204,255,255,141,131,168, 173,2,0,137,4,36,232,228,58,0,0,137,198,141,131,44,159,2,0,137,4,36,232,212,58,0,0,137,124,36,32,242,15,16,149,112,204,255,255,242,15,17,84,36,24,242,15,16,133,128,204,255,255,242,15,17,68,36,16,137,116,36,12,137,68,36,8,141,131,6,223,2,0,137,68,36,4, 139,133,124,255,255,255,137,4,36,232,55,208,255,255,255,133,104,255,255,255,233,96,39,0,0,141,131,16,178,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,180,253,2,0,133,192,15,133,8,1,0,0,131,189,80,255,255,255,5,126,14,141,131,92,223,2,0,137,133, 136,204,255,255,235,12,141,147,16,178,2,0,137,149,136,204,255,255,139,141,136,204,255,255,137,12,36,232,56,58,0,0,137,199,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,72,188,255,255,217,157,140,204,255,255, 243,15,90,133,140,204,255,255,242,15,17,133,144,204,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,18,188,255,255,217,157,156,204,255,255,243,15,90,141,156,204,255,255,242,15,17,141,160,204,255,255, 141,131,168,173,2,0,137,4,36,232,188,57,0,0,137,198,141,131,44,159,2,0,137,4,36,232,172,57,0,0,137,124,36,32,242,15,16,149,144,204,255,255,242,15,17,84,36,24,242,15,16,133,160,204,255,255,242,15,17,68,36,16,137,116,36,12,137,68,36,8,141,131,6,223,2,0, 137,68,36,4,139,133,124,255,255,255,137,4,36,232,15,207,255,255,255,133,104,255,255,255,233,56,38,0,0,141,131,100,223,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,140,252,2,0,133,192,15,133,195,7,0,0,139,133,92,255,255,255,131,192,16,139,64,4, 139,0,137,133,68,255,255,255,141,131,181,161,2,0,137,68,36,4,139,133,68,255,255,255,137,4,36,232,88,252,2,0,133,192,15,133,60,3,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,7,0,0,0,232,31,187,255,255,217,157,56,255, 255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,8,0,0,0,232,249,186,255,255,217,157,52,255,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,9,0,0,0,232,211,186,255,255,217,157, 48,255,255,255,141,131,176,178,2,0,137,4,36,232,141,56,0,0,137,198,141,131,176,178,2,0,137,4,36,232,125,56,0,0,137,199,141,131,176,178,2,0,137,4,36,232,109,56,0,0,137,133,172,204,255,255,243,15,16,133,56,255,255,255,243,15,88,133,48,255,255,255,243,15, 90,192,242,15,17,133,176,204,255,255,243,15,90,141,48,255,255,255,242,15,17,141,184,204,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,77,186,255,255,217,157,196,204,255,255,243,15,90,149,196,204,255, 255,242,15,17,149,200,204,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,6,0,0,0,232,23,186,255,255,217,157,212,204,255,255,243,15,90,133,212,204,255,255,242,15,17,133,216,204,255,255,141,131,105,176,2,0,137,4, 36,232,193,55,0,0,137,133,224,204,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,4,0,0,0,232,205,185,255,255,217,157,228,204,255,255,243,15,90,141,228,204,255,255,242,15,17,141,232,204,255,255,139,133,92,255,255, 255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,151,185,255,255,217,157,244,204,255,255,243,15,90,149,244,204,255,255,242,15,17,149,248,204,255,255,141,131,168,173,2,0,137,4,36,232,65,55,0,0,137,133,0,205,255,255,141,131,44,159, 2,0,137,4,36,232,45,55,0,0,137,194,141,131,168,9,3,0,242,15,16,0,242,15,17,132,36,160,0,0,0,141,131,160,9,3,0,242,15,16,0,242,15,17,132,36,152,0,0,0,141,131,216,11,3,0,242,15,16,0,242,15,17,132,36,144,0,0,0,141,131,216,11,3,0,242,15,16,0,242,15,17,132, 36,136,0,0,0,141,131,88,13,3,0,242,15,16,0,242,15,17,132,36,128,0,0,0,141,131,96,13,3,0,242,15,16,0,242,15,17,68,36,120,141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,112,141,131,104,13,3,0,242,15,16,0,242,15,17,68,36,104,141,131,160,9,3,0,242,15,16,0, 242,15,17,68,36,96,137,116,36,92,137,124,36,88,139,133,172,204,255,255,137,68,36,84,141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,76,141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,68,242,15,16,133,176,204,255,255,242,15,17,68,36,60,242,15,16,141,184,204, 255,255,242,15,17,76,36,52,242,15,16,149,200,204,255,255,242,15,17,84,36,44,242,15,16,133,216,204,255,255,242,15,17,68,36,36,139,133,224,204,255,255,137,68,36,32,242,15,16,133,232,204,255,255,242,15,17,68,36,24,242,15,16,141,248,204,255,255,242,15,17, 76,36,16,139,133,0,205,255,255,137,68,36,12,137,84,36,8,141,131,44,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,121,203,255,255,233,72,4,0,0,141,131,105,223,2,0,137,68,36,4,139,133,68,255,255,255,137,4,36,232,252,248,2,0,133,192,15,133,60, 3,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,7,0,0,0,232,195,183,255,255,217,157,44,255,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,8,0,0,0,232,157,183,255,255,217,157, 40,255,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,9,0,0,0,232,119,183,255,255,217,157,36,255,255,255,141,131,176,178,2,0,137,4,36,232,49,53,0,0,137,198,141,131,176,178,2,0,137,4,36,232,33,53,0,0,137,199,141, 131,176,178,2,0,137,4,36,232,17,53,0,0,137,133,4,205,255,255,243,15,16,133,44,255,255,255,243,15,88,133,36,255,255,255,243,15,90,192,242,15,17,133,8,205,255,255,243,15,90,133,36,255,255,255,242,15,17,133,16,205,255,255,139,133,92,255,255,255,137,68,36, 8,139,133,80,255,255,255,137,68,36,4,199,4,36,6,0,0,0,232,241,182,255,255,217,157,28,205,255,255,243,15,90,141,28,205,255,255,242,15,17,141,32,205,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,187, 182,255,255,217,157,44,205,255,255,243,15,90,149,44,205,255,255,242,15,17,149,48,205,255,255,141,131,40,223,2,0,137,4,36,232,101,52,0,0,137,133,56,205,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,4,0,0,0,232, 113,182,255,255,217,157,60,205,255,255,243,15,90,133,60,205,255,255,242,15,17,133,64,205,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,59,182,255,255,217,157,76,205,255,255,243,15,90,141,76,205,255, 255,242,15,17,141,80,205,255,255,141,131,168,173,2,0,137,4,36,232,229,51,0,0,137,133,88,205,255,255,141,131,44,159,2,0,137,4,36,232,209,51,0,0,137,194,141,131,168,9,3,0,242,15,16,0,242,15,17,132,36,160,0,0,0,141,131,160,9,3,0,242,15,16,0,242,15,17,132, 36,152,0,0,0,141,131,216,11,3,0,242,15,16,0,242,15,17,132,36,144,0,0,0,141,131,216,11,3,0,242,15,16,0,242,15,17,132,36,136,0,0,0,141,131,88,13,3,0,242,15,16,0,242,15,17,132,36,128,0,0,0,141,131,96,13,3,0,242,15,16,0,242,15,17,68,36,120,141,131,160,9, 3,0,242,15,16,0,242,15,17,68,36,112,141,131,104,13,3,0,242,15,16,0,242,15,17,68,36,104,141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,96,137,116,36,92,137,124,36,88,139,133,4,205,255,255,137,68,36,84,141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,76,141, 131,160,9,3,0,242,15,16,0,242,15,17,68,36,68,242,15,16,133,8,205,255,255,242,15,17,68,36,60,242,15,16,141,16,205,255,255,242,15,17,76,36,52,242,15,16,149,32,205,255,255,242,15,17,84,36,44,242,15,16,133,48,205,255,255,242,15,17,68,36,36,139,133,56,205, 255,255,137,68,36,32,242,15,16,133,64,205,255,255,242,15,17,68,36,24,242,15,16,141,80,205,255,255,242,15,17,76,36,16,139,133,88,205,255,255,137,68,36,12,137,84,36,8,141,131,44,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,29,200,255,255,233, 236,0,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,11,181,255,255,137,199,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,4,0,0,0,232,101,180,255,255,217,157,92,205,255, 255,243,15,90,133,92,205,255,255,242,15,17,133,96,205,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,47,180,255,255,217,157,108,205,255,255,243,15,90,141,108,205,255,255,242,15,17,141,112,205,255,255, 141,131,168,173,2,0,137,4,36,232,217,49,0,0,137,198,141,131,44,159,2,0,137,4,36,232,201,49,0,0,137,124,36,32,242,15,16,149,96,205,255,255,242,15,17,84,36,24,242,15,16,133,112,205,255,255,242,15,17,68,36,16,137,116,36,12,137,68,36,8,141,131,6,223,2,0, 137,68,36,4,139,133,124,255,255,255,137,4,36,232,44,199,255,255,255,133,104,255,255,255,233,85,30,0,0,141,131,23,163,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,169,244,2,0,133,192,116,32,141,131,113,223,2,0,137,68,36,4,139,133,72,255,255,255, 137,4,36,232,141,244,2,0,133,192,15,133,25,30,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,84,179,255,255,217,157,124,205,255,255,243,15,90,141,124,205,255,255,242,15,17,141,128,205,255,255,243,15,42, 149,104,255,255,255,243,15,17,149,136,205,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,4,0,0,0,232,14,179,255,255,217,157,140,205,255,255,243,15,16,141,136,205,255,255,243,15,92,141,140,205,255,255,141,131,140, 9,3,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,90,192,242,15,17,133,144,205,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,184,178,255,255,217,157,156,205,255,255,243,15,90,133,156,205,255, 255,242,15,17,133,160,205,255,255,243,15,42,141,104,255,255,255,243,15,17,141,168,205,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,114,178,255,255,217,157,172,205,255,255,243,15,16,141,168,205,255, 255,243,15,92,141,172,205,255,255,141,131,140,9,3,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,90,192,242,15,17,133,176,205,255,255,141,131,23,163,2,0,137,4,36,232,252,47,0,0,137,198,141,131,44,159,2,0,137,4,36,232,236,47,0,0,242,15,16,133, 128,205,255,255,242,15,17,68,36,40,242,15,16,141,144,205,255,255,242,15,17,76,36,32,242,15,16,149,160,205,255,255,242,15,17,84,36,24,242,15,16,133,176,205,255,255,242,15,17,68,36,16,137,116,36,12,137,68,36,8,141,131,120,223,2,0,137,68,36,4,139,133,124, 255,255,255,137,4,36,232,55,197,255,255,233,102,28,0,0,141,131,67,188,2,0,137,68,36,4,139,133,76,255,255,255,137,4,36,232,186,242,2,0,133,192,15,133,13,2,0,0,141,131,60,188,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,154,242,2,0,133,192,15,133, 237,1,0,0,129,189,108,255,255,255,231,3,0,0,126,31,141,131,147,222,2,0,137,4,36,232,248,40,1,0,139,133,124,255,255,255,137,133,44,203,255,255,233,106,28,0,0,139,149,108,255,255,255,139,133,104,255,255,255,137,132,149,104,239,255,255,255,133,108,255,255, 255,199,133,104,255,255,255,0,0,0,0,131,189,96,255,255,255,0,117,48,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,6,0,0,0,232,10,177,255,255,217,157,88,255,255,255,199,133,96,255,255,255,1,0,0,0,139,133,92,255,255,255, 137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,218,176,255,255,217,157,32,255,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,180,176,255,255,217,157,28,255,255,255,139,133,92,255, 255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,142,176,255,255,217,157,188,205,255,255,243,15,16,133,188,205,255,255,243,15,88,133,28,255,255,255,243,15,90,192,242,15,17,133,192,205,255,255,139,133,92,255,255,255,137,68,36, 8,139,133,80,255,255,255,137,68,36,4,199,4,36,4,0,0,0,232,76,176,255,255,217,157,204,205,255,255,243,15,16,133,204,205,255,255,243,15,88,133,32,255,255,255,243,15,90,192,242,15,17,133,208,205,255,255,243,15,90,133,28,255,255,255,242,15,17,133,216,205, 255,255,243,15,90,141,32,255,255,255,242,15,17,141,224,205,255,255,141,131,138,222,2,0,137,4,36,232,202,45,0,0,137,198,141,131,67,188,2,0,137,4,36,232,186,45,0,0,242,15,16,149,192,205,255,255,242,15,17,84,36,40,242,15,16,133,208,205,255,255,242,15,17, 68,36,32,242,15,16,141,216,205,255,255,242,15,17,76,36,24,242,15,16,149,224,205,255,255,242,15,17,84,36,16,137,116,36,12,137,68,36,8,141,131,120,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,5,195,255,255,141,131,44,159,2,0,137,68,36,4,139, 133,76,255,255,255,137,4,36,232,141,240,2,0,133,192,15,133,25,26,0,0,131,189,80,255,255,255,4,15,142,113,2,0,0,141,131,134,161,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,96,240,2,0,133,192,15,133,81,2,0,0,139,133,92,255,255,255,131,192,32,139, 0,131,248,2,15,133,61,2,0,0,139,133,92,255,255,255,131,192,32,139,64,4,139,16,141,131,152,203,2,0,137,68,36,4,137,20,36,232,36,240,2,0,133,192,15,133,21,2,0,0,141,131,236,161,2,0,137,4,36,232,203,44,0,0,137,198,141,131,185,222,2,0,137,4,36,232,187,44, 0,0,137,116,36,12,137,68,36,8,141,131,128,222,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,62,194,255,255,199,133,40,208,255,255,2,0,0,0,141,131,185,222,2,0,137,4,36,232,131,44,0,0,137,133,44,208,255,255,141,133,40,208,255,255,131,192,8,199,0, 2,0,0,0,141,133,40,208,255,255,141,112,8,141,131,195,222,2,0,137,4,36,232,87,44,0,0,137,70,4,139,133,92,255,255,255,131,192,16,139,80,4,139,0,137,133,56,208,255,255,137,149,60,208,255,255,139,133,92,255,255,255,131,192,24,139,80,4,139,0,137,133,64,208, 255,255,137,149,68,208,255,255,141,133,40,208,255,255,131,192,32,199,0,1,0,0,0,141,133,40,208,255,255,141,80,32,139,133,80,255,255,255,131,232,5,242,15,42,200,141,131,232,12,3,0,242,15,16,0,242,15,89,193,242,15,90,192,243,15,17,66,4,141,133,40,208,255, 255,131,192,40,199,0,1,0,0,0,141,133,40,208,255,255,141,80,40,139,133,88,255,255,255,137,66,4,141,133,40,208,255,255,131,192,48,199,0,2,0,0,0,141,133,40,208,255,255,141,112,48,141,131,210,222,2,0,137,4,36,232,157,43,0,0,137,70,4,199,133,100,255,255,255, 5,0,0,0,235,49,139,141,100,255,255,255,131,193,2,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,139,80,4,139,0,137,132,205,40,208,255,255,137,148,205,44,208,255,255,255,133,100,255,255,255,139,133,100,255,255,255,59,133,80,255,255,255,124,193, 139,133,80,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,0,4,0,0,0,139,133,80,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,64,4,0,0,0,0,139,149,80,255,255,255,131,194,3,141,133,40,208,255,255,137, 68,36,8,137,84,36,4,139,133,124,255,255,255,137,4,36,232,227,191,255,255,131,189,108,255,255,255,0,116,6,255,141,108,255,255,255,139,133,108,255,255,255,139,132,133,104,239,255,255,137,133,104,255,255,255,255,133,104,255,255,255,233,155,23,0,0,141,131, 168,173,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,239,237,2,0,133,192,15,133,47,18,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,4,0,0,0,232,58,173,255,255,137,133,24,255,255,255,141,131,76,223,2,0,137,4, 36,232,112,42,0,0,59,133,24,255,255,255,15,133,251,0,0,0,243,15,90,141,88,255,255,255,141,131,72,10,3,0,242,15,16,0,102,15,40,209,242,15,88,208,242,15,17,149,232,205,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4, 36,3,0,0,0,232,84,172,255,255,217,157,244,205,255,255,243,15,90,133,244,205,255,255,242,15,17,133,248,205,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,30,172,255,255,217,157,4,206,255,255,243,15,90, 141,4,206,255,255,242,15,17,141,8,206,255,255,141,131,76,223,2,0,137,4,36,232,200,41,0,0,137,198,141,131,185,222,2,0,137,4,36,232,184,41,0,0,242,15,16,149,232,205,255,255,242,15,17,84,36,32,242,15,16,133,248,205,255,255,242,15,17,68,36,24,242,15,16,141, 8,206,255,255,242,15,17,76,36,16,137,116,36,12,137,68,36,8,141,131,128,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,17,191,255,255,233,233,16,0,0,141,131,82,223,2,0,137,4,36,232,91,41,0,0,59,133,24,255,255,255,15,133,13,1,0,0,243,15,90,141, 88,255,255,255,141,131,72,10,3,0,242,15,16,0,102,15,40,209,242,15,88,208,242,15,17,149,16,206,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,63,171,255,255,217,157,28,206,255,255,243,15,90,133,28,206, 255,255,242,15,17,133,32,206,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,9,171,255,255,217,157,44,206,255,255,243,15,90,141,44,206,255,255,242,15,17,141,48,206,255,255,141,131,76,223,2,0,137,4,36, 232,179,40,0,0,137,198,141,131,185,222,2,0,137,4,36,232,163,40,0,0,137,194,141,131,168,9,3,0,242,15,16,0,242,15,17,68,36,40,242,15,16,149,16,206,255,255,242,15,17,84,36,32,242,15,16,133,32,206,255,255,242,15,17,68,36,24,242,15,16,141,48,206,255,255,242, 15,17,76,36,16,137,116,36,12,137,84,36,8,141,131,120,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,234,189,255,255,233,194,15,0,0,141,131,16,178,2,0,137,4,36,232,52,40,0,0,59,133,24,255,255,255,15,133,251,0,0,0,243,15,90,141,88,255,255,255, 141,131,72,10,3,0,242,15,16,0,102,15,40,209,242,15,88,208,242,15,17,149,56,206,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,24,170,255,255,217,157,68,206,255,255,243,15,90,133,68,206,255,255,242,15, 17,133,72,206,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,226,169,255,255,217,157,84,206,255,255,243,15,90,141,84,206,255,255,242,15,17,141,88,206,255,255,141,131,16,178,2,0,137,4,36,232,140,39,0, 0,137,198,141,131,185,222,2,0,137,4,36,232,124,39,0,0,242,15,16,149,56,206,255,255,242,15,17,84,36,32,242,15,16,133,72,206,255,255,242,15,17,68,36,24,242,15,16,141,88,206,255,255,242,15,17,76,36,16,137,116,36,12,137,68,36,8,141,131,128,223,2,0,137,68, 36,4,139,133,124,255,255,255,137,4,36,232,213,188,255,255,233,173,14,0,0,141,131,92,223,2,0,137,4,36,232,31,39,0,0,59,133,24,255,255,255,15,133,13,1,0,0,243,15,90,141,88,255,255,255,141,131,72,10,3,0,242,15,16,0,102,15,40,209,242,15,88,208,242,15,17, 149,96,206,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,3,169,255,255,217,157,108,206,255,255,243,15,90,133,108,206,255,255,242,15,17,133,112,206,255,255,139,133,92,255,255,255,137,68,36,8,139,133, 80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,205,168,255,255,217,157,124,206,255,255,243,15,90,141,124,206,255,255,242,15,17,141,128,206,255,255,141,131,16,178,2,0,137,4,36,232,119,38,0,0,137,198,141,131,185,222,2,0,137,4,36,232,103,38,0,0,137,194, 141,131,168,9,3,0,242,15,16,0,242,15,17,68,36,40,242,15,16,149,96,206,255,255,242,15,17,84,36,32,242,15,16,133,112,206,255,255,242,15,17,68,36,24,242,15,16,141,128,206,255,255,242,15,17,76,36,16,137,116,36,12,137,84,36,8,141,131,120,223,2,0,137,68,36, 4,139,133,124,255,255,255,137,4,36,232,174,187,255,255,233,134,13,0,0,141,131,162,161,2,0,137,4,36,232,248,37,0,0,59,133,24,255,255,255,15,133,33,1,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,254,167, 255,255,217,157,140,206,255,255,243,15,90,149,140,206,255,255,242,15,17,149,144,206,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,200,167,255,255,217,157,156,206,255,255,243,15,90,133,156,206,255,255, 242,15,17,133,160,206,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,146,167,255,255,217,157,172,206,255,255,243,15,90,141,172,206,255,255,242,15,17,141,176,206,255,255,141,131,255,222,2,0,137,4,36, 232,60,37,0,0,137,198,141,131,185,222,2,0,137,4,36,232,44,37,0,0,137,194,141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,40,242,15,16,149,144,206,255,255,242,15,17,84,36,32,242,15,16,133,160,206,255,255,242,15,17,68,36,24,242,15,16,141,176,206,255,255, 242,15,17,76,36,16,137,116,36,12,137,84,36,8,141,131,120,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,115,186,255,255,233,75,12,0,0,141,131,72,223,2,0,137,4,36,232,189,36,0,0,59,133,24,255,255,255,15,133,33,1,0,0,139,133,92,255,255,255,137, 68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,195,166,255,255,217,157,188,206,255,255,243,15,90,149,188,206,255,255,242,15,17,149,192,206,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0, 232,141,166,255,255,217,157,204,206,255,255,243,15,90,133,204,206,255,255,242,15,17,133,208,206,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,87,166,255,255,217,157,220,206,255,255,243,15,90,141,220, 206,255,255,242,15,17,141,224,206,255,255,141,131,166,161,2,0,137,4,36,232,1,36,0,0,137,198,141,131,185,222,2,0,137,4,36,232,241,35,0,0,137,194,141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,40,242,15,16,149,192,206,255,255,242,15,17,84,36,32,242,15,16, 133,208,206,255,255,242,15,17,68,36,24,242,15,16,141,224,206,255,255,242,15,17,76,36,16,137,116,36,12,137,84,36,8,141,131,120,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,56,185,255,255,233,16,11,0,0,141,131,40,223,2,0,137,4,36,232,130,35, 0,0,59,133,24,255,255,255,15,133,190,2,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,7,0,0,0,232,136,165,255,255,217,157,236,206,255,255,243,15,90,149,236,206,255,255,242,15,17,149,240,206,255,255,139,133,92,255,255, 255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,8,0,0,0,232,82,165,255,255,217,157,248,206,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,7,0,0,0,232,44,165,255,255,217,157,252,206,255,255,243,15,16, 133,248,206,255,255,243,15,92,133,252,206,255,255,243,15,17,133,0,207,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,6,0,0,0,232,238,164,255,255,217,157,8,207,255,255,141,131,140,9,3,0,243,15,16,0,243,15,16,141, 8,207,255,255,15,46,200,117,4,122,2,235,70,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,6,0,0,0,232,173,164,255,255,217,157,12,207,255,255,141,131,140,9,3,0,243,15,16,0,243,15,16,149,12,207,255,255,243,15,92,208,243, 15,17,149,4,207,255,255,235,18,141,131,140,9,3,0,243,15,16,0,243,15,17,133,4,207,255,255,243,15,16,133,0,207,255,255,243,15,94,133,4,207,255,255,243,15,90,192,242,15,17,133,16,207,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137, 68,36,4,199,4,36,6,0,0,0,232,57,164,255,255,217,157,28,207,255,255,243,15,90,141,28,207,255,255,242,15,17,141,32,207,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,3,164,255,255,217,157,44,207,255,255, 243,15,90,149,44,207,255,255,242,15,17,149,48,207,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,205,163,255,255,217,157,60,207,255,255,243,15,90,133,60,207,255,255,242,15,17,133,64,207,255,255,139, 133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,151,163,255,255,217,157,76,207,255,255,243,15,90,141,76,207,255,255,242,15,17,141,80,207,255,255,141,131,31,223,2,0,137,4,36,232,65,33,0,0,137,198,141,131,185,222, 2,0,137,4,36,232,49,33,0,0,242,15,16,149,240,206,255,255,242,15,17,84,36,56,242,15,16,133,16,207,255,255,242,15,17,68,36,48,242,15,16,141,32,207,255,255,242,15,17,76,36,40,242,15,16,149,48,207,255,255,242,15,17,84,36,32,242,15,16,133,64,207,255,255,242, 15,17,68,36,24,242,15,16,141,80,207,255,255,242,15,17,76,36,16,137,116,36,12,137,68,36,8,141,131,135,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,96,182,255,255,233,56,8,0,0,141,131,105,176,2,0,137,4,36,232,170,32,0,0,59,133,24,255,255,255, 15,133,46,2,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,7,0,0,0,232,176,162,255,255,217,157,20,255,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,8,0,0,0,232,138,162,255,255, 217,157,16,255,255,255,243,15,90,149,20,255,255,255,242,15,17,149,88,207,255,255,243,15,16,133,16,255,255,255,15,40,200,243,15,92,141,20,255,255,255,141,131,140,9,3,0,243,15,16,0,243,15,88,193,243,15,90,192,242,15,17,133,96,207,255,255,139,133,92,255, 255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,39,162,255,255,217,157,108,207,255,255,243,15,90,133,108,207,255,255,242,15,17,133,112,207,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4, 36,6,0,0,0,232,241,161,255,255,217,157,124,207,255,255,243,15,90,141,124,207,255,255,242,15,17,141,128,207,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,187,161,255,255,217,157,140,207,255,255,243, 15,90,149,140,207,255,255,242,15,17,149,144,207,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,133,161,255,255,217,157,156,207,255,255,243,15,90,133,156,207,255,255,242,15,17,133,160,207,255,255,141, 131,181,161,2,0,137,4,36,232,47,31,0,0,137,198,141,131,100,223,2,0,137,4,36,232,31,31,0,0,137,199,141,131,185,222,2,0,137,4,36,232,15,31,0,0,137,194,141,131,160,9,3,0,242,15,16,0,242,15,17,68,36,76,242,15,16,141,88,207,255,255,242,15,17,76,36,68,141, 131,168,9,3,0,242,15,16,0,242,15,17,68,36,60,242,15,16,149,96,207,255,255,242,15,17,84,36,52,242,15,16,133,112,207,255,255,242,15,17,68,36,44,242,15,16,141,128,207,255,255,242,15,17,76,36,36,242,15,16,149,144,207,255,255,242,15,17,84,36,28,242,15,16, 133,160,207,255,255,242,15,17,68,36,20,137,116,36,16,137,124,36,12,137,84,36,8,141,131,145,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,24,180,255,255,233,240,5,0,0,141,131,228,222,2,0,137,4,36,232,98,30,0,0,59,133,24,255,255,255,116,26,141, 131,236,222,2,0,137,4,36,232,76,30,0,0,59,133,24,255,255,255,15,133,0,4,0,0,199,133,40,208,255,255,2,0,0,0,141,131,185,222,2,0,137,4,36,232,40,30,0,0,137,133,44,208,255,255,141,133,40,208,255,255,131,192,8,199,0,2,0,0,0,141,133,40,208,255,255,141,112, 8,141,131,222,222,2,0,137,4,36,232,252,29,0,0,137,70,4,139,133,92,255,255,255,131,192,16,139,80,4,139,0,137,133,56,208,255,255,137,149,60,208,255,255,139,133,92,255,255,255,131,192,24,139,80,4,139,0,137,133,64,208,255,255,137,149,68,208,255,255,141,133, 40,208,255,255,131,192,32,199,0,1,0,0,0,141,133,40,208,255,255,141,80,32,139,133,80,255,255,255,131,232,4,242,15,42,200,141,131,232,12,3,0,242,15,16,0,242,15,89,193,242,15,90,192,243,15,17,66,4,141,133,40,208,255,255,131,192,40,199,0,1,0,0,0,141,133, 40,208,255,255,141,80,40,139,133,88,255,255,255,137,66,4,139,133,92,255,255,255,131,192,32,139,80,4,139,0,137,133,88,208,255,255,137,149,92,208,255,255,199,133,100,255,255,255,5,0,0,0,233,138,2,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255, 255,137,68,36,4,139,133,100,255,255,255,137,4,36,232,211,159,255,255,137,133,12,255,255,255,141,131,158,223,2,0,137,4,36,232,9,29,0,0,59,133,12,255,255,255,117,72,139,133,100,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,0, 2,0,0,0,139,133,100,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,141,112,16,141,131,160,223,2,0,137,4,36,232,193,28,0,0,137,70,4,233,254,1,0,0,141,131,162,223,2,0,137,4,36,232,171,28,0,0,59,133,12,255,255,255,117,72,139,133,100,255,255, 255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,0,2,0,0,0,139,133,100,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,141,112,16,141,131,160,223,2,0,137,4,36,232,99,28,0,0,137,70,4,233,160,1,0,0,141,131,204,8,3,0,137,4,36, 232,77,28,0,0,59,133,12,255,255,255,117,72,139,133,100,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,0,2,0,0,0,139,133,100,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,141,112,16,141,131,172,223,2,0,137,4,36, 232,5,28,0,0,137,70,4,233,66,1,0,0,141,131,174,223,2,0,137,4,36,232,239,27,0,0,59,133,12,255,255,255,117,72,139,133,100,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,0,2,0,0,0,139,133,100,255,255,255,193,224,3,137,194,141, 133,40,208,255,255,1,208,141,112,16,141,131,240,222,2,0,137,4,36,232,167,27,0,0,137,70,4,233,228,0,0,0,141,131,180,223,2,0,137,4,36,232,145,27,0,0,59,133,12,255,255,255,117,72,139,133,100,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131, 192,16,199,0,2,0,0,0,139,133,100,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,141,112,16,141,131,160,223,2,0,137,4,36,232,73,27,0,0,137,70,4,233,134,0,0,0,141,131,48,226,2,0,137,4,36,232,51,27,0,0,59,133,12,255,255,255,117,69,139,133,100, 255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,0,2,0,0,0,139,133,100,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,141,112,16,141,131,188,223,2,0,137,4,36,232,235,26,0,0,137,70,4,235,43,139,141,100,255,255,255, 131,193,2,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,139,80,4,139,0,137,132,205,40,208,255,255,137,148,205,44,208,255,255,255,133,100,255,255,255,139,133,100,255,255,255,59,133,80,255,255,255,15,140,100,253,255,255,139,133,80,255,255,255, 193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,0,4,0,0,0,139,133,80,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,64,4,0,0,0,0,139,149,80,255,255,255,131,194,3,141,133,40,208,255,255,137,68,36,8,137,84,36,4, 139,133,124,255,255,255,137,4,36,232,55,175,255,255,233,192,1,0,0,199,133,40,208,255,255,2,0,0,0,141,131,185,222,2,0,137,4,36,232,40,26,0,0,137,133,44,208,255,255,141,133,40,208,255,255,131,192,8,199,0,2,0,0,0,141,133,40,208,255,255,141,112,8,141,131, 222,222,2,0,137,4,36,232,252,25,0,0,137,70,4,139,133,92,255,255,255,131,192,16,139,80,4,139,0,137,133,56,208,255,255,137,149,60,208,255,255,139,133,92,255,255,255,131,192,24,139,80,4,139,0,137,133,64,208,255,255,137,149,68,208,255,255,141,133,40,208, 255,255,131,192,32,199,0,1,0,0,0,141,133,40,208,255,255,141,80,32,139,133,80,255,255,255,131,232,4,242,15,42,200,141,131,232,12,3,0,242,15,16,0,242,15,89,193,242,15,90,192,243,15,17,66,4,141,133,40,208,255,255,131,192,40,199,0,1,0,0,0,141,133,40,208, 255,255,141,80,40,139,133,88,255,255,255,137,66,4,199,133,100,255,255,255,4,0,0,0,235,49,139,141,100,255,255,255,131,193,2,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,139,80,4,139,0,137,132,205,40,208,255,255,137,148,205,44,208,255,255,255, 133,100,255,255,255,139,133,100,255,255,255,59,133,80,255,255,255,124,193,141,131,248,137,2,0,137,4,36,232,15,25,0,0,59,133,24,255,255,255,117,41,141,133,40,208,255,255,131,192,48,199,0,2,0,0,0,141,133,40,208,255,255,141,112,48,141,131,191,223,2,0,137, 4,36,232,225,24,0,0,137,70,4,139,133,80,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,0,4,0,0,0,139,133,80,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,64,4,0,0,0,0,139,149,80,255,255,255,131,194, 3,141,133,40,208,255,255,137,68,36,8,137,84,36,4,139,133,124,255,255,255,137,4,36,232,114,173,255,255,255,133,104,255,255,255,233,76,5,0,0,141,131,36,189,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,160,219,2,0,133,192,116,32,141,131,154,161,2, 0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,132,219,2,0,133,192,15,133,206,1,0,0,199,133,40,208,255,255,2,0,0,0,141,131,185,222,2,0,137,4,36,232,33,24,0,0,137,133,44,208,255,255,141,133,40,208,255,255,131,192,8,199,0,2,0,0,0,141,133,40,208,255, 255,131,192,8,137,133,172,207,255,255,141,131,36,189,2,0,137,68,36,4,139,133,72,255,255,255,137,4,36,232,40,219,2,0,133,192,116,14,141,131,112,198,2,0,137,133,176,207,255,255,235,12,141,147,158,203,2,0,137,149,176,207,255,255,139,141,176,207,255,255, 137,12,36,232,185,23,0,0,139,149,172,207,255,255,137,66,4,139,133,92,255,255,255,131,192,16,139,80,4,139,0,137,133,56,208,255,255,137,149,60,208,255,255,139,133,92,255,255,255,131,192,24,139,80,4,139,0,137,133,64,208,255,255,137,149,68,208,255,255,141, 133,40,208,255,255,131,192,32,199,0,1,0,0,0,141,133,40,208,255,255,141,80,32,139,133,80,255,255,255,131,232,4,242,15,42,200,141,131,232,12,3,0,242,15,16,0,242,15,89,193,242,15,90,192,243,15,17,66,4,141,133,40,208,255,255,131,192,40,199,0,1,0,0,0,141, 133,40,208,255,255,141,80,40,139,133,88,255,255,255,137,66,4,199,133,100,255,255,255,4,0,0,0,235,49,139,141,100,255,255,255,131,193,2,139,133,100,255,255,255,193,224,3,3,133,92,255,255,255,139,80,4,139,0,137,132,205,40,208,255,255,137,148,205,44,208, 255,255,255,133,100,255,255,255,139,133,100,255,255,255,59,133,80,255,255,255,124,193,139,133,80,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208,131,192,16,199,0,4,0,0,0,139,133,80,255,255,255,193,224,3,137,194,141,133,40,208,255,255,1,208, 131,192,16,199,64,4,0,0,0,0,139,149,80,255,255,255,131,194,3,141,133,40,208,255,255,137,68,36,8,137,84,36,4,139,133,124,255,255,255,137,4,36,232,104,171,255,255,255,133,104,255,255,255,233,66,3,0,0,141,131,164,200,2,0,137,68,36,4,139,133,72,255,255,255, 137,4,36,232,150,217,2,0,133,192,15,133,84,1,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,4,0,0,0,232,93,152,255,255,217,157,180,207,255,255,243,15,16,133,180,207,255,255,243,15,89,133,88,255,255,255,243,15,17,133, 8,255,255,255,243,15,16,141,8,255,255,255,141,131,228,11,3,0,243,15,16,0,15,46,193,119,2,235,14,141,131,80,13,3,0,139,0,137,133,8,255,255,255,243,15,90,133,8,255,255,255,242,15,17,133,184,207,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255, 255,255,137,68,36,4,199,4,36,3,0,0,0,232,232,151,255,255,217,157,196,207,255,255,243,15,90,141,196,207,255,255,242,15,17,141,200,207,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,178,151,255,255,217, 157,212,207,255,255,243,15,90,149,212,207,255,255,242,15,17,149,216,207,255,255,141,131,16,223,2,0,137,4,36,232,92,21,0,0,137,198,141,131,185,222,2,0,137,4,36,232,76,21,0,0,242,15,16,133,184,207,255,255,242,15,17,68,36,32,242,15,16,141,200,207,255,255, 242,15,17,76,36,24,242,15,16,149,216,207,255,255,242,15,17,84,36,16,137,116,36,12,137,68,36,8,141,131,128,223,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,165,170,255,255,255,133,104,255,255,255,233,206,1,0,0,141,131,23,163,2,0,137,68,36,4,139, 133,72,255,255,255,137,4,36,232,34,216,2,0,133,192,15,133,174,1,0,0,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,5,0,0,0,232,233,150,255,255,217,157,228,207,255,255,243,15,90,133,228,207,255,255,242,15,17,133,232,207, 255,255,243,15,42,141,104,255,255,255,243,15,17,141,240,207,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,4,0,0,0,232,163,150,255,255,217,157,244,207,255,255,243,15,16,141,240,207,255,255,243,15,92,141,244,207, 255,255,141,131,140,9,3,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,90,192,242,15,17,133,248,207,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,3,0,0,0,232,77,150,255,255,217,157,4,208,255,255,243,15, 90,133,4,208,255,255,242,15,17,133,8,208,255,255,243,15,42,141,104,255,255,255,243,15,17,141,16,208,255,255,139,133,92,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,199,4,36,2,0,0,0,232,7,150,255,255,217,157,20,208,255,255,243,15,16,141, 16,208,255,255,243,15,92,141,20,208,255,255,141,131,140,9,3,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,90,192,242,15,17,133,24,208,255,255,141,131,23,163,2,0,137,4,36,232,145,19,0,0,137,198,141,131,185,222,2,0,137,4,36,232,129,19,0,0,242, 15,16,133,232,207,255,255,242,15,17,68,36,40,242,15,16,141,248,207,255,255,242,15,17,76,36,32,242,15,16,149,8,208,255,255,242,15,17,84,36,24,242,15,16,133,24,208,255,255,242,15,17,68,36,16,137,116,36,12,137,68,36,8,141,131,120,223,2,0,137,68,36,4,139, 133,124,255,255,255,137,4,36,232,204,168,255,255,139,133,84,255,255,255,64,137,133,112,255,255,255,139,133,112,255,255,255,59,133,116,255,255,255,15,140,99,197,255,255,131,125,12,0,117,62,141,131,236,161,2,0,137,4,36,232,246,18,0,0,137,198,141,131,185, 222,2,0,137,4,36,232,230,18,0,0,137,116,36,12,137,68,36,8,141,131,128,222,2,0,137,68,36,4,139,133,124,255,255,255,137,4,36,232,105,168,255,255,139,133,124,255,255,255,137,133,44,203,255,255,139,133,44,203,255,255,141,147,44,23,3,0,139,18,139,77,228,51, 10,116,5,232,187,211,2,0,129,196,124,53,0,0,91,94,95,201,195,85,137,229,131,236,56,199,69,244,0,0,0,0,233,38,1,0,0,199,69,240,0,0,0,0,233,0,1,0,0,139,69,8,139,80,4,139,69,240,3,69,244,193,224,3,141,4,2,137,69,236,139,69,12,139,80,4,139,69,240,193,224, 3,141,4,2,137,69,232,139,69,236,139,0,131,248,4,116,10,139,69,236,139,0,131,248,5,117,23,139,69,232,139,16,139,69,236,139,0,57,194,15,133,202,0,0,0,233,171,0,0,0,139,69,236,139,0,131,248,1,116,10,139,69,236,139,0,131,248,8,117,51,139,69,232,139,16,139, 69,236,139,0,57,194,15,133,159,0,0,0,139,69,236,243,15,16,72,4,139,69,232,243,15,16,64,4,15,46,200,15,133,134,0,0,0,15,138,128,0,0,0,235,100,139,69,236,139,0,131,248,2,116,10,139,69,236,139,0,131,248,9,117,80,139,69,232,139,0,131,248,2,116,10,139,69, 232,139,0,131,248,9,117,86,131,125,16,0,116,16,139,69,236,139,80,4,139,69,232,139,64,4,57,194,117,64,131,125,16,0,117,32,139,69,232,139,64,4,139,16,139,69,236,139,64,4,139,0,137,84,36,4,137,4,36,232,229,212,2,0,133,192,116,26,255,69,240,139,69,12,139, 0,59,69,240,15,143,242,254,255,255,199,69,228,1,0,0,0,235,35,255,69,244,139,69,8,139,16,139,69,12,139,0,137,209,41,193,137,200,59,69,244,15,141,193,254,255,255,199,69,228,0,0,0,0,139,69,228,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,232,218,153, 255,255,137,69,244,139,69,8,139,48,139,69,8,139,0,137,4,36,232,95,212,2,0,141,4,6,141,80,252,141,131,192,164,2,0,137,68,36,4,137,20,36,232,59,212,2,0,133,192,116,46,139,69,8,139,48,139,69,8,139,0,137,4,36,232,49,212,2,0,141,4,6,141,80,252,141,131,166, 127,2,0,137,68,36,4,137,20,36,232,13,212,2,0,133,192,117,9,199,69,228,1,0,0,0,235,7,199,69,228,0,0,0,0,139,69,228,137,69,240,232,64,5,252,255,137,69,236,139,69,12,137,68,36,8,139,69,8,137,68,36,4,199,4,36,0,0,0,0,232,35,212,251,255,139,69,12,139,16,139, 69,8,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,68,36,4,139,69,244,137,4,36,232,182,183,255,255,133,192,116,15,139,69,8,139,0,137,4,36,232,201,210,2,0,235,80,131,125,240,0,116,39,199,68,36,4,1,0,0,0,139,69,244,137,4,36,232,197,193,255,255,137,69,232, 139,69,244,137,4,36,232,27,153,255,255,139,69,232,137,69,244,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,139,69,244,137,4,36,232,235,176,255,255,141,131,8,218,2,0,139,0,137,68,36,8,141,131,8,218,2,0,139,0,137,68,36,4,199,4,36,0,0,0,0, 232,119,211,251,255,139,69,244,137,4,36,232,195,152,255,255,139,69,236,137,4,36,232,143,4,252,255,131,196,48,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,244,0,0,0,0,232,65,4,252,255,137,69,240,139,69,16,137,68,36,4,139,69,12,137,4,36, 232,95,254,255,255,235,63,141,131,154,216,2,0,139,0,139,64,4,137,69,244,141,131,62,99,2,0,137,4,36,232,121,15,0,0,137,194,199,68,36,12,1,0,0,0,141,131,198,195,2,0,137,68,36,8,137,84,36,4,139,69,244,137,4,36,232,68,28,0,0,141,131,154,216,2,0,139,0,139, 64,4,59,69,244,116,15,141,131,154,216,2,0,139,0,139,64,4,133,192,117,162,232,52,76,0,0,139,69,240,137,4,36,232,234,3,252,255,139,69,244,131,196,36,91,201,195,144,144,144,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,12,139,16,139,69,8,139,0,139,0,139, 0,137,84,36,12,137,68,36,8,141,131,112,160,2,0,137,68,36,4,139,69,8,137,4,36,232,139,12,1,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,0,139,80,44,141,131,40,2,0,0,57,194,116,42,139,69,8,139,0,139,80,44,199,68,36,12,0, 0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,255,210,235,44,139,69,8,139,0,139,80,48,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,141,131,34,215,2,0,139,0,137,68,36,4,139,69,8,137,4,36,255,210,131,196,20,91,201,195,85,137,229,83,131,236, 36,232,0,0,0,0,91,139,69,8,139,0,139,80,44,141,131,173,1,0,0,57,194,116,54,199,69,240,3,0,0,0,139,69,12,137,69,244,139,69,8,139,0,139,80,44,141,69,240,137,68,36,12,199,68,36,8,1,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,255,210,235,56,199,69,232,3, 0,0,0,139,69,12,137,69,236,139,69,8,139,0,139,80,48,141,69,232,137,68,36,12,199,68,36,8,1,0,0,0,141,131,31,216,2,0,139,0,137,68,36,4,139,69,8,137,4,36,255,210,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,0,139,80,44,141, 131,26,1,0,0,57,194,116,54,199,69,240,1,0,0,0,139,69,12,137,69,244,139,69,8,139,0,139,80,44,141,69,240,137,68,36,12,199,68,36,8,1,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,255,210,235,56,199,69,232,1,0,0,0,139,69,12,137,69,236,139,69,8,139,0,139,80, 48,141,69,232,137,68,36,12,199,68,36,8,1,0,0,0,141,131,24,214,2,0,139,0,137,68,36,4,139,69,8,137,4,36,255,210,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,0,139,80,44,141,131,135,0,0,0,57,194,116,54,199,69,240,2,0,0,0,139, 69,12,137,69,244,139,69,8,139,0,139,80,44,141,69,240,137,68,36,12,199,68,36,8,1,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,255,210,235,56,199,69,232,2,0,0,0,139,69,12,137,69,236,139,69,8,139,0,139,80,48,141,69,232,137,68,36,12,199,68,36,8,1,0,0,0,141, 131,213,214,2,0,139,0,137,68,36,4,139,69,8,137,4,36,255,210,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,16,0,117,39,139,69,8,139,0,139,80,28,141,131,192,253,255,255,57,194,116,21,139,69,8,139,0,139,80,28,139,69,8,137,4,36,255, 210,233,77,1,0,0,131,125,16,1,15,133,177,0,0,0,139,69,20,139,0,131,248,1,117,49,139,69,8,139,0,139,80,36,141,131,206,254,255,255,57,194,116,31,139,69,8,139,0,139,80,36,139,69,20,139,64,4,137,68,36,4,139,69,8,137,4,36,255,210,233,8,1,0,0,139,69,20,139, 0,131,248,2,117,49,139,69,8,139,0,139,80,40,141,131,97,255,255,255,57,194,116,31,139,69,8,139,0,139,80,40,139,69,20,139,64,4,137,68,36,4,139,69,8,137,4,36,255,210,233,205,0,0,0,139,69,20,139,0,131,248,3,117,49,139,69,8,139,0,139,80,32,141,131,59,254, 255,255,57,194,116,31,139,69,8,139,0,139,80,32,139,69,20,139,64,4,137,68,36,4,139,69,8,137,4,36,255,210,233,146,0,0,0,139,69,8,139,0,139,80,48,141,131,130,253,255,255,57,194,116,44,139,69,8,139,0,139,80,48,139,69,20,137,68,36,12,139,69,16,137,68,36,8, 141,131,50,214,2,0,139,0,137,68,36,4,139,69,8,137,4,36,255,210,235,84,139,69,8,139,0,15,182,64,73,132,192,116,34,139,85,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,180,47,0,0,235,37,139,69,20,137,68,36,12,139,69, 16,137,68,36,8,141,131,50,214,2,0,139,0,137,68,36,4,139,69,8,137,4,36,232,7,252,255,255,131,196,20,91,201,195,85,137,229,87,86,83,129,236,172,0,0,0,232,0,0,0,0,91,141,69,180,137,69,220,199,69,216,0,0,0,0,139,69,24,131,224,3,137,69,208,131,125,208,0,117, 7,199,69,208,3,0,0,0,139,69,220,139,85,28,137,16,141,69,32,137,69,224,235,64,131,125,216,5,117,33,139,69,8,139,0,199,68,36,8,5,0,0,0,137,68,36,4,141,131,132,156,2,0,137,4,36,232,46,7,1,0,235,34,131,69,220,4,255,69,216,139,85,224,141,66,4,137,69,224,137, 208,139,16,139,69,220,137,16,139,69,220,139,0,133,192,117,183,141,131,200,212,2,0,139,0,139,0,133,192,15,132,67,1,0,0,131,125,12,0,15,132,57,1,0,0,139,85,200,139,77,196,139,117,192,139,125,188,139,69,184,137,69,128,139,69,180,137,69,132,139,69,12,137, 69,136,141,131,200,212,2,0,139,0,139,0,137,69,140,137,84,36,32,137,76,36,28,137,116,36,24,137,124,36,20,139,85,128,137,84,36,16,139,77,132,137,76,36,12,139,69,8,137,68,36,8,139,69,136,137,68,36,4,139,85,140,137,20,36,232,251,2,0,0,141,131,204,254,2,0, 139,0,133,192,15,132,199,0,0,0,141,131,204,254,2,0,139,0,139,0,137,69,204,139,69,8,139,0,137,4,36,232,53,205,2,0,136,69,231,139,69,204,137,4,36,232,39,205,2,0,136,69,230,15,182,69,230,58,69,231,15,142,143,0,0,0,15,190,85,230,15,190,69,231,137,209,41, 193,137,200,137,194,3,85,204,139,69,8,139,0,137,84,36,4,137,4,36,232,231,204,2,0,133,192,117,103,139,85,200,139,77,196,139,117,192,139,125,188,139,69,184,137,69,144,139,69,180,137,69,148,141,131,204,254,2,0,139,0,137,69,152,139,69,12,137,69,156,141,131, 200,212,2,0,139,0,139,0,137,84,36,32,137,76,36,28,137,116,36,24,137,124,36,20,139,85,144,137,84,36,16,139,77,148,137,76,36,12,139,85,152,137,84,36,8,139,77,156,137,76,36,4,137,4,36,232,36,2,0,0,199,4,36,76,0,0,0,232,185,34,0,0,137,69,212,139,85,212,139, 69,8,137,66,4,139,69,212,139,80,4,139,69,212,137,16,139,85,212,139,69,20,137,66,12,199,4,36,0,0,0,0,232,141,34,0,0,137,194,139,69,212,137,80,16,139,69,212,199,64,20,0,0,0,0,139,85,212,139,69,16,137,66,24,139,85,212,141,131,46,252,255,255,137,66,28,139, 85,212,141,131,169,252,255,255,137,66,32,139,85,212,141,131,60,253,255,255,137,66,36,139,85,212,141,131,207,253,255,255,137,66,40,139,85,212,141,131,98,254,255,255,137,66,44,139,85,212,141,131,240,251,255,255,137,66,48,131,125,208,3,117,13,141,131,136, 212,2,0,139,0,137,69,160,235,7,199,69,160,0,0,0,0,139,69,212,139,85,160,137,80,52,139,69,212,199,64,56,0,0,0,0,139,69,24,131,224,8,133,192,15,148,194,139,69,212,136,80,74,131,125,208,3,15,148,194,139,69,212,136,80,73,131,125,208,1,15,159,194,139,69,212, 136,80,72,139,69,212,198,64,75,0,139,69,212,199,64,68,0,0,0,0,141,131,204,217,2,0,139,16,139,69,212,137,80,8,131,125,208,3,117,13,141,131,248,212,2,0,139,0,137,69,164,235,9,141,139,80,9,0,0,137,77,164,139,69,212,139,85,164,137,80,60,139,69,212,129,196, 172,0,0,0,91,94,95,201,195,85,137,229,87,86,83,131,236,124,232,0,0,0,0,91,141,69,196,137,69,224,199,69,220,0,0,0,0,139,85,224,139,69,16,137,2,141,69,20,137,69,228,235,64,131,125,220,5,117,33,139,69,12,139,0,199,68,36,8,5,0,0,0,137,68,36,4,141,131,151, 153,2,0,137,4,36,232,31,4,1,0,235,34,131,69,224,4,255,69,220,139,85,228,141,66,4,137,69,228,137,208,139,16,139,69,224,137,16,139,69,224,139,0,133,192,117,183,139,85,216,139,77,212,139,117,208,139,125,204,139,69,200,137,69,168,139,69,196,137,69,172,139, 69,8,137,69,176,141,131,163,209,2,0,139,0,139,0,137,69,180,137,84,36,32,137,76,36,28,137,116,36,24,137,124,36,20,139,69,168,137,68,36,16,139,69,172,137,68,36,12,139,69,12,137,68,36,8,139,69,176,137,68,36,4,139,69,180,137,4,36,232,8,0,0,0,131,196,124, 91,94,95,201,195,85,137,229,86,83,129,236,144,0,0,0,232,0,0,0,0,91,139,69,8,137,69,132,139,69,12,137,69,128,139,69,16,137,133,124,255,255,255,141,131,202,207,2,0,139,0,139,16,137,85,244,49,210,139,69,20,137,69,152,141,69,24,137,69,160,141,131,78,207, 2,0,139,0,57,133,124,255,255,255,117,34,139,69,132,139,64,68,133,192,116,14,141,131,230,152,2,0,137,4,36,232,111,0,1,0,139,69,132,199,64,68,255,255,255,255,141,131,86,207,2,0,139,0,57,133,124,255,255,255,117,33,131,125,152,0,15,133,192,2,0,0,139,69,128, 137,68,36,4,139,69,132,137,4,36,232,241,2,0,0,233,206,2,0,0,141,131,90,207,2,0,139,0,57,133,124,255,255,255,117,54,131,125,152,1,15,133,143,2,0,0,139,85,160,141,66,4,137,69,160,137,208,139,0,133,192,15,133,122,2,0,0,139,69,128,137,68,36,4,139,69,132, 137,4,36,232,205,2,0,0,233,136,2,0,0,141,131,170,208,2,0,139,0,57,133,124,255,255,255,117,54,131,125,152,2,15,133,73,2,0,0,139,85,160,141,66,4,137,69,160,137,208,139,0,133,192,15,133,52,2,0,0,139,69,128,137,68,36,4,139,69,132,137,4,36,232,152,2,0,0,233, 66,2,0,0,141,131,154,208,2,0,139,0,57,133,124,255,255,255,117,33,131,125,152,10,15,133,3,2,0,0,139,69,128,137,68,36,4,139,69,132,137,4,36,232,120,2,0,0,233,17,2,0,0,141,131,238,208,2,0,139,0,57,133,124,255,255,255,117,33,131,125,152,10,15,133,210,1,0, 0,139,69,128,137,68,36,4,139,69,132,137,4,36,232,88,2,0,0,233,224,1,0,0,199,69,144,0,0,0,0,233,195,0,0,0,139,69,132,139,80,16,139,69,144,193,224,5,141,4,2,139,0,59,133,124,255,255,255,15,133,163,0,0,0,139,133,124,255,255,255,139,0,137,68,36,12,141,131, 26,153,2,0,137,68,36,8,199,68,36,4,80,0,0,0,141,69,164,137,4,36,232,86,200,2,0,139,69,132,139,80,16,139,69,144,193,224,5,141,52,2,141,69,164,137,4,36,232,23,5,0,0,137,6,141,131,194,208,2,0,139,0,139,0,57,69,132,117,35,139,133,124,255,255,255,139,16,141, 69,164,137,68,36,8,137,84,36,4,141,131,38,153,2,0,137,4,36,232,168,254,0,0,235,44,139,69,132,139,0,139,16,139,133,124,255,255,255,139,8,141,69,164,137,68,36,12,137,84,36,8,137,76,36,4,141,131,94,153,2,0,137,4,36,232,122,254,0,0,255,69,144,139,69,132, 139,64,20,59,69,144,15,143,46,255,255,255,139,69,132,139,64,20,64,193,224,5,137,193,139,69,132,139,64,20,137,194,193,226,5,139,69,132,139,64,16,137,76,36,8,137,84,36,4,137,4,36,232,244,30,0,0,137,194,139,69,132,137,80,16,139,69,132,139,80,16,139,69,132, 139,64,20,193,224,5,141,4,2,137,69,156,139,69,132,139,64,20,141,80,1,139,69,132,137,80,20,139,85,156,139,133,124,255,255,255,137,2,139,85,128,139,69,156,137,80,4,199,69,148,0,0,0,0,235,32,139,77,148,139,85,156,139,69,152,137,68,138,8,255,69,148,139,85, 160,141,66,4,137,69,160,137,208,139,0,137,69,152,131,125,152,0,116,6,131,125,148,4,126,212,131,125,152,0,116,37,139,133,124,255,255,255,139,16,139,69,132,139,0,139,0,137,84,36,8,137,68,36,4,141,131,150,153,2,0,137,4,36,232,84,0,1,0,139,85,148,139,69, 156,199,68,144,8,0,0,0,0,235,37,139,133,124,255,255,255,139,16,139,69,132,139,0,139,0,137,84,36,8,137,68,36,4,141,131,206,153,2,0,137,4,36,232,128,2,1,0,141,131,202,207,2,0,139,0,139,85,244,51,16,116,5,232,170,196,2,0,129,196,144,0,0,0,91,94,201,195, 85,137,229,131,236,8,139,85,12,139,69,8,137,80,28,201,195,85,137,229,131,236,8,139,85,12,139,69,8,137,80,32,201,195,85,137,229,131,236,8,139,85,12,139,69,8,137,80,36,201,195,85,137,229,131,236,8,139,85,12,139,69,8,137,80,40,201,195,85,137,229,131,236, 8,139,85,12,139,69,8,137,80,44,201,195,85,137,229,131,236,8,139,85,12,139,69,8,137,80,48,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,52,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,56,201,195,85,137,229,131,236,8,139,69,8,139,0,139, 0,201,195,85,137,229,131,236,8,139,69,8,139,64,4,139,0,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,4,201,195,85,137,229,131,236,8,139,69,8,139,0,139,64,56,201,195,85,137,229,131,236,8,139,69,8,198,64,75,1,201,195,85,137,229,131,236,8,139,69, 8,15,182,64,75,15,190,192,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,0,139,64,68,137,69,244,131,125,244,0,126,18,139,85,8,139,69,244,141,4,2,137,194,139,69,12,137,2,235,34,139,69,8,139,0,139,0,139,0,137,68,36,8,141,131,133,149,2,0,137, 68,36,4,139,69,8,137,4,36,232,242,255,0,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,12,0,127,9,199,69,12,255,255,255,255,235,53,139,69,8,139,80,36,141,131,105,244,255,255,57,194,116,25,139,69,8,139,0,139,0,137,68,36,4,141, 131,85,149,2,0,137,4,36,232,194,251,0,0,139,85,8,141,131,156,255,255,255,137,66,36,139,85,8,139,69,12,137,66,68,131,196,20,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,145,154,208,2,0,139,69,8,137,2,201,195,85,137,229,131,236,8,139,69,8,139,64, 8,139,0,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,244,148,2,0,137,4,36,232,125,0,1,0,131,196,20,91,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,60,201,195,85,137,229,131,236,8,139,69,8,139,64,60,201,195,85,137,229,131,236,8,139, 85,8,139,69,12,137,66,64,201,195,85,137,229,131,236,8,139,69,8,139,64,64,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,199,69,236,0,0,0,0,199,69,232,0,0,0,0,199,69,228,0,0,0,0,139,69,8,137,69,224,235,24,139,69,224,15,182,0,15,190,192,1,69,236,139,69, 236,1,69,232,255,69,228,255,69,224,139,69,224,15,182,0,132,192,117,222,139,69,232,37,255,3,0,0,193,224,2,137,194,141,131,49,245,2,0,141,4,2,137,69,244,235,44,139,69,240,139,16,139,69,8,137,68,36,4,137,20,36,232,36,196,2,0,133,192,117,11,139,69,240,137, 69,212,233,166,0,0,0,139,69,240,131,192,8,137,69,244,139,69,244,139,0,137,69,240,131,125,240,0,117,198,131,125,12,0,116,8,139,69,12,137,69,240,235,115,199,4,36,12,0,0,0,232,45,26,0,0,137,69,240,139,69,228,64,137,4,36,232,30,26,0,0,137,194,139,69,240, 137,16,139,69,240,199,64,8,0,0,0,0,139,69,240,199,64,4,0,0,0,0,184,255,255,255,255,131,248,255,116,31,186,255,255,255,255,139,69,240,139,8,137,84,36,8,139,69,8,137,68,36,4,137,12,36,232,119,193,2,0,235,20,139,69,240,139,16,139,69,8,137,68,36,4,137,20, 36,232,23,0,0,0,139,85,244,139,69,240,137,2,139,69,240,137,69,212,139,69,212,131,196,68,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,41,193,2,0,201,195,85,137,229,131,236,24,199,68,36,4, 0,0,0,0,139,69,8,137,4,36,232,139,254,255,255,201,195,85,137,229,83,129,236,36,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,141,131,155,200,2,0,139,0,139,16,137,85,244,49,210,139,133,244,251,255,255,139,0,137,133,8,252,255,255,139,133,8,252, 255,255,137,4,36,232,240,194,2,0,137,133,4,252,255,255,139,133,4,252,255,255,3,133,8,252,255,255,141,80,253,141,131,233,85,2,0,137,68,36,4,137,20,36,232,189,194,2,0,133,192,117,17,139,141,244,251,255,255,137,141,240,251,255,255,233,139,0,0,0,199,68,36, 8,232,3,0,0,139,133,8,252,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,108,192,2,0,184,255,255,255,255,131,248,255,116,43,185,255,255,255,255,139,133,4,252,255,255,141,149,12,252,255,255,1,194,137,76,36,8,141,131,233,85,2,0,137,68,36,4,137, 20,36,232,57,192,2,0,235,34,139,133,4,252,255,255,137,194,141,133,12,252,255,255,1,208,141,147,233,85,2,0,137,84,36,4,137,4,36,232,203,254,255,255,141,133,12,252,255,255,137,4,36,232,224,254,255,255,137,133,240,251,255,255,139,133,240,251,255,255,141, 147,155,200,2,0,139,18,139,77,244,51,10,116,5,232,219,191,2,0,129,196,36,4,0,0,91,201,195,85,137,229,86,83,129,236,48,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,139,69,20,137,133,236,251,255,255,141,131,108, 199,2,0,139,0,139,16,137,85,244,49,210,141,131,136,2,3,0,139,0,61,232,3,0,0,126,27,199,68,36,4,232,3,0,0,141,131,20,146,2,0,137,4,36,232,211,250,0,0,233,35,2,0,0,141,131,248,199,2,0,139,0,199,0,0,0,0,0,141,147,104,242,2,0,139,133,240,251,255,255,137, 2,139,133,240,251,255,255,139,48,232,226,193,251,255,137,116,36,4,137,4,36,232,91,177,0,0,133,192,116,84,141,131,136,2,3,0,139,0,141,80,1,141,131,136,2,3,0,137,16,139,149,244,251,255,255,139,133,236,251,255,255,137,68,36,12,139,69,16,137,68,36,8,139, 133,240,251,255,255,137,68,36,4,137,20,36,232,10,3,0,0,141,131,136,2,3,0,139,0,141,80,255,141,131,136,2,3,0,137,16,233,150,1,0,0,141,131,104,242,2,0,199,0,0,0,0,0,141,131,136,199,2,0,139,0,139,64,4,137,133,8,252,255,255,139,133,240,251,255,255,139,48, 232,84,193,251,255,137,194,199,68,36,24,0,0,0,0,199,68,36,20,232,3,0,0,141,133,0,252,255,255,137,68,36,16,141,133,12,252,255,255,137,68,36,12,141,131,186,84,2,0,137,68,36,8,137,116,36,4,137,20,36,232,180,250,251,255,137,133,4,252,255,255,131,189,4,252, 255,255,0,121,92,139,133,240,251,255,255,139,48,232,252,192,251,255,137,194,199,68,36,24,0,0,0,0,199,68,36,20,232,3,0,0,141,133,0,252,255,255,137,68,36,16,141,133,12,252,255,255,137,68,36,12,141,131,60,146,2,0,137,68,36,8,137,116,36,4,137,20,36,232,92, 250,251,255,137,133,4,252,255,255,131,189,4,252,255,255,0,15,136,183,0,0,0,139,133,4,252,255,255,137,4,36,232,103,190,2,0,139,133,240,251,255,255,137,4,36,232,131,56,0,0,133,192,117,123,139,133,236,251,255,255,137,68,36,4,139,69,16,137,4,36,232,232,191, 251,255,141,133,12,252,255,255,137,4,36,232,177,252,255,255,137,198,139,133,0,252,255,255,137,4,36,232,161,252,255,255,137,116,36,4,137,4,36,232,93,235,255,255,141,131,136,199,2,0,139,0,139,64,4,59,133,8,252,255,255,116,19,141,131,136,199,2,0,139,0,139, 64,4,137,4,36,232,104,231,251,255,199,68,36,4,0,0,0,0,199,4,36,0,0,0,0,232,132,191,251,255,235,42,139,133,240,251,255,255,139,0,137,68,36,4,141,131,68,146,2,0,137,4,36,232,187,248,0,0,235,14,141,131,248,199,2,0,139,0,199,0,0,0,0,0,141,131,108,199,2,0, 139,0,139,85,244,51,16,116,5,232,54,189,2,0,129,196,48,4,0,0,91,94,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,194,197,2,0,139,0,139,0,133,192,15,133,1,1,0,0,199,69,240,12,0,0,0,141,131,102,203,2,0,137,69,244,235,28,139,69,244,139,16,139, 69,244,139,0,139,0,137,84,36,4,137,4,36,232,108,250,255,255,131,69,244,4,255,77,240,131,125,240,255,117,219,141,131,214,143,2,0,137,4,36,232,173,251,255,255,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,4,0,0,0,199,68,36,8,0,0,0,0,199,68,36, 4,0,0,0,0,137,4,36,232,97,240,255,255,137,194,141,131,194,197,2,0,139,0,137,16,141,131,226,143,2,0,137,4,36,232,99,251,255,255,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,4,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,23,240, 255,255,137,194,141,131,110,197,2,0,139,0,137,16,141,131,30,203,2,0,137,68,36,4,141,131,110,197,2,0,139,0,137,4,36,232,196,51,0,0,141,147,78,253,255,255,141,131,194,197,2,0,139,0,139,0,137,84,36,4,137,4,36,232,193,247,255,255,131,196,52,91,201,195,85, 137,229,131,236,8,232,0,0,0,0,89,141,129,49,196,2,0,139,0,139,0,201,195,85,137,229,87,86,83,129,236,28,1,0,0,232,0,0,0,0,91,139,69,8,139,0,137,69,224,141,69,168,137,69,204,141,69,144,137,69,200,199,69,196,0,0,0,0,141,131,147,201,2,0,57,69,12,117,80,131, 125,16,0,117,31,139,69,224,139,80,36,141,131,227,181,2,0,139,0,137,68,36,4,139,69,8,137,4,36,255,210,233,89,7,0,0,139,69,20,139,0,131,248,1,15,133,34,7,0,0,139,69,224,139,80,36,139,69,20,139,64,4,137,68,36,4,139,69,8,137,4,36,255,210,233,46,7,0,0,141, 131,171,201,2,0,57,69,12,117,19,139,69,224,139,80,28,139,69,8,137,4,36,255,210,233,16,7,0,0,141,131,183,201,2,0,57,69,12,117,40,139,69,224,139,80,44,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,233,221, 6,0,0,141,131,159,201,2,0,57,69,12,117,74,131,125,16,0,116,39,139,69,20,139,0,131,248,2,117,29,139,69,224,139,80,40,139,69,20,139,64,4,137,68,36,4,139,69,8,137,4,36,255,210,233,165,6,0,0,139,69,224,139,80,40,141,131,11,202,2,0,137,68,36,4,139,69,8,137, 4,36,255,210,233,136,6,0,0,139,69,224,139,64,20,137,69,208,139,69,224,139,64,16,137,69,220,233,22,6,0,0,139,69,220,139,0,59,69,12,15,133,4,6,0,0,139,69,220,131,192,8,137,69,216,139,69,216,139,0,131,248,10,117,102,141,131,127,196,2,0,139,0,57,69,8,117, 47,139,69,220,139,64,4,137,194,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,12,137,4,36,255,210,137,194,141,131,19,196,2,0,139,0,137,16,233,20,6,0,0,139,69,220,139,64,4,137,194,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4, 139,69,8,137,4,36,255,210,233,234,5,0,0,131,125,16,5,126,7,199,69,16,5,0,0,0,141,131,127,196,2,0,139,0,57,69,8,15,132,101,1,0,0,139,85,8,139,69,204,137,16,131,69,204,4,255,69,196,233,81,1,0,0,131,125,212,7,15,135,71,1,0,0,139,69,212,141,20,133,0,0,0, 0,141,131,15,2,0,0,139,4,2,1,216,255,224,144,62,3,0,0,103,2,0,0,175,2,0,0,47,2,0,0,62,3,0,0,62,3,0,0,113,2,0,0,185,2,0,0,131,125,16,0,15,132,67,5,0,0,139,69,20,139,0,131,248,3,15,133,53,5,0,0,139,69,20,139,64,4,137,194,139,69,204,137,16,255,77,16,131, 69,20,8,255,69,196,131,69,204,4,233,215,0,0,0,131,125,16,0,15,132,11,5,0,0,131,125,16,0,117,15,139,69,200,141,147,227,181,2,0,139,18,137,16,235,32,139,69,20,139,0,131,248,1,15,133,232,4,0,0,139,69,20,139,80,4,139,69,200,137,16,255,77,16,131,69,20,8,131, 69,200,4,233,143,0,0,0,131,125,16,0,15,132,195,4,0,0,131,125,16,0,117,13,141,147,11,202,2,0,139,69,204,137,16,235,107,139,69,20,139,0,131,248,2,117,15,139,69,20,139,64,4,137,194,139,69,204,137,16,235,75,141,131,127,196,2,0,139,0,57,69,8,15,133,134,4, 0,0,139,69,20,139,0,131,248,1,15,133,120,4,0,0,139,69,20,243,15,16,72,4,141,131,227,181,2,0,243,15,16,0,15,46,200,15,133,93,4,0,0,15,138,87,4,0,0,141,147,11,202,2,0,139,69,204,137,16,255,77,16,131,69,20,8,255,69,196,131,69,204,4,139,69,216,139,0,137, 69,212,131,125,212,0,15,149,192,131,69,216,4,132,192,15,133,148,254,255,255,131,125,196,6,15,135,192,3,0,0,139,69,196,141,20,133,0,0,0,0,141,131,123,3,0,0,139,4,2,1,216,255,224,144,151,3,0,0,211,3,0,0,54,4,0,0,172,4,0,0,53,5,0,0,209,5,0,0,128,6,0,0,139, 69,220,139,64,4,137,133,28,255,255,255,139,69,160,139,85,156,139,77,152,139,117,148,139,125,144,137,68,36,16,137,84,36,12,137,76,36,8,137,116,36,4,137,60,36,255,149,28,255,255,255,137,69,192,233,87,3,0,0,139,69,220,139,64,4,137,133,32,255,255,255,243, 15,16,69,160,243,15,17,133,20,255,255,255,139,85,156,139,77,152,139,117,148,139,125,144,139,69,168,137,133,36,255,255,255,243,15,16,133,20,255,255,255,243,15,17,68,36,20,137,84,36,16,137,76,36,12,137,116,36,8,137,124,36,4,139,133,36,255,255,255,137,4, 36,255,149,32,255,255,255,137,69,192,233,244,2,0,0,139,69,220,139,64,4,137,133,40,255,255,255,243,15,16,69,160,243,15,17,133,20,255,255,255,139,85,156,139,77,152,139,117,148,139,125,144,139,69,172,137,133,44,255,255,255,139,69,168,137,133,48,255,255, 255,243,15,16,133,20,255,255,255,243,15,17,68,36,24,137,84,36,20,137,76,36,16,137,116,36,12,137,124,36,8,139,133,44,255,255,255,137,68,36,4,139,133,48,255,255,255,137,4,36,255,149,40,255,255,255,137,69,192,233,126,2,0,0,139,69,220,139,64,4,137,133,52, 255,255,255,243,15,16,69,160,243,15,17,133,20,255,255,255,139,85,156,139,77,152,139,117,148,139,125,144,139,69,176,137,133,56,255,255,255,139,69,172,137,133,60,255,255,255,139,69,168,137,133,64,255,255,255,243,15,16,133,20,255,255,255,243,15,17,68,36, 28,137,84,36,24,137,76,36,20,137,116,36,16,137,124,36,12,139,133,56,255,255,255,137,68,36,8,139,133,60,255,255,255,137,68,36,4,139,133,64,255,255,255,137,4,36,255,149,52,255,255,255,137,69,192,233,245,1,0,0,139,69,220,139,64,4,137,133,68,255,255,255, 243,15,16,69,160,243,15,17,133,20,255,255,255,139,85,156,139,77,152,139,117,148,139,125,144,139,69,180,137,133,72,255,255,255,139,69,176,137,133,76,255,255,255,139,69,172,137,133,80,255,255,255,139,69,168,137,133,84,255,255,255,243,15,16,133,20,255,255, 255,243,15,17,68,36,32,137,84,36,28,137,76,36,24,137,116,36,20,137,124,36,16,139,133,72,255,255,255,137,68,36,12,139,133,76,255,255,255,137,68,36,8,139,133,80,255,255,255,137,68,36,4,139,133,84,255,255,255,137,4,36,255,149,68,255,255,255,137,69,192,233, 89,1,0,0,139,69,220,139,64,4,137,133,88,255,255,255,243,15,16,69,160,243,15,17,133,20,255,255,255,139,85,156,139,77,152,139,117,148,139,125,144,139,69,184,137,133,92,255,255,255,139,69,180,137,133,96,255,255,255,139,69,176,137,133,100,255,255,255,139, 69,172,137,133,104,255,255,255,139,69,168,137,133,108,255,255,255,243,15,16,133,20,255,255,255,243,15,17,68,36,36,137,84,36,32,137,76,36,28,137,116,36,24,137,124,36,20,139,133,92,255,255,255,137,68,36,16,139,133,96,255,255,255,137,68,36,12,139,133,100, 255,255,255,137,68,36,8,139,133,104,255,255,255,137,68,36,4,139,133,108,255,255,255,137,4,36,255,149,88,255,255,255,137,69,192,233,170,0,0,0,139,69,220,139,64,4,137,133,20,255,255,255,139,85,160,139,77,156,139,117,152,139,125,148,243,15,16,69,144,139, 69,188,137,133,112,255,255,255,139,69,184,137,133,116,255,255,255,139,69,180,137,133,120,255,255,255,139,69,176,137,133,124,255,255,255,139,69,172,137,69,128,139,69,168,137,69,132,137,84,36,40,137,76,36,36,137,116,36,32,137,124,36,28,243,15,17,68,36, 24,139,133,112,255,255,255,137,68,36,20,139,133,116,255,255,255,137,68,36,16,139,133,120,255,255,255,137,68,36,12,139,133,124,255,255,255,137,68,36,8,139,69,128,137,68,36,4,139,69,132,137,4,36,255,149,20,255,255,255,137,69,192,235,7,199,69,192,0,0,0, 0,141,131,127,196,2,0,139,0,57,69,8,117,110,141,131,19,196,2,0,139,0,139,85,192,137,16,235,95,131,69,220,32,255,77,208,131,125,208,255,15,133,221,249,255,255,139,69,224,139,80,48,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139, 69,8,137,4,36,255,210,235,41,139,69,224,139,0,139,16,139,69,12,139,0,137,84,36,12,137,68,36,8,141,131,171,142,2,0,137,68,36,4,139,69,8,137,4,36,232,197,240,0,0,129,196,28,1,0,0,91,94,95,201,195,85,137,229,83,129,236,132,0,0,0,232,0,0,0,0,91,141,69,152, 137,69,240,199,69,236,0,0,0,0,139,69,16,137,69,232,141,69,20,137,69,244,131,125,236,9,126,26,141,131,26,135,2,0,137,68,36,4,139,69,8,137,4,36,232,118,240,0,0,233,199,0,0,0,139,69,232,15,182,0,15,190,192,137,69,148,255,69,232,131,125,148,105,116,102,131, 125,148,105,127,11,131,125,148,102,116,22,233,161,0,0,0,131,125,148,112,116,115,131,125,148,115,116,43,233,144,0,0,0,139,69,240,199,0,1,0,0,0,139,85,244,141,66,8,137,69,244,137,208,242,15,16,0,242,15,90,192,139,69,240,243,15,17,64,4,235,94,139,69,240, 199,0,2,0,0,0,139,85,244,141,66,4,137,69,244,137,208,139,16,139,69,240,137,80,4,235,64,139,69,240,199,0,1,0,0,0,139,85,244,141,66,4,137,69,244,137,208,139,0,243,15,42,192,139,69,240,243,15,17,64,4,235,28,139,69,240,199,0,3,0,0,0,139,85,244,141,66,4,137, 69,244,137,208,139,16,139,69,240,137,80,4,131,69,240,8,255,69,236,233,25,255,255,255,141,69,152,137,68,36,12,139,69,236,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,15,247,255,255,129,196,132,0,0,0,91,201,195,85,137,229,83,131,236,36,232,0, 0,0,0,91,131,125,12,0,15,132,216,0,0,0,139,69,16,139,0,137,69,244,131,125,244,2,117,44,139,85,16,131,194,8,139,77,12,73,139,69,16,139,64,4,137,84,36,12,137,76,36,8,137,68,36,4,139,69,8,137,4,36,232,186,246,255,255,233,158,0,0,0,131,125,244,3,117,66,131, 125,12,1,117,23,139,69,16,139,64,4,137,68,36,4,139,69,8,137,4,36,232,249,46,0,0,235,123,139,69,16,137,68,36,12,139,69,12,137,68,36,8,141,131,194,192,2,0,137,68,36,4,139,69,8,137,4,36,232,18,47,0,0,235,86,131,125,244,1,117,66,131,125,12,1,117,23,139,69, 16,139,64,4,137,68,36,4,139,69,8,137,4,36,232,146,46,0,0,235,51,139,69,16,137,68,36,12,139,69,12,137,68,36,8,141,131,194,192,2,0,137,68,36,4,139,69,8,137,4,36,232,202,46,0,0,235,14,141,131,254,133,2,0,137,4,36,232,199,239,0,0,131,196,36,91,201,195,85, 137,229,131,236,8,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,0,137,69,244,139,69,244,139,64,20,137,69,236,139,69,244,139,64,16,137,69,240,235,25,139,69,240,139,0,59,69,12,117,11,139,69,240,139,64,4,137,69,228,235,63,131,69,240,32,255, 77,236,131,125,236,255,117,222,139,69,12,139,16,139,69,244,139,0,139,0,137,84,36,12,137,68,36,8,141,131,17,133,2,0,137,68,36,4,139,69,8,137,4,36,232,16,238,0,0,141,131,236,255,255,255,137,69,228,139,69,228,131,196,52,91,201,195,85,137,229,131,236,40, 139,69,8,139,0,137,69,244,139,69,244,139,64,20,137,69,236,139,69,244,139,64,16,137,69,240,235,25,139,69,240,139,0,59,69,12,117,11,139,69,240,139,64,4,137,69,228,235,20,131,69,240,32,255,77,236,131,125,236,255,117,222,199,69,228,0,0,0,0,139,69,228,201, 195,85,137,229,131,236,8,232,83,136,251,255,232,137,240,251,255,232,69,186,252,255,232,216,172,251,255,232,255,228,252,255,232,97,26,253,255,232,62,75,253,255,232,246,129,253,255,232,116,176,254,255,232,55,5,255,255,232,61,56,255,255,232,74,108,255,255, 232,152,52,253,255,232,60,219,253,255,232,30,72,254,255,232,149,138,254,255,232,2,219,254,255,232,102,39,0,0,232,1,254,0,0,232,133,125,1,0,232,159,105,1,0,232,101,11,2,0,232,79,28,1,0,232,248,203,1,0,232,28,214,1,0,232,92,227,1,0,232,155,238,1,0,232, 151,120,1,0,232,133,148,1,0,232,4,106,249,255,232,24,145,249,255,232,22,179,249,255,232,155,186,249,255,232,185,199,249,255,232,78,216,249,255,232,99,57,250,255,232,45,73,250,255,232,134,106,250,255,232,193,111,250,255,232,3,132,250,255,232,207,253,250, 255,232,65,36,251,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,65,170,2,0,243,15,16,8,243,15,16,69,12,15,46,193,119,2,235,14,141,131,129,131,2,0,137,4,36,232,119,235,0,0,131,196,20,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129, 11,170,2,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,15,182,208,141,129,99,184,2,0,139,0,137,16,201,195,85,137,229,86,83,131,196,128,232,0,0,0,0,91,139,69,8,137,69,148,139,69,12,137,69,144,139,69,20,137,69,140,141,131,124,183,2,0,139,0,139, 16,137,85,244,49,210,139,69,144,139,48,139,69,148,139,0,137,4,36,232,134,235,255,255,137,116,36,8,137,68,36,4,141,131,85,131,2,0,137,4,36,232,214,232,0,0,199,69,160,0,0,0,0,235,48,139,69,160,193,224,3,137,194,3,85,140,199,68,36,8,80,0,0,0,141,69,164, 137,68,36,4,137,20,36,232,71,113,255,255,141,69,164,137,4,36,232,38,233,0,0,255,69,160,139,69,160,59,69,16,124,200,232,51,234,0,0,141,131,124,183,2,0,139,0,139,85,244,51,16,116,5,232,46,175,2,0,131,236,128,91,94,201,195,85,137,229,83,131,236,36,232,0, 0,0,0,91,141,131,21,126,2,0,137,4,36,232,241,237,255,255,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,4,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,165,226,255,255,137,194,141,131,229,241,2,0,137,16,141,147,60,255,255,255,141, 131,229,241,2,0,139,0,137,84,36,4,137,4,36,232,109,234,255,255,141,131,21,126,2,0,137,4,36,232,143,237,255,255,137,68,36,4,141,131,229,241,2,0,137,4,36,232,52,38,0,0,141,131,49,107,2,0,137,4,36,232,111,237,255,255,199,68,36,20,0,0,0,0,199,68,36,16,0, 0,0,0,199,68,36,12,4,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,35,226,255,255,137,194,141,131,17,184,2,0,139,0,137,16,141,131,137,78,2,0,137,4,36,232,37,237,255,255,137,194,141,131,77,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199, 68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,220,229,255,255,141,131,182,130,2,0,137,4,36,232,227,236,255,255,137,194,141,131,53,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,2,0,0,0,199, 68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,146,229,255,255,141,131,161,46,2,0,137,4,36,232,153,236,255,255,137,194,141,131,33,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,2,0,0,0,199,68,36,12,2,0,0,0,137,84, 36,8,137,76,36,4,137,4,36,232,72,229,255,255,141,131,192,130,2,0,137,4,36,232,79,236,255,255,137,194,141,131,65,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,14,229,255,255,141,131,197,130,2,0, 137,4,36,232,21,236,255,255,137,194,141,131,9,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,204,228,255,255,141,131,96,66,2,0,137,4,36,232,211,235,255,255,137,194,141,131,45, 184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,138,228,255,255,141,131,249,39,2,0,137,4,36,232,145,235,255,255,137,194,141,131,5,184,2,0,139,8,141,131,17,184,2,0,139,0,139, 0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,72,228,255,255,141,131,208,130,2,0,137,4,36,232,79,235,255,255,137,194,141,131,69,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0, 137,84,36,8,137,76,36,4,137,4,36,232,6,228,255,255,141,131,215,130,2,0,137,4,36,232,13,235,255,255,137,194,141,131,49,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,196,227, 255,255,141,131,219,130,2,0,137,4,36,232,203,234,255,255,137,194,141,131,21,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,138,227,255,255,141,131,231,130,2,0,137,4,36,232,145,234,255,255,137,194, 141,131,61,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,80,227,255,255,141,131,241,130,2,0,137,4,36,232,87,234,255,255,137,194,141,131,249,183,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36, 16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,14,227,255,255,141,131,2,131,2,0,137,4,36,232,21,234,255,255,137,194,141,131,241,183,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8, 137,76,36,4,137,4,36,232,204,226,255,255,141,131,15,131,2,0,137,4,36,232,211,233,255,255,137,194,141,131,73,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,138,226,255,255,141, 131,28,131,2,0,137,4,36,232,145,233,255,255,137,194,141,131,1,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,72,226,255,255,141,131,40,131,2,0,137,4,36,232,79,233,255,255,137, 194,141,131,29,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,6,226,255,255,141,131,56,131,2,0,137,4,36,232,13,233,255,255,137,194,141,131,13,184,2,0,139,8,141,131,17,184,2, 0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,196,225,255,255,141,131,68,131,2,0,137,4,36,232,203,232,255,255,137,194,141,131,37,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84, 36,8,137,76,36,4,137,4,36,232,138,225,255,255,141,131,86,131,2,0,137,4,36,232,145,232,255,255,137,194,141,131,245,183,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,72,225,255, 255,141,131,98,131,2,0,137,4,36,232,79,232,255,255,137,194,141,131,25,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,14,225,255,255,141,131,119,131,2,0,137,4,36,232,21,232,255,255,137,194,141,131, 41,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,204,224,255,255,141,131,134,131,2,0,137,4,36,232,211,231,255,255,137,194,141,131,253,183,2,0,139,8,141,131,17,184,2,0,139, 0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,146,224,255,255,141,131,139,131,2,0,137,4,36,232,153,231,255,255,137,194,141,131,57,184,2,0,139,8,141,131,17,184,2,0,139,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232, 88,224,255,255,141,131,156,131,2,0,137,4,36,232,95,231,255,255,137,194,141,139,212,254,255,255,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,24,224,255,255,141,131,164,131,2,0,137,4,36,232, 31,231,255,255,137,194,141,139,11,255,255,255,141,131,17,184,2,0,139,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,216,223,255,255,141,147,60,255,255,255,141,131,17,184,2,0,139,0,139,0,137,84,36,4,137,4,36,232, 161,227,255,255,141,131,49,107,2,0,137,4,36,232,195,230,255,255,137,68,36,4,141,131,17,184,2,0,139,0,137,4,36,232,102,31,0,0,131,196,36,91,201,195,85,137,229,131,236,8,131,125,8,0,116,9,139,69,8,199,0,0,0,0,0,131,125,12,0,116,9,139,69,12,199,0,43,0,0, 0,131,125,16,0,116,9,139,69,16,199,0,0,0,0,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,131,125,8,0,117,7,199,69,8,1,0,0,0,199,68,36,4,1,0,0,0,139,69,8,137,4,36,232,194,167,2,0,137,69,244,131,125,244,0,117,14,141,131,17,124,2,0,137,4,36,232,243, 223,0,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,162,255,255,255,201,195,85,137,229,131,236,40,139,69,12,137,4,36,232,143,255,255,255,137,69,244,131,125,12,0,116,71,184,255,255,255,255,131,248,255,116,36,184,255,255, 255,255,137,68,36,12,139,69,12,137,68,36,8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,203,166,2,0,235,25,139,69,12,137,68,36,8,139,69,8,137,68,36,4,139,69,244,137,4,36,232,5,0,0,0,139,69,244,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68, 36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,131,166,2,0,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,131,125,16,0,117,7,199,69,16,1,0,0,0,131,125,12,0,117,7,199,69,12,1,0,0,0,139,69,16,137,68,36,4,139,69,8,137,4,36,232, 39,168,2,0,137,69,244,139,69,16,59,69,12,118,105,131,125,244,0,116,99,184,255,255,255,255,131,248,255,116,50,190,255,255,255,255,139,85,12,139,69,16,137,193,41,209,139,85,244,139,69,12,141,4,2,137,116,36,12,137,76,36,8,199,68,36,4,0,0,0,0,137,4,36,232, 8,166,2,0,235,39,139,85,12,139,69,16,137,193,41,209,139,85,244,139,69,12,141,4,2,137,76,36,8,199,68,36,4,0,0,0,0,137,4,36,232,30,0,0,0,131,125,244,0,117,14,141,131,72,123,2,0,137,4,36,232,133,222,0,0,139,69,244,131,196,32,91,94,201,195,85,137,229,131, 236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,153,165,2,0,201,195,85,137,229,131,236,24,131,125,12,0,117,7,199,69,12,1,0,0,0,139,69,8,137,4,36,232,105,166,2,0,201,195,85,137,229,83,131,236,36, 232,0,0,0,0,91,141,131,79,232,2,0,139,0,137,4,36,232,135,25,0,0,137,69,244,139,85,244,139,69,8,137,66,8,139,85,244,139,69,12,137,66,12,141,131,171,172,2,0,139,0,57,69,16,117,16,139,69,244,141,147,131,159,2,0,139,18,137,80,20,235,9,139,85,244,139,69,20, 137,66,20,139,85,244,139,69,16,137,66,16,139,69,244,199,64,4,0,0,0,0,139,69,8,139,64,16,137,69,240,131,125,240,0,116,34,235,6,139,69,236,137,69,240,139,69,240,139,64,4,137,69,236,131,125,236,0,117,235,139,85,240,139,69,244,137,66,4,235,9,139,85,8,139, 69,244,137,66,16,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,141,131,253,171,2,0,139,0,137,68,36,12,141,131,253,171,2,0,139,0,137,68,36,8,137,84,36,4,139,69,8,137,4,36,232,27,255,255,255,137,69,244,139,85,244,139, 69,12,137,66,20,139,69,244,131,196,36,91,201,195,85,137,229,86,83,131,236,16,232,0,0,0,0,91,139,69,12,139,48,139,69,8,139,64,16,139,16,139,69,8,139,72,8,137,116,36,12,137,84,36,8,141,131,100,121,2,0,137,68,36,4,137,12,36,232,225,224,0,0,131,196,16,91, 94,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,80,16,141,131,119,171,2,0,139,0,57,194,117,36,139,69,8,139,80,20,139,69,8,139,72,12,141,131,147,40,2,0,137,68,36,8,137,84,36,4,137,12,36,232,223,239,255,255,235,108,139,69,8,139,64,16,133, 192,117,16,139,69,8,139,64,12,137,4,36,232,50,32,0,0,235,82,139,69,8,139,80,16,141,131,187,172,2,0,139,0,57,194,117,41,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,141,131,119,171,2,0,139,0,137,68,36,4,139,69,8,137,4,36,232,176,2,0,0,235,23,141,131,119,171, 2,0,139,0,137,68,36,4,139,69,8,137,4,36,232,15,255,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,80,16,141,131,58,172,2,0,139,0,57,194,117,43,139,69,8,139,80,20,139,69,8,139,72,12,139,69,12,137,68,36,12,141,131,220, 114,2,0,137,68,36,8,137,84,36,4,137,12,36,232,35,239,255,255,235,127,139,69,8,139,64,16,133,192,117,23,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,166,31,0,0,235,94,139,69,8,139,80,16,141,131,6,172,2,0,139,0,57,194,117,53,199,69,240,3,0,0, 0,139,69,12,137,69,244,141,69,240,137,68,36,12,199,68,36,8,1,0,0,0,141,131,58,172,2,0,139,0,137,68,36,4,139,69,8,137,4,36,232,225,1,0,0,235,23,141,131,58,172,2,0,139,0,137,68,36,4,139,69,8,137,4,36,232,64,254,255,255,131,196,36,91,201,195,85,137,229, 83,131,236,52,232,0,0,0,0,91,139,69,8,139,80,16,141,131,247,169,2,0,139,0,57,194,117,50,243,15,90,69,12,139,69,8,139,72,20,139,69,8,139,80,12,242,15,17,68,36,12,141,131,43,114,2,0,137,68,36,8,137,76,36,4,137,20,36,232,80,238,255,255,233,156,0,0,0,139, 69,8,139,80,16,141,131,235,169,2,0,139,0,57,194,117,11,139,85,8,139,69,12,137,66,20,235,127,139,69,8,139,64,16,133,192,117,23,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,148,30,0,0,235,94,139,69,8,139,80,16,141,131,55,171,2,0,139,0,57,194, 117,53,199,69,240,1,0,0,0,139,69,12,137,69,244,141,69,240,137,68,36,12,199,68,36,8,1,0,0,0,141,131,247,169,2,0,139,0,137,68,36,4,139,69,8,137,4,36,232,238,0,0,0,235,23,141,131,247,169,2,0,139,0,137,68,36,4,139,69,8,137,4,36,232,77,253,255,255,131,196, 52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,80,16,141,131,84,170,2,0,139,0,57,194,117,43,139,69,8,139,80,20,139,69,8,139,72,12,139,69,12,137,68,36,12,141,131,4,114,2,0,137,68,36,8,137,84,36,4,137,12,36,232,97,237,255,255,235,127, 139,69,8,139,64,16,133,192,117,23,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,3,30,0,0,235,94,139,69,8,139,80,16,141,131,68,170,2,0,139,0,57,194,117,53,199,69,240,2,0,0,0,139,69,12,137,69,244,141,69,240,137,68,36,12,199,68,36,8,1,0,0,0,141, 131,84,170,2,0,139,0,137,68,36,4,139,69,8,137,4,36,232,31,0,0,0,235,23,141,131,84,170,2,0,139,0,137,68,36,4,139,69,8,137,4,36,232,126,252,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,80,16,141,131,117,169,2,0,139, 0,57,194,116,54,139,69,8,139,80,16,141,131,53,168,2,0,139,0,57,194,116,36,139,69,8,139,80,16,141,131,133,169,2,0,139,0,57,194,116,18,139,69,8,139,80,16,141,131,169,169,2,0,139,0,57,194,117,43,139,69,8,139,80,20,139,69,8,139,72,12,139,69,20,137,68,36, 12,139,69,16,137,68,36,8,137,84,36,4,137,12,36,232,158,228,255,255,233,180,0,0,0,139,69,8,139,64,16,133,192,117,40,139,69,8,139,80,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,15,29,0,0,233,130,0,0,0,131,125,16, 0,117,13,139,69,8,137,4,36,232,247,251,255,255,235,111,131,125,16,1,117,38,139,69,20,139,0,131,248,1,117,28,139,69,20,137,4,36,232,201,95,255,255,217,92,36,4,139,69,8,137,4,36,232,79,253,255,255,235,67,131,125,16,1,117,38,139,69,20,139,0,131,248,2,117, 28,139,69,20,137,4,36,232,241,95,255,255,137,68,36,4,139,69,8,137,4,36,232,22,254,255,255,235,23,141,131,117,169,2,0,139,0,137,68,36,4,139,69,8,137,4,36,232,68,251,255,255,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,64,16,59,69,12,117,40, 139,69,8,139,80,20,139,69,8,139,72,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,137,12,36,232,168,227,255,255,235,65,139,69,8,139,64,16,133,192,117,37,139,69,8,139,80,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36, 4,137,20,36,232,121,227,255,255,235,18,139,69,12,137,68,36,4,139,69,8,137,4,36,232,196,250,255,255,201,195,85,137,229,131,236,40,139,69,8,139,64,8,137,69,244,139,69,244,139,64,16,59,69,8,117,14,139,69,8,139,80,4,139,69,244,137,80,16,235,51,139,69,244, 139,64,16,137,69,240,235,34,139,69,240,139,64,4,59,69,8,117,14,139,69,8,139,80,4,139,69,240,137,80,4,235,15,139,69,240,139,64,4,137,69,240,131,125,240,0,117,216,199,68,36,4,24,0,0,0,139,69,8,137,4,36,232,58,249,255,255,201,195,85,137,229,131,236,24,139, 69,8,139,64,20,137,4,36,232,20,166,254,255,139,69,8,139,72,20,139,85,12,139,2,137,1,139,66,4,137,65,4,139,66,8,137,65,8,139,69,12,139,64,8,133,192,116,13,139,69,12,139,80,8,139,66,8,64,137,66,8,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131, 101,225,2,0,139,0,137,4,36,232,153,18,0,0,137,69,244,139,85,244,139,69,8,137,66,8,139,69,244,199,64,12,0,0,0,0,139,85,244,141,131,61,167,2,0,139,0,137,66,16,139,85,244,139,69,12,137,66,20,139,69,244,199,64,4,0,0,0,0,139,69,8,139,64,16,137,69,240,131, 125,240,0,116,34,235,6,139,69,236,137,69,240,139,69,240,139,64,4,137,69,236,131,125,236,0,117,235,139,85,240,139,69,244,137,66,4,235,9,139,85,8,139,69,244,137,66,16,139,69,244,131,196,36,91,201,195,85,137,229,131,236,8,139,69,8,139,80,20,139,69,12,137, 2,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,191,224,2,0,139,0,137,4,36,232,239,17,0,0,137,69,244,139,85,244,139,69,8,137,66,8,139,69,244,199,64,12,0,0,0,0,139,85,244,141,131,31,165,2,0,139,0,137,66,16,139,85,244,139,69,12,137,66,20,139, 69,244,199,64,4,0,0,0,0,139,69,8,139,64,16,137,69,240,131,125,240,0,116,34,235,6,139,69,236,137,69,240,139,69,240,139,64,4,137,69,236,131,125,236,0,117,235,139,85,240,139,69,244,137,66,4,235,9,139,85,8,139,69,244,137,66,16,139,69,244,131,196,36,91,201, 195,85,137,229,131,236,8,139,69,8,139,80,20,139,69,12,137,2,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,25,224,2,0,139,0,137,4,36,232,69,17,0,0,137,69,244,139,85,244,139,69,8,137,66,8,139,69,244,199,64,12,0,0,0,0,139,85,244,141,131,197,165, 2,0,139,0,137,66,16,139,85,244,139,69,12,137,66,20,139,69,244,199,64,4,0,0,0,0,139,69,8,139,64,16,137,69,240,131,125,240,0,116,34,235,6,139,69,236,137,69,240,139,69,240,139,64,4,137,69,236,131,125,236,0,117,235,139,85,240,139,69,244,137,66,4,235,9,139, 85,8,139,69,244,137,66,16,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,139,69,8,139,64,16,137,69,236,131,125,16,0,15,132,220,0,0,0,139,69,16,72,137,69,240,139,69,20,131,192,8,137,69,244,235,100,139,69,244,139,0,131,248,3,117,23,139,69,244,139, 64,4,139,85,236,137,68,36,4,137,20,36,232,221,24,0,0,235,54,139,69,244,139,0,131,248,1,117,23,139,69,244,139,64,4,139,85,236,137,68,36,4,137,20,36,232,157,24,0,0,235,21,139,69,244,139,64,4,139,85,236,137,68,36,4,137,20,36,232,196,24,0,0,131,69,244,8, 139,69,236,139,64,4,137,69,236,131,125,236,0,116,9,255,77,240,131,125,240,255,117,141,139,69,20,139,0,131,248,3,117,23,139,69,20,139,64,4,139,85,8,137,68,36,4,137,20,36,232,106,24,0,0,235,54,139,69,20,139,0,131,248,1,117,23,139,69,20,139,64,4,139,85, 8,137,68,36,4,137,20,36,232,42,24,0,0,235,21,139,69,20,139,64,4,139,85,8,137,68,36,4,137,20,36,232,81,24,0,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,119,107,2,0,137,4,36,232,131,218,255,255,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199, 68,36,12,24,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,55,207,255,255,137,194,141,131,127,222,2,0,137,16,141,147,96,247,255,255,141,131,127,222,2,0,139,0,137,84,36,4,137,4,36,232,170,214,255,255,141,147,21,248,255,255,141,131,127,222, 2,0,139,0,137,84,36,4,137,4,36,232,161,214,255,255,141,147,228,248,255,255,141,131,127,222,2,0,139,0,137,84,36,4,137,4,36,232,152,214,255,255,141,147,215,249,255,255,141,131,127,222,2,0,139,0,137,84,36,4,137,4,36,232,143,214,255,255,141,147,166,250,255, 255,141,131,127,222,2,0,139,0,137,84,36,4,137,4,36,232,134,214,255,255,141,147,224,251,255,255,141,131,127,222,2,0,139,0,137,84,36,4,137,4,36,232,125,214,255,255,141,131,119,107,2,0,137,4,36,232,159,217,255,255,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0, 0,199,68,36,12,24,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,83,206,255,255,137,194,141,131,131,222,2,0,137,16,141,147,204,252,255,255,141,131,131,222,2,0,139,0,137,84,36,4,137,4,36,232,215,213,255,255,141,147,30,247,255,255,141,131,131, 222,2,0,139,0,137,84,36,4,137,4,36,232,1,214,255,255,141,131,119,107,2,0,137,4,36,232,35,217,255,255,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,24,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,215,205,255,255,137,194,141,131, 135,222,2,0,137,16,141,147,169,253,255,255,141,131,135,222,2,0,139,0,137,84,36,4,137,4,36,232,108,213,255,255,141,147,30,247,255,255,141,131,135,222,2,0,139,0,137,84,36,4,137,4,36,232,133,213,255,255,141,131,119,107,2,0,137,4,36,232,167,216,255,255,199, 68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,24,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,91,205,255,255,137,194,141,131,139,222,2,0,137,16,141,147,83,254,255,255,141,131,139,222,2,0,139,0,137,84,36,4,137,4,36,232,1,213,255,255, 141,147,30,247,255,255,141,131,139,222,2,0,139,0,137,84,36,4,137,4,36,232,9,213,255,255,131,196,36,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,37,220,2,0,139,0,141,80,1,141,129,37,220,2,0,137,16,201,195,85,137,229,131,236,8,232,0,0,0,0,89, 141,129,4,220,2,0,139,0,201,195,85,137,229,131,236,40,199,4,36,16,0,0,0,232,118,241,255,255,137,69,244,139,85,244,139,69,8,137,2,139,69,244,199,64,4,0,0,0,0,139,69,8,139,64,12,137,69,240,131,125,240,0,116,34,235,6,139,69,236,137,69,240,139,69,240,139, 64,4,137,69,236,131,125,236,0,117,235,139,85,240,139,69,244,137,66,4,235,9,139,85,8,139,69,244,137,66,12,139,69,244,199,64,8,0,0,0,0,139,85,244,139,69,12,137,66,12,139,69,244,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,16,141,131,151, 109,2,0,137,68,36,4,137,20,36,232,7,213,0,0,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,54,219,2,0,139,0,141,80,1,141,131,54,219,2,0,137,16,141,131,54,219,2,0,139,0,61,231,3,0,0,126,13,139,69,8,137,4,36,232,156,255,255,255,235, 39,139,69,8,139,64,8,137,69,244,235,22,139,69,244,139,64,4,137,4,36,232,95,20,0,0,139,69,244,139,0,137,69,244,131,125,244,0,117,228,141,131,54,219,2,0,139,0,141,80,255,141,131,54,219,2,0,137,16,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0, 0,91,141,131,186,218,2,0,139,0,141,80,1,141,131,186,218,2,0,137,16,141,131,186,218,2,0,139,0,61,231,3,0,0,126,13,139,69,8,137,4,36,232,32,255,255,255,235,66,139,85,12,139,2,137,69,232,139,66,4,137,69,236,139,66,8,137,69,240,139,69,8,139,64,8,137,69,244, 235,29,139,69,244,139,80,4,141,69,232,137,68,36,4,137,20,36,232,255,19,0,0,139,69,244,139,0,137,69,244,131,125,244,0,117,221,141,131,186,218,2,0,139,0,141,80,255,141,131,186,218,2,0,137,16,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91, 141,131,35,218,2,0,139,0,141,80,1,141,131,35,218,2,0,137,16,141,131,35,218,2,0,139,0,61,231,3,0,0,126,13,139,69,8,137,4,36,232,137,254,255,255,235,46,139,69,8,139,64,8,137,69,244,235,29,139,69,244,139,80,4,139,69,12,137,68,36,4,137,20,36,232,93,19,0, 0,139,69,244,139,0,137,69,244,131,125,244,0,117,221,141,131,35,218,2,0,139,0,141,80,255,141,131,35,218,2,0,137,16,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,160,217,2,0,139,0,141,80,1,141,131,160,217,2,0,137,16,141,131,160, 217,2,0,139,0,61,231,3,0,0,126,13,139,69,8,137,4,36,232,6,254,255,255,235,46,139,69,8,139,64,8,137,69,244,235,29,139,69,244,139,80,4,139,69,12,137,68,36,4,137,20,36,232,24,19,0,0,139,69,244,139,0,137,69,244,131,125,244,0,117,221,141,131,160,217,2,0,139, 0,141,80,255,141,131,160,217,2,0,137,16,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,29,217,2,0,139,0,141,80,1,141,131,29,217,2,0,137,16,141,131,29,217,2,0,139,0,61,231,3,0,0,126,13,139,69,8,137,4,36,232,131,253,255,255,235,60, 139,69,8,139,64,8,137,69,244,235,43,139,69,244,139,80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,166,18,0,0,139,69,244,139,0,137,69,244,131,125,244,0,117,207,141,131,29,217,2,0,139,0,141,80,255,141,131,29,217,2, 0,137,16,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,140,216,2,0,139,0,141,80,1,141,131,140,216,2,0,137,16,141,131,140,216,2,0,139,0,61,231,3,0,0,126,13,139,69,8,137,4,36,232,242,252,255,255,235,60,139,69,8,139,64,8,137,69,244, 235,43,139,69,244,139,80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,114,217,255,255,139,69,244,139,0,137,69,244,131,125,244,0,117,207,141,131,140,216,2,0,139,0,141,80,255,141,131,140,216,2,0,137,16,131,196,36,91, 201,195,85,137,229,131,236,8,139,69,8,139,64,12,201,195,85,137,229,131,236,40,139,69,8,139,0,137,69,244,139,69,244,139,64,12,59,69,8,117,14,139,69,8,139,80,4,139,69,244,137,80,12,235,51,139,69,244,139,64,12,137,69,240,235,34,139,69,240,139,64,4,59,69, 8,117,14,139,69,8,139,80,4,139,69,240,137,80,4,235,15,139,69,240,139,64,4,137,69,240,131,125,240,0,117,216,199,68,36,4,16,0,0,0,139,69,8,137,4,36,232,21,239,255,255,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,139,64,12,137,69,240,235,12, 139,69,240,139,64,4,137,69,240,255,77,12,131,125,240,0,116,6,131,125,12,0,117,232,131,125,240,0,117,12,199,69,212,0,0,0,0,233,201,0,0,0,139,69,16,139,0,15,182,64,74,132,192,116,17,131,125,20,0,117,8,139,69,16,137,69,236,235,59,255,77,20,139,69,16,139, 64,16,137,69,244,235,12,139,69,244,139,64,4,137,69,244,255,77,20,131,125,244,0,116,6,131,125,20,0,117,232,131,125,244,0,117,9,199,69,212,0,0,0,0,235,121,139,69,244,137,69,236,199,4,36,8,0,0,0,232,137,236,255,255,137,69,232,139,69,232,199,0,0,0,0,0,139, 85,232,139,69,236,137,66,4,139,69,240,139,64,8,137,69,228,131,125,228,0,116,29,235,8,139,69,228,139,0,137,69,228,139,69,228,139,0,133,192,117,239,139,85,228,139,69,232,137,2,235,9,139,85,240,139,69,232,137,66,8,139,69,240,139,80,12,141,131,222,155,2, 0,139,0,57,194,117,5,232,114,199,251,255,139,69,232,137,69,212,139,69,212,131,196,68,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,64,12,137,69,240,235,22,131,125,240,0,15,132,252,0,0,0,139,69,240,139,64,4,137,69,240,255,77,12,131,125, 240,0,116,6,131,125,12,0,117,222,139,69,16,139,0,15,182,64,74,132,192,116,17,131,125,20,0,117,8,139,69,16,137,69,236,235,54,255,77,20,139,69,16,139,64,16,137,69,244,235,12,139,69,244,139,64,4,137,69,244,255,77,20,131,125,244,0,116,6,131,125,20,0,117, 232,131,125,244,0,15,132,153,0,0,0,139,69,244,137,69,236,139,69,240,139,64,8,137,69,232,131,125,232,0,15,132,128,0,0,0,139,69,232,139,64,4,59,69,236,117,80,139,69,232,139,16,139,69,240,137,80,8,199,68,36,4,8,0,0,0,139,69,232,137,4,36,232,56,237,255,255, 235,62,139,69,228,139,64,4,59,69,236,117,31,139,69,228,139,16,139,69,232,137,16,199,68,36,4,8,0,0,0,139,69,228,137,4,36,232,14,237,255,255,235,20,139,69,228,137,69,232,139,69,232,139,0,137,69,228,131,125,228,0,117,194,139,69,240,139,80,12,141,131,202, 154,2,0,139,0,57,194,117,5,232,69,198,251,255,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,139,64,12,137,69,240,199,69,244,0,0,0,0,235,12,255,69,244,139,69,240,139,64,4,137,69,240,131,125,240,0,117,238,139,69,244,201,195,85,137,229,131,236,24, 139,69,8,139,64,16,137,69,240,199,69,244,0,0,0,0,235,12,255,69,244,139,69,240,139,64,4,137,69,240,131,125,240,0,117,238,139,69,8,139,0,15,182,64,74,132,192,116,3,255,69,244,139,69,244,201,195,85,137,229,131,236,40,139,69,8,139,64,12,137,69,244,235,9, 139,69,244,139,64,4,137,69,244,255,77,16,131,125,16,255,116,6,131,125,244,0,117,232,139,85,12,139,69,244,137,2,131,125,244,0,116,11,139,69,244,139,64,8,137,69,228,235,7,199,69,228,0,0,0,0,139,69,228,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69, 8,139,64,4,137,69,244,139,69,244,139,16,141,129,143,212,2,0,139,0,57,194,116,51,139,69,244,139,16,141,129,147,212,2,0,139,0,57,194,116,34,139,69,244,139,16,141,129,151,212,2,0,139,0,57,194,116,17,139,69,244,139,16,141,129,155,212,2,0,139,0,57,194,117, 93,139,69,244,137,69,236,139,69,236,139,64,8,137,69,228,139,69,228,139,0,15,182,64,74,15,190,192,137,69,240,139,69,228,139,64,16,137,69,232,235,12,255,69,240,139,69,232,139,64,4,137,69,232,131,125,232,0,116,8,139,69,232,59,69,236,117,230,139,85,20,139, 69,240,137,2,139,85,12,139,69,228,137,2,139,85,16,139,69,236,137,2,235,26,139,69,20,199,0,0,0,0,0,139,69,16,199,0,0,0,0,0,139,85,244,139,69,12,137,16,139,69,8,139,0,201,195,85,137,229,131,236,24,139,69,8,139,0,15,182,64,73,132,192,116,8,139,69,8,137, 69,244,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,131,236,24,139,69,8,139,64,16,59,69,12,116,72,139,69,8,139,64,16,137,69,244,235,55,139,69,244,139,64,4,59,69,12,117,35,139,69,12,139,80,4,139,69,244,137,80,4,139,69,8,139,80,16,139,69,12,137, 80,4,139,85,8,139,69,12,137,66,16,235,15,139,69,244,139,64,4,137,69,244,131,125,244,0,117,195,201,195,85,137,229,131,236,24,139,69,8,139,64,12,59,69,12,116,72,139,69,8,139,64,12,137,69,244,235,55,139,69,244,139,64,4,59,69,12,117,35,139,69,12,139,80,4, 139,69,244,137,80,4,139,69,8,139,80,12,139,69,12,137,80,4,139,85,8,139,69,12,137,66,12,235,15,139,69,244,139,64,4,137,69,244,131,125,244,0,117,195,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,139,64,16,137,69,240,199,69,244,0,0,0,0,235,30,139, 69,240,139,80,16,141,129,55,151,2,0,139,0,57,194,117,3,255,69,244,139,69,240,139,64,4,137,69,240,131,125,240,0,117,220,139,69,8,139,0,15,182,64,74,132,192,116,15,139,69,8,139,0,139,64,68,133,192,116,3,255,69,244,139,69,244,201,195,85,137,229,131,236, 40,232,0,0,0,0,89,199,69,244,0,0,0,0,139,69,8,139,0,15,182,64,74,132,192,116,33,139,69,8,139,0,139,64,68,133,192,116,21,255,77,12,131,125,12,255,117,9,199,69,228,0,0,0,0,235,74,255,69,244,139,69,8,139,64,16,137,69,240,235,47,139,69,240,139,80,16,141, 129,212,150,2,0,139,0,57,194,117,17,131,125,12,0,117,8,139,69,244,137,69,228,235,28,255,69,244,139,69,240,139,64,4,137,69,240,255,77,12,131,125,240,0,117,203,199,69,228,255,255,255,255,139,69,228,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8, 139,0,15,182,64,74,132,192,116,58,131,125,12,0,117,49,139,69,8,139,0,15,182,64,74,132,192,116,21,139,69,8,139,0,139,64,68,133,192,116,9,199,69,224,1,0,0,0,235,7,199,69,224,0,0,0,0,139,69,224,137,69,220,235,84,255,77,12,139,69,8,139,64,16,137,69,244,235, 12,139,69,244,139,64,4,137,69,244,255,77,12,131,125,244,0,116,6,131,125,12,0,117,232,131,125,244,0,116,27,139,69,244,139,80,16,141,129,71,150,2,0,139,0,57,194,117,9,199,69,228,1,0,0,0,235,7,199,69,228,0,0,0,0,139,69,228,137,69,220,139,69,220,201,195, 85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,139,64,12,137,69,240,199,69,244,0,0,0,0,235,30,139,69,240,139,80,12,141,129,158,149,2,0,139,0,57,194,117,3,255,69,244,139,69,240,139,64,4,137,69,240,131,125,240,0,117,220,139,69,244,201,195,85,137,229,131, 236,40,232,0,0,0,0,89,139,69,8,139,64,12,137,69,240,199,69,244,0,0,0,0,235,47,139,69,240,139,80,12,141,129,87,149,2,0,139,0,57,194,117,17,131,125,12,0,117,8,139,69,244,137,69,228,235,28,255,69,244,139,69,240,139,64,4,137,69,240,255,77,12,131,125,240, 0,117,203,199,69,228,255,255,255,255,139,69,228,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,139,64,12,137,69,240,199,69,244,0,0,0,0,235,9,139,69,240,139,64,4,137,69,240,131,125,240,0,116,9,255,77,12,131,125,12,255,117,232,131,125,240,0,116, 27,139,69,240,139,80,12,141,129,248,148,2,0,139,0,57,194,117,9,199,69,228,1,0,0,0,235,7,199,69,228,0,0,0,0,139,69,228,201,195,85,137,229,131,236,40,232,0,0,0,0,89,199,69,244,0,0,0,0,139,69,8,139,0,15,182,64,74,132,192,116,72,139,69,8,139,0,139,64,68, 133,192,116,60,255,77,12,131,125,12,255,117,48,139,69,8,139,0,139,64,68,133,192,126,21,139,69,8,139,0,139,64,68,137,194,139,69,8,141,4,2,137,69,228,235,7,199,69,228,0,0,0,0,139,69,228,137,69,224,235,77,255,69,244,139,69,8,139,64,16,137,69,240,235,50, 139,69,240,139,80,16,141,129,149,148,2,0,139,0,57,194,117,20,131,125,12,0,117,11,139,69,240,131,192,20,137,69,224,235,28,255,69,244,139,69,240,139,64,4,137,69,240,255,77,12,131,125,240,0,117,200,199,69,224,0,0,0,0,139,69,224,201,195,85,137,229,83,131, 236,36,232,0,0,0,0,91,199,69,244,0,0,0,0,139,69,8,139,80,16,141,131,221,147,2,0,139,0,57,194,116,14,141,131,195,97,2,0,137,4,36,232,73,202,0,0,139,69,8,139,64,8,139,64,16,137,69,240,199,69,244,0,0,0,0,235,30,139,69,240,139,80,16,141,131,221,147,2,0,139, 0,57,194,117,3,255,69,244,139,69,240,139,64,4,137,69,240,131,125,240,0,116,8,139,69,240,59,69,8,117,212,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,232,0,0,0,0,89,199,69,244,0,0,0,0,139,69,8,139,0,139,64,12,137,69,240,199,69,244,0,0,0,0,235, 30,139,69,240,139,80,12,141,129,96,147,2,0,139,0,57,194,117,3,255,69,244,139,69,240,139,64,4,137,69,240,131,125,240,0,116,8,139,69,240,59,69,8,117,212,139,69,244,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,131,125,8,0,117,14,141,131,3,97,2,0,137, 4,36,232,134,201,0,0,139,69,8,139,64,12,137,4,36,232,39,228,255,255,137,69,244,139,85,244,139,69,8,137,2,139,69,8,15,182,64,73,132,192,116,20,139,69,244,199,64,16,0,0,0,0,139,69,244,199,64,12,0,0,0,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236, 40,139,69,8,139,0,137,69,244,139,69,244,139,64,24,133,192,116,16,139,69,244,139,64,24,137,194,139,69,8,137,4,36,255,210,139,69,244,15,182,64,73,132,192,116,76,235,14,139,69,8,139,64,12,137,4,36,232,21,246,255,255,139,69,8,139,64,12,133,192,117,232,235, 14,139,69,8,139,64,16,137,4,36,232,213,235,255,255,139,69,8,139,64,16,133,192,117,232,139,69,8,139,64,8,133,192,116,14,139,69,8,139,64,8,137,4,36,232,213,82,255,255,139,69,244,139,64,12,133,192,116,21,139,69,244,139,64,12,137,68,36,4,139,69,8,137,4,36, 232,60,229,255,255,201,195,85,137,229,131,236,40,139,69,8,139,0,137,69,244,139,69,244,139,64,60,133,192,116,21,139,69,244,139,80,60,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,131,236,40,139,69,8,139,64,4,137,69,244,235,22,139, 69,244,139,0,137,4,36,232,214,6,0,0,139,69,244,139,64,4,137,69,244,131,125,244,0,117,228,201,195,85,137,229,131,236,40,139,69,8,139,64,4,137,69,244,235,29,139,69,244,139,16,139,69,12,137,68,36,4,137,20,36,232,184,6,0,0,139,69,244,139,64,4,137,69,244, 131,125,244,0,117,221,201,195,85,137,229,131,236,40,139,69,8,139,64,4,137,69,244,235,29,139,69,244,139,16,139,69,12,137,68,36,4,137,20,36,232,192,6,0,0,139,69,244,139,64,4,137,69,244,131,125,244,0,117,221,201,195,85,137,229,131,236,40,139,69,8,139,64, 4,137,69,244,235,29,139,69,244,139,16,139,69,12,137,68,36,4,137,20,36,232,107,6,0,0,139,69,244,139,64,4,137,69,244,131,125,244,0,117,221,201,195,85,137,229,131,236,40,139,69,8,139,64,4,137,69,244,235,43,139,69,244,139,16,139,69,20,137,68,36,12,139,69, 16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,101,6,0,0,139,69,244,139,64,4,137,69,244,131,125,244,0,117,207,201,195,85,137,229,131,236,40,139,69,8,139,64,4,137,69,244,235,43,139,69,244,139,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69, 12,137,68,36,4,137,20,36,232,126,205,255,255,139,69,244,139,64,4,137,69,244,131,125,244,0,117,207,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,168,94,2,0,137,4,36,232,37,200,255,255,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,8, 0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,217,188,255,255,137,194,141,131,57,204,2,0,137,16,141,147,155,254,255,255,141,131,57,204,2,0,139,0,137,84,36,4,137,4,36,232,76,196,255,255,141,147,202,254,255,255,141,131,57,204,2,0,139,0,137, 84,36,4,137,4,36,232,84,196,255,255,141,147,0,255,255,255,141,131,57,204,2,0,139,0,137,84,36,4,137,4,36,232,75,196,255,255,141,147,54,255,255,255,141,131,57,204,2,0,139,0,137,84,36,4,137,4,36,232,15,196,255,255,141,147,108,255,255,255,141,131,57,204, 2,0,139,0,137,84,36,4,137,4,36,232,40,196,255,255,141,147,176,255,255,255,141,131,57,204,2,0,139,0,137,84,36,4,137,4,36,232,31,196,255,255,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,12,139,64,4,133,192,15,132,182,0,0,0,139,69, 12,139,64,4,139,16,141,131,66,203,2,0,139,0,57,194,117,55,139,69,12,139,64,4,137,69,244,199,4,36,8,0,0,0,232,145,224,255,255,137,69,240,139,69,244,139,80,4,139,69,240,137,80,4,139,85,240,139,69,8,137,2,139,85,244,139,69,240,137,66,4,235,116,141,131,66, 203,2,0,139,0,137,4,36,232,9,252,255,255,137,69,236,199,4,36,8,0,0,0,232,80,224,255,255,137,69,232,199,4,36,8,0,0,0,232,65,224,255,255,137,69,228,139,85,236,139,69,232,137,66,4,139,85,232,139,69,8,137,2,139,85,232,139,69,228,137,66,4,139,69,12,139,80, 4,139,69,228,137,16,139,69,228,199,64,4,0,0,0,0,139,85,236,139,69,12,137,80,4,235,9,139,85,12,139,69,8,137,66,4,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,139,64,4,59,69,8,117,15,139,69,12,199,64,4,0,0,0,0,233,10,1,0,0,139, 69,12,139,64,4,133,192,15,132,222,0,0,0,139,69,12,139,64,4,139,16,141,131,98,202,2,0,139,0,57,194,15,133,198,0,0,0,139,69,12,139,64,4,137,69,244,139,69,244,139,64,4,137,69,240,139,69,240,139,0,59,69,8,117,33,139,69,240,139,80,4,139,69,244,137,80,4,199, 68,36,4,8,0,0,0,139,69,240,137,4,36,232,83,225,255,255,235,75,139,69,244,139,64,4,137,69,240,235,49,139,69,236,139,0,59,69,8,117,33,139,69,236,139,80,4,139,69,240,137,80,4,199,68,36,4,8,0,0,0,139,69,236,137,4,36,232,29,225,255,255,235,21,139,69,236,137, 69,240,139,69,240,139,64,4,137,69,236,131,125,236,0,117,192,139,69,244,139,64,4,139,64,4,133,192,117,79,139,69,244,139,64,4,139,16,139,69,12,137,80,4,139,69,244,139,64,4,199,68,36,4,8,0,0,0,137,4,36,232,213,224,255,255,139,69,244,137,4,36,232,240,250, 255,255,235,30,139,69,12,139,0,137,68,36,8,141,131,218,92,2,0,137,68,36,4,139,69,8,137,4,36,232,224,194,0,0,131,196,36,91,201,195,85,137,229,131,236,8,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,199,69,244,0,0,0,0,139,69,8,139,64,4,133,192,117,12, 199,69,212,0,0,0,0,233,162,0,0,0,139,69,8,139,64,4,139,0,59,69,12,117,14,139,69,8,139,64,4,137,69,212,233,135,0,0,0,139,69,8,139,64,4,139,16,141,131,35,201,2,0,139,0,57,194,117,109,139,69,8,139,64,4,137,69,240,199,69,228,0,0,0,0,139,69,240,139,64,4,137, 69,236,235,76,139,69,236,139,0,139,0,59,69,12,117,55,131,125,244,0,116,41,131,125,228,0,117,35,232,103,255,255,255,139,69,8,139,0,137,68,36,4,141,131,175,91,2,0,137,4,36,232,69,190,0,0,199,69,228,1,0,0,0,139,69,236,139,0,137,69,244,139,69,236,139,64, 4,137,69,236,131,125,236,0,117,174,139,69,244,137,69,212,139,69,212,131,196,68,91,201,195,85,137,229,131,236,40,232,0,0,0,0,89,141,129,75,200,2,0,139,0,137,69,244,141,129,75,200,2,0,139,0,137,69,244,235,29,139,69,244,139,64,4,59,69,8,117,9,199,69,228, 1,0,0,0,235,33,139,69,244,139,64,8,137,69,244,131,125,244,0,117,221,141,145,87,200,2,0,139,69,8,137,2,199,69,228,0,0,0,0,139,69,228,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,4,36,12,0,0,0,232,106,221,255,255,137,69,244,141,131,204,140,2,0,139, 0,139,80,4,139,69,244,137,16,141,131,236,199,2,0,139,16,139,69,244,137,80,8,141,131,248,199,2,0,139,16,139,69,244,137,80,4,141,131,248,199,2,0,199,0,0,0,0,0,141,147,236,199,2,0,139,69,244,137,2,141,131,204,140,2,0,139,0,139,85,8,137,80,4,131,196,36,91, 201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,121,199,2,0,139,0,133,192,116,16,141,131,89,140,2,0,139,0,139,64,4,59,69,8,116,16,141,131,39,90,2,0,137,4,36,232,42,194,0,0,235,71,141,131,121,199,2,0,139,0,137,69,244,139,69,244,139,16,141,131, 89,140,2,0,139,0,137,80,4,139,69,244,139,80,8,141,131,121,199,2,0,137,16,199,68,36,4,12,0,0,0,139,69,244,137,4,36,232,129,222,255,255,141,147,129,199,2,0,139,69,8,137,2,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,251,198,2,0, 139,0,133,192,116,46,141,131,111,21,2,0,137,4,36,232,215,194,255,255,137,194,141,131,251,198,2,0,139,8,141,131,95,8,2,0,137,68,36,8,137,84,36,4,137,12,36,232,165,207,255,255,141,131,251,198,2,0,199,0,0,0,0,0,131,196,20,91,201,195,85,137,229,131,236,24, 139,69,8,139,0,139,80,28,139,69,8,137,4,36,255,210,201,195,85,137,229,131,236,24,139,69,8,139,0,139,80,36,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,131,236,24,139,69,8,139,0,139,80,32,139,69,12,137,68,36,4,139,69,8,137,4,36,255, 210,201,195,85,137,229,131,236,24,139,69,8,139,0,139,80,40,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,0,139,80,44,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,131,185,139,2,0,139,0, 137,68,36,4,139,69,8,137,4,36,255,210,131,196,20,91,201,195,85,137,229,131,236,8,232,215,197,255,255,232,69,231,255,255,232,216,209,255,255,232,205,211,255,255,232,129,25,251,255,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,0,198,2,0,199,0,2,0, 0,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,4,36,20,0,0,0,232,43,219,255,255,137,69,244,139,85,244,141,131,29,127,2,0,242,15,16,0,242,15,17,2,139,85,244,139,69,8,137,66,8,139,85,12,139,69,244,137,80,12,139,69,244,199,64,16,0,0,0,0,139,69, 244,131,196,36,91,201,195,85,137,229,131,236,24,232,0,0,0,0,89,139,69,8,242,15,16,8,141,129,148,124,2,0,242,15,16,0,102,15,46,200,115,2,235,97,141,129,184,139,2,0,139,0,139,0,57,69,8,117,18,139,69,8,139,80,16,141,129,184,139,2,0,139,0,137,16,235,47,141, 129,184,139,2,0,139,0,139,0,137,69,244,235,9,139,69,244,139,64,16,137,69,244,139,69,244,139,64,16,59,69,8,117,236,139,69,8,139,80,16,139,69,244,137,80,16,139,85,8,141,129,204,126,2,0,242,15,16,0,242,15,17,2,201,195,85,137,229,83,131,236,52,232,0,0,0, 0,91,139,69,12,137,69,224,139,69,16,137,69,228,141,131,51,139,2,0,139,0,242,15,16,0,102,15,46,69,224,119,2,235,17,141,131,51,139,2,0,139,0,242,15,16,0,242,15,17,69,224,139,69,8,137,4,36,232,46,255,255,255,139,69,8,242,15,16,69,224,242,15,17,0,141,131, 47,139,2,0,139,0,139,0,133,192,116,121,141,131,47,139,2,0,139,0,139,0,242,15,16,8,242,15,16,69,224,102,15,46,193,114,96,141,131,47,139,2,0,139,0,139,0,137,69,244,141,131,47,139,2,0,139,0,139,0,139,64,16,137,69,240,235,57,131,125,240,0,116,16,139,69,240, 242,15,16,0,102,15,46,69,224,119,2,235,20,139,85,244,139,69,8,137,66,16,139,85,8,139,69,240,137,66,16,235,52,139,69,240,137,69,244,139,69,244,139,64,16,137,69,240,131,125,244,0,117,193,235,29,141,131,47,139,2,0,139,0,139,16,139,69,8,137,80,16,141,131, 47,139,2,0,139,0,139,85,8,137,16,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,12,137,69,240,139,69,16,137,69,244,141,131,147,152,2,0,242,15,16,0,102,15,40,200,242,15,89,77,240,141,131,51,138,2,0,139,0,242,15,16,0,242,15,88,193, 242,15,17,68,36,4,139,69,8,137,4,36,232,179,254,255,255,131,196,36,91,201,195,85,137,229,131,236,24,232,0,0,0,0,89,141,129,225,137,2,0,139,0,242,15,16,0,242,15,17,69,240,221,69,240,201,195,85,137,229,131,236,24,232,0,0,0,0,89,141,129,191,137,2,0,139, 0,242,15,16,0,242,15,17,69,240,221,69,240,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,137,69,240,139,69,12,137,69,244,141,129,157,137,2,0,139,0,242,15,16,0,102,15,40,200,242,15,92,77,240,141,129,253,151,2,0,242,15,16,0,102,15,40,209,242,15, 94,208,102,15,40,194,242,15,17,69,224,221,69,224,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,8,137,69,240,139,69,12,137,69,244,141,129,176,151,2,0,242,15,16,0,102,15,40,200,242,15,89,77,240,141,129,80,137,2,0,139,0,242,15,16,0,242,15,88,193,242, 15,17,69,224,221,69,224,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,62,253,255,255,199,68,36,4,20,0,0,0,139,69,8,137,4,36,232,3,218,255,255,201,195,85,137,229,86,83,131,236,16,232,0,0,0,0,91,199,69,244,0,0,0,0,235,49,199,69,240,0,0,0,0,235,31, 139,85,244,139,77,240,141,179,195,194,2,0,137,208,193,224,3,1,208,1,200,199,4,134,0,0,0,0,255,69,240,131,125,240,8,118,219,255,69,244,131,125,244,9,118,201,232,160,69,0,0,141,131,43,196,2,0,221,24,141,131,59,196,2,0,199,0,0,0,0,0,141,131,59,196,2,0,139, 16,141,131,55,196,2,0,137,16,141,131,55,196,2,0,139,16,141,131,51,196,2,0,137,16,131,196,16,91,94,201,195,85,137,229,87,86,83,131,236,108,232,0,0,0,0,91,199,69,228,0,0,0,0,233,104,1,0,0,199,69,220,0,0,0,0,199,69,224,0,0,0,0,235,38,139,85,228,139,77,224, 141,179,52,194,2,0,137,208,193,224,3,1,208,1,200,139,4,134,133,192,116,7,199,69,220,1,0,0,0,255,69,224,131,125,224,8,118,212,131,125,220,0,15,132,31,1,0,0,139,85,228,141,139,52,194,2,0,137,208,193,224,3,1,208,193,224,2,1,200,131,192,28,139,48,139,85, 228,141,139,52,194,2,0,137,208,193,224,3,1,208,193,224,2,1,200,131,192,24,139,56,139,85,228,141,139,52,194,2,0,137,208,193,224,3,1,208,193,224,2,1,200,131,192,20,139,0,137,69,196,139,85,228,141,139,52,194,2,0,137,208,193,224,3,1,208,193,224,2,1,200,131, 192,16,139,0,137,69,200,139,85,228,141,139,52,194,2,0,137,208,193,224,3,1,208,193,224,2,1,200,131,192,12,139,0,137,69,204,139,85,228,141,139,52,194,2,0,137,208,193,224,3,1,208,193,224,2,1,200,131,192,8,139,0,137,69,208,139,85,228,141,139,52,194,2,0,137, 208,193,224,3,1,208,193,224,2,1,200,131,192,4,139,0,137,69,212,139,85,228,141,139,52,194,2,0,137,208,193,224,3,1,208,193,224,2,139,4,8,137,116,36,36,137,124,36,32,139,85,196,137,84,36,28,139,85,200,137,84,36,24,139,85,204,137,84,36,20,139,85,208,137, 84,36,16,139,85,212,137,84,36,12,137,68,36,8,139,69,228,137,68,36,4,141,131,176,84,2,0,137,4,36,232,68,182,0,0,255,69,228,131,125,228,9,15,134,142,254,255,255,141,131,172,195,2,0,139,16,141,131,168,195,2,0,139,8,141,131,164,195,2,0,139,0,137,84,36,12, 137,76,36,8,137,68,36,4,141,131,212,84,2,0,137,4,36,232,5,182,0,0,131,196,108,91,94,95,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,131,233,193,2,0,139,0,137,69,220,232,127,67,0,0,221,93,208,141,131,213,193,2,0,242,15,16,8,242,15,16,69,208, 102,15,40,208,242,15,92,209,102,15,40,202,141,131,157,119,2,0,242,15,16,0,242,15,89,193,242,15,44,192,137,69,216,199,69,224,8,0,0,0,235,67,139,69,224,141,147,13,149,2,0,139,4,130,59,69,216,127,47,139,85,220,139,117,224,141,139,109,192,2,0,137,208,193, 224,3,1,208,1,240,139,4,129,141,120,1,141,139,109,192,2,0,137,208,193,224,3,1,208,1,240,137,60,129,235,9,255,77,224,131,125,224,0,121,183,141,131,213,193,2,0,242,15,16,69,208,242,15,17,0,141,147,233,193,2,0,139,69,8,137,2,139,69,220,131,196,44,91,94, 95,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,141,131,137,191,2,0,139,0,186,20,0,0,0,131,248,20,15,79,194,137,69,240,141,131,133,191,2,0,139,0,72,137,69,236,141,131,153,82,2,0,137,4,36,232,246,180,0,0,141,131,178,82,2,0,137,4,36,232,232,180,0, 0,199,69,232,0,0,0,0,233,161,0,0,0,131,125,236,0,121,4,131,69,236,20,139,69,236,141,147,37,193,2,0,139,68,194,4,137,69,228,131,125,228,0,120,6,131,125,228,4,126,7,199,69,228,0,0,0,0,139,85,228,141,131,9,139,2,0,139,52,144,141,131,21,193,2,0,139,8,139, 85,236,141,131,37,193,2,0,139,4,208,137,202,41,194,137,208,242,15,42,200,141,131,45,148,2,0,139,0,242,15,42,192,242,15,89,200,141,131,205,133,2,0,139,0,243,15,16,0,243,15,90,192,102,15,40,209,242,15,94,208,102,15,40,194,137,116,36,12,242,15,17,68,36, 4,141,131,201,82,2,0,137,4,36,232,65,180,0,0,255,77,236,255,69,232,139,69,232,59,69,240,15,140,83,255,255,255,131,196,48,91,94,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,122,190,2,0,139,8,141,131,10,192,2,0,139,16,141,131,26,192,2,0,137, 20,200,141,131,122,190,2,0,139,8,141,147,26,192,2,0,139,69,8,137,68,202,4,141,131,126,190,2,0,139,0,141,80,1,141,131,126,190,2,0,137,16,141,131,122,190,2,0,139,0,141,80,1,141,131,122,190,2,0,137,16,141,131,122,190,2,0,139,0,131,248,20,117,12,141,131, 122,190,2,0,199,0,0,0,0,0,131,125,8,0,116,58,141,131,186,192,2,0,139,0,133,192,117,46,141,131,10,192,2,0,139,16,141,131,190,192,2,0,139,0,57,194,124,26,141,131,199,81,2,0,137,4,36,232,209,79,0,0,141,131,186,192,2,0,199,0,1,0,0,0,141,131,194,132,2,0,139, 0,243,15,16,0,243,15,90,200,141,131,34,147,2,0,139,0,242,15,42,192,102,15,40,209,242,15,94,208,102,15,40,194,242,15,44,208,141,131,10,192,2,0,139,0,1,194,141,131,190,192,2,0,137,16,131,196,20,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,141,131, 12,191,2,0,139,16,141,131,136,189,2,0,139,0,137,209,41,193,137,200,133,192,15,136,205,1,0,0,141,131,188,191,2,0,139,0,133,192,116,52,141,131,12,191,2,0,139,16,141,131,192,191,2,0,139,0,137,209,41,193,137,200,133,192,126,26,141,131,216,80,2,0,137,4,36, 232,34,79,0,0,141,131,188,191,2,0,199,0,0,0,0,0,141,131,196,191,2,0,139,0,133,192,15,132,155,0,0,0,141,69,224,137,68,36,4,141,69,228,137,4,36,232,113,25,0,0,139,69,228,137,4,36,232,9,195,0,0,217,93,208,243,15,90,77,208,141,131,236,116,2,0,242,15,16,0, 242,15,88,193,242,15,44,192,137,69,236,139,69,224,137,4,36,232,225,194,0,0,217,93,212,243,15,90,77,212,141,131,236,116,2,0,242,15,16,0,242,15,88,193,242,15,44,192,137,69,232,243,15,16,69,228,243,15,90,192,141,131,100,120,2,0,102,15,46,0,15,151,192,15, 182,192,137,69,244,243,15,16,77,224,141,131,128,116,2,0,243,15,16,0,15,46,200,15,147,192,15,182,192,137,69,240,235,26,199,69,232,0,0,0,0,139,69,232,137,69,236,199,69,240,0,0,0,0,139,69,240,137,69,244,141,131,200,191,2,0,139,0,57,69,244,117,39,141,131, 204,191,2,0,139,0,57,69,240,117,26,141,131,208,191,2,0,139,0,57,69,236,117,13,141,131,212,191,2,0,139,0,57,69,232,116,86,139,69,240,137,68,36,16,139,69,244,137,68,36,12,139,69,232,137,68,36,8,139,69,236,137,68,36,4,141,131,231,80,2,0,137,4,36,232,243, 77,0,0,141,147,200,191,2,0,139,69,244,137,2,141,147,204,191,2,0,139,69,240,137,2,141,147,208,191,2,0,139,69,236,137,2,141,147,212,191,2,0,139,69,232,137,2,141,131,196,131,2,0,139,0,243,15,16,0,243,15,90,200,141,131,36,146,2,0,139,0,242,15,42,192,102, 15,40,209,242,15,94,208,102,15,40,194,242,15,44,208,141,131,12,191,2,0,139,0,1,194,141,131,136,189,2,0,137,16,131,196,84,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,126,114,2,0,243,15,16,0,15,46,69,12,122,2,116,2,235,20,199,68,36,4,0,0, 0,0,199,4,36,0,0,0,0,232,203,23,0,0,141,131,126,114,2,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,15,182,208,141,131,198,189,2,0,137,16,141,131,214,189,2,0,199,0,255,255,255,255,141,131,214,189,2,0,139,16,141,131,210,189,2,0,137,16,141,131, 210,189,2,0,139,16,141,131,206,189,2,0,137,16,141,131,206,189,2,0,139,16,141,131,202,189,2,0,137,16,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,147,222,143,2,0,139,69,8,137,2,131,125,8,0,117,26,232,18,62,0,0,141,131,70,189,2,0,221, 24,232,22,247,255,255,141,131,78,189,2,0,221,24,131,125,8,2,117,25,141,131,222,143,2,0,139,0,131,248,2,116,12,141,131,254,186,2,0,199,0,2,0,0,0,131,125,8,2,116,27,141,131,222,143,2,0,139,0,131,248,2,117,14,141,131,110,78,2,0,137,4,36,232,28,176,0,0,141, 131,142,143,2,0,139,0,242,15,42,200,141,131,214,117,2,0,242,15,16,0,242,15,89,200,141,131,46,129,2,0,139,0,243,15,16,0,243,15,90,192,102,15,40,209,242,15,94,208,102,15,40,194,141,131,30,129,2,0,139,0,242,15,17,0,131,196,20,91,201,195,85,137,229,83,131, 236,52,232,0,0,0,0,91,139,69,8,137,69,224,139,69,12,137,69,228,199,69,244,136,19,0,0,235,105,141,131,98,128,2,0,139,0,139,0,137,69,240,139,69,240,242,15,16,0,141,131,102,128,2,0,139,0,242,15,17,0,141,131,98,128,2,0,139,0,139,0,137,4,36,232,87,244,255, 255,232,133,221,255,255,139,69,240,139,80,12,139,69,240,139,64,8,137,4,36,255,210,255,77,244,131,125,244,255,117,12,199,69,244,136,19,0,0,232,220,83,0,0,141,131,62,186,2,0,139,0,133,192,117,84,141,131,98,128,2,0,139,0,139,0,133,192,116,29,141,131,98, 128,2,0,139,0,139,0,242,15,16,8,242,15,16,69,224,102,15,46,193,15,135,108,255,255,255,141,131,102,128,2,0,139,0,242,15,16,69,224,242,15,17,0,232,53,205,250,255,141,131,182,187,2,0,139,0,141,80,1,141,131,182,187,2,0,137,16,131,196,52,91,201,195,85,137, 229,83,131,236,68,232,0,0,0,0,91,199,69,244,0,0,0,0,141,131,233,141,2,0,139,0,242,15,42,200,141,131,49,116,2,0,242,15,16,0,242,15,89,200,141,131,137,127,2,0,139,0,243,15,16,0,243,15,90,192,102,15,40,209,242,15,94,208,102,15,40,194,141,131,121,127,2,0, 139,0,242,15,17,0,232,121,5,0,0,232,61,246,255,255,141,131,113,127,2,0,139,0,139,0,131,248,99,127,33,141,131,117,127,2,0,139,0,139,0,141,80,3,133,192,15,72,194,193,248,2,137,194,141,131,113,127,2,0,139,0,137,16,141,131,113,127,2,0,139,0,139,0,131,248, 99,127,16,141,131,113,127,2,0,139,0,199,0,100,0,0,0,235,31,141,131,113,127,2,0,139,0,139,0,61,136,19,0,0,126,14,141,131,113,127,2,0,139,0,199,0,136,19,0,0,232,149,213,1,0,233,123,2,0,0,199,69,240,0,0,0,0,199,4,36,0,0,0,0,232,7,248,255,255,141,131,57, 142,2,0,139,0,133,192,15,132,193,0,0,0,232,245,4,0,0,232,228,18,0,0,137,69,236,232,199,4,0,0,131,125,236,0,116,12,199,69,244,0,0,0,0,233,4,1,0,0,255,69,244,139,69,244,131,224,31,133,192,15,133,243,0,0,0,141,131,57,142,2,0,139,0,131,248,1,116,19,141,131, 249,76,2,0,137,4,36,232,190,178,0,0,233,24,2,0,0,131,125,244,32,117,18,232,53,59,0,0,141,131,81,185,2,0,221,24,233,187,0,0,0,232,35,59,0,0,221,93,200,141,131,81,185,2,0,242,15,16,0,242,15,16,77,200,242,15,92,200,141,131,97,112,2,0,242,15,16,0,102,15, 46,200,119,5,233,139,0,0,0,141,131,13,77,2,0,137,4,36,232,73,173,0,0,232,228,15,0,0,199,4,36,0,0,0,0,232,164,252,255,255,233,47,255,255,255,232,207,58,0,0,221,93,208,141,131,161,187,2,0,242,15,16,0,242,15,16,77,208,242,15,92,200,141,131,145,112,2,0,242, 15,16,0,102,15,40,209,242,15,89,208,242,15,17,85,216,141,131,169,187,2,0,242,15,16,0,242,15,17,4,36,232,227,243,255,255,221,93,224,242,15,16,69,216,102,15,46,69,224,119,2,235,9,199,69,236,1,0,0,0,235,7,199,69,236,0,0,0,0,141,131,117,127,2,0,139,0,139, 0,242,15,42,200,141,131,57,116,2,0,242,15,16,0,242,15,89,193,242,15,17,68,36,8,141,131,89,112,2,0,242,15,16,0,242,15,17,4,36,232,31,212,1,0,199,4,36,1,0,0,0,232,141,246,255,255,131,125,236,0,116,38,141,131,129,127,2,0,139,0,242,15,16,8,141,131,121,127, 2,0,139,0,242,15,16,0,242,15,88,193,242,15,17,4,36,232,138,252,255,255,131,125,236,1,117,7,199,69,240,1,0,0,0,199,4,36,2,0,0,0,232,72,246,255,255,232,193,211,1,0,232,194,80,0,0,133,192,116,32,131,125,240,0,117,19,141,131,213,186,2,0,139,0,141,80,1,141, 131,213,186,2,0,137,16,199,69,240,1,0,0,0,199,4,36,3,0,0,0,232,14,246,255,255,131,125,240,0,117,105,232,214,248,255,255,232,55,19,0,0,232,252,2,0,0,141,131,133,127,2,0,139,0,139,0,133,192,116,16,141,131,133,127,2,0,139,0,139,0,255,208,133,192,117,24, 131,125,236,2,116,18,141,131,113,127,2,0,139,0,139,0,137,4,36,232,64,60,0,0,232,160,2,0,0,199,4,36,5,0,0,0,232,178,245,255,255,141,131,217,186,2,0,139,0,141,80,1,141,131,217,186,2,0,137,16,141,131,89,185,2,0,139,0,133,192,15,132,117,253,255,255,232,141, 2,0,0,131,196,68,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,232,84,2,0,0,141,131,7,124,2,0,139,0,139,0,242,15,42,200,141,131,203,112,2,0,242,15,16,0,242,15,89,193,242,15,17,68,36,8,141,131,235,108,2,0,242,15,16,0,242,15,17,4,36,232,194,210,1, 0,199,4,36,1,0,0,0,232,48,245,255,255,141,131,19,124,2,0,139,0,242,15,16,8,141,131,11,124,2,0,139,0,242,15,16,0,242,15,88,193,242,15,17,4,36,232,51,251,255,255,199,4,36,2,0,0,0,232,254,244,255,255,232,119,210,1,0,199,4,36,3,0,0,0,232,237,244,255,255, 232,108,79,0,0,199,4,36,5,0,0,0,232,220,244,255,255,232,170,247,255,255,199,4,36,0,0,0,0,232,203,244,255,255,232,201,1,0,0,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,232,36,210,1,0,233,131,0,0,0,141,131,79,123,2,0,139,0,242,15,16,0, 242,15,17,69,240,199,4,36,1,0,0,0,232,229,115,2,0,141,131,79,123,2,0,139,0,242,15,16,0,102,15,46,69,240,122,2,116,2,235,53,232,82,1,0,0,232,239,78,0,0,141,131,79,123,2,0,139,0,242,15,16,8,141,131,71,123,2,0,139,0,242,15,16,0,242,15,88,193,242,15,17,4, 36,232,110,250,255,255,232,67,1,0,0,141,131,83,123,2,0,139,0,139,0,133,192,116,12,141,131,83,123,2,0,139,0,139,0,255,208,141,131,39,181,2,0,139,0,133,192,15,132,109,255,255,255,131,196,36,91,201,195,85,137,229,83,131,236,4,232,0,0,0,0,91,235,60,141,131, 87,137,2,0,139,0,131,248,2,117,7,232,47,255,255,255,235,5,232,246,250,255,255,141,131,119,180,2,0,139,0,131,248,2,117,22,141,131,119,180,2,0,199,0,0,0,0,0,232,103,12,0,0,232,34,13,0,0,141,131,119,180,2,0,139,0,131,248,1,117,183,184,0,0,0,0,131,196,4, 91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,164,136,2,0,139,0,242,15,42,200,141,131,236,110,2,0,242,15,16,0,242,15,89,200,141,131,68,122,2,0,139,0,243,15,16,0,243,15,90,192,102,15,40,209,242,15,94,208,102,15,40,194,141,131,52,122,2,0,139, 0,242,15,17,0,235,38,141,131,60,122,2,0,139,0,242,15,16,8,141,131,52,122,2,0,139,0,242,15,16,0,242,15,88,193,242,15,17,4,36,232,95,249,255,255,141,131,20,180,2,0,139,0,131,248,1,117,205,184,0,0,0,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0, 0,0,0,91,141,131,109,136,2,0,137,4,36,232,246,113,2,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,76,136,2,0,137,4,36,232,225,113,2,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,43,136,2,0,137,4,36, 232,186,113,2,0,131,196,20,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,35,179,2,0,199,0,1,0,0,0,201,195,85,137,229,131,236,24,232,0,0,0,0,89,141,129,113,181,2,0,139,0,133,192,116,57,141,129,41,136,2,0,139,0,133,192,126,12,141,129,133,181,2, 0,139,0,133,192,127,24,141,129,45,136,2,0,139,0,133,192,126,21,141,129,165,181,2,0,139,0,133,192,126,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,203,135,2,0,139,16,139,69,8,137,16,199, 69,244,0,0,0,0,235,53,139,69,244,193,224,2,137,193,3,77,12,139,85,244,141,131,23,181,2,0,139,4,144,137,1,139,69,244,193,224,2,137,193,3,77,16,139,85,244,141,131,39,181,2,0,139,4,144,137,1,255,69,244,131,125,244,3,126,197,141,131,207,135,2,0,139,16,139, 69,20,137,16,199,69,244,0,0,0,0,235,53,139,69,244,193,224,2,137,193,3,77,24,139,85,244,141,131,55,181,2,0,139,4,144,137,1,139,69,244,193,224,2,137,193,3,77,28,139,85,244,141,131,71,181,2,0,139,4,144,137,1,255,69,244,131,125,244,3,126,197,141,131,87,181, 2,0,139,16,139,69,32,137,16,141,131,91,181,2,0,139,16,139,69,36,137,16,141,131,95,181,2,0,139,16,139,69,40,137,16,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,147,239,134,2,0,139,69,8,137,2,199,69,244,0,0,0,0,235,49,139,77,244,139, 69,244,193,224,2,3,69,12,139,16,141,131,59,180,2,0,137,20,136,139,77,244,139,69,244,193,224,2,3,69,16,139,16,141,131,75,180,2,0,137,20,136,255,69,244,131,125,244,3,126,201,141,147,243,134,2,0,139,69,20,137,2,199,69,244,0,0,0,0,235,49,139,77,244,139,69, 244,193,224,2,3,69,24,139,16,141,131,91,180,2,0,137,20,136,139,77,244,139,69,244,193,224,2,3,69,28,139,16,141,131,107,180,2,0,137,20,136,255,69,244,131,125,244,3,126,201,141,147,123,180,2,0,139,69,32,137,2,141,147,127,180,2,0,139,69,36,137,2,141,147, 131,180,2,0,139,69,40,137,2,131,196,20,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,94,179,2,0,139,0,133,192,117,12,141,129,94,179,2,0,199,0,1,0,0,0,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,8,0,116,11,139,69,8,193,224,8,137,69, 216,235,7,199,69,216,0,2,0,0,139,69,216,137,69,240,131,125,12,0,116,11,139,69,12,193,224,8,137,69,220,235,7,199,69,220,0,2,0,0,139,85,220,137,85,236,141,131,11,117,2,0,139,0,139,0,133,192,116,66,141,131,23,119,2,0,139,0,139,0,133,192,116,20,141,131,23, 119,2,0,139,0,139,0,137,194,193,226,8,137,85,224,235,7,199,69,224,0,2,0,0,141,131,11,117,2,0,139,0,139,0,139,85,224,137,84,36,4,137,4,36,232,139,199,255,255,141,131,7,117,2,0,139,0,139,0,133,192,116,66,141,131,31,119,2,0,139,0,139,0,133,192,116,20,141, 131,31,119,2,0,139,0,139,0,137,194,193,226,8,137,85,228,235,7,199,69,228,0,2,0,0,141,131,7,117,2,0,139,0,139,0,139,85,228,137,84,36,4,137,4,36,232,59,199,255,255,141,131,23,119,2,0,139,0,139,85,8,137,16,141,131,31,119,2,0,139,0,139,85,12,137,16,243,15, 42,69,16,141,131,15,119,2,0,139,0,243,15,17,0,141,131,251,118,2,0,139,0,139,0,243,15,42,200,141,131,15,119,2,0,139,0,243,15,16,0,243,15,89,193,243,15,90,200,141,131,199,107,2,0,242,15,16,0,102,15,40,209,242,15,94,208,102,15,40,194,242,15,44,208,141,131, 19,119,2,0,139,0,137,16,141,131,19,119,2,0,139,0,139,0,61,191,0,0,0,127,14,141,131,19,119,2,0,139,0,199,0,192,0,0,0,139,69,240,137,4,36,232,186,196,255,255,137,194,141,131,11,117,2,0,139,0,137,16,184,255,255,255,255,131,248,255,116,44,186,255,255,255, 255,139,77,240,141,131,11,117,2,0,139,0,139,0,137,84,36,12,137,76,36,8,199,68,36,4,0,0,0,0,137,4,36,232,247,107,2,0,235,33,139,69,240,141,147,11,117,2,0,139,18,139,18,137,68,36,8,199,68,36,4,0,0,0,0,137,20,36,232,185,0,0,0,139,69,236,137,4,36,232,76, 196,255,255,137,194,141,131,7,117,2,0,139,0,137,16,184,255,255,255,255,131,248,255,116,44,186,255,255,255,255,139,77,236,141,131,7,117,2,0,139,0,139,0,137,84,36,12,137,76,36,8,199,68,36,4,0,0,0,0,137,4,36,232,137,107,2,0,235,33,139,69,236,141,147,7,117, 2,0,139,18,139,18,137,68,36,8,199,68,36,4,0,0,0,0,137,20,36,232,75,0,0,0,141,131,27,119,2,0,139,0,139,0,133,192,116,42,141,131,31,119,2,0,139,0,139,16,141,131,23,119,2,0,139,0,139,0,137,84,36,8,137,68,36,4,141,131,183,68,2,0,137,4,36,232,232,163,0,0, 232,181,158,251,255,137,4,36,232,219,158,251,255,131,196,52,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,243,106,2,0,201,195,85,137,229,83,129,236,52,13,0,0,232,0, 0,0,0,91,139,69,12,137,133,4,243,255,255,139,69,20,137,133,0,243,255,255,139,69,28,137,133,252,242,255,255,139,69,36,137,133,248,242,255,255,141,131,158,114,2,0,139,0,139,16,137,85,244,49,210,199,133,104,243,255,255,2,0,0,0,199,133,84,243,255,255,0,0, 0,0,199,133,80,243,255,255,0,0,0,0,199,133,76,243,255,255,0,0,0,0,199,133,72,243,255,255,0,0,0,0,199,68,36,28,80,0,0,0,199,68,36,24,20,0,0,0,141,133,72,243,255,255,137,68,36,20,141,133,76,243,255,255,137,68,36,16,141,133,80,243,255,255,137,68,36,12,141, 133,116,243,255,255,137,68,36,8,141,133,84,243,255,255,137,68,36,4,141,133,180,249,255,255,137,4,36,232,42,10,0,0,131,125,40,0,127,7,199,69,40,68,172,0,0,131,125,44,0,127,7,199,69,44,50,0,0,0,232,44,252,255,255,131,125,8,255,15,133,142,0,0,0,131,125, 16,255,117,73,139,133,84,243,255,255,133,192,126,45,199,69,16,1,0,0,0,139,133,0,243,255,255,139,149,104,243,255,255,137,16,199,69,8,1,0,0,0,139,133,4,243,255,255,199,0,0,0,0,0,233,115,1,0,0,199,69,16,0,0,0,0,139,69,16,137,69,8,233,97,1,0,0,199,133,112, 243,255,255,0,0,0,0,235,31,139,133,112,243,255,255,193,224,2,137,194,3,149,4,243,255,255,139,133,112,243,255,255,137,2,255,133,112,243,255,255,131,189,112,243,255,255,3,126,216,139,69,16,137,69,8,233,34,1,0,0,131,125,16,255,117,65,139,69,8,137,69,16, 199,133,112,243,255,255,0,0,0,0,235,31,139,133,112,243,255,255,193,224,2,137,194,3,149,0,243,255,255,139,133,104,243,255,255,137,2,255,133,112,243,255,255,139,133,112,243,255,255,59,69,8,124,214,233,219,0,0,0,139,69,16,59,69,8,126,102,139,69,8,137,133, 112,243,255,255,235,72,131,189,112,243,255,255,0,117,14,139,133,4,243,255,255,199,0,0,0,0,0,235,43,139,133,112,243,255,255,193,224,2,137,193,3,141,4,243,255,255,139,149,4,243,255,255,131,234,4,139,133,112,243,255,255,193,224,2,141,4,2,139,0,64,137,1, 255,133,112,243,255,255,139,133,112,243,255,255,59,69,16,124,173,139,69,16,137,69,8,235,109,139,69,16,59,69,8,125,101,139,69,16,137,133,112,243,255,255,235,73,131,189,112,243,255,255,0,117,16,139,149,0,243,255,255,139,133,104,243,255,255,137,2,235,42, 139,133,112,243,255,255,193,224,2,137,193,3,141,0,243,255,255,139,149,0,243,255,255,131,234,4,139,133,112,243,255,255,193,224,2,141,4,2,139,0,137,1,255,133,112,243,255,255,139,133,112,243,255,255,59,69,8,124,172,139,69,16,137,69,8,131,125,24,255,15,133, 142,0,0,0,131,125,32,255,117,73,139,133,80,243,255,255,133,192,126,45,199,69,32,1,0,0,0,139,133,248,242,255,255,139,149,104,243,255,255,137,16,199,69,24,1,0,0,0,139,133,252,242,255,255,199,0,0,0,0,0,233,115,1,0,0,199,69,24,0,0,0,0,139,69,24,137,69,32, 233,97,1,0,0,199,133,112,243,255,255,0,0,0,0,235,31,139,133,112,243,255,255,193,224,2,137,194,3,149,252,242,255,255,139,133,112,243,255,255,137,2,255,133,112,243,255,255,131,189,112,243,255,255,3,126,216,139,69,32,137,69,24,233,34,1,0,0,131,125,32,255, 117,65,139,69,24,137,69,32,199,133,112,243,255,255,0,0,0,0,235,31,139,133,112,243,255,255,193,224,2,137,194,3,149,248,242,255,255,139,133,104,243,255,255,137,2,255,133,112,243,255,255,139,133,112,243,255,255,59,69,24,124,214,233,219,0,0,0,139,69,32,59, 69,24,126,102,139,69,24,137,133,112,243,255,255,235,72,131,189,112,243,255,255,0,117,14,139,133,252,242,255,255,199,0,0,0,0,0,235,43,139,133,112,243,255,255,193,224,2,137,193,3,141,252,242,255,255,139,149,252,242,255,255,131,234,4,139,133,112,243,255, 255,193,224,2,141,4,2,139,0,64,137,1,255,133,112,243,255,255,139,133,112,243,255,255,59,69,32,124,173,139,69,32,137,69,24,235,109,139,69,32,59,69,24,125,101,139,69,32,137,133,112,243,255,255,235,73,131,189,112,243,255,255,0,117,16,139,149,248,242,255, 255,139,133,104,243,255,255,137,2,235,42,139,133,112,243,255,255,193,224,2,137,193,3,141,248,242,255,255,139,149,248,242,255,255,131,234,4,139,133,112,243,255,255,193,224,2,141,4,2,139,0,137,1,255,133,112,243,255,255,139,133,112,243,255,255,59,69,24, 124,172,139,69,32,137,69,24,199,133,100,243,255,255,0,0,0,0,139,133,100,243,255,255,137,133,92,243,255,255,139,133,92,243,255,255,137,133,112,243,255,255,235,116,139,133,112,243,255,255,193,224,2,3,133,0,243,255,255,139,0,133,192,126,89,139,149,92,243, 255,255,139,133,112,243,255,255,193,224,2,3,133,0,243,255,255,139,0,137,132,149,24,243,255,255,139,149,92,243,255,255,139,133,112,243,255,255,193,224,2,3,133,4,243,255,255,139,0,137,132,149,56,243,255,255,139,133,112,243,255,255,193,224,2,3,133,0,243, 255,255,139,0,1,133,100,243,255,255,255,133,92,243,255,255,255,133,112,243,255,255,139,133,112,243,255,255,59,69,8,124,129,199,133,96,243,255,255,0,0,0,0,139,133,96,243,255,255,137,133,88,243,255,255,139,133,88,243,255,255,137,133,112,243,255,255,235, 116,139,133,112,243,255,255,193,224,2,3,133,248,242,255,255,139,0,133,192,126,89,139,149,88,243,255,255,139,133,112,243,255,255,193,224,2,3,133,248,242,255,255,139,0,137,132,149,8,243,255,255,139,149,88,243,255,255,139,133,112,243,255,255,193,224,2,3, 133,252,242,255,255,139,0,137,132,149,40,243,255,255,139,133,112,243,255,255,193,224,2,3,133,248,242,255,255,139,0,1,133,96,243,255,255,255,133,88,243,255,255,255,133,112,243,255,255,139,133,112,243,255,255,59,69,24,124,129,139,69,44,105,208,232,3,0, 0,141,131,46,116,2,0,139,0,137,16,199,4,36,0,0,0,0,232,198,233,255,255,141,147,206,176,2,0,139,133,100,243,255,255,137,2,141,147,210,176,2,0,139,133,96,243,255,255,137,2,139,69,48,137,68,36,32,139,69,44,137,68,36,28,139,69,40,137,68,36,24,141,133,8,243, 255,255,137,68,36,20,141,133,40,243,255,255,137,68,36,16,139,133,88,243,255,255,137,68,36,12,141,133,24,243,255,255,137,68,36,8,141,133,56,243,255,255,137,68,36,4,139,133,92,243,255,255,137,4,36,232,24,246,255,255,141,131,158,114,2,0,139,0,139,85,244, 51,16,116,5,232,193,100,2,0,129,196,52,13,0,0,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,14,110,2,0,139,0,139,0,133,192,15,133,155,0,0,0,232,158,244,255,255,133,192,15,132,142,0,0,0,141,131,230,124,2,0,139,0,131,248,9,117,7,232,84,20, 0,0,235,26,141,131,230,124,2,0,139,0,137,68,36,4,141,131,206,59,2,0,137,4,36,232,6,157,0,0,141,131,10,110,2,0,139,0,199,0,0,0,0,0,141,131,10,110,2,0,139,0,139,16,141,131,2,110,2,0,139,0,137,16,141,131,230,124,2,0,199,0,255,255,255,255,199,4,36,0,0,0, 0,232,56,236,255,255,141,131,50,170,2,0,199,0,0,0,0,0,141,131,130,170,2,0,199,0,0,0,0,0,141,131,238,59,2,0,137,4,36,232,253,56,0,0,131,196,20,91,201,195,85,137,229,83,129,236,164,0,0,0,232,0,0,0,0,91,199,69,224,0,0,0,0,141,69,228,137,68,36,32,141,69, 232,137,68,36,28,141,69,236,137,68,36,24,141,69,160,137,68,36,20,141,69,176,137,68,36,16,141,69,240,137,68,36,12,141,69,192,137,68,36,8,141,69,208,137,68,36,4,141,69,244,137,4,36,232,5,244,255,255,139,85,236,141,131,199,169,2,0,139,8,141,131,195,169, 2,0,139,0,137,84,36,8,137,76,36,4,137,4,36,232,174,245,255,255,139,69,244,133,192,117,24,139,69,240,133,192,117,17,199,4,36,0,0,0,0,232,117,235,255,255,233,245,0,0,0,141,131,31,124,2,0,139,0,131,248,9,117,30,139,69,236,139,85,240,139,77,244,137,68,36, 8,137,84,36,4,137,12,36,232,3,19,0,0,137,69,224,235,26,141,131,31,124,2,0,139,0,133,192,116,14,141,131,62,59,2,0,137,4,36,232,191,155,0,0,131,125,224,0,116,50,141,131,111,169,2,0,199,0,0,0,0,0,199,4,36,0,0,0,0,232,13,235,255,255,141,131,35,124,2,0,199, 0,255,255,255,255,141,131,191,169,2,0,199,0,0,0,0,0,235,73,141,131,111,169,2,0,199,0,1,0,0,0,139,69,228,133,192,116,9,199,69,144,2,0,0,0,235,7,199,69,144,1,0,0,0,139,69,144,137,4,36,232,197,234,255,255,141,131,31,124,2,0,139,16,141,131,35,124,2,0,137, 16,139,85,228,141,131,191,169,2,0,137,16,131,125,224,0,117,13,141,131,31,124,2,0,139,0,137,69,148,235,7,199,69,148,0,0,0,0,139,69,148,137,68,36,4,141,131,90,59,2,0,137,4,36,232,102,55,0,0,129,196,164,0,0,0,91,201,195,85,137,229,83,131,236,68,232,0,0, 0,0,91,141,131,204,167,2,0,139,0,133,192,15,132,48,1,0,0,199,69,244,0,0,0,0,141,131,168,107,2,0,139,0,139,0,193,224,6,137,69,240,141,131,208,167,2,0,139,0,137,69,236,235,97,139,69,244,193,224,2,137,194,141,131,156,105,2,0,139,0,139,0,141,4,2,139,0,137, 69,232,243,15,16,69,232,15,46,69,236,119,2,235,8,139,69,232,137,69,236,235,47,141,131,104,96,2,0,15,40,0,243,15,16,77,232,15,87,193,15,46,69,236,119,2,235,22,141,131,104,96,2,0,15,40,0,243,15,16,77,232,15,87,193,243,15,17,69,236,255,69,244,139,69,244, 59,69,240,124,151,141,147,208,167,2,0,139,69,236,137,2,199,69,244,0,0,0,0,141,131,176,107,2,0,139,0,139,0,193,224,6,137,69,240,141,131,212,167,2,0,139,0,137,69,236,235,97,139,69,244,193,224,2,137,194,141,131,152,105,2,0,139,0,139,0,141,4,2,139,0,137, 69,228,243,15,16,69,228,15,46,69,236,119,2,235,8,139,69,228,137,69,236,235,47,141,131,104,96,2,0,15,40,0,243,15,16,77,228,15,87,193,15,46,69,236,119,2,235,22,141,131,104,96,2,0,15,40,0,243,15,16,77,228,15,87,193,243,15,17,69,236,255,69,244,139,69,244, 59,69,240,124,151,141,147,212,167,2,0,139,69,236,137,2,141,131,136,122,2,0,139,0,131,248,9,117,10,232,230,16,0,0,137,69,212,235,21,141,131,215,57,2,0,137,4,36,232,148,153,0,0,199,69,212,0,0,0,0,139,69,212,131,196,68,91,201,195,85,137,229,131,236,24,232, 0,0,0,0,89,141,129,31,106,2,0,139,0,139,0,137,69,244,243,15,16,69,244,243,15,17,69,244,217,69,244,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,7,106,2,0,139,0,139,0,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,231,105,2,0,139,0,139,0,201, 195,85,137,229,131,236,8,232,0,0,0,0,89,131,125,8,0,116,40,141,129,243,165,2,0,199,0,1,0,0,0,141,129,247,165,2,0,139,16,139,69,8,137,16,141,129,251,165,2,0,139,16,139,69,12,137,16,235,12,141,129,243,165,2,0,199,0,0,0,0,0,141,145,251,165,2,0,141,129,127, 90,2,0,139,0,137,2,141,129,251,165,2,0,139,16,141,129,247,165,2,0,137,16,201,195,85,137,229,131,236,8,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,232,14,242,255,255,139,69,28,199,0,0,0,0,0,141,131,61,120,2,0,139,0,131,248,9,117,58,139,69,36,137, 68,36,24,139,69,32,137,68,36,20,139,69,24,137,68,36,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,170,15,0,0,233,156,0,0,0,139,69,20,199,0,3,0,0,0,139,69,20,139,16,139,69,12,137,16,199,69,244,0,0,0,0,235, 113,139,85,244,66,185,255,255,255,255,139,69,244,15,175,69,36,137,198,3,117,8,137,84,36,16,141,131,152,55,2,0,137,68,36,12,137,76,36,8,199,68,36,4,0,0,0,0,137,52,36,232,88,95,2,0,139,85,244,66,185,255,255,255,255,139,69,244,15,175,69,36,137,198,3,117, 16,137,84,36,16,141,131,169,55,2,0,137,68,36,12,137,76,36,8,199,68,36,4,0,0,0,0,137,52,36,232,33,95,2,0,255,69,244,131,125,244,2,126,137,139,69,24,199,0,0,0,0,0,131,196,48,91,94,201,195,85,137,229,83,129,236,196,12,0,0,232,0,0,0,0,91,141,131,169,102, 2,0,139,0,139,16,137,85,244,49,210,199,133,112,243,255,255,0,0,0,0,199,133,108,243,255,255,0,0,0,0,199,133,100,243,255,255,0,0,0,0,199,133,96,243,255,255,0,0,0,0,199,68,36,28,80,0,0,0,199,68,36,24,20,0,0,0,141,133,96,243,255,255,137,68,36,20,141,133, 100,243,255,255,137,68,36,16,141,133,108,243,255,255,137,68,36,12,141,133,116,243,255,255,137,68,36,8,141,133,112,243,255,255,137,68,36,4,141,133,180,249,255,255,137,4,36,232,99,254,255,255,139,133,112,243,255,255,133,192,117,16,141,131,179,54,2,0,137, 4,36,232,7,151,0,0,235,115,141,131,208,54,2,0,137,4,36,232,247,150,0,0,199,133,104,243,255,255,0,0,0,0,235,75,139,149,104,243,255,255,137,208,193,224,2,1,208,193,224,4,141,149,180,249,255,255,1,194,141,131,53,119,2,0,139,0,131,248,3,15,149,192,15,182, 192,3,133,104,243,255,255,137,84,36,8,137,68,36,4,141,131,229,54,2,0,137,4,36,232,166,150,0,0,255,133,104,243,255,255,139,133,112,243,255,255,57,133,104,243,255,255,124,167,139,133,108,243,255,255,133,192,117,16,141,131,236,54,2,0,137,4,36,232,122,150, 0,0,235,115,141,131,10,55,2,0,137,4,36,232,106,150,0,0,199,133,104,243,255,255,0,0,0,0,235,75,139,149,104,243,255,255,137,208,193,224,2,1,208,193,224,4,141,149,116,243,255,255,1,194,141,131,53,119,2,0,139,0,131,248,3,15,149,192,15,182,192,3,133,104,243, 255,255,137,84,36,8,137,68,36,4,141,131,229,54,2,0,137,4,36,232,25,150,0,0,255,133,104,243,255,255,139,133,108,243,255,255,57,133,104,243,255,255,124,167,141,131,53,119,2,0,139,0,137,68,36,4,141,131,32,55,2,0,137,4,36,232,235,149,0,0,141,131,169,102, 2,0,139,0,139,85,244,51,16,116,5,232,47,93,2,0,129,196,196,12,0,0,91,201,195,85,137,229,86,83,129,236,16,31,0,0,232,0,0,0,0,91,139,69,8,137,133,164,225,255,255,141,131,192,100,2,0,139,0,139,16,137,85,244,49,210,199,133,252,225,255,255,0,0,0,0,199,133, 248,225,255,255,0,0,0,0,199,133,244,225,255,255,0,0,0,0,199,133,240,225,255,255,0,0,0,0,199,68,36,28,80,0,0,0,199,68,36,24,20,0,0,0,141,133,240,225,255,255,137,68,36,20,141,133,244,225,255,255,137,68,36,16,141,133,248,225,255,255,137,68,36,12,141,133, 116,243,255,255,137,68,36,8,141,133,252,225,255,255,137,68,36,4,141,133,180,249,255,255,137,4,36,232,113,252,255,255,141,131,72,53,2,0,137,4,36,232,76,52,0,0,199,133,236,225,255,255,0,0,0,0,235,50,139,149,236,225,255,255,137,208,193,224,2,1,208,193,224, 4,137,194,141,133,180,249,255,255,1,208,137,68,36,4,141,131,120,53,2,0,137,4,36,232,62,49,0,0,255,133,236,225,255,255,139,133,252,225,255,255,57,133,236,225,255,255,124,192,141,131,152,53,2,0,137,4,36,232,242,51,0,0,199,133,236,225,255,255,0,0,0,0,235, 50,139,149,236,225,255,255,137,208,193,224,2,1,208,193,224,4,137,194,141,133,116,243,255,255,1,208,137,68,36,4,141,131,204,53,2,0,137,4,36,232,228,48,0,0,255,133,236,225,255,255,139,133,248,225,255,255,57,133,236,225,255,255,124,192,141,133,0,226,255, 255,137,68,36,32,141,133,4,226,255,255,137,68,36,28,141,133,8,226,255,255,137,68,36,24,141,133,172,225,255,255,137,68,36,20,141,133,188,225,255,255,137,68,36,16,141,133,76,226,255,255,137,68,36,12,141,133,204,225,255,255,137,68,36,8,141,133,220,225,255, 255,137,68,36,4,141,133,80,226,255,255,137,4,36,232,218,235,255,255,139,133,80,226,255,255,131,248,1,127,11,139,133,76,226,255,255,131,248,1,126,11,141,131,32,87,2,0,139,0,137,69,12,139,133,80,226,255,255,133,192,126,24,139,133,220,225,255,255,133,192, 120,14,139,181,220,225,255,255,137,181,92,225,255,255,235,10,199,133,92,225,255,255,0,0,0,0,139,133,92,225,255,255,137,133,72,226,255,255,139,133,80,226,255,255,131,248,1,126,24,139,133,224,225,255,255,133,192,120,14,139,149,224,225,255,255,137,149,96, 225,255,255,235,10,199,133,96,225,255,255,0,0,0,0,139,181,96,225,255,255,137,181,68,226,255,255,139,133,80,226,255,255,131,248,2,126,24,139,133,228,225,255,255,133,192,120,14,139,133,228,225,255,255,137,133,100,225,255,255,235,10,199,133,100,225,255, 255,0,0,0,0,139,149,100,225,255,255,137,149,64,226,255,255,139,133,80,226,255,255,131,248,3,126,24,139,133,232,225,255,255,133,192,120,14,139,181,232,225,255,255,137,181,104,225,255,255,235,10,199,133,104,225,255,255,0,0,0,0,139,133,104,225,255,255,137, 133,60,226,255,255,139,133,80,226,255,255,133,192,126,14,139,149,204,225,255,255,137,149,108,225,255,255,235,10,199,133,108,225,255,255,0,0,0,0,139,181,108,225,255,255,137,181,56,226,255,255,139,133,80,226,255,255,131,248,1,126,14,139,133,208,225,255, 255,137,133,112,225,255,255,235,10,199,133,112,225,255,255,0,0,0,0,139,149,112,225,255,255,137,149,52,226,255,255,139,133,80,226,255,255,131,248,2,126,14,139,181,212,225,255,255,137,181,116,225,255,255,235,10,199,133,116,225,255,255,0,0,0,0,139,133,116, 225,255,255,137,133,48,226,255,255,139,133,80,226,255,255,131,248,3,126,14,139,149,216,225,255,255,137,149,120,225,255,255,235,10,199,133,120,225,255,255,0,0,0,0,139,181,120,225,255,255,137,181,44,226,255,255,139,133,76,226,255,255,133,192,126,24,139, 133,188,225,255,255,133,192,120,14,139,133,188,225,255,255,137,133,124,225,255,255,235,10,199,133,124,225,255,255,0,0,0,0,139,149,124,225,255,255,137,149,40,226,255,255,139,133,76,226,255,255,131,248,1,126,24,139,133,192,225,255,255,133,192,120,14,139, 181,192,225,255,255,137,181,128,225,255,255,235,10,199,133,128,225,255,255,0,0,0,0,139,133,128,225,255,255,137,133,36,226,255,255,139,133,76,226,255,255,131,248,2,126,24,139,133,196,225,255,255,133,192,120,14,139,149,196,225,255,255,137,149,132,225,255, 255,235,10,199,133,132,225,255,255,0,0,0,0,139,181,132,225,255,255,137,181,32,226,255,255,139,133,76,226,255,255,131,248,3,126,24,139,133,200,225,255,255,133,192,120,14,139,133,200,225,255,255,137,133,136,225,255,255,235,10,199,133,136,225,255,255,0, 0,0,0,139,149,136,225,255,255,137,149,28,226,255,255,139,133,76,226,255,255,133,192,126,14,139,181,172,225,255,255,137,181,140,225,255,255,235,10,199,133,140,225,255,255,0,0,0,0,139,133,140,225,255,255,137,133,24,226,255,255,139,133,76,226,255,255,131, 248,1,126,14,139,149,176,225,255,255,137,149,144,225,255,255,235,10,199,133,144,225,255,255,0,0,0,0,139,181,144,225,255,255,137,181,20,226,255,255,139,133,76,226,255,255,131,248,2,126,14,139,133,180,225,255,255,137,133,148,225,255,255,235,10,199,133, 148,225,255,255,0,0,0,0,139,149,148,225,255,255,137,149,16,226,255,255,139,133,76,226,255,255,131,248,3,126,14,139,181,184,225,255,255,137,181,152,225,255,255,235,10,199,133,152,225,255,255,0,0,0,0,139,133,152,225,255,255,137,133,12,226,255,255,141,131, 28,87,2,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,15,182,192,137,133,156,225,255,255,139,133,240,225,255,255,133,192,116,14,139,149,0,226,255,255,137,149,160,225,255,255,235,10,199,133,160,225,255,255,255,255,255,255,139,133,244,225,255,255, 139,149,4,226,255,255,139,141,8,226,255,255,139,181,156,225,255,255,137,116,36,96,139,181,160,225,255,255,137,116,36,92,137,68,36,88,137,84,36,84,137,76,36,80,139,133,12,226,255,255,137,68,36,76,139,133,16,226,255,255,137,68,36,72,139,133,20,226,255, 255,137,68,36,68,139,133,24,226,255,255,137,68,36,64,139,133,28,226,255,255,137,68,36,60,139,133,32,226,255,255,137,68,36,56,139,133,36,226,255,255,137,68,36,52,139,133,40,226,255,255,137,68,36,48,139,133,44,226,255,255,137,68,36,44,139,133,48,226,255, 255,137,68,36,40,139,133,52,226,255,255,137,68,36,36,139,133,56,226,255,255,137,68,36,32,139,133,60,226,255,255,137,68,36,28,139,133,64,226,255,255,137,68,36,24,139,133,68,226,255,255,137,68,36,20,139,133,72,226,255,255,137,68,36,16,141,131,236,53,2, 0,137,68,36,12,199,68,36,8,32,17,0,0,199,68,36,4,0,0,0,0,141,133,84,226,255,255,137,4,36,232,213,86,2,0,199,4,36,0,0,0,0,232,252,18,1,0,141,133,84,226,255,255,137,68,36,8,141,131,240,255,255,255,137,68,36,4,141,131,12,102,2,0,139,0,137,4,36,232,250,15, 1,0,141,131,192,100,2,0,139,0,139,85,244,51,16,116,5,232,151,86,2,0,129,196,16,31,0,0,91,94,201,195,85,137,229,86,83,129,236,240,0,0,0,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,16,0,0,0,232,212,23,255,255,137,69,196,139,69,20, 137,68,36,8,139,69,16,137,68,36,4,199,4,36,17,0,0,0,232,183,23,255,255,137,69,192,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,18,0,0,0,232,154,23,255,255,137,69,188,199,69,224,0,0,0,0,233,152,0,0,0,139,117,224,139,69,20,137,68,36,8,139,69,16, 137,68,36,4,139,69,224,137,4,36,232,111,23,255,255,137,132,181,108,255,255,255,139,117,224,139,85,224,131,194,4,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,73,23,255,255,137,132,181,92,255,255,255,139,117,224,139,85,224,131,194,8,139,69, 20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,35,23,255,255,137,132,181,76,255,255,255,139,117,224,139,85,224,131,194,12,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,253,22,255,255,137,132,181,60,255,255,255,255,69,224,131,125,224,3, 15,142,94,255,255,255,199,69,224,0,0,0,0,199,69,220,0,0,0,0,235,60,139,69,224,139,132,133,92,255,255,255,133,192,116,43,139,85,220,139,69,224,139,132,133,108,255,255,255,137,132,149,108,255,255,255,139,85,220,139,69,224,139,132,133,92,255,255,255,137, 132,149,92,255,255,255,255,69,220,255,69,224,131,125,224,3,126,190,199,69,224,0,0,0,0,199,69,216,0,0,0,0,235,60,139,69,224,139,132,133,60,255,255,255,133,192,116,43,139,85,216,139,69,224,139,132,133,76,255,255,255,137,132,149,76,255,255,255,139,85,216, 139,69,224,139,132,133,60,255,255,255,137,132,149,60,255,255,255,255,69,216,255,69,224,131,125,224,3,126,190,131,125,188,0,121,7,199,69,188,0,0,0,0,141,131,83,156,2,0,139,0,133,192,117,11,131,125,188,0,117,5,232,247,239,255,255,184,0,0,0,0,131,125,188, 0,15,73,69,188,137,68,36,40,139,69,192,137,68,36,36,139,69,196,137,68,36,32,141,133,60,255,255,255,137,68,36,28,139,69,216,137,68,36,24,141,133,76,255,255,255,137,68,36,20,139,69,216,137,68,36,16,141,133,92,255,255,255,137,68,36,12,139,69,220,137,68, 36,8,141,133,108,255,255,255,137,68,36,4,139,69,220,137,4,36,232,69,233,255,255,141,131,83,156,2,0,139,0,133,192,117,13,131,125,188,0,117,7,232,57,240,255,255,235,5,232,61,209,255,255,129,196,240,0,0,0,91,94,201,195,85,137,229,83,131,236,20,232,0,0,0, 0,91,141,131,74,108,2,0,139,0,131,248,9,117,7,232,243,244,255,255,235,14,141,131,153,43,2,0,137,4,36,232,153,140,0,0,232,229,179,1,0,131,196,20,91,201,195,85,137,229,131,236,40,139,69,36,137,68,36,28,139,69,32,137,68,36,24,139,69,28,137,68,36,20,139, 69,24,137,68,36,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,144,243,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,131,125,8,0,127,7,199,69,8,1,0,0,0,139,69,8,137,4,36,232,169,170,250,255,137,193, 184,1,0,0,0,211,224,59,69,8,116,44,139,69,8,137,4,36,232,144,170,250,255,137,193,184,1,0,0,0,211,224,137,69,8,139,69,8,137,68,36,4,141,131,196,44,2,0,137,4,36,232,235,139,0,0,141,147,200,107,2,0,139,69,8,137,2,131,196,20,91,201,195,85,137,229,83,131, 236,20,232,0,0,0,0,91,141,147,92,107,2,0,139,69,8,137,2,141,131,128,92,2,0,139,0,139,0,133,192,116,26,141,131,92,107,2,0,139,0,137,68,36,4,141,131,131,44,2,0,137,4,36,232,154,139,0,0,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,243,15, 16,69,12,243,15,44,192,137,69,244,131,125,244,0,15,132,160,0,0,0,141,131,22,107,2,0,139,0,57,69,244,117,16,232,193,226,255,255,133,192,117,112,232,182,238,255,255,235,105,232,239,237,255,255,141,147,22,107,2,0,139,69,244,137,2,141,131,34,107,2,0,199, 0,1,0,0,0,141,131,34,107,2,0,139,16,141,131,30,107,2,0,137,16,141,131,138,152,2,0,199,0,0,0,0,0,141,131,138,152,2,0,139,16,141,131,106,152,2,0,137,16,141,131,154,152,2,0,199,0,2,0,0,0,141,131,154,152,2,0,139,16,141,131,122,152,2,0,137,16,232,75,238,255, 255,141,131,230,76,2,0,139,0,137,68,36,4,199,4,36,0,0,0,0,232,5,245,255,255,235,14,232,46,226,255,255,133,192,116,5,232,99,237,255,255,131,196,36,91,201,195,85,137,229,131,236,8,131,125,8,0,116,16,232,14,226,255,255,133,192,117,21,232,3,238,255,255,235, 14,232,254,225,255,255,133,192,116,5,232,51,237,255,255,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,199,69,244,0,0,0,0,184,255,255,255,255,131,248,255,116,32,184,255,255,255,255,137,68,36,8,141,131,73,43,2,0,137,68,36,4,139,69,8,137,4,36,232,184, 81,2,0,235,21,141,131,73,43,2,0,137,68,36,4,139,69,8,137,4,36,232,247,0,0,0,139,69,8,137,4,36,232,190,83,2,0,190,255,255,255,255,139,69,8,137,4,36,232,174,83,2,0,137,194,3,85,8,199,68,36,16,9,0,0,0,141,131,76,43,2,0,137,68,36,12,137,116,36,8,199,68,36, 4,0,0,0,0,137,20,36,232,73,81,2,0,255,69,244,184,255,255,255,255,131,248,255,116,32,184,255,255,255,255,137,68,36,8,141,131,88,43,2,0,137,68,36,4,139,69,8,137,4,36,232,42,81,2,0,235,21,141,131,88,43,2,0,137,68,36,4,139,69,8,137,4,36,232,76,0,0,0,131, 125,244,1,127,63,184,255,255,255,255,131,248,255,116,32,184,255,255,255,255,137,68,36,8,141,131,90,43,2,0,137,68,36,4,139,69,8,137,4,36,232,235,80,2,0,235,21,141,131,90,43,2,0,137,68,36,4,139,69,8,137,4,36,232,42,0,0,0,131,196,48,91,94,201,195,85,137, 229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,166,80,2,0,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,137,80,2,0,201,195,85,137,229,83,131,236,36, 232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,239,17,255,255,137,69,244,141,131,240,41,2,0,137,4,36,232,40,143,255,255,59,69,244,117,5,232,65,236,255,255,131,196,36,91,201,195,85,137,229,131,236,8,184,0,0,0,0,201,195, 85,137,229,131,236,8,184,0,0,0,0,201,195,85,137,229,131,236,8,184,0,0,0,0,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,186,255,255,255,255,141,131,137,41,2,0,137,68,36,12,137,84,36,8,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,211,79,2,0,186,255,255, 255,255,141,131,137,41,2,0,137,68,36,12,137,84,36,8,199,68,36,4,0,0,0,0,139,69,16,137,4,36,232,173,79,2,0,139,69,20,199,0,1,0,0,0,139,69,20,139,16,139,69,12,137,16,139,69,24,199,0,0,0,0,0,131,196,20,91,201,195,85,137,229,131,236,8,201,195,85,137,229, 131,236,8,201,195,85,137,229,83,129,236,148,9,0,0,232,0,0,0,0,91,139,69,8,137,133,148,246,255,255,139,69,12,137,133,144,246,255,255,141,131,28,87,2,0,139,0,139,16,137,85,244,49,210,199,133,32,247,255,255,0,0,0,0,139,69,16,137,133,28,247,255,255,141,131, 0,41,2,0,137,4,36,232,43,80,2,0,137,133,24,247,255,255,141,131,164,87,2,0,139,0,139,0,139,0,137,68,36,12,141,131,5,41,2,0,137,68,36,8,199,68,36,4,232,3,0,0,141,133,12,251,255,255,137,4,36,232,3,81,2,0,139,133,24,247,255,255,137,68,36,12,141,131,28,41, 2,0,137,68,36,8,199,68,36,4,232,3,0,0,141,133,36,247,255,255,137,4,36,232,217,80,2,0,141,133,164,246,255,255,137,68,36,4,141,133,36,247,255,255,137,4,36,232,211,80,2,0,133,192,117,44,139,133,148,246,255,255,137,68,36,12,141,131,76,41,2,0,137,68,36,8, 199,68,36,4,0,1,0,0,141,133,244,254,255,255,137,4,36,232,147,80,2,0,235,52,139,133,148,246,255,255,137,68,36,16,141,133,12,251,255,255,137,68,36,12,141,131,124,41,2,0,137,68,36,8,199,68,36,4,0,1,0,0,141,133,244,254,255,255,137,4,36,232,93,80,2,0,141, 131,84,216,1,0,137,68,36,4,141,133,244,254,255,255,137,4,36,232,151,79,2,0,137,133,20,247,255,255,235,84,139,149,32,247,255,255,139,69,16,41,208,137,193,139,133,32,247,255,255,137,194,3,149,144,246,255,255,139,133,20,247,255,255,137,68,36,12,137,76,36, 8,199,68,36,4,1,0,0,0,137,20,36,232,210,78,2,0,137,133,16,247,255,255,131,189,16,247,255,255,0,126,23,139,133,16,247,255,255,1,133,32,247,255,255,139,133,32,247,255,255,59,69,16,124,161,139,133,20,247,255,255,137,4,36,232,22,79,2,0,131,189,32,247,255, 255,0,127,12,199,133,140,246,255,255,0,0,0,0,235,88,139,133,32,247,255,255,59,69,16,124,10,139,69,16,72,137,133,32,247,255,255,139,133,32,247,255,255,3,133,144,246,255,255,198,0,0,139,149,144,246,255,255,74,139,133,32,247,255,255,141,4,2,15,182,0,60, 10,117,19,139,149,144,246,255,255,74,139,133,32,247,255,255,141,4,2,198,0,0,199,133,140,246,255,255,1,0,0,0,139,133,140,246,255,255,141,147,28,87,2,0,139,18,139,77,244,51,10,116,5,232,63,77,2,0,129,196,148,9,0,0,91,201,195,85,137,229,131,236,8,201,195, 85,137,229,131,236,8,201,195,85,137,229,83,129,236,36,4,0,0,232,0,0,0,0,91,139,69,8,137,133,4,252,255,255,139,69,12,137,133,0,252,255,255,141,131,193,84,2,0,139,0,139,16,137,85,244,49,210,139,133,0,252,255,255,137,68,36,16,139,133,4,252,255,255,137,68, 36,12,141,131,69,39,2,0,137,68,36,8,199,68,36,4,232,3,0,0,141,133,12,252,255,255,137,4,36,232,203,78,2,0,141,133,12,252,255,255,137,4,36,232,11,79,2,0,141,131,193,84,2,0,139,0,139,85,244,51,16,116,5,232,159,76,2,0,129,196,36,4,0,0,91,201,195,85,137,229, 131,236,8,201,195,85,137,229,83,129,236,100,5,0,0,232,0,0,0,0,91,141,131,41,84,2,0,139,0,139,16,137,85,244,49,210,199,133,164,251,255,255,0,0,0,0,199,133,160,251,255,255,0,0,0,0,199,133,156,251,255,255,0,0,0,0,232,195,252,255,255,199,68,36,8,232,3,0, 0,141,133,188,251,255,255,137,68,36,4,141,131,226,38,2,0,137,4,36,232,171,252,255,255,133,192,116,52,141,133,152,251,255,255,137,68,36,8,141,131,253,208,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,28,78,2,0,133,192,126,14,139,133,152,251,255, 255,137,4,36,232,194,248,255,255,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,131,238,38,2,0,137,4,36,232,83,252,255,255,133,192,116,71,141,131,129,209,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,224,77,2,0,133,192,116,28,141, 131,250,38,2,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,196,77,2,0,133,192,117,15,199,133,184,251,255,255,0,0,0,0,233,223,0,0,0,199,133,168,251,255,255,0,0,0,0,199,133,184,251,255,255,0,0,0,0,233,166,0,0,0,139,133,168,251,255,255,64,137,68,36, 16,141,131,255,38,2,0,137,68,36,12,199,68,36,8,80,0,0,0,199,68,36,4,0,0,0,0,141,69,164,137,4,36,232,58,75,2,0,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,69,164,137,4,36,232,162,251,255,255,133,192,116,98,139,133,168,251,255,255,193, 224,2,141,149,112,251,255,255,1,194,139,133,168,251,255,255,193,224,2,137,193,141,133,128,251,255,255,1,200,137,84,36,12,137,68,36,8,141,131,12,39,2,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,241,76,2,0,131,248,1,126,25,255,133,184,251,255,255, 255,133,168,251,255,255,131,189,168,251,255,255,3,15,142,77,255,255,255,131,189,184,251,255,255,0,117,10,199,133,184,251,255,255,255,255,255,255,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,131,18,39,2,0,137,4,36,232,9,251,255,255,133, 192,116,71,141,131,129,209,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,150,76,2,0,133,192,116,28,141,131,250,38,2,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,122,76,2,0,133,192,117,15,199,133,180,251,255,255,0,0,0,0,233,223,0,0,0,199, 133,168,251,255,255,0,0,0,0,199,133,180,251,255,255,0,0,0,0,233,166,0,0,0,139,133,168,251,255,255,64,137,68,36,16,141,131,29,39,2,0,137,68,36,12,199,68,36,8,80,0,0,0,199,68,36,4,0,0,0,0,141,69,164,137,4,36,232,240,73,2,0,199,68,36,8,232,3,0,0,141,133, 188,251,255,255,137,68,36,4,141,69,164,137,4,36,232,88,250,255,255,133,192,116,98,139,133,168,251,255,255,193,224,2,141,149,80,251,255,255,1,194,139,133,168,251,255,255,193,224,2,137,193,141,133,96,251,255,255,1,200,137,84,36,12,137,68,36,8,141,131,12, 39,2,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,167,75,2,0,131,248,1,126,25,255,133,180,251,255,255,255,133,168,251,255,255,131,189,168,251,255,255,3,15,142,77,255,255,255,131,189,180,251,255,255,0,117,10,199,133,180,251,255,255,255,255,255,255, 199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,131,181,199,1,0,137,4,36,232,191,249,255,255,133,192,116,34,141,133,164,251,255,255,137,68,36,8,141,131,253,208,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,48,75,2,0,199,68,36,8,232, 3,0,0,141,133,188,251,255,255,137,68,36,4,141,131,44,39,2,0,137,4,36,232,121,249,255,255,133,192,116,34,141,133,160,251,255,255,137,68,36,8,141,131,253,208,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,234,74,2,0,199,68,36,8,232,3,0,0,141,133, 188,251,255,255,137,68,36,4,141,131,53,39,2,0,137,4,36,232,51,249,255,255,133,192,116,34,141,133,156,251,255,255,137,68,36,8,141,131,253,208,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,164,74,2,0,139,133,156,251,255,255,139,149,160,251,255,255, 139,141,164,251,255,255,137,68,36,40,137,84,36,36,137,76,36,32,141,133,80,251,255,255,137,68,36,28,139,133,180,251,255,255,137,68,36,24,141,133,96,251,255,255,137,68,36,20,139,133,180,251,255,255,137,68,36,16,141,133,112,251,255,255,137,68,36,12,139, 133,184,251,255,255,137,68,36,8,141,133,128,251,255,255,137,68,36,4,139,133,184,251,255,255,137,4,36,232,25,221,255,255,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,131,62,39,2,0,137,4,36,232,123,248,255,255,133,192,116,71,141,131,129, 209,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,8,74,2,0,133,192,116,28,141,131,250,38,2,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,236,73,2,0,133,192,117,15,199,133,176,251,255,255,0,0,0,0,233,182,0,0,0,199,133,168,251,255,255,0,0,0, 0,199,133,176,251,255,255,0,0,0,0,233,144,0,0,0,139,133,168,251,255,255,64,137,68,36,16,141,131,71,39,2,0,137,68,36,12,199,68,36,8,80,0,0,0,199,68,36,4,0,0,0,0,141,69,164,137,4,36,232,98,71,2,0,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36, 4,141,69,164,137,4,36,232,202,247,255,255,133,192,116,76,139,133,168,251,255,255,193,224,2,137,194,141,133,16,251,255,255,1,208,137,68,36,8,141,131,253,208,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,46,73,2,0,133,192,126,25,255,133,176,251, 255,255,255,133,168,251,255,255,131,189,168,251,255,255,15,15,142,99,255,255,255,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,131,83,39,2,0,137,4,36,232,90,247,255,255,133,192,116,71,141,131,129,209,1,0,137,68,36,4,141,133,188,251,255, 255,137,4,36,232,231,72,2,0,133,192,116,28,141,131,250,38,2,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,203,72,2,0,133,192,117,15,199,133,172,251,255,255,0,0,0,0,233,182,0,0,0,199,133,168,251,255,255,0,0,0,0,199,133,172,251,255,255,0,0,0,0,233, 144,0,0,0,139,133,168,251,255,255,64,137,68,36,16,141,131,93,39,2,0,137,68,36,12,199,68,36,8,80,0,0,0,199,68,36,4,0,0,0,0,141,69,164,137,4,36,232,65,70,2,0,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,69,164,137,4,36,232,169,246,255, 255,133,192,116,76,139,133,168,251,255,255,193,224,2,137,194,141,133,208,250,255,255,1,208,137,68,36,8,141,131,253,208,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,13,72,2,0,133,192,126,25,255,133,172,251,255,255,255,133,168,251,255,255,131,189, 168,251,255,255,15,15,142,99,255,255,255,199,68,36,16,0,0,0,0,141,133,208,250,255,255,137,68,36,12,139,133,172,251,255,255,137,68,36,8,141,133,16,251,255,255,137,68,36,4,139,133,176,251,255,255,137,4,36,232,175,165,1,0,199,68,36,8,232,3,0,0,141,133,188, 251,255,255,137,68,36,4,141,131,106,39,2,0,137,4,36,232,5,246,255,255,133,192,116,36,141,133,144,251,255,255,137,68,36,8,141,131,253,208,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,118,71,2,0,235,10,199,133,144,251,255,255,255,255,255,127,199, 133,168,251,255,255,0,0,0,0,235,127,139,133,168,251,255,255,64,137,68,36,16,141,131,112,39,2,0,137,68,36,12,199,68,36,8,80,0,0,0,199,68,36,4,0,0,0,0,141,69,164,137,4,36,232,18,69,2,0,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,69,164, 137,4,36,232,122,245,255,255,133,192,116,64,141,131,245,85,2,0,139,0,139,16,141,133,188,251,255,255,137,68,36,4,137,20,36,232,134,95,0,0,137,194,141,131,245,85,2,0,139,0,137,16,255,133,168,251,255,255,139,133,144,251,255,255,57,133,168,251,255,255,15, 140,111,255,255,255,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,131,119,39,2,0,137,4,36,232,22,245,255,255,133,192,116,36,141,131,237,85,2,0,139,0,137,68,36,8,141,131,253,208,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,133, 70,2,0,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,131,132,39,2,0,137,4,36,232,206,244,255,255,133,192,116,36,141,131,217,85,2,0,139,0,137,68,36,8,141,131,253,208,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,61,70,2,0,199,68, 36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,131,140,39,2,0,137,4,36,232,134,244,255,255,133,192,116,36,141,133,144,251,255,255,137,68,36,8,141,131,253,208,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,247,69,2,0,235,10,199,133,144,251, 255,255,255,255,255,127,199,133,168,251,255,255,0,0,0,0,235,127,139,133,168,251,255,255,64,137,68,36,16,141,131,149,39,2,0,137,68,36,12,199,68,36,8,80,0,0,0,199,68,36,4,0,0,0,0,141,69,164,137,4,36,232,147,67,2,0,199,68,36,8,232,3,0,0,141,133,188,251, 255,255,137,68,36,4,141,69,164,137,4,36,232,251,243,255,255,133,192,116,64,141,131,233,85,2,0,139,0,139,16,141,133,188,251,255,255,137,68,36,4,137,20,36,232,7,94,0,0,137,194,141,131,233,85,2,0,139,0,137,16,255,133,168,251,255,255,139,133,144,251,255, 255,57,133,168,251,255,255,15,140,111,255,255,255,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,131,159,39,2,0,137,4,36,232,151,243,255,255,133,192,116,36,141,131,241,85,2,0,139,0,137,68,36,8,141,131,253,208,1,0,137,68,36,4,141,133,188, 251,255,255,137,4,36,232,6,69,2,0,199,68,36,8,232,3,0,0,141,133,188,251,255,255,137,68,36,4,141,131,168,39,2,0,137,4,36,232,79,243,255,255,133,192,116,52,141,131,129,209,1,0,137,68,36,4,141,133,188,251,255,255,137,4,36,232,220,68,2,0,133,192,116,24,141, 133,188,251,255,255,137,4,36,232,135,129,255,255,137,194,141,131,29,91,2,0,137,16,232,226,109,0,0,141,131,241,85,2,0,139,0,139,0,133,192,116,16,141,131,249,85,2,0,139,0,199,0,0,0,0,0,235,14,141,131,249,85,2,0,139,0,199,0,1,0,0,0,141,131,41,84,2,0,139, 0,139,85,244,51,16,116,5,232,83,66,2,0,129,196,100,5,0,0,91,201,195,85,137,229,83,129,236,20,9,0,0,232,0,0,0,0,91,139,69,8,137,133,52,247,255,255,141,131,229,73,2,0,139,0,139,16,137,85,244,49,210,232,239,244,255,255,141,131,161,75,2,0,139,0,139,0,137, 68,36,16,141,131,185,198,1,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,225,65,2,0,141,133,12,252,255,255,137,68,36,4,141,131,158,28,2,0,137,4,36,232,169,244,255,255,141,133,12,248,255,255,137,68,36,32, 141,133,16,248,255,255,137,68,36,28,141,133,20,248,255,255,137,68,36,24,141,133,188,247,255,255,137,68,36,20,141,133,204,247,255,255,137,68,36,16,141,133,28,248,255,255,137,68,36,12,141,133,220,247,255,255,137,68,36,8,141,133,236,247,255,255,137,68,36, 4,141,133,32,248,255,255,137,4,36,232,216,209,255,255,139,133,32,248,255,255,133,192,127,14,141,131,182,28,2,0,137,133,32,247,255,255,235,12,141,147,106,29,2,0,137,149,32,247,255,255,139,133,32,247,255,255,137,68,36,4,141,131,170,28,2,0,137,4,36,232, 15,244,255,255,199,133,24,248,255,255,0,0,0,0,233,155,0,0,0,139,133,24,248,255,255,64,137,68,36,16,141,131,187,28,2,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,237,64,2,0,139,133,24,248,255,255,139,148, 133,220,247,255,255,139,133,24,248,255,255,139,132,133,236,247,255,255,137,84,36,20,137,68,36,16,141,131,200,28,2,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,36,248,255,255,137,4,36,232,163,64,2,0,141,133,36,248,255,255,137,68,36, 4,141,133,12,252,255,255,137,4,36,232,107,243,255,255,255,133,24,248,255,255,139,133,32,248,255,255,57,133,24,248,255,255,15,140,83,255,255,255,139,133,28,248,255,255,133,192,127,14,141,147,182,28,2,0,137,149,36,247,255,255,235,12,141,131,106,29,2,0, 137,133,36,247,255,255,139,149,36,247,255,255,137,84,36,4,141,131,206,28,2,0,137,4,36,232,23,243,255,255,199,133,24,248,255,255,0,0,0,0,233,155,0,0,0,139,133,24,248,255,255,64,137,68,36,16,141,131,217,28,2,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68, 36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,245,63,2,0,139,133,24,248,255,255,139,148,133,188,247,255,255,139,133,24,248,255,255,139,132,133,204,247,255,255,137,84,36,20,137,68,36,16,141,131,200,28,2,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36, 4,0,0,0,0,141,133,36,248,255,255,137,4,36,232,171,63,2,0,141,133,36,248,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,115,242,255,255,255,133,24,248,255,255,139,133,28,248,255,255,57,133,24,248,255,255,15,140,83,255,255,255,139,133,16,248,255, 255,137,68,36,16,141,131,185,198,1,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,73,63,2,0,141,133,12,252,255,255,137,68,36,4,141,131,232,28,2,0,137,4,36,232,17,242,255,255,139,133,20,248,255,255,137,68, 36,16,141,131,185,198,1,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,255,62,2,0,141,133,12,252,255,255,137,68,36,4,141,131,113,189,1,0,137,4,36,232,199,241,255,255,139,133,12,248,255,255,137,68,36,16,141, 131,185,198,1,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,181,62,2,0,141,133,12,252,255,255,137,68,36,4,141,131,241,28,2,0,137,4,36,232,125,241,255,255,141,133,60,247,255,255,137,68,36,12,141,133,4,248, 255,255,137,68,36,8,141,133,124,247,255,255,137,68,36,4,141,133,8,248,255,255,137,4,36,232,120,158,1,0,139,133,8,248,255,255,133,192,127,14,141,131,182,28,2,0,137,133,40,247,255,255,235,12,141,147,106,29,2,0,137,149,40,247,255,255,139,133,40,247,255, 255,137,68,36,4,141,131,250,28,2,0,137,4,36,232,21,241,255,255,199,133,24,248,255,255,0,0,0,0,233,138,0,0,0,139,133,24,248,255,255,64,137,68,36,16,141,131,3,29,2,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36, 232,243,61,2,0,139,133,24,248,255,255,139,132,133,124,247,255,255,137,68,36,16,141,131,185,198,1,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,36,248,255,255,137,4,36,232,186,61,2,0,141,133,36,248,255,255,137,68,36,4,141,133,12,252, 255,255,137,4,36,232,130,240,255,255,255,133,24,248,255,255,139,133,8,248,255,255,57,133,24,248,255,255,15,140,100,255,255,255,139,133,4,248,255,255,133,192,127,14,141,147,182,28,2,0,137,149,44,247,255,255,235,12,141,131,106,29,2,0,137,133,44,247,255, 255,139,149,44,247,255,255,137,84,36,4,141,131,15,29,2,0,137,4,36,232,46,240,255,255,199,133,24,248,255,255,0,0,0,0,233,138,0,0,0,139,133,24,248,255,255,64,137,68,36,16,141,131,25,29,2,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133, 12,252,255,255,137,4,36,232,12,61,2,0,139,133,24,248,255,255,139,132,133,60,247,255,255,137,68,36,16,141,131,185,198,1,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,36,248,255,255,137,4,36,232,211,60,2,0,141,133,36,248,255,255,137, 68,36,4,141,133,12,252,255,255,137,4,36,232,155,239,255,255,255,133,24,248,255,255,139,133,4,248,255,255,57,133,24,248,255,255,15,140,100,255,255,255,199,133,24,248,255,255,0,0,0,0,141,131,177,75,2,0,139,0,139,16,139,133,24,248,255,255,137,68,36,4,137, 20,36,232,104,88,0,0,137,133,0,248,255,255,131,189,0,248,255,255,0,116,83,139,133,24,248,255,255,64,137,68,36,16,141,131,44,29,2,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,59,60,2,0,139,133,0,248,255, 255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,3,239,255,255,255,133,24,248,255,255,235,130,139,133,24,248,255,255,137,68,36,16,141,131,185,198,1,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,233,59, 2,0,141,133,12,252,255,255,137,68,36,4,141,131,38,29,2,0,137,4,36,232,177,238,255,255,141,131,169,75,2,0,139,0,139,0,137,68,36,16,141,131,185,198,1,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,155,59,2, 0,141,133,12,252,255,255,137,68,36,4,141,131,51,29,2,0,137,4,36,232,99,238,255,255,141,131,149,75,2,0,139,0,139,0,137,68,36,16,141,131,185,198,1,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,77,59,2,0,141, 133,12,252,255,255,137,68,36,4,141,131,64,29,2,0,137,4,36,232,21,238,255,255,199,133,24,248,255,255,0,0,0,0,141,131,165,75,2,0,139,0,139,16,139,133,24,248,255,255,137,68,36,4,137,20,36,232,250,86,0,0,137,133,252,247,255,255,131,189,252,247,255,255,0, 116,83,139,133,24,248,255,255,64,137,68,36,16,141,131,81,29,2,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,205,58,2,0,139,133,252,247,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,149,237,255, 255,255,133,24,248,255,255,235,130,139,133,24,248,255,255,137,68,36,16,141,131,185,198,1,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,123,58,2,0,141,133,12,252,255,255,137,68,36,4,141,131,72,29,2,0,137, 4,36,232,67,237,255,255,141,131,173,75,2,0,139,0,139,0,137,68,36,16,141,131,185,198,1,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,45,58,2,0,141,133,12,252,255,255,137,68,36,4,141,131,91,29,2,0,137,4,36, 232,245,236,255,255,141,131,217,80,2,0,139,0,133,192,116,18,141,131,217,80,2,0,139,0,139,0,137,133,48,247,255,255,235,12,141,131,141,198,1,0,137,133,48,247,255,255,139,149,48,247,255,255,137,84,36,4,141,131,100,29,2,0,137,4,36,232,179,236,255,255,232, 62,237,255,255,141,131,229,73,2,0,139,0,139,85,244,51,16,116,5,232,192,57,2,0,129,196,20,9,0,0,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,68,36,4,0,0,0,0,141,69,240,137,4,36,232,159,58,2,0,141,131,141,127,2,0,139,0,133,192,117,30,141,131, 141,127,2,0,139,64,4,133,192,117,17,141,139,141,127,2,0,139,69,240,139,85,244,137,1,137,81,4,139,85,240,141,131,141,127,2,0,139,0,137,209,41,193,137,200,242,15,42,208,139,85,244,141,131,141,127,2,0,139,64,4,137,209,41,193,137,200,242,15,42,200,141,131, 169,55,2,0,242,15,16,0,242,15,89,193,242,15,88,194,242,15,17,69,224,221,69,224,131,196,52,91,201,195,85,137,229,86,83,129,236,208,1,0,0,232,0,0,0,0,91,199,69,240,0,0,0,0,199,69,224,0,0,0,0,141,131,156,66,2,0,139,0,139,0,133,192,117,11,139,69,8,137,133, 80,254,255,255,235,10,199,133,80,254,255,255,0,0,0,0,139,133,80,254,255,255,137,69,228,131,125,12,0,15,132,139,1,0,0,199,68,36,4,128,0,0,0,141,133,224,254,255,255,137,4,36,232,17,57,2,0,199,68,36,4,128,0,0,0,141,133,96,255,255,255,137,4,36,232,251,56, 2,0,199,68,36,4,128,0,0,0,141,133,96,254,255,255,137,4,36,232,229,56,2,0,141,131,8,127,2,0,139,0,137,69,236,141,131,4,127,2,0,139,0,137,69,244,235,49,139,69,236,139,0,137,69,232,139,69,232,193,232,5,137,198,139,148,133,96,255,255,255,139,77,232,131,225, 31,184,1,0,0,0,211,224,9,208,137,132,181,96,255,255,255,131,69,236,12,255,77,244,131,125,244,255,117,198,141,131,12,127,2,0,139,0,141,80,1,141,69,224,137,68,36,16,141,133,96,254,255,255,137,68,36,12,141,133,224,254,255,255,137,68,36,8,141,133,96,255, 255,255,137,68,36,4,137,20,36,232,207,57,2,0,199,69,244,0,0,0,0,233,151,0,0,0,139,85,244,137,208,1,192,1,208,193,224,2,137,194,141,131,8,127,2,0,139,0,141,4,2,139,16,141,133,96,255,255,255,137,68,36,4,137,20,36,232,203,0,0,0,133,192,116,99,139,85,244, 137,208,1,192,1,208,193,224,2,137,194,141,131,8,127,2,0,139,0,141,4,2,139,72,4,139,85,244,137,208,1,192,1,208,193,224,2,137,194,141,131,8,127,2,0,139,0,141,4,2,139,48,139,85,244,137,208,1,192,1,208,193,224,2,137,194,141,131,8,127,2,0,139,0,141,4,2,139, 64,8,137,116,36,4,137,4,36,255,209,199,69,240,1,0,0,0,255,69,244,141,131,4,127,2,0,139,0,57,69,244,15,140,88,255,255,255,139,69,240,137,133,84,254,255,255,235,53,141,69,224,137,68,36,16,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,199, 4,36,0,0,0,0,232,229,56,2,0,199,133,84,254,255,255,0,0,0,0,139,133,84,254,255,255,129,196,208,1,0,0,91,94,201,195,85,137,229,131,236,8,139,69,8,137,194,193,234,5,139,69,12,139,20,144,139,77,8,131,225,31,184,1,0,0,0,211,224,33,208,201,195,85,137,229,131, 236,24,199,68,36,4,1,0,0,0,139,69,8,137,4,36,232,157,253,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,244,0,0,0,0,139,69,12,137,69,236,199,68,36,8,4,0,0,0,199,68,36,4,0,0,0,0,141,69,236,131,192,4,137,4,36,232,201,55,2,0,199,68,36,8, 0,0,0,0,141,69,236,137,68,36,4,139,69,8,137,4,36,232,87,56,2,0,133,192,121,14,141,131,231,17,2,0,137,4,36,232,175,55,2,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,49,124,2,0,139,0,133,192,117,61,141,131,49,124,2,0,199,0,1, 0,0,0,141,131,157,61,2,0,139,0,139,16,139,69,8,137,68,36,8,141,131,135,17,2,0,137,68,36,4,137,20,36,232,209,54,2,0,199,4,36,1,0,0,0,232,157,30,0,0,235,12,199,4,36,1,0,0,0,232,21,54,2,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141, 131,53,61,2,0,139,0,139,0,137,68,36,12,199,68,36,8,26,0,0,0,199,68,36,4,1,0,0,0,141,131,46,17,2,0,137,4,36,232,162,54,2,0,131,196,20,91,201,195,85,137,229,131,236,56,199,69,240,0,0,0,0,199,69,244,48,117,0,0,141,69,240,137,68,36,16,199,68,36,12,0,0,0, 0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,199,4,36,1,0,0,0,232,59,55,2,0,201,195,85,137,229,86,83,131,236,64,232,0,0,0,0,91,139,77,8,199,69,212,131,222,27,67,139,69,212,247,233,193,250,18,137,200,193,248,31,137,209,41,193,137,200,137,69,244,139,77,8, 199,69,212,131,222,27,67,139,69,212,247,233,193,250,18,137,200,193,248,31,137,214,41,198,137,240,105,192,64,66,15,0,137,202,41,194,137,208,137,69,8,199,69,228,0,0,0,0,199,69,232,0,0,0,0,139,69,244,137,69,236,139,69,8,137,69,240,131,125,8,0,116,24,141, 131,115,255,255,255,137,68,36,4,199,4,36,14,0,0,0,232,30,254,255,255,235,20,199,68,36,4,1,0,0,0,199,4,36,14,0,0,0,232,8,254,255,255,199,68,36,8,0,0,0,0,141,69,228,137,68,36,4,199,4,36,0,0,0,0,232,132,54,2,0,131,196,64,91,94,201,195,85,137,229,83,131, 236,52,232,0,0,0,0,91,232,103,52,2,0,139,0,137,69,244,139,69,244,137,4,36,232,175,54,2,0,137,194,141,131,237,59,2,0,139,0,139,8,139,69,244,137,68,36,16,137,84,36,12,139,69,8,137,68,36,8,141,131,1,16,2,0,137,68,36,4,137,12,36,232,23,53,2,0,131,196,52, 91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,49,122,2,0,139,0,137,69,244,139,85,244,137,208,1,192,1,208,193,224,2,137,69,240,139,69,240,141,80,12,139,77,240,141,131,53,122,2,0,139,0,137,84,36,8,137,76,36,4,137,4,36,232,100,141,255,255,137, 194,141,131,53,122,2,0,137,16,139,85,244,137,208,1,192,1,208,193,224,2,137,194,141,131,53,122,2,0,139,0,141,4,2,137,69,236,139,85,236,139,69,8,137,2,139,85,236,139,69,12,137,66,4,139,85,236,139,69,16,137,66,8,139,85,244,66,141,131,49,122,2,0,137,16,141, 131,57,122,2,0,139,0,57,69,8,124,12,139,85,8,66,141,131,57,122,2,0,137,16,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,126,121,2,0,139,0,137,69,244,139,85,244,137,208,1,192,1,208,193,224,2,137,69,236,139,69,244,137,69,240,141, 131,130,121,2,0,139,0,137,69,232,235,111,139,69,232,139,0,59,69,8,117,97,235,29,139,85,232,131,194,12,139,77,232,139,2,137,1,139,66,4,137,65,4,139,66,8,137,65,8,131,69,232,12,255,77,240,131,125,240,255,117,218,139,69,236,141,80,244,139,77,236,141,131, 130,121,2,0,139,0,137,84,36,8,137,76,36,4,137,4,36,232,108,140,255,255,137,194,141,131,130,121,2,0,137,16,139,85,244,74,141,131,126,121,2,0,137,16,235,34,131,69,232,12,255,77,240,131,125,240,255,117,136,139,69,8,137,68,36,4,141,131,6,15,2,0,137,4,36, 232,121,107,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,4,36,28,0,0,0,232,35,139,255,255,137,69,244,139,69,244,199,64,8,0,0,0,0,139,69,244,139,80,8,139,69,244,137,80,4,139,85,244,139,69,8,137,66,12,139,85,244,139,69,12,137,66, 20,139,85,244,139,69,16,137,66,24,139,85,244,139,69,20,137,66,16,199,4,36,0,16,0,0,232,161,51,2,0,137,194,139,69,244,137,16,139,69,244,139,0,133,192,117,14,141,131,106,14,2,0,137,4,36,232,13,112,0,0,139,69,244,131,196,36,91,201,195,85,137,229,131,236, 24,139,69,8,139,0,137,4,36,232,13,51,2,0,199,68,36,4,28,0,0,0,139,69,8,137,4,36,232,115,140,255,255,201,195,85,137,229,83,129,236,68,16,0,0,232,0,0,0,0,91,139,69,8,137,133,212,239,255,255,141,131,181,57,2,0,139,0,139,16,137,85,244,49,210,141,133,244, 239,255,255,137,133,236,239,255,255,199,133,228,239,255,255,1,0,0,0,139,133,212,239,255,255,139,64,4,137,133,224,239,255,255,139,133,212,239,255,255,139,64,8,137,133,220,239,255,255,139,133,212,239,255,255,139,0,137,133,216,239,255,255,139,133,220,239, 255,255,137,133,232,239,255,255,233,66,1,0,0,139,133,232,239,255,255,3,133,216,239,255,255,15,182,16,139,133,236,239,255,255,136,16,139,133,236,239,255,255,15,182,0,136,133,243,239,255,255,255,133,236,239,255,255,128,189,243,239,255,255,59,15,133,237, 0,0,0,131,189,232,239,255,255,0,116,27,139,149,216,239,255,255,74,139,133,232,239,255,255,141,4,2,15,182,0,60,92,15,132,201,0,0,0,139,133,232,239,255,255,64,37,255,15,0,0,137,133,220,239,255,255,139,149,236,239,255,255,141,133,244,239,255,255,137,209, 41,193,137,200,137,194,141,131,13,120,2,0,139,8,137,84,36,8,141,133,244,239,255,255,137,68,36,4,137,12,36,232,23,250,254,255,141,131,141,59,2,0,139,0,139,0,131,224,2,133,192,116,74,139,149,236,239,255,255,141,133,244,239,255,255,137,209,41,193,137,200, 137,68,36,8,141,133,244,239,255,255,137,68,36,4,199,4,36,2,0,0,0,232,43,51,2,0,199,68,36,8,1,0,0,0,141,131,199,13,2,0,137,68,36,4,199,4,36,2,0,0,0,232,13,51,2,0,139,149,212,239,255,255,139,133,224,239,255,255,137,66,4,139,149,212,239,255,255,139,133, 220,239,255,255,137,66,8,199,133,208,239,255,255,1,0,0,0,235,69,199,133,228,239,255,255,0,0,0,0,139,133,232,239,255,255,64,37,255,15,0,0,137,133,232,239,255,255,131,189,228,239,255,255,0,15,133,177,254,255,255,139,133,232,239,255,255,59,133,224,239,255, 255,15,133,159,254,255,255,199,133,208,239,255,255,0,0,0,0,139,133,208,239,255,255,141,147,181,57,2,0,139,18,139,77,244,51,10,116,5,232,26,48,2,0,129,196,68,16,0,0,91,201,195,85,137,229,83,129,236,52,16,0,0,232,0,0,0,0,91,139,69,8,137,133,228,239,255, 255,141,131,172,55,2,0,139,0,139,16,137,85,244,49,210,199,68,36,12,0,0,0,0,199,68,36,8,0,16,0,0,141,133,243,239,255,255,137,68,36,4,139,69,12,137,4,36,232,140,49,2,0,137,133,236,239,255,255,131,189,236,239,255,255,0,121,41,141,131,192,11,2,0,137,4,36, 232,4,251,255,255,139,69,12,137,4,36,232,4,252,255,255,139,69,12,137,4,36,232,131,3,0,0,233,211,0,0,0,131,189,236,239,255,255,0,15,142,198,0,0,0,139,133,236,239,255,255,198,132,5,243,239,255,255,0,139,133,236,239,255,255,72,15,182,132,5,243,239,255,255, 60,10,15,133,161,0,0,0,199,68,36,4,59,0,0,0,141,133,243,239,255,255,137,4,36,232,102,49,2,0,137,133,232,239,255,255,131,189,232,239,255,255,0,116,9,139,133,232,239,255,255,198,0,0,141,133,243,239,255,255,137,4,36,232,82,49,2,0,137,194,141,131,4,118,2, 0,139,8,137,84,36,8,141,133,243,239,255,255,137,68,36,4,137,12,36,232,23,248,254,255,232,171,149,255,255,139,133,228,239,255,255,139,64,24,133,192,116,37,139,133,228,239,255,255,139,72,24,141,131,4,118,2,0,139,16,139,133,228,239,255,255,139,64,12,137, 84,36,4,137,4,36,255,209,235,14,141,131,197,11,2,0,137,4,36,232,123,108,0,0,141,131,172,55,2,0,139,0,139,85,244,51,16,116,5,232,165,46,2,0,129,196,52,16,0,0,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,64,16,133,192,116,23,139,69,12, 137,68,36,4,139,69,8,137,4,36,232,98,254,255,255,233,90,2,0,0,139,69,8,139,80,4,139,69,8,139,64,8,57,194,125,12,139,69,8,139,64,8,72,137,69,228,235,7,199,69,228,0,16,0,0,139,69,228,137,69,240,139,69,8,139,64,4,59,69,240,117,78,141,131,230,53,2,0,139, 0,139,0,137,68,36,12,199,68,36,8,29,0,0,0,199,68,36,4,1,0,0,0,141,131,105,10,2,0,137,4,36,232,254,46,2,0,139,69,8,199,64,8,0,0,0,0,139,69,8,139,80,8,139,69,8,137,80,4,199,69,240,0,16,0,0,233,216,1,0,0,139,69,8,139,80,4,139,69,240,41,208,137,193,139,69, 8,139,16,139,69,8,139,64,4,141,4,2,199,68,36,12,0,0,0,0,137,76,36,8,137,68,36,4,139,69,12,137,4,36,232,126,47,2,0,137,69,236,131,125,236,0,121,98,141,131,78,10,2,0,137,4,36,232,252,248,255,255,141,131,150,116,2,0,139,0,57,69,8,117,17,199,4,36,1,0,0,0, 232,36,22,0,0,233,109,1,0,0,139,69,8,139,64,20,133,192,116,17,139,69,8,139,80,20,139,69,8,139,64,12,137,4,36,255,210,139,69,12,137,4,36,232,195,249,255,255,139,69,12,137,4,36,232,66,1,0,0,233,55,1,0,0,131,125,236,0,15,133,142,0,0,0,141,131,150,116,2, 0,139,0,57,69,8,117,54,141,131,230,53,2,0,139,0,139,0,137,68,36,12,199,68,36,8,12,0,0,0,199,68,36,4,1,0,0,0,141,131,135,10,2,0,137,4,36,232,248,45,2,0,232,243,188,255,255,233,234,0,0,0,139,69,12,137,68,36,4,141,131,148,10,2,0,137,4,36,232,145,101,0,0, 139,69,8,139,64,20,133,192,116,17,139,69,8,139,80,20,139,69,8,139,64,12,137,4,36,255,210,139,69,12,137,4,36,232,43,249,255,255,139,69,12,137,4,36,232,170,0,0,0,233,159,0,0,0,139,69,8,139,64,4,137,194,3,85,236,139,69,8,137,80,4,139,69,8,139,64,4,61,255, 15,0,0,126,114,139,69,8,199,64,4,0,0,0,0,235,102,232,54,147,255,255,139,69,8,139,64,24,133,192,116,31,139,69,8,139,72,24,141,131,146,116,2,0,139,16,139,69,8,139,64,12,137,84,36,4,137,4,36,255,209,235,40,141,131,146,116,2,0,139,0,199,68,36,12,0,0,0,0, 199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,253,11,255,255,139,69,8,139,80,4,139,69,8,139,64,8,57,194,116,15,139,69,8,137,4,36,232,254,249,255,255,133,192,117,139,131,196,52,91,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,99,44,2,0,201, 195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,141,131,253,113,2,0,139,0,137,84,36,4,137,4,36,232,153,45,2,0,137,69,244,131,125,244,0,15,133,173,0,0,0,141,131,5,114,2,0,139,16,141,131,1,114,2,0,139,0,137,209,41,193,137,200,137,69,240,199,69,236, 0,0,0,0,139,77,240,141,131,253,113,2,0,139,16,141,131,5,114,2,0,139,0,1,194,139,69,236,1,194,141,131,237,113,2,0,139,0,199,68,36,12,0,0,0,0,137,76,36,8,137,84,36,4,137,4,36,232,68,45,2,0,137,69,232,131,125,232,0,121,28,141,131,5,8,2,0,137,4,36,232,175, 44,2,0,199,4,36,1,0,0,0,232,235,19,0,0,235,161,139,69,232,1,69,236,139,69,236,59,69,240,125,2,235,145,141,131,5,114,2,0,199,0,0,0,0,0,141,131,5,114,2,0,139,16,141,131,1,114,2,0,137,16,235,22,141,147,9,114,2,0,139,69,8,137,2,141,147,253,113,2,0,139,69, 244,137,2,131,196,36,91,201,195,85,137,229,87,86,83,131,236,76,232,0,0,0,0,91,141,131,113,52,2,0,139,0,139,0,133,192,15,133,173,2,0,0,141,131,1,113,2,0,139,0,133,192,15,133,130,0,0,0,199,4,36,0,32,0,0,232,252,43,2,0,137,194,141,131,1,113,2,0,137,16,141, 131,1,113,2,0,139,0,133,192,117,56,141,131,73,50,2,0,139,0,139,0,137,68,36,12,199,68,36,8,33,0,0,0,199,68,36,4,1,0,0,0,141,131,25,7,2,0,137,4,36,232,114,43,2,0,199,4,36,1,0,0,0,232,20,19,0,0,141,131,13,113,2,0,199,0,0,32,0,0,141,131,9,113,2,0,199,0,0, 0,0,0,141,131,9,113,2,0,139,16,141,131,5,113,2,0,137,16,141,131,13,113,2,0,139,0,141,144,0,240,255,255,141,131,5,113,2,0,139,0,57,194,125,21,141,131,13,113,2,0,139,0,5,0,32,0,0,137,4,36,232,36,254,255,255,141,69,12,137,69,212,139,77,212,190,255,255,255, 255,141,131,13,113,2,0,139,16,141,131,5,113,2,0,139,0,137,215,41,199,137,248,137,199,141,131,1,113,2,0,139,16,141,131,5,113,2,0,139,0,1,194,137,76,36,20,139,69,8,137,68,36,16,137,116,36,12,199,68,36,8,0,0,0,0,137,124,36,4,137,20,36,232,226,41,2,0,137, 69,228,131,125,228,0,121,49,141,131,73,50,2,0,139,0,139,0,137,68,36,12,199,68,36,8,55,0,0,0,199,68,36,4,1,0,0,0,141,131,61,7,2,0,137,4,36,232,127,42,2,0,233,87,1,0,0,141,131,13,113,2,0,139,16,141,131,5,113,2,0,139,0,137,209,41,193,137,200,59,69,228,15, 143,212,0,0,0,141,131,13,113,2,0,139,0,141,80,1,184,0,32,0,0,129,125,228,0,32,0,0,15,77,69,228,141,4,2,137,69,204,139,69,204,137,4,36,232,68,253,255,255,141,69,12,137,69,212,139,77,212,190,255,255,255,255,141,131,13,113,2,0,139,16,141,131,5,113,2,0,139, 0,137,215,41,199,137,248,137,199,141,131,1,113,2,0,139,16,141,131,5,113,2,0,139,0,1,194,137,76,36,20,139,69,8,137,68,36,16,137,116,36,12,199,68,36,8,0,0,0,0,137,124,36,4,137,20,36,232,2,41,2,0,137,69,208,139,69,208,59,69,228,116,14,141,131,117,7,2,0, 137,4,36,232,141,102,0,0,141,131,13,113,2,0,139,16,141,131,5,113,2,0,139,0,137,209,41,193,137,200,59,69,228,127,25,141,131,13,113,2,0,139,16,141,131,5,113,2,0,139,0,137,215,41,199,137,248,137,69,228,141,131,117,52,2,0,139,0,139,0,131,224,1,132,192,116, 41,141,131,73,50,2,0,139,0,139,8,141,131,1,113,2,0,139,16,141,131,5,113,2,0,139,0,141,4,2,137,76,36,4,137,4,36,232,47,41,2,0,141,131,5,113,2,0,139,0,137,194,3,85,228,141,131,5,113,2,0,137,16,141,131,21,113,2,0,139,0,137,194,3,85,228,141,131,21,113,2, 0,137,16,131,196,76,91,94,95,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,137,68,36,4,141,131,33,247,1,0,137,4,36,232,8,253,255,255,131,196,20,91,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,141,131,8,110,2,0,139,16,141,131,12,110,2, 0,139,0,137,209,41,193,137,200,137,69,244,199,69,240,0,0,0,0,131,125,244,0,126,56,139,77,244,141,131,4,110,2,0,139,16,141,131,12,110,2,0,139,0,1,194,141,131,244,109,2,0,139,0,199,68,36,12,0,0,0,0,137,76,36,8,137,84,36,4,137,4,36,232,110,41,2,0,137,69, 240,131,125,240,0,121,31,141,131,132,4,2,0,137,4,36,232,217,40,2,0,199,4,36,1,0,0,0,232,21,16,0,0,233,73,1,0,0,131,125,240,0,117,12,199,69,228,0,0,0,0,233,62,1,0,0,141,131,8,110,2,0,139,16,141,131,12,110,2,0,139,0,137,214,41,198,137,240,59,69,240,127, 33,141,131,12,110,2,0,199,0,0,0,0,0,141,131,12,110,2,0,139,16,141,131,8,110,2,0,137,16,233,251,0,0,0,131,125,240,0,15,132,241,0,0,0,141,131,12,110,2,0,139,0,137,194,3,85,240,141,131,12,110,2,0,137,16,141,131,16,110,2,0,139,0,137,194,193,250,2,141,131, 12,110,2,0,139,0,57,194,15,141,191,0,0,0,184,255,255,255,255,131,248,255,116,77,185,255,255,255,255,141,131,8,110,2,0,139,16,141,131,12,110,2,0,139,0,137,214,41,198,137,240,137,198,141,131,4,110,2,0,139,16,141,131,12,110,2,0,139,0,1,194,141,131,4,110, 2,0,139,0,137,76,36,12,137,116,36,8,137,84,36,4,137,4,36,232,123,38,2,0,235,66,141,131,8,110,2,0,139,16,141,131,12,110,2,0,139,0,137,209,41,193,137,200,137,193,141,131,4,110,2,0,139,16,141,131,12,110,2,0,139,0,1,194,141,131,4,110,2,0,139,0,137,76,36, 8,137,84,36,4,137,4,36,232,55,0,0,0,141,131,8,110,2,0,139,16,141,131,12,110,2,0,139,0,41,194,141,131,8,110,2,0,137,16,141,131,12,110,2,0,199,0,0,0,0,0,199,69,228,1,0,0,0,139,69,228,131,196,48,91,94,201,195,85,137,229,131,236,24,184,255,255,255,255,137, 68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,216,37,2,0,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,1,108,2,0,199,0,0,0,0,0,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,234,107,2,0,139,0,5,0,2,0,0,137, 69,244,139,69,244,5,0,1,0,0,61,0,4,0,0,126,7,199,69,244,255,255,255,127,141,131,230,107,2,0,139,0,133,192,116,12,199,69,228,0,0,0,0,233,198,0,0,0,141,131,210,107,2,0,139,0,133,192,117,12,199,69,228,0,0,0,0,233,174,0,0,0,141,131,234,107,2,0,139,0,61,255, 3,0,0,126,47,141,131,103,2,2,0,137,4,36,232,41,253,255,255,141,131,234,107,2,0,199,0,0,0,0,0,141,131,230,107,2,0,199,0,1,0,0,0,199,69,228,1,0,0,0,235,112,141,131,210,107,2,0,139,0,133,192,116,88,141,131,210,107,2,0,139,0,137,69,240,139,69,240,139,80, 12,141,131,210,107,2,0,137,16,139,69,240,139,72,8,139,69,240,139,80,4,139,69,240,139,0,137,84,36,4,137,4,36,255,209,199,68,36,4,16,0,0,0,139,69,240,137,4,36,232,56,127,255,255,141,131,234,107,2,0,139,0,59,69,244,125,5,233,94,255,255,255,232,199,252,255, 255,199,69,228,1,0,0,0,139,69,228,131,196,52,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,44,46,2,0,139,0,139,0,133,192,116,9,199,69,244,0,0,0,0,235,72,232,142,252,255,255,133,192,116,9,199,69,244,1,0,0,0,235,54,141,131,192,106,2,0,139, 16,141,131,196,106,2,0,139,0,57,194,126,9,199,69,244,0,0,0,0,235,25,232,142,254,255,255,133,192,116,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,139,69,244,131,196,20,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,92,106,2,0,139,0,137,194,3, 85,8,141,129,92,106,2,0,137,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,32,106,2,0,139,0,133,192,117,11,141,131,32,106,2,0,137,69,244,235,61,141,131,32,106,2,0,139,0,137,69,240,235,19,139,69,240,139,0,59,69,8,116,107,139,69,240,139,64, 12,137,69,240,139,69,240,139,64,12,133,192,117,227,139,69,240,139,0,59,69,8,116,78,139,69,240,131,192,12,137,69,244,199,4,36,16,0,0,0,232,38,124,255,255,137,69,240,139,69,240,199,64,12,0,0,0,0,139,85,240,139,69,8,137,2,139,85,240,139,69,12,137,66,4,139, 85,240,139,69,16,137,66,8,139,69,240,199,64,12,0,0,0,0,139,85,244,139,69,240,137,2,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,116,105,2,0,139,0,133,192,15,132,130,0,0,0,141,131,116,105,2,0,139,0,139,0,59,69,8,117,38,141,131, 116,105,2,0,139,0,199,68,36,4,16,0,0,0,137,4,36,232,137,125,255,255,141,131,116,105,2,0,199,0,0,0,0,0,235,77,141,131,116,105,2,0,139,0,137,69,244,235,49,139,69,240,139,0,59,69,8,117,33,139,69,240,139,80,12,139,69,244,137,80,12,199,68,36,4,16,0,0,0,139, 69,240,137,4,36,232,69,125,255,255,235,21,139,69,240,137,69,244,139,69,244,139,64,12,137,69,240,131,125,240,0,117,192,131,196,36,91,201,195,85,137,229,131,236,40,199,68,36,4,1,0,0,0,199,4,36,0,0,0,0,232,149,233,255,255,133,192,117,9,232,244,253,255,255, 133,192,116,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,87,83,129,236,80,29,0,0,232,0,0,0,0,91,139,69,8,137,133,228,226,255,255,141,131,47,42,2,0,139,0,139,16,137,85,244,49,210,199,133,40,228,255,255,16,0,0,0,199,133,36, 228,255,255,0,0,0,0,199,133,32,228,255,255,24,21,0,0,199,133,28,228,255,255,255,255,255,255,199,4,36,0,0,0,0,232,169,122,255,255,137,194,141,131,123,104,2,0,137,16,141,131,119,104,2,0,199,0,0,0,0,0,232,183,233,254,255,137,194,141,131,135,104,2,0,137, 16,141,131,217,236,255,255,137,68,36,4,199,4,36,1,0,0,0,232,239,35,2,0,141,131,50,236,255,255,137,68,36,4,199,4,36,2,0,0,0,232,217,35,2,0,141,131,50,236,255,255,137,68,36,4,199,4,36,3,0,0,0,232,195,35,2,0,141,131,50,236,255,255,137,68,36,4,199,4,36,4, 0,0,0,232,173,35,2,0,141,131,50,236,255,255,137,68,36,4,199,4,36,6,0,0,0,232,151,35,2,0,199,68,36,4,1,0,0,0,199,4,36,8,0,0,0,232,131,35,2,0,199,68,36,4,1,0,0,0,199,4,36,13,0,0,0,232,111,35,2,0,199,68,36,4,1,0,0,0,199,4,36,14,0,0,0,232,91,35,2,0,141,131, 3,44,2,0,139,0,139,0,133,192,15,132,16,1,0,0,199,68,36,4,232,3,0,0,141,133,52,228,255,255,137,4,36,232,55,34,2,0,133,192,117,32,199,68,36,8,2,0,0,0,141,131,135,167,1,0,137,68,36,4,141,133,52,228,255,255,137,4,36,232,91,34,2,0,199,133,232,226,255,255, 2,0,0,0,141,133,52,228,255,255,137,4,36,232,234,95,255,255,137,133,236,226,255,255,199,133,24,228,255,255,0,0,0,0,235,80,139,133,24,228,255,255,193,224,3,137,194,141,133,232,226,255,255,1,208,131,192,8,199,0,1,0,0,0,139,133,24,228,255,255,193,224,3,137, 194,141,133,232,226,255,255,1,208,141,72,8,139,149,24,228,255,255,141,131,203,58,2,0,139,4,144,243,15,42,192,243,15,17,65,4,255,133,24,228,255,255,131,189,24,228,255,255,20,126,167,141,133,232,226,255,255,5,176,0,0,0,199,0,1,0,0,0,141,133,232,226,255, 255,141,144,176,0,0,0,141,131,139,28,2,0,139,0,137,66,4,141,133,232,226,255,255,137,68,36,12,199,68,36,8,23,0,0,0,199,68,36,4,0,0,0,0,199,4,36,0,0,0,0,232,11,23,0,0,233,64,6,0,0,141,131,19,44,2,0,139,0,139,0,133,192,15,132,51,1,0,0,199,68,36,8,0,0,0, 0,199,68,36,4,1,0,0,0,199,4,36,2,0,0,0,232,41,34,2,0,137,194,141,131,131,104,2,0,137,16,141,131,131,104,2,0,139,0,133,192,121,14,141,131,49,255,1,0,137,4,36,232,82,235,255,255,198,133,213,247,255,255,2,141,131,56,255,1,0,137,4,36,232,226,32,2,0,137,133, 20,228,255,255,131,189,20,228,255,255,0,117,56,141,131,219,41,2,0,139,0,139,0,137,68,36,12,199,68,36,8,51,0,0,0,199,68,36,4,1,0,0,0,141,131,67,255,1,0,137,4,36,232,149,32,2,0,199,4,36,1,0,0,0,232,47,32,2,0,139,133,20,228,255,255,139,64,12,137,194,139, 133,20,228,255,255,139,64,16,139,0,199,68,36,12,12,0,0,0,137,84,36,8,137,68,36,4,141,133,212,247,255,255,131,192,4,137,4,36,232,68,31,2,0,141,131,19,44,2,0,139,0,139,0,15,183,192,137,4,36,232,198,7,0,0,102,137,133,214,247,255,255,141,149,212,247,255, 255,141,131,131,104,2,0,139,0,199,68,36,8,16,0,0,0,137,84,36,4,137,4,36,232,144,31,2,0,133,192,15,137,21,5,0,0,141,131,119,255,1,0,137,4,36,232,107,234,255,255,199,4,36,1,0,0,0,232,152,31,2,0,199,68,36,8,0,0,0,0,199,68,36,4,1,0,0,0,199,4,36,2,0,0,0,232, 246,32,2,0,137,133,28,228,255,255,131,189,28,228,255,255,0,121,14,141,131,49,255,1,0,137,4,36,232,38,234,255,255,199,133,16,228,255,255,1,0,0,0,199,68,36,16,4,0,0,0,141,133,16,228,255,255,137,68,36,12,199,68,36,8,1,0,0,0,199,68,36,4,6,0,0,0,139,133,28, 228,255,255,137,4,36,232,111,32,2,0,133,192,121,14,141,131,147,255,1,0,137,4,36,232,37,87,0,0,198,69,213,2,199,69,216,0,0,0,0,139,133,32,228,255,255,15,183,192,137,4,36,232,218,6,0,0,102,137,69,214,233,183,0,0,0,232,41,30,2,0,139,0,137,133,12,228,255, 255,131,189,36,228,255,255,20,15,159,192,255,133,36,228,255,255,132,192,117,9,131,189,12,228,255,255,48,116,114,141,131,45,27,2,0,137,4,36,232,118,31,2,0,141,131,219,41,2,0,139,0,139,0,137,68,36,12,199,68,36,8,44,0,0,0,199,68,36,4,1,0,0,0,141,131,183, 255,1,0,137,4,36,232,228,30,2,0,141,131,219,41,2,0,139,0,139,0,137,68,36,12,199,68,36,8,56,0,0,0,199,68,36,4,1,0,0,0,141,131,231,255,1,0,137,4,36,232,184,30,2,0,199,4,36,1,0,0,0,232,82,30,2,0,255,133,32,228,255,255,139,133,32,228,255,255,15,183,192,137, 4,36,232,30,6,0,0,102,137,69,214,141,69,212,199,68,36,8,16,0,0,0,137,68,36,4,139,133,28,228,255,255,137,4,36,232,216,29,2,0,133,192,15,136,36,255,255,255,141,131,223,43,2,0,139,0,139,0,133,192,116,38,141,131,219,41,2,0,139,0,139,16,139,133,32,228,255, 255,137,68,36,8,141,131,32,0,2,0,137,68,36,4,137,20,36,232,14,30,2,0,141,131,11,44,2,0,139,0,139,0,133,192,15,133,47,2,0,0,141,131,19,252,1,0,137,4,36,232,36,30,2,0,137,133,4,228,255,255,141,189,204,227,255,255,252,186,0,0,0,0,184,10,0,0,0,137,193,137, 208,243,171,141,131,43,0,2,0,137,133,204,227,255,255,141,131,75,0,2,0,137,133,208,227,255,255,141,131,107,0,2,0,137,133,212,227,255,255,141,131,163,0,2,0,137,133,216,227,255,255,141,131,231,0,2,0,137,133,220,227,255,255,141,131,19,1,2,0,137,133,224,227, 255,255,141,131,74,1,2,0,137,133,228,227,255,255,139,133,228,226,255,255,137,68,36,16,141,131,88,1,2,0,137,68,36,12,199,68,36,8,0,4,0,0,199,68,36,4,0,0,0,0,141,133,212,251,255,255,137,4,36,232,127,28,2,0,199,133,164,227,255,255,1,0,0,0,141,133,160,227, 255,255,137,68,36,12,199,68,36,8,0,0,0,0,199,68,36,4,0,16,0,0,141,133,212,251,255,255,137,4,36,232,103,29,2,0,139,133,160,227,255,255,133,192,116,46,139,133,176,227,255,255,139,0,199,68,36,8,0,4,0,0,137,68,36,4,141,133,212,247,255,255,137,4,36,232,51, 28,2,0,141,133,212,247,255,255,137,133,204,227,255,255,139,133,4,228,255,255,137,68,36,16,141,131,107,1,2,0,137,68,36,12,199,68,36,8,0,4,0,0,199,68,36,4,0,0,0,0,141,133,212,243,255,255,137,4,36,232,227,27,2,0,141,133,212,243,255,255,137,133,208,227,255, 255,199,133,8,228,255,255,0,0,0,0,235,100,141,131,223,43,2,0,139,0,139,0,133,192,116,45,139,133,8,228,255,255,139,148,133,204,227,255,255,141,131,219,41,2,0,139,0,139,8,137,84,36,8,141,131,152,1,2,0,137,68,36,4,137,12,36,232,92,28,2,0,139,133,8,228,255, 255,139,148,133,204,227,255,255,141,133,232,226,255,255,137,68,36,4,137,20,36,232,147,29,2,0,133,192,121,15,255,133,8,228,255,255,131,189,8,228,255,255,9,126,147,139,133,8,228,255,255,139,148,133,204,227,255,255,139,133,32,228,255,255,137,68,36,24,139, 133,228,226,255,255,137,68,36,20,137,84,36,16,141,131,173,1,2,0,137,68,36,12,199,68,36,8,160,15,0,0,199,68,36,4,0,0,0,0,141,133,52,228,255,255,137,4,36,232,17,27,2,0,141,131,11,44,2,0,139,0,141,149,52,228,255,255,137,16,141,131,223,43,2,0,139,0,139,0, 133,192,116,32,141,131,219,41,2,0,139,0,139,16,141,131,11,44,2,0,139,0,139,0,137,84,36,4,137,4,36,232,171,27,2,0,232,148,27,2,0,137,133,48,228,255,255,131,189,48,228,255,255,0,121,86,232,150,26,2,0,139,0,133,192,116,16,141,131,201,1,2,0,137,4,36,232, 2,28,2,0,235,44,141,131,219,41,2,0,139,0,139,0,137,68,36,12,199,68,36,8,20,0,0,0,199,68,36,4,1,0,0,0,141,131,214,1,2,0,137,4,36,232,110,27,2,0,199,133,224,226,255,255,1,0,0,0,233,196,2,0,0,131,189,48,228,255,255,0,117,95,232,111,27,2,0,137,4,36,232,63, 28,2,0,141,131,11,44,2,0,139,0,139,0,199,68,36,16,0,0,0,0,137,68,36,12,141,131,235,1,2,0,137,68,36,8,141,131,238,1,2,0,137,68,36,4,141,131,241,1,2,0,137,4,36,232,177,26,2,0,141,131,249,1,2,0,137,4,36,232,105,27,2,0,199,4,36,1,0,0,0,232,43,26,2,0,141, 131,255,43,2,0,139,0,139,0,133,192,116,84,199,133,0,228,255,255,2,0,0,0,199,133,204,227,255,255,80,0,0,0,232,144,27,2,0,137,194,141,133,204,227,255,255,137,68,36,8,139,133,0,228,255,255,137,68,36,4,137,20,36,232,120,27,2,0,137,133,252,227,255,255,131, 189,252,227,255,255,0,116,14,141,131,3,2,2,0,137,4,36,232,77,82,0,0,141,131,3,44,2,0,139,0,139,0,133,192,15,133,241,0,0,0,141,131,19,44,2,0,139,0,139,0,133,192,15,133,223,0,0,0,141,131,223,43,2,0,139,0,139,0,133,192,116,44,141,131,219,41,2,0,139,0,139, 0,137,68,36,12,199,68,36,8,35,0,0,0,199,68,36,4,1,0,0,0,141,131,47,2,2,0,137,4,36,232,55,26,2,0,199,68,36,4,5,0,0,0,139,133,28,228,255,255,137,4,36,232,75,26,2,0,133,192,121,14,141,131,83,2,2,0,137,4,36,232,124,228,255,255,141,133,40,228,255,255,141, 85,212,137,68,36,8,137,84,36,4,139,133,28,228,255,255,137,4,36,232,42,25,2,0,137,194,141,131,131,104,2,0,137,16,141,131,131,104,2,0,139,0,133,192,121,14,141,131,90,2,2,0,137,4,36,232,57,228,255,255,141,131,223,43,2,0,139,0,139,0,133,192,116,44,141,131, 219,41,2,0,139,0,139,0,137,68,36,12,199,68,36,8,14,0,0,0,199,68,36,4,1,0,0,0,141,131,97,2,2,0,137,4,36,232,146,25,2,0,141,131,3,44,2,0,139,0,139,0,133,192,15,133,219,0,0,0,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,199,4,36,0,0,0,0, 232,161,229,255,255,137,194,141,131,139,104,2,0,137,16,141,131,139,104,2,0,139,16,141,139,233,243,255,255,141,131,131,104,2,0,139,0,137,84,36,8,137,76,36,4,137,4,36,232,241,227,255,255,141,133,212,247,255,255,137,4,36,232,69,198,255,255,141,133,212,251, 255,255,137,4,36,232,17,120,1,0,232,171,71,0,0,232,20,72,0,0,232,27,74,0,0,141,131,67,42,2,0,139,0,137,68,36,32,141,131,63,42,2,0,139,0,137,68,36,28,141,133,212,251,255,255,137,68,36,24,141,133,212,247,255,255,137,68,36,20,141,131,112,2,2,0,137,68,36, 16,199,68,36,12,0,0,0,0,199,68,36,8,43,0,0,0,199,68,36,4,0,0,0,0,141,131,119,2,2,0,137,4,36,232,180,236,255,255,199,133,224,226,255,255,0,0,0,0,139,133,224,226,255,255,141,147,47,42,2,0,139,18,139,77,244,51,10,116,5,232,145,23,2,0,129,196,80,29,0,0,91, 95,201,195,85,137,229,131,236,24,139,69,8,102,137,69,244,15,183,69,244,193,224,8,137,194,15,183,69,244,102,193,232,8,9,208,15,183,192,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,68,93,2,0,139,0,133,192,15,133,165,0,0,0,141,131,68,93,2,0,199, 0,1,0,0,0,141,131,172,30,2,0,139,0,139,0,137,68,36,12,199,68,36,8,17,0,0,0,199,68,36,4,1,0,0,0,141,131,117,247,1,0,137,4,36,232,253,23,2,0,232,80,178,255,255,141,131,172,30,2,0,139,0,139,0,137,68,36,12,199,68,36,8,16,0,0,0,199,68,36,4,1,0,0,0,141,131, 135,247,1,0,137,4,36,232,204,23,2,0,232,232,118,1,0,141,131,172,30,2,0,139,0,139,0,137,68,36,12,199,68,36,8,10,0,0,0,199,68,36,4,1,0,0,0,141,131,152,247,1,0,137,4,36,232,155,23,2,0,139,69,8,137,4,36,232,54,23,2,0,199,4,36,1,0,0,0,232,184,22,2,0,85,137, 229,83,131,236,20,232,0,0,0,0,91,141,131,213,246,1,0,137,4,36,232,120,235,255,255,141,131,6,32,2,0,139,0,139,0,133,192,117,32,141,131,134,92,2,0,139,0,137,4,36,232,77,234,255,255,141,131,134,92,2,0,139,0,137,4,36,232,179,226,255,255,199,4,36,0,0,0,0, 232,221,254,255,255,131,196,20,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,4,36,232,6,85,255,255,137,69,244,141,131,87,92,2,0,139,0,137,69,240,235,28,139,69,240,139,64,4,59,69,244,117,9,199,69,228,1,0,0,0,235,21,139,69,240,139,0,137, 69,240,131,125,240,0,117,222,199,69,228,0,0,0,0,139,69,228,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,4,36,8,0,0,0,232,55,110,255,255,137,69,244,139,69,8,137,4,36,232,157,84,255,255,137,194,139,69,244,137,80,4,141,131,253,91,2, 0,139,16,139,69,244,137,16,141,147,253,91,2,0,139,69,244,137,2,131,196,36,91,201,195,85,137,229,86,83,129,236,0,16,0,0,232,0,0,0,0,91,139,69,8,137,133,36,240,255,255,139,69,12,137,133,32,240,255,255,141,131,44,29,2,0,139,0,139,16,137,85,244,49,210,199, 133,64,240,255,255,0,0,0,0,199,133,56,240,255,255,0,0,0,0,199,68,36,4,47,0,0,0,139,133,32,240,255,255,137,4,36,232,124,23,2,0,137,133,76,240,255,255,131,189,76,240,255,255,0,116,8,255,133,76,240,255,255,235,12,139,133,32,240,255,255,137,133,76,240,255, 255,139,133,32,240,255,255,137,4,36,232,204,254,255,255,133,192,116,39,139,133,32,240,255,255,137,68,36,4,141,131,216,245,1,0,137,4,36,232,145,77,0,0,199,133,28,240,255,255,1,0,0,0,233,37,6,0,0,199,133,60,240,255,255,0,0,0,0,139,133,76,240,255,255,137, 133,72,240,255,255,233,138,1,0,0,139,133,72,240,255,255,15,182,0,136,133,83,240,255,255,128,189,83,240,255,255,47,126,9,128,189,83,240,255,255,57,126,45,128,189,83,240,255,255,64,126,9,128,189,83,240,255,255,90,126,27,128,189,83,240,255,255,96,126,9, 128,189,83,240,255,255,122,126,9,128,189,83,240,255,255,95,117,31,139,149,60,240,255,255,15,182,133,83,240,255,255,136,132,21,12,252,255,255,255,133,60,240,255,255,233,16,1,0,0,128,189,83,240,255,255,126,15,133,148,0,0,0,139,133,72,240,255,255,64,15, 182,0,132,192,15,133,130,0,0,0,184,255,255,255,255,131,248,255,116,43,185,255,255,255,255,139,133,60,240,255,255,141,149,12,252,255,255,1,194,137,76,36,8,141,131,235,245,1,0,137,68,36,4,137,20,36,232,12,20,2,0,235,34,139,133,60,240,255,255,137,194,141, 133,12,252,255,255,1,208,141,147,235,245,1,0,137,84,36,4,137,4,36,232,75,5,0,0,139,133,60,240,255,255,137,194,141,133,12,252,255,255,1,208,137,4,36,232,248,21,2,0,137,194,139,133,60,240,255,255,141,4,2,137,133,60,240,255,255,235,111,15,190,141,83,240, 255,255,190,255,255,255,255,139,133,60,240,255,255,141,149,12,252,255,255,1,194,137,76,36,16,141,131,242,245,1,0,137,68,36,12,137,116,36,8,199,68,36,4,0,0,0,0,137,20,36,232,111,19,2,0,139,133,60,240,255,255,137,194,141,133,12,252,255,255,1,208,137,4, 36,232,145,21,2,0,137,194,139,133,60,240,255,255,141,4,2,137,133,60,240,255,255,199,133,56,240,255,255,1,0,0,0,139,133,72,240,255,255,64,137,133,72,240,255,255,129,189,60,240,255,255,224,3,0,0,127,17,139,133,72,240,255,255,15,182,0,132,192,15,133,89, 254,255,255,139,133,60,240,255,255,198,132,5,12,252,255,255,0,131,189,56,240,255,255,0,15,132,151,0,0,0,184,255,255,255,255,131,248,255,116,59,190,255,255,255,255,141,133,12,252,255,255,137,4,36,232,20,21,2,0,141,80,1,141,133,12,252,255,255,141,72,6, 137,116,36,12,137,84,36,8,141,133,12,252,255,255,137,68,36,4,137,12,36,232,162,18,2,0,235,48,141,133,12,252,255,255,137,4,36,232,222,20,2,0,141,80,1,141,133,12,252,255,255,141,72,6,137,84,36,8,141,133,12,252,255,255,137,68,36,4,137,12,36,232,26,4,0,0, 199,68,36,8,6,0,0,0,141,131,249,245,1,0,137,68,36,4,141,133,12,252,255,255,137,4,36,232,166,19,2,0,235,32,199,68,36,8,232,3,0,0,141,131,0,246,1,0,137,68,36,4,141,133,12,252,255,255,137,4,36,232,76,18,2,0,199,68,36,24,1,0,0,0,199,68,36,20,232,3,0,0,141, 133,72,240,255,255,137,68,36,16,141,133,60,244,255,255,137,68,36,12,141,131,28,46,2,0,137,68,36,8,139,133,32,240,255,255,137,68,36,4,139,133,36,240,255,255,137,4,36,232,58,78,251,255,137,133,52,240,255,255,131,189,52,240,255,255,0,15,137,155,1,0,0,199, 68,36,24,1,0,0,0,199,68,36,20,232,3,0,0,141,133,72,240,255,255,137,68,36,16,141,133,60,244,255,255,137,68,36,12,141,131,35,46,2,0,137,68,36,8,139,133,32,240,255,255,137,68,36,4,139,133,36,240,255,255,137,4,36,232,225,77,251,255,137,133,52,240,255,255, 131,189,52,240,255,255,0,15,137,66,1,0,0,199,68,36,8,232,3,0,0,139,133,32,240,255,255,137,68,36,4,141,133,36,248,255,255,137,4,36,232,180,19,2,0,198,133,10,252,255,255,0,199,68,36,8,232,3,0,0,141,131,80,228,1,0,137,68,36,4,141,133,36,248,255,255,137, 4,36,232,83,17,2,0,141,133,36,248,255,255,137,4,36,232,115,19,2,0,137,194,184,232,3,0,0,41,208,199,68,36,12,232,3,0,0,137,68,36,8,139,133,76,240,255,255,137,68,36,4,141,133,36,248,255,255,137,4,36,232,36,17,2,0,198,133,11,252,255,255,0,199,68,36,24,1, 0,0,0,199,68,36,20,232,3,0,0,141,133,72,240,255,255,137,68,36,16,141,133,60,244,255,255,137,68,36,12,141,131,28,46,2,0,137,68,36,8,141,133,36,248,255,255,137,68,36,4,139,133,36,240,255,255,137,4,36,232,255,76,251,255,137,133,52,240,255,255,131,189,52, 240,255,255,0,121,100,199,68,36,24,1,0,0,0,199,68,36,20,232,3,0,0,141,133,72,240,255,255,137,68,36,16,141,133,60,244,255,255,137,68,36,12,141,131,35,46,2,0,137,68,36,8,141,133,36,248,255,255,137,68,36,4,139,133,36,240,255,255,137,4,36,232,170,76,251, 255,137,133,52,240,255,255,131,189,52,240,255,255,0,121,15,199,133,28,240,255,255,0,0,0,0,233,157,1,0,0,139,133,52,240,255,255,137,4,36,232,170,16,2,0,141,133,60,244,255,255,137,4,36,232,27,79,255,255,137,4,36,232,47,77,255,255,199,68,36,8,232,3,0,0, 141,133,60,244,255,255,137,68,36,4,141,133,36,248,255,255,137,4,36,232,78,18,2,0,198,133,10,252,255,255,0,199,68,36,8,232,3,0,0,141,131,80,228,1,0,137,68,36,4,141,133,36,248,255,255,137,4,36,232,237,15,2,0,141,133,36,248,255,255,137,4,36,232,13,18,2, 0,137,194,184,232,3,0,0,41,208,139,149,72,240,255,255,199,68,36,12,232,3,0,0,137,68,36,8,137,84,36,4,141,133,36,248,255,255,137,4,36,232,190,15,2,0,198,133,11,252,255,255,0,199,68,36,4,10,0,0,0,141,133,36,248,255,255,137,4,36,232,19,16,2,0,137,133,68, 240,255,255,131,189,68,240,255,255,0,117,64,232,249,15,2,0,137,68,36,8,141,133,36,248,255,255,137,68,36,4,141,131,135,145,1,0,137,4,36,232,7,72,0,0,141,131,68,29,2,0,139,0,137,4,36,232,80,76,255,255,199,133,28,240,255,255,0,0,0,0,233,139,0,0,0,141,133, 12,252,255,255,137,68,36,4,139,133,68,240,255,255,137,4,36,232,178,15,2,0,137,133,64,240,255,255,131,189,64,240,255,255,0,117,52,141,133,12,252,255,255,137,68,36,4,141,131,8,246,1,0,137,4,36,232,169,71,0,0,141,131,68,29,2,0,139,0,137,4,36,232,242,75, 255,255,199,133,28,240,255,255,0,0,0,0,235,48,139,133,64,240,255,255,255,208,141,131,68,29,2,0,139,0,137,4,36,232,206,75,255,255,139,133,32,240,255,255,137,4,36,232,224,248,255,255,199,133,28,240,255,255,1,0,0,0,139,133,28,240,255,255,141,147,44,29,2, 0,139,18,139,77,244,51,10,116,5,232,155,14,2,0,129,196,0,16,0,0,91,94,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,124,14,2,0,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12, 139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,46,14,2,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,218,28,2,0,137,69,244,139,69,244,139,0,59,69,8,116,65,139,69,244,139,64,4,133,192,116,11,139,69,244,139,64,4,137,69,244, 235,225,199,4,36,8,0,0,0,232,116,102,255,255,137,194,139,69,244,137,80,4,139,69,244,139,80,4,139,69,8,137,2,139,69,244,139,64,4,199,64,4,0,0,0,0,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,232,69,65,251,255,137,69,244,199,69,240,0,0, 0,0,141,131,115,28,2,0,137,69,236,235,38,139,69,236,139,16,139,69,12,137,68,36,4,139,69,8,137,4,36,255,210,137,69,240,131,125,240,0,117,15,139,69,236,139,64,4,137,69,236,131,125,236,0,117,212,139,69,244,137,4,36,232,39,65,251,255,139,69,240,131,196,36, 91,201,195,85,137,229,83,129,236,148,4,0,0,232,0,0,0,0,91,139,69,8,137,133,148,251,255,255,139,69,12,137,133,144,251,255,255,141,131,17,21,2,0,139,0,139,16,137,85,244,49,210,141,131,1,38,2,0,137,68,36,16,139,133,148,251,255,255,137,68,36,12,141,131,16, 238,1,0,137,68,36,8,199,68,36,4,232,3,0,0,141,133,12,252,255,255,137,4,36,232,27,15,2,0,141,133,12,252,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,145,35,0,0,141,133,152,251,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,253,14,2, 0,133,192,121,76,141,131,8,38,2,0,137,68,36,16,139,133,148,251,255,255,137,68,36,12,141,131,16,238,1,0,137,68,36,8,199,68,36,4,232,3,0,0,141,133,12,252,255,255,137,4,36,232,179,14,2,0,141,133,12,252,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36, 232,41,35,0,0,199,68,36,4,10,0,0,0,141,133,12,252,255,255,137,4,36,232,255,12,2,0,137,133,4,252,255,255,131,189,4,252,255,255,0,117,94,232,229,12,2,0,137,68,36,8,141,133,12,252,255,255,137,68,36,4,141,131,108,137,1,0,137,4,36,232,243,68,0,0,232,196,12, 2,0,137,194,141,131,189,20,2,0,139,0,139,8,137,84,36,12,141,133,12,252,255,255,137,68,36,8,141,131,21,238,1,0,137,68,36,4,137,12,36,232,224,12,2,0,199,133,140,251,255,255,1,0,0,0,235,53,141,131,47,238,1,0,137,68,36,4,139,133,4,252,255,255,137,4,36,232, 128,12,2,0,137,133,8,252,255,255,139,133,144,251,255,255,137,4,36,139,133,8,252,255,255,255,208,137,133,140,251,255,255,139,133,140,251,255,255,141,147,17,21,2,0,139,18,139,77,244,51,10,116,5,232,191,11,2,0,129,196,148,4,0,0,91,201,195,85,137,229,131, 236,8,232,0,0,0,0,89,141,129,241,18,2,0,139,0,139,0,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,221,18,2,0,139,0,139,0,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,189,81,2,0,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,165,20,2, 0,139,0,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,243,20,2,0,139,0,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,129,20,2,0,139,0,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,115,20,2,0,139,0,201,195,85,137,229,131,236,8,232,0, 0,0,0,89,141,129,69,20,2,0,139,0,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,51,20,2,0,139,0,201,195,85,137,229,131,236,40,232,0,0,0,0,89,199,69,244,0,0,0,0,141,129,233,36,2,0,137,69,240,235,28,139,69,240,131,192,24,139,0,59,69,8,126,8,139,69, 240,137,69,228,235,31,255,69,244,131,69,240,24,131,125,244,4,118,222,141,129,233,36,2,0,137,69,228,139,69,228,141,64,120,137,69,228,139,69,228,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,152,255,255,255,139,0,201,195,85,137,229,131,236,24,139, 69,8,137,4,36,232,131,255,255,255,139,64,12,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,109,255,255,255,139,64,16,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,87,255,255,255,139,64,20,201,195,85,137,229,86,83,129,236,48,4,0,0,232,0,0,0, 0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,141,131,218,17,2,0,139,0,139,16,137,85,244,49,210,199,68,36,24,0,0,0,0,199,68,36,20,232,3,0,0,141,133,8,252,255,255,137,68,36,16,141,133,12,252,255,255,137,68,36,12,141,131,130,142, 1,0,137,68,36,8,139,133,240,251,255,255,137,68,36,4,139,133,244,251,255,255,137,4,36,232,253,45,0,0,137,133,4,252,255,255,131,189,4,252,255,255,0,120,66,139,133,4,252,255,255,137,4,36,232,17,10,2,0,141,133,12,252,255,255,137,4,36,232,130,72,255,255,137, 198,139,133,8,252,255,255,137,4,36,232,114,72,255,255,137,116,36,8,137,68,36,4,199,4,36,0,0,0,0,232,153,56,255,255,235,24,139,133,240,251,255,255,137,68,36,4,141,131,20,147,1,0,137,4,36,232,192,68,0,0,141,131,218,17,2,0,139,0,139,85,244,51,16,116,5,232, 75,9,2,0,129,196,48,4,0,0,91,94,201,195,85,137,229,86,83,131,236,96,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,180,202,254,255,139,0,137,69,244,139,69,16,131,232,2,137,69,180,199,69,176,86,85,85,85,139,69,176,247, 109,180,137,209,139,69,180,193,248,31,137,202,41,194,137,208,137,69,228,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,234,201,254,255,217,93,196,243,15,44,85,196,141,131,198,17,2,0,139,0,137,16,139,85,228,137,208,1,192,1,208,131,192, 2,59,69,16,116,14,141,131,34,234,1,0,137,4,36,232,100,70,0,0,199,69,236,0,0,0,0,233,87,1,0,0,199,69,224,0,0,0,0,139,85,236,141,139,58,35,2,0,137,208,1,192,1,208,193,224,3,139,68,8,8,137,69,220,139,85,236,141,139,58,35,2,0,137,208,1,192,1,208,193,224, 3,139,68,8,4,137,69,216,199,69,232,1,0,0,0,235,86,139,85,232,137,208,1,192,1,208,141,80,4,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,164,201,254,255,59,69,220,127,44,139,85,232,66,137,208,1,192,141,20,16,139,69,20,137,68,36,8,139,69,16, 137,68,36,4,137,20,36,232,126,201,254,255,59,69,216,127,6,139,69,232,137,69,224,255,69,232,139,69,232,59,69,228,124,162,139,117,236,139,85,224,137,208,1,192,1,208,141,80,2,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,67,201,254,255,137,193, 141,147,58,35,2,0,137,240,1,192,1,240,193,224,3,137,76,16,12,139,117,236,139,85,224,66,137,208,1,192,141,20,16,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,10,201,254,255,137,193,141,147,58,35,2,0,137,240,1,192,1,240,193,224,3,1,208,131, 192,16,137,8,139,117,236,139,85,224,137,208,1,192,1,208,141,80,4,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,205,200,254,255,137,193,141,147,58,35,2,0,137,240,1,192,1,240,193,224,3,1,208,131,192,16,137,72,4,255,69,236,131,125,236,5,15,134, 159,254,255,255,141,131,158,18,2,0,139,0,139,0,137,69,240,235,58,139,69,240,139,64,4,137,68,36,4,199,4,36,0,0,0,0,232,51,249,255,255,133,192,117,24,139,69,240,139,64,4,137,68,36,4,141,131,51,234,1,0,137,4,36,232,156,63,0,0,139,69,240,139,0,137,69,240, 131,125,240,0,117,192,141,131,102,79,2,0,139,0,137,69,240,235,29,139,69,240,139,64,4,137,68,36,4,139,69,244,137,4,36,232,132,252,255,255,139,69,240,139,0,137,69,240,131,125,240,0,117,221,141,131,102,79,2,0,139,0,137,4,36,232,49,34,0,0,141,131,102,79, 2,0,199,0,0,0,0,0,141,131,106,79,2,0,139,0,137,69,240,235,103,232,34,206,254,255,137,69,212,139,69,240,139,64,4,137,4,36,232,171,8,2,0,137,194,139,69,240,139,64,4,137,84,36,8,137,68,36,4,139,69,212,137,4,36,232,117,207,254,255,199,68,36,12,0,0,0,0,199, 68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,139,69,212,137,4,36,232,3,230,254,255,139,69,212,137,4,36,232,255,205,254,255,139,69,240,139,0,137,69,240,131,125,240,0,117,147,141,131,106,79,2,0,139,0,137,4,36,232,155,33,0,0,141,131,106,79,2,0,199,0,0,0,0,0,131, 196,96,91,94,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,141,131,83,15,2,0,139,0,199,0,0,0,0,0,141,131,151,15,2,0,139,0,199,0,0,0,0,0,232,193,130,255,255,139,69,12,139,0,137,4,36,232,42,2,0,0,199,69,240,0,0,0,0,139,69,240,137,69,244,235,43,139,69, 244,193,224,2,3,69,12,139,16,141,131,7,231,1,0,137,68,36,4,137,20,36,232,190,7,2,0,133,192,117,7,199,69,240,1,0,0,0,255,69,244,139,69,244,59,69,8,124,205,131,125,240,0,117,5,232,231,184,255,255,131,125,240,0,117,5,232,255,44,0,0,139,69,12,131,192,4,139, 85,8,74,137,68,36,4,137,20,36,232,166,3,0,0,133,192,116,12,199,69,228,1,0,0,0,233,232,0,0,0,232,170,21,0,0,141,131,75,15,2,0,139,0,139,0,133,192,117,12,141,131,43,76,2,0,139,0,133,192,116,60,141,131,183,20,2,0,139,16,141,131,71,13,2,0,139,0,139,8,141, 131,196,30,2,0,137,68,36,16,141,131,187,30,2,0,137,68,36,12,137,84,36,8,141,131,16,231,1,0,137,68,36,4,137,12,36,232,175,5,2,0,141,131,43,76,2,0,139,0,133,192,116,9,199,69,228,0,0,0,0,235,120,141,131,35,14,2,0,139,0,139,0,139,0,137,4,36,232,43,226,255, 255,133,192,116,9,199,69,228,1,0,0,0,235,87,141,131,83,15,2,0,139,0,139,0,133,192,116,33,141,131,143,15,2,0,139,0,137,68,36,4,141,131,139,15,2,0,139,0,137,4,36,232,19,247,255,255,137,69,228,235,40,141,131,63,76,2,0,139,0,133,192,116,10,232,113,147,255, 255,137,69,228,235,18,232,130,100,1,0,232,108,160,255,255,232,250,146,255,255,137,69,228,139,69,228,131,196,68,91,201,195,85,137,229,86,131,236,36,199,69,244,0,0,0,0,235,74,139,69,20,15,182,0,132,192,116,72,139,69,244,193,224,2,137,198,3,117,12,199,68, 36,8,10,0,0,0,141,69,240,137,68,36,4,139,69,20,137,4,36,232,102,6,2,0,137,6,139,69,240,59,69,20,116,25,255,69,244,139,69,240,133,192,116,15,139,69,240,64,137,69,20,139,69,244,59,69,16,124,174,139,85,8,139,69,244,137,2,131,196,36,94,201,195,85,137,229, 131,236,40,199,69,244,0,0,0,0,131,125,8,0,121,9,199,69,228,255,255,255,255,235,42,131,125,8,0,117,21,199,69,228,0,0,0,0,235,27,139,69,12,139,0,1,69,244,131,69,12,4,255,77,8,131,125,8,255,117,235,139,69,244,137,69,228,139,69,228,201,195,85,137,229,83, 129,236,116,8,0,0,232,0,0,0,0,91,139,69,8,137,133,164,247,255,255,141,131,51,11,2,0,139,0,139,16,137,85,244,49,210,199,68,36,8,232,3,0,0,139,133,164,247,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,144,5,2,0,198,69,243,0,199,68,36,4,47,0,0, 0,141,133,12,252,255,255,137,4,36,232,124,5,2,0,137,133,28,248,255,255,131,189,28,248,255,255,0,15,132,162,0,0,0,139,133,28,248,255,255,198,0,0,199,68,36,4,47,0,0,0,141,133,12,252,255,255,137,4,36,232,74,5,2,0,137,133,28,248,255,255,131,189,28,248,255, 255,0,116,82,139,149,28,248,255,255,141,133,12,252,255,255,137,209,41,193,137,200,199,68,36,12,232,3,0,0,137,68,36,8,141,133,12,252,255,255,137,68,36,4,141,133,36,248,255,255,137,4,36,232,215,2,2,0,139,149,28,248,255,255,141,133,12,252,255,255,137,209, 41,193,137,200,198,132,5,36,248,255,255,0,235,66,199,68,36,8,3,0,0,0,141,131,239,239,1,0,137,68,36,4,141,133,36,248,255,255,137,4,36,232,193,3,2,0,235,32,199,68,36,8,2,0,0,0,141,131,139,136,1,0,137,68,36,4,141,133,36,248,255,255,137,4,36,232,159,3,2, 0,199,68,36,8,202,3,0,0,141,133,36,248,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,129,4,2,0,198,69,214,0,199,68,36,8,232,3,0,0,141,131,244,239,1,0,137,68,36,4,141,133,12,252,255,255,137,4,36,232,35,2,2,0,141,133,176,247,255,255,137,68,36, 4,141,133,12,252,255,255,137,4,36,232,33,4,2,0,133,192,120,28,141,133,12,252,255,255,137,4,36,232,216,64,255,255,137,194,141,131,187,11,2,0,139,0,137,16,235,26,141,133,36,248,255,255,137,4,36,232,188,64,255,255,137,194,141,131,187,11,2,0,139,0,137,16, 141,131,51,11,2,0,139,0,139,85,244,51,16,116,5,232,183,1,2,0,129,196,116,8,0,0,91,201,195,85,137,229,83,129,236,36,4,0,0,232,0,0,0,0,91,139,69,12,137,133,244,251,255,255,141,131,73,9,2,0,139,0,139,16,137,85,244,49,210,233,69,17,0,0,139,133,244,251,255, 255,139,16,141,131,18,238,1,0,137,68,36,4,137,20,36,232,143,3,2,0,133,192,117,65,131,125,8,1,126,59,139,133,244,251,255,255,131,192,4,139,16,141,131,221,71,2,0,137,68,36,8,141,131,29,134,1,0,137,68,36,4,137,20,36,232,76,3,2,0,133,192,126,16,131,109,8, 2,131,133,244,251,255,255,8,233,230,16,0,0,139,133,244,251,255,255,139,16,141,131,24,238,1,0,137,68,36,4,137,20,36,232,48,3,2,0,133,192,117,85,131,125,8,1,126,79,139,133,244,251,255,255,131,192,4,139,0,137,68,36,12,199,68,36,8,4,0,0,0,141,131,17,72,2, 0,137,68,36,4,141,131,157,27,2,0,137,4,36,232,124,252,255,255,141,131,157,27,2,0,139,0,133,192,15,132,55,16,0,0,131,109,8,2,131,133,244,251,255,255,8,233,115,16,0,0,139,133,244,251,255,255,139,16,141,131,36,238,1,0,137,68,36,4,137,20,36,232,189,2,2,0, 133,192,117,85,131,125,8,1,126,79,139,133,244,251,255,255,131,192,4,139,0,137,68,36,12,199,68,36,8,4,0,0,0,141,131,33,72,2,0,137,68,36,4,141,131,161,27,2,0,137,4,36,232,9,252,255,255,141,131,161,27,2,0,139,0,133,192,15,132,196,15,0,0,131,109,8,2,131, 133,244,251,255,255,8,233,0,16,0,0,139,133,244,251,255,255,139,16,141,131,49,238,1,0,137,68,36,4,137,20,36,232,74,2,2,0,133,192,15,133,132,0,0,0,131,125,8,1,126,126,139,133,244,251,255,255,131,192,4,139,0,137,68,36,12,199,68,36,8,4,0,0,0,141,131,17,72, 2,0,137,68,36,4,141,131,157,27,2,0,137,4,36,232,146,251,255,255,139,133,244,251,255,255,131,192,4,139,0,137,68,36,12,199,68,36,8,4,0,0,0,141,131,33,72,2,0,137,68,36,4,141,131,161,27,2,0,137,4,36,232,99,251,255,255,141,131,161,27,2,0,139,0,133,192,15, 132,30,15,0,0,131,109,8,2,131,133,244,251,255,255,8,233,90,15,0,0,139,133,244,251,255,255,139,16,141,131,59,238,1,0,137,68,36,4,137,20,36,232,164,1,2,0,133,192,116,36,139,133,244,251,255,255,139,16,141,131,69,238,1,0,137,68,36,4,137,20,36,232,134,1,2, 0,133,192,117,51,131,125,8,1,126,45,139,133,244,251,255,255,131,192,4,139,0,137,4,36,232,137,255,1,0,137,194,141,131,225,71,2,0,137,16,131,109,8,2,131,133,244,251,255,255,8,233,235,14,0,0,139,133,244,251,255,255,139,16,141,131,79,238,1,0,137,68,36,4, 137,20,36,232,53,1,2,0,133,192,117,27,141,131,229,71,2,0,199,0,1,0,0,0,255,77,8,131,133,244,251,255,255,4,233,178,14,0,0,139,133,244,251,255,255,139,16,141,131,89,238,1,0,137,68,36,4,137,20,36,232,252,0,2,0,133,192,117,43,139,133,244,251,255,255,131, 192,4,139,0,137,4,36,232,5,255,1,0,137,4,36,232,19,171,255,255,131,109,8,2,131,133,244,251,255,255,8,233,105,14,0,0,139,133,244,251,255,255,139,16,141,131,100,238,1,0,137,68,36,4,137,20,36,232,179,0,2,0,133,192,117,79,131,125,8,1,126,73,139,133,244,251, 255,255,131,192,4,139,0,137,4,36,232,176,254,1,0,221,157,232,251,255,255,141,131,245,251,1,0,242,15,16,0,242,15,89,133,232,251,255,255,242,15,44,208,141,131,213,10,2,0,139,0,137,16,131,109,8,2,131,133,244,251,255,255,8,233,252,13,0,0,139,133,244,251, 255,255,139,16,141,131,112,238,1,0,137,68,36,4,137,20,36,232,70,0,2,0,133,192,117,39,141,131,153,27,2,0,199,0,0,0,0,0,141,131,161,27,2,0,199,0,0,0,0,0,255,77,8,131,133,244,251,255,255,4,233,183,13,0,0,139,133,244,251,255,255,139,16,141,131,119,238,1, 0,137,68,36,4,137,20,36,232,1,0,2,0,133,192,117,39,141,131,149,27,2,0,199,0,0,0,0,0,141,131,157,27,2,0,199,0,0,0,0,0,255,77,8,131,133,244,251,255,255,4,233,114,13,0,0,139,133,244,251,255,255,139,16,141,131,126,238,1,0,137,68,36,4,137,20,36,232,188,255, 1,0,133,192,116,30,139,133,244,251,255,255,139,16,141,131,135,238,1,0,137,68,36,4,137,20,36,232,158,255,1,0,133,192,117,71,141,131,153,27,2,0,199,0,0,0,0,0,141,131,153,27,2,0,139,16,141,131,149,27,2,0,137,16,141,131,161,27,2,0,199,0,0,0,0,0,141,131,161, 27,2,0,139,16,141,131,157,27,2,0,137,16,255,77,8,131,133,244,251,255,255,4,233,239,12,0,0,139,133,244,251,255,255,139,16,141,131,144,238,1,0,137,68,36,4,137,20,36,232,57,255,1,0,133,192,117,27,141,131,141,26,2,0,199,0,0,0,0,0,255,77,8,131,133,244,251, 255,255,4,233,182,12,0,0,139,133,244,251,255,255,139,16,141,131,154,238,1,0,137,68,36,4,137,20,36,232,0,255,1,0,133,192,117,27,141,131,137,26,2,0,199,0,0,0,0,0,255,77,8,131,133,244,251,255,255,4,233,125,12,0,0,139,133,244,251,255,255,139,16,141,131,165, 238,1,0,137,68,36,4,137,20,36,232,199,254,1,0,133,192,117,43,141,131,137,26,2,0,199,0,0,0,0,0,141,131,137,26,2,0,139,16,141,131,141,26,2,0,137,16,255,77,8,131,133,244,251,255,255,4,233,52,12,0,0,139,133,244,251,255,255,139,16,141,131,173,238,1,0,137, 68,36,4,137,20,36,232,126,254,1,0,133,192,117,79,139,133,244,251,255,255,131,192,4,139,0,137,68,36,12,199,68,36,8,16,0,0,0,141,131,165,26,2,0,137,68,36,4,141,131,141,26,2,0,137,4,36,232,208,247,255,255,141,131,141,26,2,0,139,0,133,192,15,132,139,11,0, 0,131,109,8,2,131,133,244,251,255,255,8,233,199,11,0,0,139,133,244,251,255,255,139,16,141,131,184,238,1,0,137,68,36,4,137,20,36,232,17,254,1,0,133,192,117,85,131,125,8,1,126,79,139,133,244,251,255,255,131,192,4,139,0,137,68,36,12,199,68,36,8,16,0,0,0, 141,131,229,26,2,0,137,68,36,4,141,131,137,26,2,0,137,4,36,232,93,247,255,255,141,131,137,26,2,0,139,0,133,192,15,132,24,11,0,0,131,109,8,2,131,133,244,251,255,255,8,233,84,11,0,0,139,133,244,251,255,255,139,16,141,131,196,238,1,0,137,68,36,4,137,20, 36,232,158,253,1,0,133,192,15,133,132,0,0,0,131,125,8,1,126,126,139,133,244,251,255,255,131,192,4,139,0,137,68,36,12,199,68,36,8,16,0,0,0,141,131,165,26,2,0,137,68,36,4,141,131,141,26,2,0,137,4,36,232,230,246,255,255,139,133,244,251,255,255,131,192,4, 139,0,137,68,36,12,199,68,36,8,16,0,0,0,141,131,229,26,2,0,137,68,36,4,141,131,137,26,2,0,137,4,36,232,183,246,255,255,141,131,137,26,2,0,139,0,133,192,15,132,114,10,0,0,131,109,8,2,131,133,244,251,255,255,8,233,174,10,0,0,139,133,244,251,255,255,139, 16,141,131,205,238,1,0,137,68,36,4,137,20,36,232,248,252,1,0,133,192,117,67,131,125,8,1,126,61,139,133,244,251,255,255,131,192,4,139,16,141,131,21,11,2,0,139,0,139,0,137,84,36,4,137,4,36,232,80,21,0,0,137,194,141,131,21,11,2,0,139,0,137,16,131,109,8, 2,131,133,244,251,255,255,8,233,77,10,0,0,139,133,244,251,255,255,139,16,141,131,211,238,1,0,137,68,36,4,137,20,36,232,151,252,1,0,133,192,117,29,141,131,13,11,2,0,139,0,199,0,0,0,0,0,255,77,8,131,133,244,251,255,255,4,233,18,10,0,0,139,133,244,251,255, 255,139,16,141,131,106,147,1,0,137,68,36,4,137,20,36,232,92,252,1,0,133,192,117,29,141,131,13,11,2,0,139,0,199,0,1,0,0,0,255,77,8,131,133,244,251,255,255,4,233,215,9,0,0,139,133,244,251,255,255,139,16,141,131,223,238,1,0,137,68,36,4,137,20,36,232,33, 252,1,0,133,192,117,61,139,133,244,251,255,255,131,192,4,139,16,141,131,49,11,2,0,139,0,139,0,137,84,36,4,137,4,36,232,127,20,0,0,137,194,141,131,49,11,2,0,139,0,137,16,131,109,8,2,131,133,244,251,255,255,8,233,124,9,0,0,139,133,244,251,255,255,139,16, 141,131,233,238,1,0,137,68,36,4,137,20,36,232,198,251,1,0,133,192,117,63,131,125,8,1,126,57,139,133,244,251,255,255,131,192,4,139,16,141,131,209,71,2,0,139,0,137,84,36,4,137,4,36,232,32,20,0,0,137,194,141,131,209,71,2,0,137,16,131,109,8,2,131,133,244, 251,255,255,8,233,31,9,0,0,139,133,244,251,255,255,139,16,141,131,115,147,1,0,137,68,36,4,137,20,36,232,105,251,1,0,133,192,117,67,131,125,8,1,126,61,139,133,244,251,255,255,131,192,4,139,16,141,131,9,11,2,0,139,0,139,0,137,84,36,4,137,4,36,232,193,19, 0,0,137,194,141,131,9,11,2,0,139,0,137,16,131,109,8,2,131,133,244,251,255,255,8,233,190,8,0,0,139,133,244,251,255,255,139,16,141,131,240,238,1,0,137,68,36,4,137,20,36,232,8,251,1,0,133,192,116,30,139,133,244,251,255,255,139,16,141,131,251,238,1,0,137, 68,36,4,137,20,36,232,234,250,1,0,133,192,117,61,131,125,8,1,126,55,139,133,244,251,255,255,131,192,4,139,0,137,4,36,232,237,248,1,0,137,4,36,232,6,238,255,255,137,194,141,131,141,9,2,0,139,0,137,16,131,109,8,2,131,133,244,251,255,255,8,233,69,8,0,0, 139,133,244,251,255,255,139,16,141,131,1,239,1,0,137,68,36,4,137,20,36,232,143,250,1,0,133,192,116,30,139,133,244,251,255,255,139,16,141,131,12,239,1,0,137,68,36,4,137,20,36,232,113,250,1,0,133,192,117,69,131,125,8,1,126,63,139,133,244,251,255,255,131, 192,4,139,0,199,68,36,8,99,0,0,0,137,68,36,4,141,131,37,27,2,0,137,4,36,232,90,250,1,0,141,131,37,27,2,0,198,64,99,0,131,109,8,2,131,133,244,251,255,255,8,233,196,7,0,0,139,133,244,251,255,255,139,16,141,131,22,239,1,0,137,68,36,4,137,20,36,232,14,250, 1,0,133,192,117,69,131,125,8,1,126,63,139,133,244,251,255,255,131,192,4,139,0,199,68,36,8,9,0,0,0,137,68,36,4,141,131,137,27,2,0,137,4,36,232,247,249,1,0,141,131,137,27,2,0,198,64,9,0,131,109,8,2,131,133,244,251,255,255,8,233,97,7,0,0,139,133,244,251, 255,255,139,16,141,131,35,239,1,0,137,68,36,4,137,20,36,232,171,249,1,0,133,192,117,38,141,131,249,10,2,0,139,0,139,0,141,80,1,141,131,249,10,2,0,139,0,137,16,255,77,8,131,133,244,251,255,255,4,233,29,7,0,0,139,133,244,251,255,255,139,16,141,131,44,239, 1,0,137,68,36,4,137,20,36,232,103,249,1,0,133,192,117,27,141,131,217,71,2,0,199,0,1,0,0,0,255,77,8,131,133,244,251,255,255,4,233,228,6,0,0,139,133,244,251,255,255,139,16,141,131,53,239,1,0,137,68,36,4,137,20,36,232,46,249,1,0,133,192,117,67,131,125,8, 1,126,61,139,133,244,251,255,255,131,192,4,139,16,141,131,33,11,2,0,139,0,137,68,36,8,141,131,29,134,1,0,137,68,36,4,137,20,36,232,233,248,1,0,133,192,126,16,131,109,8,2,131,133,244,251,255,255,8,233,131,6,0,0,139,133,244,251,255,255,139,16,141,131,56, 239,1,0,137,68,36,4,137,20,36,232,205,248,1,0,133,192,117,29,141,131,121,9,2,0,139,0,199,0,1,0,0,0,255,77,8,131,133,244,251,255,255,4,233,72,6,0,0,139,133,244,251,255,255,139,16,141,131,68,239,1,0,137,68,36,4,137,20,36,232,146,248,1,0,133,192,117,49, 141,131,29,11,2,0,139,0,199,0,1,0,0,0,141,131,29,11,2,0,139,0,139,16,141,131,53,11,2,0,139,0,137,16,255,77,8,131,133,244,251,255,255,4,233,249,5,0,0,139,133,244,251,255,255,139,16,141,131,75,239,1,0,137,68,36,4,137,20,36,232,67,248,1,0,133,192,117,67, 131,125,8,1,126,61,139,133,244,251,255,255,131,192,4,139,16,141,131,45,11,2,0,139,0,137,68,36,8,141,131,29,134,1,0,137,68,36,4,137,20,36,232,254,247,1,0,133,192,126,16,131,109,8,2,131,133,244,251,255,255,8,233,152,5,0,0,139,133,244,251,255,255,139,16, 141,131,84,239,1,0,137,68,36,4,137,20,36,232,226,247,1,0,133,192,117,29,141,131,53,11,2,0,139,0,199,0,1,0,0,0,255,77,8,131,133,244,251,255,255,4,233,93,5,0,0,139,133,244,251,255,255,139,16,141,131,92,239,1,0,137,68,36,4,137,20,36,232,167,247,1,0,133, 192,117,43,131,125,8,1,126,37,139,133,244,251,255,255,131,192,4,139,16,141,131,37,11,2,0,139,0,137,16,131,109,8,2,131,133,244,251,255,255,8,233,20,5,0,0,139,133,244,251,255,255,139,16,141,131,100,239,1,0,137,68,36,4,137,20,36,232,94,247,1,0,133,192,117, 71,131,125,8,1,126,65,139,133,244,251,255,255,131,192,4,139,16,141,131,213,71,2,0,139,0,199,68,36,8,1,0,0,0,137,84,36,4,137,4,36,232,155,14,0,0,137,194,141,131,213,71,2,0,137,16,131,109,8,2,131,133,244,251,255,255,8,233,175,4,0,0,139,133,244,251,255, 255,139,16,141,131,106,239,1,0,137,68,36,4,137,20,36,232,249,246,1,0,133,192,117,27,141,131,233,71,2,0,199,0,1,0,0,0,255,77,8,131,133,244,251,255,255,4,233,118,4,0,0,139,133,244,251,255,255,139,16,141,131,115,239,1,0,137,68,36,4,137,20,36,232,192,246, 1,0,133,192,117,75,131,125,8,1,126,69,141,131,1,11,2,0,139,0,199,0,1,0,0,0,139,133,244,251,255,255,131,192,4,139,0,199,68,36,8,231,3,0,0,137,68,36,4,141,131,57,11,2,0,139,0,137,4,36,232,153,246,1,0,131,133,244,251,255,255,8,131,109,8,2,233,13,4,0,0,139, 133,244,251,255,255,139,16,141,131,125,239,1,0,137,68,36,4,137,20,36,232,87,246,1,0,133,192,117,75,131,125,8,1,126,69,141,131,69,11,2,0,139,0,199,0,1,0,0,0,139,133,244,251,255,255,131,192,4,139,0,199,68,36,8,231,3,0,0,137,68,36,4,141,131,61,11,2,0,139, 0,137,4,36,232,48,246,1,0,131,133,244,251,255,255,8,131,109,8,2,233,164,3,0,0,139,133,244,251,255,255,139,16,141,131,137,239,1,0,137,68,36,4,137,20,36,232,238,245,1,0,133,192,117,61,141,131,237,71,2,0,199,0,1,0,0,0,141,131,29,11,2,0,139,0,199,0,1,0,0, 0,141,131,29,11,2,0,139,0,139,16,141,131,53,11,2,0,139,0,137,16,255,77,8,131,133,244,251,255,255,4,233,73,3,0,0,139,133,244,251,255,255,139,16,141,131,144,239,1,0,137,68,36,4,137,20,36,232,147,245,1,0,133,192,117,29,141,131,69,10,2,0,139,0,199,0,1,0, 0,0,255,77,8,131,133,244,251,255,255,4,233,14,3,0,0,139,133,244,251,255,255,139,16,141,131,157,239,1,0,137,68,36,4,137,20,36,232,88,245,1,0,133,192,116,30,139,133,244,251,255,255,139,16,141,131,161,239,1,0,137,68,36,4,137,20,36,232,58,245,1,0,133,192, 117,27,141,131,129,26,2,0,199,0,1,0,0,0,255,77,8,131,133,244,251,255,255,4,233,183,2,0,0,139,133,244,251,255,255,139,16,141,131,171,239,1,0,137,68,36,4,137,20,36,232,1,245,1,0,133,192,117,27,141,131,129,26,2,0,199,0,0,0,0,0,255,77,8,131,133,244,251,255, 255,4,233,126,2,0,0,139,133,244,251,255,255,139,16,141,131,176,239,1,0,137,68,36,4,137,20,36,232,200,244,1,0,133,192,117,27,141,131,133,26,2,0,199,0,1,0,0,0,255,77,8,131,133,244,251,255,255,4,233,69,2,0,0,139,133,244,251,255,255,139,16,141,131,185,239, 1,0,137,68,36,4,137,20,36,232,143,244,1,0,133,192,116,30,139,133,244,251,255,255,139,16,141,131,197,239,1,0,137,68,36,4,137,20,36,232,113,244,1,0,133,192,117,79,139,133,244,251,255,255,131,192,4,139,0,137,68,36,12,199,68,36,8,4,0,0,0,141,131,241,71,2, 0,137,68,36,4,141,131,149,27,2,0,137,4,36,232,195,237,255,255,141,131,149,27,2,0,139,0,133,192,15,132,126,1,0,0,131,109,8,2,131,133,244,251,255,255,8,233,186,1,0,0,139,133,244,251,255,255,139,16,141,131,209,239,1,0,137,68,36,4,137,20,36,232,4,244,1,0, 133,192,116,30,139,133,244,251,255,255,139,16,141,131,222,239,1,0,137,68,36,4,137,20,36,232,230,243,1,0,133,192,117,79,139,133,244,251,255,255,131,192,4,139,0,137,68,36,12,199,68,36,8,4,0,0,0,141,131,1,72,2,0,137,68,36,4,141,131,153,27,2,0,137,4,36,232, 56,237,255,255,141,131,153,27,2,0,139,0,133,192,15,132,243,0,0,0,131,109,8,2,131,133,244,251,255,255,8,233,47,1,0,0,139,133,244,251,255,255,139,16,141,131,235,239,1,0,137,68,36,4,137,20,36,232,121,243,1,0,133,192,116,30,139,133,244,251,255,255,139,16, 141,131,245,239,1,0,137,68,36,4,137,20,36,232,91,243,1,0,133,192,117,125,131,125,8,1,126,119,139,133,244,251,255,255,131,192,4,139,0,137,68,36,12,199,68,36,8,4,0,0,0,141,131,241,71,2,0,137,68,36,4,141,131,149,27,2,0,137,4,36,232,167,236,255,255,139,133, 244,251,255,255,131,192,4,139,0,137,68,36,12,199,68,36,8,4,0,0,0,141,131,1,72,2,0,137,68,36,4,141,131,153,27,2,0,137,4,36,232,120,236,255,255,141,131,153,27,2,0,139,0,133,192,116,55,131,109,8,2,131,133,244,251,255,255,8,235,118,139,133,244,251,255,255, 139,16,141,131,181,226,1,0,137,68,36,4,137,20,36,232,192,242,1,0,133,192,117,12,255,77,8,131,133,244,251,255,255,4,235,76,199,133,4,252,255,255,0,0,0,0,235,43,141,131,245,8,2,0,139,0,139,8,139,149,4,252,255,255,141,131,133,16,2,0,139,4,144,137,76,36, 4,137,4,36,232,41,241,1,0,255,133,4,252,255,255,131,189,4,252,255,255,52,118,204,199,133,240,251,255,255,1,0,0,0,235,119,131,125,8,0,126,19,139,133,244,251,255,255,139,0,15,182,0,60,45,15,132,162,238,255,255,141,131,141,9,2,0,139,0,139,0,133,192,117, 64,141,131,141,9,2,0,139,0,199,0,10,0,0,0,235,48,139,133,244,251,255,255,139,16,141,131,209,71,2,0,139,0,137,84,36,4,137,4,36,232,148,10,0,0,137,194,141,131,209,71,2,0,137,16,255,77,8,131,133,244,251,255,255,4,131,125,8,0,127,202,199,133,240,251,255, 255,0,0,0,0,139,133,240,251,255,255,141,147,73,9,2,0,139,18,139,77,244,51,10,116,5,232,171,239,1,0,129,196,36,4,0,0,91,201,195,85,137,229,131,236,8,184,64,0,0,0,201,195,85,137,229,87,86,83,129,236,28,5,0,0,232,0,0,0,0,91,141,131,46,247,1,0,139,0,139, 16,137,85,228,49,210,199,133,216,251,255,255,0,0,0,0,199,133,212,251,255,255,0,0,0,0,141,131,182,247,1,0,139,0,139,0,139,0,199,68,36,8,202,3,0,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,122,241,1,0,198,69,198,0,199,68,36,8,232,3,0,0,141,131,228, 221,1,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,28,239,1,0,141,133,252,251,255,255,137,4,36,232,56,11,0,0,141,131,182,247,1,0,139,0,139,0,139,0,199,68,36,8,202,3,0,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,34,241,1,0,198,69,198,0,199, 68,36,8,232,3,0,0,141,131,235,221,1,0,137,68,36,4,141,133,252,251,255,255,137,4,36,232,196,238,1,0,141,131,22,249,1,0,139,0,139,16,141,133,252,251,255,255,137,68,36,4,137,20,36,232,77,9,0,0,137,194,141,131,22,249,1,0,139,0,137,16,141,131,178,53,2,0,139, 0,133,192,117,122,199,133,248,251,255,255,0,0,0,0,235,33,139,141,248,251,255,255,141,131,214,53,2,0,139,4,136,141,80,255,141,131,214,53,2,0,137,20,136,255,133,248,251,255,255,141,131,122,9,2,0,139,0,57,133,248,251,255,255,124,207,199,133,248,251,255, 255,0,0,0,0,235,33,139,141,248,251,255,255,141,131,230,53,2,0,139,4,136,141,80,255,141,131,230,53,2,0,137,20,136,255,133,248,251,255,255,141,131,126,9,2,0,139,0,57,133,248,251,255,255,124,207,199,133,248,251,255,255,0,0,0,0,235,33,139,141,248,251,255, 255,141,131,138,8,2,0,139,4,136,141,80,255,141,131,138,8,2,0,137,20,136,255,133,248,251,255,255,141,131,114,8,2,0,139,0,57,133,248,251,255,255,124,207,199,133,248,251,255,255,0,0,0,0,235,33,139,141,248,251,255,255,141,131,202,8,2,0,139,4,136,141,80,255, 141,131,202,8,2,0,137,20,136,255,133,248,251,255,255,141,131,110,8,2,0,139,0,57,133,248,251,255,255,124,207,141,131,206,53,2,0,139,0,133,192,116,5,232,101,153,255,255,141,133,220,251,255,255,137,68,36,32,141,133,224,251,255,255,137,68,36,28,141,133,228, 251,255,255,137,68,36,24,141,133,148,251,255,255,137,68,36,20,141,133,164,251,255,255,137,68,36,16,141,133,240,251,255,255,137,68,36,12,141,133,180,251,255,255,137,68,36,8,141,133,196,251,255,255,137,68,36,4,141,133,244,251,255,255,137,4,36,232,142,125, 255,255,141,131,130,9,2,0,139,0,133,192,120,76,141,131,130,9,2,0,139,0,137,133,236,251,255,255,199,133,248,251,255,255,0,0,0,0,235,34,139,141,248,251,255,255,139,149,248,251,255,255,141,131,246,53,2,0,139,4,144,137,132,141,180,251,255,255,255,133,248, 251,255,255,139,133,248,251,255,255,59,133,236,251,255,255,124,208,235,12,139,133,244,251,255,255,137,133,236,251,255,255,141,131,122,9,2,0,139,0,133,192,120,74,141,131,122,9,2,0,139,0,137,133,244,251,255,255,199,133,248,251,255,255,0,0,0,0,235,34,139, 141,248,251,255,255,139,149,248,251,255,255,141,131,214,53,2,0,139,4,144,137,132,141,196,251,255,255,255,133,248,251,255,255,139,133,244,251,255,255,57,133,248,251,255,255,124,208,141,131,134,9,2,0,139,0,133,192,120,76,141,131,134,9,2,0,139,0,137,133, 232,251,255,255,199,133,248,251,255,255,0,0,0,0,235,34,139,141,248,251,255,255,139,149,248,251,255,255,141,131,6,54,2,0,139,4,144,137,132,141,148,251,255,255,255,133,248,251,255,255,139,133,248,251,255,255,59,133,232,251,255,255,124,208,235,12,139,133, 240,251,255,255,137,133,232,251,255,255,141,131,126,9,2,0,139,0,133,192,120,74,141,131,126,9,2,0,139,0,137,133,240,251,255,255,199,133,248,251,255,255,0,0,0,0,235,34,139,141,248,251,255,255,139,149,248,251,255,255,141,131,230,53,2,0,139,4,144,137,132, 141,164,251,255,255,255,133,248,251,255,255,139,133,240,251,255,255,57,133,248,251,255,255,124,208,141,133,20,251,255,255,137,68,36,12,141,133,212,251,255,255,137,68,36,8,141,133,84,251,255,255,137,68,36,4,141,133,216,251,255,255,137,4,36,232,136,75, 1,0,141,131,114,8,2,0,139,0,133,192,120,110,139,149,216,251,255,255,141,131,114,8,2,0,139,0,137,84,36,8,137,68,36,4,141,131,252,221,1,0,137,4,36,232,255,35,0,0,141,131,114,8,2,0,139,0,137,133,216,251,255,255,199,133,248,251,255,255,0,0,0,0,235,34,139, 141,248,251,255,255,139,149,248,251,255,255,141,131,138,8,2,0,139,4,144,137,132,141,84,251,255,255,255,133,248,251,255,255,139,133,216,251,255,255,57,133,248,251,255,255,124,208,141,131,110,8,2,0,139,0,133,192,120,74,141,131,110,8,2,0,139,0,137,133,212, 251,255,255,199,133,248,251,255,255,0,0,0,0,235,34,139,141,248,251,255,255,139,149,248,251,255,255,141,131,202,8,2,0,139,4,144,137,132,141,20,251,255,255,255,133,248,251,255,255,139,133,212,251,255,255,57,133,248,251,255,255,124,208,141,131,198,53,2, 0,139,0,133,192,116,14,141,131,198,53,2,0,139,0,137,133,224,251,255,255,141,131,194,53,2,0,139,0,133,192,116,14,141,131,194,53,2,0,139,0,137,133,228,251,255,255,141,131,202,53,2,0,139,0,133,192,116,14,141,131,202,53,2,0,139,0,137,133,220,251,255,255, 139,133,220,251,255,255,139,149,224,251,255,255,139,141,228,251,255,255,139,181,240,251,255,255,139,189,244,251,255,255,137,68,36,40,137,84,36,36,137,76,36,32,141,133,148,251,255,255,137,68,36,28,139,133,232,251,255,255,137,68,36,24,141,133,164,251,255, 255,137,68,36,20,137,116,36,16,141,133,180,251,255,255,137,68,36,12,139,133,236,251,255,255,137,68,36,8,141,133,196,251,255,255,137,68,36,4,137,60,36,232,244,126,255,255,139,149,212,251,255,255,139,141,216,251,255,255,199,68,36,16,0,0,0,0,141,133,20, 251,255,255,137,68,36,12,137,84,36,8,141,133,84,251,255,255,137,68,36,4,137,12,36,232,204,73,1,0,141,131,46,247,1,0,139,0,139,85,228,51,16,116,5,232,175,233,1,0,129,196,28,5,0,0,91,94,95,201,195,85,137,229,83,129,236,244,3,0,0,232,0,0,0,0,91,141,131, 63,241,1,0,139,0,139,16,137,85,244,49,210,141,131,63,241,1,0,139,0,139,85,244,51,16,116,5,232,113,233,1,0,129,196,244,3,0,0,91,201,195,85,137,229,131,236,24,235,12,139,85,12,15,182,69,247,136,2,255,69,12,139,69,8,15,182,0,136,69,247,128,125,247,0,15, 149,192,255,69,8,132,192,117,221,139,69,12,198,0,0,201,195,85,137,229,131,236,24,235,12,139,85,12,15,182,69,247,136,2,255,69,12,139,69,8,15,182,0,136,69,247,128,125,247,0,15,149,192,255,69,8,132,192,117,221,139,69,12,198,0,0,201,195,85,137,229,131,236, 24,139,69,8,15,182,0,60,47,116,10,139,69,8,15,182,0,60,126,117,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,139,69,8,137,4,36,232,237,234,1,0,131,248,1,117,10,139,69,8,15,182,0,60,126, 116,37,199,68,36,8,2,0,0,0,141,131,91,215,1,0,137,68,36,4,139,69,8,137,4,36,232,199,234,1,0,133,192,15,133,18,1,0,0,141,131,83,194,1,0,137,4,36,232,115,233,1,0,137,69,228,131,125,228,0,15,132,75,1,0,0,184,255,255,255,255,131,248,255,116,36,184,255,255, 255,255,139,85,16,137,68,36,12,137,84,36,8,139,69,228,137,68,36,4,139,69,12,137,4,36,232,86,232,1,0,235,25,139,69,16,137,68,36,8,139,69,228,137,68,36,4,139,69,12,137,4,36,232,12,1,0,0,139,85,12,74,139,69,16,141,4,2,198,0,0,139,69,12,137,4,36,232,63,234, 1,0,184,255,255,255,255,131,248,255,116,77,139,69,12,137,4,36,232,42,234,1,0,199,69,212,255,255,255,255,139,117,16,139,69,12,137,4,36,232,21,234,1,0,41,198,139,125,8,71,139,69,12,137,4,36,232,4,234,1,0,3,69,12,139,85,212,137,84,36,12,137,116,36,8,137, 124,36,4,137,4,36,232,206,231,1,0,235,50,139,117,16,139,69,12,137,4,36,232,218,233,1,0,41,198,139,125,8,71,139,69,12,137,4,36,232,201,233,1,0,3,69,12,137,116,36,8,137,124,36,4,137,4,36,232,107,0,0,0,139,85,12,74,139,69,16,141,4,2,198,0,0,235,84,184,255, 255,255,255,131,248,255,116,36,184,255,255,255,255,139,85,16,137,68,36,12,137,84,36,8,139,69,8,137,68,36,4,139,69,12,137,4,36,232,95,231,1,0,235,25,139,69,16,137,68,36,8,139,69,8,137,68,36,4,139,69,12,137,4,36,232,21,0,0,0,139,85,12,74,139,69,16,141, 4,2,198,0,0,131,196,60,91,94,95,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,7,231,1,0,201,195,85,137,229,131,236,40,139,69,20,136,69,228,199,69,244,0,0,0,0,235,22,139, 69,244,137,194,3,85,8,139,69,244,3,69,16,15,182,0,136,2,255,69,244,139,69,12,72,59,69,244,118,27,139,69,244,3,69,16,15,182,0,132,192,116,14,139,69,244,3,69,16,15,182,0,58,69,228,117,198,139,69,244,3,69,8,198,0,0,131,125,244,0,116,25,139,69,244,3,69,16, 15,182,0,132,192,116,12,139,69,244,3,69,16,64,137,69,224,235,7,199,69,224,0,0,0,0,139,69,224,201,195,85,137,229,131,236,56,199,4,36,8,0,0,0,232,201,62,255,255,137,69,240,139,69,240,199,0,0,0,0,0,139,69,12,137,4,36,232,117,232,1,0,64,137,4,36,232,169, 62,255,255,137,194,139,69,240,137,80,4,184,255,255,255,255,131,248,255,116,32,186,255,255,255,255,139,69,240,139,72,4,137,84,36,8,139,69,12,137,68,36,4,137,12,36,232,20,230,1,0,235,21,139,69,240,139,80,4,139,69,12,137,68,36,4,137,20,36,232,121,0,0,0, 139,69,240,139,80,4,139,69,240,139,64,4,137,84,36,4,137,4,36,232,164,252,255,255,131,125,8,0,117,8,139,69,240,137,69,228,235,78,139,69,8,137,69,244,131,125,16,0,117,33,139,69,244,139,80,4,139,69,12,137,68,36,4,137,20,36,232,210,231,1,0,133,192,117,8, 139,69,8,137,69,228,235,33,139,69,244,139,0,133,192,116,10,139,69,244,139,0,137,69,244,235,198,139,85,244,139,69,240,137,2,139,69,8,137,69,228,139,69,228,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137, 4,36,232,99,229,1,0,201,195,85,137,229,83,129,236,36,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,141,131,240,236,1,0,139,0,139,16,137,85,244,49,210,139,133,244,251,255,255,137,133,4,252,255,255,139,133,244, 251,255,255,137,133,0,252,255,255,139,133,240,251,255,255,137,133,8,252,255,255,199,68,36,12,58,0,0,0,139,133,8,252,255,255,137,68,36,8,199,68,36,4,232,3,0,0,141,133,12,252,255,255,137,4,36,232,235,253,255,255,137,133,8,252,255,255,15,182,133,12,252, 255,255,132,192,116,38,199,68,36,8,0,0,0,0,141,133,12,252,255,255,137,68,36,4,139,133,4,252,255,255,137,4,36,232,61,254,255,255,137,133,4,252,255,255,131,189,8,252,255,255,0,117,152,139,133,4,252,255,255,141,147,240,236,1,0,139,18,139,77,244,51,10,116, 5,232,126,228,1,0,129,196,36,4,0,0,91,201,195,85,137,229,131,236,40,139,69,8,137,69,244,235,68,139,69,244,139,0,137,69,240,139,69,244,139,64,4,137,4,36,232,133,230,1,0,141,80,1,139,69,244,139,64,4,137,84,36,4,137,4,36,232,147,62,255,255,199,68,36,4,8, 0,0,0,139,69,244,137,4,36,232,128,62,255,255,139,69,240,137,69,244,131,125,244,0,117,182,201,195,85,137,229,131,236,40,199,69,244,0,0,0,0,139,69,8,137,69,240,235,11,255,69,244,139,69,240,139,0,137,69,240,139,69,244,59,69,12,125,6,131,125,240,0,117,231, 131,125,240,0,116,11,139,69,240,139,64,4,137,69,228,235,7,199,69,228,0,0,0,0,139,69,228,201,195,85,137,229,83,129,236,20,4,0,0,232,0,0,0,0,91,139,69,8,137,133,4,252,255,255,141,131,107,235,1,0,139,0,139,16,137,85,244,49,210,141,131,115,237,1,0,139,0, 139,0,137,4,36,232,33,255,255,255,199,68,36,8,232,3,0,0,141,133,12,252,255,255,137,68,36,4,141,131,91,210,1,0,137,4,36,232,163,250,255,255,199,68,36,8,0,0,0,0,141,133,12,252,255,255,137,68,36,4,199,4,36,0,0,0,0,232,238,252,255,255,137,194,141,131,115, 237,1,0,139,0,137,16,141,131,115,237,1,0,139,0,139,16,199,68,36,8,0,0,0,0,141,131,104,210,1,0,137,68,36,4,137,20,36,232,190,252,255,255,137,194,141,131,115,237,1,0,139,0,137,16,141,131,115,237,1,0,139,0,139,16,199,68,36,8,0,0,0,0,139,133,4,252,255,255, 137,68,36,4,137,20,36,232,142,252,255,255,137,194,141,131,115,237,1,0,139,0,137,16,141,131,107,235,1,0,139,0,139,85,244,51,16,116,5,232,216,226,1,0,129,196,20,4,0,0,91,201,195,85,137,229,86,83,129,236,160,4,0,0,232,0,0,0,0,91,139,69,8,137,133,132,251, 255,255,139,69,12,137,133,128,251,255,255,139,69,16,137,133,124,251,255,255,139,69,20,137,133,120,251,255,255,139,69,24,137,133,116,251,255,255,141,131,105,234,1,0,139,0,139,16,137,85,244,49,210,139,133,132,251,255,255,137,4,36,232,168,228,1,0,137,198, 139,133,128,251,255,255,137,4,36,232,152,228,1,0,1,198,139,133,124,251,255,255,137,4,36,232,136,228,1,0,141,4,6,131,192,4,59,69,28,118,15,199,133,108,251,255,255,255,255,255,255,233,10,3,0,0,199,68,36,8,232,3,0,0,141,133,12,252,255,255,137,68,36,4,139, 133,132,251,255,255,137,4,36,232,71,249,255,255,184,255,255,255,255,131,248,255,116,35,184,255,255,255,255,137,68,36,8,141,133,12,252,255,255,137,68,36,4,139,133,120,251,255,255,137,4,36,232,251,225,1,0,235,24,141,133,12,252,255,255,137,68,36,4,139,133, 120,251,255,255,137,4,36,232,93,252,255,255,139,133,120,251,255,255,15,182,0,132,192,116,100,139,181,120,251,255,255,78,139,133,120,251,255,255,137,4,36,232,231,227,1,0,141,4,6,15,182,0,60,47,116,69,184,255,255,255,255,131,248,255,116,35,184,255,255, 255,255,137,68,36,8,141,131,141,177,1,0,137,68,36,4,139,133,120,251,255,255,137,4,36,232,132,225,1,0,235,24,141,131,141,177,1,0,137,68,36,4,139,133,120,251,255,255,137,4,36,232,88,2,0,0,184,255,255,255,255,131,248,255,116,35,184,255,255,255,255,137,68, 36,8,139,133,128,251,255,255,137,68,36,4,139,133,120,251,255,255,137,4,36,232,63,225,1,0,235,24,139,133,128,251,255,255,137,68,36,4,139,133,120,251,255,255,137,4,36,232,19,2,0,0,184,255,255,255,255,131,248,255,116,35,184,255,255,255,255,137,68,36,8,139, 133,124,251,255,255,137,68,36,4,139,133,120,251,255,255,137,4,36,232,250,224,1,0,235,24,139,133,124,251,255,255,137,68,36,4,139,133,120,251,255,255,137,4,36,232,206,1,0,0,139,133,120,251,255,255,137,68,36,4,139,133,120,251,255,255,137,4,36,232,90,247, 255,255,199,68,36,4,0,0,0,0,139,133,120,251,255,255,137,4,36,232,246,225,1,0,137,133,8,252,255,255,131,189,8,252,255,255,0,15,136,57,1,0,0,141,133,148,251,255,255,137,68,36,4,139,133,8,252,255,255,137,4,36,232,107,225,1,0,133,192,120,34,15,183,133,152, 251,255,255,15,183,192,37,0,240,0,0,61,0,64,0,0,116,12,199,133,112,251,255,255,1,0,0,0,235,10,199,133,112,251,255,255,0,0,0,0,139,141,112,251,255,255,137,141,4,252,255,255,131,189,4,252,255,255,0,117,67,141,131,25,236,1,0,139,0,139,0,133,192,116,24,139, 133,120,251,255,255,137,68,36,4,141,131,117,209,1,0,137,4,36,232,190,24,0,0,139,133,8,252,255,255,137,4,36,232,110,224,1,0,199,133,8,252,255,255,255,255,255,255,233,191,0,0,0,141,131,25,236,1,0,139,0,139,0,133,192,116,24,139,133,120,251,255,255,137,68, 36,4,141,131,152,209,1,0,137,4,36,232,123,24,0,0,139,133,120,251,255,255,137,68,36,4,139,133,120,251,255,255,137,4,36,232,134,246,255,255,199,68,36,4,47,0,0,0,139,133,120,251,255,255,137,4,36,232,235,225,1,0,137,133,0,252,255,255,131,189,0,252,255,255, 0,116,26,139,133,0,252,255,255,198,0,0,139,149,0,252,255,255,66,139,133,116,251,255,255,137,16,235,14,139,149,116,251,255,255,139,133,120,251,255,255,137,2,139,133,8,252,255,255,137,133,108,251,255,255,235,48,141,131,25,236,1,0,139,0,139,0,133,192,116, 24,139,133,120,251,255,255,137,68,36,4,141,131,175,209,1,0,137,4,36,232,226,23,0,0,199,133,108,251,255,255,255,255,255,255,139,133,108,251,255,255,141,147,105,234,1,0,139,18,139,77,244,51,10,116,5,232,22,223,1,0,129,196,160,4,0,0,91,94,201,195,85,137, 229,131,236,24,184,255,255,255,255,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,241,222,1,0,201,195,85,137,229,83,129,236,68,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255,255,139,69,12,137,133,240,251,255,255,139,69,16,137,133,236,251, 255,255,139,69,20,137,133,232,251,255,255,139,69,32,137,133,228,251,255,255,141,131,132,230,1,0,139,0,139,16,137,85,244,49,210,139,133,244,251,255,255,137,4,36,232,141,245,255,255,133,192,15,132,249,0,0,0,199,68,36,4,47,0,0,0,139,133,244,251,255,255, 137,4,36,232,183,224,1,0,137,133,8,252,255,255,131,189,8,252,255,255,0,117,15,199,133,224,251,255,255,0,0,0,0,233,207,0,0,0,139,133,8,252,255,255,139,149,244,251,255,255,41,208,137,133,4,252,255,255,129,189,4,252,255,255,231,3,0,0,126,10,199,133,4,252, 255,255,231,3,0,0,139,133,4,252,255,255,199,68,36,12,232,3,0,0,137,68,36,8,139,133,244,251,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,23,222,1,0,139,133,4,252,255,255,198,132,5,12,252,255,255,0,139,149,244,251,255,255,66,139,133,4,252,255, 255,1,194,139,69,28,137,68,36,24,139,69,24,137,68,36,20,139,133,232,251,255,255,137,68,36,16,139,133,236,251,255,255,137,68,36,12,139,133,240,251,255,255,137,68,36,8,137,84,36,4,141,133,12,252,255,255,137,4,36,232,213,250,255,255,137,194,139,133,228, 251,255,255,137,16,199,133,224,251,255,255,1,0,0,0,235,10,199,133,224,251,255,255,0,0,0,0,139,133,224,251,255,255,141,147,132,230,1,0,139,18,139,77,244,51,10,116,5,232,106,221,1,0,129,196,68,4,0,0,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,199, 69,240,255,255,255,255,141,69,240,137,68,36,24,139,69,32,137,68,36,20,139,69,28,137,68,36,16,139,69,24,137,68,36,12,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,12,137,4,36,232,47,254,255,255,133,192,116,11,139,69,240,137,69,228,233,53,1,0,0,139, 69,32,137,68,36,24,139,69,28,137,68,36,20,139,69,24,137,68,36,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,5,250,255,255,137,69,240,139,69,240,133,192,120,11,139,69,240,137,69,228,233,235,0,0,0,139,69,36, 137,69,244,235,85,139,69,244,139,80,4,139,69,32,137,68,36,24,139,69,28,137,68,36,20,139,69,24,137,68,36,16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,176,249,255,255,137,69,240,139,69,240,133,192,120,11,139,69,240, 137,69,228,233,150,0,0,0,139,69,244,139,0,137,69,244,131,125,244,0,117,165,141,131,251,247,1,0,139,0,133,192,116,103,141,131,7,231,1,0,139,0,139,0,137,69,244,235,82,139,69,244,139,80,4,139,69,32,137,68,36,24,139,69,28,137,68,36,20,139,69,24,137,68,36, 16,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,58,249,255,255,137,69,240,139,69,240,133,192,120,8,139,69,240,137,69,228,235,35,139,69,244,139,0,137,69,244,131,125,244,0,117,168,139,69,20,198,0,0,139,85,24,139,69,20, 137,2,199,69,228,255,255,255,255,139,69,228,131,196,68,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,53,229,1,0,139,0,139,0,137,68,36,28,139,69,32,137,68,36,24,139,69,28,137,68,36,20,139,69,24,137,68,36,16,139,69,20,137,68,36,12,139,69,16, 137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,26,254,255,255,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,202,219,1,0,201,195,85,137,229,86,83,129,236,16,8,0,0,232,0,0,0,0,91,139,69,8,137,133,20,248,255,255,139,69,12,137, 133,16,248,255,255,141,131,252,226,1,0,139,0,139,16,137,85,244,49,210,139,133,16,248,255,255,15,182,0,132,192,116,14,139,133,16,248,255,255,137,133,12,248,255,255,235,12,141,147,86,202,1,0,137,149,12,248,255,255,139,133,12,248,255,255,137,133,28,248, 255,255,199,68,36,8,222,3,0,0,139,133,20,248,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,29,221,1,0,198,69,234,0,141,133,12,252,255,255,137,4,36,232,255,220,1,0,131,248,3,118,74,141,133,12,252,255,255,137,4,36,232,236,220,1,0,137,194,141, 133,12,252,255,255,1,208,141,80,253,141,131,74,112,1,0,137,68,36,4,137,20,36,232,193,220,1,0,133,192,117,25,141,133,12,252,255,255,137,4,36,232,187,220,1,0,131,232,3,198,132,5,12,252,255,255,0,199,68,36,8,232,3,0,0,141,131,89,202,1,0,137,68,36,4,141, 133,12,252,255,255,137,4,36,232,98,218,1,0,141,131,228,228,1,0,139,0,139,0,137,68,36,28,199,68,36,24,0,0,0,0,199,68,36,20,232,3,0,0,141,133,32,248,255,255,137,68,36,16,141,133,36,248,255,255,137,68,36,12,141,131,164,95,1,0,137,68,36,8,141,133,12,252, 255,255,137,68,36,4,139,133,16,248,255,255,137,4,36,232,167,252,255,255,137,133,24,248,255,255,131,189,24,248,255,255,0,15,137,44,1,0,0,199,68,36,8,6,0,0,0,141,131,99,202,1,0,137,68,36,4,141,133,12,252,255,255,137,4,36,232,19,219,1,0,199,68,36,12,232, 3,0,0,199,68,36,8,222,3,0,0,139,133,20,248,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,191,217,1,0,198,69,243,0,141,131,228,228,1,0,139,0,139,0,137,68,36,28,199,68,36,24,0,0,0,0,199,68,36,20,232,3,0,0,141,133,32,248,255,255,137,68,36,16,141, 133,36,248,255,255,137,68,36,12,141,131,164,95,1,0,137,68,36,8,141,133,12,252,255,255,137,68,36,4,139,133,16,248,255,255,137,4,36,232,244,251,255,255,137,133,24,248,255,255,131,189,24,248,255,255,0,121,125,141,131,228,228,1,0,139,0,139,0,137,68,36,28, 199,68,36,24,0,0,0,0,199,68,36,20,232,3,0,0,141,133,32,248,255,255,137,68,36,16,141,133,36,248,255,255,137,68,36,12,141,131,164,95,1,0,137,68,36,8,139,133,20,248,255,255,137,68,36,4,139,133,16,248,255,255,137,4,36,232,145,251,255,255,137,133,24,248,255, 255,131,189,24,248,255,255,0,121,26,139,133,20,248,255,255,137,68,36,4,141,131,108,202,1,0,137,4,36,232,115,17,0,0,235,64,139,133,24,248,255,255,137,4,36,232,33,217,1,0,141,133,36,248,255,255,137,4,36,232,146,23,255,255,137,198,139,133,32,248,255,255, 137,4,36,232,130,23,255,255,137,116,36,8,137,68,36,4,199,4,36,0,0,0,0,232,169,7,255,255,141,131,252,226,1,0,139,0,139,85,244,51,16,116,5,232,117,216,1,0,129,196,16,8,0,0,91,94,201,195,85,137,229,86,83,129,236,176,23,0,0,232,0,0,0,0,91,141,131,5,224,1, 0,139,0,139,16,137,85,244,49,210,141,131,233,177,1,0,137,4,36,232,57,217,1,0,137,133,12,248,255,255,199,133,8,248,255,255,1,0,0,0,199,133,28,248,255,255,1,0,0,0,235,23,139,133,28,248,255,255,199,132,133,104,232,255,255,0,0,0,0,255,133,28,248,255,255, 129,189,28,248,255,255,230,3,0,0,126,221,198,133,12,252,255,255,0,131,189,12,248,255,255,0,116,14,139,141,12,248,255,255,137,141,96,232,255,255,235,12,141,131,93,93,1,0,137,133,96,232,255,255,199,68,36,12,232,3,0,0,199,68,36,8,222,3,0,0,139,149,96,232, 255,255,137,84,36,4,141,133,12,252,255,255,137,4,36,232,190,215,1,0,199,68,36,8,232,3,0,0,141,131,41,167,1,0,137,68,36,4,141,133,12,252,255,255,137,4,36,232,146,215,1,0,199,68,36,8,232,3,0,0,141,131,160,199,1,0,137,68,36,4,141,133,12,252,255,255,137, 4,36,232,114,215,1,0,141,131,61,97,1,0,137,68,36,4,141,133,12,252,255,255,137,4,36,232,14,216,1,0,137,133,32,248,255,255,131,189,32,248,255,255,0,117,15,199,133,100,232,255,255,1,0,0,0,233,97,2,0,0,141,133,12,252,255,255,137,68,36,4,141,131,168,199,1, 0,137,4,36,232,198,15,0,0,141,131,93,93,1,0,137,133,104,232,255,255,199,133,28,248,255,255,1,0,0,0,233,189,0,0,0,141,133,36,248,255,255,137,68,36,8,141,131,193,199,1,0,137,68,36,4,139,133,32,248,255,255,137,4,36,232,197,215,1,0,133,192,15,136,163,0,0, 0,198,133,11,252,255,255,0,139,181,28,248,255,255,141,133,36,248,255,255,137,4,36,232,242,216,1,0,64,137,4,36,232,237,215,1,0,137,132,181,104,232,255,255,139,132,181,104,232,255,255,133,192,15,132,122,1,0,0,184,255,255,255,255,131,248,255,116,42,186, 255,255,255,255,139,133,28,248,255,255,139,140,133,104,232,255,255,137,84,36,8,141,133,36,248,255,255,137,68,36,4,137,12,36,232,121,214,1,0,235,31,139,133,28,248,255,255,139,148,133,104,232,255,255,141,133,36,248,255,255,137,68,36,4,137,20,36,232,212, 240,255,255,255,133,28,248,255,255,129,189,28,248,255,255,230,3,0,0,15,142,51,255,255,255,129,189,28,248,255,255,230,3,0,0,126,44,141,131,177,223,1,0,139,0,139,0,137,68,36,12,199,68,36,8,42,0,0,0,199,68,36,4,1,0,0,0,141,131,201,199,1,0,137,4,36,232,238, 214,1,0,139,133,28,248,255,255,199,132,133,104,232,255,255,0,0,0,0,139,133,28,248,255,255,137,133,20,248,255,255,139,133,32,248,255,255,137,4,36,232,123,214,1,0,141,131,181,225,1,0,139,0,139,0,133,192,116,102,131,189,20,248,255,255,0,116,79,141,131,244, 199,1,0,137,4,36,232,86,14,0,0,199,133,28,248,255,255,1,0,0,0,235,37,139,133,28,248,255,255,139,132,133,104,232,255,255,137,68,36,4,141,131,93,167,1,0,137,4,36,232,43,14,0,0,255,133,28,248,255,255,139,133,28,248,255,255,59,133,20,248,255,255,124,205, 235,14,141,131,18,200,1,0,137,4,36,232,7,14,0,0,141,133,104,232,255,255,131,192,4,139,149,20,248,255,255,74,137,68,36,4,137,20,36,232,149,211,255,255,133,192,116,16,141,131,45,200,1,0,137,4,36,232,217,13,0,0,235,10,199,133,8,248,255,255,0,0,0,0,199,133, 28,248,255,255,1,0,0,0,235,44,139,133,28,248,255,255,139,132,133,104,232,255,255,133,192,116,21,139,133,28,248,255,255,139,132,133,104,232,255,255,137,4,36,232,209,213,1,0,255,133,28,248,255,255,129,189,28,248,255,255,230,3,0,0,126,200,139,141,8,248, 255,255,137,141,100,232,255,255,139,133,100,232,255,255,141,147,5,224,1,0,139,18,139,77,244,51,10,116,5,232,187,212,1,0,129,196,176,23,0,0,91,94,201,195,85,137,229,86,83,129,236,208,15,0,0,232,0,0,0,0,91,199,69,240,0,0,0,0,199,69,236,0,0,0,0,141,131, 75,222,1,0,139,0,139,0,139,0,137,4,36,232,178,214,1,0,137,69,232,199,69,228,0,0,0,0,129,125,232,232,3,0,0,126,35,141,131,75,222,1,0,139,0,139,0,139,0,137,68,36,4,141,131,142,196,1,0,137,4,36,232,245,12,0,0,233,107,1,0,0,199,69,244,0,0,0,0,233,43,1,0, 0,141,131,75,222,1,0,139,0,139,0,139,16,139,69,244,141,4,2,15,182,0,15,190,192,137,69,224,131,125,236,0,117,47,131,125,224,0,15,132,253,0,0,0,139,69,224,137,4,36,232,51,1,0,0,133,192,15,133,234,0,0,0,139,69,244,137,69,240,199,69,236,1,0,0,0,233,216,0, 0,0,131,125,224,0,116,19,139,69,224,137,4,36,232,8,1,0,0,133,192,15,132,191,0,0,0,139,85,240,139,69,244,41,208,64,137,4,36,232,250,212,1,0,137,69,220,131,125,220,0,15,132,216,0,0,0,184,255,255,255,255,131,248,255,116,58,190,255,255,255,255,139,85,240, 139,69,244,41,208,137,193,141,131,75,222,1,0,139,0,139,0,139,16,139,69,240,141,4,2,137,116,36,12,137,76,36,8,137,68,36,4,139,69,220,137,4,36,232,139,211,1,0,235,47,139,85,240,139,69,244,41,208,137,193,141,131,75,222,1,0,139,0,139,0,139,16,139,69,240, 141,4,2,137,76,36,8,137,68,36,4,139,69,220,137,4,36,232,43,236,255,255,139,85,240,139,69,244,41,208,3,69,220,198,0,0,139,85,228,139,69,220,137,132,149,60,240,255,255,255,69,228,129,125,228,231,3,0,0,127,23,199,69,236,0,0,0,0,255,69,244,139,69,232,64, 59,69,244,15,143,200,254,255,255,141,133,60,240,255,255,137,68,36,4,139,69,228,137,4,36,232,65,209,255,255,133,192,116,14,141,131,163,196,1,0,137,4,36,232,133,11,0,0,129,196,208,15,0,0,91,94,201,195,85,137,229,131,236,24,199,68,36,4,0,64,0,0,139,69,8, 137,4,36,232,2,0,0,0,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,4,36,232,73,0,0,0,133,192,116,31,139,85,8,141,131,90,220,1,0,139,0,139,68,144,52,35,69,12,133,192,15,149,192,15,182,192,137,69,244,235,29,139,69,12,137,68,36,4,139,69,8, 137,4,36,232,71,210,1,0,133,192,15,149,192,15,182,192,137,69,244,139,69,244,131,196,36,91,201,195,85,137,229,131,236,8,139,69,8,131,224,128,133,192,15,148,192,15,182,192,201,195,85,137,229,83,129,236,36,4,0,0,232,0,0,0,0,91,139,69,8,137,133,244,251,255, 255,141,131,220,217,1,0,139,0,139,16,137,85,244,49,210,139,133,244,251,255,255,139,0,137,133,8,252,255,255,139,133,8,252,255,255,15,182,0,60,43,116,26,139,133,8,252,255,255,137,68,36,4,141,131,84,194,1,0,137,4,36,232,168,15,0,0,235,6,255,133,8,252,255, 255,199,133,4,252,255,255,0,0,0,0,233,22,1,0,0,139,133,8,252,255,255,15,182,0,132,192,15,132,21,1,0,0,139,133,8,252,255,255,15,182,0,60,43,15,133,210,0,0,0,139,133,8,252,255,255,64,15,182,0,60,95,117,25,139,133,4,252,255,255,198,132,5,12,252,255,255, 32,255,133,8,252,255,255,233,193,0,0,0,139,133,8,252,255,255,64,15,182,0,60,43,117,25,139,133,4,252,255,255,198,132,5,12,252,255,255,43,255,133,8,252,255,255,233,154,0,0,0,139,133,8,252,255,255,64,15,182,0,60,99,117,22,139,133,4,252,255,255,198,132,5, 12,252,255,255,44,255,133,8,252,255,255,235,118,139,133,8,252,255,255,64,15,182,0,60,115,117,22,139,133,4,252,255,255,198,132,5,12,252,255,255,59,255,133,8,252,255,255,235,82,139,133,8,252,255,255,64,15,182,0,60,100,117,22,139,133,4,252,255,255,198,132, 5,12,252,255,255,36,255,133,8,252,255,255,235,46,139,133,4,252,255,255,139,149,8,252,255,255,15,182,18,136,148,5,12,252,255,255,235,22,139,133,4,252,255,255,139,149,8,252,255,255,15,182,18,136,148,5,12,252,255,255,255,133,4,252,255,255,255,133,8,252, 255,255,129,189,4,252,255,255,230,3,0,0,15,142,218,254,255,255,139,133,4,252,255,255,198,132,5,12,252,255,255,0,141,133,12,252,255,255,137,4,36,232,114,15,255,255,141,147,220,217,1,0,139,18,139,77,244,51,10,116,5,232,121,208,1,0,129,196,36,4,0,0,91,201, 195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,155,192,1,0,137,4,36,232,42,168,255,255,141,131,218,217,1,0,139,0,139,0,137,69,240,199,69,244,0,0,0,0,235,35,139,69,240,139,64,4,137,68,36,4,141,131,174,192,1,0,137,4,36,232,38,165,255,255,139,69,240, 139,0,137,69,240,255,69,244,131,125,240,0,117,215,141,131,202,192,1,0,137,4,36,232,221,167,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,45,192,1,0,137,4,36,232,188,167,255,255,141,131,168,217,1,0,139,0,139,0,137,69,240, 199,69,244,0,0,0,0,235,35,139,69,240,139,64,4,137,68,36,4,141,131,64,192,1,0,137,4,36,232,184,164,255,255,139,69,240,139,0,137,69,240,255,69,244,131,125,240,0,117,215,141,131,128,192,1,0,137,4,36,232,111,167,255,255,131,196,36,91,201,195,85,137,229,83, 129,236,36,4,0,0,232,0,0,0,0,91,139,69,8,137,133,4,252,255,255,141,131,47,215,1,0,139,0,139,16,137,85,244,49,210,232,247,254,255,255,141,131,223,216,1,0,139,0,139,16,141,131,43,234,1,0,139,0,137,84,36,20,137,68,36,16,141,131,49,192,1,0,137,68,36,12,199, 68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,31,207,1,0,141,133,12,252,255,255,137,68,36,8,141,131,241,255,255,255,137,68,36,4,141,131,123,216,1,0,139,0,137,4,36,232,80,136,0,0,141,131,47,215,1,0,139,0,139,85,244,51,16,116, 5,232,237,206,1,0,129,196,36,4,0,0,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,78,216,1,0,139,0,139,0,137,4,36,232,80,234,255,255,141,131,78,216,1,0,139,0,199,0,0,0,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,15, 144,254,255,137,194,141,131,126,233,1,0,137,16,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,235,143,254,255,137,194,141,131,50,216,1,0,139,0,137,16,199,69,244,0,0,0,0,235,93,139,85,244,131,194,2,139,69,20,137,68,36,8,139,69,16,137, 68,36,4,137,20,36,232,227,143,254,255,137,4,36,232,255,251,255,255,137,69,240,139,69,240,139,0,15,182,0,132,192,116,39,139,69,240,139,16,141,131,78,216,1,0,139,0,139,0,137,84,36,4,137,4,36,232,193,232,255,255,137,194,141,131,78,216,1,0,139,0,137,16,255, 69,244,139,69,16,131,232,2,59,69,244,127,152,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,148,215,1,0,139,0,139,0,139,0,137,68,36,4,141,131,178,190,1,0,137,4,36,232,202,162,255,255,141,131,204,190,1,0,137,4,36,232,146,165,255, 255,141,131,84,215,1,0,139,0,139,0,137,69,240,199,69,244,0,0,0,0,235,35,139,69,240,139,64,4,137,68,36,4,141,131,232,190,1,0,137,4,36,232,142,162,255,255,139,69,240,139,0,137,69,240,255,69,244,131,125,240,0,117,215,131,196,36,91,201,195,85,137,229,83, 129,236,36,4,0,0,232,0,0,0,0,91,139,69,8,137,133,4,252,255,255,141,131,19,213,1,0,139,0,139,16,137,85,244,49,210,232,85,255,255,255,141,131,19,215,1,0,139,0,139,0,139,16,141,131,219,214,1,0,139,0,139,0,137,84,36,20,137,68,36,16,141,131,139,190,1,0,137, 68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,255,204,1,0,141,133,12,252,255,255,137,68,36,8,141,131,241,255,255,255,137,68,36,4,141,131,95,214,1,0,139,0,137,4,36,232,48,134,0,0,141,131,19,213,1,0,139,0,139,85, 244,51,16,116,5,232,205,204,1,0,129,196,36,4,0,0,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,34,214,1,0,139,0,139,0,137,4,36,232,48,232,255,255,141,131,34,214,1,0,139,0,199,0,0,0,0,0,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36, 0,0,0,0,232,239,141,254,255,137,194,141,131,42,214,1,0,139,0,137,16,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,242,141,254,255,137,4,36,232,14,250,255,255,137,194,141,131,98,214,1,0,139,0,137,16,199,69,244,0,0,0,0,235,93,139,85, 244,131,194,2,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,185,141,254,255,137,4,36,232,213,249,255,255,137,69,240,139,69,240,139,0,15,182,0,132,192,116,39,139,69,240,139,16,141,131,34,214,1,0,139,0,139,0,137,84,36,4,137,4,36,232,151,230, 255,255,137,194,141,131,34,214,1,0,139,0,137,16,255,69,244,139,69,16,131,232,2,59,69,244,127,152,131,196,36,91,201,195,85,137,229,131,236,24,199,69,244,0,0,0,0,199,69,240,0,0,0,0,235,82,139,69,244,3,69,12,15,182,0,15,190,192,137,69,236,131,125,236,92, 116,18,131,125,236,123,116,12,131,125,236,125,116,6,131,125,236,59,117,12,139,69,240,3,69,8,198,0,92,255,69,240,139,69,240,137,194,3,85,8,139,69,244,3,69,12,15,182,0,136,2,131,125,236,0,116,14,255,69,244,255,69,240,139,69,240,59,69,16,114,166,139,69, 240,59,69,16,115,11,139,69,240,3,69,8,198,0,0,235,12,139,69,8,72,139,85,16,1,208,198,0,0,139,69,8,201,195,85,137,229,83,129,236,20,4,0,0,232,0,0,0,0,91,139,69,8,137,133,4,252,255,255,141,131,211,210,1,0,139,0,139,16,137,85,244,49,210,141,131,223,212, 1,0,139,0,139,0,133,192,116,23,141,131,223,212,1,0,139,0,139,16,139,133,4,252,255,255,137,4,36,255,210,235,94,141,131,191,212,1,0,139,0,139,0,133,192,116,30,141,131,127,210,1,0,139,0,139,0,137,68,36,4,139,133,4,252,255,255,137,4,36,232,147,203,1,0,235, 50,199,68,36,8,232,3,0,0,139,133,4,252,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,211,254,255,255,137,68,36,4,141,131,111,188,1,0,137,4,36,232,140,159,255,255,141,131,211,210,1,0,139,0,139,85,244,51,16,116,5,232,121,202,1,0,129,196,20,4, 0,0,91,201,195,85,137,229,83,129,236,20,4,0,0,232,0,0,0,0,91,139,69,8,137,133,4,252,255,255,141,131,11,210,1,0,139,0,139,16,137,85,244,49,210,198,69,243,0,141,131,23,212,1,0,139,0,139,0,133,192,116,65,139,133,4,252,255,255,137,68,36,12,141,131,192,187, 1,0,137,68,36,8,199,68,36,4,231,3,0,0,141,133,12,252,255,255,137,4,36,232,22,204,1,0,141,131,23,212,1,0,139,0,139,16,141,133,12,252,255,255,137,4,36,255,210,235,104,141,131,247,211,1,0,139,0,139,0,133,192,116,40,141,131,183,209,1,0,139,0,139,16,139,133, 4,252,255,255,137,68,36,8,141,131,192,187,1,0,137,68,36,4,137,20,36,232,135,202,1,0,235,50,199,68,36,8,232,3,0,0,139,133,4,252,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,211,253,255,255,137,68,36,4,141,131,202,187,1,0,137,4,36,232,140,158, 255,255,141,131,11,210,1,0,139,0,139,85,244,51,16,116,5,232,121,201,1,0,129,196,20,4,0,0,91,201,195,85,137,229,83,129,236,36,4,0,0,232,0,0,0,0,91,139,69,12,137,133,4,252,255,255,141,131,11,209,1,0,139,0,139,16,137,85,244,49,210,198,69,243,0,141,131,23, 211,1,0,139,0,139,0,133,192,116,72,139,133,4,252,255,255,137,68,36,16,139,69,8,137,68,36,12,141,131,227,186,1,0,137,68,36,8,199,68,36,4,231,3,0,0,141,133,12,252,255,255,137,4,36,232,15,203,1,0,141,131,23,211,1,0,139,0,139,16,141,133,12,252,255,255,137, 4,36,255,210,235,121,141,131,247,210,1,0,139,0,139,0,133,192,116,47,141,131,183,208,1,0,139,0,139,16,139,133,4,252,255,255,137,68,36,12,139,69,8,137,68,36,8,141,131,227,186,1,0,137,68,36,4,137,20,36,232,121,201,1,0,235,60,199,68,36,8,232,3,0,0,139,133, 4,252,255,255,137,68,36,4,141,133,12,252,255,255,137,4,36,232,197,252,255,255,139,85,8,131,194,4,137,68,36,8,137,84,36,4,141,131,243,186,1,0,137,4,36,232,116,157,255,255,141,131,11,209,1,0,139,0,139,85,244,51,16,116,5,232,97,200,1,0,129,196,36,4,0,0, 91,201,195,85,137,229,83,129,236,4,8,0,0,232,0,0,0,0,91,139,69,8,137,133,20,248,255,255,141,131,243,207,1,0,139,0,139,16,137,85,244,49,210,198,69,243,0,141,131,255,209,1,0,139,0,139,0,133,192,116,65,139,133,20,248,255,255,137,68,36,12,141,131,245,185, 1,0,137,68,36,8,199,68,36,4,231,3,0,0,141,133,12,252,255,255,137,4,36,232,254,201,1,0,141,131,255,209,1,0,139,0,139,16,141,133,12,252,255,255,137,4,36,255,210,235,104,141,131,223,209,1,0,139,0,139,0,133,192,116,40,141,131,159,207,1,0,139,0,139,16,139, 133,20,248,255,255,137,68,36,8,141,131,245,185,1,0,137,68,36,4,137,20,36,232,111,200,1,0,235,50,199,68,36,8,232,3,0,0,139,133,20,248,255,255,137,68,36,4,141,133,36,248,255,255,137,4,36,232,187,251,255,255,137,68,36,4,141,131,143,185,1,0,137,4,36,232, 116,156,255,255,141,131,243,207,1,0,139,0,139,85,244,51,16,116,5,232,97,199,1,0,129,196,4,8,0,0,91,201,195,85,137,229,83,129,236,68,4,0,0,232,0,0,0,0,91,139,69,8,137,133,212,251,255,255,141,131,243,206,1,0,139,0,139,16,137,85,244,49,210,141,69,12,137, 133,8,252,255,255,139,133,8,252,255,255,137,68,36,12,139,133,212,251,255,255,137,68,36,8,199,68,36,4,231,3,0,0,141,133,12,252,255,255,137,4,36,232,97,201,1,0,199,68,36,8,232,3,0,0,141,131,5,163,1,0,137,68,36,4,141,133,12,252,255,255,137,4,36,232,227, 198,1,0,141,133,12,252,255,255,137,4,36,232,151,251,255,255,141,131,243,206,1,0,139,0,139,85,244,51,16,116,5,232,187,198,1,0,129,196,68,4,0,0,91,201,195,85,137,229,83,129,236,68,4,0,0,232,0,0,0,0,91,139,69,8,137,133,212,251,255,255,141,131,77,206,1,0, 139,0,139,16,137,85,244,49,210,141,69,12,137,133,8,252,255,255,139,133,8,252,255,255,137,68,36,12,139,133,212,251,255,255,137,68,36,8,199,68,36,4,231,3,0,0,141,133,12,252,255,255,137,4,36,232,187,200,1,0,141,133,12,252,255,255,137,4,36,232,17,251,255, 255,141,131,77,206,1,0,139,0,139,85,244,51,16,116,5,232,53,198,1,0,129,196,68,4,0,0,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,229,85,1,0,137,4,36,232,217,250,255,255,139,69,8,137,4,36,232,206,250,255,255,131,196,20,91,201,195,85,137, 229,83,129,236,20,4,0,0,232,0,0,0,0,91,139,69,12,137,133,4,252,255,255,141,131,155,205,1,0,139,0,139,16,137,85,244,49,210,199,133,8,252,255,255,0,0,0,0,235,63,139,133,8,252,255,255,193,224,3,137,194,3,149,4,252,255,255,199,68,36,8,232,3,0,0,141,133,12, 252,255,255,137,68,36,4,137,20,36,232,139,135,254,255,141,133,12,252,255,255,137,4,36,232,103,255,255,255,255,133,8,252,255,255,139,133,8,252,255,255,59,69,8,124,182,141,131,155,205,1,0,139,0,139,85,244,51,16,116,5,232,110,197,1,0,129,196,20,4,0,0,91, 201,195,85,137,229,83,131,236,116,232,0,0,0,0,91,141,131,3,205,1,0,139,0,139,16,137,85,244,49,210,199,69,156,1,0,0,0,139,69,8,137,69,160,141,69,156,137,68,36,4,199,4,36,1,0,0,0,232,41,255,255,255,141,131,3,205,1,0,139,0,139,85,244,51,16,116,5,232,21, 197,1,0,131,196,116,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,185,206,1,0,139,0,139,0,133,192,116,23,141,131,185,206,1,0,139,0,139,16,141,131,191,160,1,0,137,4,36,255,210,235,56,141,131,153,206,1,0,139,0,139,0,133,192,116,28,141,131, 89,204,1,0,139,0,139,0,137,68,36,4,199,4,36,10,0,0,0,232,129,197,1,0,235,14,141,131,85,73,1,0,137,4,36,232,77,253,255,255,131,196,20,91,201,195,85,137,229,83,129,236,68,4,0,0,232,0,0,0,0,91,139,69,8,137,133,212,251,255,255,141,131,58,204,1,0,139,0,139, 16,137,85,244,49,210,141,69,12,137,133,8,252,255,255,139,133,8,252,255,255,137,68,36,12,139,133,212,251,255,255,137,68,36,8,199,68,36,4,231,3,0,0,141,133,12,252,255,255,137,4,36,232,168,198,1,0,141,133,12,252,255,255,137,4,36,232,198,249,255,255,232, 34,255,255,255,141,131,58,204,1,0,139,0,139,85,244,51,16,116,5,232,29,196,1,0,129,196,68,4,0,0,91,201,195,85,137,229,83,129,236,68,4,0,0,232,0,0,0,0,91,139,69,12,137,133,212,251,255,255,141,131,175,203,1,0,139,0,139,16,137,85,244,49,210,141,131,95,205, 1,0,139,0,139,0,57,69,8,127,77,141,69,16,137,133,8,252,255,255,139,133,8,252,255,255,137,68,36,12,139,133,212,251,255,255,137,68,36,8,199,68,36,4,231,3,0,0,141,133,12,252,255,255,137,4,36,232,14,198,1,0,141,133,12,252,255,255,137,68,36,4,139,69,8,137, 4,36,232,37,250,255,255,232,129,254,255,255,141,131,175,203,1,0,139,0,139,85,244,51,16,116,5,232,124,195,1,0,129,196,68,4,0,0,91,201,195,85,137,229,83,129,236,68,4,0,0,232,0,0,0,0,91,139,69,8,137,133,212,251,255,255,139,69,12,137,133,208,251,255,255, 141,131,14,203,1,0,139,0,139,16,137,85,244,49,210,141,69,16,137,133,8,252,255,255,139,133,8,252,255,255,137,68,36,12,139,133,208,251,255,255,137,68,36,8,199,68,36,4,231,3,0,0,141,133,12,252,255,255,137,4,36,232,115,197,1,0,141,133,12,252,255,255,137, 4,36,232,145,248,255,255,232,237,253,255,255,141,147,14,10,2,0,139,133,212,251,255,255,137,2,141,131,10,10,2,0,139,0,133,192,117,34,141,131,46,181,1,0,137,68,36,4,199,4,36,0,0,0,0,232,184,254,255,255,141,131,10,10,2,0,199,0,1,0,0,0,141,131,14,203,1,0, 139,0,139,85,244,51,16,116,5,232,172,194,1,0,129,196,68,4,0,0,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,65,9,2,0,139,0,133,192,117,16,141,131,158,180,1,0,137,4,36,232,36,251,255,255,235,54,141,131,181,180,1,0,137,4,36,232,20,251,255, 255,141,131,93,9,2,0,137,68,36,4,141,131,153,145,1,0,137,4,36,232,252,250,255,255,141,131,65,9,2,0,139,0,137,4,36,232,192,107,251,255,131,196,20,91,201,195,85,137,229,83,129,236,68,4,0,0,232,0,0,0,0,91,139,69,8,137,133,212,251,255,255,141,131,217,201, 1,0,139,0,139,16,137,85,244,49,210,141,69,12,137,133,8,252,255,255,139,133,8,252,255,255,137,68,36,12,139,133,212,251,255,255,137,68,36,8,199,68,36,4,231,3,0,0,141,133,12,252,255,255,137,4,36,232,71,196,1,0,141,133,12,252,255,255,137,4,36,232,125,249, 255,255,232,193,252,255,255,141,131,217,201,1,0,139,0,139,85,244,51,16,116,5,232,188,193,1,0,129,196,68,4,0,0,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,145,110,9,2,0,139,69,8,137,2,141,145,114,9,2,0,139,69,12,137,2,201,195,85,137,229,83,131, 236,20,232,0,0,0,0,91,141,147,73,9,2,0,139,69,8,137,2,232,72,193,1,0,139,0,137,4,36,232,150,195,1,0,137,194,141,131,77,9,2,0,137,16,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,18,9,2,0,139,0,15,182,0,132,192,116,40,141,131,22, 9,2,0,139,16,141,131,18,9,2,0,139,0,137,84,36,8,137,68,36,4,141,131,81,61,1,0,137,4,36,232,119,252,255,255,235,26,141,131,22,9,2,0,139,0,137,68,36,4,141,131,78,144,1,0,137,4,36,232,91,252,255,255,141,131,130,179,1,0,137,4,36,232,193,152,255,255,131,196, 20,91,201,195,85,137,229,131,236,8,232,0,0,0,0,89,139,69,8,15,182,0,15,182,208,141,129,33,191,1,0,15,182,4,16,15,190,192,64,201,195,85,137,229,131,236,40,232,0,0,0,0,89,139,69,20,3,69,16,137,69,240,199,69,232,0,0,0,0,233,215,0,0,0,139,69,16,15,182,0, 15,182,208,141,129,252,190,1,0,15,182,4,16,15,190,192,137,69,236,131,125,20,255,117,16,139,69,16,15,182,0,132,192,15,132,183,0,0,0,235,15,139,69,236,3,69,16,59,69,240,15,131,166,0,0,0,199,69,244,0,0,0,0,139,69,236,137,69,228,131,125,228,1,116,66,131, 125,228,1,127,8,131,125,228,0,116,73,235,86,131,125,228,2,116,27,131,125,228,3,116,2,235,72,139,69,16,15,182,0,15,182,192,1,69,244,255,69,16,193,101,244,6,139,69,16,15,182,0,15,182,192,1,69,244,255,69,16,193,101,244,6,139,69,16,15,182,0,15,182,192,1, 69,244,255,69,16,193,101,244,6,139,69,16,15,182,0,15,182,192,1,69,244,255,69,16,139,85,236,141,129,220,190,1,0,139,4,144,41,69,244,139,69,232,193,224,2,137,194,3,85,8,139,69,244,137,2,255,69,232,139,69,12,72,59,69,232,15,143,28,255,255,255,139,69,232, 193,224,2,3,69,8,199,0,0,0,0,0,139,69,232,201,195,85,137,229,131,236,40,199,69,240,0,0,0,0,139,69,12,3,69,8,137,69,236,233,82,1,0,0,139,69,240,193,224,2,3,69,16,139,0,137,69,244,131,125,244,127,119,37,139,69,8,59,69,236,114,11,139,69,240,137,69,224,233, 108,1,0,0,139,69,244,137,194,139,69,8,136,16,255,69,8,233,22,1,0,0,129,125,244,255,7,0,0,119,63,139,69,236,72,59,69,8,119,11,139,69,240,137,69,224,233,61,1,0,0,139,69,244,193,232,6,131,200,192,137,194,139,69,8,136,16,255,69,8,139,69,244,131,224,63,131, 200,128,137,194,139,69,8,136,16,255,69,8,233,206,0,0,0,129,125,244,255,255,0,0,119,84,139,69,236,131,232,2,59,69,8,119,11,139,69,240,137,69,224,233,243,0,0,0,139,69,244,193,232,12,131,200,224,137,194,139,69,8,136,16,255,69,8,139,69,244,193,232,6,131, 224,63,131,200,128,137,194,139,69,8,136,16,255,69,8,139,69,244,131,224,63,131,200,128,137,194,139,69,8,136,16,255,69,8,235,113,129,125,244,255,255,16,0,119,104,139,69,236,131,232,3,59,69,8,119,11,139,69,240,137,69,224,233,150,0,0,0,139,69,244,193,232, 18,131,200,240,137,194,139,69,8,136,16,255,69,8,139,69,244,193,232,12,131,224,63,131,200,128,137,194,139,69,8,136,16,255,69,8,139,69,244,193,232,6,131,224,63,131,200,128,137,194,139,69,8,136,16,255,69,8,139,69,244,131,224,63,131,200,128,137,194,139,69, 8,136,16,255,69,8,255,69,240,131,125,20,0,121,19,139,69,240,193,224,2,3,69,16,139,0,133,192,15,149,69,231,235,10,139,69,240,59,69,20,15,156,69,231,128,125,231,0,15,133,129,254,255,255,139,69,8,59,69,236,115,6,139,69,8,198,0,0,139,69,240,137,69,224,139, 69,224,201,195,85,137,229,131,236,24,131,125,8,127,119,9,199,69,244,1,0,0,0,235,61,129,125,8,255,7,0,0,119,9,199,69,244,2,0,0,0,235,43,129,125,8,255,255,0,0,119,9,199,69,244,3,0,0,0,235,25,129,125,8,255,255,31,0,119,9,199,69,244,4,0,0,0,235,7,199,69, 244,0,0,0,0,139,69,244,201,195,85,137,229,131,236,24,131,125,12,127,119,22,139,69,12,137,194,139,69,8,136,16,199,69,244,1,0,0,0,233,217,0,0,0,129,125,12,255,7,0,0,119,43,139,69,12,193,232,6,131,200,192,137,194,139,69,8,136,16,139,85,8,66,139,69,12,131, 224,63,131,200,128,136,2,199,69,244,2,0,0,0,233,165,0,0,0,129,125,12,255,255,0,0,119,60,139,69,12,193,232,12,131,200,224,137,194,139,69,8,136,16,139,85,8,66,139,69,12,193,232,6,131,224,63,131,200,128,136,2,139,85,8,131,194,2,139,69,12,131,224,63,131, 200,128,136,2,199,69,244,3,0,0,0,235,96,129,125,12,255,255,16,0,119,80,139,69,12,193,232,18,131,200,240,137,194,139,69,8,136,16,139,85,8,66,139,69,12,193,232,12,131,224,63,131,200,128,136,2,139,85,8,131,194,2,139,69,12,193,232,6,131,224,63,131,200,128, 136,2,139,85,8,131,194,3,139,69,12,131,224,63,131,200,128,136,2,199,69,244,4,0,0,0,235,7,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,131,236,40,139,69,12,137,68,36,4,139,69,8,137,4,36,232,232,254,255,255,137,69,244,139,69,244,3,69,8,198,0,0,139, 69,244,201,195,85,137,229,131,236,24,199,69,244,0,0,0,0,235,87,255,69,244,139,69,244,3,69,8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,57,255,69,244,139,69,244,3,69,8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,30,255,69,244,139,69,244,3, 69,8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,3,255,69,244,255,77,12,131,125,12,0,126,13,139,69,244,3,69,8,15,182,0,132,192,117,150,139,69,244,201,195,85,137,229,131,236,24,199,69,244,0,0,0,0,199,69,240,0,0,0,0,235,87,255,69,240,139,69,240,3, 69,8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,57,255,69,240,139,69,240,3,69,8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,30,255,69,240,139,69,240,3,69,8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,3,255,69,240,255,69,244,139,69, 240,59,69,12,125,13,139,69,240,3,69,8,15,182,0,132,192,117,148,139,69,244,201,195,85,137,229,131,236,24,232,0,0,0,0,89,199,69,244,0,0,0,0,199,69,240,0,0,0,0,193,101,244,6,139,69,12,139,16,137,208,3,69,8,15,182,0,15,182,192,1,69,244,66,139,69,12,137,16, 255,69,240,139,69,12,139,0,3,69,8,15,182,0,132,192,116,26,139,69,12,139,0,3,69,8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,116,183,139,85,240,74,141,129,139,185,1,0,139,4,144,41,69,244,139,69,244,201,195,85,137,229,131,236,40,199,69,244,0,0,0,0,199, 69,240,0,0,0,0,235,3,255,69,244,141,69,240,137,68,36,4,139,69,8,137,4,36,232,93,255,255,255,133,192,117,231,139,69,244,201,195,85,137,229,131,236,8,139,69,12,139,0,141,80,1,139,69,12,137,16,139,69,12,139,0,3,69,8,15,182,0,15,190,192,37,192,0,0,0,61,128, 0,0,0,117,91,139,69,12,139,0,141,80,1,139,69,12,137,16,139,69,12,139,0,3,69,8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,52,139,69,12,139,0,141,80,1,139,69,12,137,16,139,69,12,139,0,3,69,8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,13,139, 69,12,139,0,141,80,1,139,69,12,137,16,201,195,85,137,229,131,236,8,139,69,12,139,0,141,80,255,139,69,12,137,16,139,69,12,139,0,3,69,8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,91,139,69,12,139,0,141,80,255,139,69,12,137,16,139,69,12,139,0,3,69, 8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,52,139,69,12,139,0,141,80,255,139,69,12,137,16,139,69,12,139,0,3,69,8,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,13,139,69,12,139,0,141,80,255,139,69,12,137,16,201,195,85,137,229,131,236,8,139, 69,8,139,0,141,80,1,139,69,8,137,16,139,69,8,139,0,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,85,139,69,8,139,0,141,80,1,139,69,8,137,16,139,69,8,139,0,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,49,139,69,8,139,0,141,80,1,139,69,8,137,16, 139,69,8,139,0,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,13,139,69,8,139,0,141,80,1,139,69,8,137,16,201,195,85,137,229,131,236,8,139,69,8,139,0,141,80,255,139,69,8,137,16,139,69,8,139,0,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,85,139, 69,8,139,0,141,80,255,139,69,8,137,16,139,69,8,139,0,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,49,139,69,8,139,0,141,80,255,139,69,8,137,16,139,69,8,139,0,15,182,0,15,190,192,37,192,0,0,0,61,128,0,0,0,117,13,139,69,8,139,0,141,80,255,139,69,8, 137,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,243,15,16,69,8,141,131,248,179,1,0,243,15,16,8,15,46,200,115,2,235,17,141,131,168,178,1,0,243,15,16,0,243,15,17,69,236,235,95,243,15,16,69,8,141,131,252,179,1,0,15,46,0,119,2,235,21,141,131,252,179, 1,0,139,0,137,4,36,232,170,255,255,255,217,93,236,235,56,243,15,90,77,8,141,131,32,180,1,0,242,15,16,0,242,15,89,193,242,15,17,4,36,232,210,184,1,0,221,93,240,141,131,40,180,1,0,242,15,16,0,242,15,89,69,240,242,15,90,192,243,15,17,69,236,217,69,236,131, 196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,12,178,1,0,243,15,16,8,243,15,16,69,8,15,46,193,119,2,235,58,243,15,90,77,8,141,131,148,179,1,0,242,15,16,0,242,15,89,193,242,15,17,4,36,232,242,184,1,0,221,93,240,141,131,156,179,1,0, 242,15,16,0,242,15,89,69,240,242,15,90,192,243,15,17,69,236,235,15,141,131,92,179,1,0,243,15,16,0,243,15,17,69,236,139,69,236,137,69,228,243,15,16,69,228,243,15,17,69,228,217,69,228,131,196,52,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,141,131, 135,177,1,0,243,15,16,0,15,46,69,8,115,2,235,17,141,131,135,177,1,0,243,15,16,0,243,15,17,69,212,235,115,243,15,90,69,8,242,15,17,4,36,232,110,184,1,0,221,93,216,141,131,63,179,1,0,242,15,16,0,242,15,16,77,216,242,15,89,200,141,131,31,179,1,0,242,15, 16,0,242,15,88,193,242,15,90,192,243,15,17,69,244,141,131,135,177,1,0,243,15,16,0,15,46,69,244,118,2,235,12,243,15,16,69,244,243,15,17,69,228,235,15,141,131,135,177,1,0,243,15,16,0,243,15,17,69,228,243,15,16,69,228,243,15,17,69,212,217,69,212,131,196, 68,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,141,131,219,176,1,0,243,15,16,0,15,46,69,8,115,2,235,17,141,131,219,176,1,0,243,15,16,0,243,15,17,69,212,235,115,243,15,90,69,8,242,15,17,4,36,232,194,183,1,0,221,93,216,141,131,131,178,1,0,242,15, 16,0,242,15,16,77,216,242,15,89,200,141,131,115,178,1,0,242,15,16,0,242,15,88,193,242,15,90,192,243,15,17,69,244,141,131,219,176,1,0,243,15,16,0,15,46,69,244,118,2,235,12,243,15,16,69,244,243,15,17,69,228,235,15,141,131,219,176,1,0,243,15,16,0,243,15, 17,69,228,243,15,16,69,228,243,15,17,69,212,217,69,212,131,196,68,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,47,176,1,0,243,15,16,0,15,46,69,8,115,2,235,17,141,131,47,176,1,0,243,15,16,0,243,15,17,69,236,235,85,243,15,16,69,8,141,131, 139,177,1,0,15,46,0,119,2,235,11,141,131,139,177,1,0,139,0,137,69,8,243,15,90,77,8,141,131,199,177,1,0,242,15,16,0,242,15,92,200,141,131,223,177,1,0,242,15,16,0,242,15,89,193,242,15,17,4,36,232,89,182,1,0,221,93,240,242,15,90,69,240,243,15,17,69,236, 217,69,236,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,161,175,1,0,243,15,16,0,15,46,69,8,115,2,235,17,141,131,161,175,1,0,243,15,16,0,243,15,17,69,236,235,85,243,15,16,69,8,141,131,249,176,1,0,15,46,0,119,2,235,11,141,131,249, 176,1,0,139,0,137,69,8,243,15,90,77,8,141,131,57,177,1,0,242,15,16,0,242,15,92,200,141,131,65,177,1,0,242,15,16,0,242,15,89,193,242,15,17,4,36,232,203,181,1,0,221,93,240,242,15,90,69,240,243,15,17,69,236,217,69,236,131,196,36,91,201,195,85,137,229,83, 131,236,36,232,0,0,0,0,91,141,131,219,252,1,0,139,0,137,4,36,232,23,41,255,255,137,69,244,141,131,71,188,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,203,27,255,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,12,137,4,36,232,26,252, 255,255,139,69,8,139,64,12,217,92,36,4,137,4,36,232,85,29,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,122,252,1,0,139,0,137,4,36,232,178,40,255,255,137,69,244,141,131,226,187,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,102,27,255, 255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,12,137,4,36,232,81,252,255,255,139,69,8,139,64,12,217,92,36,4,137,4,36,232,240,28,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,25,252,1,0,139,0,137,4,36,232,77,40,255, 255,137,69,244,141,131,125,187,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,1,27,255,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,12,137,4,36,232,29,253,255,255,139,69,8,139,64,12,217,92,36,4,137,4,36,232,139,28,255,255,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,184,251,1,0,139,0,137,4,36,232,232,39,255,255,137,69,244,141,131,24,187,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,156,26,255,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,12,137, 4,36,232,12,252,255,255,139,69,8,139,64,12,217,92,36,4,137,4,36,232,38,28,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,87,251,1,0,139,0,137,4,36,232,131,39,255,255,137,69,244,141,131,179,186,1,0,139,0,137,68,36,4,139,69,244,137,4,36, 232,55,26,255,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,12,137,4,36,232,255,252,255,255,139,69,8,139,64,12,217,92,36,4,137,4,36,232,193,27,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,246,250,1,0,139,0,137,4, 36,232,30,39,255,255,137,69,244,141,131,78,186,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,210,25,255,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,12,137,4,36,232,40,253,255,255,139,69,8,139,64,12,217,92,36,4,137,4,36,232,92,27, 255,255,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,235,164,1,0,137,4,36,232,133,241,254,255,137,69,244,141,131,248,164,1,0,137,4,36,232,116,241,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0, 0,0,0,141,131,150,253,255,255,137,68,36,4,137,20,36,232,36,230,254,255,137,194,141,131,125,250,1,0,137,16,141,147,214,253,255,255,141,131,125,250,1,0,139,0,137,84,36,4,137,4,36,232,185,237,254,255,141,131,125,250,1,0,139,16,139,69,244,137,68,36,4,137, 20,36,232,39,238,254,255,141,131,253,164,1,0,137,4,36,232,247,240,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,251,253,255,255,137,68,36,4,137,20,36,232,167,229,254,255,137,194,141,131,129, 250,1,0,137,16,141,147,59,254,255,255,141,131,129,250,1,0,139,0,137,84,36,4,137,4,36,232,60,237,254,255,141,131,129,250,1,0,139,16,139,69,244,137,68,36,4,137,20,36,232,170,237,254,255,141,131,2,165,1,0,137,4,36,232,122,240,254,255,137,194,199,68,36,20, 0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,197,254,255,255,137,68,36,4,137,20,36,232,42,229,254,255,137,194,141,131,137,250,1,0,137,16,141,147,5,255,255,255,141,131,137,250,1,0,139,0,137,84,36,4,137,4,36,232,191,236, 254,255,141,131,137,250,1,0,139,16,139,69,244,137,68,36,4,137,20,36,232,45,237,254,255,141,131,10,165,1,0,137,4,36,232,253,239,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,96,254,255,255, 137,68,36,4,137,20,36,232,173,228,254,255,137,194,141,131,133,250,1,0,137,16,141,147,160,254,255,255,141,131,133,250,1,0,139,0,137,84,36,4,137,4,36,232,66,236,254,255,141,131,133,250,1,0,139,16,139,69,244,137,68,36,4,137,20,36,232,176,236,254,255,141, 131,18,165,1,0,137,4,36,232,128,239,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,42,255,255,255,137,68,36,4,137,20,36,232,48,228,254,255,137,194,141,131,141,250,1,0,137,16,141,147,106,255, 255,255,141,131,141,250,1,0,139,0,137,84,36,4,137,4,36,232,197,235,254,255,141,131,141,250,1,0,139,16,139,69,244,137,68,36,4,137,20,36,232,51,236,254,255,141,131,26,165,1,0,137,4,36,232,3,239,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0, 199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,143,255,255,255,137,68,36,4,137,20,36,232,179,227,254,255,137,194,141,131,145,250,1,0,137,16,141,147,207,255,255,255,141,131,145,250,1,0,139,0,137,84,36,4,137,4,36,232,72,235,254,255,141,131,145,250,1, 0,139,16,139,69,244,137,68,36,4,137,20,36,232,182,235,254,255,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,4,36,232,172,35,255,255,137,69,244,139,85,244,141,131,215,182,1,0,139,0,137,68,36,4,137,20,36,232,96,22,255,255,139, 69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,113,17,255,255,139,85,244,141,131,163,169,1,0,139,0,137,66,28,139,85,244,139,69,12,137,66,32,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,28,247,1,0,139,16,139, 69,8,137,68,36,4,137,20,36,232,117,255,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,243,15,88,193,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,137,23,255,255,201,195,85,137,229,131,236,24, 139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,243,15,88,193,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,80,23,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,141,246,1,0,139,16,139,69,8,137,68,36, 4,137,20,36,232,226,254,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,40,209,243,15,92,208,15,40,194,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,240,22,255,255,201,195,85,137,229,131,236, 24,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,40,209,243,15,92,208,15,40,194,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,177,22,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,242,245,1,0,139, 16,139,69,8,137,68,36,4,137,20,36,232,67,254,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,243,15,89,193,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,87,22,255,255,201,195,85,137,229,131,236, 24,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,243,15,89,193,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,30,22,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,99,245,1,0,139,16,139,69,8,137,68, 36,4,137,20,36,232,176,253,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16,72,32,141,131,77,167,1,0,243,15,16,0,15,46,200,117,4,122,2,235,30,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,40,209,243,15,94, 208,243,15,17,85,244,235,15,141,131,77,167,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,85,244,243,15,17,84,36,4,137,4,36,232,132,21,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,139,69,12,137,66,28,139, 69,8,243,15,16,72,32,141,131,217,166,1,0,243,15,16,0,15,46,200,117,4,122,2,235,30,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,40,209,243,15,94,208,243,15,17,85,244,235,15,141,131,217,166,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243, 15,16,85,244,243,15,17,84,36,4,137,4,36,232,7,21,255,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,76,244,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,149,252,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0, 0,0,91,139,69,8,243,15,16,72,28,141,131,50,166,1,0,243,15,16,0,15,46,200,119,2,235,29,139,69,8,139,80,32,139,69,8,139,64,28,137,84,36,4,137,4,36,232,98,173,1,0,217,93,244,235,15,141,131,50,166,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15, 16,69,244,243,15,17,68,36,4,137,4,36,232,108,20,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,141,131,193,165,1,0,243,15,16,0,15,46,200,119,2,235,29,139,69,8,139,80,32,139, 69,8,139,64,28,137,84,36,4,137,4,36,232,232,172,1,0,217,93,244,235,15,141,131,193,165,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,242,19,255,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232, 0,0,0,0,91,141,131,59,243,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,128,251,255,255,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,200,119,2,235,15,139,69,8,243,15,16,64,28,243,15,17,69,244,235, 13,139,69,8,243,15,16,64,32,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,112,19,255,255,201,195,85,137,229,131,236,40,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,200,119, 2,235,15,139,69,8,243,15,16,64,28,243,15,17,69,244,235,13,139,69,8,243,15,16,64,32,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,19,19,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,100,242,1,0,139, 16,139,69,8,137,68,36,4,137,20,36,232,165,250,255,255,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,193,119,2,235,15,139,69,8,243,15,16,64,28,243,15,17,69,244,235,13,139,69,8,243,15,16,64,32,243,15, 17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,149,18,255,255,201,195,85,137,229,131,236,40,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,193,119,2,235,15,139,69,8,243,15,16,64,28,243, 15,17,69,244,235,13,139,69,8,243,15,16,64,32,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,56,18,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,4,36,232,154,29,255,255,137,69,244,139,85,244, 141,131,197,176,1,0,139,0,137,68,36,4,137,20,36,232,78,16,255,255,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,95,11,255,255,139,85,244,141,131,145,163,1,0,139,0,137,66,28,139,85,244,139,69,12,137,66,32,139,69,244,131,196,36,91,201,195, 85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,38,241,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,117,255,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,200,122,2,116,2, 235,17,141,131,4,163,1,0,243,15,16,0,243,15,17,69,244,235,15,141,131,0,163,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,70,17,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91, 139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,200,122,2,116,2,235,17,141,131,159,162,1,0,243,15,16,0,243,15,17,69,244,235,15,141,131,155,162,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243, 15,17,68,36,4,137,4,36,232,216,16,255,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,45,240,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,120,254,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69, 8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,200,117,4,122,2,235,17,141,131,7,162,1,0,243,15,16,0,243,15,17,69,244,235,15,141,131,3,162,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,73,16,255, 255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,200,117,4,122,2,235,17,141,131,162,161,1,0,243,15,16,0,243,15,17,69,244,235,15,141,131,158,161,1,0, 243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,219,15,255,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,52,239,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,123,253,255,255, 131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,200,119,2,235,17,141,131,10,161,1,0,243,15,16,0,243,15,17,69,244,235,15,141,131,6,161,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139, 64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,78,15,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,200,119,2,235,17,141,131,167,160,1, 0,243,15,16,0,243,15,17,69,244,235,15,141,131,163,160,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,226,14,255,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,63,238,1,0, 139,16,139,69,8,137,68,36,4,137,20,36,232,130,252,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,193,119,2,235,17,141,131,17,160,1,0,243,15,16,0,243,15,17,69,244,235,15,141, 131,13,160,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,85,14,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8, 243,15,16,64,32,15,46,193,119,2,235,17,141,131,174,159,1,0,243,15,16,0,243,15,17,69,244,235,15,141,131,170,159,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,233,13,255,255,131,196,36,91,201,195,85, 137,229,83,131,236,20,232,0,0,0,0,91,141,131,74,237,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,137,251,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,200,115,2,235,17,141, 131,24,159,1,0,243,15,16,0,243,15,17,69,244,235,15,141,131,20,159,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,92,13,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8, 139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,200,115,2,235,17,141,131,181,158,1,0,243,15,16,0,243,15,17,69,244,235,15,141,131,177,158,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36, 4,137,4,36,232,240,12,255,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,85,236,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,144,250,255,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16, 72,28,139,69,8,243,15,16,64,32,15,46,193,115,2,235,17,141,131,31,158,1,0,243,15,16,0,243,15,17,69,244,235,15,141,131,27,158,1,0,243,15,16,0,243,15,17,69,244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,99,12,255,255,131,196,36,91, 201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,193,115,2,235,17,141,131,188,157,1,0,243,15,16,0,243,15,17,69,244,235,15,141,131,184,157,1,0,243,15,16,0,243,15,17,69, 244,139,69,8,139,64,12,243,15,16,69,244,243,15,17,68,36,4,137,4,36,232,247,11,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,4,36,232,85,23,255,255,137,69,244,139,85,244,141,131,128,170,1,0,139,0,137,68,36,4,137,20, 36,232,9,10,255,255,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,26,5,255,255,139,85,244,141,131,76,157,1,0,139,0,137,66,28,139,85,244,139,69,12,137,66,32,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131, 249,234,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,117,255,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,243,15,16,64,28,243,15,44,208,139,69,8,243,15,16,64,32,243,15,44,192,33,208,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4, 137,4,36,232,40,11,255,255,201,195,85,137,229,131,236,24,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,64,28,243,15,44,208,139,69,8,243,15,16,64,32,243,15,44,192,33,208,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,229,10,255,255, 201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,86,234,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,206,254,255,255,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8,243,15,16,64,28,243,15,44,192,133,192,116,25,139,69,8,243,15,16,64,32,243, 15,44,192,133,192,116,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,243,15,42,69,244,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,106,10,255,255,201,195,85,137,229,131,236,40,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,64,28,243,15,44,192,133, 192,116,25,139,69,8,243,15,16,64,32,243,15,44,192,133,192,116,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,243,15,42,69,244,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,16,10,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,133,233, 1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,249,253,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,243,15,16,64,28,243,15,44,208,139,69,8,243,15,16,64,32,243,15,44,192,9,208,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36, 232,172,9,255,255,201,195,85,137,229,131,236,24,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,64,28,243,15,44,208,139,69,8,243,15,16,64,32,243,15,44,192,9,208,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,105,9,255,255,201,195,85, 137,229,83,131,236,20,232,0,0,0,0,91,141,131,226,232,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,82,253,255,255,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8,243,15,16,64,28,243,15,44,192,133,192,117,16,139,69,8,243,15,16,64,32,243,15,44,192, 133,192,116,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,243,15,42,69,244,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,238,8,255,255,201,195,85,137,229,131,236,40,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,64,28,243,15,44,192,133,192,117,16, 139,69,8,243,15,16,64,32,243,15,44,192,133,192,116,9,199,69,244,1,0,0,0,235,7,199,69,244,0,0,0,0,243,15,42,69,244,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,148,8,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,17,232,1,0,139,16, 139,69,8,137,68,36,4,137,20,36,232,125,252,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,243,15,16,64,28,243,15,44,208,139,69,8,243,15,16,64,32,243,15,44,200,137,208,211,224,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232, 46,8,255,255,201,195,85,137,229,131,236,24,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,64,28,243,15,44,208,139,69,8,243,15,16,64,32,243,15,44,200,137,208,211,224,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,233,7,255,255,201,195, 85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,106,231,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,210,251,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,243,15,16,64,28,243,15,44,208,139,69,8,243,15,16,64,32,243,15,44,200,137,208,211, 248,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,131,7,255,255,201,195,85,137,229,131,236,24,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,64,28,243,15,44,208,139,69,8,243,15,16,64,32,243,15,44,200,137,208,211,248,243,15,42,192,139, 69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,62,7,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,195,230,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,39,251,255,255,131,196,20,91,201,195,85,137,229,131,236,56,139,69,8,243,15,16,64, 32,243,15,44,192,137,69,244,139,69,8,243,15,16,64,28,243,15,44,192,137,69,224,131,125,244,0,116,8,139,69,244,137,69,228,235,7,199,69,228,1,0,0,0,139,85,224,137,208,193,250,31,247,125,228,137,208,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137, 4,36,232,180,6,255,255,201,195,85,137,229,131,236,56,139,69,8,243,15,16,64,32,243,15,44,192,137,69,244,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,64,28,243,15,44,192,137,69,224,131,125,244,0,116,8,139,69,244,137,69,228,235,7,199,69,228,1,0,0,0,139, 85,224,137,208,193,250,31,247,125,228,137,208,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,75,6,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,212,229,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,52,250,255,255,131, 196,20,91,201,195,85,137,229,131,236,40,139,69,8,243,15,16,64,32,243,15,44,192,137,69,244,131,125,244,0,121,5,247,93,244,235,13,131,125,244,0,117,7,199,69,244,1,0,0,0,139,69,8,243,15,16,64,28,243,15,44,208,137,208,193,250,31,247,125,244,137,85,240,131, 125,240,0,121,6,139,69,244,1,69,240,243,15,42,69,240,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,182,5,255,255,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,80,28,139,69,8,137,4,36,232,123,255,255,255,201,195,85,137,229,83,131,236,20,232, 0,0,0,0,91,141,131,39,229,1,0,139,16,139,69,8,137,68,36,4,137,20,36,232,131,249,255,255,131,196,20,91,201,195,85,137,229,131,236,40,139,69,8,243,15,16,64,28,243,15,44,192,137,69,244,139,69,8,243,15,16,64,32,243,15,44,192,137,69,240,131,125,240,0,121, 5,247,93,240,235,13,131,125,240,0,117,7,199,69,240,1,0,0,0,131,125,244,0,121,7,139,69,240,72,41,69,244,139,85,244,137,208,193,250,31,247,125,240,137,69,236,243,15,42,69,236,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,254,4,255,255,201,195,85,137, 229,131,236,24,139,69,8,139,85,12,137,80,28,139,69,8,137,4,36,232,116,255,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,115,228,1,0,139,0,137,4,36,232,63,16,255,255,137,69,244,141,131,111,163,1,0,139,0,137,68,36,4,139,69,244,137,4,36, 232,243,2,255,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,12,137,4,36,232,238,157,1,0,139,69,8,139,64,12,217,92,36,4,137,4,36,232,125,4,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,18,228,1,0,139,0,137,4,36,232, 218,15,255,255,137,69,244,141,131,10,163,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,142,2,255,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,12,137,4,36,232,3,156,1,0,139,69,8,139,64,12,217,92,36,4,137,4,36,232,24,4,255,255,201, 195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,177,227,1,0,139,0,137,4,36,232,117,15,255,255,137,69,244,141,131,165,162,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,41,2,255,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0, 0,0,91,139,69,12,137,4,36,232,151,155,1,0,217,93,244,141,131,49,149,1,0,243,15,16,0,15,46,69,244,117,4,122,2,235,31,139,69,12,137,4,36,232,251,156,1,0,217,93,228,243,15,16,69,228,243,15,94,69,244,243,15,17,69,224,235,15,141,131,49,149,1,0,243,15,16,0, 243,15,17,69,224,243,15,16,69,224,243,15,17,69,240,139,69,8,139,80,12,139,69,240,137,68,36,4,137,20,36,232,90,3,255,255,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,243,226,1,0,139,0,137,4,36,232,179,14,255,255,137,69,244,141, 131,227,161,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,103,1,255,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,12,137,4,36,232,160,154,1,0,139,69,8,139,64,12,217,92,36,4,137,4,36,232,241,2,255,255,201,195,85,137,229,83,131,236, 36,232,0,0,0,0,91,141,131,146,226,1,0,139,0,137,4,36,232,78,14,255,255,137,69,244,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,42,252,254,255,139,85,244,141,131,74,148,1,0,139,0,137,66,28,139,85,244,141,131,126,161,1,0,139,0,137,68,36,4, 137,20,36,232,223,0,255,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,231,147,1,0,243,15,16,0,15,46,69,12,117,29,122,27,139,69,8,243,15,16,72,28,141,131,231,147,1,0,243,15,16,0,15,46,200,117,4,122,2,235,26,139,69, 8,139,64,28,137,68,36,4,139,69,12,137,4,36,232,212,153,1,0,217,93,228,235,15,141,131,231,147,1,0,243,15,16,0,243,15,17,69,228,243,15,16,69,228,243,15,17,69,244,139,69,8,139,80,12,139,69,244,137,68,36,4,137,20,36,232,10,2,255,255,131,196,52,91,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,171,225,1,0,139,0,137,4,36,232,99,13,255,255,137,69,244,141,131,147,160,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,23,0,255,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91, 141,131,31,147,1,0,243,15,16,8,243,15,16,69,12,15,46,193,119,2,235,12,243,15,81,69,12,243,15,17,69,228,235,15,141,131,31,147,1,0,243,15,16,0,243,15,17,69,228,243,15,16,69,228,243,15,17,69,244,139,69,8,139,80,12,139,69,244,137,68,36,4,137,20,36,232,103, 1,255,255,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,12,225,1,0,139,0,137,4,36,232,192,12,255,255,137,69,244,141,131,240,159,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,116,255,254,255,139,69,244,131,196,36,91,201,195,85, 137,229,83,131,236,52,232,0,0,0,0,91,141,131,124,146,1,0,243,15,16,8,243,15,16,69,12,15,46,193,119,2,235,16,139,69,12,137,4,36,232,128,153,1,0,217,93,228,235,15,141,131,220,147,1,0,243,15,16,0,243,15,17,69,228,243,15,16,69,228,243,15,17,69,244,139,69, 8,139,80,12,139,69,244,137,68,36,4,137,20,36,232,192,0,255,255,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,105,224,1,0,139,0,137,4,36,232,25,12,255,255,137,69,244,141,131,73,159,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232, 205,254,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,243,15,90,69,12,141,131,29,151,1,0,102,15,46,0,119,2,235,11,141,131,21,151,1,0,139,0,137,69,12,139,69,12,137,4,36,232,71,152,1,0,217,93,244,139,69,8,139,80,12,139, 69,244,137,68,36,4,137,20,36,232,44,0,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,217,223,1,0,139,0,137,4,36,232,133,11,255,255,137,69,244,141,131,181,158,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,57,254,254,255, 139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,145,150,1,0,15,40,0,243,15,16,77,12,15,84,193,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,180,255,254,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0, 0,91,141,131,101,223,1,0,139,0,137,4,36,232,13,11,255,255,137,69,244,141,131,61,158,1,0,139,0,137,68,36,4,139,69,244,137,4,36,232,193,253,254,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,243,15,90,69,12,242,15,17,69,232,243,15,90,69,12, 242,15,17,4,36,232,100,151,1,0,221,93,240,242,15,16,69,232,242,15,92,69,240,242,15,90,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,42,255,254,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,227,222,1,0,139,0,137,4,36,232,135,10,255, 255,137,69,244,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,99,248,254,255,139,69,244,131,192,36,139,85,244,137,68,36,4,137,20,36,232,78,248,254,255,139,85,244,141,131,183,157,1,0,139,0,137,68,36,4,137,20,36,232,17,253,254,255,139,85,244, 139,69,8,137,66,32,139,85,244,139,69,12,137,66,36,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,193,119,2,235,15,139,69,8,243,15,16,64,32,243,15,17,69,240,235,61,139,69,8,243,15,16,72,28, 139,69,8,243,15,16,64,36,15,46,200,119,2,235,15,139,69,8,243,15,16,64,36,243,15,17,69,244,235,13,139,69,8,243,15,16,64,28,243,15,17,69,244,243,15,16,69,244,243,15,17,69,240,139,69,8,139,64,12,243,15,16,69,240,243,15,17,68,36,4,137,4,36,232,42,254,254, 255,201,195,85,137,229,131,236,40,139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,32,15,46,193,119,2,235,15,139,69,8,243,15,16,64,32,243,15,17,69,240,235,61,139,69,8,243,15,16,72,28,139,69,8,243,15,16,64,36,15,46,200,119,2, 235,15,139,69,8,243,15,16,64,36,243,15,17,69,244,235,13,139,69,8,243,15,16,64,28,243,15,17,69,244,243,15,16,69,244,243,15,17,69,240,139,69,8,139,64,12,243,15,16,69,240,243,15,17,68,36,4,137,4,36,232,157,253,254,255,201,195,85,137,229,86,83,131,236,32, 232,0,0,0,0,91,141,179,102,254,255,255,141,131,98,135,1,0,137,4,36,232,191,211,254,255,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,103,200,254, 255,137,194,141,131,85,221,1,0,137,16,141,147,102,255,255,255,141,131,85,221,1,0,139,0,137,84,36,4,137,4,36,232,252,207,254,255,141,147,226,254,255,255,141,131,85,221,1,0,139,0,137,84,36,4,137,4,36,232,192,207,254,255,131,196,32,91,94,201,195,85,137, 229,86,83,131,236,48,232,0,0,0,0,91,141,131,196,134,1,0,137,4,36,232,34,211,254,255,137,69,244,141,131,206,134,1,0,137,4,36,232,17,211,254,255,137,69,240,141,131,218,134,1,0,137,4,36,232,0,211,254,255,137,69,236,141,179,10,229,255,255,141,131,210,97, 1,0,137,4,36,232,233,210,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,153,199,254,255,137,194,141,131,50,220,1,0,137,16,141,147,52,229,255,255,141,131,50,220, 1,0,139,0,137,84,36,4,137,4,36,232,12,207,254,255,141,147,100,229,255,255,141,131,50,220,1,0,139,0,137,84,36,4,137,4,36,232,20,207,254,255,141,131,50,220,1,0,139,16,139,69,244,137,68,36,4,137,20,36,232,130,207,254,255,141,179,157,229,255,255,141,131, 66,76,1,0,137,4,36,232,76,210,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,252,198,254,255,137,194,141,131,54,220,1,0,137,16,141,147,199,229,255,255,141,131, 54,220,1,0,139,0,137,84,36,4,137,4,36,232,111,206,254,255,141,147,253,229,255,255,141,131,54,220,1,0,139,0,137,84,36,4,137,4,36,232,119,206,254,255,141,131,54,220,1,0,139,16,139,69,244,137,68,36,4,137,20,36,232,229,206,254,255,141,179,60,230,255,255, 141,131,212,97,1,0,137,4,36,232,175,209,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,95,198,254,255,137,194,141,131,58,220,1,0,137,16,141,147,102,230,255,255, 141,131,58,220,1,0,139,0,137,84,36,4,137,4,36,232,210,205,254,255,141,147,150,230,255,255,141,131,58,220,1,0,139,0,137,84,36,4,137,4,36,232,218,205,254,255,141,131,58,220,1,0,139,16,139,69,244,137,68,36,4,137,20,36,232,72,206,254,255,141,179,207,230, 255,255,141,131,26,99,1,0,137,4,36,232,18,209,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,194,197,254,255,137,194,141,131,62,220,1,0,137,16,141,147,249,230, 255,255,141,131,62,220,1,0,139,0,137,84,36,4,137,4,36,232,53,205,254,255,141,147,109,231,255,255,141,131,62,220,1,0,139,0,137,84,36,4,137,4,36,232,61,205,254,255,141,131,62,220,1,0,139,16,139,69,244,137,68,36,4,137,20,36,232,171,205,254,255,141,179,234, 231,255,255,141,131,223,134,1,0,137,4,36,232,117,208,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,37,197,254,255,137,194,141,131,66,220,1,0,137,16,141,147,20, 232,255,255,141,131,66,220,1,0,139,0,137,84,36,4,137,4,36,232,152,204,254,255,141,147,133,232,255,255,141,131,66,220,1,0,139,0,137,84,36,4,137,4,36,232,160,204,254,255,141,131,66,220,1,0,139,16,139,69,244,137,68,36,4,137,20,36,232,14,205,254,255,141, 179,255,232,255,255,141,131,70,99,1,0,137,4,36,232,216,207,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,136,196,254,255,137,194,141,131,70,220,1,0,137,16,141, 147,41,233,255,255,141,131,70,220,1,0,139,0,137,84,36,4,137,4,36,232,251,203,254,255,141,147,125,233,255,255,141,131,70,220,1,0,139,0,137,84,36,4,137,4,36,232,3,204,254,255,141,131,70,220,1,0,139,16,139,69,244,137,68,36,4,137,20,36,232,113,204,254,255, 141,179,218,233,255,255,141,131,227,134,1,0,137,4,36,232,59,207,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,235,195,254,255,137,194,141,131,74,220,1,0,137, 16,141,147,4,234,255,255,141,131,74,220,1,0,139,0,137,84,36,4,137,4,36,232,94,203,254,255,141,147,88,234,255,255,141,131,74,220,1,0,139,0,137,84,36,4,137,4,36,232,102,203,254,255,141,131,74,220,1,0,139,16,139,69,244,137,68,36,4,137,20,36,232,212,203, 254,255,141,179,28,235,255,255,141,131,231,134,1,0,137,4,36,232,158,206,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,78,195,254,255,137,194,141,131,78,220,1, 0,137,16,141,147,70,235,255,255,141,131,78,220,1,0,139,0,137,84,36,4,137,4,36,232,193,202,254,255,141,147,171,235,255,255,141,131,78,220,1,0,139,0,137,84,36,4,137,4,36,232,201,202,254,255,141,131,78,220,1,0,139,16,139,69,240,137,68,36,4,137,20,36,232, 55,203,254,255,141,179,25,236,255,255,141,131,234,134,1,0,137,4,36,232,1,206,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,177,194,254,255,137,194,141,131,82, 220,1,0,137,16,141,147,67,236,255,255,141,131,82,220,1,0,139,0,137,84,36,4,137,4,36,232,36,202,254,255,141,147,168,236,255,255,141,131,82,220,1,0,139,0,137,84,36,4,137,4,36,232,44,202,254,255,141,131,82,220,1,0,139,16,139,69,240,137,68,36,4,137,20,36, 232,154,202,254,255,141,179,22,237,255,255,141,131,237,134,1,0,137,4,36,232,100,205,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,20,194,254,255,137,194,141, 131,86,220,1,0,137,16,141,147,64,237,255,255,141,131,86,220,1,0,139,0,137,84,36,4,137,4,36,232,135,201,254,255,141,147,163,237,255,255,141,131,86,220,1,0,139,0,137,84,36,4,137,4,36,232,143,201,254,255,141,131,86,220,1,0,139,16,139,69,240,137,68,36,4, 137,20,36,232,253,201,254,255,141,179,15,238,255,255,141,131,239,134,1,0,137,4,36,232,199,204,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,119,193,254,255,137, 194,141,131,90,220,1,0,137,16,141,147,57,238,255,255,141,131,90,220,1,0,139,0,137,84,36,4,137,4,36,232,234,200,254,255,141,147,156,238,255,255,141,131,90,220,1,0,139,0,137,84,36,4,137,4,36,232,242,200,254,255,141,131,90,220,1,0,139,16,139,69,240,137, 68,36,4,137,20,36,232,96,201,254,255,141,179,8,239,255,255,141,131,241,134,1,0,137,4,36,232,42,204,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,218,192,254, 255,137,194,141,131,94,220,1,0,137,16,141,147,50,239,255,255,141,131,94,220,1,0,139,0,137,84,36,4,137,4,36,232,77,200,254,255,141,147,149,239,255,255,141,131,94,220,1,0,139,0,137,84,36,4,137,4,36,232,85,200,254,255,141,131,94,220,1,0,139,16,139,69,240, 137,68,36,4,137,20,36,232,195,200,254,255,141,179,1,240,255,255,141,131,244,134,1,0,137,4,36,232,141,203,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,61,192, 254,255,137,194,141,131,98,220,1,0,137,16,141,147,43,240,255,255,141,131,98,220,1,0,139,0,137,84,36,4,137,4,36,232,176,199,254,255,141,147,142,240,255,255,141,131,98,220,1,0,139,0,137,84,36,4,137,4,36,232,184,199,254,255,141,131,98,220,1,0,139,16,139, 69,240,137,68,36,4,137,20,36,232,38,200,254,255,141,179,97,241,255,255,141,131,247,134,1,0,137,4,36,232,240,202,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232, 160,191,254,255,137,194,141,131,102,220,1,0,137,16,141,147,139,241,255,255,141,131,102,220,1,0,139,0,137,84,36,4,137,4,36,232,19,199,254,255,141,147,197,241,255,255,141,131,102,220,1,0,139,0,137,84,36,4,137,4,36,232,27,199,254,255,141,131,102,220,1,0, 139,16,139,69,240,137,68,36,4,137,20,36,232,137,199,254,255,141,179,8,242,255,255,141,131,249,134,1,0,137,4,36,232,83,202,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137, 4,36,232,3,191,254,255,137,194,141,131,106,220,1,0,137,16,141,147,50,242,255,255,141,131,106,220,1,0,139,0,137,84,36,4,137,4,36,232,118,198,254,255,141,147,131,242,255,255,141,131,106,220,1,0,139,0,137,84,36,4,137,4,36,232,126,198,254,255,141,131,106, 220,1,0,139,16,139,69,240,137,68,36,4,137,20,36,232,236,198,254,255,141,179,221,242,255,255,141,131,252,134,1,0,137,4,36,232,182,201,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137, 116,36,4,137,4,36,232,102,190,254,255,137,194,141,131,110,220,1,0,137,16,141,147,7,243,255,255,141,131,110,220,1,0,139,0,137,84,36,4,137,4,36,232,217,197,254,255,141,147,65,243,255,255,141,131,110,220,1,0,139,0,137,84,36,4,137,4,36,232,225,197,254,255, 141,131,110,220,1,0,139,16,139,69,240,137,68,36,4,137,20,36,232,79,198,254,255,141,179,132,243,255,255,141,131,254,134,1,0,137,4,36,232,25,201,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0, 0,0,0,137,116,36,4,137,4,36,232,201,189,254,255,137,194,141,131,114,220,1,0,137,16,141,147,174,243,255,255,141,131,114,220,1,0,139,0,137,84,36,4,137,4,36,232,60,197,254,255,141,147,255,243,255,255,141,131,114,220,1,0,139,0,137,84,36,4,137,4,36,232,68, 197,254,255,141,131,114,220,1,0,139,16,139,69,240,137,68,36,4,137,20,36,232,178,197,254,255,141,179,89,244,255,255,141,131,1,135,1,0,137,4,36,232,124,200,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199, 68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,44,189,254,255,137,194,141,131,118,220,1,0,137,16,141,147,131,244,255,255,141,131,118,220,1,0,139,0,137,84,36,4,137,4,36,232,159,196,254,255,141,147,191,244,255,255,141,131,118,220,1,0,139,0,137,84,36,4,137,4, 36,232,167,196,254,255,141,131,118,220,1,0,139,16,139,69,240,137,68,36,4,137,20,36,232,21,197,254,255,141,179,4,245,255,255,141,131,4,135,1,0,137,4,36,232,223,199,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36, 0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,143,188,254,255,137,194,141,131,122,220,1,0,137,16,141,147,46,245,255,255,141,131,122,220,1,0,139,0,137,84,36,4,137,4,36,232,2,196,254,255,141,147,106,245,255,255,141,131,122,220,1,0,139,0,137,84,36, 4,137,4,36,232,10,196,254,255,141,131,122,220,1,0,139,16,139,69,240,137,68,36,4,137,20,36,232,120,196,254,255,141,179,175,245,255,255,141,131,7,135,1,0,137,4,36,232,66,199,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68, 36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,242,187,254,255,137,194,141,131,126,220,1,0,137,16,141,147,217,245,255,255,141,131,126,220,1,0,139,0,137,84,36,4,137,4,36,232,101,195,254,255,141,147,57,246,255,255,141,131,126,220,1,0,139, 0,137,84,36,4,137,4,36,232,109,195,254,255,141,131,126,220,1,0,139,16,139,69,240,137,68,36,4,137,20,36,232,219,195,254,255,141,179,162,246,255,255,141,131,9,135,1,0,137,4,36,232,165,198,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0, 0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,85,187,254,255,137,194,141,131,130,220,1,0,137,16,141,147,204,246,255,255,141,131,130,220,1,0,139,0,137,84,36,4,137,4,36,232,200,194,254,255,141,147,55,247,255,255,141,131,130, 220,1,0,139,0,137,84,36,4,137,4,36,232,208,194,254,255,141,131,130,220,1,0,139,16,139,69,240,137,68,36,4,137,20,36,232,62,195,254,255,141,179,83,247,255,255,141,131,13,135,1,0,137,4,36,232,8,198,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68, 36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,184,186,254,255,137,194,141,131,134,220,1,0,137,16,141,147,125,247,255,255,141,131,134,220,1,0,139,0,137,84,36,4,137,4,36,232,43,194,254,255,141,147,239,247,255,255,141, 131,134,220,1,0,139,0,137,84,36,4,137,4,36,232,51,194,254,255,141,131,134,220,1,0,139,16,139,69,240,137,68,36,4,137,20,36,232,161,194,254,255,141,131,17,135,1,0,137,4,36,232,113,197,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36, 12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,11,248,255,255,137,68,36,4,137,20,36,232,33,186,254,255,137,194,141,131,138,220,1,0,137,16,141,147,75,248,255,255,141,131,138,220,1,0,139,0,137,84,36,4,137,4,36,232,182,193,254,255,141,131,138,220,1,0,139,16,139, 69,236,137,68,36,4,137,20,36,232,36,194,254,255,141,131,21,135,1,0,137,4,36,232,244,196,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,112,248,255,255,137,68,36,4,137,20,36,232,164,185,254, 255,137,194,141,131,142,220,1,0,137,16,141,147,176,248,255,255,141,131,142,220,1,0,139,0,137,84,36,4,137,4,36,232,57,193,254,255,141,131,142,220,1,0,139,16,139,69,236,137,68,36,4,137,20,36,232,167,193,254,255,141,131,25,135,1,0,137,4,36,232,119,196,254, 255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,213,248,255,255,137,68,36,4,137,20,36,232,39,185,254,255,137,194,141,131,146,220,1,0,137,16,141,147,21,249,255,255,141,131,146,220,1,0,139,0,137,84, 36,4,137,4,36,232,188,192,254,255,141,131,146,220,1,0,139,16,139,69,236,137,68,36,4,137,20,36,232,42,193,254,255,141,131,29,135,1,0,137,4,36,232,250,195,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0, 0,141,131,151,249,255,255,137,68,36,4,137,20,36,232,170,184,254,255,137,194,141,131,150,220,1,0,137,16,141,147,215,249,255,255,141,131,150,220,1,0,139,0,137,84,36,4,137,4,36,232,63,192,254,255,141,131,150,220,1,0,139,16,139,69,236,137,68,36,4,137,20, 36,232,173,192,254,255,141,131,34,135,1,0,137,4,36,232,125,195,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,141,131,252,249,255,255,137,68,36,4,137,20,36,232,45,184,254,255,137,194,141,131,154,220, 1,0,137,16,141,147,95,250,255,255,141,131,154,220,1,0,139,0,137,84,36,4,137,4,36,232,194,191,254,255,141,131,154,220,1,0,139,16,139,69,236,137,68,36,4,137,20,36,232,48,192,254,255,141,131,40,135,1,0,137,4,36,232,0,195,254,255,137,194,199,68,36,20,0,0, 0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,231,250,255,255,137,68,36,4,137,20,36,232,176,183,254,255,137,194,141,131,158,220,1,0,137,16,141,147,39,251,255,255,141,131,158,220,1,0,139,0,137,84,36,4,137,4,36,232,69,191,254, 255,141,131,158,220,1,0,139,16,139,69,236,137,68,36,4,137,20,36,232,179,191,254,255,141,131,127,54,1,0,137,4,36,232,131,194,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,138,251,255,255,137, 68,36,4,137,20,36,232,51,183,254,255,137,194,141,131,162,220,1,0,137,16,141,147,202,251,255,255,141,131,162,220,1,0,139,0,137,84,36,4,137,4,36,232,200,190,254,255,141,131,162,220,1,0,139,16,139,69,236,137,68,36,4,137,20,36,232,54,191,254,255,141,131, 45,135,1,0,137,4,36,232,6,194,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,49,252,255,255,137,68,36,4,137,20,36,232,182,182,254,255,137,194,141,131,166,220,1,0,137,16,141,147,113,252,255, 255,141,131,166,220,1,0,139,0,137,84,36,4,137,4,36,232,75,190,254,255,141,131,166,220,1,0,139,16,139,69,236,137,68,36,4,137,20,36,232,185,190,254,255,141,131,49,135,1,0,137,4,36,232,137,193,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199, 68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,197,252,255,255,137,68,36,4,137,20,36,232,57,182,254,255,137,194,141,131,170,220,1,0,137,16,141,147,5,253,255,255,141,131,170,220,1,0,139,0,137,84,36,4,137,4,36,232,206,189,254,255,141,131,170,220,1,0,139, 16,139,69,236,137,68,36,4,137,20,36,232,60,190,254,255,141,131,53,135,1,0,137,4,36,232,12,193,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,61,253,255,255,137,68,36,4,137,20,36,232,188,181, 254,255,137,194,141,131,174,220,1,0,137,16,141,147,125,253,255,255,141,131,174,220,1,0,139,0,137,84,36,4,137,4,36,232,81,189,254,255,141,131,174,220,1,0,139,16,139,69,236,137,68,36,4,137,20,36,232,191,189,254,255,232,183,236,255,255,131,196,48,91,94, 201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,10,202,1,0,139,0,137,4,36,232,170,245,254,255,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,141,131,218,136,1,0,139,0,137,68,36,4,137,20,36,232,85,232,254,255,139,69,244,131,192,28,139,85, 244,137,68,36,4,137,20,36,232,102,227,254,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,243,15,16,64,28,243,15,44,192,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,195,233,254,255,201,195,85,137,229,131,236,24, 139,85,8,139,69,12,137,66,28,139,69,8,243,15,16,64,28,243,15,44,192,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,142,233,254,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,52,255,255,255,141,131,206,115,1,0,137,4,36, 232,176,191,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,96,180,254,255,137,194,141,131,74,201,1,0,137,16,141,131,210,115,1,0,137,4,36,232,100,191,254,255,141, 147,52,255,255,255,199,68,36,12,0,0,0,0,199,68,36,8,6,0,0,0,137,68,36,4,137,20,36,232,78,183,254,255,141,147,146,255,255,255,141,131,74,201,1,0,139,0,137,84,36,4,137,4,36,232,163,187,254,255,141,147,190,255,255,255,141,131,74,201,1,0,139,0,137,84,36, 4,137,4,36,232,171,187,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,132,200,1,0,139,0,137,4,36,232,32,244,254,255,137,69,244,139,85,244,139,69,12,137,66,28,139,85,244,141,131,80,135,1,0,139,0,137,68,36,4,137,20,36, 232,203,230,254,255,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,220,225,254,255,139,85,244,141,131,76,136,1,0,139,0,137,16,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,137,68,36,4,199,4,36,0,0,0,0,232,124,255,255,255, 201,195,85,137,229,131,236,24,139,69,8,139,80,28,139,69,8,139,64,12,137,84,36,4,137,4,36,232,29,232,254,255,201,195,85,137,229,131,236,24,139,85,8,139,69,12,137,66,28,139,69,8,139,80,28,139,69,8,139,64,12,137,84,36,4,137,4,36,232,244,231,254,255,201, 195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,36,255,255,255,141,131,114,79,1,0,137,4,36,232,22,190,254,255,199,68,36,24,0,0,0,0,199,68,36,20,1,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,198, 178,254,255,137,194,141,131,180,199,1,0,137,16,141,131,180,78,1,0,137,4,36,232,202,189,254,255,141,147,143,255,255,255,199,68,36,12,0,0,0,0,199,68,36,8,6,0,0,0,137,68,36,4,137,20,36,232,180,181,254,255,141,147,170,255,255,255,141,131,180,199,1,0,139, 0,137,84,36,4,137,4,36,232,9,186,254,255,141,147,202,255,255,255,141,131,180,199,1,0,139,0,137,84,36,4,137,4,36,232,17,186,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,238,198,1,0,139,0,137,4,36,232,134,242,254,255, 137,69,244,139,85,244,139,69,12,137,66,28,139,85,244,141,131,6,135,1,0,139,0,137,68,36,4,137,20,36,232,49,229,254,255,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,236,224,254,255,139,85,244,141,131,178,134,1,0,139,0,137,16,139,69,244,131, 196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,80,28,139,69,8,139,64,12,137,84,36,4,137,4,36,232,33,231,254,255,201,195,85,137,229,131,236,24,139,85,8,139,69,12,137,66,28,139,69,8,139,80,28,139,69,8,139,64,12,137,84,36,4,137,4,36,232,248,230,254, 255,201,195,85,137,229,131,236,24,139,85,8,139,69,12,137,66,28,139,69,8,139,80,28,139,69,8,139,64,12,137,84,36,4,137,4,36,232,207,230,254,255,201,195,85,137,229,131,236,24,131,125,16,0,117,13,139,69,8,137,4,36,232,119,255,255,255,235,65,139,69,20,139, 0,131,248,2,117,23,139,69,20,139,64,4,137,68,36,4,139,69,8,137,4,36,232,118,255,255,255,235,32,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,125,255,255,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91, 141,179,186,254,255,255,141,131,240,79,1,0,137,4,36,232,18,188,254,255,199,68,36,24,0,0,0,0,199,68,36,20,2,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,194,176,254,255,137,194,141,131,180,197,1,0,137, 16,141,147,37,255,255,255,141,131,180,197,1,0,139,0,137,84,36,4,137,4,36,232,53,184,254,255,141,147,69,255,255,255,141,131,180,197,1,0,139,0,137,84,36,4,137,4,36,232,78,184,254,255,141,147,110,255,255,255,141,131,180,197,1,0,139,0,137,84,36,4,137,4,36, 232,86,184,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,4,197,1,0,139,0,137,4,36,232,152,240,254,255,137,69,244,139,85,244,141,131,196,131,1,0,139,0,137,68,36,4,137,20,36,232,76,227,254,255,139,85,244,141,131,196,132, 1,0,139,0,137,16,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,199,4,36,0,0,0,0,232,161,255,255,255,201,195,85,137,229,131,236,24,139,69,8,139,64,12,137,4,36,232,177,227,254,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,124, 255,255,255,141,131,96,117,1,0,137,4,36,232,230,186,254,255,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,158,175,254,255,137,194,141,131,140,196,1,0,137,16,141,131,64,76,1,0,137,4,36,232, 162,186,254,255,141,147,201,255,255,255,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,148,178,254,255,141,147,221,255,255,255,141,131,140,196,1,0,139,0,137,84,36,4,137,4,36,232,233,182,254,255,141,147,221,255,255,255,141,131,140,196,1,0,139,0,137,84, 36,4,137,4,36,232,241,182,254,255,141,147,221,255,255,255,141,131,140,196,1,0,139,0,137,84,36,4,137,4,36,232,232,182,254,255,141,147,221,255,255,255,141,131,140,196,1,0,139,0,137,84,36,4,137,4,36,232,223,182,254,255,141,147,221,255,255,255,141,131,140, 196,1,0,139,0,137,84,36,4,137,4,36,232,214,182,254,255,131,196,32,91,94,201,195,85,137,229,131,236,24,139,69,8,139,64,28,139,64,4,133,192,116,17,139,69,8,139,64,28,139,64,4,137,4,36,232,54,247,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,28, 139,64,4,133,192,116,24,139,69,8,139,64,28,139,80,4,139,69,12,137,68,36,4,137,20,36,232,33,247,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,28,139,64,4,133,192,116,24,139,69,8,139,64,28,139,80,4,139,69,12,137,68,36,4,137,20,36,232,50,247,254, 255,201,195,85,137,229,131,236,24,139,69,8,139,64,28,139,64,4,133,192,116,24,139,69,8,139,64,28,139,80,4,139,69,12,137,68,36,4,137,20,36,232,230,246,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,28,139,64,4,133,192,116,38,139,69,8,139,64,28,139, 80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,233,246,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,28,139,64,4,133,192,116,38,139,69,8,139,64,28,139,80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139, 69,12,137,68,36,4,137,20,36,232,11,190,254,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,101,194,1,0,139,0,137,4,36,232,245,237,254,255,137,69,244,139,69,8,139,0,15,182,0,132,192,117,21,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20, 36,232,111,220,254,255,139,85,244,139,69,8,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,160,255,255,255,141,131,253,24,1,0,137,4,36,232,103,184,254,255,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68, 36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,23,173,254,255,137,194,141,131,17,194,1,0,137,16,141,131,209,73,1,0,137,4,36,232,27,184,254,255,141,147,160,255,255,255,199,68,36,12,0,0,0,0,199,68,36,8,7,0,0,0,137,68, 36,4,137,20,36,232,5,176,254,255,141,147,125,254,255,255,141,131,17,194,1,0,139,0,137,84,36,4,137,4,36,232,90,180,254,255,141,147,163,254,255,255,141,131,17,194,1,0,139,0,137,84,36,4,137,4,36,232,98,180,254,255,141,147,208,254,255,255,141,131,17,194, 1,0,139,0,137,84,36,4,137,4,36,232,89,180,254,255,141,147,253,254,255,255,141,131,17,194,1,0,139,0,137,84,36,4,137,4,36,232,29,180,254,255,141,147,42,255,255,255,141,131,17,194,1,0,139,0,137,84,36,4,137,4,36,232,54,180,254,255,141,147,101,255,255,255, 141,131,17,194,1,0,139,0,137,84,36,4,137,4,36,232,45,180,254,255,131,196,32,91,94,201,195,85,137,229,131,236,24,139,69,8,139,64,12,137,4,36,232,233,223,254,255,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,223,224, 254,255,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,69,225,254,255,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,14,224,254,255,201,195,85,137,229,131,236,24,139,69,8,139, 80,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,128,225,254,255,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,230,225,254,255,201, 195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,32,192,1,0,139,0,137,4,36,232,172,235,254,255,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,139,69,8,137,68,36,4,137,20,36,232,15,239,254,255,139,69,244,199,68,36,4,0,0,0,0,137,4,36,232,73,222, 254,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36,232,184,239,254,255,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,213,255,255,255,141,187,126,255,255,255,141,131,74,33,1, 0,137,4,36,232,246,181,254,255,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,32,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,170,170,254,255,137,194,141,131,170,191,1,0,137,16,141,131,14,0,1,0,137,4,36,232,174,181,254,255, 141,147,126,255,255,255,199,68,36,12,0,0,0,0,199,68,36,8,7,0,0,0,137,68,36,4,137,20,36,232,152,173,254,255,141,147,187,254,255,255,141,131,170,191,1,0,139,0,137,84,36,4,137,4,36,232,237,177,254,255,141,147,209,254,255,255,141,131,170,191,1,0,139,0,137, 84,36,4,137,4,36,232,245,177,254,255,141,147,238,254,255,255,141,131,170,191,1,0,139,0,137,84,36,4,137,4,36,232,236,177,254,255,141,147,11,255,255,255,141,131,170,191,1,0,139,0,137,84,36,4,137,4,36,232,176,177,254,255,141,147,40,255,255,255,141,131,170, 191,1,0,139,0,137,84,36,4,137,4,36,232,201,177,254,255,141,147,83,255,255,255,141,131,170,191,1,0,139,0,137,84,36,4,137,4,36,232,192,177,254,255,131,196,44,91,94,95,201,195,85,137,229,131,236,24,139,69,8,139,64,28,131,248,1,117,32,139,69,8,243,15,16, 64,32,15,46,69,12,117,18,122,16,139,69,8,139,64,36,137,4,36,232,96,221,254,255,235,21,139,69,8,139,80,40,139,69,12,137,68,36,4,137,20,36,232,92,222,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,28,131,248,2,117,27,139,69,8,139,64,32,59,69,12, 117,16,139,69,8,139,64,36,137,4,36,232,29,221,254,255,235,21,139,69,8,139,80,40,139,69,12,137,68,36,4,137,20,36,232,156,222,254,255,201,195,85,137,229,131,236,40,139,69,8,139,64,28,131,248,1,117,66,139,69,8,139,64,32,137,69,240,139,69,8,139,64,36,137, 69,244,235,37,139,69,244,243,15,16,0,15,46,69,12,122,2,116,2,235,16,139,69,244,139,64,4,137,4,36,232,192,220,254,255,235,34,131,69,244,8,255,77,240,131,125,240,255,117,210,139,69,8,139,80,40,139,69,12,137,68,36,4,137,20,36,232,175,221,254,255,201,195, 85,137,229,131,236,40,139,69,8,139,64,28,131,248,2,117,59,139,69,8,139,64,32,137,69,240,139,69,8,139,64,36,137,69,244,235,30,139,69,244,139,0,59,69,12,117,16,139,69,244,139,64,4,137,4,36,232,93,220,254,255,235,34,131,69,244,8,255,77,240,131,125,240,255, 117,217,139,69,8,139,80,40,139,69,12,137,68,36,4,137,20,36,232,207,221,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,32,141,20,197,0,0,0,0,139,69,8,139,64,36,137,84,36,4,137,4,36,232,221,206,254,255,201,195,85,137,229,83,131,236,68,232,0,0,0, 0,91,131,125,12,0,117,31,199,69,12,1,0,0,0,199,69,224,1,0,0,0,141,131,126,110,1,0,139,0,137,69,228,141,69,224,137,69,16,131,125,12,1,15,133,194,0,0,0,141,131,250,188,1,0,139,0,137,4,36,232,83,232,254,255,137,69,244,139,69,16,139,80,4,139,0,139,77,244, 137,65,28,137,81,32,139,85,244,141,131,174,123,1,0,139,0,137,68,36,4,137,20,36,232,246,218,254,255,137,194,139,69,244,137,80,36,139,69,16,139,0,131,248,1,117,54,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,245,213,254,255,139,85,244,141, 131,178,123,1,0,139,0,137,68,36,4,137,20,36,232,184,218,254,255,137,194,139,69,244,137,80,40,235,52,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,105,214,254,255,139,85,244,141,131,2,125,1,0,139,0,137,68,36,4,137,20,36,232,130,218,254,255, 137,194,139,69,244,137,80,40,139,69,244,137,69,212,233,252,0,0,0,141,131,254,188,1,0,139,0,137,4,36,232,145,231,254,255,137,69,232,139,85,232,139,69,12,137,66,32,139,69,12,193,224,3,137,4,36,232,205,203,254,255,137,194,139,69,232,137,80,36,139,69,16, 139,16,139,69,232,137,80,28,199,69,240,0,0,0,0,139,69,232,139,64,36,137,69,236,235,124,139,85,232,141,131,174,123,1,0,139,0,137,68,36,4,137,20,36,232,9,218,254,255,137,194,139,69,236,137,80,4,139,69,16,139,16,139,69,232,137,80,28,139,69,232,139,64,28, 131,248,1,117,32,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,240,137,4,36,232,0,52,254,255,139,69,236,217,24,235,32,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,240,137,4,36,232,100,52,254,255,137,194,139,69,236,137,16,255,69,240,131,69, 236,8,139,69,240,59,69,12,15,140,120,255,255,255,139,85,232,141,131,178,123,1,0,139,0,137,68,36,4,137,20,36,232,129,217,254,255,137,194,139,69,232,137,80,40,139,69,232,137,69,212,139,69,212,131,196,68,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0, 0,91,141,131,95,34,1,0,137,4,36,232,74,177,254,255,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,254,165,254,255,137,194,141,131,246,186,1,0,137,16,141,147,113,252,255,255,141,131, 246,186,1,0,139,0,137,84,36,4,137,4,36,232,147,173,254,255,141,147,185,252,255,255,141,131,246,186,1,0,139,0,137,84,36,4,137,4,36,232,138,173,254,255,141,179,201,253,255,255,141,131,95,34,1,0,137,4,36,232,200,176,254,255,199,68,36,20,0,0,0,0,199,68,36, 16,0,0,0,0,199,68,36,12,44,0,0,0,137,116,36,8,199,68,36,4,0,0,0,0,137,4,36,232,128,165,254,255,137,194,141,131,250,186,1,0,137,16,141,147,252,252,255,255,141,131,250,186,1,0,139,0,137,84,36,4,137,4,36,232,21,173,254,255,141,147,102,253,255,255,141,131, 250,186,1,0,139,0,137,84,36,4,137,4,36,232,12,173,254,255,141,131,95,34,1,0,137,4,36,232,80,176,254,255,141,147,240,253,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,58,168,254,255,141,131,106,101,1,0,137,4,36,232,32,176, 254,255,141,147,240,253,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,10,168,254,255,131,196,32,91,94,201,195,85,137,229,86,131,236,36,139,69,8,139,64,28,131,248,2,15,133,141,0,0,0,139,69,8,139,64,32,137,69,240,139,69,8, 139,64,36,137,69,244,235,112,139,69,244,139,0,59,69,12,117,98,131,125,16,0,126,54,139,69,20,139,0,131,248,2,117,44,139,77,20,131,193,8,139,117,16,78,139,69,20,139,80,4,139,69,244,139,64,4,137,76,36,12,137,116,36,8,137,84,36,4,137,4,36,232,218,218,254, 255,235,86,139,69,244,139,80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,199,68,36,4,0,0,0,0,137,20,36,232,35,218,254,255,235,48,131,69,244,8,255,77,240,131,125,240,255,117,135,139,69,8,139,80,40,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69, 12,137,68,36,4,137,20,36,232,130,218,254,255,131,196,36,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,139,64,28,131,248,1,15,133,216,0,0,0,131,125,16,0,15,132,147,2,0,0,139,69,20,139,0,131,248,1,15,133,97,2,0,0,139,69,20,137,4,36,232, 168,47,254,255,217,93,236,139,69,8,139,64,32,137,69,240,139,69,8,139,64,36,137,69,244,233,137,0,0,0,139,69,244,243,15,16,0,15,46,69,236,122,2,116,2,235,116,131,125,16,1,126,65,139,69,20,131,192,8,139,0,131,248,2,117,52,139,77,20,131,193,16,139,117,16, 131,238,2,139,69,20,131,192,8,139,80,4,139,69,244,139,64,4,137,76,36,12,137,116,36,8,137,84,36,4,137,4,36,232,207,217,254,255,233,8,2,0,0,139,85,20,131,194,8,139,77,16,73,139,69,244,139,64,4,137,84,36,12,137,76,36,8,199,68,36,4,0,0,0,0,137,4,36,232,17, 217,254,255,233,219,1,0,0,131,69,244,8,255,77,240,131,125,240,255,15,133,106,255,255,255,233,161,1,0,0,131,125,16,1,15,142,163,0,0,0,139,69,8,139,64,32,137,69,240,139,69,8,139,64,36,137,69,244,235,125,139,69,244,139,16,141,131,179,120,1,0,139,0,57,194, 117,104,131,125,16,0,126,57,139,69,20,139,0,131,248,2,117,47,139,77,20,131,193,8,139,117,16,78,139,69,20,139,80,4,139,69,244,139,64,4,137,76,36,12,137,116,36,8,137,84,36,4,137,4,36,232,30,217,254,255,233,87,1,0,0,139,69,244,139,80,4,139,69,20,137,68, 36,12,139,69,16,137,68,36,8,199,68,36,4,0,0,0,0,137,20,36,232,100,216,254,255,233,46,1,0,0,131,69,244,8,255,77,240,131,125,240,255,15,133,118,255,255,255,233,244,0,0,0,131,125,16,0,117,74,139,69,8,139,64,32,137,69,240,139,69,8,139,64,36,137,69,244,235, 40,139,69,244,139,16,141,131,111,119,1,0,139,0,57,194,117,19,139,69,244,139,64,4,137,4,36,232,247,213,254,255,233,218,0,0,0,131,69,244,8,255,77,240,131,125,240,255,117,207,233,164,0,0,0,139,69,20,139,0,131,248,1,117,78,139,69,8,139,64,32,137,69,240,139, 69,8,139,64,36,137,69,244,235,47,139,69,244,139,16,141,131,115,119,1,0,139,0,57,194,117,26,139,69,20,139,80,4,139,69,244,139,64,4,137,84,36,4,137,4,36,232,172,214,254,255,235,127,131,69,244,8,255,77,240,131,125,240,255,117,200,235,76,139,69,8,139,64, 32,137,69,240,139,69,8,139,64,36,137,69,244,235,47,139,69,244,139,16,141,131,195,120,1,0,139,0,57,194,117,26,139,69,20,139,80,4,139,69,244,139,64,4,137,84,36,4,137,4,36,232,225,214,254,255,235,49,131,69,244,8,255,77,240,131,125,240,255,117,200,139,69, 8,139,80,40,139,69,20,137,68,36,12,139,69,16,137,68,36,8,199,68,36,4,0,0,0,0,137,20,36,232,49,215,254,255,131,196,32,91,94,201,195,85,137,229,131,236,24,139,69,8,139,64,32,141,20,197,0,0,0,0,139,69,8,139,64,36,137,84,36,4,137,4,36,232,183,199,254,255, 201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,220,181,1,0,139,0,137,4,36,232,92,225,254,255,137,69,236,131,125,12,0,117,31,199,69,12,1,0,0,0,199,69,228,1,0,0,0,141,131,88,103,1,0,139,0,137,69,232,141,69,228,137,69,16,139,69,16,139,16,139,69, 236,137,80,28,139,85,236,139,69,12,137,66,32,139,69,12,193,224,3,137,4,36,232,104,197,254,255,137,194,139,69,236,137,80,36,199,69,244,0,0,0,0,139,69,236,139,64,36,137,69,240,235,113,139,85,236,141,131,204,117,1,0,139,0,137,68,36,4,137,20,36,232,175,211, 254,255,137,194,139,69,240,137,80,4,139,69,236,139,64,28,131,248,1,117,32,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,244,137,4,36,232,177,45,254,255,139,69,240,217,24,235,32,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,244,137,4,36,232, 21,46,254,255,137,194,139,69,240,137,16,255,69,244,131,69,240,8,139,69,244,59,69,12,124,135,131,125,12,1,117,54,139,69,16,139,0,131,248,1,117,23,139,69,236,139,64,36,139,85,236,137,68,36,4,137,20,36,232,78,206,254,255,235,21,139,69,236,139,64,36,139, 85,236,137,68,36,4,137,20,36,232,225,206,254,255,139,85,236,141,131,204,117,1,0,139,0,137,68,36,4,137,20,36,232,250,210,254,255,137,194,139,69,236,137,80,40,139,69,236,131,196,52,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,109,254, 255,255,141,187,148,254,255,255,141,131,236,94,1,0,137,4,36,232,188,170,254,255,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,112,159,254,255,137,194,141,131,124,180,1,0,137, 16,141,147,172,251,255,255,141,131,124,180,1,0,139,0,137,84,36,4,137,4,36,232,39,167,254,255,141,147,224,250,255,255,141,131,124,180,1,0,139,0,137,84,36,4,137,4,36,232,30,167,254,255,131,196,44,91,94,95,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91, 141,131,227,179,1,0,139,0,137,4,36,232,95,223,254,255,137,69,240,199,69,220,0,0,0,0,131,125,12,0,117,60,141,69,200,137,69,16,199,69,12,2,0,0,0,199,69,200,1,0,0,0,141,131,91,101,1,0,139,0,137,69,204,141,69,200,131,192,8,199,0,1,0,0,0,141,69,200,141,80, 8,141,131,91,101,1,0,139,0,137,66,4,139,85,240,139,69,12,137,66,28,139,69,12,193,224,3,137,4,36,232,82,195,254,255,137,194,139,69,240,137,80,32,139,69,240,139,64,32,137,69,232,139,69,12,193,224,3,137,4,36,232,51,195,254,255,137,194,139,69,240,137,80, 44,139,69,12,137,69,216,139,69,16,137,69,236,235,32,139,69,236,139,0,131,248,2,117,18,139,69,236,139,64,4,139,0,15,182,0,60,112,117,3,255,69,220,131,69,236,8,255,77,216,131,125,216,255,117,215,139,85,220,137,208,1,192,1,208,193,224,2,137,4,36,232,224, 194,254,255,137,194,139,69,240,137,80,40,139,69,240,139,64,40,137,69,224,139,85,240,139,69,220,137,66,36,199,69,216,0,0,0,0,139,69,240,139,64,32,137,69,228,139,69,16,137,69,236,233,64,1,0,0,139,69,236,139,0,131,248,1,117,52,139,69,236,139,80,4,139,0, 139,77,228,137,1,137,81,4,131,125,216,0,15,132,17,1,0,0,139,69,228,131,192,4,139,85,240,137,68,36,4,137,20,36,232,16,204,254,255,233,247,0,0,0,139,69,236,139,0,131,248,2,15,133,233,0,0,0,139,69,236,139,64,4,139,0,15,182,0,136,69,247,128,125,247,115,117, 59,139,69,228,199,0,2,0,0,0,139,85,228,141,131,223,115,1,0,139,0,137,66,4,131,125,216,0,15,132,180,0,0,0,139,69,228,131,192,4,139,85,240,137,68,36,4,137,20,36,232,93,204,254,255,233,154,0,0,0,128,125,247,112,117,59,139,69,228,199,0,3,0,0,0,139,85,228, 139,69,224,137,66,4,139,69,224,137,4,36,232,157,113,253,255,131,125,216,0,116,18,139,85,240,139,69,224,137,68,36,4,137,20,36,232,201,202,254,255,131,69,224,12,235,89,128,125,247,102,116,33,139,69,236,139,64,4,139,0,137,68,36,8,141,131,85,94,1,0,137,68, 36,4,139,69,240,137,4,36,232,196,165,255,255,139,69,228,199,0,1,0,0,0,139,85,228,141,131,91,101,1,0,139,0,137,66,4,131,125,216,0,116,21,139,69,228,131,192,4,139,85,240,137,68,36,4,137,20,36,232,20,203,254,255,255,69,216,131,69,236,8,131,69,228,8,139, 69,216,59,69,12,15,140,180,254,255,255,139,85,240,141,131,207,115,1,0,139,0,137,68,36,4,137,20,36,232,192,207,254,255,139,69,240,131,196,68,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,69,240,0,0,0,0,139,69,8,139,64,28,193,224,3,137,69,236, 139,69,8,139,64,36,137,69,244,139,69,8,139,64,40,137,69,232,235,53,199,68,36,4,1,0,0,0,139,69,232,137,4,36,232,140,110,253,255,133,192,117,26,141,131,213,91,1,0,137,68,36,4,139,69,8,137,4,36,232,251,164,255,255,233,244,0,0,0,131,69,232,12,255,77,244, 131,125,244,255,117,194,139,69,8,139,64,44,133,192,117,47,139,69,8,139,64,36,133,192,116,14,141,131,236,91,1,0,137,4,36,232,226,160,255,255,139,69,236,137,4,36,232,160,192,254,255,137,69,228,199,69,240,1,0,0,0,235,19,139,69,8,139,64,44,137,69,228,139, 69,8,199,64,44,0,0,0,0,184,255,255,255,255,131,248,255,116,39,186,255,255,255,255,139,77,236,139,69,8,139,64,32,137,84,36,12,137,76,36,8,137,68,36,4,139,69,228,137,4,36,232,195,103,1,0,235,28,139,85,236,139,69,8,139,64,32,137,84,36,8,137,68,36,4,139, 69,228,137,4,36,232,84,0,0,0,139,69,8,139,80,28,139,69,8,139,72,12,139,69,228,137,68,36,12,137,84,36,8,141,131,60,113,1,0,139,0,137,68,36,4,137,12,36,232,61,209,254,255,131,125,240,0,116,20,139,69,236,137,68,36,4,139,69,228,137,4,36,232,215,193,254,255, 235,9,139,85,8,139,69,228,137,66,44,131,196,52,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,41,103,1,0,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139, 64,32,139,0,131,248,3,117,75,139,69,8,139,64,40,137,4,36,232,100,110,253,255,139,69,8,139,72,40,139,85,12,139,2,137,1,139,66,4,137,65,4,139,66,8,137,65,8,139,69,12,139,64,8,133,192,116,13,139,69,12,139,80,8,139,66,8,64,137,66,8,139,69,8,137,4,36,232, 20,254,255,255,235,21,141,131,153,90,1,0,137,68,36,4,139,69,8,137,4,36,232,88,163,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,64,32,139,0,131,248,1,117,25,139,69,8,139,80,32,139,69,12,137,66,4,139,69,8,137,4,36, 232,198,253,255,255,235,21,141,131,50,90,1,0,137,68,36,4,139,69,8,137,4,36,232,10,163,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,64,32,139,0,131,248,2,117,25,139,69,8,139,80,32,139,69,12,137,66,4,139,69,8,137,4, 36,232,120,253,255,255,235,21,141,131,251,89,1,0,137,68,36,4,139,69,8,137,4,36,232,188,162,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,139,85,20,137,84,36,12,139,85,16,137,84,36,8,199,68,36,4,0,0,0,0,137,4,36,232,82,201,254,255,201,195, 85,137,229,131,236,40,139,69,16,64,193,224,3,137,4,36,232,92,190,254,255,137,69,244,199,69,240,0,0,0,0,235,37,139,85,244,131,194,8,139,69,240,193,224,3,141,12,2,139,69,240,193,224,3,3,69,20,139,80,4,139,0,137,1,137,81,4,255,69,240,139,69,240,59,69,16, 124,211,139,69,244,199,0,2,0,0,0,139,85,244,139,69,12,137,66,4,139,85,16,66,139,77,8,139,69,244,137,68,36,12,137,84,36,8,199,68,36,4,0,0,0,0,137,12,36,232,206,200,254,255,139,69,16,64,193,224,3,137,68,36,4,139,69,244,137,4,36,232,191,191,254,255,201, 195,85,137,229,131,236,40,139,69,8,139,64,40,137,69,244,139,69,8,139,64,36,137,69,240,235,15,139,69,244,137,4,36,232,136,108,253,255,131,69,244,12,255,77,240,131,125,240,255,117,232,139,69,8,139,64,28,141,20,197,0,0,0,0,139,69,8,139,64,32,137,84,36,4, 137,4,36,232,108,191,254,255,139,69,8,139,64,28,141,20,197,0,0,0,0,139,69,8,139,64,44,137,84,36,4,137,4,36,232,77,191,254,255,139,69,8,139,64,36,137,194,137,208,1,192,1,208,193,224,2,137,194,139,69,8,139,64,40,137,84,36,4,137,4,36,232,40,191,254,255, 201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,91,255,255,255,141,187,96,249,255,255,141,131,105,88,1,0,137,4,36,232,139,163,254,255,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,48,0,0,0,137,116,36,8,137, 124,36,4,137,4,36,232,63,152,254,255,137,194,141,131,79,173,1,0,137,16,141,147,243,251,255,255,141,131,79,173,1,0,139,0,137,84,36,4,137,4,36,232,178,159,254,255,141,147,124,253,255,255,141,131,79,173,1,0,139,0,137,84,36,4,137,4,36,232,169,159,254,255, 141,147,252,253,255,255,141,131,79,173,1,0,139,0,137,84,36,4,137,4,36,232,160,159,254,255,141,147,74,254,255,255,141,131,79,173,1,0,139,0,137,84,36,4,137,4,36,232,151,159,254,255,141,147,152,254,255,255,141,131,79,173,1,0,139,0,137,84,36,4,137,4,36,232, 142,159,254,255,141,147,193,254,255,255,141,131,79,173,1,0,139,0,137,84,36,4,137,4,36,232,133,159,254,255,131,196,44,91,94,95,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,141,131,78,172,1,0,139,0,137,4,36,232,198,215,254,255,137,69,240,131,125,12, 0,117,60,141,69,208,137,69,16,199,69,12,2,0,0,0,199,69,208,1,0,0,0,141,131,194,93,1,0,139,0,137,69,212,141,69,208,131,192,8,199,0,1,0,0,0,141,69,208,141,80,8,141,131,194,93,1,0,139,0,137,66,4,139,85,240,139,69,12,137,66,28,139,69,12,193,224,3,137,4,36, 232,192,187,254,255,137,194,139,69,240,137,80,32,199,69,228,0,0,0,0,139,69,16,137,69,236,139,69,240,139,64,32,137,69,232,233,7,1,0,0,139,69,236,139,0,137,69,224,131,125,224,2,15,133,194,0,0,0,139,69,236,139,64,4,139,0,15,182,0,136,69,247,128,125,247, 115,117,45,139,69,232,199,0,2,0,0,0,139,85,240,141,131,70,108,1,0,139,0,137,68,36,4,137,20,36,232,207,201,254,255,137,194,139,69,232,137,80,4,233,169,0,0,0,128,125,247,112,117,42,139,69,232,199,0,3,0,0,0,139,85,240,141,131,106,108,1,0,139,0,137,68,36, 4,137,20,36,232,156,201,254,255,137,194,139,69,232,137,80,4,235,121,128,125,247,102,116,33,139,69,236,139,64,4,139,0,137,68,36,8,141,131,105,87,1,0,137,68,36,4,139,69,240,137,4,36,232,15,159,255,255,139,69,232,199,0,1,0,0,0,139,85,240,141,131,246,106, 1,0,139,0,137,68,36,4,137,20,36,232,75,201,254,255,137,194,139,69,232,137,80,4,235,40,139,69,232,199,0,1,0,0,0,139,85,240,141,131,246,106,1,0,139,0,137,68,36,4,137,20,36,232,33,201,254,255,137,194,139,69,232,137,80,4,131,69,232,8,131,69,236,8,255,69, 228,139,69,228,59,69,12,15,140,237,254,255,255,139,69,240,131,196,68,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,28,59,69,16,125,9,139,69,8,139,64,28,137,69,16,139,69,16,137,69,236,139,69,8,139,80,32,139,69,236,193,224,3,141,4, 2,137,69,240,139,69,236,193,224,3,3,69,20,137,69,244,233,129,0,0,0,139,69,240,139,0,137,69,232,139,69,244,139,0,59,69,232,116,23,141,131,198,85,1,0,137,68,36,4,139,69,8,137,4,36,232,44,158,255,255,235,88,131,125,232,1,117,26,139,69,244,139,80,4,139,69, 240,139,64,4,137,84,36,4,137,4,36,232,30,202,254,255,235,56,131,125,232,2,117,26,139,69,244,139,80,4,139,69,240,139,64,4,137,84,36,4,137,4,36,232,129,202,254,255,235,24,139,69,244,139,80,4,139,69,240,139,64,4,137,84,36,4,137,4,36,232,77,201,254,255,131, 109,240,8,131,109,244,8,255,77,236,131,125,236,255,15,133,106,255,255,255,131,196,36,91,201,195,85,137,229,131,236,40,139,69,16,64,193,224,3,137,4,36,232,134,185,254,255,137,69,244,199,69,240,0,0,0,0,235,37,139,85,244,131,194,8,139,69,240,193,224,3,141, 12,2,139,69,240,193,224,3,3,69,20,139,80,4,139,0,137,1,137,81,4,255,69,240,139,69,240,59,69,16,124,211,139,69,244,199,0,2,0,0,0,139,85,244,139,69,12,137,66,4,139,85,16,66,139,69,244,137,68,36,12,137,84,36,8,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,152, 254,255,255,139,69,16,64,193,224,3,137,68,36,4,139,69,244,137,4,36,232,233,186,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,28,141,20,197,0,0,0,0,139,69,8,139,64,32,137,84,36,4,137,4,36,232,194,186,254,255,201,195,85,137,229,87,86,83,131,236, 44,232,0,0,0,0,91,141,179,203,255,255,255,141,187,147,252,255,255,141,131,51,84,1,0,137,4,36,232,37,159,254,255,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,217,147,254,255, 137,194,141,131,237,168,1,0,137,16,141,147,75,254,255,255,141,131,237,168,1,0,139,0,137,84,36,4,137,4,36,232,144,155,254,255,141,147,49,255,255,255,141,131,237,168,1,0,139,0,137,84,36,4,137,4,36,232,135,155,254,255,131,196,44,91,94,95,201,195,85,137, 229,83,131,236,68,232,0,0,0,0,91,141,131,84,168,1,0,139,0,137,4,36,232,200,211,254,255,137,69,240,131,125,12,0,117,60,141,69,208,137,69,16,199,69,12,2,0,0,0,199,69,208,2,0,0,0,141,131,244,102,1,0,139,0,137,69,212,141,69,208,131,192,8,199,0,2,0,0,0,141, 69,208,141,80,8,141,131,244,102,1,0,139,0,137,66,4,139,85,240,139,69,12,137,66,28,139,69,12,193,224,3,137,4,36,232,194,183,254,255,137,194,139,69,240,137,80,32,199,69,228,0,0,0,0,139,69,16,137,69,236,139,69,240,139,64,32,137,69,232,233,174,1,0,0,139, 69,236,139,0,137,69,224,131,125,224,2,117,16,139,69,236,139,64,4,139,0,15,182,0,136,69,247,235,16,131,125,224,1,117,6,198,69,247,102,235,4,198,69,247,0,128,125,247,112,117,45,139,69,232,199,0,3,0,0,0,139,85,240,141,131,108,104,1,0,139,0,137,68,36,4,137, 20,36,232,195,197,254,255,137,194,139,69,232,137,80,4,233,66,1,0,0,128,125,247,102,117,45,139,69,232,199,0,1,0,0,0,139,85,240,141,131,248,102,1,0,139,0,137,68,36,4,137,20,36,232,144,197,254,255,137,194,139,69,232,137,80,4,233,15,1,0,0,128,125,247,98, 117,45,139,69,232,199,0,0,0,0,0,139,85,240,141,131,244,102,1,0,139,0,137,68,36,4,137,20,36,232,93,197,254,255,137,194,139,69,232,137,80,4,233,220,0,0,0,128,125,247,108,117,45,139,69,232,199,0,4,0,0,0,139,85,240,141,131,56,104,1,0,139,0,137,68,36,4,137, 20,36,232,42,197,254,255,137,194,139,69,232,137,80,4,233,169,0,0,0,128,125,247,115,117,42,139,69,232,199,0,2,0,0,0,139,85,240,141,131,72,104,1,0,139,0,137,68,36,4,137,20,36,232,247,196,254,255,137,194,139,69,232,137,80,4,235,121,128,125,247,97,117,42, 139,69,232,199,0,5,0,0,0,139,85,240,141,131,72,104,1,0,139,0,137,68,36,4,137,20,36,232,199,196,254,255,137,194,139,69,232,137,80,4,235,73,139,69,236,139,64,4,139,0,137,68,36,8,141,131,157,83,1,0,137,68,36,4,139,69,240,137,4,36,232,64,154,255,255,139, 69,232,199,0,1,0,0,0,139,85,240,141,131,248,102,1,0,139,0,137,68,36,4,137,20,36,232,124,196,254,255,137,194,139,69,232,137,80,4,131,69,232,8,131,69,236,8,255,69,228,139,69,228,59,69,12,15,140,70,254,255,255,139,69,240,131,196,68,91,201,195,85,137,229, 83,131,236,52,232,0,0,0,0,91,139,69,8,139,64,28,137,69,240,139,69,8,139,80,32,139,69,240,193,224,3,141,4,2,137,69,244,233,30,1,0,0,139,69,244,139,0,131,248,1,117,67,131,125,16,0,116,16,139,69,20,137,4,36,232,197,28,254,255,217,93,224,235,15,141,131,101, 87,1,0,243,15,16,0,243,15,17,69,224,139,69,244,139,64,4,243,15,16,69,224,243,15,17,68,36,4,137,4,36,232,149,197,254,255,233,209,0,0,0,139,69,244,139,0,133,192,117,19,139,69,244,139,64,4,137,4,36,232,102,196,254,255,233,181,0,0,0,139,69,244,139,0,131, 248,2,117,56,131,125,16,0,116,16,139,69,20,137,4,36,232,176,28,254,255,137,69,228,235,11,141,131,233,101,1,0,139,0,137,69,228,139,69,244,139,64,4,139,85,228,137,84,36,4,137,4,36,232,183,197,254,255,235,115,139,69,244,139,0,131,248,3,117,65,131,125,16, 0,116,10,139,69,20,139,0,131,248,3,116,23,141,131,84,81,1,0,137,68,36,4,139,69,8,137,4,36,232,241,152,255,255,235,66,139,69,20,139,80,4,139,69,244,139,64,4,137,84,36,4,137,4,36,232,82,196,254,255,235,40,139,69,244,139,80,4,139,69,20,137,68,36,12,139, 69,16,137,68,36,8,141,131,217,101,1,0,139,0,137,68,36,4,137,20,36,232,197,197,254,255,131,109,244,8,255,77,240,131,125,240,255,15,133,209,254,255,255,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,28,137,69,240,139,69,8, 139,80,32,139,69,240,193,224,3,141,4,2,137,69,244,235,93,139,69,244,139,0,133,192,117,16,139,69,244,139,64,4,137,4,36,232,84,195,254,255,235,68,139,69,244,139,0,131,248,5,117,37,139,69,244,139,80,4,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69, 12,137,68,36,4,137,20,36,232,207,197,254,255,235,21,141,131,7,80,1,0,137,68,36,4,139,69,8,137,4,36,232,15,152,255,255,131,109,244,8,255,77,240,131,125,240,255,117,150,131,196,36,91,201,195,85,137,229,131,236,24,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0, 0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,219,253,255,255,201,195,85,137,229,131,236,40,199,69,240,3,0,0,0,139,69,12,137,69,244,141,69,240,137,68,36,12,199,68,36,8,1,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,164,253,255,255,201,195,85,137,229, 131,236,40,199,69,240,1,0,0,0,139,69,12,137,69,244,141,69,240,137,68,36,12,199,68,36,8,1,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,109,253,255,255,201,195,85,137,229,131,236,40,199,69,240,2,0,0,0,139,69,12,137,69,244,141,69,240,137,68,36,12,199, 68,36,8,1,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,54,253,255,255,201,195,85,137,229,131,236,24,139,69,8,139,64,28,141,20,197,0,0,0,0,139,69,8,139,64,32,137,84,36,4,137,4,36,232,209,180,254,255,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0, 0,91,141,179,203,255,255,255,141,187,160,250,255,255,141,131,204,41,1,0,137,4,36,232,52,153,254,255,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,232,141,254,255,137,194,141, 131,0,163,1,0,137,16,141,131,212,41,1,0,137,4,36,232,236,152,254,255,141,147,160,250,255,255,199,68,36,12,0,0,0,0,199,68,36,8,10,0,0,0,137,68,36,4,137,20,36,232,214,144,254,255,141,147,255,252,255,255,141,131,0,163,1,0,139,0,137,84,36,4,137,4,36,232, 111,149,254,255,141,147,251,254,255,255,141,131,0,163,1,0,139,0,137,84,36,4,137,4,36,232,17,149,254,255,141,147,38,255,255,255,141,131,0,163,1,0,139,0,137,84,36,4,137,4,36,232,8,149,254,255,141,147,93,255,255,255,141,131,0,163,1,0,139,0,137,84,36,4,137, 4,36,232,255,148,254,255,141,147,148,255,255,255,141,131,0,163,1,0,139,0,137,84,36,4,137,4,36,232,246,148,254,255,141,147,97,254,255,255,141,131,0,163,1,0,139,0,137,84,36,4,137,4,36,232,254,148,254,255,131,196,44,91,94,95,201,195,85,137,229,83,131,236, 36,232,0,0,0,0,91,141,131,207,161,1,0,139,0,137,4,36,232,63,205,254,255,137,69,244,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,27,187,254,255,139,69,244,199,68,36,4,0,0,0,0,137,4,36,232,226,191,254,255,139,85,244,139,69,8,137,66,28,139, 69,244,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,243,15,16,72,28,141,131,225,82,1,0,243,15,16,0,15,46,200,117,4,122,2,235,14,139,69,8,139,64,12,137,4,36,232,61,192,254,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232, 0,0,0,0,91,139,69,8,243,15,16,72,28,141,131,165,82,1,0,243,15,16,0,15,46,200,117,4,122,2,235,21,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,118,192,254,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,243,15,16,72, 28,141,131,98,82,1,0,243,15,16,0,15,46,200,117,4,122,2,235,21,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,202,192,254,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,243,15,16,72,28,141,131,31,82,1,0,243,15,16,0, 15,46,200,117,4,122,2,235,21,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,10,193,254,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,243,15,16,72,28,141,131,220,81,1,0,243,15,16,0,15,46,200,117,4,122,2,235,35,139, 69,8,139,80,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,60,193,254,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,243,15,16,72,28,141,131,139,81,1,0,243,15,16,0,15,46,200,117,4,122,2, 235,35,139,69,8,139,80,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,124,193,254,255,131,196,20,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,242,253,255,255,141,131,107,75,1,0,137,4,36,232,3,150, 254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,179,138,254,255,137,194,141,131,205,159,1,0,137,16,141,147,76,254,255,255,141,131,205,159,1,0,139,0,137,84,36,4, 137,4,36,232,38,146,254,255,141,147,136,254,255,255,141,131,205,159,1,0,139,0,137,84,36,4,137,4,36,232,29,146,254,255,141,147,203,254,255,255,141,131,205,159,1,0,139,0,137,84,36,4,137,4,36,232,20,146,254,255,141,147,14,255,255,255,141,131,205,159,1,0, 139,0,137,84,36,4,137,4,36,232,11,146,254,255,141,147,81,255,255,255,141,131,205,159,1,0,139,0,137,84,36,4,137,4,36,232,2,146,254,255,141,147,162,255,255,255,141,131,205,159,1,0,139,0,137,84,36,4,137,4,36,232,249,145,254,255,131,196,32,91,94,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,207,158,1,0,139,0,137,4,36,232,59,202,254,255,137,69,244,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,23,184,254,255,139,85,244,141,131,107,93,1,0,139,0,137,68,36,4,137,20,36,232,218,188,254, 255,139,85,244,141,131,107,93,1,0,139,0,137,68,36,4,137,20,36,232,195,188,254,255,137,194,139,69,244,137,80,28,139,85,244,139,69,8,137,66,32,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,243,15,16,64,32,15,46,69,12,119,2,235,23,139, 69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,52,190,254,255,235,21,139,69,8,139,80,28,139,69,12,137,68,36,4,137,20,36,232,29,190,254,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,50,255,255,255,141,131,174,73,1,0,137,4,36,232,63, 148,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,239,136,254,255,137,194,141,131,13,158,1,0,137,16,141,147,175,255,255,255,141,131,13,158,1,0,139,0,137,84,36, 4,137,4,36,232,132,144,254,255,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,144,157,1,0,139,0,137,4,36,232,248,200,254,255,137,69,244,141,131,51,73,1,0,137,4,36,232,177,147,254,255,137,198,141,131,56,78,1,0,137,4,36,232, 161,147,254,255,139,85,244,139,77,244,137,116,36,12,137,68,36,8,137,84,36,4,137,12,36,232,25,175,254,255,139,85,244,141,131,36,92,1,0,139,0,137,68,36,4,137,20,36,232,116,187,254,255,139,69,244,199,64,28,0,0,0,0,139,69,244,131,196,32,91,94,201,195,85, 137,229,131,236,24,139,69,8,199,64,28,1,0,0,0,139,69,8,199,64,32,255,255,255,255,235,29,139,69,8,139,64,32,141,80,255,139,69,8,137,80,32,139,69,8,139,64,12,137,4,36,232,202,187,254,255,139,69,8,139,64,28,133,192,116,10,139,69,8,139,64,32,133,192,117, 207,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,34,78,1,0,243,15,16,0,15,46,69,12,119,2,235,11,141,131,34,78,1,0,139,0,137,69,12,139,69,8,199,64,28,1,0,0,0,243,15,16,69,12,243,15,44,208,139,69,8,137,80,32,235,29,139,69,8,139,64,32,141,80, 255,139,69,8,137,80,32,139,69,8,139,64,12,137,4,36,232,82,187,254,255,139,69,8,139,64,28,133,192,116,10,139,69,8,139,64,32,133,192,117,207,131,196,20,91,201,195,85,137,229,131,236,8,139,69,8,199,64,28,0,0,0,0,201,195,85,137,229,83,131,236,36,232,0,0, 0,0,91,141,131,217,71,1,0,137,4,36,232,100,146,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,141,131,147,254,255,255,137,68,36,4,137,20,36,232,20,135,254,255,137,194,141,131,48,156,1,0,137,16,141, 147,23,255,255,255,141,131,48,156,1,0,139,0,137,84,36,4,137,4,36,232,135,142,254,255,141,147,102,255,255,255,141,131,48,156,1,0,139,0,137,84,36,4,137,4,36,232,143,142,254,255,141,131,211,71,1,0,137,4,36,232,228,145,254,255,137,194,141,139,226,255,255, 255,141,131,48,156,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,167,138,254,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,244,0,0,0,0,199,69,240,0,0,0,0,139,69,8,139,64,28,133,192,15,132,8,1,0,0,139,69, 8,199,64,32,0,0,0,0,139,69,8,139,64,28,139,0,137,69,236,233,224,0,0,0,131,125,240,0,117,22,139,69,236,15,182,0,60,37,117,12,199,69,240,1,0,0,0,233,193,0,0,0,131,125,240,0,15,132,183,0,0,0,139,69,236,15,182,0,15,190,192,137,68,36,4,141,131,22,71,1,0,137, 4,36,232,111,84,1,0,133,192,15,133,148,0,0,0,139,69,236,15,182,0,60,115,117,25,139,69,8,199,64,32,2,0,0,0,139,69,8,199,64,36,0,0,0,0,233,130,0,0,0,139,69,236,15,182,0,15,190,192,137,68,36,4,141,131,36,71,1,0,137,4,36,232,41,84,1,0,133,192,116,22,139, 69,8,199,64,32,1,0,0,0,139,69,8,199,64,36,0,0,0,0,235,77,139,69,236,15,182,0,15,190,192,137,68,36,4,141,131,42,71,1,0,137,4,36,232,244,83,1,0,133,192,116,22,139,69,8,199,64,32,1,0,0,0,139,69,8,199,64,36,1,0,0,0,235,24,199,69,240,0,0,0,0,255,69,236,139, 69,236,15,182,0,132,192,15,133,18,255,255,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,52,154,1,0,139,0,137,4,36,232,152,197,254,255,137,69,244,131,125,8,0,116,12,139,69,8,139,0,15,182,0,132,192,117,17,141,131,251,69,1,0, 137,4,36,232,63,144,254,255,137,69,8,139,85,244,141,131,24,90,1,0,139,0,137,68,36,4,137,20,36,232,41,184,254,255,139,85,244,139,69,8,137,66,28,139,69,244,199,64,32,0,0,0,0,139,69,244,199,64,36,0,0,0,0,139,69,244,137,4,36,232,71,254,255,255,139,69,244, 131,196,36,91,201,195,85,137,229,83,129,236,20,8,0,0,232,0,0,0,0,91,139,69,8,137,133,20,248,255,255,141,131,170,88,1,0,139,0,139,16,137,85,244,49,210,139,133,20,248,255,255,139,64,32,131,248,1,15,133,134,0,0,0,139,133,20,248,255,255,139,64,36,133,192, 116,63,243,15,16,69,12,243,15,44,208,139,133,20,248,255,255,139,64,28,139,0,137,84,36,16,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,136,80,1,0,233,164,0,0,0,243,15,90,69,12,139,133,20,248,255,255,139,64, 28,139,0,242,15,17,68,36,16,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,75,80,1,0,235,106,243,15,90,69,12,242,15,17,68,36,16,141,131,22,246,0,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141, 133,36,248,255,255,137,4,36,232,22,80,1,0,139,133,20,248,255,255,139,64,28,139,16,141,133,36,248,255,255,137,68,36,16,137,84,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,223,79,1,0,15,182,133,12,252,255,255,132, 192,116,37,141,133,12,252,255,255,137,4,36,232,177,142,254,255,137,194,139,133,20,248,255,255,139,64,12,137,84,36,4,137,4,36,232,215,184,254,255,141,131,170,88,1,0,139,0,139,85,244,51,16,116,5,232,161,79,1,0,129,196,20,8,0,0,91,201,195,85,137,229,83, 129,236,36,4,0,0,232,0,0,0,0,91,139,69,8,137,133,4,252,255,255,139,69,12,137,133,0,252,255,255,141,131,51,87,1,0,139,0,139,16,137,85,244,49,210,139,133,4,252,255,255,139,64,32,131,248,2,117,59,139,133,0,252,255,255,139,16,139,133,4,252,255,255,139,64, 28,139,0,137,84,36,16,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133,12,252,255,255,137,4,36,232,26,79,1,0,235,53,139,133,4,252,255,255,139,64,28,139,0,199,68,36,16,0,0,0,0,137,68,36,12,199,68,36,8,232,3,0,0,199,68,36,4,0,0,0,0,141,133, 12,252,255,255,137,4,36,232,227,78,1,0,15,182,133,12,252,255,255,132,192,116,37,141,133,12,252,255,255,137,4,36,232,181,141,254,255,137,194,139,133,4,252,255,255,139,64,12,137,84,36,4,137,4,36,232,219,183,254,255,141,131,51,87,1,0,139,0,139,85,244,51, 16,116,5,232,165,78,1,0,129,196,36,4,0,0,91,201,195,85,137,229,131,236,24,139,69,8,139,85,12,137,80,28,139,69,8,137,4,36,232,177,251,255,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,217,252,255,255,141,131,235,66,1,0,137,4,36,232,67, 141,254,255,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,243,129,254,255,137,194,141,131,25,151,1,0,137,16,141,147,100,253,255,255,141,131,25,151,1,0,139,0,137,84,36, 4,137,4,36,232,136,137,254,255,141,147,219,254,255,255,141,131,25,151,1,0,139,0,137,84,36,4,137,4,36,232,127,137,254,255,141,131,161,199,0,0,137,4,36,232,195,140,254,255,137,194,141,139,215,255,255,255,141,131,25,151,1,0,139,0,199,68,36,16,0,0,0,0,199, 68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,126,133,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,69,150,1,0,139,0,137,4,36,232,165,193,254,255,137,69,244,139,85,244,139,69,8,137,66,36,139,85,244,141,131,161, 71,1,0,139,0,137,66,32,139,85,244,141,131,213,84,1,0,139,0,137,68,36,4,137,20,36,232,66,180,254,255,139,85,244,141,131,213,84,1,0,139,0,137,68,36,4,137,20,36,232,43,180,254,255,137,194,139,69,244,137,80,28,139,69,244,131,192,36,139,85,244,137,68,36,4, 137,20,36,232,52,175,254,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,80,32,139,69,8,139,64,28,137,84,36,4,137,4,36,232,157,181,254,255,139,69,8,139,80,36,139,69,8,139,64,12,137,84,36,4,137,4,36,232,133,181,254,255,201,195, 85,137,229,131,236,24,139,69,8,139,85,12,137,80,32,139,69,8,137,4,36,232,174,255,255,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,20,255,255,255,141,131,64,65,1,0,137,4,36,232,139,139,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0, 0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,59,128,254,255,137,194,141,131,101,149,1,0,137,16,141,131,69,65,1,0,137,4,36,232,63,139,254,255,141,147,20,255,255,255,199,68,36,12,0,0,0,0,199,68,36,8,6,0,0,0, 137,68,36,4,137,20,36,232,41,131,254,255,141,147,159,255,255,255,141,131,101,149,1,0,139,0,137,84,36,4,137,4,36,232,126,135,254,255,141,147,215,255,255,255,141,131,101,149,1,0,139,0,137,84,36,4,137,4,36,232,134,135,254,255,131,196,32,91,94,201,195,85, 137,229,83,131,236,36,232,0,0,0,0,91,141,131,159,148,1,0,139,0,137,4,36,232,251,191,254,255,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,141,131,43,83,1,0,139,0,137,68,36,4,137,20,36,232,166,178,254,255,139,69,244,131,196,36,91,201,195,85,137, 229,131,236,24,139,69,8,139,80,28,139,69,8,139,64,12,137,84,36,4,137,4,36,232,53,180,254,255,201,195,85,137,229,131,236,24,139,69,8,243,15,16,64,28,15,46,69,12,117,4,122,2,235,33,139,85,8,139,69,12,137,66,28,139,69,8,139,80,28,139,69,8,139,64,12,137, 84,36,4,137,4,36,232,250,179,254,255,201,195,85,137,229,131,236,8,139,85,8,139,69,12,137,66,28,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,62,255,255,255,141,131,203,63,1,0,137,4,36,232,11,138,254,255,199,68,36,24,0,0,0,0,199,68,36,20, 6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,187,126,254,255,137,194,141,131,233,147,1,0,137,16,141,147,135,255,255,255,141,131,233,147,1,0,139,0,137,84,36,4,137,4,36,232,46,134,254,255,141,147,167, 255,255,255,141,131,233,147,1,0,139,0,137,84,36,4,137,4,36,232,54,134,254,255,141,131,105,196,0,0,137,4,36,232,139,137,254,255,137,194,141,139,226,255,255,255,141,131,233,147,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4, 137,4,36,232,70,130,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,25,147,1,0,139,0,137,68,36,4,139,69,8,137,4,36,232,6,196,254,255,137,69,244,131,125,244,0,117,61,141,131,25,147,1,0,139,0,137,4,36,232,77,190,254,255, 137,69,244,139,85,244,141,131,105,68,1,0,139,0,137,66,8,139,69,244,199,64,4,0,0,0,0,139,85,244,139,69,8,137,68,36,4,137,20,36,232,161,193,254,255,139,69,244,139,64,4,141,80,1,139,69,244,137,80,4,139,69,244,131,192,8,131,196,36,91,201,195,85,137,229,83, 131,236,36,232,0,0,0,0,91,141,131,148,146,1,0,139,0,137,68,36,4,139,69,8,137,4,36,232,129,195,254,255,137,69,244,131,125,244,0,116,56,139,69,244,139,64,4,141,80,255,139,69,244,137,80,4,139,69,244,139,64,4,133,192,117,45,139,69,244,139,85,8,137,84,36, 4,137,4,36,232,14,194,254,255,139,69,244,137,4,36,232,4,190,254,255,235,14,141,131,117,62,1,0,137,4,36,232,57,135,255,255,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,27,146,1,0,139,0,137,68,36,4,139,69,8,137,4,36,232,8,195,254, 255,137,69,244,131,125,244,0,117,9,199,69,228,1,0,0,0,235,18,139,69,244,139,80,8,139,69,12,137,16,199,69,228,0,0,0,0,139,69,228,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,202,145,1,0,139,0,137,68,36,4,139,69,8,137,4,36,232, 183,194,254,255,137,69,244,131,125,244,0,117,9,199,69,228,1,0,0,0,235,16,139,85,244,139,69,12,137,66,8,199,69,228,0,0,0,0,139,69,228,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,119,145,1,0,139,0,137,4,36,232,207,188,254,255, 137,69,244,139,85,244,139,69,8,137,66,28,139,69,8,137,4,36,232,46,254,255,255,137,194,139,69,244,137,80,32,139,85,244,141,131,255,79,1,0,139,0,137,68,36,4,137,20,36,232,103,175,254,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139, 64,32,139,16,139,69,8,139,64,12,137,84,36,4,137,4,36,232,244,176,254,255,201,195,85,137,229,131,236,8,139,69,8,139,80,32,139,69,12,137,2,201,195,85,137,229,131,236,24,139,69,8,139,64,28,137,4,36,232,66,254,255,255,201,195,85,137,229,87,86,83,131,236, 44,232,0,0,0,0,91,141,179,220,255,255,255,141,187,75,255,255,255,141,131,193,60,1,0,137,4,36,232,230,134,254,255,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,154,123,254,255, 137,194,141,131,206,144,1,0,137,16,141,131,199,60,1,0,137,4,36,232,158,134,254,255,141,147,75,255,255,255,199,68,36,12,0,0,0,0,199,68,36,8,7,0,0,0,137,68,36,4,137,20,36,232,136,126,254,255,141,147,167,255,255,255,141,131,206,144,1,0,139,0,137,84,36,4, 137,4,36,232,221,130,254,255,141,147,201,255,255,255,141,131,206,144,1,0,139,0,137,84,36,4,137,4,36,232,229,130,254,255,141,131,193,60,1,0,137,4,36,232,58,134,254,255,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,12,0,0,0,199,68,36,8,0,0,0,0, 199,68,36,4,0,0,0,0,137,4,36,232,238,122,254,255,137,194,141,131,210,144,1,0,137,16,131,196,44,91,94,95,201,195,85,137,229,131,236,8,232,27,198,255,255,232,176,199,255,255,232,175,201,255,255,232,214,202,255,255,232,80,205,255,255,232,181,207,255,255, 232,105,212,255,255,232,229,218,255,255,232,17,226,255,255,232,114,230,255,255,232,94,236,255,255,232,145,239,255,255,232,80,241,255,255,232,45,243,255,255,232,66,248,255,255,232,245,249,255,255,232,112,251,255,255,232,137,254,255,255,201,195,85,137, 229,83,129,236,36,20,0,0,232,0,0,0,0,91,139,69,8,137,133,4,236,255,255,139,69,12,137,133,0,236,255,255,139,69,16,137,133,252,235,255,255,141,131,76,78,1,0,139,0,139,16,137,85,244,49,210,141,131,96,143,1,0,139,0,137,133,16,236,255,255,235,46,139,133,16, 236,255,255,139,64,8,59,133,0,236,255,255,117,14,139,133,0,236,255,255,137,4,36,232,117,2,0,0,139,133,16,236,255,255,139,64,16,137,133,16,236,255,255,131,189,16,236,255,255,0,117,201,139,133,252,235,255,255,137,4,36,232,86,72,1,0,131,192,50,61,160,15, 0,0,118,43,141,131,79,59,1,0,137,4,36,232,204,131,255,255,139,133,252,235,255,255,137,68,36,4,141,131,164,21,1,0,137,4,36,232,180,131,255,255,233,154,1,0,0,141,131,92,143,1,0,139,0,137,4,36,232,248,185,254,255,137,133,16,236,255,255,139,133,16,236,255, 255,137,68,36,16,141,131,101,59,1,0,137,68,36,12,199,68,36,8,80,0,0,0,199,68,36,4,0,0,0,0,141,69,164,137,4,36,232,162,69,1,0,141,69,164,137,4,36,232,130,132,254,255,137,133,12,236,255,255,139,149,16,236,255,255,139,133,12,236,255,255,137,68,36,4,137, 20,36,232,27,189,254,255,139,149,16,236,255,255,139,133,4,236,255,255,137,66,4,139,149,16,236,255,255,139,133,12,236,255,255,137,66,12,139,149,16,236,255,255,139,133,0,236,255,255,137,66,8,141,131,96,143,1,0,139,16,139,133,16,236,255,255,137,80,16,141, 147,96,143,1,0,139,133,16,236,255,255,137,2,199,68,36,4,37,0,0,0,139,133,252,235,255,255,137,4,36,232,63,71,1,0,131,192,2,137,133,24,236,255,255,139,149,24,236,255,255,139,133,252,235,255,255,137,209,41,193,137,200,137,133,20,236,255,255,139,133,20,236, 255,255,199,68,36,12,232,3,0,0,137,68,36,8,139,133,252,235,255,255,137,68,36,4,141,133,188,251,255,255,137,4,36,232,234,68,1,0,139,133,20,236,255,255,198,132,5,188,251,255,255,0,139,133,12,236,255,255,139,0,137,68,36,16,141,133,188,251,255,255,137,68, 36,12,199,68,36,8,160,15,0,0,199,68,36,4,0,0,0,0,141,133,28,236,255,255,137,4,36,232,138,68,1,0,184,160,15,0,0,43,133,20,236,255,255,199,68,36,12,160,15,0,0,137,68,36,8,139,133,24,236,255,255,137,68,36,4,141,133,28,236,255,255,137,4,36,232,115,68,1,0, 141,133,28,236,255,255,137,4,36,232,40,28,255,255,141,131,76,78,1,0,139,0,139,85,244,51,16,116,5,232,63,68,1,0,129,196,36,20,0,0,91,201,195,85,137,229,131,236,24,232,0,0,0,0,89,141,129,233,140,1,0,139,0,59,69,8,117,16,139,69,8,139,80,16,141,129,233,140, 1,0,137,16,235,56,141,129,233,140,1,0,139,0,137,69,244,235,28,139,69,240,59,69,8,117,14,139,69,240,139,80,16,139,69,244,137,80,16,235,21,139,69,240,137,69,244,139,69,244,139,64,16,137,69,240,131,125,240,0,117,213,201,195,85,137,229,83,131,236,36,232, 0,0,0,0,91,199,69,240,1,0,0,0,235,97,199,69,240,0,0,0,0,141,131,133,140,1,0,139,0,137,69,244,235,71,139,69,244,139,64,8,59,69,8,117,51,139,69,244,137,68,36,4,141,131,150,56,1,0,137,4,36,232,136,24,255,255,139,69,244,199,64,4,0,0,0,0,139,69,244,137,4, 36,232,62,255,255,255,199,69,240,1,0,0,0,235,15,139,69,244,139,64,16,137,69,244,131,125,244,0,117,179,131,125,240,0,117,153,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,64,8,137,4,36,232,105,255,255,255,201,195,85,137,229,131,236,24,139,69, 8,137,4,36,232,243,254,255,255,139,69,8,137,4,36,232,155,183,254,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,210,139,1,0,139,0,133,192,117,15,232,152,10,254,255,137,194,141,131,210,139,1,0,137,16,141,131,210,139,1,0,139,16,139,69,20,137, 68,36,8,139,69,16,137,68,36,4,137,20,36,232,173,22,254,255,141,131,210,139,1,0,139,0,137,4,36,232,144,27,254,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,118,139,1,0,139,8,139,69,8,139,64,8,137,194,139,69,8,139,64,4,137,76, 36,8,137,84,36,4,137,4,36,232,46,36,252,255,141,131,118,139,1,0,139,0,137,4,36,232,78,10,254,255,141,131,118,139,1,0,199,0,0,0,0,0,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,139,64,4,133,192,116,35,139,69,8,139,80,4,139,69,20,137,68,36,12,139, 69,16,137,68,36,8,139,69,12,137,68,36,4,137,20,36,232,74,134,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,12,139,85,8,137,68,36,4,137,20,36,232,151,186,254,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,214,255,255,255,141,131, 240,54,1,0,137,4,36,232,220,128,254,255,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,20,0,0,0,137,116,36,8,199,68,36,4,0,0,0,0,137,4,36,232,148,117,254,255,137,194,141,131,198,138,1,0,137,16,141,147,161,255,255,255,141,131,198,138,1,0,139,0, 137,84,36,4,137,4,36,232,92,125,254,255,141,131,102,222,0,0,137,4,36,232,126,128,254,255,137,194,141,139,210,254,255,255,141,131,198,138,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,65,121,254,255,141,131,208,236,0,0,137,4,36,232, 72,128,254,255,137,194,141,139,240,254,255,255,141,131,198,138,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,3,121,254,255,141,131,248,54,1,0,137,4,36,232,10,128,254,255,137,194,141,139,76,255,255,255,141,131, 198,138,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,205,120,254,255,141,131,252,54,1,0,137,4,36,232,212,127,254,255,137,194,141,139,188,254,255,255,141,131,198,138,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36, 232,151,120,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,141,131,94,72,1,0,139,0,139,16,137,85,244,49,210,141,131,122,137,1,0,139,0,137,4,36,232,175,180,254,255,137,69,188,139,69,188,137,68,36,16,141,131,171,53,1,0,137,68, 36,12,199,68,36,8,50,0,0,0,199,68,36,4,0,0,0,0,141,69,194,137,4,36,232,95,64,1,0,141,69,194,137,4,36,232,63,127,254,255,137,194,139,69,188,137,80,28,139,69,188,139,64,28,139,85,188,137,68,36,4,137,20,36,232,217,183,254,255,139,85,188,141,131,62,73,1, 0,139,0,137,68,36,4,137,20,36,232,15,167,254,255,139,69,188,141,147,94,72,1,0,139,18,139,77,244,51,10,116,5,232,15,64,1,0,131,196,100,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,12,0,116,19,139,69,12,139,0,133,192,116,10,139,69,12,139, 0,137,69,228,235,9,141,131,5,250,0,0,137,69,228,139,69,228,137,69,244,139,69,8,139,64,28,139,16,139,69,244,137,68,36,8,137,84,36,4,141,131,249,52,1,0,137,4,36,232,178,20,255,255,131,196,52,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,99, 71,1,0,139,0,137,68,36,4,139,69,8,137,4,36,232,128,255,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,138,168,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,28,139,85,8,137,68,36,4,137, 20,36,232,199,183,254,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,214,255,255,255,141,131,82,52,1,0,137,4,36,232,12,126,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,137,116,36,8,141,131,124,254,255, 255,137,68,36,4,137,20,36,232,192,114,254,255,137,194,141,131,2,136,1,0,137,16,141,147,143,255,255,255,141,131,2,136,1,0,139,0,137,84,36,4,137,4,36,232,51,122,254,255,141,147,51,255,255,255,141,131,2,136,1,0,139,0,137,84,36,4,137,4,36,232,76,122,254, 255,141,131,242,25,1,0,137,4,36,232,144,125,254,255,137,194,141,139,185,255,255,255,141,131,2,136,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,75,118,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,100, 232,0,0,0,0,91,141,131,18,70,1,0,139,0,139,16,137,85,244,49,210,141,131,50,135,1,0,139,0,137,4,36,232,99,178,254,255,137,69,188,139,69,188,137,68,36,16,141,131,95,51,1,0,137,68,36,12,199,68,36,8,50,0,0,0,199,68,36,4,0,0,0,0,141,69,194,137,4,36,232,19, 62,1,0,141,69,194,137,4,36,232,243,124,254,255,137,194,139,69,188,137,80,32,232,159,64,250,255,137,194,139,69,188,137,80,28,139,69,188,139,64,32,139,85,188,137,68,36,4,137,20,36,232,128,181,254,255,139,85,188,141,131,242,70,1,0,139,0,137,68,36,4,137, 20,36,232,182,164,254,255,139,69,188,141,147,18,70,1,0,139,18,139,77,244,51,10,116,5,232,182,61,1,0,131,196,100,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,12,0,116,19,139,69,12,139,0,133,192,116,10,139,69,12,139,0,137,69,228,235,9,141, 131,172,247,0,0,137,69,228,139,69,228,137,69,244,139,69,8,139,64,32,139,16,139,69,244,137,68,36,8,137,84,36,4,141,131,196,50,1,0,137,4,36,232,89,18,255,255,131,196,52,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,10,69,1,0,139,0,137,68,36, 4,139,69,8,137,4,36,232,128,255,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,49,166,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,32,139,85,8,137,68,36,4,137,20,36,232,110,181,254, 255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,214,255,255,255,141,131,29,50,1,0,137,4,36,232,179,123,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,141,131,111,254,255,255,137,68,36,4,137, 20,36,232,103,112,254,255,137,194,141,131,173,133,1,0,137,16,141,147,143,255,255,255,141,131,173,133,1,0,139,0,137,84,36,4,137,4,36,232,218,119,254,255,141,147,51,255,255,255,141,131,173,133,1,0,139,0,137,84,36,4,137,4,36,232,243,119,254,255,141,131, 153,23,1,0,137,4,36,232,55,123,254,255,137,194,141,139,185,255,255,255,141,131,173,133,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,242,115,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0, 0,0,91,141,131,233,132,1,0,139,0,137,4,36,232,25,176,254,255,137,69,244,139,85,244,141,131,73,67,1,0,139,0,137,68,36,4,137,20,36,232,205,162,254,255,141,131,221,132,1,0,139,0,139,85,244,137,68,36,4,137,20,36,232,105,179,254,255,139,69,244,131,196,36, 91,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,72,164,254,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,105,132,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,255,179,254,255,131,196,20,91,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,79,132,1,0,139,0,137,4,36,232,123,175,254,255,137,69,244,139,85,244,141,131,171,66,1,0,139,0,137,68,36,4,137,20,36,232,47,162,254,255,141,131,67,132,1,0,139,0,139,85,244,137,68,36,4,137,20,36,232,203,178, 254,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,170,163,254,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,207,131,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,97,179, 254,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,181,131,1,0,139,0,137,4,36,232,221,174,254,255,137,69,244,139,85,244,141,131,13,66,1,0,139,0,137,68,36,4,137,20,36,232,145,161,254,255,137,194,139,69,244,137,80,28,139,85,244, 141,131,93,67,1,0,139,0,137,68,36,4,137,20,36,232,114,161,254,255,137,194,139,69,244,137,80,32,141,131,169,131,1,0,139,0,139,85,244,137,68,36,4,137,20,36,232,6,178,254,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,20,137,68,36,8,139, 69,16,137,68,36,4,199,4,36,1,0,0,0,232,220,251,253,255,137,194,139,69,8,139,64,32,137,84,36,4,137,4,36,232,79,163,254,255,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,42,251,253,255,139,69,8,139,64,28,217,92,36,4,137,4,36,232,160, 162,254,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,201,130,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,87,178,254,255,131,196,20,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,33,254,255,255,141,131,132,13,1,0,137,4,36, 232,152,120,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,28,0,0,0,137,116,36,8,141,131,173,253,255,255,137,68,36,4,137,20,36,232,76,109,254,255,137,194,141,131,162,130,1,0,137,16,141,147,4,254,255,255,141,131,162,130,1,0,139, 0,137,84,36,4,137,4,36,232,225,116,254,255,141,131,28,208,0,0,137,4,36,232,54,120,254,255,137,194,141,131,150,130,1,0,137,16,141,179,191,254,255,255,141,131,12,47,1,0,137,4,36,232,24,120,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,8,0,0,0,199,68, 36,12,28,0,0,0,137,116,36,8,141,131,75,254,255,255,137,68,36,4,137,20,36,232,204,108,254,255,137,194,141,131,166,130,1,0,137,16,141,147,162,254,255,255,141,131,166,130,1,0,139,0,137,84,36,4,137,4,36,232,97,116,254,255,141,131,33,208,0,0,137,4,36,232, 182,119,254,255,137,194,141,131,154,130,1,0,137,16,141,131,132,13,1,0,137,4,36,232,158,119,254,255,137,194,141,131,166,130,1,0,139,0,137,84,36,4,137,4,36,232,170,116,254,255,141,179,201,255,255,255,141,131,18,47,1,0,137,4,36,232,116,119,254,255,137,194, 199,68,36,20,0,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,141,131,233,254,255,255,137,68,36,4,137,20,36,232,40,108,254,255,137,194,141,131,170,130,1,0,137,16,141,147,103,255,255,255,141,131,170,130,1,0,139,0,137,84,36,4,137,4,36,232, 223,115,254,255,141,131,40,208,0,0,137,4,36,232,18,119,254,255,137,194,141,131,158,130,1,0,137,16,141,131,132,13,1,0,137,4,36,232,250,118,254,255,137,194,141,131,170,130,1,0,139,0,137,84,36,4,137,4,36,232,6,116,254,255,131,196,32,91,94,201,195,85,137, 229,131,236,8,232,212,245,255,255,232,159,248,255,255,232,243,250,255,255,232,9,254,255,255,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,182,128,1,0,139,0,137,4,36,232,218,171,254,255,137,69,244,131,125,12,0,117,27,141,131,8,209,0,0,137,4, 36,232,141,118,254,255,137,194,139,69,244,137,80,28,233,255,0,0,0,131,125,12,1,117,99,139,69,16,139,0,131,248,2,117,89,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,12,249,253,255,137,69,240,139,69,240,139,16,141,131,34,45,1,0,137, 68,36,4,137,20,36,232,127,57,1,0,133,192,117,19,139,69,244,141,147,146,63,1,0,139,18,137,80,28,233,164,0,0,0,139,85,244,139,69,240,137,66,28,233,150,0,0,0,232,199,254,253,255,137,69,228,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,228,137,4,36, 232,232,10,254,255,141,69,236,137,68,36,8,141,69,232,137,68,36,4,139,69,228,137,4,36,232,38,8,254,255,139,69,236,64,137,193,139,69,236,139,85,232,137,76,36,8,137,68,36,4,137,20,36,232,61,144,254,255,137,69,232,139,85,232,139,69,236,141,4,2,198,0,0,139, 69,232,137,4,36,232,167,117,254,255,137,194,139,69,244,137,80,28,139,69,236,64,139,85,232,137,68,36,4,137,20,36,232,254,144,254,255,139,69,228,137,4,36,232,109,254,253,255,139,69,244,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69, 8,139,64,28,139,0,15,182,0,132,192,116,11,141,131,220,43,1,0,137,69,244,235,9,141,147,217,186,0,0,137,85,244,139,69,8,139,64,28,139,0,139,85,244,137,84,36,8,137,68,36,4,141,131,223,43,1,0,137,4,36,232,234,110,255,255,131,196,36,91,201,195,85,137,229, 83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,28,139,0,15,182,0,132,192,116,11,141,131,133,43,1,0,137,69,244,235,9,141,147,130,186,0,0,137,85,244,139,69,8,139,64,28,139,0,139,85,244,137,84,36,8,137,68,36,4,141,131,145,43,1,0,137,4,36,232,147,110,255,255, 131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,243,15,90,69,12,242,15,17,69,232,139,69,8,139,64,28,139,0,15,182,0,132,192,116,11,141,131,46,43,1,0,137,69,244,235,9,141,147,43,186,0,0,137,85,244,139,69,8,139,64,28,139,0,242,15,16,69,232, 242,15,17,68,36,12,139,85,244,137,84,36,8,137,68,36,4,141,131,73,43,1,0,137,4,36,232,39,110,255,255,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,131,125,16,0,116,41,139,69,20,139,0,131,248,2,116,31,139,69,8,139,64,28,139,0,137,68,36, 4,141,131,142,175,0,0,137,4,36,232,144,110,255,255,233,136,0,0,0,131,125,16,1,126,15,141,131,231,61,1,0,139,0,139,0,137,69,220,235,40,131,125,16,1,117,15,141,131,247,61,1,0,139,0,139,0,137,69,224,235,13,141,131,163,60,1,0,139,0,139,0,137,69,224,139,69, 224,137,69,220,139,69,8,139,64,28,139,0,15,182,0,132,192,116,11,141,147,194,42,1,0,137,85,228,235,9,141,131,191,185,0,0,137,69,228,139,69,8,139,64,28,139,0,139,85,220,137,84,36,12,139,85,228,137,84,36,8,137,68,36,4,141,131,228,42,1,0,137,4,36,232,3,110, 255,255,139,69,20,137,68,36,4,139,69,16,137,4,36,232,163,110,255,255,232,143,111,255,255,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,12,139,0,137,69,224,139,69,8,139,64,28,139,0,15,182,0,132,192,116,11,141,131,225,41,1,0,137, 69,228,235,9,141,147,222,184,0,0,137,85,228,139,69,8,139,64,28,139,0,139,85,224,137,84,36,12,139,85,228,137,84,36,8,137,68,36,4,141,131,3,42,1,0,137,4,36,232,134,109,255,255,139,69,20,137,68,36,4,139,69,16,137,4,36,232,38,110,255,255,232,18,111,255,255, 131,196,52,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,50,252,255,255,141,131,70,205,0,0,137,4,36,232,222,114,254,255,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116, 36,4,137,4,36,232,142,103,254,255,137,194,141,131,244,124,1,0,137,16,141,147,123,253,255,255,141,131,244,124,1,0,139,0,137,84,36,4,137,4,36,232,1,111,254,255,141,147,41,254,255,255,141,131,244,124,1,0,139,0,137,84,36,4,137,4,36,232,9,111,254,255,141, 147,210,253,255,255,141,131,244,124,1,0,139,0,137,84,36,4,137,4,36,232,222,110,254,255,141,147,149,254,255,255,141,131,244,124,1,0,139,0,137,84,36,4,137,4,36,232,247,110,254,255,141,147,118,255,255,255,141,131,244,124,1,0,139,0,137,84,36,4,137,4,36,232, 238,110,254,255,131,196,32,91,94,201,195,85,137,229,131,236,8,232,12,255,255,255,201,195,85,137,229,131,236,24,199,69,244,0,0,0,0,235,33,139,69,244,193,224,3,137,193,3,77,16,139,69,244,193,224,3,3,69,12,139,80,4,139,0,137,1,137,81,4,255,69,244,139,69, 244,59,69,8,124,215,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,162,60,1,0,139,0,139,16,139,69,8,137,16,139,69,8,199,64,8,0,0,0,0,139,69,8,139,80,8,139,69,8,137,80,4,139,69,8,199,64,12,0,0,0,0,201,195,85,137,229,131,236,40,199,69,244,0,0,0,0, 235,65,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,139,0,131,248,3,117,33,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,139,64,4,137,4,36,232,168,57,253,255,255,69,244,139,69,8,139,64,4,59,69,244, 127,180,139,69,8,139,64,12,133,192,116,38,139,69,8,139,64,4,137,194,137,208,193,224,2,1,208,193,224,2,137,194,139,69,8,139,64,12,137,84,36,4,137,4,36,232,122,140,254,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,137,4,36,232,90,255, 255,255,139,85,16,137,208,193,224,2,1,208,193,224,2,137,4,36,232,100,138,254,255,137,194,139,69,8,137,80,12,139,69,8,139,64,12,133,192,117,29,139,69,8,199,64,4,0,0,0,0,141,131,146,39,1,0,137,4,36,232,42,109,255,255,233,242,0,0,0,139,69,8,139,85,16,137, 80,4,139,69,8,199,64,8,0,0,0,0,199,69,244,0,0,0,0,233,199,0,0,0,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,1,193,139,69,244,193,224,3,3,69,20,139,80,4,139,0,137,1,137,81,4,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193, 224,2,141,4,1,139,0,131,248,3,117,127,139,69,8,139,64,8,141,80,1,139,69,8,137,80,8,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,141,112,8,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,139,64,4,137, 116,36,4,137,4,36,232,10,56,253,255,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,52,1,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,131,192,8,137,70,4,255,69,244,139,69,244,59,69,16,15,140,45,255,255,255, 131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,137,4,36,232,4,254,255,255,139,85,16,66,137,208,193,224,2,1,208,193,224,2,137,4,36,232,13,137,254,255,137,194,139,69,8,137,80,12,139,69,8,139,64,12,133,192,117,29,139,69,8,199, 64,4,0,0,0,0,141,131,60,38,1,0,137,4,36,232,211,107,255,255,233,27,1,0,0,139,85,16,66,139,69,8,137,80,4,139,69,8,199,64,8,0,0,0,0,139,69,8,139,64,12,199,0,2,0,0,0,139,69,8,139,80,12,139,69,12,137,66,4,199,69,244,0,0,0,0,233,215,0,0,0,139,69,8,139,64, 12,141,72,20,139,85,244,137,208,193,224,2,1,208,193,224,2,1,193,139,69,244,193,224,3,3,69,20,139,80,4,139,0,137,1,137,81,4,139,69,8,139,64,12,141,72,20,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,139,0,131,248,3,15,133,133,0,0,0,139,69,8,139, 64,8,141,80,1,139,69,8,137,80,8,139,69,8,139,64,12,141,72,20,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,141,112,8,139,69,8,139,64,12,141,72,20,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,139,64,4,137,116,36,4,137,4,36,232,138,54,253, 255,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,52,1,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,131,192,8,137,70,4,255,69,244,139,69,244,59,69,16,15,140,29,255,255,255,131,196,32,91,94,201,195,85,137, 229,86,131,236,20,199,69,244,0,0,0,0,235,46,139,69,244,193,224,3,137,198,3,117,12,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,139,80,4,139,0,137,6,137,86,4,255,69,244,139,69,8,139,64,4,59,69,244,127,199,131,196,20,94,201,195, 85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,177,56,1,0,139,0,139,16,139,69,12,137,16,139,69,8,139,80,4,139,69,12,137,80,4,139,69,8,139,80,8,139,69,12,137,80,8,139,69,12,139,64,4,137,194,137,208,193,224,2,1,208,193,224,2,137,4,36,232,30,135,254, 255,137,194,139,69,12,137,80,12,139,69,12,139,64,12,133,192,117,29,139,69,12,199,64,4,0,0,0,0,141,131,109,36,1,0,137,4,36,232,228,105,255,255,233,225,0,0,0,199,69,244,0,0,0,0,233,198,0,0,0,139,69,12,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224, 2,141,52,1,139,69,8,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,139,80,4,139,0,137,6,137,86,4,139,69,12,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,139,0,131,248,3,117,112,139,69,12,139,72,12,139,85,244,137,208,193, 224,2,1,208,193,224,2,141,4,1,141,112,8,139,69,12,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,139,64,4,137,116,36,4,137,4,36,232,216,52,253,255,139,69,12,139,72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,52,1,139,69,12,139, 72,12,139,85,244,137,208,193,224,2,1,208,193,224,2,141,4,1,131,192,8,137,70,4,255,69,244,139,69,8,139,64,4,59,69,244,15,143,43,255,255,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,34,35,1,0,137,4,36,232,96,108,254,255, 199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,16,0,0,0,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,20,97,254,255,137,194,141,131,76,55,1,0,139,0,137,16,141,147,105,251,255,255,141,131,76,55,1,0,139,0,139,0,137,84,36,4,137,4,36,232,199, 104,254,255,141,147,191,252,255,255,141,131,76,55,1,0,139,0,139,0,137,84,36,4,137,4,36,232,188,104,254,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,191,54,1,0,139,0,139,0,137,4,36,232,253,160,254,255,137,69,244,139,69,244, 131,192,28,137,4,36,232,230,249,255,255,139,85,244,131,194,28,139,69,16,137,68,36,12,139,69,12,137,68,36,8,199,68,36,4,0,0,0,0,137,20,36,232,140,250,255,255,139,85,244,141,131,111,53,1,0,139,0,137,68,36,4,137,20,36,232,127,147,254,255,139,69,244,131, 192,28,139,85,244,199,68,36,12,0,0,0,0,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,232,134,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,137,69,212,139,69,12,137,69,208,139,69,20,137,69,204,141,131,6,52,1, 0,139,0,139,16,137,85,244,49,210,139,69,212,139,64,32,3,69,16,137,69,232,131,125,232,99,127,50,139,69,232,193,224,3,131,192,15,131,192,15,193,232,4,193,224,4,41,196,141,68,36,16,137,69,200,139,69,200,131,192,15,193,232,4,193,224,4,137,69,200,139,85,200, 137,85,196,235,17,139,69,232,193,224,3,137,4,36,232,89,132,254,255,137,69,196,139,69,196,137,69,240,139,69,240,137,68,36,8,139,69,204,137,68,36,4,139,69,16,137,4,36,232,161,248,255,255,139,69,212,139,64,36,133,192,116,98,139,85,212,131,194,28,141,69, 216,137,68,36,4,137,20,36,232,171,252,255,255,139,69,16,193,224,3,3,69,240,137,68,36,4,141,69,216,137,4,36,232,68,252,255,255,139,69,212,139,80,12,139,69,240,137,68,36,12,139,69,232,137,68,36,8,141,131,214,52,1,0,139,0,137,68,36,4,137,20,36,232,12,149, 254,255,141,69,216,137,4,36,232,174,248,255,255,235,67,139,69,16,193,224,3,3,69,240,139,85,212,131,194,28,137,68,36,4,137,20,36,232,244,251,255,255,139,69,212,139,80,12,139,69,240,137,68,36,12,139,69,232,137,68,36,8,141,131,214,52,1,0,139,0,137,68,36, 4,137,20,36,232,188,148,254,255,131,125,232,99,126,21,139,69,232,193,224,3,137,68,36,4,139,69,240,137,4,36,232,83,133,254,255,141,131,6,52,1,0,139,0,139,85,244,51,16,116,5,232,232,42,1,0,139,93,252,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139, 69,8,137,69,212,139,69,12,137,69,208,139,69,20,137,69,204,141,131,129,50,1,0,139,0,139,16,137,85,244,49,210,139,69,212,139,64,32,3,69,16,64,137,69,232,131,125,232,99,127,50,139,69,232,193,224,3,131,192,15,131,192,15,193,232,4,193,224,4,41,196,141,68, 36,16,137,69,200,139,69,200,131,192,15,193,232,4,193,224,4,137,69,200,139,85,200,137,85,196,235,17,139,69,232,193,224,3,137,4,36,232,211,130,254,255,137,69,196,139,69,196,137,69,240,139,69,240,199,0,2,0,0,0,139,85,240,139,69,208,137,66,4,139,69,240,131, 192,8,137,68,36,8,139,69,204,137,68,36,4,139,69,16,137,4,36,232,6,247,255,255,139,69,212,139,64,36,133,192,116,104,139,85,212,131,194,28,141,69,216,137,68,36,4,137,20,36,232,16,251,255,255,139,85,240,131,194,8,139,69,16,193,224,3,141,4,2,137,68,36,4, 141,69,216,137,4,36,232,163,250,255,255,139,69,212,139,80,12,139,69,240,137,68,36,12,139,69,232,137,68,36,8,141,131,81,51,1,0,139,0,137,68,36,4,137,20,36,232,107,147,254,255,141,69,216,137,4,36,232,13,247,255,255,235,73,139,85,240,131,194,8,139,69,16, 193,224,3,141,4,2,139,85,212,131,194,28,137,68,36,4,137,20,36,232,77,250,255,255,139,69,212,139,80,12,139,69,240,137,68,36,12,139,69,232,137,68,36,8,141,131,81,51,1,0,139,0,137,68,36,4,137,20,36,232,21,147,254,255,131,125,232,99,126,21,139,69,232,193, 224,3,137,68,36,4,139,69,240,137,4,36,232,172,131,254,255,141,131,129,50,1,0,139,0,139,85,244,51,16,116,5,232,65,41,1,0,139,93,252,201,195,85,137,229,131,236,24,139,69,8,131,192,28,137,4,36,232,122,246,255,255,201,195,85,137,229,87,86,83,131,236,44,232, 0,0,0,0,91,141,179,220,255,255,255,141,187,23,252,255,255,141,131,187,30,1,0,137,4,36,232,226,103,254,255,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,150,92,254,255,137, 194,141,131,226,50,1,0,139,0,137,16,141,147,176,252,255,255,141,131,226,50,1,0,139,0,139,0,137,84,36,4,137,4,36,232,73,100,254,255,141,147,53,254,255,255,141,131,226,50,1,0,139,0,139,0,137,84,36,4,137,4,36,232,62,100,254,255,141,131,226,50,1,0,139,0, 139,16,141,131,146,49,1,0,139,0,137,68,36,4,137,20,36,232,114,100,254,255,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,21,50,1,0,139,0,139,0,137,4,36,232,95,156,254,255,137,69,244,139,69,244,131,192,28,137,4,36,232,72,245, 255,255,139,85,244,131,194,28,139,69,16,137,68,36,12,139,69,12,137,68,36,8,199,68,36,4,0,0,0,0,137,20,36,232,238,245,255,255,139,85,244,141,131,209,48,1,0,139,0,137,68,36,4,137,20,36,232,225,142,254,255,139,69,244,131,192,28,139,85,244,199,68,36,12,0, 0,0,0,199,68,36,8,0,0,0,0,137,68,36,4,137,20,36,232,74,130,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,137,69,212,139,69,12,137,69,208,139,69,20,137,69,204,141,131,104,47,1,0,139,0,139,16,137,85,244,49,210, 139,69,212,139,64,32,3,69,16,137,69,232,131,125,232,99,127,50,139,69,232,193,224,3,131,192,15,131,192,15,193,232,4,193,224,4,41,196,141,68,36,16,137,69,200,139,69,200,131,192,15,193,232,4,193,224,4,137,69,200,139,85,200,137,85,196,235,17,139,69,232,193, 224,3,137,4,36,232,187,127,254,255,137,69,196,139,69,196,137,69,240,139,69,212,139,64,32,193,224,3,3,69,240,137,68,36,8,139,69,204,137,68,36,4,139,69,16,137,4,36,232,250,243,255,255,139,69,212,139,64,36,133,192,116,92,139,85,212,131,194,28,141,69,216, 137,68,36,4,137,20,36,232,4,248,255,255,139,69,240,137,68,36,4,141,69,216,137,4,36,232,163,247,255,255,139,69,212,139,80,12,139,69,240,137,68,36,12,139,69,232,137,68,36,8,141,131,56,48,1,0,139,0,137,68,36,4,137,20,36,232,107,144,254,255,141,69,216,137, 4,36,232,13,244,255,255,235,61,139,85,212,131,194,28,139,69,240,137,68,36,4,137,20,36,232,89,247,255,255,139,69,212,139,80,12,139,69,240,137,68,36,12,139,69,232,137,68,36,8,141,131,56,48,1,0,139,0,137,68,36,4,137,20,36,232,33,144,254,255,131,125,232, 99,126,21,139,69,232,193,224,3,137,68,36,4,139,69,240,137,4,36,232,184,128,254,255,141,131,104,47,1,0,139,0,139,85,244,51,16,116,5,232,77,38,1,0,139,93,252,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,137,69,212,139,69,12,137,69,208,139,69, 20,137,69,204,141,131,230,45,1,0,139,0,139,16,137,85,244,49,210,139,69,212,139,64,32,3,69,16,64,137,69,232,131,125,232,99,127,50,139,69,232,193,224,3,131,192,15,131,192,15,193,232,4,193,224,4,41,196,141,68,36,16,137,69,200,139,69,200,131,192,15,193,232, 4,193,224,4,137,69,200,139,85,200,137,85,196,235,17,139,69,232,193,224,3,137,4,36,232,56,126,254,255,137,69,196,139,69,196,137,69,240,139,69,212,139,64,32,193,224,3,3,69,240,199,0,2,0,0,0,139,69,212,139,64,32,193,224,3,137,194,3,85,240,139,69,208,137, 66,4,139,69,212,139,64,32,193,224,3,3,69,240,131,192,8,137,68,36,8,139,69,204,137,68,36,4,139,69,16,137,4,36,232,78,242,255,255,139,69,212,139,64,36,133,192,116,92,139,85,212,131,194,28,141,69,216,137,68,36,4,137,20,36,232,88,246,255,255,139,69,240,137, 68,36,4,141,69,216,137,4,36,232,247,245,255,255,139,69,212,139,80,12,139,69,240,137,68,36,12,139,69,232,137,68,36,8,141,131,182,46,1,0,139,0,137,68,36,4,137,20,36,232,191,142,254,255,141,69,216,137,4,36,232,97,242,255,255,235,61,139,85,212,131,194,28, 139,69,240,137,68,36,4,137,20,36,232,173,245,255,255,139,69,212,139,80,12,139,69,240,137,68,36,12,139,69,232,137,68,36,8,141,131,182,46,1,0,139,0,137,68,36,4,137,20,36,232,117,142,254,255,131,125,232,99,126,21,139,69,232,193,224,3,137,68,36,4,139,69, 240,137,4,36,232,12,127,254,255,141,131,230,45,1,0,139,0,139,85,244,51,16,116,5,232,161,36,1,0,139,93,252,201,195,85,137,229,131,236,24,139,69,8,131,192,28,137,4,36,232,218,241,255,255,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,220, 255,255,255,141,187,21,252,255,255,141,131,39,26,1,0,137,4,36,232,66,99,254,255,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,246,87,254,255,137,194,141,131,54,46,1,0,139, 0,137,16,141,147,174,252,255,255,141,131,54,46,1,0,139,0,139,0,137,84,36,4,137,4,36,232,169,95,254,255,141,147,48,254,255,255,141,131,54,46,1,0,139,0,139,0,137,84,36,4,137,4,36,232,158,95,254,255,141,131,54,46,1,0,139,0,139,16,141,131,242,44,1,0,139, 0,137,68,36,4,137,20,36,232,210,95,254,255,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,113,45,1,0,139,0,139,0,137,4,36,232,191,151,254,255,137,69,244,139,85,244,141,131,49,44,1,0,139,0,137,68,36,4,137,20,36,232,115,138, 254,255,137,194,139,69,244,137,80,32,139,85,244,141,131,49,44,1,0,139,0,137,68,36,4,137,20,36,232,84,138,254,255,137,194,139,69,244,137,80,36,139,85,244,141,131,49,44,1,0,139,0,137,68,36,4,137,20,36,232,53,138,254,255,137,194,139,69,244,137,80,40,139, 69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,62,133,254,255,139,85,244,139,69,8,137,66,28,139,69,244,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,243,15,16,64,28,243,15,44,192,137,69,244,131,125,244,0,121,7,199, 69,244,0,0,0,0,139,69,16,59,69,244,124,99,139,69,244,193,224,3,137,193,3,77,20,139,85,244,139,69,16,137,198,41,214,137,242,139,69,8,139,112,36,137,76,36,12,137,84,36,8,141,131,138,43,1,0,139,0,137,68,36,4,137,52,36,232,87,140,254,255,139,69,8,139,80, 32,139,69,20,137,68,36,12,139,69,244,137,68,36,8,141,131,138,43,1,0,139,0,137,68,36,4,137,20,36,232,47,140,254,255,235,40,139,69,8,139,80,40,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,131,138,43,1,0,139,0,137,68,36,4,137,20,36,232,5,140,254,255, 131,196,32,91,94,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,137,69,228,139,69,12,137,69,224,139,69,20,137,69,220,141,131,247,41,1,0,139,0,139,16,137,85,244,49,210,139,69,16,64,131,248,99,127,51,139,69,16,64,193,224,3,131,192,15,131,192, 15,193,232,4,193,224,4,41,196,141,68,36,16,137,69,216,139,69,216,131,192,15,193,232,4,193,224,4,137,69,216,139,85,216,137,85,212,235,18,139,69,16,64,193,224,3,137,4,36,232,81,122,254,255,137,69,212,139,69,212,137,69,240,139,69,240,199,0,2,0,0,0,139,85, 240,139,69,224,137,66,4,139,69,240,131,192,8,137,68,36,8,139,69,220,137,68,36,4,139,69,16,137,4,36,232,132,238,255,255,139,85,16,66,139,69,240,137,68,36,12,137,84,36,8,141,131,199,42,1,0,139,0,137,68,36,4,139,69,228,137,4,36,232,102,254,255,255,139,69, 16,64,131,248,99,126,22,139,69,16,64,193,224,3,137,68,36,4,139,69,240,137,4,36,232,187,123,254,255,141,131,247,41,1,0,139,0,139,85,244,51,16,116,5,232,80,33,1,0,139,93,252,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,123,253,255,255,141, 131,250,22,1,0,137,4,36,232,14,96,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,190,84,254,255,137,194,141,131,248,42,1,0,139,0,137,16,141,147,33,254,255,255, 141,131,248,42,1,0,139,0,139,0,137,84,36,4,137,4,36,232,113,92,254,255,141,147,229,254,255,255,141,131,248,42,1,0,139,0,139,0,137,84,36,4,137,4,36,232,102,92,254,255,141,131,248,42,1,0,139,0,139,16,141,131,184,41,1,0,139,0,137,68,36,4,137,20,36,232,154, 92,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,78,42,1,0,139,0,139,0,137,4,36,232,136,148,254,255,137,69,244,139,85,244,141,131,250,40,1,0,139,0,137,68,36,4,137,20,36,232,60,135,254,255,139,69,244,131,196,36,91,201, 195,85,137,229,86,83,131,236,16,232,0,0,0,0,91,131,125,16,0,126,10,139,69,20,139,0,131,248,2,116,42,139,69,8,139,80,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,141,131,183,40,1,0,139,0,137,68,36,4,137,20,36,232,169,137,254,255,235,42,139,77,20,131, 193,8,139,117,16,78,139,69,20,139,80,4,139,69,8,139,64,12,137,76,36,12,137,116,36,8,137,84,36,4,137,4,36,232,14,138,254,255,131,196,16,91,94,201,195,85,137,229,131,236,24,139,69,8,139,80,12,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68, 36,4,137,20,36,232,222,137,254,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,97,21,1,0,137,4,36,232,112,94,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,14,255,255,255,137,68, 36,4,137,20,36,232,32,83,254,255,137,194,141,131,104,41,1,0,139,0,137,16,141,147,80,255,255,255,141,131,104,41,1,0,139,0,139,0,137,84,36,4,137,4,36,232,211,90,254,255,141,147,201,255,255,255,141,131,104,41,1,0,139,0,139,0,137,84,36,4,137,4,36,232,200, 90,254,255,141,131,104,41,1,0,139,0,139,16,141,131,20,40,1,0,139,0,137,68,36,4,137,20,36,232,252,90,254,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,169,40,1,0,139,0,139,0,137,4,36,232,235,146,254,255,137,69,244,139,85,244, 141,131,29,38,1,0,139,0,137,68,36,4,137,20,36,232,159,133,254,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,243,15,42,69,16,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,45,135,254,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91, 243,15,42,77,16,141,131,138,24,1,0,243,15,16,0,243,15,88,193,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,247,134,254,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,23,20,1,0,137,4,36,232,28,93,254,255,137,194,199,68,36, 20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,87,255,255,255,137,68,36,4,137,20,36,232,204,81,254,255,137,194,141,131,12,40,1,0,139,0,137,16,141,147,153,255,255,255,141,131,12,40,1,0,139,0,139,0,137,84,36,4,137,4,36, 232,127,89,254,255,141,147,186,255,255,255,141,131,12,40,1,0,139,0,139,0,137,84,36,4,137,4,36,232,116,89,254,255,141,131,12,40,1,0,139,0,139,16,141,131,192,38,1,0,139,0,137,68,36,4,137,20,36,232,168,89,254,255,131,196,36,91,201,195,85,137,229,83,131, 236,36,232,0,0,0,0,91,131,125,16,0,116,10,139,69,20,139,0,131,248,2,116,42,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,12,137,4,36,232,100,240,255,255,137,194,141,131,197,37,1,0,139,0,137,16,233,63,1,0,0,139,69,20,139,64,4,137,69,244,141,131,69, 226,0,0,137,4,36,232,34,92,254,255,59,69,244,117,46,139,69,20,131,192,8,139,85,16,74,137,68,36,8,137,84,36,4,139,69,12,137,4,36,232,26,240,255,255,137,194,141,131,197,37,1,0,139,0,137,16,233,245,0,0,0,141,131,108,19,1,0,137,4,36,232,225,91,254,255,59, 69,244,117,46,139,69,20,131,192,8,139,85,16,74,137,68,36,8,137,84,36,4,139,69,12,137,4,36,232,119,244,255,255,137,194,141,131,197,37,1,0,139,0,137,16,233,180,0,0,0,141,131,116,19,1,0,137,4,36,232,160,91,254,255,59,69,244,117,48,139,69,20,137,68,36,8, 139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,179,221,253,255,217,28,36,232,209,248,255,255,137,194,141,131,197,37,1,0,139,0,137,16,235,113,141,131,122,19,1,0,137,4,36,232,93,91,254,255,59,69,244,117,19,232,226,251,255,255,137,194,141,131,197,37,1,0,139, 0,137,16,235,75,141,131,127,19,1,0,137,4,36,232,55,91,254,255,59,69,244,117,19,232,89,253,255,255,137,194,141,131,197,37,1,0,139,0,137,16,235,37,139,69,244,139,0,137,68,36,4,141,131,134,19,1,0,137,4,36,232,132,87,255,255,141,131,197,37,1,0,139,0,199, 0,0,0,0,0,141,131,197,37,1,0,139,0,139,0,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,232,93,238,255,255,232,200,242,255,255,232,99,247,255,255,232,153,250,255,255,232,57,252,255,255,232,136,253,255,255,141,131,94,254,255,255,199,68, 36,12,0,0,0,0,199,68,36,8,10,0,0,0,141,147,115,36,1,0,139,18,137,84,36,4,137,4,36,232,161,82,254,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,152,100,1,0,139,0,137,4,36,232,168,143,254,255,137,69,244,139,85,244,141,131,216, 34,1,0,139,0,137,68,36,4,137,20,36,232,92,130,254,255,137,194,139,69,244,137,80,28,139,85,244,141,131,216,34,1,0,139,0,137,68,36,4,137,20,36,232,61,130,254,255,137,194,139,69,244,137,80,32,141,131,144,100,1,0,139,0,139,85,244,137,68,36,4,137,20,36,232, 209,146,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,28,220,253,255,217,93,244,141,131,42,21,1,0,243,15,16,0,243,15,88,69,244,139,69,8,139,64,32,243, 15,17,68,36,4,137,4,36,232,126,131,254,255,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,220,219,253,255,139,69,8,139,64,28,217,92,36,4,137,4,36,232,82,131,254,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131, 147,99,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,5,147,254,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,117,99,1,0,139,0,137,4,36,232,129,142,254,255,137,69,244,139,85,244,141,131,177,33,1,0,139,0,137,68,36,4,137,20,36, 232,53,129,254,255,137,194,139,69,244,137,80,28,139,85,244,141,131,177,33,1,0,139,0,137,68,36,4,137,20,36,232,22,129,254,255,137,194,139,69,244,137,80,32,141,131,109,99,1,0,139,0,139,85,244,137,68,36,4,137,20,36,232,170,145,254,255,139,69,244,131,196, 36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,239,98,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,93,146,254,255,131,196,20,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,33,255,255,255,141,131,224,15,1,0,137,4,36,232,158, 88,254,255,137,194,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,141,131,36,254,255,255,137,68,36,4,137,20,36,232,74,77,254,255,137,194,141,131,200,98,1,0,137,16,141,147,162,254,255,255,141,131,200, 98,1,0,139,0,137,84,36,4,137,4,36,232,1,85,254,255,141,131,231,15,1,0,137,4,36,232,52,88,254,255,137,194,141,131,200,98,1,0,139,0,137,84,36,4,137,4,36,232,64,85,254,255,141,131,236,15,1,0,137,4,36,232,16,88,254,255,137,194,141,131,192,98,1,0,137,16,141, 179,201,255,255,255,141,131,244,15,1,0,137,4,36,232,242,87,254,255,137,194,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,141,131,75,255,255,255,137,68,36,4,137,20,36,232,158,76,254,255,137,194,141,131, 204,98,1,0,137,16,141,147,162,254,255,255,141,131,204,98,1,0,139,0,137,84,36,4,137,4,36,232,85,84,254,255,141,131,231,15,1,0,137,4,36,232,136,87,254,255,137,194,141,131,204,98,1,0,139,0,137,84,36,4,137,4,36,232,148,84,254,255,141,131,252,15,1,0,137,4, 36,232,100,87,254,255,137,194,141,131,196,98,1,0,137,16,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,84,97,1,0,139,0,139,64,4,133,192,116,90,199,69,232,1,0,0,0,243,15,42,69,12,243,15,17,69,236,141,69,232,131,192,8,199,0,1, 0,0,0,141,69,232,141,80,8,139,69,8,64,243,15,42,192,243,15,17,66,4,141,131,84,97,1,0,139,0,139,80,4,141,69,232,137,68,36,12,199,68,36,8,2,0,0,0,199,68,36,4,0,0,0,0,137,20,36,232,173,148,254,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0, 0,91,141,131,220,96,1,0,139,0,139,64,4,133,192,116,90,199,69,232,1,0,0,0,243,15,42,69,12,243,15,17,69,236,141,69,232,131,192,8,199,0,1,0,0,0,141,69,232,141,80,8,139,69,8,64,243,15,42,192,243,15,17,66,4,141,131,220,96,1,0,139,0,139,80,4,141,69,232,137, 68,36,12,199,68,36,8,2,0,0,0,199,68,36,4,0,0,0,0,137,20,36,232,49,148,254,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,112,96,1,0,139,0,137,4,36,232,116,139,254,255,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,141, 131,164,30,1,0,139,0,137,68,36,4,137,20,36,232,31,126,254,255,137,194,139,69,244,137,80,32,139,85,244,141,131,164,30,1,0,139,0,137,68,36,4,137,20,36,232,0,126,254,255,137,194,139,69,244,137,80,36,141,131,112,17,1,0,243,15,16,0,15,46,69,8,122,2,116,2, 235,31,139,85,244,141,131,164,30,1,0,139,0,137,68,36,4,137,20,36,232,205,125,254,255,137,194,139,69,244,137,80,40,141,131,108,96,1,0,139,0,139,85,244,137,68,36,4,137,20,36,232,97,142,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232, 0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,172,215,253,255,217,93,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,143,215,253,255,217,93,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2, 0,0,0,232,114,215,253,255,217,93,236,139,69,8,243,15,16,72,28,141,131,182,16,1,0,243,15,16,0,15,46,200,117,4,122,2,235,60,139,69,8,243,15,16,64,28,15,46,69,236,117,109,122,107,139,69,8,139,80,36,139,69,240,137,68,36,4,137,20,36,232,183,126,254,255,139, 69,8,139,80,32,139,69,244,137,68,36,4,137,20,36,232,162,126,254,255,235,63,139,69,8,139,80,40,139,69,236,137,68,36,4,137,20,36,232,139,126,254,255,139,69,8,139,80,36,139,69,240,137,68,36,4,137,20,36,232,118,126,254,255,139,69,8,139,80,32,139,69,244,137, 68,36,4,137,20,36,232,97,126,254,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,178,94,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,20,142,254,255,131,196,20,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179, 200,255,255,255,141,187,14,254,255,255,141,131,187,11,1,0,137,4,36,232,78,84,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,44,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,2,73,254,255,137,194,141,131,138,94,1,0,137, 16,141,147,200,254,255,255,141,131,138,94,1,0,139,0,137,84,36,4,137,4,36,232,185,80,254,255,141,131,157,11,1,0,137,4,36,232,236,83,254,255,137,194,141,131,138,94,1,0,139,0,137,84,36,4,137,4,36,232,248,80,254,255,141,131,194,11,1,0,137,4,36,232,200,83, 254,255,137,194,141,131,134,94,1,0,137,16,131,196,44,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,199,93,1,0,139,0,139,64,4,133,192,15,132,128,0,0,0,199,69,224,1,0,0,0,243,15,42,69,16,243,15,17,69,228,141,69,224,131,192,8,199,0,1, 0,0,0,141,69,224,131,192,8,243,15,42,69,20,243,15,17,64,4,141,69,224,131,192,16,199,0,1,0,0,0,141,69,224,141,80,16,139,69,8,193,224,4,3,69,12,64,243,15,42,192,243,15,17,66,4,141,131,199,93,1,0,139,0,139,80,4,141,69,224,137,68,36,12,199,68,36,8,3,0,0, 0,141,131,63,29,1,0,139,0,137,68,36,4,137,20,36,232,230,144,254,255,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,45,93,1,0,139,0,137,4,36,232,41,136,254,255,137,69,236,131,125,12,0,117,9,199,69,244,255,255,255,255,235,37,139, 69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,0,0,0,0,232,249,212,253,255,217,93,224,243,15,44,69,224,137,69,244,139,69,16,137,68,36,8,139,69,12,137,68,36,4,199,4,36,1,0,0,0,232,212,212,253,255,217,93,228,243,15,44,69,228,137,69,240,243,15,42,69,240, 139,69,236,243,15,17,64,28,243,15,42,69,244,139,69,236,243,15,17,64,32,139,85,236,141,131,89,27,1,0,139,0,137,68,36,4,137,20,36,232,106,122,254,255,137,194,139,69,236,137,80,36,131,125,240,0,117,87,139,69,236,243,15,16,72,32,141,131,37,14,1,0,243,15, 16,0,15,46,193,119,2,235,31,139,85,236,141,131,89,27,1,0,139,0,137,68,36,4,137,20,36,232,44,122,254,255,137,194,139,69,236,137,80,40,139,85,236,141,131,89,27,1,0,139,0,137,68,36,4,137,20,36,232,13,122,254,255,137,194,139,69,236,137,80,44,141,131,41,93, 1,0,139,0,139,85,236,137,68,36,4,137,20,36,232,161,138,254,255,139,69,236,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,236,211,253,255,217,93,244,139,69,20,137,68,36,8, 139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,207,211,253,255,217,93,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,178,211,253,255,217,93,236,139,69,8,243,15,16,72,32,141,131,246,12,1,0,243,15,16,0,15,46,200,115,2,235,24,139,69,8, 243,15,16,64,32,15,46,69,244,15,133,162,0,0,0,15,138,156,0,0,0,139,69,8,243,15,16,72,28,141,131,246,12,1,0,243,15,16,0,15,46,200,119,2,235,16,139,69,8,243,15,16,64,28,15,46,69,236,117,117,122,115,139,69,8,243,15,16,72,28,141,131,246,12,1,0,243,15,16, 0,15,46,200,122,2,116,2,235,21,139,69,8,139,80,44,139,69,236,137,68,36,4,137,20,36,232,173,122,254,255,139,69,8,243,15,16,72,32,141,131,246,12,1,0,243,15,16,0,15,46,193,119,2,235,21,139,69,8,139,80,40,139,69,244,137,68,36,4,137,20,36,232,127,122,254, 255,139,69,8,139,80,36,139,69,240,137,68,36,4,137,20,36,232,106,122,254,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,195,90,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,29,138,254,255,131,196,20,91,201,195,85,137,229,87,86, 83,131,236,44,232,0,0,0,0,91,141,179,200,255,255,255,141,187,98,253,255,255,141,131,211,7,1,0,137,4,36,232,87,80,254,255,199,68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,48,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,11,69, 254,255,137,194,141,131,155,90,1,0,137,16,141,147,145,254,255,255,141,131,155,90,1,0,139,0,137,84,36,4,137,4,36,232,194,76,254,255,141,131,166,7,1,0,137,4,36,232,245,79,254,255,137,194,141,131,155,90,1,0,139,0,137,84,36,4,137,4,36,232,1,77,254,255,141, 131,217,7,1,0,137,4,36,232,209,79,254,255,137,194,141,131,151,90,1,0,137,16,131,196,44,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,216,89,1,0,139,0,139,64,4,133,192,15,132,128,0,0,0,199,69,224,1,0,0,0,243,15,42,69,16,243,15,17,69, 228,141,69,224,131,192,8,199,0,1,0,0,0,141,69,224,131,192,8,243,15,42,69,20,243,15,17,64,4,141,69,224,131,192,16,199,0,1,0,0,0,141,69,224,141,80,16,139,69,8,193,224,4,3,69,12,64,243,15,42,192,243,15,17,66,4,141,131,216,89,1,0,139,0,139,80,4,141,69,224, 137,68,36,12,199,68,36,8,3,0,0,0,141,131,72,25,1,0,139,0,137,68,36,4,137,20,36,232,239,140,254,255,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,62,89,1,0,139,0,137,4,36,232,50,132,254,255,137,69,244,139,85,244,139,69,8,137,66, 28,139,85,244,141,131,98,23,1,0,139,0,137,68,36,4,137,20,36,232,221,118,254,255,137,194,139,69,244,137,80,32,141,131,46,10,1,0,243,15,16,0,15,46,69,8,122,2,116,2,235,31,139,85,244,141,131,98,23,1,0,139,0,137,68,36,4,137,20,36,232,170,118,254,255,137, 194,139,69,244,137,80,36,141,131,58,89,1,0,139,0,139,85,244,137,68,36,4,137,20,36,232,62,135,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,137,208,253, 255,217,93,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,108,208,253,255,217,93,240,139,69,8,243,15,16,72,28,141,131,147,9,1,0,243,15,16,0,15,46,200,117,4,122,2,235,39,139,69,8,243,15,16,64,28,15,46,69,240,117,67,122,65,139,69, 8,139,80,32,139,69,244,137,68,36,4,137,20,36,232,177,119,254,255,235,42,139,69,8,139,80,36,139,69,240,137,68,36,4,137,20,36,232,154,119,254,255,139,69,8,139,80,32,139,69,244,137,68,36,4,137,20,36,232,133,119,254,255,131,196,36,91,201,195,85,137,229,83, 131,236,20,232,0,0,0,0,91,141,131,230,87,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,56,135,254,255,131,196,20,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,200,255,255,255,141,187,116,254,255,255,141,131,251,4,1,0,137,4,36,232,114, 77,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,40,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,38,66,254,255,137,194,141,131,190,87,1,0,137,16,141,147,15,255,255,255,141,131,190,87,1,0,139,0,137,84,36,4,137,4,36, 232,221,73,254,255,141,131,193,4,1,0,137,4,36,232,16,77,254,255,137,194,141,131,190,87,1,0,139,0,137,84,36,4,137,4,36,232,28,74,254,255,141,131,1,5,1,0,137,4,36,232,236,76,254,255,137,194,141,131,186,87,1,0,137,16,131,196,44,91,94,95,201,195,85,137,229, 83,131,236,36,232,0,0,0,0,91,141,131,251,86,1,0,139,0,139,64,4,133,192,116,103,199,69,232,1,0,0,0,139,69,16,64,243,15,42,192,243,15,17,69,236,141,69,232,131,192,8,199,0,1,0,0,0,141,69,232,141,80,8,139,69,8,193,224,4,3,69,12,64,243,15,42,192,243,15,17, 66,4,141,131,251,86,1,0,139,0,139,80,4,141,69,232,137,68,36,12,199,68,36,8,2,0,0,0,141,131,99,22,1,0,139,0,137,68,36,4,137,20,36,232,39,138,254,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,126,86,1,0,139,0,137,4,36,232,106, 129,254,255,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,141,131,154,20,1,0,139,0,137,68,36,4,137,20,36,232,21,116,254,255,137,194,139,69,244,137,80,32,141,131,102,7,1,0,243,15,16,0,15,46,69,8,122,2,116,2,235,31,139,85,244,141,131,154,20,1,0,139, 0,137,68,36,4,137,20,36,232,226,115,254,255,137,194,139,69,244,137,80,36,141,131,122,86,1,0,139,0,139,85,244,137,68,36,4,137,20,36,232,118,132,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,20,137,68,36,8,139, 69,16,137,68,36,4,199,4,36,0,0,0,0,232,193,205,253,255,217,93,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,164,205,253,255,217,93,240,139,69,8,243,15,16,72,28,141,131,203,6,1,0,243,15,16,0,15,46,200,117,4,122,2,235,39,139,69,8, 243,15,16,64,28,15,46,69,240,117,67,122,65,139,69,8,139,80,32,139,69,244,137,68,36,4,137,20,36,232,233,116,254,255,235,42,139,69,8,139,80,36,139,69,240,137,68,36,4,137,20,36,232,210,116,254,255,139,69,8,139,80,32,139,69,244,137,68,36,4,137,20,36,232, 189,116,254,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,38,85,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,112,132,254,255,131,196,20,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,200,255,255,255,141,187, 116,254,255,255,141,131,64,2,1,0,137,4,36,232,170,74,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,40,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,94,63,254,255,137,194,141,131,254,84,1,0,137,16,141,147,15,255,255, 255,141,131,254,84,1,0,139,0,137,84,36,4,137,4,36,232,21,71,254,255,141,131,249,1,1,0,137,4,36,232,72,74,254,255,137,194,141,131,254,84,1,0,139,0,137,84,36,4,137,4,36,232,84,71,254,255,141,131,71,2,1,0,137,4,36,232,36,74,254,255,137,194,141,131,250,84, 1,0,137,16,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,59,84,1,0,139,0,139,64,4,133,192,116,100,199,69,232,1,0,0,0,243,15,42,69,16,243,15,17,69,236,141,69,232,131,192,8,199,0,1,0,0,0,141,69,232,141,80,8,139,69,8,193,224, 4,3,69,12,64,243,15,42,192,243,15,17,66,4,141,131,59,84,1,0,139,0,139,80,4,141,69,232,137,68,36,12,199,68,36,8,2,0,0,0,141,131,155,19,1,0,139,0,137,68,36,4,137,20,36,232,98,135,254,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141, 131,193,83,1,0,139,0,137,4,36,232,165,126,254,255,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,141,131,213,17,1,0,139,0,137,68,36,4,137,20,36,232,80,113,254,255,137,194,139,69,244,137,80,32,141,131,161,4,1,0,243,15,16,0,15,46,69,8,122,2,116,2, 235,31,139,85,244,141,131,213,17,1,0,139,0,137,68,36,4,137,20,36,232,29,113,254,255,137,194,139,69,244,137,80,36,141,131,189,83,1,0,139,0,139,85,244,137,68,36,4,137,20,36,232,177,129,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232, 0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,252,202,253,255,217,93,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,223,202,253,255,217,93,240,139,69,8,243,15,16,72,28,141,131,6,4,1,0,243,15,16,0,15, 46,200,117,4,122,2,235,39,139,69,8,243,15,16,64,28,15,46,69,240,117,67,122,65,139,69,8,139,80,32,139,69,244,137,68,36,4,137,20,36,232,36,114,254,255,235,42,139,69,8,139,80,36,139,69,240,137,68,36,4,137,20,36,232,13,114,254,255,139,69,8,139,80,32,139, 69,244,137,68,36,4,137,20,36,232,248,113,254,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,105,82,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,171,129,254,255,131,196,20,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0, 0,91,141,179,200,255,255,255,141,187,116,254,255,255,141,131,138,255,0,0,137,4,36,232,229,71,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,40,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,153,60,254,255,137,194,141, 131,65,82,1,0,137,16,141,147,15,255,255,255,141,131,65,82,1,0,139,0,137,84,36,4,137,4,36,232,80,68,254,255,141,131,52,255,0,0,137,4,36,232,131,71,254,255,137,194,141,131,65,82,1,0,139,0,137,84,36,4,137,4,36,232,143,68,254,255,141,131,146,255,0,0,137, 4,36,232,95,71,254,255,137,194,141,131,61,82,1,0,137,16,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,126,81,1,0,139,0,139,64,4,133,192,116,100,199,69,232,1,0,0,0,243,15,42,69,16,243,15,17,69,236,141,69,232,131,192,8,199, 0,1,0,0,0,141,69,232,141,80,8,139,69,8,193,224,4,3,69,12,64,243,15,42,192,243,15,17,66,4,141,131,126,81,1,0,139,0,139,80,4,141,69,232,137,68,36,12,199,68,36,8,2,0,0,0,141,131,214,16,1,0,139,0,137,68,36,4,137,20,36,232,157,132,254,255,131,196,36,91,201, 195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,4,81,1,0,139,0,137,4,36,232,224,123,254,255,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,141,131,16,15,1,0,139,0,137,68,36,4,137,20,36,232,139,110,254,255,137,194,139,69,244,137,80,32,139,85, 244,141,131,16,15,1,0,139,0,137,68,36,4,137,20,36,232,108,110,254,255,137,194,139,69,244,137,80,36,141,131,220,1,1,0,243,15,16,0,15,46,69,8,122,2,116,2,235,31,139,85,244,141,131,16,15,1,0,139,0,137,68,36,4,137,20,36,232,57,110,254,255,137,194,139,69, 244,137,80,40,141,131,0,81,1,0,139,0,139,85,244,137,68,36,4,137,20,36,232,205,126,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,24,200,253,255,217,93, 244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,251,199,253,255,217,93,240,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,2,0,0,0,232,222,199,253,255,217,93,236,139,69,8,243,15,16,72,28,141,131,34,1,1,0,243,15,16,0,15,46,200, 117,4,122,2,235,60,139,69,8,243,15,16,64,28,15,46,69,236,117,109,122,107,139,69,8,139,80,36,139,69,244,137,68,36,4,137,20,36,232,35,111,254,255,139,69,8,139,80,32,139,69,240,137,68,36,4,137,20,36,232,14,111,254,255,235,63,139,69,8,139,80,40,139,69,236, 137,68,36,4,137,20,36,232,247,110,254,255,139,69,8,139,80,36,139,69,244,137,68,36,4,137,20,36,232,226,110,254,255,139,69,8,139,80,32,139,69,240,137,68,36,4,137,20,36,232,205,110,254,255,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141, 131,70,79,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,128,126,254,255,131,196,20,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,200,255,255,255,141,187,14,254,255,255,141,131,112,252,0,0,137,4,36,232,186,68,254,255,199,68,36,24,0,0, 0,0,199,68,36,20,6,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,44,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,110,57,254,255,137,194,141,131,30,79,1,0,137,16,141,147,200,254,255,255,141,131,30,79,1,0,139,0,137,84,36,4,137,4,36,232,37,65,254,255,141,131, 9,252,0,0,137,4,36,232,88,68,254,255,137,194,141,131,30,79,1,0,139,0,137,84,36,4,137,4,36,232,100,65,254,255,141,131,124,252,0,0,137,4,36,232,52,68,254,255,137,194,141,131,26,79,1,0,137,16,131,196,44,91,94,95,201,195,85,137,229,83,131,236,52,232,0,0, 0,0,91,141,131,91,78,1,0,139,0,139,64,4,133,192,15,132,128,0,0,0,199,69,224,1,0,0,0,243,15,42,69,16,243,15,17,69,228,141,69,224,131,192,8,199,0,1,0,0,0,141,69,224,131,192,8,243,15,42,69,20,243,15,17,64,4,141,69,224,131,192,16,199,0,1,0,0,0,141,69,224, 141,80,16,139,69,8,193,224,4,3,69,12,64,243,15,42,192,243,15,17,66,4,141,131,91,78,1,0,139,0,139,80,4,141,69,224,137,68,36,12,199,68,36,8,3,0,0,0,141,131,171,13,1,0,139,0,137,68,36,4,137,20,36,232,82,129,254,255,131,196,52,91,201,195,85,137,229,83,131, 236,36,232,0,0,0,0,91,141,131,193,77,1,0,139,0,137,4,36,232,149,120,254,255,137,69,244,139,85,244,141,131,197,11,1,0,139,0,137,68,36,4,137,20,36,232,73,107,254,255,137,194,139,69,244,137,80,28,139,85,244,141,131,197,11,1,0,139,0,137,68,36,4,137,20,36, 232,42,107,254,255,137,194,139,69,244,137,80,32,141,131,189,77,1,0,139,0,139,85,244,137,68,36,4,137,20,36,232,190,123,254,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,16,197, 253,255,217,93,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,243,196,253,255,217,93,240,139,69,8,139,80,32,139,69,240,137,68,36,4,137,20,36,232,99,108,254,255,139,69,8,139,80,28,139,69,244,137,68,36,4,137,20,36,232,78,108,254,255, 201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,211,76,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,5,124,254,255,131,196,20,91,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,200,255,255,255,141,187,222,254,255,255,141,131,14,250, 0,0,137,4,36,232,63,66,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,243,54,254,255,137,194,141,131,171,76,1,0,137,16,141,147,92,255,255,255,141,131,171,76,1,0,139, 0,137,84,36,4,137,4,36,232,170,62,254,255,141,131,142,249,0,0,137,4,36,232,221,65,254,255,137,194,141,131,171,76,1,0,139,0,137,84,36,4,137,4,36,232,233,62,254,255,141,131,24,250,0,0,137,4,36,232,185,65,254,255,137,194,141,131,167,76,1,0,137,16,131,196, 44,91,94,95,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,137,69,208,139,69,12,137,69,212,141,131,232,75,1,0,139,0,139,64,4,133,192,15,132,230,0,0,0,141,131,164,75,1,0,243,15,16,0,243,15,90,200,242,15,16,69,208,242,15,92,193,242,15,90,192, 243,15,17,69,240,141,131,160,75,1,0,243,15,16,8,141,131,192,252,0,0,243,15,16,0,243,15,88,193,141,131,160,75,1,0,243,15,17,0,141,131,160,75,1,0,243,15,16,0,141,131,160,255,0,0,15,46,0,122,2,116,2,235,36,199,69,224,1,0,0,0,141,131,192,252,0,0,139,0,137, 69,228,141,147,160,75,1,0,141,131,188,252,0,0,139,0,137,2,235,18,199,69,224,1,0,0,0,141,131,188,252,0,0,139,0,137,69,228,141,69,224,131,192,8,199,0,1,0,0,0,141,69,224,141,80,8,139,69,240,137,66,4,141,131,232,75,1,0,139,0,139,80,4,141,69,224,137,68,36, 12,199,68,36,8,2,0,0,0,141,131,48,11,1,0,139,0,137,68,36,4,137,20,36,232,116,126,254,255,242,15,90,69,208,141,131,164,75,1,0,243,15,17,0,131,196,68,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,220,74,1,0,139,0,137,4,36,232,168,117,254,255, 137,69,244,139,85,244,141,131,216,8,1,0,139,0,137,68,36,4,137,20,36,232,92,104,254,255,137,194,139,69,244,137,80,28,139,85,244,141,131,216,8,1,0,139,0,137,68,36,4,137,20,36,232,61,104,254,255,137,194,139,69,244,137,80,32,141,131,216,74,1,0,139,0,139, 85,244,137,68,36,4,137,20,36,232,209,120,254,255,141,131,76,248,0,0,137,68,36,4,139,69,244,137,4,36,232,173,61,255,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,40,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,0,0,0,0,232,14,194,253, 255,217,93,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,199,4,36,1,0,0,0,232,241,193,253,255,217,93,240,139,69,8,139,80,32,139,69,244,137,68,36,4,137,20,36,232,97,105,254,255,139,69,8,139,80,28,139,69,240,137,68,36,4,137,20,36,232,76,105,254,255,201, 195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,217,73,1,0,139,0,139,85,8,137,68,36,4,137,20,36,232,3,121,254,255,131,196,20,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,201,255,255,255,141,131,71,247,0,0,137,4,36,232,68,63,254,255, 137,194,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,141,131,202,254,255,255,137,68,36,4,137,20,36,232,240,51,254,255,137,194,141,131,178,73,1,0,137,16,141,147,93,255,255,255,141,131,178,73,1,0,139, 0,137,84,36,4,137,4,36,232,167,59,254,255,141,131,141,246,0,0,137,4,36,232,218,62,254,255,137,194,141,131,178,73,1,0,139,0,137,84,36,4,137,4,36,232,230,59,254,255,141,131,86,247,0,0,137,4,36,232,182,62,254,255,137,194,141,131,174,73,1,0,137,16,131,196, 32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,238,72,1,0,139,0,139,64,4,133,192,116,91,199,69,232,1,0,0,0,243,15,42,69,8,243,15,17,69,236,141,69,232,131,192,8,199,0,1,0,0,0,141,69,232,131,192,8,243,15,42,69,12,243,15,17,64,4,141,131, 238,72,1,0,139,0,139,80,4,141,69,232,137,68,36,12,199,68,36,8,2,0,0,0,141,131,46,8,1,0,139,0,137,68,36,4,137,20,36,232,254,123,254,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,121,72,1,0,139,0,137,4,36,232,65,115,254,255, 137,69,244,141,131,61,249,0,0,243,15,16,0,15,46,69,8,115,2,235,11,141,131,65,249,0,0,139,0,137,69,8,139,85,244,139,69,8,137,66,28,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,247,96,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83, 131,236,20,232,0,0,0,0,91,243,15,16,69,12,243,15,44,208,139,69,8,243,15,16,72,28,141,131,221,248,0,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,84,36,4,137,4,36,232,8,94,0,0,131,196,20,91,201,195,85,137,229,86,83,131,236,32,232,0, 0,0,0,91,141,179,71,255,255,255,141,131,124,245,0,0,137,4,36,232,90,61,254,255,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,2,50,254,255,137,194, 141,131,204,71,1,0,137,16,141,147,171,255,255,255,141,131,204,71,1,0,139,0,137,84,36,4,137,4,36,232,151,57,254,255,141,131,163,244,0,0,137,4,36,232,236,60,254,255,137,194,141,131,204,71,1,0,139,0,137,84,36,4,137,4,36,232,248,57,254,255,131,196,32,91, 94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,36,71,1,0,139,0,137,4,36,232,232,113,254,255,137,69,244,139,85,244,141,131,228,247,0,0,139,0,137,66,28,141,131,232,247,0,0,243,15,16,0,15,46,69,8,119,2,235,11,141,131,232,247,0,0,139,0,137,69, 8,139,85,244,139,69,8,137,66,32,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,144,95,254,255,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,123,95,254,255,139,69,244,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0, 0,91,139,69,8,243,15,16,72,32,141,131,96,247,0,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,244,131,125,244,0,121,7,199,69,244,0,0,0,0,139,69,8,243,15,16,64,28,243,15,44,240,243,15,16,69,12,243,15,44,208,139,77,244,131,225,15, 139,69,244,193,248,4,137,116,36,12,137,84,36,8,137,76,36,4,137,4,36,232,201,87,0,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,242,254,255,255,141,131,214,243,0,0,137,4,36,232,172,59,254,255,199,68,36,24,0,0,0,0,199,68, 36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,92,48,254,255,137,194,141,131,34,70,1,0,137,16,141,147,121,255,255,255,141,131,34,70,1,0,139,0,137,84,36,4,137,4,36,232,241,55,254,255,141,131,245, 242,0,0,137,4,36,232,70,59,254,255,137,194,141,131,34,70,1,0,139,0,137,84,36,4,137,4,36,232,82,56,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,130,69,1,0,139,0,137,4,36,232,66,112,254,255,137,69,244,139,85,244,139, 69,8,137,66,28,141,131,62,246,0,0,243,15,16,0,15,46,69,12,115,2,235,11,141,131,66,246,0,0,139,0,137,69,12,139,85,244,139,69,12,137,66,32,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,239,93,254,255,139,69,244,131,192,32,139,85,244,137,68, 36,4,137,20,36,232,218,93,254,255,139,69,244,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,243,15,16,72,32,141,131,191,245,0,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,244,131,125,244,0,121,7,199, 69,244,0,0,0,0,243,15,16,69,12,243,15,44,240,139,69,8,243,15,16,64,28,243,15,44,208,139,77,244,131,225,15,139,69,244,193,248,4,137,116,36,12,137,84,36,8,137,76,36,4,137,4,36,232,254,86,0,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0, 0,0,91,141,179,247,254,255,255,141,131,61,242,0,0,137,4,36,232,11,58,254,255,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,179,46,254,255,137,194, 141,131,133,68,1,0,137,16,141,147,121,255,255,255,141,131,133,68,1,0,139,0,137,84,36,4,137,4,36,232,72,54,254,255,141,131,84,241,0,0,137,4,36,232,157,57,254,255,137,194,141,131,133,68,1,0,139,0,137,84,36,4,137,4,36,232,169,54,254,255,131,196,32,91,94, 201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,221,67,1,0,139,0,137,4,36,232,153,110,254,255,137,69,244,141,131,149,244,0,0,243,15,16,0,15,46,69,8,115,2,235,11,141,131,153,244,0,0,139,0,137,69,8,139,85,244,139,69,8,137,66,28,139,69,244,131,192, 28,139,85,244,137,68,36,4,137,20,36,232,79,92,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16,72,28,141,131,53,244,0,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,244,243,15,16, 77,12,141,131,53,244,0,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,240,131,125,244,0,121,7,199,69,244,0,0,0,0,131,125,240,0,121,9,199,69,240,0,0,0,0,235,13,131,125,240,127,126,7,199,69,240,127,0,0,0,139,85,244,131,226,15,139, 69,244,137,193,193,249,4,139,69,240,137,68,36,8,137,84,36,4,137,12,36,232,34,86,0,0,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,239,254,255,255,141,131,147,240,0,0,137,4,36,232,90,56,254,255,199,68,36,24,0,0,0,0,199,68,36, 20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,10,45,254,255,137,194,141,131,216,66,1,0,137,16,141,147,83,255,255,255,141,131,216,66,1,0,139,0,137,84,36,4,137,4,36,232,159,52,254,255,141,131,163,239, 0,0,137,4,36,232,244,55,254,255,137,194,141,131,216,66,1,0,139,0,137,84,36,4,137,4,36,232,0,53,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,56,66,1,0,139,0,137,4,36,232,240,108,254,255,137,69,244,141,131,236,242,0, 0,243,15,16,0,15,46,69,8,115,2,235,11,141,131,240,242,0,0,139,0,137,69,8,139,85,244,139,69,8,137,66,28,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,166,90,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91, 139,69,8,243,15,16,72,28,141,131,140,242,0,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,244,243,15,16,69,12,243,15,44,192,5,0,32,0,0,137,69,240,131,125,244,0,121,7,199,69,244,0,0,0,0,139,85,244,131,226,15,139,69,244,137,193,193, 249,4,139,69,240,137,68,36,8,137,84,36,4,137,12,36,232,82,85,0,0,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,26,255,255,255,141,131,28,239,0,0,137,4,36,232,220,54,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36, 16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,140,43,254,255,137,194,141,131,94,65,1,0,137,16,141,147,126,255,255,255,141,131,94,65,1,0,139,0,137,84,36,4,137,4,36,232,33,51,254,255,141,131,37,238,0,0,137,4,36,232,118, 54,254,255,137,194,141,131,94,65,1,0,139,0,137,84,36,4,137,4,36,232,130,51,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,190,64,1,0,139,0,137,4,36,232,114,107,254,255,137,69,244,141,131,110,241,0,0,243,15,16,0,15,46, 69,8,115,2,235,11,141,131,114,241,0,0,139,0,137,69,8,139,85,244,139,69,8,137,66,28,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,40,89,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16,72, 28,141,131,14,241,0,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,244,131,125,244,0,121,7,199,69,244,0,0,0,0,243,15,16,69,12,243,15,44,208,139,77,244,131,225,15,139,69,244,193,248,4,137,84,36,8,137,76,36,4,137,4,36,232,149,84,0, 0,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,39,255,255,255,141,131,179,237,0,0,137,4,36,232,107,53,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,199,68,36,8,0,0,0,0,137,116, 36,4,137,4,36,232,27,42,254,255,137,194,141,131,241,63,1,0,137,16,141,147,139,255,255,255,141,131,241,63,1,0,139,0,137,84,36,4,137,4,36,232,176,49,254,255,141,131,180,236,0,0,137,4,36,232,5,53,254,255,137,194,141,131,241,63,1,0,139,0,137,84,36,4,137, 4,36,232,17,50,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,81,63,1,0,139,0,137,4,36,232,1,106,254,255,137,69,244,141,131,253,239,0,0,243,15,16,0,15,46,69,8,115,2,235,11,141,131,1,240,0,0,139,0,137,69,8,139,85,244, 139,69,8,137,66,28,139,85,244,141,131,253,239,0,0,139,0,137,66,32,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,169,87,254,255,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,148,87,254,255,139,69,244,131,196,36,91,201,195,85, 137,229,86,83,131,236,32,232,0,0,0,0,91,139,69,8,243,15,16,72,28,141,131,121,239,0,0,243,15,16,0,15,40,209,243,15,92,208,15,40,194,243,15,44,192,137,69,244,131,125,244,0,121,7,199,69,244,0,0,0,0,243,15,16,69,12,243,15,44,240,139,69,8,243,15,16,64,32, 243,15,44,208,139,77,244,131,225,15,139,69,244,193,248,4,137,116,36,12,137,84,36,8,137,76,36,4,137,4,36,232,158,83,0,0,131,196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,242,254,255,255,141,131,22,236,0,0,137,4,36,232,197,51, 254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,117,40,254,255,137,194,141,131,79,62,1,0,137,16,141,147,121,255,255,255,141,131,79,62,1,0,139,0,137,84,36,4,137, 4,36,232,10,48,254,255,141,131,14,235,0,0,137,4,36,232,95,51,254,255,137,194,141,131,79,62,1,0,139,0,137,84,36,4,137,4,36,232,107,48,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,175,61,1,0,139,0,137,4,36,232,91,104, 254,255,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,139,69,12,137,66,32,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,37,86,254,255,139,69,244,131,192,32,139,85,244,137,68,36,4,137,20,36,232,16,86,254,255,139,85,244,141,131,139,251, 0,0,139,0,137,68,36,4,137,20,36,232,211,90,254,255,137,194,139,69,244,137,80,36,139,85,244,141,131,139,251,0,0,139,0,137,68,36,4,137,20,36,232,180,90,254,255,137,194,139,69,244,137,80,40,139,69,244,199,64,44,0,0,0,0,139,69,244,131,196,36,91,201,195,85, 137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,139,64,12,137,69,244,139,69,244,139,80,40,141,131,170,237,0,0,139,0,137,68,36,4,137,20,36,232,31,92,254,255,139,69,8,139,80,8,139,69,244,139,64,36,137,84,36,4,137,4,36,232,7,92,254,255,139,69,244,139,64,44, 59,69,8,117,14,139,69,8,139,80,4,139,69,244,137,80,44,235,54,139,69,244,139,64,44,137,69,240,235,28,139,69,236,59,69,8,117,14,139,69,236,139,80,4,139,69,240,137,80,4,235,21,139,69,236,137,69,240,139,69,240,139,64,4,137,69,236,131,125,236,0,117,213,139, 69,8,139,0,137,4,36,232,60,115,254,255,199,68,36,4,16,0,0,0,139,69,8,137,4,36,232,80,77,254,255,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,243,15,16,72,28,141,131,237,236,0,0,243,15,16,0,15,46,200,122,6,15,132,210,0,0,0,139, 69,8,139,80,28,139,69,8,139,64,40,137,84,36,4,137,4,36,232,80,91,254,255,139,69,8,139,80,36,139,69,12,137,68,36,4,137,20,36,232,59,91,254,255,199,4,36,16,0,0,0,232,1,75,254,255,137,69,244,139,69,8,139,80,44,139,69,244,137,80,4,139,85,8,139,69,244,137, 66,44,139,85,244,139,69,12,137,66,8,139,85,244,139,69,8,137,66,12,141,131,55,255,255,255,137,68,36,4,139,69,244,137,4,36,232,126,111,254,255,137,194,139,69,244,137,16,139,69,8,243,15,16,72,32,141,131,237,236,0,0,243,15,16,0,15,46,200,115,2,235,19,139, 69,8,243,15,16,64,32,243,15,90,192,242,15,17,69,224,235,15,141,131,5,237,0,0,242,15,16,0,242,15,17,69,224,139,69,244,139,0,242,15,16,69,224,242,15,17,68,36,4,137,4,36,232,254,112,254,255,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,235, 94,139,69,8,139,80,40,141,131,235,235,0,0,139,0,137,68,36,4,137,20,36,232,103,90,254,255,139,69,244,139,80,8,139,69,8,139,64,36,137,84,36,4,137,4,36,232,79,90,254,255,139,69,244,139,80,4,139,69,8,137,80,44,139,69,244,139,0,137,4,36,232,199,113,254,255, 199,68,36,4,16,0,0,0,139,69,244,137,4,36,232,219,75,254,255,139,69,8,139,64,44,137,69,244,131,125,244,0,117,147,131,196,36,91,201,195,85,137,229,131,236,40,235,44,139,69,244,139,80,4,139,69,8,137,80,44,139,69,244,139,0,137,4,36,232,126,113,254,255,199, 68,36,4,16,0,0,0,139,69,244,137,4,36,232,146,75,254,255,139,69,8,139,64,44,137,69,244,131,125,244,0,117,197,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,173,255,255,255,141,187,191,252,255,255,141,131,74,232,0,0,137,4,36,232,230,47,254, 255,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,48,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,146,36,254,255,137,194,141,131,122,58,1,0,137,16,141,147,41,254,255,255,141,131,122,58,1,0,139,0,137, 84,36,4,137,4,36,232,39,44,254,255,141,131,199,100,0,0,137,4,36,232,124,47,254,255,137,194,141,139,43,255,255,255,141,131,122,58,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,63,40,254,255,141,131,74,234,0,0,137,4,36,232,70,47,254, 255,137,194,141,139,173,255,255,255,141,131,122,58,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,9,40,254,255,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,135,57,1,0,139,0,137,4,36,232,47,100,254,255, 137,69,244,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,11,82,254,255,139,85,244,141,131,95,247,0,0,139,0,137,68,36,4,137,20,36,232,206,86,254,255,137,194,139,69,244,137,80,32,139,85,244,141,131,95,247,0,0,139,0,137,68,36,4,137,20,36,232, 175,86,254,255,137,194,139,69,244,137,80,36,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16,72,28,141,131,175,233,0,0,243,15,16,0,15,46,200,122,2,116,45,139,69,8,139,80,28,139,69,8,139,64,36,137,84,36,4,137, 4,36,232,22,88,254,255,139,69,8,139,80,32,139,69,12,137,68,36,4,137,20,36,232,1,88,254,255,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,138,230,0,0,137,4,36,232,38,46,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0, 199,68,36,12,40,0,0,0,199,68,36,8,0,0,0,0,141,131,31,255,255,255,137,68,36,4,137,20,36,232,214,34,254,255,137,194,141,131,178,56,1,0,137,16,141,147,155,255,255,255,141,131,178,56,1,0,139,0,137,84,36,4,137,4,36,232,107,42,254,255,131,196,36,91,201,195, 85,137,229,83,131,236,36,232,0,0,0,0,91,243,15,16,69,8,243,15,44,192,137,69,240,141,131,61,56,1,0,139,0,137,4,36,232,213,98,254,255,137,69,236,131,125,240,0,127,7,199,69,240,1,0,0,0,139,85,236,139,69,240,137,66,28,139,85,240,137,208,1,192,1,208,193,224, 2,137,4,36,232,254,70,254,255,137,194,139,69,236,137,80,32,139,69,236,139,64,32,137,69,232,139,69,240,137,69,244,235,41,139,69,232,199,64,8,0,0,0,0,139,69,232,199,64,4,0,0,0,0,139,69,232,139,64,4,243,15,42,192,139,69,232,243,15,17,0,131,69,232,12,255, 77,244,131,125,244,255,117,206,139,85,236,141,131,221,232,0,0,139,0,137,66,36,141,131,221,232,0,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,15,182,208,139,69,236,137,80,52,139,69,236,131,192,36,139,85,236,137,68,36,4,137,20,36,232,15,80,254, 255,139,85,236,141,131,17,246,0,0,139,0,137,68,36,4,137,20,36,232,210,84,254,255,139,85,236,141,131,17,246,0,0,139,0,137,68,36,4,137,20,36,232,187,84,254,255,137,194,139,69,236,137,80,40,139,85,236,141,131,17,246,0,0,139,0,137,68,36,4,137,20,36,232,156, 84,254,255,137,194,139,69,236,137,80,44,139,69,236,199,64,48,0,0,0,0,139,69,236,131,196,36,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,199,69,220,0,0,0,0,199,69,216,0,0,0,0,139,69,8,243,15,16,72,36,141,131,146,231,0,0,243,15,16,0,15,46,200,119, 5,233,124,2,0,0,139,69,8,139,64,32,137,69,240,199,69,244,0,0,0,0,199,69,232,0,0,0,0,139,69,232,137,69,236,199,69,224,255,255,255,255,139,69,224,137,69,228,235,93,139,69,240,139,64,4,133,192,116,34,139,69,240,139,64,8,59,69,228,115,23,139,69,240,137,69, 236,139,69,240,139,64,8,137,69,228,139,69,244,137,69,220,235,42,139,69,240,139,64,4,133,192,117,32,139,69,240,139,64,8,59,69,224,115,21,139,69,240,137,69,232,139,69,240,139,64,8,137,69,224,139,69,244,137,69,216,131,69,240,12,255,69,244,139,69,8,139,64, 28,59,69,244,127,152,131,125,232,0,15,132,168,0,0,0,139,69,8,139,80,36,139,69,8,139,64,44,137,84,36,4,137,4,36,232,74,85,254,255,139,85,232,139,69,12,137,2,139,69,232,139,16,139,69,8,139,64,40,137,84,36,4,137,4,36,232,43,85,254,255,139,69,216,64,137, 69,184,131,125,184,0,120,12,243,15,42,69,184,243,15,17,69,188,235,29,139,69,184,209,232,139,85,184,131,226,1,9,208,243,15,42,192,15,40,200,243,15,88,200,243,15,17,77,188,139,69,8,139,64,12,243,15,16,69,188,243,15,17,68,36,4,137,4,36,232,220,84,254,255, 139,69,232,199,64,4,1,0,0,0,139,69,8,139,80,48,139,69,232,137,80,8,66,139,69,8,137,80,48,233,74,2,0,0,131,125,236,0,15,132,64,2,0,0,139,69,8,139,64,52,133,192,15,132,50,2,0,0,139,69,8,139,80,44,141,131,146,231,0,0,139,0,137,68,36,4,137,20,36,232,136, 84,254,255,139,69,236,139,16,139,69,8,139,64,40,137,84,36,4,137,4,36,232,113,84,254,255,139,69,220,64,137,69,192,131,125,192,0,120,12,243,15,42,69,192,243,15,17,69,196,235,29,139,69,192,209,232,139,85,192,131,226,1,9,208,243,15,42,192,15,40,200,243,15, 88,200,243,15,17,77,196,139,69,8,139,64,12,243,15,16,69,196,243,15,17,68,36,4,137,4,36,232,34,84,254,255,139,69,8,139,80,36,139,69,8,139,64,44,137,84,36,4,137,4,36,232,10,84,254,255,139,85,236,139,69,12,137,2,139,69,236,139,16,139,69,8,139,64,40,137, 84,36,4,137,4,36,232,235,83,254,255,139,69,220,64,137,69,200,131,125,200,0,120,12,243,15,42,69,200,243,15,17,69,204,235,29,139,69,200,209,232,139,85,200,131,226,1,9,208,243,15,42,192,15,40,200,243,15,88,200,243,15,17,77,204,139,69,8,139,64,12,243,15, 16,69,204,243,15,17,68,36,4,137,4,36,232,156,83,254,255,139,69,8,139,80,48,139,69,236,137,80,8,66,139,69,8,137,80,48,233,20,1,0,0,139,69,8,139,64,32,137,69,240,199,69,244,0,0,0,0,199,69,236,0,0,0,0,199,69,228,255,255,255,255,235,66,139,69,240,139,64, 4,133,192,116,49,139,69,240,243,15,16,0,15,46,69,12,122,2,116,2,235,32,139,69,240,139,64,8,59,69,228,115,21,139,69,240,137,69,236,139,69,240,139,64,8,137,69,228,139,69,244,137,69,220,131,69,240,12,255,69,244,139,69,8,139,64,28,59,69,244,127,179,131,125, 236,0,15,132,157,0,0,0,139,69,236,199,64,4,0,0,0,0,139,69,8,139,80,48,139,69,236,137,80,8,66,139,69,8,137,80,48,139,69,8,139,80,44,141,131,146,231,0,0,139,0,137,68,36,4,137,20,36,232,214,82,254,255,139,69,236,139,16,139,69,8,139,64,40,137,84,36,4,137, 4,36,232,191,82,254,255,139,69,220,64,137,69,208,131,125,208,0,120,12,243,15,42,69,208,243,15,17,69,212,235,29,139,69,208,209,232,139,85,208,131,226,1,9,208,243,15,42,192,15,40,200,243,15,88,200,243,15,17,77,212,139,69,8,139,64,12,243,15,16,69,212,243, 15,17,68,36,4,137,4,36,232,112,82,254,255,131,196,84,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,244,0,0,0,0,139,69,8,139,64,32,137,69,240,235,123,139,69,240,139,64,4,133,192,116,106,139,69,8,139,80,44,141,131,197,227,0,0,139,0,137,68,36, 4,137,20,36,232,39,82,254,255,139,69,240,139,16,139,69,8,139,64,40,137,84,36,4,137,4,36,232,16,82,254,255,139,69,244,64,243,15,42,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,244,81,254,255,139,69,240,199,64,4,0,0,0,0,139,69,8,139,80,48,139, 69,240,137,80,8,66,139,69,8,137,80,48,255,69,244,131,69,240,12,139,69,8,139,64,28,59,69,244,15,143,118,255,255,255,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,64,32,137,69,240,139,69,8,139,64,28,137,69,244,235,24,139,69,240,199,64,8,0,0, 0,0,139,69,240,199,64,4,0,0,0,0,131,69,240,12,255,77,244,131,125,244,255,117,223,201,195,85,137,229,131,236,24,139,69,8,139,64,28,137,194,137,208,1,192,1,208,193,224,2,137,194,139,69,8,139,64,32,137,84,36,4,137,4,36,232,11,67,254,255,201,195,85,137,229, 87,86,83,131,236,44,232,0,0,0,0,91,141,179,197,255,255,255,141,187,193,249,255,255,141,131,232,223,0,0,137,4,36,232,110,39,254,255,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,56,0,0,0,137,116,36,8, 137,124,36,4,137,4,36,232,26,28,254,255,137,194,141,131,10,50,1,0,137,16,141,147,12,251,255,255,141,131,10,50,1,0,139,0,137,84,36,4,137,4,36,232,175,35,254,255,141,131,79,92,0,0,137,4,36,232,4,39,254,255,137,194,141,139,217,254,255,255,141,131,10,50, 1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,199,31,254,255,141,131,210,225,0,0,137,4,36,232,206,38,254,255,137,194,141,139,136,255,255,255,141,131,10,50,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,145,31, 254,255,131,196,44,91,94,95,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,23,49,1,0,139,0,137,4,36,232,183,91,254,255,137,69,244,139,85,244,141,131,179,225,0,0,139,0,137,66,28,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,133,73, 254,255,139,85,244,141,131,231,238,0,0,139,0,137,68,36,4,137,20,36,232,72,78,254,255,139,69,244,199,64,32,0,0,0,0,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,243,15,16,72,28,141,131,70,225,0,0,243,15,16,0,15,46,200, 117,4,122,2,235,101,199,4,36,8,0,0,0,232,137,63,254,255,137,69,244,139,69,244,199,0,0,0,0,0,139,85,244,139,69,12,137,66,4,139,69,8,139,64,32,133,192,117,14,139,85,8,139,69,244,137,66,32,233,203,0,0,0,139,69,8,139,64,32,137,69,240,235,6,139,69,236,137, 69,240,139,69,240,139,0,137,69,236,131,125,236,0,117,236,139,85,240,139,69,244,137,2,233,159,0,0,0,139,69,8,139,64,32,133,192,15,132,145,0,0,0,139,69,8,139,64,32,243,15,16,64,4,15,46,69,12,122,2,116,2,235,44,139,69,8,139,64,32,137,69,244,139,69,8,139, 64,32,139,16,139,69,8,137,80,32,199,68,36,4,8,0,0,0,139,69,244,137,4,36,232,201,64,254,255,235,80,139,69,8,139,64,32,137,69,240,235,55,139,69,236,243,15,16,64,4,15,46,69,12,122,2,116,2,235,31,139,69,236,139,16,139,69,240,137,16,199,68,36,4,8,0,0,0,139, 69,236,137,4,36,232,141,64,254,255,235,20,139,69,236,137,69,240,139,69,240,139,0,137,69,236,131,125,236,0,117,187,131,196,36,91,201,195,85,137,229,131,236,40,235,54,139,69,244,139,80,4,139,69,8,139,64,12,137,84,36,4,137,4,36,232,153,78,254,255,139,69, 244,139,16,139,69,8,137,80,32,199,68,36,4,8,0,0,0,139,69,244,137,4,36,232,51,64,254,255,139,69,8,139,64,32,137,69,244,131,125,244,0,117,187,201,195,85,137,229,131,236,40,235,30,139,69,244,139,16,139,69,8,137,80,32,199,68,36,4,8,0,0,0,139,69,244,137,4, 36,232,252,63,254,255,139,69,8,139,64,32,137,69,244,131,125,244,0,117,211,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,188,255,255,255,141,131,208,220,0,0,137,4,36,232,87,36,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199, 68,36,12,36,0,0,0,137,116,36,8,141,131,206,253,255,255,137,68,36,4,137,20,36,232,11,25,254,255,137,194,141,131,241,46,1,0,137,16,141,147,59,254,255,255,141,131,241,46,1,0,139,0,137,84,36,4,137,4,36,232,160,32,254,255,141,131,212,220,0,0,137,4,36,232, 245,35,254,255,137,194,141,139,109,255,255,255,141,131,241,46,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,184,28,254,255,141,131,181,222,0,0,137,4,36,232,191,35,254,255,137,194,141,139,188,255,255,255,141,131,241,46,1,0,139,0, 199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,130,28,254,255,131,196,32,91,94,201,195,85,137,229,131,236,8,232,197,202,255,255,232,26,228,255,255,232,4,207,255,255,232,246,210,255,255,232,214,213,255,255,232,153,216,255,255,232,89,219,255, 255,232,127,222,255,255,232,245,224,255,255,232,220,229,255,255,232,133,231,255,255,232,33,233,255,255,232,205,234,255,255,232,70,236,255,255,232,178,237,255,255,232,83,239,255,255,232,38,243,255,255,232,239,244,255,255,232,148,251,255,255,232,173,254, 255,255,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,222,254,0,0,139,0,105,192,135,71,251,25,141,144,255,20,237,55,141,129,222,254,0,0,137,16,141,129,222,254,0,0,139,0,37,255,255,255,127,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131, 106,45,1,0,139,0,137,4,36,232,6,88,254,255,137,69,244,139,85,244,139,69,8,137,66,28,232,155,255,255,255,137,194,139,69,244,137,80,32,139,69,244,131,192,28,139,85,244,137,68,36,4,137,20,36,232,204,69,254,255,139,85,244,141,131,54,235,0,0,139,0,137,68, 36,4,137,20,36,232,143,74,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,243,15,16,64,28,243,15,44,192,137,69,244,184,1,0,0,0,131,125,244,0,15,79,69,244,137,69,236,139,69,8,139,64,32,137,69,232,139,69,232,105, 192,241,125,48,28,5,23,169,157,49,137,69,232,139,85,8,139,69,232,137,66,32,242,15,42,77,236,139,69,232,45,0,0,0,128,102,15,110,192,243,15,230,192,141,131,247,226,0,0,102,15,41,69,216,102,15,40,69,216,242,15,88,0,102,15,41,69,216,242,15,16,69,216,242, 15,89,200,141,131,39,227,0,0,242,15,16,0,242,15,89,193,242,15,44,192,137,69,240,139,69,240,59,69,236,124,7,139,69,236,72,137,69,240,243,15,42,69,240,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,121,75,254,255,131,196,52,91,201,195,85,137,229,131, 236,8,232,0,0,0,0,89,243,15,16,69,12,15,40,208,15,87,192,243,15,95,208,141,129,63,226,0,0,15,40,0,15,40,224,15,40,200,243,15,194,202,2,141,129,79,226,0,0,15,40,0,15,40,216,243,15,194,218,2,15,84,225,102,15,114,241,31,15,92,212,243,15,91,194,102,15,254, 193,102,15,235,195,102,15,126,194,139,69,8,137,80,32,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,92,254,255,255,141,131,183,217,0,0,137,4,36,232,52,33,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12, 36,0,0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,228,21,254,255,137,194,141,131,210,43,1,0,137,16,141,147,199,254,255,255,141,131,210,43,1,0,139,0,137,84,36,4,137,4,36,232,87,29,254,255,141,131,190,217,0,0,137,4,36,232,206,32,254,255,137,194,141, 139,144,255,255,255,141,131,210,43,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,137,25,254,255,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,24,43,1,0,139,0,137,4,36,232,176,85,254, 255,137,69,244,139,85,244,141,131,220,232,0,0,139,0,137,68,36,4,137,20,36,232,100,72,254,255,139,69,244,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,64,233,0,0,139,0,139,0,133,192,117,14,139,69,8,139,64,12,137,4,36,232,213,72, 254,255,131,196,20,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,153,114,0,0,137,4,36,232,13,32,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,28,0,0,0,199,68,36,8,0,0,0,0,141,131,133,255,255,255,137,68,36,4,137,20, 36,232,189,20,254,255,137,194,141,131,169,42,1,0,137,16,141,131,153,114,0,0,137,4,36,232,193,31,254,255,137,194,141,139,197,255,255,255,141,131,169,42,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,132,24,254,255,131,196,36,91,201, 195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,24,42,1,0,139,0,137,4,36,232,172,84,254,255,137,69,244,232,39,227,249,255,137,194,139,69,244,137,80,32,139,85,244,139,69,8,137,66,28,139,69,8,139,0,15,182,0,132,192,116,21,139,69,244,139,80,32,139,69, 8,137,68,36,4,137,20,36,232,243,87,254,255,139,69,244,131,196,36,91,201,195,85,137,229,131,236,24,139,69,8,139,64,28,139,0,15,182,0,132,192,116,24,139,69,8,139,80,28,139,69,8,139,64,32,137,84,36,4,137,4,36,232,157,88,254,255,201,195,85,137,229,87,86, 83,131,236,44,232,0,0,0,0,91,141,179,195,255,255,255,141,187,99,255,255,255,141,131,112,215,0,0,137,4,36,232,219,30,254,255,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,143, 19,254,255,137,194,141,131,135,41,1,0,137,16,131,196,44,91,94,95,201,195,85,137,229,83,129,236,52,2,0,0,232,0,0,0,0,91,139,69,8,137,133,244,253,255,255,141,131,79,231,0,0,139,0,139,16,137,85,244,49,210,243,15,16,69,12,243,15,44,192,137,133,252,253,255, 255,139,133,244,253,255,255,139,64,32,133,192,117,40,139,133,244,253,255,255,139,64,28,137,68,36,4,141,131,15,215,0,0,137,4,36,232,84,180,254,255,139,133,244,253,255,255,199,64,32,1,0,0,0,139,133,244,253,255,255,139,80,28,139,133,252,253,255,255,137, 68,36,20,137,84,36,16,141,131,27,215,0,0,137,68,36,12,199,68,36,8,244,1,0,0,199,68,36,4,0,0,0,0,141,133,0,254,255,255,137,4,36,232,3,223,0,0,141,133,0,254,255,255,137,4,36,232,208,182,254,255,141,131,79,231,0,0,139,0,139,85,244,51,16,116,5,232,231,222, 0,0,129,196,52,2,0,0,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,243,15,16,69,8,243,15,44,192,137,69,244,141,131,76,40,1,0,139,0,137,4,36,232,208,82,254,255,137,69,240,131,125,244,0,117,7,199,69,244,1,0,0,0,139,85,240,139,69,244,137,66,28,139, 69,240,199,64,32,0,0,0,0,139,69,240,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,158,255,255,255,141,131,7,214,0,0,137,4,36,232,76,29,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0, 0,0,199,68,36,8,0,0,0,0,137,116,36,4,137,4,36,232,252,17,254,255,137,194,141,131,246,39,1,0,137,16,141,147,200,254,255,255,141,131,246,39,1,0,139,0,137,84,36,4,137,4,36,232,145,25,254,255,131,196,32,91,94,201,195,85,137,229,131,236,24,139,69,8,131,192, 28,137,4,36,232,82,224,0,0,201,195,85,137,229,131,236,88,141,69,228,137,4,36,232,63,224,0,0,139,85,228,139,69,232,1,194,139,69,8,139,64,28,41,194,139,69,8,139,64,32,137,209,41,193,137,200,105,208,232,3,0,0,199,69,196,31,133,235,81,139,69,196,247,226, 137,209,193,233,5,137,77,212,131,125,212,0,120,12,243,15,42,69,212,243,15,17,69,208,235,29,139,69,212,209,232,139,85,212,131,226,1,9,208,243,15,42,192,15,40,200,243,15,88,200,243,15,17,77,208,243,15,16,69,208,243,15,17,69,244,139,69,8,139,80,12,139,69, 244,137,68,36,4,137,20,36,232,252,69,254,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,204,38,1,0,139,0,137,4,36,232,88,81,254,255,137,69,244,141,131,122,173,0,0,137,4,36,232,17,28,254,255,139,85,244,137,68,36,4,137,20,36,232,6,68,254, 255,141,131,147,209,0,0,137,4,36,232,244,27,254,255,137,198,141,131,152,214,0,0,137,4,36,232,228,27,254,255,139,85,244,139,77,244,137,116,36,12,137,68,36,8,137,84,36,4,137,12,36,232,92,55,254,255,139,69,244,137,4,36,232,210,254,255,255,139,69,244,131, 196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,86,212,0,0,137,4,36,232,154,27,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,199,68,36,8,0,0,0,0,141,131,105,255,255,255,137,68,36,4,137,20,36,232, 74,16,254,255,137,194,141,131,66,38,1,0,137,16,141,147,188,254,255,255,141,131,66,38,1,0,139,0,137,84,36,4,137,4,36,232,189,23,254,255,141,131,9,209,0,0,137,4,36,232,52,27,254,255,137,194,141,139,210,254,255,255,141,131,66,38,1,0,139,0,199,68,36,12,0, 0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,247,19,254,255,131,196,36,91,201,195,85,137,229,131,236,8,232,95,162,254,255,139,69,8,221,88,28,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,232,69,162,254,255,221,93,240,139,69,8,242,15,16,64,28,242,15,16, 77,240,242,15,92,200,141,131,88,214,0,0,242,15,16,0,242,15,89,193,242,15,90,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,97,68,254,255,131,196,36,91,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,49,37,1,0,139,0,137,4,36,232,185, 79,254,255,137,69,244,141,131,219,171,0,0,137,4,36,232,114,26,254,255,139,85,244,137,68,36,4,137,20,36,232,103,66,254,255,141,131,244,207,0,0,137,4,36,232,85,26,254,255,137,198,141,131,249,212,0,0,137,4,36,232,69,26,254,255,139,85,244,139,77,244,137, 116,36,12,137,68,36,8,137,84,36,4,137,12,36,232,189,53,254,255,139,69,244,137,4,36,232,26,255,255,255,139,69,244,131,196,32,91,94,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,191,210,0,0,137,4,36,232,251,25,254,255,137,194,199,68,36,20,0,0, 0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,141,131,105,255,255,255,137,68,36,4,137,20,36,232,171,14,254,255,137,194,141,131,167,36,1,0,137,16,141,147,4,255,255,255,141,131,167,36,1,0,139,0,137,84,36,4,137,4,36,232,30,22,254,255, 141,131,106,207,0,0,137,4,36,232,149,25,254,255,137,194,141,139,23,255,255,255,141,131,167,36,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,88,18,254,255,131,196,36,91,201,195,85,137,229,131,236,8,232,6,248,255,255,232,47,249,255, 255,232,78,250,255,255,232,223,251,255,255,232,147,253,255,255,232,45,255,255,255,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,230,35,1,0,139,0,137,4,36,232,90,78,254,255,137,69,244,139,85,244,141,131,138,225,0,0,139,0,137,68,36,4,137,20,36, 232,14,65,254,255,139,69,244,199,64,28,255,255,255,255,141,131,86,212,0,0,243,15,16,0,15,46,69,8,117,4,122,2,235,9,199,69,228,2,0,0,0,235,7,199,69,228,1,0,0,0,139,69,244,139,85,228,137,80,32,139,69,244,131,196,52,91,201,195,85,137,229,83,131,236,100, 232,0,0,0,0,91,139,69,8,137,69,196,139,69,12,137,69,192,141,131,131,225,0,0,139,0,139,16,137,85,244,49,210,243,15,16,69,16,243,15,44,192,137,69,216,139,69,196,139,64,28,133,192,120,19,141,131,127,209,0,0,137,4,36,232,250,20,255,255,233,169,1,0,0,139, 69,196,139,64,32,199,68,36,8,0,0,0,0,137,68,36,4,199,4,36,2,0,0,0,232,134,219,0,0,137,69,220,131,125,220,0,121,19,141,131,133,182,0,0,137,4,36,232,188,164,254,255,233,111,1,0,0,198,69,229,2,139,69,192,139,0,137,4,36,232,75,218,0,0,137,69,224,131,125, 224,0,117,19,141,131,165,209,0,0,137,4,36,232,218,17,255,255,233,66,1,0,0,199,69,212,1,0,0,0,199,68,36,16,4,0,0,0,141,69,212,137,68,36,12,199,68,36,8,32,0,0,0,199,68,36,4,255,255,0,0,139,69,220,137,4,36,232,220,218,0,0,133,192,121,14,141,131,176,209, 0,0,137,4,36,232,146,17,255,255,139,69,196,139,64,32,131,248,1,117,67,199,69,212,1,0,0,0,199,68,36,16,4,0,0,0,141,69,212,137,68,36,12,199,68,36,8,1,0,0,0,199,68,36,4,6,0,0,0,139,69,220,137,4,36,232,142,218,0,0,133,192,121,14,141,131,231,182,0,0,137,4, 36,232,68,17,255,255,139,69,224,139,64,12,137,194,139,69,224,139,64,16,139,0,199,68,36,12,12,0,0,0,137,84,36,8,137,68,36,4,141,69,228,131,192,4,137,4,36,232,80,216,0,0,139,69,216,15,183,192,137,4,36,232,143,0,0,0,102,137,69,230,139,69,216,137,68,36,4, 141,131,200,209,0,0,137,4,36,232,239,16,255,255,141,69,228,199,68,36,8,16,0,0,0,137,68,36,4,139,69,220,137,4,36,232,153,216,0,0,133,192,121,27,141,131,203,182,0,0,137,4,36,232,120,163,254,255,139,69,220,137,4,36,232,2,172,254,255,235,35,139,85,196,139, 69,220,137,66,28,139,69,196,139,80,12,141,131,227,211,0,0,139,0,137,68,36,4,137,20,36,232,138,64,254,255,141,131,131,225,0,0,139,0,139,85,244,51,16,116,5,232,215,215,0,0,131,196,100,91,201,195,85,137,229,131,236,24,139,69,8,102,137,69,244,15,183,69,244, 193,224,8,137,194,15,183,69,244,102,193,232,8,9,208,15,183,192,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,139,64,28,133,192,120,50,139,69,8,139,64,28,137,4,36,232,121,171,254,255,139,69,8,199,64,28,255,255,255,255,139,69,8,139,80,12,141, 131,166,209,0,0,139,0,137,68,36,4,137,20,36,232,2,64,254,255,131,196,20,91,201,195,85,137,229,83,131,236,84,232,0,0,0,0,91,139,69,8,139,64,28,133,192,15,136,2,2,0,0,232,215,158,253,255,137,69,244,139,69,20,137,68,36,8,139,69,16,137,68,36,4,139,69,244, 137,4,36,232,248,170,253,255,199,69,212,4,0,0,0,199,69,216,0,0,0,0,141,69,212,137,68,36,8,199,68,36,4,1,0,0,0,139,69,244,137,4,36,232,208,170,253,255,141,69,232,137,68,36,8,141,69,240,137,68,36,4,139,69,244,137,4,36,232,14,168,253,255,139,69,240,137, 69,236,199,69,228,0,0,0,0,233,99,1,0,0,232,18,157,254,255,221,93,200,139,69,232,43,69,228,137,194,139,69,8,139,72,28,199,68,36,12,0,0,0,0,137,84,36,8,139,69,236,137,68,36,4,137,12,36,232,113,216,0,0,137,69,224,232,222,156,254,255,221,93,192,242,15,16, 69,192,242,15,92,69,200,141,131,239,214,0,0,102,15,46,0,15,151,192,15,182,192,137,69,220,131,125,220,0,117,33,141,131,215,32,1,0,242,15,16,8,141,131,111,209,0,0,242,15,16,0,102,15,46,200,117,7,122,5,233,182,0,0,0,141,131,223,32,1,0,242,15,16,8,141,131, 231,211,0,0,242,15,16,0,242,15,88,200,242,15,16,69,192,102,15,46,193,119,2,235,101,242,15,16,69,192,102,15,40,200,242,15,92,77,200,141,131,215,32,1,0,242,15,16,0,242,15,88,200,141,131,167,209,0,0,242,15,16,0,242,15,89,193,242,15,44,192,137,68,36,4,141, 131,87,207,0,0,137,4,36,232,145,14,255,255,141,147,215,32,1,0,141,131,111,209,0,0,242,15,16,0,242,15,17,2,141,131,223,32,1,0,242,15,16,69,192,242,15,17,0,235,44,131,125,220,0,116,38,242,15,16,69,192,102,15,40,200,242,15,92,77,200,141,131,215,32,1,0,242, 15,16,0,242,15,88,193,141,131,215,32,1,0,242,15,17,0,131,125,224,0,127,27,141,131,111,207,0,0,137,4,36,232,225,160,254,255,139,69,8,137,4,36,232,205,253,255,255,235,24,139,69,224,1,69,228,139,69,224,1,69,236,139,69,232,57,69,228,15,140,145,254,255,255, 139,69,232,139,85,240,137,68,36,4,137,20,36,232,164,47,254,255,139,69,244,137,4,36,232,19,157,253,255,235,14,141,131,119,207,0,0,137,4,36,232,147,16,255,255,131,196,84,91,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,111,253,255,255,201,195,85, 137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,223,255,255,255,141,187,175,250,255,255,141,131,41,205,0,0,137,4,36,232,213,19,254,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,137,116,36,8,137,124,36,4,137, 4,36,232,137,8,254,255,137,194,141,131,161,30,1,0,137,16,141,131,160,104,0,0,137,4,36,232,141,19,254,255,137,194,141,139,38,251,255,255,141,131,161,30,1,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,1,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137, 4,36,232,64,12,254,255,141,131,68,109,0,0,137,4,36,232,71,19,254,255,137,194,141,139,95,253,255,255,141,131,161,30,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,10,12,254,255,141,131,113,116,0,0,137,4,36,232,17,19,254,255,137,194, 141,139,174,253,255,255,141,131,161,30,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,204,11,254,255,131,196,44,91,94,95,201,195,85,137,229,131,236,24,139,69,8,139,64,40,141,80,255,139,69,8,137,80,40,139,69, 8,139,64,40,243,15,42,192,139,69,8,139,64,32,243,15,17,68,36,4,137,4,36,232,96,60,254,255,201,195,85,137,229,86,83,129,236,48,32,0,0,232,0,0,0,0,91,139,69,8,137,69,244,139,69,12,137,4,36,232,126,175,253,255,137,69,236,139,69,12,137,4,36,232,125,175,253, 255,137,69,232,199,69,240,0,0,0,0,233,80,1,0,0,139,69,240,137,69,228,235,3,255,69,228,139,69,228,59,69,236,125,32,139,69,228,193,224,3,3,69,232,139,0,131,248,5,116,16,139,69,228,193,224,3,3,69,232,139,0,131,248,4,117,213,139,69,228,59,69,240,15,142,10, 1,0,0,139,69,240,137,69,224,235,61,139,69,224,193,224,3,3,69,232,139,0,131,248,8,116,16,139,69,224,193,224,3,3,69,232,139,0,131,248,9,117,26,141,131,237,203,0,0,137,68,36,4,139,69,244,137,4,36,232,145,15,255,255,233,200,0,0,0,255,69,224,139,69,224,59, 69,228,124,187,139,69,240,193,224,3,3,69,232,139,0,131,248,1,117,96,139,69,240,64,59,69,228,125,55,139,69,240,193,224,3,137,193,3,77,232,139,85,240,139,69,228,137,198,41,214,137,242,139,69,244,139,64,28,137,76,36,12,137,84,36,8,199,68,36,4,0,0,0,0,137, 4,36,232,75,60,254,255,235,109,139,69,240,193,224,3,3,69,232,139,80,4,139,69,244,139,64,28,137,84,36,4,137,4,36,232,37,59,254,255,235,77,139,69,240,193,224,3,3,69,232,139,0,131,248,2,117,61,139,69,240,193,224,3,3,69,232,141,112,8,139,85,240,139,69,228, 41,208,141,72,255,139,69,240,193,224,3,3,69,232,139,80,4,139,69,244,139,64,28,137,116,36,12,137,76,36,8,137,84,36,4,137,4,36,232,109,60,254,255,139,69,228,64,137,69,240,139,69,240,59,69,236,15,140,164,254,255,255,129,196,48,32,0,0,91,94,201,195,85,137, 229,83,131,236,52,232,0,0,0,0,91,139,69,8,139,64,36,199,68,36,8,0,0,0,0,199,68,36,4,0,0,0,0,137,4,36,232,25,210,0,0,137,69,244,131,125,244,0,121,19,141,131,115,202,0,0,137,4,36,232,128,10,255,255,233,142,0,0,0,139,69,8,139,64,28,133,192,116,11,141,131, 79,254,255,255,137,69,228,235,7,199,69,228,0,0,0,0,141,131,26,254,255,255,199,68,36,12,0,0,0,0,139,85,228,137,84,36,8,137,68,36,4,139,69,8,137,4,36,232,200,158,254,255,137,69,240,141,131,224,219,0,0,139,16,139,69,240,137,68,36,8,137,84,36,4,139,69,244, 137,4,36,232,39,157,254,255,139,69,8,139,64,40,141,80,1,139,69,8,137,80,40,139,69,8,139,64,40,243,15,42,192,139,69,8,139,64,32,243,15,17,68,36,4,137,4,36,232,228,57,254,255,131,196,52,91,201,195,85,137,229,83,131,236,100,232,0,0,0,0,91,139,69,8,137,69, 196,141,131,221,216,0,0,139,0,139,16,137,85,244,49,210,243,15,16,69,12,243,15,44,192,137,69,216,141,131,57,203,0,0,243,15,16,0,15,46,69,16,15,149,192,15,154,194,9,208,15,182,192,137,69,212,139,69,196,139,16,141,131,178,201,0,0,137,68,36,4,137,20,36,232, 6,211,0,0,133,192,15,148,192,15,182,192,137,69,208,131,125,212,0,116,9,199,69,184,2,0,0,0,235,7,199,69,184,1,0,0,0,199,68,36,8,0,0,0,0,139,77,184,137,76,36,4,199,4,36,2,0,0,0,232,178,210,0,0,137,69,220,131,125,220,0,121,26,141,131,223,173,0,0,137,4,36, 232,232,155,254,255,199,69,188,0,0,0,0,233,124,2,0,0,198,69,229,2,199,69,232,0,0,0,0,199,69,204,1,0,0,0,199,68,36,16,4,0,0,0,141,69,204,137,68,36,12,199,68,36,8,4,0,0,0,199,68,36,4,255,255,0,0,139,69,220,137,4,36,232,35,210,0,0,133,192,121,14,141,131, 185,201,0,0,137,4,36,232,217,8,255,255,199,69,204,1,0,0,0,199,68,36,16,4,0,0,0,141,69,204,137,68,36,12,199,68,36,8,32,0,0,0,199,68,36,4,255,255,0,0,139,69,220,137,4,36,232,224,209,0,0,133,192,121,14,141,131,10,201,0,0,137,4,36,232,150,8,255,255,131,125, 212,0,117,67,199,69,204,1,0,0,0,199,68,36,16,4,0,0,0,141,69,204,137,68,36,12,199,68,36,8,1,0,0,0,199,68,36,4,6,0,0,0,139,69,220,137,4,36,232,151,209,0,0,133,192,121,14,141,131,65,174,0,0,137,4,36,232,77,8,255,255,139,69,216,15,183,192,137,4,36,232,198, 247,255,255,102,137,69,230,141,69,228,199,68,36,8,16,0,0,0,137,68,36,4,139,69,220,137,4,36,232,205,207,0,0,133,192,121,37,141,131,219,201,0,0,137,4,36,232,196,154,254,255,139,69,220,137,4,36,232,78,163,254,255,199,69,188,0,0,0,0,233,77,1,0,0,141,131, 205,26,1,0,139,0,137,4,36,232,91,67,254,255,137,69,224,131,125,208,0,116,12,139,69,224,199,64,28,0,0,0,0,235,31,139,85,224,141,131,1,218,0,0,139,0,137,68,36,4,137,20,36,232,253,53,254,255,137,194,139,69,224,137,80,28,131,125,212,0,116,109,139,69,224, 139,64,28,133,192,116,11,141,131,116,253,255,255,137,69,192,235,7,199,69,192,0,0,0,0,141,131,63,253,255,255,199,68,36,12,1,0,0,0,139,85,192,137,84,36,8,137,68,36,4,139,69,224,137,4,36,232,251,155,254,255,137,69,200,141,131,5,219,0,0,139,16,139,69,200, 137,68,36,8,137,84,36,4,139,69,220,137,4,36,232,90,154,254,255,139,69,224,199,64,32,0,0,0,0,235,116,199,68,36,4,5,0,0,0,139,69,220,137,4,36,232,160,207,0,0,133,192,121,34,141,131,1,177,0,0,137,4,36,232,209,153,254,255,139,69,220,137,4,36,232,91,162,254, 255,199,69,220,255,255,255,255,235,59,141,147,25,255,255,255,139,69,224,137,68,36,8,137,84,36,4,139,69,220,137,4,36,232,249,153,254,255,139,85,224,141,131,109,216,0,0,139,0,137,68,36,4,137,20,36,232,22,53,254,255,137,194,139,69,224,137,80,32,139,85,224, 139,69,220,137,66,36,139,69,224,199,64,40,0,0,0,0,139,85,224,139,69,212,137,66,44,139,77,224,137,77,188,139,69,188,141,147,221,216,0,0,139,18,139,77,244,51,10,116,5,232,236,205,0,0,131,196,100,91,201,195,85,137,229,131,236,24,139,69,8,139,64,36,133,192, 120,28,139,69,8,139,64,36,137,4,36,232,48,154,254,255,139,69,8,139,64,36,137,4,36,232,172,161,254,255,201,195,85,137,229,87,86,83,131,236,60,232,0,0,0,0,91,141,179,196,255,255,255,141,187,107,252,255,255,141,131,90,198,0,0,137,4,36,232,116,12,254,255, 199,68,36,32,0,0,0,0,199,68,36,28,7,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,8,0,0,0,199,68,36,12,48,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,24,1,254,255,137,194,141,131,68,23,1,0,137,16,131,196,60,91,94,95,201,195,85,137,229, 131,236,8,232,25,248,255,255,232,117,255,255,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,240,0,0,0,0,141,131,189,22,1,0,139,0,137,4,36,232,34,65,254,255,137,69,236,232,153,148,253,255,137,194,139,69,236,137,80,32,141,131,108,4,0,0,137, 68,36,4,139,69,236,137,4,36,232,15,74,254,255,137,194,139,69,236,137,80,40,139,85,236,141,131,153,213,0,0,139,0,137,68,36,4,137,20,36,232,172,51,254,255,139,85,236,141,131,85,212,0,0,139,0,137,68,36,4,137,20,36,232,149,51,254,255,137,194,139,69,236,137, 80,28,139,69,236,199,64,36,255,255,255,127,139,85,236,141,131,41,199,0,0,139,0,137,66,44,139,85,236,141,131,61,199,0,0,242,15,16,0,242,15,17,66,48,139,85,236,141,131,37,199,0,0,139,0,137,66,56,232,5,207,249,255,137,194,139,69,236,137,80,64,139,69,236, 199,64,68,0,0,0,0,139,69,236,131,196,36,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,69,8,199,64,36,0,0,0,0,139,69,8,139,64,40,133,192,116,14,139,69,8,139,64,40,137,4,36,232,156,73,254,255,139,85,8,141,131,94,198,0,0,242,15,16,0,242,15,17,66, 48,139,69,8,199,64,68,1,0,0,0,131,196,20,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,199,69,244,0,0,0,0,139,69,8,139,64,32,137,4,36,232,186,167,253,255,137,69,240,139,69,8,139,64,36,137,69,232,139,69,8,139,64,32,137,4,36,232,173,167,253,255,137, 69,220,139,69,232,193,224,3,3,69,220,137,69,216,139,69,232,59,69,240,15,141,80,2,0,0,235,36,139,69,216,139,0,131,248,4,117,7,199,69,244,0,0,0,0,255,69,232,131,69,216,8,139,69,232,59,69,240,15,141,42,2,0,0,139,69,216,139,0,131,248,4,116,210,139,69,216, 139,0,131,248,5,116,200,131,125,244,0,15,133,198,0,0,0,139,69,216,139,0,131,248,1,15,133,184,0,0,0,139,69,216,131,192,8,137,69,212,139,69,232,64,137,69,228,235,7,255,69,228,131,69,212,8,139,69,228,59,69,240,125,10,139,69,212,139,0,131,248,1,116,231,139, 85,8,139,69,228,137,66,36,131,125,16,0,116,76,139,69,216,243,15,16,72,4,139,69,8,243,15,16,64,44,243,15,89,193,139,69,8,243,15,17,64,56,139,69,8,243,15,16,64,56,243,15,90,192,139,69,8,139,64,40,242,15,17,68,36,4,137,4,36,232,227,73,254,255,232,83,74, 254,255,139,69,8,221,88,48,233,162,1,0,0,139,85,232,139,69,228,137,193,41,209,137,202,139,69,8,139,72,12,139,69,216,137,68,36,12,137,84,36,8,199,68,36,4,0,0,0,0,137,12,36,232,68,52,254,255,233,112,1,0,0,139,69,216,131,192,8,137,69,212,139,69,232,64,137, 69,228,235,7,255,69,228,131,69,212,8,139,69,228,59,69,240,125,20,139,69,212,139,0,131,248,1,116,231,139,69,212,139,0,131,248,2,116,221,139,85,8,139,69,228,137,66,36,139,85,232,139,69,228,41,208,137,69,236,131,125,244,0,117,100,139,69,216,139,0,131,248, 2,15,133,86,254,255,255,139,69,216,139,64,4,139,64,4,137,69,244,131,125,244,0,117,38,139,69,216,139,64,4,139,0,137,68,36,8,141,131,173,196,0,0,137,68,36,4,139,69,8,137,4,36,232,151,6,255,255,233,30,254,255,255,131,69,216,8,255,69,232,255,77,236,131,125, 236,0,117,14,139,85,8,139,69,228,137,66,36,233,0,254,255,255,139,69,8,139,64,68,137,69,224,139,69,8,199,64,68,0,0,0,0,131,125,12,0,117,98,139,69,216,139,0,131,248,1,117,39,139,69,216,137,68,36,12,139,69,236,137,68,36,8,141,131,105,212,0,0,139,0,137,68, 36,4,139,69,244,137,4,36,232,177,13,254,255,235,49,139,69,216,139,0,131,248,2,117,39,139,85,216,131,194,8,139,77,236,73,139,69,216,139,64,4,137,84,36,12,137,76,36,8,137,68,36,4,139,69,244,137,4,36,232,126,13,254,255,139,69,8,139,64,68,133,192,117,56, 139,85,8,139,69,224,137,66,68,233,109,253,255,255,139,69,8,199,64,36,255,255,255,127,139,69,8,139,64,28,137,4,36,232,200,48,254,255,139,85,8,141,131,13,198,0,0,242,15,16,0,242,15,17,66,48,131,196,68,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91, 141,131,30,195,0,0,243,15,16,0,15,46,69,12,15,149,192,15,154,194,9,208,15,182,192,199,68,36,8,0,0,0,0,137,68,36,4,139,69,8,137,4,36,232,236,252,255,255,131,196,20,91,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,132,252,255,255,199,68,36,8,1,0, 0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,186,252,255,255,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,139,85,8,141,131,197,194,0,0,242,15,16,0,242,15,17,66,48,199,68,36,8,1,0,0,0,199,68,36,4,0,0,0,0,139,69,8,137,4,36,232,126,252,255,255,131,196, 20,91,201,195,85,137,229,131,236,40,199,69,240,4,0,0,0,199,69,244,0,0,0,0,139,69,8,139,64,32,137,194,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,24,156,253,255,139,69,8,139,64,32,137,194,141,69,240,137,68,36,8,199,68,36,4,1,0,0,0,137,20, 36,232,249,155,253,255,201,195,85,137,229,131,236,24,139,69,8,139,64,32,137,194,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,232,211,155,253,255,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,157,251,255,255,139,69,8,139,64,32,137,4,36, 232,181,144,253,255,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,206,255,255,255,139,69,20,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,53,255,255,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,199,69, 244,0,0,0,0,139,69,16,139,16,141,131,113,192,0,0,137,68,36,4,137,20,36,232,162,201,0,0,133,192,117,9,199,69,244,1,0,0,0,235,42,139,69,16,139,0,15,182,0,132,192,116,30,139,69,16,139,0,137,68,36,8,141,131,9,115,0,0,137,68,36,4,139,69,8,137,4,36,232,208, 3,255,255,139,69,8,139,72,64,139,69,12,139,48,139,69,8,139,64,32,137,194,139,69,244,137,68,36,12,137,76,36,8,137,116,36,4,137,20,36,232,170,176,253,255,133,192,116,30,139,69,12,139,0,137,68,36,8,141,131,117,192,0,0,137,68,36,4,139,69,8,137,4,36,232,132, 3,255,255,139,69,8,199,64,36,255,255,255,127,139,69,8,199,64,68,1,0,0,0,131,196,32,91,94,201,195,85,137,229,83,129,236,20,4,0,0,232,0,0,0,0,91,139,69,8,137,133,4,252,255,255,139,69,12,137,133,0,252,255,255,139,69,16,137,133,252,251,255,255,141,131,119, 206,0,0,139,0,139,16,137,85,244,49,210,199,133,8,252,255,255,0,0,0,0,139,133,0,252,255,255,139,8,139,133,4,252,255,255,139,80,64,199,68,36,12,232,3,0,0,141,133,12,252,255,255,137,68,36,8,137,76,36,4,137,20,36,232,238,202,249,255,139,133,252,251,255,255, 139,16,141,131,165,191,0,0,137,68,36,4,137,20,36,232,119,200,0,0,133,192,117,12,199,133,8,252,255,255,1,0,0,0,235,51,139,133,252,251,255,255,139,0,15,182,0,132,192,116,36,139,133,252,251,255,255,139,0,137,68,36,8,141,131,61,114,0,0,137,68,36,4,139,133, 4,252,255,255,137,4,36,232,153,2,255,255,139,133,4,252,255,255,139,64,32,137,194,139,133,8,252,255,255,137,68,36,12,141,131,31,75,0,0,137,68,36,8,141,133,12,252,255,255,137,68,36,4,137,20,36,232,186,177,253,255,133,192,116,36,139,133,0,252,255,255,139, 0,137,68,36,8,141,131,107,115,0,0,137,68,36,4,139,133,4,252,255,255,137,4,36,232,64,2,255,255,141,131,119,206,0,0,139,0,139,85,244,51,16,116,5,232,159,197,0,0,129,196,20,4,0,0,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,120,190,0,0,137, 4,36,232,35,254,254,255,139,69,8,139,64,32,137,4,36,232,161,160,253,255,131,196,20,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,243,15,90,77,12,141,131,9,197,0,0,242,15,16,0,102,15,46,193,119,2,235,13,141,131,1,197,0,0,139,0,137,69,12,235,30,243, 15,90,69,12,141,131,169,191,0,0,102,15,46,0,119,2,235,11,141,131,133,192,0,0,139,0,137,69,12,141,131,101,191,0,0,243,15,16,0,243,15,94,69,12,243,15,17,69,244,139,69,8,242,15,16,72,48,141,131,121,191,0,0,242,15,16,0,102,15,46,200,117,7,122,5,233,140,0, 0,0,139,69,8,242,15,16,64,48,242,15,17,4,36,232,113,68,254,255,221,93,224,242,15,90,69,224,243,15,17,69,240,139,69,8,243,15,16,64,56,243,15,92,69,240,243,15,17,69,236,141,131,97,191,0,0,243,15,16,0,15,46,69,236,119,2,235,11,141,131,97,191,0,0,139,0,137, 69,236,139,69,8,243,15,16,72,44,243,15,16,69,244,15,40,208,243,15,94,209,15,40,202,243,15,16,69,236,243,15,89,193,243,15,17,69,236,243,15,90,69,236,139,69,8,139,64,40,242,15,17,68,36,4,137,4,36,232,96,67,254,255,139,85,8,139,69,244,137,66,44,131,196, 52,91,201,195,85,137,229,131,236,24,139,69,8,139,64,32,137,4,36,232,7,140,253,255,139,69,8,139,64,40,133,192,116,14,139,69,8,139,64,40,137,4,36,232,78,68,254,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,199,69,240,0,0,0,0,141,131,178,13,1,0,139, 0,137,4,36,232,19,56,254,255,137,69,236,232,138,139,253,255,137,194,139,69,236,137,80,32,139,85,236,141,131,138,204,0,0,139,0,137,68,36,4,137,20,36,232,186,42,254,255,139,85,236,141,131,70,203,0,0,139,0,137,68,36,4,137,20,36,232,163,42,254,255,137,194, 139,69,236,137,80,28,139,69,236,199,64,36,255,255,255,127,139,69,236,199,64,68,0,0,0,0,139,85,236,141,131,26,190,0,0,139,0,137,66,44,139,85,236,141,131,46,190,0,0,242,15,16,0,242,15,17,66,48,139,85,236,141,131,22,190,0,0,139,0,137,66,56,139,69,236,199, 64,40,0,0,0,0,232,255,197,249,255,137,194,139,69,236,137,80,64,139,69,236,131,196,36,91,201,195,85,137,229,86,131,236,52,139,69,8,139,64,32,137,4,36,232,28,159,253,255,137,69,244,139,69,8,139,64,36,137,69,236,139,69,8,139,64,32,137,4,36,232,15,159,253, 255,137,69,228,139,69,236,193,224,3,3,69,228,137,69,224,235,7,255,69,236,131,69,224,8,139,69,236,59,69,244,125,20,139,69,224,139,0,131,248,4,116,231,139,69,224,139,0,131,248,5,116,221,139,69,236,137,69,232,139,69,224,137,69,220,235,7,255,69,232,131,69, 220,8,139,69,232,59,69,244,125,20,139,69,220,139,0,131,248,4,116,10,139,69,220,139,0,131,248,5,117,221,139,69,232,59,69,236,126,117,139,85,8,139,69,232,137,66,36,139,69,224,139,0,131,248,2,117,51,139,77,224,131,193,8,139,85,236,139,69,232,41,208,141, 112,255,139,69,224,139,80,4,139,69,8,139,64,12,137,76,36,12,137,116,36,8,137,84,36,4,137,4,36,232,166,44,254,255,235,71,139,85,236,139,69,232,137,193,41,209,137,202,139,69,8,139,72,12,139,69,224,137,68,36,12,137,84,36,8,199,68,36,4,0,0,0,0,137,12,36, 232,230,43,254,255,235,24,139,69,8,199,64,36,255,255,255,127,139,69,8,139,64,28,137,4,36,232,179,41,254,255,131,196,52,94,201,195,85,137,229,131,236,8,139,69,8,199,64,36,0,0,0,0,201,195,85,137,229,131,236,24,139,69,8,139,64,32,137,4,36,232,204,137,253, 255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,162,253,255,255,141,131,12,187,0,0,137,4,36,232,188,0,254,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,72,0,0,0,137,116,36,8,141,131,193,244,255,255,137,68,36,4,137, 20,36,232,112,245,253,255,137,194,141,131,138,11,1,0,137,16,141,131,18,187,0,0,137,4,36,232,116,0,254,255,137,194,141,139,160,245,255,255,141,131,138,11,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,55,249,253,255,141,131,181,130, 0,0,137,4,36,232,62,0,254,255,137,194,141,139,200,248,255,255,141,131,138,11,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,6,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,249,248,253,255,141,131,26,59,0,0,137,4,36,232,0,0,254,255,137,194,141,139,19,250,255, 255,141,131,138,11,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,187,248,253,255,141,131,26,187,0,0,137,4,36,232,194,255,253,255,137,194,141,139,242,249,255,255,141,131,138,11,1,0,139,0,199,68,36,12,0,0,0,0, 137,84,36,8,137,76,36,4,137,4,36,232,133,248,253,255,141,131,16,126,0,0,137,4,36,232,140,255,253,255,137,194,141,139,121,249,255,255,141,131,138,11,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,71,248,253,255, 141,131,20,126,0,0,137,4,36,232,78,255,253,255,137,194,141,139,204,249,255,255,141,131,138,11,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,9,248,253,255,141,131,162,134,0,0,137,4,36,232,16,255,253,255,137, 194,141,139,121,249,255,255,141,131,138,11,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,203,247,253,255,141,131,32,187,0,0,137,4,36,232,210,254,253,255,137,194,141,139,70,250,255,255,141,131,138,11,1,0,139, 0,199,68,36,20,0,0,0,0,199,68,36,16,7,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,133,247,253,255,141,131,172,64,0,0,137,4,36,232,140,254,253,255,137,194,141,139,16,251,255,255,141,131,138,11,1,0,139,0,199,68,36,20,0,0,0,0,199,68, 36,16,7,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,63,247,253,255,141,131,36,91,0,0,137,4,36,232,70,254,253,255,137,194,141,139,86,252,255,255,141,131,138,11,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76, 36,4,137,4,36,232,1,247,253,255,141,131,37,187,0,0,137,4,36,232,8,254,253,255,137,194,141,139,133,252,255,255,141,131,138,11,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,195,246,253,255,141,147,11,249,255,255, 141,131,138,11,1,0,139,0,137,84,36,4,137,4,36,232,57,250,253,255,141,179,221,255,255,255,141,131,43,187,0,0,137,4,36,232,170,253,253,255,137,194,199,68,36,20,0,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,72,0,0,0,137,116,36,8,141,131,208,253,255,255,137, 68,36,4,137,20,36,232,94,242,253,255,137,194,141,131,142,11,1,0,137,16,141,131,18,187,0,0,137,4,36,232,98,253,253,255,137,194,141,139,203,255,255,255,141,131,142,11,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,37,246,253,255,141, 131,26,59,0,0,137,4,36,232,44,253,253,255,137,194,141,139,19,250,255,255,141,131,142,11,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,231,245,253,255,141,131,26,187,0,0,137,4,36,232,238,252,253,255,137,194, 141,139,242,249,255,255,141,131,142,11,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,177,245,253,255,141,131,16,126,0,0,137,4,36,232,184,252,253,255,137,194,141,139,121,249,255,255,141,131,142,11,1,0,139,0,199,68,36,16,0,0,0,0,199, 68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,115,245,253,255,141,131,20,126,0,0,137,4,36,232,122,252,253,255,137,194,141,139,204,249,255,255,141,131,142,11,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36, 232,53,245,253,255,141,131,162,134,0,0,137,4,36,232,60,252,253,255,137,194,141,139,121,249,255,255,141,131,142,11,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,10,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,247,244,253,255,141,131,32,187,0,0,137,4,36,232, 254,251,253,255,137,194,141,139,70,250,255,255,141,131,142,11,1,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,7,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,177,244,253,255,141,131,172,64,0,0,137,4,36,232,184,251,253,255,137,194,141,139, 16,251,255,255,141,131,142,11,1,0,139,0,199,68,36,20,0,0,0,0,199,68,36,16,7,0,0,0,199,68,36,12,2,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,107,244,253,255,141,131,36,91,0,0,137,4,36,232,114,251,253,255,137,194,141,139,86,252,255,255,141,131,142,11,1, 0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,7,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,45,244,253,255,141,147,156,254,255,255,141,131,142,11,1,0,139,0,137,84,36,4,137,4,36,232,163,247,253,255,131,196,32,91,94,201,195,85,137,229,131,236,24,139,69,8,242, 15,16,64,32,139,69,8,139,64,28,242,15,17,68,36,4,137,4,36,232,33,59,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,28,137,4,36,232,131,57,254,255,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,253,181,0,0,243,15,16,0,15,46,69,12,119,2,235, 11,141,129,253,181,0,0,139,0,137,69,12,243,15,90,69,12,139,69,8,242,15,17,64,32,201,195,85,137,229,131,236,24,139,69,12,137,68,36,4,139,69,8,137,4,36,232,176,255,255,255,139,69,8,137,4,36,232,107,255,255,255,201,195,85,137,229,131,236,24,139,69,8,139, 64,12,137,4,36,232,29,35,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,28,137,4,36,232,171,59,254,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,18,5,1,0,139,0,137,4,36,232,118,47,254,255,137,69,244,139,69,8,137,68,36,4,139,69, 244,137,4,36,232,68,255,255,255,141,131,199,255,255,255,137,68,36,4,139,69,244,137,4,36,232,94,56,254,255,137,194,139,69,244,137,80,28,141,131,182,180,0,0,137,4,36,232,0,250,253,255,139,85,244,137,68,36,4,137,20,36,232,245,33,254,255,141,131,166,53,0, 0,137,4,36,232,227,249,253,255,137,198,141,131,152,139,0,0,137,4,36,232,211,249,253,255,139,85,244,139,77,244,137,116,36,12,137,68,36,8,137,84,36,4,137,12,36,232,75,21,254,255,139,69,244,131,196,32,91,94,201,195,85,137,229,87,86,83,131,236,44,232,0,0, 0,0,91,141,179,45,255,255,255,141,187,67,255,255,255,141,131,13,180,0,0,137,4,36,232,134,249,253,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,40,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,58,238,253,255,137,194,141, 131,98,4,1,0,137,16,141,131,19,180,0,0,137,4,36,232,62,249,253,255,141,147,67,255,255,255,199,68,36,12,0,0,0,0,199,68,36,8,6,0,0,0,137,68,36,4,137,20,36,232,40,241,253,255,141,147,128,254,255,255,141,131,98,4,1,0,139,0,137,84,36,4,137,4,36,232,125,245, 253,255,141,131,103,46,0,0,137,4,36,232,244,248,253,255,137,194,141,139,164,254,255,255,141,131,98,4,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,183,241,253,255,141,131,246,52,0,0,137,4,36,232,190,248,253,255,137,194,141,139,186, 254,255,255,141,131,98,4,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,121,241,253,255,141,147,242,254,255,255,141,131,98,4,1,0,139,0,137,84,36,4,137,4,36,232,17,245,253,255,131,196,44,91,94,95,201,195,85,137, 229,131,236,24,139,69,8,199,64,40,0,0,0,0,139,69,8,139,64,12,137,4,36,232,245,32,254,255,139,69,8,139,64,40,133,192,117,28,139,69,8,242,15,16,64,32,139,69,8,139,64,28,242,15,17,68,36,4,137,4,36,232,74,56,254,255,201,195,85,137,229,83,131,236,20,232,0, 0,0,0,91,141,131,59,179,0,0,243,15,16,0,15,46,69,12,117,4,122,2,235,13,139,69,8,137,4,36,232,142,255,255,255,235,14,139,69,8,139,64,28,137,4,36,232,132,54,254,255,139,69,8,199,64,40,1,0,0,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91, 141,131,243,178,0,0,139,0,137,68,36,4,139,69,8,137,4,36,232,144,255,255,255,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,197,178,0,0,139,0,137,68,36,4,139,69,8,137,4,36,232,102,255,255,255,131,196,20,91,201,195,85,137,229,131, 236,8,232,0,0,0,0,89,141,129,160,178,0,0,243,15,16,0,15,46,69,12,119,2,235,11,141,129,160,178,0,0,139,0,137,69,12,243,15,90,69,12,139,69,8,242,15,17,64,32,201,195,85,137,229,131,236,24,139,69,8,139,64,28,137,4,36,232,133,56,254,255,201,195,85,137,229, 86,83,131,236,32,232,0,0,0,0,91,141,131,240,1,1,0,139,0,137,4,36,232,80,44,254,255,137,69,244,139,69,8,137,68,36,4,139,69,244,137,4,36,232,127,255,255,255,139,69,244,199,64,40,0,0,0,0,141,131,191,254,255,255,137,68,36,4,139,69,244,137,4,36,232,46,53, 254,255,137,194,139,69,244,137,80,28,141,131,144,177,0,0,137,4,36,232,208,246,253,255,139,85,244,137,68,36,4,137,20,36,232,197,30,254,255,141,131,128,50,0,0,137,4,36,232,179,246,253,255,137,198,141,131,114,136,0,0,137,4,36,232,163,246,253,255,139,85, 244,139,77,244,137,116,36,12,137,68,36,8,137,84,36,4,137,12,36,232,27,18,254,255,139,69,244,131,196,32,91,94,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,35,255,255,255,141,187,57,255,255,255,141,131,232,176,0,0,137,4,36,232,86,246,253, 255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,44,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,10,235,253,255,137,194,141,131,54,1,1,0,137,16,141,147,151,254,255,255,141,131,54,1,1,0,139,0,137,84,36,4,137,4,36,232,125, 242,253,255,141,131,55,43,0,0,137,4,36,232,244,245,253,255,137,194,141,139,193,254,255,255,141,131,54,1,1,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,183,238,253,255,141,131,198,49,0,0,137,4,36,232,190,245,253,255,137,194,141,139, 235,254,255,255,141,131,54,1,1,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,121,238,253,255,141,147,75,254,255,255,141,131,54,1,1,0,139,0,137,84,36,4,137,4,36,232,17,242,253,255,131,196,44,91,94,95,201,195,85, 137,229,83,131,236,52,232,0,0,0,0,91,232,241,53,254,255,221,93,240,139,69,8,242,15,16,64,32,242,15,17,4,36,232,254,53,254,255,221,93,216,141,131,49,182,0,0,102,15,40,0,242,15,16,77,216,102,15,87,193,242,15,17,69,232,242,15,16,77,232,141,131,65,182,0, 0,242,15,16,0,102,15,46,193,119,2,235,29,139,69,8,139,80,40,139,69,8,139,64,12,137,84,36,4,137,4,36,232,181,30,254,255,233,217,0,0,0,139,69,8,243,15,16,64,52,243,15,90,216,139,69,8,242,15,16,80,64,139,69,8,242,15,16,72,44,242,15,16,69,240,242,15,92,193, 242,15,89,208,139,69,8,243,15,16,72,40,139,69,8,243,15,16,64,52,15,40,225,243,15,92,224,15,40,196,243,15,90,192,242,15,89,194,242,15,88,195,242,15,90,192,139,69,8,139,64,12,243,15,17,68,36,4,137,4,36,232,73,30,254,255,139,69,8,243,15,16,72,60,141,131, 129,176,0,0,243,15,16,0,15,46,193,115,2,235,14,139,69,8,141,147,25,179,0,0,139,18,137,80,60,139,69,8,243,15,16,64,60,243,15,90,192,102,15,46,69,232,118,2,235,19,139,69,8,243,15,16,64,60,243,15,90,192,242,15,17,69,224,235,10,242,15,16,69,232,242,15,17, 69,224,139,69,8,139,64,28,242,15,16,77,224,242,15,17,76,36,4,137,4,36,232,63,52,254,255,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,232,156,52,254,255,221,93,240,139,69,8,139,64,56,133,192,15,132,130,1,0,0,139,69,8,242,15,16,72,72,141, 131,68,175,0,0,242,15,16,0,102,15,46,200,15,134,102,1,0,0,139,69,8,242,15,16,72,32,242,15,16,69,240,102,15,46,193,119,2,235,14,139,69,8,139,80,40,139,69,8,137,80,52,235,91,139,69,8,243,15,16,64,52,243,15,90,216,139,69,8,242,15,16,80,64,139,69,8,242,15, 16,72,44,242,15,16,69,240,242,15,92,193,242,15,89,208,139,69,8,243,15,16,72,40,139,69,8,243,15,16,64,52,15,40,225,243,15,92,224,15,40,196,243,15,90,192,242,15,89,194,242,15,88,195,242,15,90,192,139,69,8,243,15,17,64,52,139,69,8,242,15,16,69,240,242,15, 17,64,44,139,69,8,242,15,16,64,72,242,15,17,4,36,232,65,52,254,255,139,69,8,221,88,32,139,85,8,139,69,12,137,66,40,139,69,8,137,4,36,232,181,253,255,255,139,69,8,199,64,56,0,0,0,0,139,69,8,242,15,16,64,32,102,15,40,200,242,15,92,77,240,141,131,76,175, 0,0,242,15,16,0,242,15,94,193,139,69,8,242,15,17,64,64,139,69,8,243,15,16,72,60,141,131,44,175,0,0,243,15,16,0,15,46,193,115,2,235,14,139,69,8,141,147,196,177,0,0,139,18,137,80,60,139,69,8,243,15,16,64,60,243,15,90,200,139,69,8,242,15,16,64,72,102,15, 46,200,119,2,235,15,139,69,8,242,15,16,64,72,242,15,17,69,224,235,17,139,69,8,243,15,16,64,60,243,15,90,192,242,15,17,69,224,139,69,8,139,64,28,242,15,16,101,224,242,15,17,100,36,4,137,4,36,232,150,50,254,255,235,56,139,69,8,139,64,28,137,4,36,232,254, 48,254,255,139,85,8,139,69,12,137,66,52,139,69,8,139,80,52,139,69,8,137,80,40,139,69,8,139,80,12,139,69,12,137,68,36,4,137,20,36,232,244,27,254,255,139,69,8,199,64,56,0,0,0,0,131,196,52,91,201,195,85,137,229,131,236,8,243,15,90,69,12,139,69,8,242,15, 17,64,72,139,69,8,199,64,56,1,0,0,0,201,195,85,137,229,131,236,24,139,69,8,139,80,52,139,69,8,137,80,40,139,69,8,139,64,28,137,4,36,232,133,48,254,255,201,195,85,137,229,131,236,24,139,69,8,139,64,28,137,4,36,232,111,48,254,255,139,85,8,139,69,12,137, 66,52,139,69,8,139,80,52,139,69,8,137,80,40,201,195,85,137,229,131,236,24,139,69,8,139,64,28,137,4,36,232,245,50,254,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,100,252,0,0,139,0,137,4,36,232,192,38,254,255,137,69,244,139,85,244,139, 69,8,137,66,52,139,69,244,139,80,52,139,69,244,137,80,40,139,69,244,199,64,56,0,0,0,0,139,85,244,141,131,220,172,0,0,242,15,16,0,242,15,17,66,64,141,131,47,252,255,255,137,68,36,4,139,69,244,137,4,36,232,137,47,254,255,137,194,139,69,244,137,80,28,232, 203,49,254,255,139,69,244,221,88,44,139,69,244,242,15,16,64,44,139,69,244,242,15,17,64,32,139,85,244,139,69,12,137,66,60,141,131,226,130,0,0,137,4,36,232,7,241,253,255,139,85,244,137,68,36,4,137,20,36,232,252,24,254,255,141,131,240,44,0,0,137,4,36,232, 234,240,253,255,137,198,141,131,226,130,0,0,137,4,36,232,218,240,253,255,139,85,244,139,77,244,137,116,36,12,137,68,36,8,137,84,36,4,137,12,36,232,82,12,254,255,139,69,244,131,192,60,139,85,244,137,68,36,4,137,20,36,232,213,19,254,255,139,69,244,131, 196,32,91,94,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,213,254,255,255,141,187,235,254,255,255,141,131,16,171,0,0,137,4,36,232,120,240,253,255,199,68,36,28,0,0,0,0,199,68,36,24,6,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199, 68,36,12,80,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,36,229,253,255,137,194,141,131,92,251,0,0,137,16,141,131,232,43,0,0,137,4,36,232,40,240,253,255,137,194,141,139,105,254,255,255,141,131,92,251,0,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0, 0,137,84,36,8,137,76,36,4,137,4,36,232,227,232,253,255,141,131,89,37,0,0,137,4,36,232,234,239,253,255,137,194,141,139,136,254,255,255,141,131,92,251,0,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,173,232,253,255,141,131,220,42,0, 0,137,4,36,232,180,239,253,255,137,194,141,139,170,254,255,255,141,131,92,251,0,0,139,0,199,68,36,16,0,0,0,0,199,68,36,12,1,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,111,232,253,255,141,147,124,252,255,255,141,131,92,251,0,0,139,0,137,84,36,4,137,4, 36,232,7,236,253,255,131,196,44,91,94,95,201,195,85,137,229,131,236,8,232,238,47,254,255,139,69,8,221,88,28,201,195,85,137,229,131,236,40,139,69,8,242,15,16,64,28,242,15,17,4,36,232,240,47,254,255,221,93,240,242,15,90,69,240,139,69,8,139,64,12,243,15, 17,68,36,4,137,4,36,232,213,24,254,255,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,131,217,249,0,0,139,0,137,4,36,232,49,36,254,255,137,69,244,139,69,244,137,4,36,232,139,255,255,255,141,131,83,128,0,0,137,4,36,232,223,238,253,255,139,85,244, 137,68,36,4,137,20,36,232,212,22,254,255,141,131,108,164,0,0,137,4,36,232,194,238,253,255,137,198,141,131,113,169,0,0,137,4,36,232,178,238,253,255,139,85,244,139,77,244,137,116,36,12,137,68,36,8,137,84,36,4,137,12,36,232,42,10,254,255,139,69,244,131, 196,32,91,94,201,195,85,137,229,86,83,131,236,32,232,0,0,0,0,91,141,179,104,255,255,255,141,131,5,169,0,0,137,4,36,232,108,238,253,255,199,68,36,24,0,0,0,0,199,68,36,20,6,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,36,0,0,0,199,68,36,8,0,0,0,0,137,116,36, 4,137,4,36,232,28,227,253,255,137,194,141,131,78,249,0,0,137,16,141,147,31,255,255,255,141,131,78,249,0,0,139,0,137,84,36,4,137,4,36,232,143,234,253,255,141,131,225,163,0,0,137,4,36,232,6,238,253,255,137,194,141,139,50,255,255,255,141,131,78,249,0,0, 139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,201,230,253,255,131,196,32,91,94,201,195,85,137,229,83,129,236,164,0,0,0,232,0,0,0,0,91,139,69,8,137,133,116,255,255,255,139,69,16,137,133,112,255,255,255,141,131,141,182,0,0,139,0,139,16, 137,85,244,49,210,141,131,153,248,0,0,139,0,137,4,36,232,204,34,254,255,137,69,156,199,69,136,0,0,0,0,131,125,12,0,15,132,135,0,0,0,139,149,112,255,255,255,131,234,8,139,69,12,193,224,3,141,4,2,139,0,131,248,1,116,81,139,149,112,255,255,255,131,234,8, 139,69,12,193,224,3,1,194,199,68,36,8,79,0,0,0,141,69,164,137,68,36,4,137,20,36,232,70,112,253,255,141,69,164,137,68,36,8,141,131,85,168,0,0,137,68,36,4,139,69,156,137,4,36,232,205,234,254,255,141,131,233,168,0,0,139,0,137,69,128,235,24,139,149,112,255, 255,255,131,234,8,139,69,12,193,224,3,141,4,2,139,64,4,137,69,128,255,77,12,235,11,141,131,233,168,0,0,139,0,137,69,128,131,125,12,0,117,43,141,133,120,255,255,255,137,133,112,255,255,255,199,69,12,1,0,0,0,199,133,120,255,255,255,1,0,0,0,141,131,233, 168,0,0,139,0,137,133,124,255,255,255,139,85,156,139,69,12,137,66,28,139,85,12,137,208,1,192,1,208,193,224,2,137,4,36,232,46,6,254,255,137,194,139,69,156,137,80,40,139,69,156,139,64,40,137,69,148,139,69,12,137,69,132,139,133,112,255,255,255,137,69,152, 235,32,139,69,152,139,0,131,248,2,117,18,139,69,152,139,64,4,139,0,15,182,0,60,112,117,3,255,69,136,131,69,152,8,255,77,132,131,125,132,255,117,215,139,85,136,137,208,1,192,1,208,193,224,2,137,4,36,232,207,5,254,255,137,194,139,69,156,137,80,44,139,69, 156,139,64,44,137,69,140,139,85,156,139,69,136,137,66,32,199,69,132,0,0,0,0,139,69,148,137,69,144,139,133,112,255,255,255,137,69,152,233,188,1,0,0,139,69,152,139,0,131,248,1,117,83,139,69,152,139,80,4,139,0,139,77,144,137,1,137,81,4,139,85,156,141,131, 29,182,0,0,139,0,137,68,36,4,137,20,36,232,225,19,254,255,137,194,139,69,144,137,80,8,131,125,132,0,15,132,110,1,0,0,139,69,144,131,192,4,139,85,156,137,68,36,4,137,20,36,232,224,14,254,255,233,84,1,0,0,139,69,152,139,0,131,248,2,15,133,70,1,0,0,139, 69,152,139,64,4,139,0,15,182,0,136,69,163,128,125,163,115,117,90,139,69,144,199,0,2,0,0,0,139,85,144,141,131,109,183,0,0,139,0,137,66,4,139,85,156,141,131,109,183,0,0,139,0,137,68,36,4,137,20,36,232,101,19,254,255,137,194,139,69,144,137,80,8,131,125, 132,0,15,132,242,0,0,0,139,69,144,131,192,4,139,85,156,137,68,36,4,137,20,36,232,14,15,254,255,233,216,0,0,0,128,125,163,112,117,90,139,69,144,199,0,3,0,0,0,139,85,144,139,69,140,137,66,4,139,69,140,137,4,36,232,78,180,252,255,139,85,156,141,131,145, 183,0,0,139,0,137,68,36,4,137,20,36,232,255,18,254,255,137,194,139,69,144,137,80,8,131,125,132,0,116,18,139,85,156,139,69,140,137,68,36,4,137,20,36,232,91,13,254,255,131,69,140,12,235,120,128,125,163,102,116,33,139,69,152,139,64,4,139,0,137,68,36,8,141, 131,116,168,0,0,137,68,36,4,139,69,156,137,4,36,232,86,232,254,255,139,69,144,199,0,1,0,0,0,139,85,144,141,131,233,168,0,0,139,0,137,66,4,139,85,156,141,131,29,182,0,0,139,0,137,68,36,4,137,20,36,232,132,18,254,255,137,194,139,69,144,137,80,8,131,125, 132,0,116,21,139,69,144,131,192,4,139,85,156,137,68,36,4,137,20,36,232,135,13,254,255,255,69,132,131,69,152,8,131,69,144,12,139,69,132,59,69,12,15,140,56,254,255,255,139,69,156,131,192,36,139,85,156,137,68,36,4,137,20,36,232,91,13,254,255,139,69,156, 199,64,48,0,0,0,0,139,85,156,139,69,128,137,66,36,139,69,156,141,147,141,182,0,0,139,18,139,77,244,51,10,116,5,232,34,171,0,0,129,196,164,0,0,0,91,201,195,85,137,229,131,236,40,139,69,8,139,64,8,137,69,244,139,69,8,139,64,12,137,69,240,139,69,244,139, 64,32,137,69,236,235,15,139,69,240,137,4,36,232,50,178,252,255,131,69,240,12,255,77,236,131,125,236,255,117,232,139,69,244,139,64,32,137,194,137,208,1,192,1,208,193,224,2,137,194,139,69,8,139,64,12,137,84,36,4,137,4,36,232,16,5,254,255,139,69,8,139,0, 137,4,36,232,220,42,254,255,139,69,244,139,64,28,193,224,2,131,192,16,137,68,36,4,139,69,8,137,4,36,232,232,4,254,255,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,139,64,8,137,69,244,139,69,244,139,64,48,59,69,8,117,14,139,69,8,139,80,4,139, 69,244,137,80,48,235,54,139,69,244,139,64,48,137,69,240,235,28,139,69,236,59,69,8,117,14,139,69,236,139,80,4,139,69,240,137,80,4,235,21,139,69,236,137,69,240,139,69,240,139,64,4,137,69,236,131,125,236,0,117,213,139,69,244,139,64,28,137,69,228,139,69, 244,139,64,40,141,72,244,139,69,244,139,64,28,137,194,137,208,1,192,1,208,193,224,2,141,4,1,137,69,232,139,69,8,131,192,16,141,80,252,139,69,244,139,64,28,193,224,2,141,4,2,137,69,224,233,157,0,0,0,139,69,232,139,0,137,69,212,131,125,212,2,116,39,131, 125,212,3,116,58,131,125,212,1,116,2,235,121,139,69,224,139,16,139,69,232,139,64,8,137,84,36,4,137,4,36,232,80,18,254,255,235,96,139,69,224,139,16,139,69,232,139,64,8,137,84,36,4,137,4,36,232,186,18,254,255,235,71,139,69,224,139,0,199,68,36,4,1,0,0,0, 137,4,36,232,134,175,252,255,133,192,116,25,139,69,224,139,16,139,69,232,139,64,8,137,84,36,4,137,4,36,232,110,17,254,255,235,21,141,131,39,164,0,0,137,68,36,4,139,69,244,137,4,36,232,220,229,254,255,131,109,232,12,131,109,224,4,255,77,228,131,125,228, 255,15,133,86,255,255,255,139,69,8,137,4,36,232,22,254,255,255,131,196,68,91,201,195,85,137,229,83,131,236,68,232,0,0,0,0,91,139,69,8,139,64,28,193,224,2,131,192,16,137,4,36,232,121,1,254,255,137,69,244,139,69,8,139,64,28,137,69,224,139,69,8,139,64,32, 137,194,137,208,1,192,1,208,193,224,2,137,4,36,232,84,1,254,255,137,194,139,69,244,137,80,12,139,69,16,59,69,224,126,63,139,69,224,193,224,3,3,69,20,139,0,131,248,1,117,20,139,69,224,193,224,3,3,69,20,139,80,4,139,69,8,137,80,36,235,21,141,131,215,162, 0,0,137,68,36,4,139,69,8,137,4,36,232,39,229,254,255,139,69,224,137,69,16,199,69,228,0,0,0,0,139,69,8,139,64,44,137,69,240,139,69,8,139,64,40,137,69,232,139,69,20,137,69,220,233,178,0,0,0,139,69,232,139,0,137,69,204,131,125,204,2,116,36,131,125,204,3, 116,51,131,125,204,1,116,5,233,136,0,0,0,139,69,220,137,4,36,232,232,103,253,255,139,69,232,217,88,4,235,117,139,69,220,137,4,36,232,41,104,253,255,137,194,139,69,232,137,80,4,235,96,139,69,240,137,4,36,232,101,175,252,255,139,69,220,139,0,131,248,3, 116,23,141,131,253,162,0,0,137,68,36,4,139,69,8,137,4,36,232,140,228,254,255,235,48,139,69,220,139,80,4,139,77,240,139,2,137,1,139,66,4,137,65,4,139,66,8,137,65,8,139,69,240,139,64,8,133,192,116,13,139,69,240,139,80,8,139,66,8,64,137,66,8,131,69,240, 12,255,69,228,131,69,232,12,131,69,220,8,139,69,228,59,69,16,15,140,66,255,255,255,199,69,228,0,0,0,0,139,69,8,139,64,44,137,69,240,139,69,244,139,64,12,137,69,236,139,69,8,139,64,40,137,69,232,139,69,244,131,192,16,137,69,216,235,95,139,69,232,139,0, 131,248,3,117,63,139,69,240,139,64,8,133,192,116,13,139,69,240,139,80,8,139,66,8,64,137,66,8,139,85,216,139,69,236,137,2,139,77,236,139,85,240,139,2,137,1,139,66,4,137,65,4,139,66,8,137,65,8,131,69,236,12,131,69,240,12,235,11,139,69,232,139,80,4,139, 69,216,137,16,255,69,228,131,69,232,12,131,69,216,4,139,69,228,59,69,224,124,153,139,69,8,139,80,48,139,69,244,137,80,4,139,85,8,139,69,244,137,66,48,139,85,244,139,69,8,137,66,8,141,131,142,254,255,255,137,68,36,4,139,69,244,137,4,36,232,24,36,254,255, 137,194,139,69,244,137,16,139,69,8,243,15,16,72,36,141,131,35,163,0,0,243,15,16,0,15,46,200,115,2,235,19,139,69,8,243,15,16,64,36,243,15,90,192,242,15,17,69,208,235,15,141,131,59,163,0,0,242,15,16,0,242,15,17,69,208,139,69,244,139,0,242,15,16,69,208, 242,15,17,68,36,4,137,4,36,232,152,37,254,255,131,196,68,91,201,195,85,137,229,131,236,24,235,14,139,69,8,139,64,48,137,4,36,232,230,251,255,255,139,69,8,139,64,48,133,192,117,232,201,195,85,137,229,131,236,40,235,23,139,69,244,139,80,4,139,69,8,137, 80,48,139,69,244,137,4,36,232,49,251,255,255,139,69,8,139,64,48,137,69,244,131,125,244,0,117,218,201,195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,194,255,255,255,141,187,57,247,255,255,141,131,29,160,0,0,137,4,36,232,245,228,253,255,199, 68,36,24,0,0,0,0,199,68,36,20,10,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,52,0,0,0,137,116,36,8,137,124,36,4,137,4,36,232,169,217,253,255,137,194,141,131,225,239,0,0,137,16,141,147,2,253,255,255,141,131,225,239,0,0,139,0,137,84,36,4,137,4,36,232,96,225, 253,255,141,131,120,157,0,0,137,4,36,232,147,228,253,255,137,194,141,139,160,255,255,255,141,131,225,239,0,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,86,221,253,255,141,131,89,159,0,0,137,4,36,232,93,228,253,255,137,194,141,139, 194,255,255,255,141,131,225,239,0,0,139,0,199,68,36,12,0,0,0,0,137,84,36,8,137,76,36,4,137,4,36,232,32,221,253,255,131,196,44,91,94,95,201,195,85,137,229,131,236,8,232,115,234,255,255,232,158,237,255,255,232,119,243,255,255,232,133,245,255,255,232,240, 254,255,255,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,1,175,0,0,139,0,139,0,133,192,15,132,177,0,0,0,141,131,1,175,0,0,139,0,139,0,137,69,228,131,125,20,127,127,20,184,0,0,0,0,131,125,20,0,137,194,15,73,85,20,137,85,232,235,7,199,69,232, 127,0,0,0,131,125,16,127,127,20,184,0,0,0,0,131,125,16,0,137,194,15,73,85,16,137,85,236,235,7,199,69,236,127,0,0,0,129,125,8,255,15,0,0,127,23,184,0,0,0,0,131,125,8,0,15,73,69,8,137,194,193,226,4,137,85,240,235,7,199,69,240,240,255,0,0,131,125,12,15, 127,20,184,0,0,0,0,131,125,12,0,137,194,15,73,85,12,137,85,244,235,7,199,69,244,15,0,0,0,139,69,240,11,69,244,139,85,232,137,84,36,8,139,85,236,137,84,36,4,137,4,36,255,85,228,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,39,174, 0,0,139,0,139,0,133,192,15,132,177,0,0,0,141,131,39,174,0,0,139,0,139,0,137,69,228,131,125,20,127,127,20,184,0,0,0,0,131,125,20,0,137,194,15,73,85,20,137,85,232,235,7,199,69,232,127,0,0,0,131,125,16,127,127,20,184,0,0,0,0,131,125,16,0,137,194,15,73,85, 16,137,85,236,235,7,199,69,236,127,0,0,0,129,125,8,255,15,0,0,127,23,184,0,0,0,0,131,125,8,0,15,73,69,8,137,194,193,226,4,137,85,240,235,7,199,69,240,240,255,0,0,131,125,12,15,127,20,184,0,0,0,0,131,125,12,0,137,194,15,73,85,12,137,85,244,235,7,199,69, 244,15,0,0,0,139,69,240,11,69,244,139,85,232,137,84,36,8,139,85,236,137,84,36,4,137,4,36,255,85,228,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,77,173,0,0,139,0,139,0,133,192,15,132,137,0,0,0,141,131,77,173,0,0,139,0,139,0,137, 69,232,131,125,16,127,127,20,184,0,0,0,0,131,125,16,0,137,194,15,73,85,16,137,85,236,235,7,199,69,236,127,0,0,0,129,125,8,255,15,0,0,127,23,184,0,0,0,0,131,125,8,0,15,73,69,8,137,194,193,226,4,137,85,240,235,7,199,69,240,240,255,0,0,131,125,12,15,127, 20,184,0,0,0,0,131,125,12,0,137,194,15,73,85,12,137,85,244,235,7,199,69,244,15,0,0,0,139,69,240,11,69,244,139,85,236,137,84,36,4,137,4,36,255,85,232,131,196,36,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,151,172,0,0,139,0,139,0,133,192, 15,132,143,0,0,0,141,131,151,172,0,0,139,0,139,0,137,69,232,129,125,16,255,63,0,0,127,23,184,0,0,0,0,131,125,16,0,15,73,69,16,45,0,32,0,0,137,69,236,235,7,199,69,236,255,31,0,0,129,125,8,255,15,0,0,127,23,184,0,0,0,0,131,125,8,0,15,73,69,8,137,194,193, 226,4,137,85,240,235,7,199,69,240,240,255,0,0,131,125,12,15,127,20,184,0,0,0,0,131,125,12,0,137,194,15,73,85,12,137,85,244,235,7,199,69,244,15,0,0,0,139,69,240,11,69,244,139,85,236,137,84,36,4,137,4,36,255,85,232,131,196,36,91,201,195,85,137,229,83,131, 236,36,232,0,0,0,0,91,141,131,251,171,0,0,139,0,139,0,133,192,15,132,137,0,0,0,141,131,251,171,0,0,139,0,139,0,137,69,232,131,125,16,127,127,20,184,0,0,0,0,131,125,16,0,137,194,15,73,85,16,137,85,236,235,7,199,69,236,127,0,0,0,129,125,8,255,15,0,0,127, 23,184,0,0,0,0,131,125,8,0,15,73,69,8,137,194,193,226,4,137,85,240,235,7,199,69,240,240,255,0,0,131,125,12,15,127,20,184,0,0,0,0,131,125,12,0,137,194,15,73,85,12,137,85,244,235,7,199,69,244,15,0,0,0,139,69,240,11,69,244,139,85,236,137,84,36,4,137,4,36, 255,85,232,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,141,131,57,171,0,0,139,0,139,0,133,192,15,132,177,0,0,0,141,131,57,171,0,0,139,0,139,0,137,69,228,131,125,20,127,127,20,184,0,0,0,0,131,125,20,0,137,194,15,73,85,20,137,85,232,235, 7,199,69,232,127,0,0,0,131,125,16,127,127,20,184,0,0,0,0,131,125,16,0,137,194,15,73,85,16,137,85,236,235,7,199,69,236,127,0,0,0,129,125,8,255,15,0,0,127,23,184,0,0,0,0,131,125,8,0,15,73,69,8,137,194,193,226,4,137,85,240,235,7,199,69,240,240,255,0,0,131, 125,12,15,127,20,184,0,0,0,0,131,125,12,0,137,194,15,73,85,12,137,85,244,235,7,199,69,244,15,0,0,0,139,69,240,11,69,244,139,85,232,137,84,36,8,139,85,236,137,84,36,4,137,4,36,255,85,228,131,196,52,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141, 131,115,170,0,0,139,0,139,0,133,192,116,101,141,131,115,170,0,0,139,0,139,0,137,69,236,129,125,12,255,0,0,0,127,20,184,0,0,0,0,131,125,12,0,137,194,15,73,85,12,137,85,240,235,7,199,69,240,255,0,0,0,129,125,8,255,15,0,0,127,20,184,0,0,0,0,131,125,8,0, 137,194,15,73,85,8,137,85,244,235,7,199,69,244,255,15,0,0,139,69,240,137,68,36,4,139,85,244,137,20,36,255,85,236,131,196,36,91,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,8,201,195, 85,137,229,131,236,8,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,24,139,69,8,137,69,240,139,69,12,137,69,244,139,69,16,137,69,232,139,69,20,137,69,236,201,195,85,137,229,131,236,8, 201,195,85,137,229,131,236,8,201,195,85,137,229,131,236,8,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,129,169,0,0,139,0,139,0,133,192,116,23,141,131,129,169,0,0,139,0,139,16,139,69,8,139,64,28,139,0,137,4,36,255,210,131,196,20,91,201,195, 85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,77,169,0,0,139,0,139,0,133,192,116,30,141,131,77,169,0,0,139,0,139,8,139,69,8,139,64,28,139,16,139,69,12,137,68,36,4,137,20,36,255,209,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131, 6,169,0,0,139,0,139,0,133,192,116,32,141,131,6,169,0,0,139,0,139,8,139,69,12,139,16,139,69,8,139,64,28,139,0,137,84,36,4,137,4,36,255,209,131,196,20,91,201,195,85,137,229,131,236,8,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,205,168,0,0,139, 0,139,0,133,192,116,37,141,131,205,168,0,0,139,0,139,8,139,69,8,139,64,28,139,16,139,69,20,137,68,36,8,139,69,16,137,68,36,4,137,20,36,255,209,131,196,20,91,201,195,85,137,229,86,83,131,236,16,232,0,0,0,0,91,141,131,130,168,0,0,139,0,139,0,133,192,116, 46,141,131,130,168,0,0,139,0,139,48,139,69,12,139,16,139,69,8,139,64,28,139,8,139,69,20,137,68,36,12,139,69,16,137,68,36,8,137,84,36,4,137,12,36,255,214,131,196,16,91,94,201,195,85,137,229,131,236,24,139,69,8,139,64,28,139,85,8,137,68,36,4,137,20,36, 232,161,22,254,255,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,209,231,0,0,139,0,137,4,36,232,33,18,254,255,137,69,244,139,85,244,139,69,8,137,66,28,139,85,244,139,69,8,137,68,36,4,137,20,36,232,132,21,254,255,139,69,244,131,196,36,91,201, 195,85,137,229,87,86,83,131,236,44,232,0,0,0,0,91,141,179,145,255,255,255,141,187,174,255,255,255,141,131,200,151,0,0,137,4,36,232,155,220,253,255,199,68,36,24,0,0,0,0,199,68,36,20,7,0,0,0,199,68,36,16,0,0,0,0,199,68,36,12,32,0,0,0,137,116,36,8,137,124, 36,4,137,4,36,232,79,209,253,255,137,194,141,131,139,231,0,0,137,16,141,147,58,254,255,255,141,131,139,231,0,0,139,0,137,84,36,4,137,4,36,232,194,216,253,255,141,147,114,254,255,255,141,131,139,231,0,0,139,0,137,84,36,4,137,4,36,232,202,216,253,255,141, 147,177,254,255,255,141,131,139,231,0,0,139,0,137,84,36,4,137,4,36,232,193,216,253,255,141,147,242,254,255,255,141,131,139,231,0,0,139,0,137,84,36,4,137,4,36,232,133,216,253,255,141,147,250,254,255,255,141,131,139,231,0,0,139,0,137,84,36,4,137,4,36,232, 158,216,253,255,141,147,64,255,255,255,141,131,139,231,0,0,139,0,137,84,36,4,137,4,36,232,149,216,253,255,131,196,44,91,94,95,201,195,85,137,229,131,236,40,139,69,8,137,4,36,232,172,219,253,255,139,64,4,137,69,244,139,69,244,201,195,85,137,229,83,131, 236,20,232,0,0,0,0,91,141,131,94,183,0,0,139,16,141,131,102,166,0,0,139,0,137,16,141,131,250,163,0,0,139,0,199,0,0,0,0,0,141,131,246,163,0,0,139,0,199,0,0,0,0,0,141,131,82,166,0,0,139,0,199,0,64,0,0,0,141,131,18,166,0,0,139,0,199,0,0,0,0,0,141,131,70, 166,0,0,139,0,199,0,0,0,0,0,141,131,30,166,0,0,139,0,199,0,0,0,0,0,141,131,50,166,0,0,139,0,199,0,0,0,0,0,141,131,10,166,0,0,139,0,199,0,0,0,0,0,141,131,138,164,0,0,139,0,199,0,0,0,0,0,141,131,46,166,0,0,139,0,199,0,1,0,0,0,141,131,42,166,0,0,139,0,199, 0,0,0,0,0,141,131,186,166,0,0,139,0,199,0,0,0,0,0,141,131,182,166,0,0,139,0,199,0,0,0,0,0,141,131,246,165,0,0,139,0,141,147,206,150,0,0,242,15,16,2,242,15,17,0,232,190,24,254,255,232,232,253,255,255,199,4,36,9,0,0,0,232,137,72,254,255,141,131,38,166, 0,0,139,0,199,0,0,0,0,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141,131,17,165,0,0,139,0,139,0,137,4,36,232,19,183,254,255,141,131,17,165,0,0,139,0,199,0,0,0,0,0,131,196,20,91,201,195,85,137,229,83,131,236,20,232,0,0,0,0,91,141, 131,222,164,0,0,139,0,139,16,199,68,36,8,0,0,0,0,139,69,8,137,68,36,4,137,20,36,232,220,180,254,255,137,194,141,131,222,164,0,0,139,0,137,16,131,196,20,91,201,195,85,137,229,83,131,236,116,232,0,0,0,0,91,141,147,238,228,0,0,139,69,20,137,2,199,69,200, 0,0,0,0,139,69,200,137,69,232,139,69,8,137,69,216,139,69,12,137,69,184,199,68,36,40,1,0,0,0,199,68,36,36,255,255,255,255,139,69,16,137,68,36,32,141,69,184,137,68,36,28,199,68,36,24,1,0,0,0,141,69,200,137,68,36,20,199,68,36,16,1,0,0,0,141,69,216,137,68, 36,12,199,68,36,8,1,0,0,0,141,69,232,137,68,36,4,199,4,36,1,0,0,0,232,169,47,254,255,199,4,36,2,0,0,0,232,180,34,254,255,232,163,54,254,255,184,0,0,0,0,131,196,116,91,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,141,131,218,163,0,0,139,0,139,0,193, 224,8,137,69,244,141,131,226,163,0,0,139,0,139,0,193,224,8,137,69,240,184,255,255,255,255,131,248,255,116,43,186,255,255,255,255,141,131,206,161,0,0,139,0,139,8,137,84,36,12,139,69,244,137,68,36,8,139,69,8,137,68,36,4,137,12,36,232,18,154,0,0,235,32, 141,131,206,161,0,0,139,0,139,16,139,69,244,137,68,36,8,139,69,8,137,68,36,4,137,20,36,232,7,1,0,0,184,255,255,255,255,131,248,255,116,44,186,255,255,255,255,141,131,202,161,0,0,139,0,139,8,137,84,36,12,139,69,240,137,68,36,8,199,68,36,4,0,0,0,0,137, 12,36,232,200,153,0,0,235,33,141,131,202,161,0,0,139,0,139,16,139,69,240,137,68,36,8,199,68,36,4,0,0,0,0,137,20,36,232,134,0,0,0,141,131,202,163,0,0,139,0,242,15,16,8,141,131,194,163,0,0,139,0,242,15,16,0,242,15,88,193,242,15,17,4,36,232,101,34,254,255, 184,255,255,255,255,131,248,255,116,43,186,255,255,255,255,141,131,202,161,0,0,139,0,139,8,137,84,36,12,139,69,240,137,68,36,8,137,76,36,4,139,69,12,137,4,36,232,64,153,0,0,235,32,141,131,202,161,0,0,139,0,139,16,139,69,240,137,68,36,8,137,84,36,4,139, 69,12,137,4,36,232,53,0,0,0,184,0,0,0,0,131,196,36,91,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68,36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,247,152,0,0,201,195,85,137,229,131,236,24,184,255,255,255,255,137,68, 36,12,139,69,16,137,68,36,8,139,69,12,137,68,36,4,139,69,8,137,4,36,232,193,152,0,0,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,69,244,0,0,0,0,233,119,1,0,0,199,69,240,0,0,0,0,141,131,27,160,0,0,139,0,139,0,137,69,232,235,83,199,69,236,0,0,0, 0,139,69,232,137,69,228,235,46,139,69,8,15,183,0,152,243,15,42,200,141,131,163,152,0,0,243,15,16,0,243,15,89,193,139,69,228,243,15,17,0,131,69,8,2,255,69,236,129,69,228,0,1,0,0,141,131,39,162,0,0,139,0,139,0,57,69,236,124,195,255,69,240,131,69,232,4, 131,125,240,63,126,167,184,255,255,255,255,131,248,255,116,56,185,255,255,255,255,141,131,47,162,0,0,139,0,139,0,193,224,8,137,194,141,131,23,160,0,0,139,0,139,0,137,76,36,12,137,84,36,8,199,68,36,4,0,0,0,0,137,4,36,232,3,152,0,0,235,45,141,131,47,162, 0,0,139,0,139,0,193,224,8,137,194,141,131,23,160,0,0,139,0,139,0,137,84,36,8,199,68,36,4,0,0,0,0,137,4,36,232,181,254,255,255,141,131,23,162,0,0,139,0,242,15,16,8,141,131,15,162,0,0,139,0,242,15,16,0,242,15,88,193,242,15,17,4,36,232,148,32,254,255,199, 69,240,0,0,0,0,141,131,23,160,0,0,139,0,139,0,137,69,232,235,84,199,69,236,0,0,0,0,139,69,232,137,69,228,235,47,139,69,228,243,15,16,8,141,131,159,152,0,0,243,15,16,0,243,15,89,193,243,15,44,192,137,194,139,69,12,102,137,16,131,69,12,2,255,69,236,129, 69,228,0,1,0,0,141,131,47,162,0,0,139,0,139,0,57,69,236,124,194,255,69,240,131,69,232,4,131,125,240,63,126,166,255,69,244,141,131,151,226,0,0,139,0,57,69,244,15,140,120,254,255,255,184,0,0,0,0,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0, 0,91,199,69,244,0,0,0,0,233,74,1,0,0,199,69,240,0,0,0,0,141,131,111,158,0,0,139,0,139,0,137,69,232,235,61,199,69,236,0,0,0,0,139,69,232,137,69,228,235,24,139,69,8,139,16,139,69,228,137,16,131,69,8,4,255,69,236,129,69,228,0,1,0,0,141,131,123,160,0,0,139, 0,139,0,57,69,236,124,217,255,69,240,131,69,232,4,131,125,240,63,126,189,184,255,255,255,255,131,248,255,116,56,185,255,255,255,255,141,131,131,160,0,0,139,0,139,0,193,224,8,137,194,141,131,107,158,0,0,139,0,139,0,137,76,36,12,137,84,36,8,199,68,36,4, 0,0,0,0,137,4,36,232,109,150,0,0,235,45,141,131,131,160,0,0,139,0,139,0,193,224,8,137,194,141,131,107,158,0,0,139,0,139,0,137,84,36,8,199,68,36,4,0,0,0,0,137,4,36,232,31,253,255,255,141,131,107,160,0,0,139,0,242,15,16,8,141,131,99,160,0,0,139,0,242,15, 16,0,242,15,88,193,242,15,17,4,36,232,254,30,254,255,199,69,240,0,0,0,0,141,131,107,158,0,0,139,0,139,0,137,69,232,235,61,199,69,236,0,0,0,0,139,69,232,137,69,228,235,24,139,69,228,139,16,139,69,12,137,16,131,69,12,4,255,69,236,129,69,228,0,1,0,0,141, 131,131,160,0,0,139,0,139,0,57,69,236,124,217,255,69,240,131,69,232,4,131,125,240,63,126,189,255,69,244,141,131,235,224,0,0,139,0,57,69,244,15,140,165,254,255,255,184,0,0,0,0,131,196,52,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,199,69,244,0, 0,0,0,233,90,1,0,0,199,69,240,0,0,0,0,141,131,240,156,0,0,139,0,139,0,137,69,232,235,69,199,69,236,0,0,0,0,139,69,232,137,69,228,235,32,139,69,8,242,15,16,0,242,15,90,192,139,69,228,243,15,17,0,131,69,8,8,255,69,236,129,69,228,0,1,0,0,141,131,252,158, 0,0,139,0,139,0,57,69,236,124,209,255,69,240,131,69,232,4,131,125,240,63,126,181,184,255,255,255,255,131,248,255,116,56,185,255,255,255,255,141,131,4,159,0,0,139,0,139,0,193,224,8,137,194,141,131,236,156,0,0,139,0,139,0,137,76,36,12,137,84,36,8,199,68, 36,4,0,0,0,0,137,4,36,232,230,148,0,0,235,45,141,131,4,159,0,0,139,0,139,0,193,224,8,137,194,141,131,236,156,0,0,139,0,139,0,137,84,36,8,199,68,36,4,0,0,0,0,137,4,36,232,152,251,255,255,141,131,236,158,0,0,139,0,242,15,16,8,141,131,228,158,0,0,139,0, 242,15,16,0,242,15,88,193,242,15,17,4,36,232,119,29,254,255,199,69,240,0,0,0,0,141,131,236,156,0,0,139,0,139,0,137,69,232,235,69,199,69,236,0,0,0,0,139,69,232,137,69,228,235,32,139,69,228,243,15,16,0,243,15,90,192,139,69,12,242,15,17,0,131,69,12,8,255, 69,236,129,69,228,0,1,0,0,141,131,4,159,0,0,139,0,139,0,57,69,236,124,209,255,69,240,131,69,232,4,131,125,240,63,126,181,255,69,244,141,131,108,223,0,0,139,0,57,69,244,15,140,149,254,255,255,184,0,0,0,0,131,196,52,91,201,195,85,137,229,131,236,8,232, 0,0,0,0,89,141,129,2,223,0,0,199,0,0,0,0,0,141,145,254,222,0,0,141,129,254,221,0,0,137,2,184,32,0,0,0,201,195,85,137,229,131,236,8,232,0,0,0,0,89,141,129,209,222,0,0,139,0,199,0,1,0,0,0,141,129,209,222,0,0,139,16,139,69,8,137,66,4,141,129,209,222,0,0, 139,0,141,80,8,141,129,209,222,0,0,137,16,141,129,213,222,0,0,139,0,141,80,1,141,129,213,222,0,0,137,16,201,195,85,137,229,83,131,236,36,232,0,0,0,0,91,139,69,8,137,4,36,232,115,210,253,255,137,69,244,141,131,128,222,0,0,139,0,199,0,2,0,0,0,141,131,128, 222,0,0,139,16,139,69,244,137,66,4,141,131,128,222,0,0,139,0,141,80,8,141,131,128,222,0,0,137,16,141,131,132,222,0,0,139,0,141,80,1,141,131,132,222,0,0,137,16,131,196,36,91,201,195,85,137,229,83,131,236,52,232,0,0,0,0,91,139,69,8,137,4,36,232,83,246, 255,255,137,69,244,131,125,244,0,117,9,199,69,228,255,255,255,255,235,52,141,131,33,222,0,0,139,16,141,131,29,221,0,0,137,68,36,12,137,84,36,8,141,131,177,155,0,0,139,0,137,68,36,4,139,69,244,137,4,36,232,161,15,254,255,199,69,228,0,0,0,0,139,69,228, 131,196,52,91,201,195,85,137,229,86,83,131,236,48,232,0,0,0,0,91,139,69,8,137,4,36,232,235,245,255,255,137,69,244,131,125,244,0,117,9,199,69,228,255,255,255,255,235,57,141,131,185,221,0,0,139,48,139,69,12,137,4,36,232,131,209,253,255,137,194,141,131, 181,220,0,0,137,68,36,12,137,116,36,8,137,84,36,4,139,69,244,137,4,36,232,145,214,253,255,199,69,228,0,0,0,0,139,69,228,131,196,48,91,94,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,66,209,253,255,137,4,36,232,50,244,255,255,201,195,85,137,229, 131,236,24,139,69,8,137,4,36,232,191,6,254,255,201,195,85,137,229,131,236,56,139,69,8,137,4,36,232,87,245,255,255,137,69,244,131,125,244,0,116,35,139,69,12,137,4,36,232,0,209,253,255,139,85,244,137,68,36,4,137,20,36,232,162,14,254,255,199,69,228,0,0, 0,0,235,7,199,69,228,255,255,255,255,139,69,228,201,195,85,137,229,131,236,56,139,69,8,137,4,36,232,14,245,255,255,137,69,244,131,125,244,0,116,27,139,85,244,139,69,12,137,68,36,4,137,20,36,232,35,14,254,255,199,69,228,0,0,0,0,235,7,199,69,228,255,255, 255,255,139,69,228,201,195,85,137,229,131,236,56,139,69,8,137,4,36,232,205,244,255,255,137,69,244,131,125,244,0,116,20,139,69,244,137,4,36,232,209,13,254,255,199,69,228,0,0,0,0,235,7,199,69,228,255,255,255,255,139,69,228,201,195,85,137,229,131,236,8, 184,64,0,0,0,201,195,85,137,229,131,236,24,139,69,8,137,4,36,232,134,244,255,255,133,192,15,149,192,15,182,192,201,195,85,137,229,131,236,40,131,125,8,0,121,9,199,69,244,255,255,255,255,235,89,131,125,12,0,120,6,131,125,12,127,126,9,199,69,244,255,255, 255,255,235,68,131,125,16,0,120,6,131,125,16,127,126,9,199,69,244,255,255,255,255,235,47,139,85,8,131,226,15,139,69,8,137,193,193,249,4,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,137,12,36,232,28,124,255,255,199,69,244,0,0,0,0,139,69,244, 201,195,85,137,229,131,236,40,131,125,8,0,121,9,199,69,244,255,255,255,255,235,89,131,125,12,0,120,6,131,125,12,127,126,9,199,69,244,255,255,255,255,235,68,131,125,16,0,120,6,131,125,16,127,126,9,199,69,244,255,255,255,255,235,47,139,85,8,131,226,15, 139,69,8,137,193,193,249,4,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,137,12,36,232,160,127,255,255,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,131,236,40,131,125,8,0,121,9,199,69,244,255,255,255,255,235,61,131,125,12,0,120,6,131,125, 12,127,126,9,199,69,244,255,255,255,255,235,40,139,85,8,131,226,15,139,69,8,137,193,193,249,4,139,69,12,137,68,36,8,137,84,36,4,137,12,36,232,46,130,255,255,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,131,236,40,131,125,8,0,121,9,199,69,244,255, 255,255,255,235,71,129,125,12,0,224,255,255,124,9,129,125,12,255,31,0,0,126,9,199,69,244,255,255,255,255,235,44,139,85,12,129,194,0,32,0,0,139,77,8,131,225,15,139,69,8,193,248,4,137,84,36,8,137,76,36,4,137,4,36,232,149,132,255,255,199,69,244,0,0,0,0, 139,69,244,201,195,85,137,229,131,236,40,131,125,8,0,121,9,199,69,244,255,255,255,255,235,61,131,125,12,0,120,6,131,125,12,127,126,9,199,69,244,255,255,255,255,235,40,139,85,8,131,226,15,139,69,8,137,193,193,249,4,139,69,12,137,68,36,8,137,84,36,4,137, 12,36,232,3,135,255,255,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,131,236,40,131,125,8,0,121,9,199,69,244,255,255,255,255,235,89,131,125,12,0,120,6,131,125,12,127,126,9,199,69,244,255,255,255,255,235,68,131,125,16,0,120,6,131,125,16,127,126,9, 199,69,244,255,255,255,255,235,47,139,85,8,131,226,15,139,69,8,137,193,193,249,4,139,69,16,137,68,36,12,139,69,12,137,68,36,8,137,84,36,4,137,12,36,232,187,137,255,255,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,131,236,40,131,125,8,0,120,9,129, 125,8,255,15,0,0,126,9,199,69,244,255,255,255,255,235,49,131,125,12,0,120,9,129,125,12,255,0,0,0,126,9,199,69,244,255,255,255,255,235,25,139,69,12,137,68,36,4,139,69,8,137,4,36,232,54,118,255,255,199,69,244,0,0,0,0,139,69,244,201,195,85,137,229,131,236, 40,131,125,8,0,120,9,129,125,8,255,15,0,0,126,9,199,69,244,255,255,255,255,235,46,131,125,12,0,120,6,131,125,12,127,126,9,199,69,244,255,255,255,255,235,25,139,69,12,137,68,36,4,139,69,8,137,4,36,232,97,118,255,255,199,69,244,0,0,0,0,139,69,244,201,195, 85,137,229,131,236,40,131,125,8,0,120,9,129,125,8,255,15,0,0,126,9,199,69,244,255,255,255,255,235,49,131,125,12,0,120,9,129,125,12,255,0,0,0,126,9,199,69,244,255,255,255,255,235,25,139,69,12,137,68,36,4,139,69,8,137,4,36,232,63,142,255,255,199,69,244, 0,0,0,0,139,69,244,201,195,85,137,229,86,131,236,20,139,69,12,137,4,36,232,198,204,253,255,137,198,139,69,8,137,4,36,232,185,204,253,255,137,116,36,8,137,68,36,4,199,4,36,0,0,0,0,232,224,188,253,255,131,196,20,94,201,195,85,137,229,131,236,24,139,69, 8,137,4,36,232,38,2,254,255,201,195,85,137,229,131,236,40,139,69,8,137,4,36,232,132,8,254,255,232,226,144,249,255,137,69,244,139,69,8,137,4,36,232,228,8,254,255,139,69,244,201,195,43,126,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116,115, 32,105,103,110,111,114,101,100,0,43,126,0,115,105,103,98,105,110,111,112,115,0,45,126,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116,115,32,105,103,110,111,114,101,100,0,45,126,0,42,126,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110, 116,115,32,105,103,110,111,114,101,100,0,42,126,0,47,126,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116,115,32,105,103,110,111,114,101,100,0,47,126,0,109,97,120,126,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116,115,32,105,103, 110,111,114,101,100,0,109,97,120,126,0,109,105,110,126,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116,115,32,105,103,110,111,114,101,100,0,109,105,110,126,0,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,114,101,100,114,97,119,0, 116,97,98,119,114,105,116,101,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97,121,0,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,119,114,105,116,101,126,0,116,97,98,119,114,105,116,101,126,0, 115,116,111,112,0,115,116,97,114,116,0,116,97,98,112,108,97,121,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97,121,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,112,108,97,121,126,0,116,97,98, 112,108,97,121,126,0,0,0,0,116,97,98,114,101,97,100,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97,121,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,114,101,97,100,126,0,116,97,98,114,101,97, 100,126,0,116,97,98,114,101,97,100,52,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97,121,0,0,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,114,101,97,100,52,126,0,116,97,98,114,101,97,100,52, 126,0,116,97,98,111,115,99,52,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97,121,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,111,115,99,52,126,0,0,37,115,58,32,110,117,109,98,101,114,32,111, 102,32,112,111,105,110,116,115,32,40,37,100,41,32,110,111,116,32,97,32,112,111,119,101,114,32,111,102,32,50,32,112,108,117,115,32,116,104,114,101,101,0,116,97,98,111,115,99,52,126,0,116,97,98,115,101,110,100,95,100,115,112,0,116,97,98,115,101,110,100, 126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97,121,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,115,101,110,100,126,0,116,97,98,115,101,110,100,126,0,0,0,37,115,58,32,98,97,100,32,116,101,109, 112,108,97,116,101,32,102,111,114,32,116,97,98,114,101,99,101,105,118,101,126,0,116,97,98,114,101,99,101,105,118,101,126,0,37,115,58,32,110,111,32,115,117,99,104,32,97,114,114,97,121,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111, 114,32,116,97,98,114,101,97,100,0,116,97,98,114,101,97,100,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101,32,102,111,114,32,116,97,98,114,101,97,100,52,0,116,97,98,114,101,97,100,52,0,37,115,58,32,98,97,100,32,116,101,109,112,108,97,116,101, 32,102,111,114,32,116,97,98,119,114,105,116,101,0,116,97,98,119,114,105,116,101,0,115,105,103,126,0,108,105,110,101,126,0,118,108,105,110,101,126,0,115,110,97,112,115,104,111,116,126,0,118,115,110,97,112,115,104,111,116,126,0,101,110,118,58,32,99,111, 117,108,100,110,39,116,32,97,108,108,111,99,97,116,101,32,98,117,102,102,101,114,0,101,110,118,126,58,32,111,117,116,32,111,102,32,109,101,109,111,114,121,0,101,110,118,126,0,116,104,114,101,115,104,111,108,100,126,0,100,97,99,126,58,32,98,97,100,32, 118,101,99,116,111,114,32,115,105,122,101,0,100,97,99,126,0,97,100,99,126,95,100,97,99,126,0,97,100,99,126,58,32,98,97,100,32,118,101,99,116,111,114,32,115,105,122,101,0,97,100,99,126,0,0,100,101,108,119,114,105,116,101,126,0,0,0,100,101,108,114,101, 97,100,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,100,101,108,119,114,105,116,101,126,0,100,101,108,114,101,97,100,126,0,118,100,126,0,118,100,126,58,32,37,115,58,32,110,111,32,115,117,99,104,32,100,101,108,119,114,105,116,101,126,0,102,102, 116,126,0,105,102,102,116,126,0,102,102,116,58,32,109,105,110,105,109,117,109,32,52,32,112,111,105,110,116,115,0,114,102,102,116,126,0,114,105,102,102,116,126,0,102,114,97,109,112,58,32,109,105,110,105,109,117,109,32,52,32,112,111,105,110,116,115,0,102, 114,97,109,112,126,0,0,0,0,108,111,97,100,95,114,101,103,105,115,116,101,114,115,58,105,108,108,101,103,97,108,32,116,114,97,110,115,102,111,114,109,32,100,105,114,101,99,116,105,111,110,10,0,108,111,97,100,95,114,101,103,105,115,116,101,114,115,58,105, 108,108,101,103,97,108,32,105,110,112,117,116,32,102,111,114,109,10,0,0,108,111,97,100,95,114,101,103,105,115,116,101,114,115,58,105,108,108,101,103,97,108,32,105,110,112,117,116,32,115,99,97,108,101,10,0,114,101,97,108,61,48,32,97,110,100,32,105,109, 97,103,32,62,32,48,10,0,114,101,97,108,61,48,32,97,110,100,32,105,109,97,103,32,60,32,48,10,0,114,101,97,108,61,48,32,97,110,100,32,105,109,97,103,61,48,10,0,0,0,0,115,116,111,114,101,95,114,101,103,105,115,116,101,114,115,58,105,108,108,101,103,97,108, 32,111,117,116,112,117,116,32,102,111,114,109,10,0,0,0,0,115,116,111,114,101,95,114,101,103,105,115,116,101,114,115,58,105,108,108,101,103,97,108,32,111,117,116,112,117,116,32,115,99,97,108,101,10,0,104,105,112,126,0,108,111,112,126,0,102,116,50,0,98, 112,126,0,98,105,113,117,97,100,126,0,115,97,109,112,104,111,108,100,126,0,114,101,115,101,116,0,114,112,111,108,101,126,0,114,122,101,114,111,126,0,114,122,101,114,111,95,114,101,118,126,0,99,112,111,108,101,126,0,99,122,101,114,111,126,0,99,122,101, 114,111,95,114,101,118,126,0,0,0,115,105,103,115,101,110,100,32,37,115,58,32,117,110,101,120,112,101,99,116,101,100,32,118,101,99,116,111,114,32,115,105,122,101,0,115,101,110,100,126,0,115,126,0,100,115,112,0,114,101,99,101,105,118,101,126,32,37,115, 58,32,118,101,99,116,111,114,32,115,105,122,101,32,109,105,115,109,97,116,99,104,0,114,101,99,101,105,118,101,126,32,37,115,58,32,110,111,32,109,97,116,99,104,105,110,103,32,115,101,110,100,0,114,101,99,101,105,118,101,126,0,114,126,0,115,101,116,0,115, 105,103,99,97,116,99,104,32,37,115,58,32,117,110,101,120,112,101,99,116,101,100,32,118,101,99,116,111,114,32,115,105,122,101,0,99,97,116,99,104,126,0,116,104,114,111,119,126,0,0,0,116,104,114,111,119,126,32,37,115,58,32,118,101,99,116,111,114,32,115, 105,122,101,32,109,105,115,109,97,116,99,104,0,116,104,114,111,119,126,32,37,115,58,32,110,111,32,109,97,116,99,104,105,110,103,32,99,97,116,99,104,0,99,108,105,112,126,0,114,115,113,114,116,126,0,113,56,95,114,115,113,114,116,126,0,115,113,114,116,126, 0,113,56,95,115,113,114,116,126,0,119,114,97,112,126,0,109,116,111,102,126,0,102,116,111,109,126,0,100,98,116,111,114,109,115,126,0,114,109,115,116,111,100,98,126,0,100,98,116,111,112,111,119,126,0,112,111,119,116,111,100,98,126,0,112,111,119,126,0,101, 120,112,126,0,108,111,103,126,0,97,98,115,126,0,97,99,111,117,115,116,105,99,115,126,46,112,100,0,37,115,58,0,37,45,56,46,53,103,0,112,114,105,110,116,126,0,98,97,110,103,126,0,0,102,116,49,0,115,105,103,110,97,108,0,112,104,97,115,111,114,126,0,0,99, 111,115,126,58,32,117,110,101,120,112,101,99,116,101,100,32,109,97,99,104,105,110,101,32,97,108,105,103,110,109,101,110,116,0,99,111,115,126,0,111,115,99,126,0,0,0,118,99,102,126,0,110,111,105,115,101,126,0,110,111,116,104,105,110,103,32,116,111,32,98, 101,32,100,111,110,101,0,98,97,100,32,100,111,119,110,115,97,109,112,108,105,110,103,32,102,97,99,116,111,114,0,98,97,100,32,117,112,115,97,109,112,108,105,110,103,32,102,97,99,116,111,114,0,46,115,110,100,0,100,110,115,46,0,82,73,70,70,0,87,65,86,69, 0,70,79,82,77,0,65,73,70,70,0,102,109,116,32,0,0,67,79,77,77,0,83,83,78,68,0,0,115,107,105,112,0,110,102,114,97,109,101,115,0,98,121,116,101,115,0,110,111,114,109,97,108,105,122,101,0,119,97,118,101,0,110,101,120,116,115,116,101,112,0,97,105,102,102, 0,98,105,103,0,108,105,116,116,108,101,0,0,0,114,97,116,101,0,46,97,105,102,0,46,65,73,70,0,46,97,105,102,102,0,46,65,73,70,70,0,46,83,78,68,0,46,97,117,0,46,65,85,0,65,73,70,70,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,102,105,108, 101,32,102,111,114,109,97,116,32,117,110,97,118,97,105,108,97,98,108,101,0,87,65,86,69,32,102,105,108,101,32,102,111,114,99,101,100,32,116,111,32,108,105,116,116,108,101,32,101,110,100,105,97,110,0,0,0,65,73,70,70,32,102,105,108,101,32,102,111,114,99, 101,100,32,116,111,32,98,105,103,32,101,110,100,105,97,110,0,80,100,32,0,46,119,97,118,0,115,111,117,110,100,102,105,108,101,114,95,119,114,105,116,101,58,32,37,108,100,32,111,117,116,32,111,102,32,37,108,100,32,98,121,116,101,115,32,119,114,105,116, 116,101,110,0,37,115,58,32,37,115,0,114,97,119,0,0,0,0,109,97,120,115,105,122,101,0,37,115,58,32,110,111,32,115,117,99,104,32,116,97,98,108,101,0,0,115,111,117,110,100,102,105,108,101,114,95,114,101,97,100,58,32,97,114,114,97,121,115,32,104,97,118,101, 32,100,105,102,102,101,114,101,110,116,32,108,101,110,103,116,104,115,59,32,114,101,115,105,122,105,110,103,46,46,46,0,117,110,107,110,111,119,110,32,111,114,32,98,97,100,32,104,101,97,100,101,114,32,102,111,114,109,97,116,0,115,111,117,110,100,102,105, 108,101,114,95,114,101,97,100,58,32,37,115,58,32,37,115,0,108,115,101,101,107,32,102,97,105,108,101,100,0,0,0,115,111,117,110,100,102,105,108,101,114,95,114,101,97,100,58,32,116,114,117,110,99,97,116,101,100,32,116,111,32,37,108,100,32,101,108,101,109, 101,110,116,115,0,114,101,115,105,122,101,32,102,97,105,108,101,100,0,114,98,0,117,115,97,103,101,58,32,114,101,97,100,32,91,102,108,97,103,115,93,32,102,105,108,101,110,97,109,101,32,116,97,98,108,101,110,97,109,101,46,46,46,0,0,0,102,108,97,103,115, 58,32,45,115,107,105,112,32,60,110,62,32,45,110,102,114,97,109,101,115,32,60,110,62,32,45,114,101,115,105,122,101,32,45,109,97,120,115,105,122,101,32,60,110,62,32,46,46,46,0,0,45,114,97,119,32,60,104,101,97,100,101,114,98,121,116,101,115,62,32,60,99, 104,97,110,110,101,108,115,62,32,60,98,121,116,101,115,112,101,114,115,97,109,112,62,32,60,101,110,100,105,97,110,32,40,98,44,32,108,44,32,111,114,32,110,41,62,46,0,115,111,117,110,100,102,105,108,101,114,95,119,114,105,116,101,58,32,110,111,32,115,97, 109,112,108,101,115,32,97,116,32,111,110,115,101,116,32,37,108,100,0,37,115,58,32,37,115,10,0,0,0,37,115,58,32,110,111,114,109,97,108,105,122,105,110,103,32,109,97,120,32,97,109,112,108,105,116,117,100,101,32,37,102,32,116,111,32,49,0,37,115,58,32,98, 105,103,103,101,115,116,32,97,109,112,108,105,116,117,100,101,32,61,32,37,102,0,0,0,0,117,115,97,103,101,58,32,119,114,105,116,101,32,91,102,108,97,103,115,93,32,102,105,108,101,110,97,109,101,32,116,97,98,108,101,110,97,109,101,46,46,46,0,0,102,108, 97,103,115,58,32,45,115,107,105,112,32,60,110,62,32,45,110,102,114,97,109,101,115,32,60,110,62,32,45,98,121,116,101,115,32,60,110,62,32,45,119,97,118,101,32,45,97,105,102,102,32,45,110,101,120,116,115,116,101,112,32,46,46,46,0,45,98,105,103,32,45,108, 105,116,116,108,101,32,45,110,111,114,109,97,108,105,122,101,0,0,40,100,101,102,97,117,108,116,115,32,116,111,32,97,32,49,54,45,98,105,116,32,119,97,118,101,32,102,105,108,101,41,46,0,115,111,117,110,100,102,105,108,101,114,0,0,119,114,105,116,101,0, 0,0,0,100,115,112,58,32,37,115,58,32,37,115,0,0,114,101,97,100,115,102,58,32,115,116,97,114,116,32,114,101,113,117,101,115,116,101,100,32,119,105,116,104,32,110,111,32,112,114,105,111,114,32,39,111,112,101,110,39,0,0,0,0,101,110,100,105,97,110,110,101, 115,115,32,110,101,105,116,104,101,114,32,39,98,39,32,110,111,114,32,39,108,39,0,115,116,97,116,101,32,37,100,0,102,105,102,111,32,104,101,97,100,32,37,100,0,102,105,102,111,32,116,97,105,108,32,37,100,0,102,105,102,111,32,115,105,122,101,32,37,100,0, 102,100,32,37,100,0,101,111,102,32,37,100,0,114,101,97,100,115,102,95,102,114,101,101,58,32,106,111,105,110,32,102,97,105,108,101,100,0,114,101,97,100,115,102,126,0,0,0,0,111,112,101,110,0,0,0,0,119,114,105,116,101,115,102,58,32,115,116,97,114,116,32, 114,101,113,117,101,115,116,101,100,32,119,105,116,104,32,110,111,32,112,114,105,111,114,32,39,111,112,101,110,39,0,0,0,119,114,105,116,101,115,102,126,58,32,117,115,97,103,101,58,32,111,112,101,110,32,91,45,98,121,116,101,115,32,91,50,51,52,93,93,32, 91,45,119,97,118,101,44,45,110,101,120,116,115,116,101,112,44,45,97,105,102,102,93,32,46,46,46,0,0,0,0,46,46,46,32,91,45,98,105,103,44,45,108,105,116,116,108,101,93,32,91,45,114,97,116,101,32,35,35,35,35,93,32,102,105,108,101,110,97,109,101,0,0,0,0,110, 111,114,109,97,108,105,122,101,47,111,110,115,101,116,47,110,102,114,97,109,101,115,32,97,114,103,117,109,101,110,116,32,116,111,32,119,114,105,116,101,115,102,126,58,32,105,103,110,111,114,101,100,0,0,0,101,120,116,114,97,32,97,114,103,117,109,101,110, 116,40,115,41,32,116,111,32,119,114,105,116,101,115,102,126,58,32,105,103,110,111,114,101,100,0,119,114,105,116,101,115,102,95,102,114,101,101,58,32,106,111,105,110,32,102,97,105,108,101,100,0,119,114,105,116,101,115,102,126,0,0,0,98,108,111,99,107,126, 58,32,118,101,99,116,111,114,32,115,105,122,101,32,110,111,116,32,97,32,112,111,119,101,114,32,111,102,32,50,0,0,0,0,98,108,111,99,107,126,58,32,111,118,101,114,108,97,112,32,110,111,116,32,97,32,112,111,119,101,114,32,111,102,32,50,0,0,0,0,98,108,111, 99,107,126,58,32,100,111,119,110,115,97,109,112,108,105,110,103,32,110,111,116,32,97,32,112,111,119,101,114,32,111,102,32,50,0,0,0,98,108,111,99,107,126,58,32,117,112,115,97,109,112,108,105,110,103,32,110,111,116,32,97,32,112,111,119,101,114,32,111,102, 32,50,0,98,97,110,103,32,116,111,32,98,108,111,99,107,126,32,111,114,32,111,110,45,115,116,97,116,101,32,115,119,105,116,99,104,126,32,104,97,115,32,110,111,32,101,102,102,101,99,116,0,98,108,111,99,107,126,0,115,119,105,116,99,104,126,0,115,105,103, 110,97,108,95,102,114,101,101,32,51,0,115,105,103,110,97,108,95,102,114,101,101,32,52,0,102,114,101,101,32,37,108,120,58,32,37,100,0,115,105,103,110,97,108,95,102,114,101,101,0,115,105,103,110,97,108,95,102,114,101,101,32,50,0,115,105,103,110,97,108, 32,98,117,102,102,101,114,32,116,111,111,32,108,97,114,103,101,0,110,101,119,32,37,108,120,58,32,37,100,0,115,105,103,110,97,108,95,115,101,116,98,111,114,114,111,119,101,100,0,115,105,103,110,97,108,95,115,101,116,98,111,114,114,111,119,101,100,32,50, 0,117,103,101,110,95,115,116,97,114,116,0,117,103,101,110,95,115,116,97,114,116,95,103,114,97,112,104,46,46,46,0,37,115,32,45,62,32,37,115,58,32,37,100,45,62,37,100,0,0,115,105,103,110,97,108,32,111,117,116,108,101,116,32,99,111,110,110,101,99,116,32, 116,111,32,110,111,110,115,105,103,110,97,108,32,105,110,108,101,116,32,40,105,103,110,111,114,101,100,41,0,0,117,103,101,110,95,99,111,110,110,101,99,116,32,37,115,32,37,115,32,37,100,32,37,100,32,40,37,100,32,37,100,41,0,100,111,105,116,32,37,115,32, 37,100,32,37,100,0,112,117,116,32,37,115,32,37,100,0,112,117,116,32,37,115,32,37,100,32,40,37,108,120,41,0,112,117,116,32,37,115,32,37,100,32,40,37,108,120,32,37,108,120,41,0,112,117,116,32,37,115,32,37,100,32,40,37,108,120,32,37,108,120,32,37,108,120, 32,46,46,46,41,0,0,0,0,37,115,58,32,105,110,99,111,109,112,97,116,105,98,108,101,32,115,105,103,110,97,108,32,105,110,112,117,116,115,0,117,103,101,110,95,100,111,110,101,95,103,114,97,112,104,46,46,46,0,117,103,101,110,58,32,37,115,0,0,46,46,46,32,111, 117,116,32,37,100,32,116,111,32,37,115,44,32,105,110,100,101,120,32,37,100,44,32,105,110,108,101,116,32,37,100,0,0,0,0,99,111,110,102,108,105,99,116,105,110,103,32,98,108,111,99,107,126,32,111,98,106,101,99,116,115,32,105,110,32,115,97,109,101,32,112, 97,103,101,0,115,101,116,32,37,108,120,45,62,37,108,120,0,114,101,98,108,111,99,107,32,37,100,44,32,115,119,105,116,99,104,101,100,32,37,100,0,0,0,0,68,83,80,32,108,111,111,112,32,100,101,116,101,99,116,101,100,32,40,115,111,109,101,32,116,105,108,100, 101,32,111,98,106,101,99,116,115,32,110,111,116,32,115,99,104,101,100,117,108,101,100,41,0,111,111,112,115,44,32,98,101,108,97,116,101,100,108,121,32,115,101,116,32,37,108,120,45,62,37,108,120,0,99,104,97,105,110,32,37,108,120,0,46,46,46,32,117,103,101, 110,95,100,111,110,101,95,103,114,97,112,104,32,100,111,110,101,46,0,117,103,101,110,95,99,117,114,114,101,110,116,99,111,110,116,101,120,116,0,117,103,101,110,95,103,101,116,105,111,115,105,103,0,115,97,109,112,108,101,114,97,116,101,126,0,0,60,45,57, 57,0,45,53,48,0,45,51,48,0,45,50,48,0,45,49,50,0,45,54,0,45,50,0,45,48,100,66,0,43,50,0,43,54,0,62,43,49,50,0,37,100,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,76,65,66,69,76,32,45,116,101,120,116, 32,123,37,115,125,32,10,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,76,65,66,69,76,32,37,100,32,37,100,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,76,65,66,69,76,32,45,102,111, 110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,10,0,46,0,95,102,108,111,97,116,0,0,0,95,102,108,111,97,116,95,97,114,114,97,121,0,97,114,114,97,121,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32, 37,115,0,122,0,0,97,114,114,97,121,58,32,116,101,109,112,108,97,116,101,32,37,115,32,104,97,115,32,110,111,32,39,122,39,32,102,105,101,108,100,0,97,114,114,97,121,58,32,116,101,109,112,108,97,116,101,32,37,115,44,32,39,122,39,32,102,105,101,108,100,32, 105,115,32,110,111,116,32,97,110,32,97,114,114,97,121,0,0,0,98,111,117,110,100,115,0,102,102,102,102,0,97,114,114,97,121,32,37,115,58,32,111,110,108,121,32,39,102,108,111,97,116,39,32,116,121,112,101,32,117,110,100,101,114,115,116,111,111,100,0,112,100, 45,95,102,108,111,97,116,95,97,114,114,97,121,0,97,114,114,97,121,58,32,110,111,32,116,101,109,112,108,97,116,101,32,111,102,32,116,121,112,101,32,37,115,0,115,116,121,108,101,0,108,105,110,101,119,105,100,116,104,0,35,65,0,112,100,116,107,95,97,114, 114,97,121,95,100,105,97,108,111,103,32,37,37,115,32,97,114,114,97,121,37,100,32,49,48,48,32,51,32,49,10,0,0,112,100,116,107,95,97,114,114,97,121,95,100,105,97,108,111,103,32,37,37,115,32,92,37,115,32,37,100,32,37,100,32,48,10,0,0,112,100,116,107,95, 97,114,114,97,121,95,100,105,97,108,111,103,32,37,37,115,32,37,115,32,37,100,32,37,100,32,48,10,0,99,97,110,39,116,32,102,105,110,100,32,97,114,114,97,121,10,0,101,114,114,111,114,32,105,110,32,103,97,114,114,97,121,95,97,114,114,97,121,118,105,101,119, 108,105,115,116,95,110,101,119,40,41,0,112,100,116,107,95,97,114,114,97,121,95,108,105,115,116,118,105,101,119,95,110,101,119,32,37,37,115,32,37,115,32,37,100,10,0,0,46,37,115,65,114,114,97,121,87,105,110,100,111,119,46,108,98,32,105,110,115,101,114, 116,32,37,100,32,123,37,100,41,32,37,103,125,10,0,0,0,112,100,116,107,95,97,114,114,97,121,95,108,105,115,116,118,105,101,119,95,115,101,116,112,97,103,101,32,37,115,32,37,100,10,0,0,46,37,115,65,114,114,97,121,87,105,110,100,111,119,46,108,98,32,100, 101,108,101,116,101,32,48,32,37,100,10,0,46,37,115,65,114,114,97,121,87,105,110,100,111,119,46,108,98,32,121,118,105,101,119,32,37,100,10,0,0,112,100,116,107,95,97,114,114,97,121,95,108,105,115,116,118,105,101,119,95,99,108,111,115,101,87,105,110,100, 111,119,32,37,115,10,0,99,97,110,39,116,32,115,97,118,101,32,97,114,114,97,121,115,32,111,102,32,116,121,112,101,32,37,115,32,121,101,116,0,0,115,115,115,105,115,105,59,0,0,0,119,97,114,110,105,110,103,58,32,73,39,109,32,115,97,118,105,110,103,32,97, 110,32,97,114,114,97,121,32,119,105,116,104,32,37,100,32,112,111,105,110,116,115,33,10,0,115,105,0,0,0,0,112,100,116,107,95,97,114,114,97,121,95,108,105,115,116,118,105,101,119,95,102,105,108,108,112,97,103,101,32,37,115,10,0,103,97,114,114,97,121,95, 116,101,109,112,108,97,116,101,0,0,0,0,37,115,58,32,110,101,101,100,115,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,39,121,39,32,102,105,101,108,100,0,37,115,58,32,104,97,115,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,102, 105,101,108,100,0,0,119,97,114,110,105,110,103,58,32,97,114,114,97,121,32,37,115,58,32,99,108,101,97,114,105,110,103,32,115,97,118,101,45,105,110,45,112,97,116,99,104,32,102,108,97,103,0,37,115,58,32,114,111,117,110,110,100,105,110,103,32,116,111,32, 37,100,32,112,111,105,110,116,115,0,0,0,115,105,110,101,115,117,109,58,32,37,115,58,32,110,101,101,100,32,110,117,109,98,101,114,32,111,102,32,112,111,105,110,116,115,32,97,110,100,32,112,97,114,116,105,97,108,32,115,116,114,101,110,103,116,104,115,0, 0,0,0,102,102,102,0,121,116,105,99,107,115,0,0,114,0,37,115,58,32,99,97,110,39,116,32,111,112,101,110,0,37,108,102,0,0,0,0,37,115,58,32,114,101,97,100,32,37,100,32,101,108,101,109,101,110,116,115,32,105,110,116,111,32,116,97,98,108,101,32,111,102,32, 115,105,122,101,32,37,100,0,0,0,37,115,58,32,99,97,110,39,116,32,99,114,101,97,116,101,0,37,103,10,0,37,115,58,32,119,114,105,116,101,32,101,114,114,111,114,0,0,0,103,97,114,114,97,121,32,37,115,58,32,116,101,109,112,108,97,116,101,32,37,115,44,32,108, 101,110,103,116,104,32,37,100,0,99,111,110,115,116,0,120,108,97,98,101,108,0,121,108,97,98,101,108,0,114,101,110,97,109,101,0,0,0,0,114,101,115,105,122,101,0,0,0,115,105,110,101,115,117,109,0,99,111,115,105,110,101,115,117,109,0,0,0,97,114,114,97,121, 118,105,101,119,108,105,115,116,110,101,119,0,97,114,114,97,121,118,105,101,119,108,105,115,116,102,105,108,108,112,97,103,101,0,97,114,114,97,121,118,105,101,119,99,108,111,115,101,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103, 117,114,101,32,37,108,120,66,85,84,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54, 120,32,45,116,97,103,115,32,37,108,120,66,65,83,69,10,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,111,118,97,108,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66, 85,84,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,97,110,99,104,111,114,32,119,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,102,111,110,116,32,123,123,37, 115,125,32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,91,108,105,115,116,32,37,108,120,76,65,66,69,76,32,108,97,98,101,108,32,116,101,120,116,93,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101, 32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,108,120,79,85,84,37,100,32,111,117,116,108,101,116,93,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99, 116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,108,120,73,78,37,100,32,105,110,108,101,116,93,10,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,66,65,83,69,32,37, 100,32,37,100,32,37,100,32,37,100,10,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,66,85,84,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,79,85,84,37,100,32,37,100,32, 37,100,32,37,100,32,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,73,78,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,66,65,83,69,10,0,46,120,37, 108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,66,85,84,10,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,79,85,84,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108, 120,76,65,66,69,76,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,101,120,116,32,123,37,115,125,32,10,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105, 103,117,114,101,32,37,108,120,66,65,83,69,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,37,108,120, 79,85,84,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,37,108,120,73,78,37,100,10,0,46,120,37,108,120,46,99,32,105,116,101,109,99, 111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,85,84,32,45,111,117,116,108,105,110, 101,32,35,37,54,46,54,120,10,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,76,65,66,69,76,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,0,115,115,105,105,115,105,105,105,105,115,115,115,105,105, 105,105,105,105,105,0,59,0,0,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,98,97,110,103,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40, 112,105,120,41,58,45,45,45,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,115,105,122,101,58,32,48,32,48,32,101,109,112,116,121,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,102,108,97,115,104,45,116,105,109,101,40,109,115,41,40,109, 115,41,58,45,45,45,45,45,45,45,45,45,32,37,100,32,105,110,116,114,114,112,116,58,32,37,100,32,104,111,108,100,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,101,109,112,116,121,32,101,109,112,116,121,32,37,100,32,37,100,32,101,109,112, 116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100, 32,37,100,10,0,104,101,108,118,101,116,105,99,97,0,0,0,99,108,105,99,107,0,0,0,0,102,108,97,115,104,116,105,109,101,0,0,108,97,98,101,108,95,112,111,115,0,0,0,58,58,112,100,95,109,101,110,117,115,58,58,117,112,100,97,116,101,95,119,105,110,100,111,119, 95,109,101,110,117,10,0,99,97,110,118,97,115,95,103,101,116,101,110,118,0,116,95,99,97,110,118,97,115,101,110,118,105,114,111,110,109,101,110,116,0,0,0,80,100,0,100,114,97,119,108,105,110,101,0,35,88,0,0,103,114,97,112,104,37,100,0,103,114,97,112,104, 0,0,0,112,100,45,0,32,40,0,32,0,41,0,0,112,100,116,107,95,99,97,110,118,97,115,95,114,101,102,108,101,99,116,116,105,116,108,101,32,46,120,37,108,120,32,123,37,115,125,32,123,37,115,125,32,123,37,115,125,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32, 99,114,101,97,116,101,32,108,105,110,101,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,102,102,56,48,56,48,32,45,116,97,103,115,32,71,79, 80,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,71,79,80,10,0,99,97,110,118,97,115,95,109,97,112,0,0,0,0,112,100,116,107,95,99,97,110,118,97,115,95,103,101,116,115,99,114,111,108,108,32,46,120,37,108,120,46,99,10,0,46,120,37,108,120,46, 99,32,100,101,108,101,116,101,32,97,108,108,10,0,103,108,105,115,116,95,109,101,110,117,95,111,112,101,110,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,37, 100,32,45,116,97,103,115,32,91,108,105,115,116,32,108,37,108,120,32,99,111,114,100,93,10,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,108,37,108,120,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,0,99,97,110,118,97,115,95,114,101,115, 116,111,114,101,58,32,111,117,116,32,111,102,32,99,111,110,116,101,120,116,0,0,99,97,110,118,97,115,95,114,101,115,116,111,114,101,58,32,119,97,115,110,39,116,32,97,32,99,97,110,118,97,115,0,108,111,97,100,98,97,110,103,0,0,37,100,120,37,100,43,37,100, 43,37,100,0,99,97,110,118,97,115,95,114,101,108,111,99,97,116,101,0,47,83,85,66,80,65,84,67,72,47,0,0,0,37,115,37,100,0,112,100,116,107,95,112,100,95,100,115,112,32,79,78,10,0,112,100,116,107,95,112,100,95,100,115,112,32,79,70,70,10,0,100,115,112,32, 115,116,97,116,101,32,37,100,0,0,0,0,45,115,116,100,112,97,116,104,0,45,108,105,98,0,45,115,116,100,108,105,98,0,0,100,101,99,108,97,114,101,58,32,37,115,58,32,117,110,107,110,111,119,110,32,100,101,99,108,97,114,97,116,105,111,110,0,0,114,101,115,116, 111,114,101,0,0,115,121,109,98,111,108,97,116,111,109,0,116,101,120,116,0,0,0,0,98,110,103,0,116,111,103,103,108,101,0,118,115,108,105,100,101,114,0,104,115,108,105,100,101,114,0,104,100,105,97,108,0,118,100,105,97,108,0,104,114,97,100,105,111,0,118, 114,97,100,105,111,0,118,117,109,101,116,101,114,0,109,121,99,110,118,0,110,117,109,98,111,120,0,112,111,112,0,115,101,116,98,111,117,110,100,115,0,114,101,108,111,99,97,116,101,0,118,105,115,0,0,0,109,97,112,0,100,105,114,116,121,0,0,112,97,103,101, 0,0,100,101,99,108,97,114,101,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,108,37,108,120,32,45,102,105,108,108,32,98,108,117,101,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114, 101,32,108,37,108,120,32,45,102,105,108,108,32,98,108,97,99,107,10,0,103,108,105,115,116,95,115,101,108,101,99,116,0,103,108,105,115,116,95,100,101,115,101,108,101,99,116,0,112,100,116,107,95,117,110,100,111,109,101,110,117,32,46,120,37,108,120,32,37, 115,32,110,111,10,0,112,100,116,107,95,117,110,100,111,109,101,110,117,32,110,111,98,111,100,121,32,110,111,32,110,111,10,0,102,111,111,0,99,97,110,118,97,115,95,117,110,100,111,32,49,0,99,97,110,118,97,115,95,117,110,100,111,32,50,0,112,100,116,107, 95,117,110,100,111,109,101,110,117,32,46,120,37,108,120,32,110,111,32,37,115,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,108,37,108,120,10,0,99,111,110,110,101,99,116,0,0,0,0,101,100,105,116,111,114,0,0,0,108,101,102,116,95,112,116,114, 0,97,114,114,111,119,0,115,98,95,118,95,100,111,117,98,108,101,95,97,114,114,111,119,0,112,108,117,115,0,104,97,110,100,50,0,99,105,114,99,108,101,0,88,95,99,117,114,115,111,114,0,99,97,110,118,97,115,95,115,101,116,99,117,114,115,111,114,0,46,120,37, 108,120,32,99,111,110,102,105,103,117,114,101,32,45,99,117,114,115,111,114,32,37,115,10,0,109,101,110,117,45,111,112,101,110,0,0,0,112,100,116,107,95,99,97,110,118,97,115,95,112,111,112,117,112,32,46,120,37,108,120,32,37,100,32,37,100,32,37,100,32,37, 100,10,0,46,120,37,108,120,0,112,100,116,107,95,99,97,110,118,97,115,95,114,97,105,115,101,32,46,120,37,108,120,10,0,112,100,116,107,95,99,97,110,118,97,115,95,110,101,119,32,46,120,37,108,120,32,37,100,32,37,100,32,43,37,100,43,37,100,32,37,100,10,0, 112,100,116,107,95,99,97,110,118,97,115,95,115,101,116,112,97,114,101,110,116,115,32,46,120,37,108,120,0,32,46,120,37,108,120,0,0,0,100,101,115,116,114,111,121,32,46,120,37,108,120,10,0,112,100,116,107,95,99,97,110,118,97,115,95,100,105,97,108,111,103, 32,37,37,115,32,37,103,32,37,103,32,37,100,32,37,103,32,37,103,32,37,103,32,37,103,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,46,112,100,0,105,110,116,114,111,46,112,100,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37, 100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,37,100,32,45,116,97,103,115,32,120,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115, 32,120,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,120,10,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,120,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,99,97,110,39,116,32,99,111,110,110,101,99,116,32,115,105,103,110,97,108, 32,111,117,116,108,101,116,32,116,111,32,99,111,110,116,114,111,108,32,105,110,108,101,116,0,0,0,0,112,100,116,107,95,99,104,101,99,107,32,46,120,37,108,120,32,123,68,105,115,99,97,114,100,32,99,104,97,110,103,101,115,32,116,111,32,39,37,115,39,63,125, 32,123,46,120,37,108,120,32,100,105,114,116,121,32,48,59,10,125,32,110,111,10,0,109,111,116,105,111,110,0,0,0,66,97,99,107,83,112,97,99,101,0,84,97,98,0,82,101,116,117,114,110,0,69,115,99,97,112,101,0,83,112,97,99,101,0,68,101,108,101,116,101,0,63,0, 107,101,121,99,111,100,101,32,37,100,58,32,100,114,111,112,112,101,100,0,35,107,101,121,0,35,107,101,121,117,112,0,35,107,101,121,110,97,109,101,0,0,0,0,68,111,119,110,0,76,101,102,116,0,82,105,103,104,116,0,116,121,112,105,110,103,0,67,111,110,116,114, 111,108,0,101,95,109,111,116,105,111,110,102,110,0,46,120,37,108,120,46,99,32,112,111,115,116,115,99,114,105,112,116,32,45,102,105,108,101,32,37,115,10,0,0,0,0,46,120,37,108,120,46,99,32,112,111,115,116,115,99,114,105,112,116,32,45,102,105,108,101,32, 120,46,112,115,10,0,0,112,100,116,107,95,99,97,110,118,97,115,95,109,101,110,117,99,108,111,115,101,32,46,120,37,108,120,32,123,46,120,37,108,120,32,109,101,110,117,99,108,111,115,101,32,51,59,10,125,10,0,0,112,100,116,107,95,99,104,101,99,107,32,46, 112,100,119,105,110,100,111,119,32,123,114,101,97,108,108,121,32,113,117,105,116,63,125,32,123,112,100,32,113,117,105,116,125,32,121,101,115,10,0,0,112,100,116,107,95,99,97,110,118,97,115,95,109,101,110,117,99,108,111,115,101,32,46,120,37,108,120,32, 123,46,120,37,108,120,32,109,101,110,117,99,108,111,115,101,32,50,59,10,125,10,0,0,112,100,116,107,95,99,97,110,118,97,115,95,109,101,110,117,99,108,111,115,101,32,46,120,37,108,120,32,123,46,120,37,108,120,32,109,101,110,117,99,108,111,115,101,32,49, 59,10,125,10,0,112,100,116,107,95,99,97,110,118,97,115,95,100,111,102,111,110,116,32,37,37,115,32,37,100,10,0,112,100,116,107,95,99,111,117,108,100,110,111,116,102,105,110,100,32,46,120,37,108,120,10,0,0,46,46,46,32,115,111,114,114,121,44,32,73,32,99, 111,117,108,100,110,39,116,32,102,105,110,100,32,116,104,101,32,115,111,117,114,99,101,32,111,102,32,116,104,97,116,32,101,114,114,111,114,46,0,99,108,105,112,98,111,97,114,100,32,99,108,101,97,114,10,0,99,108,105,112,98,111,97,114,100,32,97,112,112, 101,110,100,32,123,37,46,42,115,125,10,0,100,105,115,99,111,110,110,101,99,116,0,99,117,116,0,112,100,116,107,95,112,97,115,116,101,116,101,120,116,10,0,112,97,115,116,101,0,100,117,112,108,105,99,97,116,101,0,63,63,63,0,0,0,37,115,32,37,100,32,37,100, 32,37,100,32,37,100,32,40,37,115,45,62,37,115,41,32,99,111,110,110,101,99,116,105,111,110,32,102,97,105,108,101,100,0,98,101,115,116,32,118,101,114,116,105,99,97,108,32,100,105,115,116,97,110,99,101,32,37,100,0,112,100,116,107,95,112,100,95,116,101,120, 116,101,100,105,116,111,114,32,123,37,46,42,115,125,10,0,0,112,100,116,107,95,99,97,110,118,97,115,95,101,100,105,116,109,111,100,101,32,46,120,37,108,120,32,37,100,10,0,109,111,117,115,101,0,109,111,117,115,101,117,112,0,109,101,110,117,99,108,111,115, 101,0,99,111,112,121,0,115,101,108,101,99,116,97,108,108,0,114,101,115,101,108,101,99,116,0,117,110,100,111,0,114,101,100,111,0,116,105,100,121,0,116,101,120,116,101,100,105,116,111,114,0,0,112,114,105,110,116,0,109,101,110,117,102,111,110,116,0,102, 111,110,116,0,102,105,110,100,0,102,105,110,100,97,103,97,105,110,0,102,105,110,100,112,97,114,101,110,116,0,100,111,110,101,45,112,111,112,117,112,0,100,111,110,101,99,97,110,118,97,115,100,105,97,108,111,103,0,97,114,114,97,121,100,105,97,108,111,103, 0,103,114,97,112,104,37,108,120,0,103,114,97,112,104,58,32,101,109,112,116,121,32,98,111,117,110,100,115,32,114,101,99,116,97,110,103,108,101,0,0,103,114,97,112,104,95,120,108,97,98,101,108,58,32,110,111,32,121,32,118,97,108,117,101,32,103,105,118,101, 110,0,0,103,114,97,112,104,95,121,108,97,98,101,108,58,32,110,111,32,120,32,118,97,108,117,101,32,103,105,118,101,110,0,103,108,105,115,116,95,112,105,120,101,108,115,116,111,120,0,0,0,100,114,97,119,32,105,116,0,0,0,0,46,120,37,108,120,46,99,32,99,114, 101,97,116,101,32,112,111,108,121,103,111,110,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,32,103,114,97,112,104,93,32,45,102,105,108,108,32,35, 99,48,99,48,99,48,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,115,10,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37, 100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,32,103,114,97,112,104,93,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115, 125,32,45,97,110,99,104,111,114,32,110,119,32,32,32,32,32,32,32,32,32,32,32,32,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,32,108,97,98,101,108,32,103,114,97,112,104,93,10, 0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,32,103,114,97,112,104,93,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101, 32,116,101,120,116,32,32,32,32,32,32,32,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,32,108,97,98,101,108,32,103, 114,97,112,104,93,10,0,0,98,108,97,99,107,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,115,82,32,45,102,105,108,108,32,37,115,10,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101, 32,103,114,97,112,104,37,108,120,32,45,102,105,108,108,32,37,115,10,0,0,0,0,120,116,105,99,107,115,0,0,97,114,114,97,121,0,109,101,110,117,97,114,114,97,121,0,115,111,114,116,0,103,117,105,99,111,110,110,101,99,116,0,115,105,103,110,111,102,102,0,46, 120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,85,84,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,10,0,0,0,0,46,120,37,108,120,46,99,32,99,114, 101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66,65,83,69,37,100,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114, 101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66,85,84,37,100,10,0,0,0,46,120,37,108,120,46, 99,32,99,111,111,114,100,115,32,37,108,120,66,65,83,69,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,66,85,84,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,0,46,120,37, 108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,66,65,83,69,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,66,85,84,37,100,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37, 108,120,66,65,83,69,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,37,100,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,10, 0,104,100,108,0,0,0,0,111,98,106,0,0,0,0,115,115,105,105,115,105,105,105,105,115,115,115,105,105,105,105,105,105,105,105,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,104,114,97,100,105,111,124,32,32,32,32, 32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,58,45,45,45,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,115,105,122,101,58,32,48,32,48,32,101,109,112,116,121,32,32,32,32,32,32,32,32, 32,32,32,32,32,101,109,112,116,121,32,48,46,48,32,101,109,112,116,121,32,48,46,48,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,110,101,119,45,111,110,108,121,32,110,101,119,38,111,108,100,32,37,100,32,37,100,32,110, 117,109,98,101,114,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37, 100,32,37,100,32,37,100,10,0,0,0,0,100,101,108,116,97,0,112,111,115,0,99,111,108,111,114,0,115,101,110,100,0,0,0,0,105,110,105,116,0,110,117,109,98,101,114,0,115,105,110,103,108,101,95,99,104,97,110,103,101,0,100,111,117,98,108,101,95,99,104,97,110,103, 101,0,114,100,98,0,114,97,100,105,111,98,117,116,0,114,97,100,105,111,98,117,116,116,111,110,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,75,78,79,66,32,37,100,32,37,100,32,37,100,32,37,100,10,0,46,120,37,108,120,46,99,32,105, 116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,75,78,79,66,32,45,119,105,100,116,104,32,55,10,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,75,78,79,66,32,45,119,105,100,116,104,32,51,10,0, 46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,51,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,75,78,79,66,10,0,0,0,0,46,120,37, 108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,75,78,79,66,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,76,65,66,69,76,10,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,73,78,37,100,10,0,0,0,46,120, 37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,75,78,79,66,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,104,115,108,0,0,0,0,115,115,105,105,115,105,105,102,102,105,105,115,115,115,105,105,105,105,105,105,105, 105,105,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,104,115,108,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,40,112,105,120, 41,58,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,119,105,100,116,104,58,32,37,100,32,37,100,32,104,101,105,103,104,116,58,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,45,111,117,116,112,117,116,45,114,97,110,103,101,58,45, 45,45,45,45,45,45,45,45,45,45,32,37,103,32,108,101,102,116,58,32,37,103,32,114,105,103,104,116,58,32,37,103,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,108,105,110,32,108,111,103,32,37,100,32,37,100,32,101,109,112,116,121,32,37,100,32,32,32,32,32, 32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,10,0,114,97,110,103,101, 0,0,0,108,111,103,0,108,105,110,0,0,115,116,101,97,100,121,0,118,105,110,108,101,116,95,103,101,116,105,116,0,104,111,108,100,0,118,111,117,116,108,101,116,95,103,101,116,105,116,0,118,111,117,116,108,101,116,95,100,115,112,112,114,111,108,111,103,0, 118,111,117,116,108,101,116,95,100,115,112,101,112,105,108,111,103,0,108,105,110,101,97,114,0,111,117,116,108,101,116,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32, 45,102,105,108,108,32,35,37,54,46,54,120,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,82,69,67,84,10,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100, 32,37,100,32,37,100,32,37,100,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66,65,83,69,10,0,101,109,112,116,121,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,82,69,67,84,32,37,100, 32,37,100,32,37,100,32,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,82,69,67,84,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,82,69,67,84,32,45,102,105,108,108, 32,35,37,54,46,54,120,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,10,0,115,115,105,105,115,105,105,105,115,115,115,105,105,105,105,105,105,105,0,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,99, 110,118,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,115,101,108,101,99,116,97,98,108,101,95,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,58,45,45,45,45,45,45,32,37,100,32,37,100,32,115,105,122,101,58,32,48,46,48,32,48,46, 48,32,101,109,112,116,121,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,118,105,115,105,98,108,101,95,114,101,99,116,97,110,103,108,101,40,112,105,120,41,40,112,105,120,41,58,45,45,45,45,45,45,32,37,100,32,119,105,100,116,104,58,32,37,100, 32,104,101,105,103,104,116,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,101,109,112,116,121,32,101,109,112,116,121,32,37,100,32,37,100,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32, 32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,10,0,109,121,95,99,97,110,118,97,115,0,0,0,118,105,115,95,115,105,122,101, 0,0,0,103,101,116,95,112,111,115,0,37,103,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,78,85,77,66,69,82,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,101,120,116,32,123,37,115,125,32,10,0,0, 0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,112,111,108,121,103,111,110,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,32,45,102,105, 108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,66,65,83,69,49,10,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,37,54, 46,54,120,32,45,116,97,103,115,32,37,108,120,66,65,83,69,50,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,97,110,99,104,111,114,32,119,32,32,32,32,32,32,32, 32,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,91,108,105,115,116,32,37,108,120,76,65,66,69,76,32,108,97,98,101,108,32,116,101,120,116,93,10,0,0,0,46,120,37, 108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,97,110,99,104,111,114,32,119,32,32,32,32,32,32,32,32,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32, 45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,78,85,77,66,69,82,10,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,66,65,83,69,49,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37, 100,32,37,100,32,37,100,32,37,100,10,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,66,65,83,69,50,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120, 78,85,77,66,69,82,32,37,100,32,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,66,65,83,69,49,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,66,65,83,69,50,10,0,0,46,120,37,108,120,46,99,32,100,101, 108,101,116,101,32,37,108,120,78,85,77,66,69,82,10,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,78,85,77,66,69,82,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,102, 105,108,108,32,35,37,54,46,54,120,32,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,49,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99, 111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,50,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,66,65,83,69,49,32,45,111,117,116,108,105,110, 101,32,35,37,54,46,54,120,10,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,78,85,77,66,69,82,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,0,115,115,105,105,115,105,105,102,102,105,105,115,115,115, 105,105,105,105,105,105,105,102,105,0,0,0,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,110,98,120,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40, 100,105,103,105,116,115,41,40,112,105,120,41,58,45,45,45,45,45,45,45,32,37,100,32,37,100,32,119,105,100,116,104,58,32,37,100,32,37,100,32,104,101,105,103,104,116,58,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,45,111,117,116,112, 117,116,45,114,97,110,103,101,58,45,45,45,45,45,45,45,45,45,45,45,32,37,103,32,109,105,110,58,32,37,103,32,109,97,120,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,108,105,110,32,108,111,103,32,37,100,32,37,100,32,108,111,103,45,104,101, 105,103,104,116,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100, 32,37,100,32,37,100,10,0,109,121,95,110,117,109,98,111,120,0,0,100,105,97,108,111,103,0,0,115,105,122,101,0,0,0,0,114,101,99,101,105,118,101,0,108,97,98,101,108,0,0,0,108,97,98,101,108,95,102,111,110,116,0,0,108,111,103,95,104,101,105,103,104,116,0,110, 117,109,98,111,120,50,0,0,108,105,110,101,32,119,97,115,58,0,37,115,58,32,110,111,32,115,117,99,104,32,116,101,109,112,108,97,116,101,0,115,116,111,112,112,105,110,103,32,101,97,114,108,121,58,32,116,121,112,101,32,37,100,0,0,99,97,110,118,97,115,95, 114,101,97,100,58,32,37,115,58,32,110,111,32,115,117,99,104,32,116,101,109,112,108,97,116,101,0,99,111,117,108,100,110,39,116,32,99,114,101,97,116,101,32,115,99,97,108,97,114,32,34,37,115,34,0,100,97,116,97,0,0,37,115,58,32,102,105,108,101,32,97,112, 112,97,114,101,110,116,108,121,32,111,102,32,119,114,111,110,103,32,116,121,112,101,0,101,120,116,114,97,32,105,116,101,109,115,32,105,103,110,111,114,101,100,0,116,101,109,112,108,97,116,101,0,98,97,100,32,116,101,109,112,108,97,116,101,32,104,101,97, 100,101,114,0,0,37,115,58,32,116,101,109,112,108,97,116,101,32,110,111,116,32,102,111,117,110,100,32,105,110,32,99,117,114,114,101,110,116,32,112,97,116,99,104,0,37,115,58,32,116,101,109,112,108,97,116,101,32,100,111,101,115,110,39,116,32,109,97,116, 99,104,32,99,117,114,114,101,110,116,32,111,110,101,0,0,0,0,113,108,105,115,116,95,114,101,97,100,58,32,117,110,107,110,111,119,110,32,102,108,97,103,58,32,37,115,0,114,101,97,100,32,102,97,105,108,101,100,0,0,100,97,116,97,95,112,114,111,112,101,114, 116,105,101,115,58,32,115,99,97,108,97,114,32,100,105,115,97,112,112,101,97,114,101,100,0,112,114,111,112,101,114,116,105,101,115,32,100,105,97,108,111,103,0,0,0,99,111,117,108,100,110,39,116,32,117,112,100,97,116,101,32,112,114,111,112,101,114,116,105, 101,115,32,40,112,101,114,104,97,112,115,32,97,32,102,111,114,109,97,116,32,112,114,111,98,108,101,109,63,41,0,0,100,97,116,97,95,112,114,111,112,101,114,116,105,101,115,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,111,108,100,32,101,108, 101,109,101,110,116,0,0,100,97,116,97,95,112,114,111,112,101,114,116,105,101,115,58,32,99,97,110,39,116,32,114,101,105,110,115,101,114,116,0,99,97,110,118,97,115,95,119,114,105,116,101,115,99,97,108,97,114,0,99,97,110,118,97,115,95,97,100,100,116,101, 109,112,108,97,116,101,115,102,111,114,115,99,97,108,97,114,0,115,59,0,0,0,99,97,110,118,97,115,95,119,114,105,116,101,0,115,115,115,59,0,0,37,115,58,32,119,114,105,116,101,32,102,97,105,108,101,100,0,40,115,117,98,112,97,116,99,104,41,0,99,97,110,118, 97,115,0,35,78,0,115,115,105,105,105,105,115,105,59,0,115,115,105,105,105,105,105,59,0,0,0,0,115,115,105,105,105,105,59,0,99,111,111,114,100,115,0,115,115,102,102,102,102,102,102,102,102,102,59,0,115,115,102,102,102,102,102,102,102,59,0,99,97,110,118, 97,115,95,115,97,118,101,116,101,109,112,108,97,116,101,115,116,111,0,0,0,0,115,115,115,0,115,115,0,115,97,118,101,100,32,116,111,58,32,37,115,47,37,115,0,112,100,116,107,95,99,97,110,118,97,115,95,115,97,118,101,97,115,32,46,120,37,108,120,32,34,37, 115,34,32,34,37,115,34,10,0,85,110,116,105,116,108,101,100,0,0,46,109,120,116,0,0,0,0,109,101,114,103,101,102,105,108,101,0,115,97,118,101,116,111,102,105,108,101,0,0,0,0,109,101,110,117,115,97,118,101,0,109,101,110,117,115,97,118,101,97,115,0,0,0,46, 120,37,108,120,46,116,37,108,120,0,0,109,115,103,0,97,116,111,109,0,0,0,0,112,100,116,107,95,116,101,120,116,95,110,101,119,32,46,120,37,108,120,46,99,32,123,37,115,32,37,115,32,116,101,120,116,125,32,37,102,32,37,102,32,123,37,46,42,115,125,32,37,100, 32,37,115,10,0,0,112,100,116,107,95,116,101,120,116,95,115,101,116,32,46,120,37,108,120,46,99,32,37,115,32,123,37,46,42,115,125,10,0,46,120,37,108,120,46,99,32,115,101,108,101,99,116,32,102,114,111,109,32,37,115,32,37,100,10,0,46,120,37,108,120,46,99, 32,115,101,108,101,99,116,32,116,111,32,37,115,32,37,100,10,0,46,120,37,108,120,46,99,32,102,111,99,117,115,32,34,34,10,0,46,120,37,108,120,46,99,32,115,101,108,101,99,116,32,99,108,101,97,114,10,0,46,120,37,108,120,46,99,32,105,99,117,114,115,111,114, 32,37,115,32,37,100,10,0,46,120,37,108,120,46,99,32,102,111,99,117,115,32,37,115,10,0,103,108,105,115,116,95,102,105,110,100,114,116,101,120,116,0,0,0,0,46,120,37,108,120,46,99,32,109,111,118,101,32,37,115,32,37,100,32,37,100,10,0,46,120,37,108,120,46, 99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,115,32,45,102,105,108,108,32,37,115,10,0,112,100,116,107,95,116,101,120,116,95,101,100,105,116,105,110,103,32,46,120,37,108,120,32,37,115,32,49,10,0,112,100,116,107,95,116,101,120,116,95, 101,100,105,116,105,110,103,32,46,120,37,108,120,32,123,125,32,48,10,0,0,0,0,85,112,0,0,0,0,119,97,114,110,105,110,103,58,32,119,111,114,100,95,114,101,115,116,111,114,101,58,32,101,120,116,114,97,32,97,114,103,117,109,101,110,116,115,0,0,115,99,97,108, 97,114,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,0,120,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100, 32,37,100,32,37,100,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,45,119,105,100,116,104,32,48,32,45,102,105,108,108,32,98,108,117,101,32,45,116,97,103,115,32,115,101,108,101,99,116,37,108,120,10,0,46,120,37,108,120,46,99,32,100,101,108, 101,116,101,32,115,101,108,101,99,116,37,108,120,10,0,115,101,108,101,99,116,0,100,101,115,101,108,101,99,116,0,100,105,115,112,108,97,99,101,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37, 100,32,37,100,32,37,100,32,45,116,97,103,115,32,115,99,97,108,97,114,37,108,120,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,115,99,97,108,97,114,37,108,120,10,0,0,0,115,99,97,108,97,114,0,0,0,0,112,100,116,107,95,100,97,116,97,95,100,105, 97,108,111,103,32,37,37,115,32,123,0,125,10,0,0,0,97,114,114,97,121,32,108,97,99,107,115,32,101,108,101,109,101,110,116,32,116,101,109,112,108,97,116,101,32,111,114,32,110,97,109,101,0,37,115,58,32,110,111,32,115,117,99,104,32,116,121,112,101,0,116,101, 109,112,108,97,116,101,95,102,105,110,100,95,102,105,101,108,100,0,37,115,46,37,115,58,32,110,111,116,32,97,32,110,117,109,98,101,114,0,37,115,46,37,115,58,32,110,111,32,115,117,99,104,32,102,105,101,108,100,0,37,115,46,37,115,58,32,110,111,116,32,97, 32,115,121,109,98,111,108,0,97,100,100,32,101,108,101,109,101,110,116,115,46,46,46,0,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,115,99,97,108,97,114,0,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,97,114,114,97,121,0, 99,111,110,102,111,114,109,105,110,103,32,116,101,109,112,108,97,116,101,32,39,37,115,39,32,116,111,32,110,101,119,32,115,116,114,117,99,116,117,114,101,0,46,46,46,32,37,100,0,116,101,109,112,108,97,116,101,95,102,105,110,100,99,97,110,118,97,115,0,37, 115,58,32,116,101,109,112,108,97,116,101,32,109,105,115,109,97,116,99,104,0,0,115,116,114,117,99,116,0,0,116,101,109,112,108,97,116,101,32,37,115,58,32,119,97,114,110,105,110,103,58,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,46,0,0,0,119, 97,114,110,105,110,103,32,45,45,32,39,116,101,109,112,108,97,116,101,39,32,40,37,115,41,32,105,115,32,111,98,115,111,108,101,116,101,59,32,114,101,112,108,97,99,101,32,119,105,116,104,32,39,115,116,114,117,99,116,39,0,40,37,108,102,58,37,108,102,41,40, 37,108,102,58,37,108,102,41,40,37,108,102,41,0,112,97,114,115,101,32,101,114,114,111,114,58,32,37,115,0,0,0,115,121,109,98,111,108,105,99,32,100,97,116,97,32,102,105,101,108,100,32,117,115,101,100,32,97,115,32,110,117,109,98,101,114,0,0,110,117,109,101, 114,105,99,32,100,97,116,97,32,102,105,101,108,100,32,117,115,101,100,32,97,115,32,115,121,109,98,111,108,0,0,0,97,116,116,101,109,112,116,32,116,111,32,115,101,116,32,99,111,110,115,116,97,110,116,32,111,114,32,115,121,109,98,111,108,105,99,32,100,97, 116,97,32,102,105,101,108,100,32,116,111,32,97,32,110,117,109,98,101,114,0,45,118,0,45,120,0,0,0,0,103,108,111,98,97,108,32,118,105,115,47,105,110,118,105,115,32,102,111,114,32,97,32,116,101,109,112,108,97,116,101,32,119,105,116,104,32,118,97,114,105, 97,98,108,101,32,118,105,115,105,98,105,108,105,116,121,0,35,37,50,46,50,120,37,50,46,50,120,37,50,46,50,120,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,112,111,108,121,103,111,110,92,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32, 108,105,110,101,92,10,0,37,100,32,37,100,92,10,0,45,119,105,100,116,104,32,37,102,92,10,0,45,102,105,108,108,32,37,115,32,45,111,117,116,108,105,110,101,32,37,115,92,10,0,45,102,105,108,108,32,37,115,92,10,0,45,115,109,111,111,116,104,32,49,92,10,0,45, 116,97,103,115,32,99,117,114,118,101,37,108,120,10,0,0,119,97,114,110,105,110,103,58,32,99,117,114,118,101,115,32,110,101,101,100,32,97,116,32,108,101,97,115,116,32,116,119,111,32,112,111,105,110,116,115,32,116,111,32,98,101,32,103,114,97,112,104,101, 100,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,99,117,114,118,101,37,108,120,10,0,99,117,114,118,101,95,109,111,116,105,111,110,58,32,115,99,97,108,97,114,32,100,105,115,97,112,112,101,97,114,101,100,0,0,0,0,100,114,97,119,112,111,108,121, 103,111,110,0,100,114,97,119,99,117,114,118,101,0,102,105,108,108,101,100,112,111,108,121,103,111,110,0,102,105,108,108,101,100,99,117,114,118,101,0,121,0,119,0,99,117,114,118,101,0,0,0,0,45,118,115,0,45,121,0,45,119,0,112,108,111,116,58,32,110,101,101, 100,115,32,97,110,32,97,114,114,97,121,32,102,105,101,108,100,0,112,108,111,116,58,32,37,115,58,32,110,111,32,115,117,99,104,32,102,105,101,108,100,0,112,108,111,116,58,32,37,115,58,32,110,111,116,32,97,110,32,97,114,114,97,121,0,112,108,111,116,58,32, 37,115,58,32,110,111,32,115,117,99,104,32,116,101,109,112,108,97,116,101,0,112,108,111,116,58,32,37,115,58,32,110,111,32,99,97,110,118,97,115,32,102,111,114,32,116,104,105,115,32,116,101,109,112,108,97,116,101,0,0,0,46,120,37,108,120,46,99,32,99,114, 101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,98,108,97,99,107,32,45,119,105,100,116,104,32,48,32,32,45,116,97,103,115,32,91,108,105,115,116,32,112,108,111,116,37,108,120,32,97,114, 114,97,121,93,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,112,111,108,121,103,111,110,32,92,10,0,37,100,32,37,102,32,92,10,0,0,0,32,45,119,105,100,116,104,32,49,32,45,102,105,108,108,32,37,115,32,45,111,117,116,108,105,110,101,32,37,115, 92,10,0,45,116,97,103,115,32,91,108,105,115,116,32,112,108,111,116,37,108,120,32,97,114,114,97,121,93,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,92,10,0,48,32,48,32,48,32,48,32,92,10,0,46,120,37,108,120,46,99,32,100,101, 108,101,116,101,32,112,108,111,116,37,108,120,10,0,112,108,111,116,0,100,114,97,119,110,117,109,98,101,114,95,115,101,108,101,99,116,32,37,100,0,100,114,97,119,110,117,109,98,101,114,95,97,99,116,105,118,97,116,101,32,37,100,0,46,120,37,108,120,46,99, 32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,97,110,99,104,111,114,32,110,119,32,45,102,105,108,108,32,37,115,32,45,116,101,120,116,32,123,37,115,125,0,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,0, 0,0,32,45,116,97,103,115,32,91,108,105,115,116,32,100,114,97,119,110,117,109,98,101,114,37,108,120,32,108,97,98,101,108,93,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,100,114,97,119,110,117,109,98,101,114,37,108,120,10,0,0,0,0,100,114, 97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,58,32,115,99,97,108,97,114,32,100,105,115,97,112,112,101,97,114,101,100,0,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,58,32,115,121,109,98,111,108,0,0,0,0,37,108,103,0,100, 114,97,119,110,117,109,98,101,114,0,100,114,97,119,115,121,109,98,111,108,0,0,0,0,99,111,109,109,101,110,116,0,101,100,105,116,109,111,100,101,0,0,0,46,46,46,32,99,111,117,108,100,110,39,116,32,99,114,101,97,116,101,0,0,46,46,46,32,100,105,100,110,39, 116,32,114,101,116,117,114,110,32,97,32,112,97,116,99,104,97,98,108,101,32,111,98,106,101,99,116,0,0,0,0,117,110,97,98,108,101,32,116,111,32,99,114,101,97,116,101,32,115,116,117,98,32,111,98,106,101,99,116,32,105,110,32,99,108,111,115,101,100,32,99,97, 110,118,97,115,33,0,118,100,108,0,0,0,118,117,0,99,110,118,0,110,98,120,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,115,82,32,45,119,105,100,116,104,32,53,10,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111, 110,102,105,103,117,114,101,32,37,115,82,32,45,119,105,100,116,104,32,49,10,0,117,110,97,98,108,101,32,116,111,32,99,114,101,97,116,101,32,115,116,117,98,32,109,101,115,115,97,103,101,32,105,110,32,99,108,111,115,101,100,32,99,97,110,118,97,115,33,0, 45,0,0,0,37,115,58,32,97,116,111,109,32,119,105,116,104,32,115,97,109,101,32,115,101,110,100,47,114,101,99,101,105,118,101,32,110,97,109,101,32,40,105,110,102,105,110,105,116,101,32,108,111,111,112,41,0,0,0,0,103,97,116,111,109,95,108,105,115,116,58, 32,110,101,101,100,32,102,108,111,97,116,32,111,114,32,115,121,109,98,111,108,0,103,97,116,111,109,95,107,101,121,0,37,115,46,46,46,0,46,120,37,108,120,46,99,32,109,111,118,101,32,37,108,120,46,108,32,37,100,32,37,100,10,0,0,112,100,116,107,95,116,101, 120,116,95,110,101,119,32,46,120,37,108,120,46,99,32,123,37,108,120,46,108,32,108,97,98,101,108,32,116,101,120,116,125,32,37,102,32,37,102,32,123,37,115,125,32,37,100,32,37,115,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,46, 108,10,0,0,0,0,112,100,116,107,95,103,97,116,111,109,95,100,105,97,108,111,103,32,37,37,115,32,37,100,32,37,103,32,37,103,32,37,100,32,123,37,115,125,32,123,37,115,125,32,123,37,115,125,10,0,98,108,117,101,0,0,0,0,102,102,102,102,102,0,115,97,118,101, 116,111,0,0,0,0,115,115,105,105,0,0,102,108,111,97,116,97,116,111,109,0,105,110,116,97,116,111,109,0,115,115,105,105,105,102,102,102,115,115,115,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32, 37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,111,37,100,32,111,117,116,108,101,116,93,10,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,115,111,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120, 37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,105,37,100,32,105,110,108,101,116,93,10,0,0,46,120,37,108,120,46,99,32,99,111, 111,114,100,115,32,37,115,105,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,34,34,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37, 100,32,37,100,32,45,100,97,115,104,32,37,115,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,82,32,111,98,106,93,10,0,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,115,82,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100, 32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,115,82,32,45,100,97,115,104,32,37,115,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37, 100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,82,32,109,115,103,93,10,0,46,120,37,108,120,46,99,32,99,111,111, 114,100,115,32,37,115,82,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100, 32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,115,82,32,97,116,111,109,93,10,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37, 115,82,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,115,111,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101, 116,101,32,37,115,105,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,115,82,10,0,112,100,0,0,0,0,109,101,115,115,97,103,101,0,97,100,100,0,97,100,100,50,0,97,100,100,99,111,109,109,97,0,97,100,100,115,101,109,105,0,97,100,100,100, 111,108,108,97,114,0,97,100,100,100,111,108,108,115,121,109,0,109,101,115,115,114,101,115,112,111,110,100,101,114,0,103,97,116,111,109,0,112,97,114,97,109,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120, 88,49,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,88,50,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97, 116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,88,49,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105, 110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,88,50,10,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101, 32,37,108,120,88,49,32,45,119,105,100,116,104,32,37,100,10,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,88,49,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117, 114,101,32,37,108,120,88,50,32,45,119,105,100,116,104,32,37,100,10,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,88,50,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108, 120,88,49,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,88,50,10,0,115,115,105,105,115,105,105,115,115,115,105,105,105,105,105,105,105,102,102,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115, 32,124,116,103,108,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,58,45,45,45,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,115,105,122,101,58,32,48,32,48,32,101,109, 112,116,121,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,45,110,111,110,45,122,101,114,111,45,118,97,108,117,101,58,45,45,45,45,45,45,45,45,45,45,45,32,37,103,32,118,97,108,117,101,58,32,48,46,48,32,101,109,112,116,121,32,37,103, 32,32,32,32,32,32,32,32,32,32,32,32,32,45,49,32,108,105,110,32,108,111,103,32,37,100,32,37,100,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100, 32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,10,0,0,0,0,110,111,110,122,101,114,111,0,0,0,103,115,116,117,98,95,100,105,115,0,103,115,116,117,98,95,99,117,116,111,102,102,0, 103,112,111,105,110,116,101,114,95,99,111,112,121,0,112,111,105,110,116,101,114,58,32,108,105,115,116,32,39,37,115,39,32,110,111,116,32,102,111,117,110,100,0,0,0,112,116,114,111,98,106,95,110,101,120,116,58,32,110,111,32,99,117,114,114,101,110,116,32, 112,111,105,110,116,101,114,0,112,116,114,111,98,106,95,110,101,120,116,58,32,108,105,115,116,115,32,111,110,108,121,44,32,110,111,116,32,97,114,114,97,121,115,0,112,116,114,111,98,106,95,110,101,120,116,58,32,115,116,97,108,101,32,112,111,105,110,116, 101,114,0,0,112,116,114,111,98,106,95,118,110,101,120,116,58,32,110,101,120,116,45,115,101,108,101,99,116,101,100,32,111,110,108,121,32,119,111,114,107,115,32,102,111,114,32,97,32,118,105,115,105,98,108,101,32,119,105,110,100,111,119,0,112,116,114,111, 98,106,95,98,97,110,103,58,32,101,109,112,116,121,32,112,111,105,110,116,101,114,0,115,101,110,100,45,119,105,110,100,111,119,58,32,110,111,32,109,101,115,115,97,103,101,63,0,112,111,105,110,116,101,114,95,114,101,119,105,110,100,58,32,101,109,112,116, 121,32,112,111,105,110,116,101,114,0,0,0,112,111,105,110,116,101,114,95,114,101,119,105,110,100,58,32,115,111,114,114,121,44,32,117,110,97,118,97,105,108,97,98,108,101,32,102,111,114,32,97,114,114,97,121,115,0,112,111,105,110,116,101,114,0,116,114,97, 118,101,114,115,101,0,110,101,120,116,0,118,110,101,120,116,0,115,101,110,100,45,119,105,110,100,111,119,0,0,0,103,101,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,103,101,116,58,32,115,116, 97,108,101,32,111,114,32,101,109,112,116,121,32,112,111,105,110,116,101,114,0,0,103,101,116,58,32,37,115,46,37,115,32,105,115,32,110,111,116,32,97,32,110,117,109,98,101,114,32,111,114,32,115,121,109,98,111,108,0,103,101,116,58,32,37,115,46,37,115,58, 32,110,111,32,115,117,99,104,32,102,105,101,108,100,0,103,101,116,0,45,115,121,109,98,111,108,0,0,115,101,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,115,101,116,58,32,101,109,112,116,121,32, 112,111,105,110,116,101,114,0,0,0,115,101,116,32,37,115,58,32,103,111,116,32,119,114,111,110,103,32,116,101,109,112,108,97,116,101,32,40,37,115,41,0,116,121,112,101,32,109,105,115,109,97,116,99,104,32,111,114,32,110,111,32,102,105,101,108,100,32,115, 112,101,99,105,102,105,101,100,0,101,108,101,109,101,110,116,58,32,101,109,112,116,121,32,112,111,105,110,116,101,114,0,0,101,108,101,109,101,110,116,32,37,115,58,32,103,111,116,32,119,114,111,110,103,32,116,101,109,112,108,97,116,101,32,40,37,115,41, 0,101,108,101,109,101,110,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,0,101,108,101,109,101,110,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,97,114,114,97,121,32,102,105,101, 108,100,32,37,115,0,0,0,101,108,101,109,101,110,116,58,32,102,105,101,108,100,32,37,115,32,110,111,116,32,111,102,32,116,121,112,101,32,97,114,114,97,121,0,101,108,101,109,101,110,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,102,105, 101,108,100,32,116,101,109,112,108,97,116,101,32,37,115,0,101,108,101,109,101,110,116,0,0,0,0,103,101,116,115,105,122,101,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,0,103,101,116,115,105,122,101, 58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,97,114,114,97,121,32,102,105,101,108,100,32,37,115,0,0,0,103,101,116,115,105,122,101,58,32,102,105,101,108,100,32,37,115,32,110,111,116,32,111,102,32,116,121,112,101,32,97,114,114,97,121,0,103, 101,116,115,105,122,101,32,37,115,58,32,103,111,116,32,119,114,111,110,103,32,116,101,109,112,108,97,116,101,32,40,37,115,41,0,103,101,116,115,105,122,101,0,115,101,116,115,105,122,101,58,32,101,109,112,116,121,32,112,111,105,110,116,101,114,0,0,115, 101,116,115,105,122,101,32,37,115,58,32,103,111,116,32,119,114,111,110,103,32,116,101,109,112,108,97,116,101,32,40,37,115,41,0,115,101,116,115,105,122,101,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37, 115,0,0,115,101,116,115,105,122,101,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,97,114,114,97,121,32,102,105,101,108,100,32,37,115,0,0,0,115,101,116,115,105,122,101,58,32,102,105,101,108,100,32,37,115,32,110,111,116,32,111,102,32,116,121, 112,101,32,97,114,114,97,121,0,115,101,116,115,105,122,101,95,103,112,111,105,110,116,101,114,0,115,101,116,115,105,122,101,0,0,0,0,97,112,112,101,110,100,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,101,109,112,108,97,116,101,32,37, 115,0,97,112,112,101,110,100,58,32,110,111,32,99,117,114,114,101,110,116,32,112,111,105,110,116,101,114,0,0,0,0,97,112,112,101,110,100,58,32,108,105,115,116,115,32,111,110,108,121,44,32,110,111,116,32,97,114,114,97,121,115,0,97,112,112,101,110,100,58, 32,115,116,97,108,101,32,112,111,105,110,116,101,114,0,37,115,58,32,99,111,117,108,100,110,39,116,32,99,114,101,97,116,101,32,115,99,97,108,97,114,0,97,112,112,101,110,100,0,0,115,117,98,108,105,115,116,58,32,99,111,117,108,100,110,39,116,32,102,105, 110,100,32,116,101,109,112,108,97,116,101,32,37,115,0,0,115,117,98,108,105,115,116,58,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,102,105,101,108,100,32,37,115,0,115,117,98,108,105,115,116,58,32,102,105,101,108,100,32,37,115,32,110,111,116, 32,111,102,32,116,121,112,101,32,108,105,115,116,0,115,117,98,108,105,115,116,0,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,118,114,97,100,105,111,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45, 45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,58,45,45,45,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,115,105,122,101,58,32,48,32,48,32,101,109,112,116,121,32,32,32,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,32,48, 46,48,32,101,109,112,116,121,32,48,46,48,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,110,101,119,45,111,110,108,121,32,110,101,119,38,111,108,100,32,37,100,32,37,100,32,110,117,109,98,101,114,58,32,37,100,32,32,32, 32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,10,0,0,0,0,112, 100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,118,115,108,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,40,112,105,120,41,58,45,45,45, 45,45,45,45,45,32,37,100,32,37,100,32,119,105,100,116,104,58,32,37,100,32,37,100,32,104,101,105,103,104,116,58,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,45,45,45,111,117,116,112,117,116,45,114,97,110,103,101,58,45,45,45,45,45,45, 45,45,45,45,45,32,37,103,32,98,111,116,116,111,109,58,32,37,103,32,116,111,112,58,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,108,105,110,32,108,111,103,32,37,100,32,37,100,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32, 32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32, 99,111,111,114,100,115,32,37,108,120,82,67,79,86,69,82,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,80,76,69,68,32,37,100,32,37,100,32,37,100,32,37,100,10,0,46,120,37,108,120,46,99,32, 105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,80,76,69,68,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100, 116,104,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,82,76,69,68,37,100,10,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32, 45,97,110,99,104,111,114,32,119,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,83,67, 65,76,69,37,100,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,97,110,99,104,111,114,32,119,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,102,111, 110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,83,67,65,76,69,37,100,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101,99,116,97,110,103,108,101, 32,37,100,32,37,100,32,37,100,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,82,67,79,86,69,82,10,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32, 108,105,110,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,119,105,100,116,104,32,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,80,76,69,68,10,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,114,101, 99,116,97,110,103,108,101,32,37,100,32,37,100,32,37,100,32,37,100,32,45,116,97,103,115,32,91,108,105,115,116,32,37,108,120,79,85,84,37,100,32,111,117,116,108,101,116,93,120,10,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,82,76,69, 68,37,100,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,0,46,120,37,108,120,46,99,32,99,111,111,114,100,115,32,37,108,120,83,67,65,76,69,37,100,32,37,100,32,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,82,76,69, 68,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,83,67,65,76,69,37,100,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108,120,80,76,69,68,10,0,46,120,37,108,120,46,99,32,100,101,108,101,116,101,32,37,108, 120,82,67,79,86,69,82,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,82,76,69,68,37,100,32,45,119,105,100,116,104,32,37,100,10,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117, 114,101,32,37,108,120,83,67,65,76,69,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109, 99,111,110,102,105,103,117,114,101,32,37,108,120,82,67,79,86,69,82,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,111,117,116,108,105,110,101,32,35,37,54,46,54,120,10,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114, 101,32,37,108,120,80,76,69,68,32,45,119,105,100,116,104,32,37,100,10,0,0,0,0,46,120,37,108,120,46,99,32,105,116,101,109,99,111,110,102,105,103,117,114,101,32,37,108,120,83,67,65,76,69,37,100,32,45,102,105,108,108,32,35,37,54,46,54,120,10,0,115,115,105, 105,115,105,105,115,115,105,105,105,105,105,105,105,105,0,0,0,0,46,120,37,108,120,46,99,32,99,114,101,97,116,101,32,116,101,120,116,32,37,100,32,37,100,32,45,116,101,120,116,32,123,37,115,125,32,45,97,110,99,104,111,114,32,119,32,32,32,32,32,32,32,32, 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,102,111,110,116,32,123,123,37,115,125,32,45,37,100,32,37,115,125,32,45,102,105,108,108,32,35,37,54,46,54,120,32,45,116,97,103,115,32,37,108,120,83,67,65,76,69,37,100,10,0,110,111,115, 110,100,110,111,0,0,112,100,116,107,95,105,101,109,103,117,105,95,100,105,97,108,111,103,32,37,37,115,32,124,118,117,124,32,32,32,32,32,32,32,32,32,32,32,32,32,45,45,45,45,45,45,45,45,100,105,109,101,110,115,105,111,110,115,40,112,105,120,41,40,112,105, 120,41,58,45,45,45,45,45,45,45,45,32,37,100,32,37,100,32,119,105,100,116,104,58,32,37,100,32,37,100,32,104,101,105,103,104,116,58,32,32,32,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,32,48,46,48,32,101,109,112,116,121,32,48,46,48,32,101,109,112, 116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,110,111,95,115,99,97,108,101,32,115,99,97,108,101,32,37,100,32,37,100,32,101,109,112,116,121,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,115,32,37,115,32,32,32,32,32,32,32,32, 32,32,32,32,32,37,115,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,32,32,32,32,32,32,32,32,32,32,32,32,37,100,32,37,100,32,37,100,10,0,0,0,116,105,109,101,115,0,115,99,97,108,101,0,44,0,40,112,111,105,110,116,101,114, 41,0,43,0,42,0,36,37,100,0,97,116,111,109,95,115,116,114,105,110,103,0,98,105,110,98,117,102,95,97,100,100,109,101,115,115,97,103,101,58,32,111,117,116,32,111,102,32,115,112,97,99,101,0,98,105,110,98,117,102,95,97,100,100,109,101,115,115,118,58,32,111, 110,108,121,32,37,100,32,97,108,108,111,119,101,100,0,98,105,110,98,117,102,95,97,100,100,98,105,110,98,117,102,0,36,0,36,37,100,58,32,110,111,116,32,101,110,111,117,103,104,32,97,114,103,117,109,101,110,116,115,32,115,117,112,112,108,105,101,100,0,0, 36,37,100,58,32,115,121,109,98,111,108,32,110,101,101,100,101,100,32,97,115,32,109,101,115,115,97,103,101,32,100,101,115,116,105,110,97,116,105,111,110,0,0,0,36,37,115,58,32,110,111,116,32,101,110,111,117,103,104,32,97,114,103,117,109,101,110,116,115, 32,115,117,112,112,108,105,101,100,0,37,115,58,32,110,111,32,115,117,99,104,32,111,98,106,101,99,116,0,0,0,36,37,100,58,32,97,114,103,117,109,101,110,116,32,110,117,109,98,101,114,32,111,117,116,32,111,102,32,114,97,110,103,101,0,0,0,37,115,58,32,97, 114,103,117,109,101,110,116,32,110,117,109,98,101,114,32,111,117,116,32,111,102,32,114,97,110,103,101,0,98,97,100,32,105,116,101,109,32,105,110,32,98,105,110,98,117,102,0,47,0,111,112,101,110,58,32,0,108,115,101,101,107,58,32,0,114,101,97,100,32,40,37, 100,32,37,108,100,41,32,45,62,32,37,100,10,0,0,0,0,118,50,0,109,97,120,0,115,115,59,0,37,115,0,0,0,0,118,112,97,116,99,104,101,114,0,116,111,111,32,109,97,110,121,32,101,109,98,101,100,100,101,100,32,112,97,116,99,104,101,115,0,0,0,0,115,115,102,102, 102,102,102,59,0,35,80,0,104,105,100,100,101,110,0,110,101,119,111,98,106,0,112,97,116,99,104,101,114,0,112,0,0,0,115,115,102,102,115,115,59,0,110,101,119,101,120,0,116,114,105,103,103,101,114,0,116,0,0,0,102,0,116,97,98,108,101,0,84,65,66,76,69,0,0, 98,117,116,116,111,110,0,115,115,102,102,115,59,0,0,0,0,102,108,111,110,117,109,0,0,0,115,115,102,102,59,0,115,108,105,100,101,114,0,0,0,118,115,108,0,115,115,102,102,115,102,102,102,102,102,102,115,115,115,102,102,102,102,102,102,102,102,102,59,0,0, 0,0,116,103,108,0,105,110,108,101,116,0,105,110,108,101,116,126,0,0,0,0,111,117,116,108,101,116,126,0,117,115,101,114,0,117,115,108,105,100,101,114,0,102,97,115,116,101,110,0,115,115,102,102,102,102,59,0,115,115,102,102,102,59,0,115,115,102,102,102,102, 102,102,59,0,115,115,115,102,102,102,102,102,102,102,102,59,0,97,0,108,0,97,110,121,116,104,105,110,103,0,0,98,0,102,108,111,97,116,0,108,105,115,116,0,0,0,0,115,0,0,99,121,99,108,101,126,0,0,0,37,115,58,32,110,111,32,109,101,116,104,111,100,32,102,111, 114,32,39,37,115,39,0,0,99,108,97,115,115,32,37,115,58,32,115,111,114,114,121,58,32,111,110,108,121,32,37,100,32,97,114,103,115,32,116,121,112,101,99,104,101,99,107,101,100,59,32,117,115,101,32,65,95,71,73,77,77,69,0,0,99,108,97,115,115,32,37,115,58, 32,115,111,114,114,121,58,32,111,110,108,121,32,37,100,32,99,114,101,97,116,105,111,110,32,97,114,103,115,32,97,108,108,111,119,101,100,0,0,119,97,114,110,105,110,103,58,32,115,105,103,110,97,108,32,109,101,116,104,111,100,32,111,118,101,114,114,105, 100,101,115,32,99,108,97,115,115,95,109,97,105,110,115,105,103,110,97,108,105,110,0,37,115,95,97,108,105,97,115,101,100,0,0,119,97,114,110,105,110,103,58,32,99,108,97,115,115,32,39,37,115,39,32,111,118,101,114,119,114,105,116,116,101,110,59,32,111,108, 100,32,111,110,101,32,114,101,110,97,109,101,100,32,39,37,115,39,0,0,0,119,97,114,110,105,110,103,58,32,111,108,100,32,109,101,116,104,111,100,32,39,37,115,39,32,102,111,114,32,99,108,97,115,115,32,39,37,115,39,32,114,101,110,97,109,101,100,32,39,37, 115,39,0,0,0,0,37,115,95,37,115,58,32,111,110,108,121,32,53,32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,116,121,112,101,99,104,101,99,107,97,98,108,101,59,32,117,115,101,32,65,95,71,73,77,77,69,0,0,99,108,97,115,115,95,97,100,100,109,101,116, 104,111,100,58,32,37,115,95,37,115,58,32,98,97,100,32,97,114,103,117,109,101,110,116,32,116,121,112,101,115,10,0,37,115,58,32,102,108,111,97,116,32,117,110,101,120,112,101,99,116,101,100,32,102,111,114,32,115,105,103,110,97,108,32,105,110,112,117,116, 0,0,0,119,97,114,110,105,110,103,58,32,37,115,58,32,102,108,111,97,116,32,109,101,116,104,111,100,32,111,118,101,114,119,114,105,116,116,101,110,0,0,0,115,97,118,101,32,102,117,110,99,116,105,111,110,32,99,97,108,108,101,100,32,98,117,116,32,110,111, 116,32,100,101,102,105,110,101,100,0,0,0,0,109,97,120,105,109,117,109,32,111,98,106,101,99,116,32,108,111,97,100,105,110,103,32,100,101,112,116,104,32,37,100,32,114,101,97,99,104,101,100,0,46,112,97,116,0,0,0,0,37,115,58,32,99,97,110,39,116,32,108,111, 97,100,32,97,98,115,116,114,97,99,116,105,111,110,32,119,105,116,104,105,110,32,105,116,115,101,108,102,10,0,0,0,115,121,109,98,111,108,0,0,111,98,106,101,99,116,109,97,107,101,114,0,99,108,97,115,115,109,97,107,101,114,0,0,66,97,100,32,97,114,103,117, 109,101,110,116,115,32,102,111,114,32,109,101,115,115,97,103,101,32,39,37,115,39,32,116,111,32,111,98,106,101,99,116,32,39,37,115,39,0,112,100,95,118,109,101,115,115,58,32,111,110,108,121,32,49,48,32,97,108,108,111,119,101,100,0,112,100,95,102,111,114, 119,97,114,100,109,101,115,115,0,0,37,115,58,32,110,111,32,109,101,116,104,111,100,32,102,111,114,32,109,101,115,115,97,103,101,32,39,37,115,39,0,0,102,105,108,101,32,102,111,114,109,97,116,32,110,101,119,101,114,32,116,104,97,110,32,116,104,105,115, 32,118,101,114,115,105,111,110,32,111,102,32,80,100,32,40,116,114,121,105,110,103,32,97,110,121,119,97,121,46,46,46,41,0,37,115,58,32,117,110,107,110,111,119,110,32,109,101,115,115,97,103,101,32,37,115,32,0,102,105,108,101,110,97,109,101,0,0,113,117, 105,116,0,118,101,114,105,102,121,113,117,105,116,0,109,101,116,101,114,115,0,107,101,121,0,97,117,100,105,111,115,116,97,116,117,115,0,102,105,110,100,101,114,114,111,114,0,97,117,100,105,111,45,112,114,111,112,101,114,116,105,101,115,0,97,117,100,105, 111,45,100,105,97,108,111,103,0,97,117,100,105,111,45,115,101,116,97,112,105,0,109,105,100,105,45,115,101,116,97,112,105,0,109,105,100,105,45,112,114,111,112,101,114,116,105,101,115,0,109,105,100,105,45,100,105,97,108,111,103,0,115,116,97,114,116,45, 112,97,116,104,45,100,105,97,108,111,103,0,112,97,116,104,45,100,105,97,108,111,103,0,115,116,97,114,116,45,115,116,97,114,116,117,112,45,100,105,97,108,111,103,0,115,116,97,114,116,117,112,45,100,105,97,108,111,103,0,112,105,110,103,0,115,97,118,101, 45,112,114,101,102,101,114,101,110,99,101,115,0,118,101,114,115,105,111,110,0,112,101,114,102,0,112,100,58,32,103,101,116,98,121,116,101,115,40,41,32,102,97,105,108,101,100,32,45,45,32,111,117,116,32,111,102,32,109,101,109,111,114,121,0,0,112,100,58, 32,114,101,115,105,122,101,98,121,116,101,115,40,41,32,102,97,105,108,101,100,32,45,45,32,111,117,116,32,111,102,32,109,101,109,111,114,121,0,0,0,105,110,108,101,116,58,32,101,120,112,101,99,116,101,100,32,39,37,115,39,32,98,117,116,32,103,111,116,32, 39,37,115,39,0,0,115,116,97,99,107,32,111,118,101,114,102,108,111,119,0,105,110,108,101,116,95,103,101,116,115,105,103,110,97,108,105,110,100,101,120,0,0,112,100,95,110,101,119,58,32,97,112,112,97,114,101,110,116,108,121,32,99,97,108,108,101,100,32,98, 101,102,111,114,101,32,115,101,116,117,112,32,114,111,117,116,105,110,101,0,98,105,110,100,108,105,115,116,0,37,115,58,32,99,111,117,108,100,110,39,116,32,117,110,98,105,110,100,0,119,97,114,110,105,110,103,58,32,37,115,58,32,109,117,108,116,105,112, 108,121,32,100,101,102,105,110,101,100,0,103,115,116,97,99,107,95,112,111,112,0,0,0,0,37,50,100,32,37,56,100,32,37,56,100,32,37,56,100,32,37,56,100,32,37,56,100,32,37,56,100,32,37,56,100,32,37,56,100,0,100,115,112,32,37,100,44,32,112,111,108,108,103, 117,105,32,37,100,44,32,110,111,116,104,105,110,103,32,37,100,0,117,110,107,110,111,119,110,0,65,68,67,32,98,108,111,99,107,101,100,0,68,65,67,32,98,108,111,99,107,101,100,0,65,47,68,47,65,32,115,121,110,99,0,100,97,116,97,32,108,97,116,101,0,97,117, 100,105,111,32,73,47,79,32,101,114,114,111,114,32,104,105,115,116,111,114,121,58,0,115,101,99,111,110,100,115,32,97,103,111,9,101,114,114,111,114,32,116,121,112,101,0,37,57,46,50,102,9,37,115,0,112,100,116,107,95,112,100,95,100,105,111,32,49,10,0,112, 100,116,107,95,112,100,95,100,105,111,32,48,10,0,112,100,116,107,95,112,100,95,109,101,116,101,114,115,32,37,100,32,37,100,32,37,100,32,37,100,10,0,0,115,111,114,114,121,44,32,99,97,110,39,116,32,116,117,114,110,32,111,102,102,32,99,97,108,108,98,97, 99,107,115,32,121,101,116,59,32,114,101,115,116,97,114,116,32,80,100,0,109,95,112,111,108,108,105,110,103,115,99,104,101,100,117,108,101,114,10,0,97,117,100,105,111,32,73,47,79,32,115,116,117,99,107,46,46,46,32,99,108,111,115,105,110,103,32,97,117,100, 105,111,10,0,0,0,105,110,112,117,116,32,99,104,97,110,110,101,108,115,32,61,32,37,100,44,32,111,117,116,112,117,116,32,99,104,97,110,110,101,108,115,32,61,32,37,100,0,0,0,115,121,115,95,99,108,111,115,101,95,97,117,100,105,111,58,32,117,110,107,110,111, 119,110,32,65,80,73,32,37,100,0,115,101,116,32,112,100,95,119,104,105,99,104,97,112,105,32,48,10,0,117,110,107,110,111,119,110,32,97,117,100,105,111,32,65,80,73,32,115,112,101,99,105,102,105,101,100,0,115,101,116,32,112,100,95,119,104,105,99,104,97,112, 105,32,37,100,10,0,117,110,107,110,111,119,110,32,65,80,73,0,105,110,112,117,116,32,100,101,118,105,99,101,32,35,37,100,0,111,117,116,112,117,116,32,100,101,118,105,99,101,32,35,37,100,0,110,111,32,97,117,100,105,111,32,105,110,112,117,116,32,100,101, 118,105,99,101,115,32,102,111,117,110,100,0,97,117,100,105,111,32,105,110,112,117,116,32,100,101,118,105,99,101,115,58,0,37,100,46,32,37,115,0,110,111,32,97,117,100,105,111,32,111,117,116,112,117,116,32,100,101,118,105,99,101,115,32,102,111,117,110,100, 0,97,117,100,105,111,32,111,117,116,112,117,116,32,100,101,118,105,99,101,115,58,0,65,80,73,32,110,117,109,98,101,114,32,37,100,10,0,0,0,103,108,111,98,97,108,32,97,117,100,105,111,95,105,110,100,101,118,108,105,115,116,59,32,115,101,116,32,97,117,100, 105,111,95,105,110,100,101,118,108,105,115,116,32,123,125,10,0,108,97,112,112,101,110,100,32,97,117,100,105,111,95,105,110,100,101,118,108,105,115,116,32,123,37,115,125,10,0,0,0,103,108,111,98,97,108,32,97,117,100,105,111,95,111,117,116,100,101,118,108, 105,115,116,59,32,115,101,116,32,97,117,100,105,111,95,111,117,116,100,101,118,108,105,115,116,32,123,125,10,0,0,0,108,97,112,112,101,110,100,32,97,117,100,105,111,95,111,117,116,100,101,118,108,105,115,116,32,123,37,115,125,10,0,0,112,100,116,107,95, 97,117,100,105,111,95,100,105,97,108,111,103,32,37,37,115,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32,37,100,32, 37,100,32,37,100,10,0,0,0,119,97,114,110,105,110,103,58,32,97,100,106,117,115,116,105,110,103,32,98,108,111,99,107,115,105,122,101,32,116,111,32,112,111,119,101,114,32,111,102,32,50,58,32,37,100,0,115,121,115,95,97,117,100,105,111,97,112,105,32,37,100, 0,123,32,0,123,100,117,109,109,121,32,37,100,125,32,0,125,0,123,125,0,114,101,115,116,97,114,116,0,78,79,78,69,0,72,79,77,69,0,37,115,47,46,46,47,111,114,103,46,112,117,114,101,100,97,116,97,46,112,100,0,0,37,115,47,76,105,98,114,97,114,121,47,80,114, 101,102,101,114,101,110,99,101,115,47,111,114,103,46,112,117,114,101,100,97,116,97,46,112,100,46,112,108,105,115,116,0,0,0,0,100,101,102,97,117,108,116,115,32,114,101,97,100,32,111,114,103,46,112,117,114,101,100,97,116,97,46,112,100,32,37,115,32,50,62, 32,47,100,101,118,47,110,117,108,108,10,0,0,100,101,102,97,117,108,116,115,32,114,101,97,100,32,37,115,32,37,115,32,50,62,32,47,100,101,118,47,110,117,108,108,10,0,0,0,100,101,102,97,117,108,116,115,32,119,114,105,116,101,32,111,114,103,46,112,117,114, 101,100,97,116,97,46,112,100,32,37,115,32,34,37,115,34,32,50,62,32,47,100,101,118,47,110,117,108,108,10,0,97,117,100,105,111,97,112,105,0,0,0,0,110,111,97,117,100,105,111,105,110,0,0,0,84,114,117,101,0,97,117,100,105,111,105,110,100,101,118,37,100,0, 37,100,32,37,100,0,110,111,97,117,100,105,111,111,117,116,0,97,117,100,105,111,111,117,116,100,101,118,37,100,0,0,97,117,100,105,111,98,117,102,0,99,97,108,108,98,97,99,107,0,110,111,109,105,100,105,105,110,0,109,105,100,105,105,110,100,101,118,37,100, 0,110,111,109,105,100,105,111,117,116,0,109,105,100,105,111,117,116,100,101,118,37,100,0,110,112,97,116,104,0,112,97,116,104,37,100,0,115,116,97,110,100,97,114,100,112,97,116,104,0,118,101,114,98,111,115,101,0,110,108,111,97,100,108,105,98,0,108,111, 97,100,108,105,98,37,100,0,100,101,102,101,97,116,114,116,0,102,108,97,103,115,0,70,97,108,115,101,0,0,115,105,103,97,99,116,105,111,110,0,80,100,58,32,115,105,103,110,97,108,32,37,100,10,0,80,100,58,32,115,121,115,116,101,109,32,99,97,108,108,32,116, 105,109,101,100,32,111,117,116,10,0,37,115,58,32,37,115,32,40,37,100,41,10,0,0,0,0,119,97,114,110,105,110,103,58,32,37,100,32,114,101,109,111,118,101,100,32,102,114,111,109,32,112,111,108,108,32,108,105,115,116,32,98,117,116,32,110,111,116,32,102,111, 117,110,100,0,116,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,0,10,0,114,101,99,118,0,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,103,101,116,117,100,112,0,112,100,58,32,100,114,111,112,112,101,100,32,109,101,115,115,97,103, 101,32,102,114,111,109,32,103,117,105,10,0,112,100,58,32,101,120,105,116,105,110,103,10,0,69,79,70,32,111,110,32,115,111,99,107,101,116,32,37,100,10,0,112,100,32,111,117,116,112,117,116,32,112,105,112,101,0,0,80,100,58,32,99,111,117,108,100,110,39,116, 32,97,108,108,111,99,97,116,101,32,71,85,73,32,98,117,102,102,101,114,10,0,0,0,80,100,58,32,98,117,102,102,101,114,32,115,112,97,99,101,32,119,97,115,110,39,116,32,115,117,102,102,105,99,105,101,110,116,32,102,111,114,32,108,111,110,103,32,71,85,73,32, 115,116,114,105,110,103,10,0,115,121,115,95,118,103,117,105,0,0,0,0,112,100,45,116,111,45,103,117,105,32,115,111,99,107,101,116,0,112,100,116,107,95,112,105,110,103,10,0,0,0,115,111,99,107,101,116,0,108,111,99,97,108,104,111,115,116,0,0,108,111,99,97, 108,104,111,115,116,32,110,111,116,32,102,111,117,110,100,32,40,105,110,101,116,32,112,114,111,116,111,99,111,108,32,110,111,116,32,105,110,115,116,97,108,108,101,100,63,41,10,0,99,111,110,110,101,99,116,105,110,103,32,115,116,114,101,97,109,32,115,111, 99,107,101,116,0,0,0,0,115,101,116,115,111,99,107,111,112,116,32,40,84,67,80,95,78,79,68,69,76,65,89,41,32,102,97,105,108,101,100,10,0,0,0,0,80,100,32,110,101,101,100,115,32,121,111,117,114,32,109,97,99,104,105,110,101,32,116,111,32,98,101,32,99,111, 110,102,105,103,117,114,101,100,32,119,105,116,104,10,0,0,0,0,39,110,101,116,119,111,114,107,105,110,103,39,32,116,117,114,110,101,100,32,111,110,32,40,115,101,101,32,80,100,39,115,32,104,116,109,108,32,100,111,99,32,102,111,114,32,100,101,116,97,105, 108,115,46,41,10,0,112,111,114,116,32,37,100,10,0,0,0,40,100,105,100,32,110,111,116,32,102,105,110,100,32,97,110,32,101,109,98,101,100,100,101,100,32,119,105,115,104,41,0,40,100,105,100,32,110,111,116,32,102,105,110,100,32,97,32,104,111,109,101,32,100, 105,114,101,99,116,111,114,121,41,0,47,65,112,112,108,105,99,97,116,105,111,110,115,47,85,116,105,108,105,116,105,101,115,47,87,105,115,104,46,97,112,112,47,67,111,110,116,101,110,116,115,47,77,97,99,79,83,47,87,105,115,104,0,0,0,0,47,65,112,112,108, 105,99,97,116,105,111,110,115,47,85,116,105,108,105,116,105,101,115,47,87,105,115,104,32,83,104,101,108,108,46,97,112,112,47,67,111,110,116,101,110,116,115,47,77,97,99,79,83,47,87,105,115,104,32,83,104,101,108,108,0,0,0,0,47,65,112,112,108,105,99,97, 116,105,111,110,115,47,87,105,115,104,46,97,112,112,47,67,111,110,116,101,110,116,115,47,77,97,99,79,83,47,87,105,115,104,0,0,47,65,112,112,108,105,99,97,116,105,111,110,115,47,87,105,115,104,32,83,104,101,108,108,46,97,112,112,47,67,111,110,116,101, 110,116,115,47,77,97,99,79,83,47,87,105,115,104,32,83,104,101,108,108,0,47,117,115,114,47,98,105,110,47,119,105,115,104,0,37,115,47,46,46,47,77,97,99,79,83,47,80,100,42,0,0,0,0,37,115,47,65,112,112,108,105,99,97,116,105,111,110,115,47,87,105,115,104, 46,97,112,112,47,67,111,110,116,101,110,116,115,47,77,97,99,79,83,47,87,105,115,104,0,84,114,121,105,110,103,32,87,105,115,104,32,97,116,32,34,37,115,34,10,0,34,37,115,34,32,37,115,47,116,99,108,47,47,112,100,45,103,117,105,46,116,99,108,32,37,100,10, 0,115,121,115,95,115,116,97,114,116,103,117,105,0,115,121,115,95,115,116,97,114,116,103,117,105,32,102,97,105,108,101,100,10,0,45,99,0,115,104,0,47,98,105,110,47,115,104,0,112,100,58,32,101,120,101,99,0,0,119,97,114,110,105,110,103,58,32,104,105,103, 104,32,112,114,105,111,114,105,116,121,32,115,99,104,101,100,117,108,105,110,103,32,102,97,105,108,101,100,10,0,0,0,87,97,105,116,105,110,103,32,102,111,114,32,99,111,110,110,101,99,116,105,111,110,32,114,101,113,117,101,115,116,46,46,46,32,10,0,108, 105,115,116,101,110,0,97,99,99,101,112,116,0,46,46,46,32,99,111,110,110,101,99,116,101,100,10,0,116,101,115,116,52,0,0,112,100,116,107,95,112,100,95,115,116,97,114,116,117,112,32,37,100,32,37,100,32,37,100,32,123,37,115,125,32,37,115,32,37,115,32,123, 37,115,125,32,37,115,10,0,99,108,111,115,105,110,103,32,97,117,100,105,111,46,46,46,10,0,99,108,111,115,105,110,103,32,77,73,68,73,46,46,46,10,0,46,46,46,32,100,111,110,101,46,10,0,101,120,105,116,10,0,0,0,0,37,115,58,32,97,108,114,101,97,100,121,32, 108,111,97,100,101,100,0,95,116,105,108,100,101,0,48,120,37,48,50,120,0,115,101,116,117,112,95,0,95,115,101,116,117,112,0,0,108,111,97,100,95,111,98,106,101,99,116,58,32,83,121,109,98,111,108,32,34,37,115,34,32,110,111,116,32,102,111,117,110,100,0,37, 115,37,115,0,100,108,111,112,101,110,32,102,97,105,108,101,100,32,102,111,114,32,37,115,58,32,37,115,10,0,112,100,95,101,120,116,101,114,110,95,115,99,104,101,100,0,0,0,80,100,45,48,46,52,51,46,48,32,40,34,116,101,115,116,52,34,41,0,103,108,111,98,95, 105,110,105,116,102,114,111,109,103,117,105,0,37,115,58,32,99,97,110,39,116,32,108,111,97,100,32,108,105,98,114,97,114,121,0,45,110,111,112,114,101,102,115,0,37,115,32,99,111,109,112,105,108,101,100,32,37,115,32,37,115,10,0,117,115,97,103,101,58,32,112, 100,32,91,45,102,108,97,103,115,93,32,91,102,105,108,101,93,46,46,46,10,0,10,97,117,100,105,111,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,102,108,97,103,115,58,10,0,0,45,114,32,60,110,62,32,32,32,32,32,32,32,32,32,32,32,45,45,32,115,112, 101,99,105,102,121,32,115,97,109,112,108,101,32,114,97,116,101,10,0,0,0,0,45,97,117,100,105,111,105,110,100,101,118,32,46,46,46,32,32,45,45,32,97,117,100,105,111,32,105,110,32,100,101,118,105,99,101,115,59,32,101,46,103,46,44,32,34,49,44,51,34,32,102, 111,114,32,102,105,114,115,116,32,97,110,100,32,116,104,105,114,100,10,0,0,45,97,117,100,105,111,111,117,116,100,101,118,32,46,46,46,32,45,45,32,97,117,100,105,111,32,111,117,116,32,100,101,118,105,99,101,115,32,40,115,97,109,101,41,10,0,0,0,45,97,117, 100,105,111,100,101,118,32,46,46,46,32,32,32,32,45,45,32,115,112,101,99,105,102,121,32,105,110,112,117,116,32,97,110,100,32,111,117,116,112,117,116,32,116,111,103,101,116,104,101,114,10,0,0,45,105,110,99,104,97,110,110,101,108,115,32,46,46,46,32,32,45, 45,32,97,117,100,105,111,32,105,110,112,117,116,32,99,104,97,110,110,101,108,115,32,40,98,121,32,100,101,118,105,99,101,44,32,108,105,107,101,32,34,50,34,32,111,114,32,34,49,54,44,56,34,41,10,0,0,0,45,111,117,116,99,104,97,110,110,101,108,115,32,46,46, 46,32,45,45,32,110,117,109,98,101,114,32,111,102,32,97,117,100,105,111,32,111,117,116,32,99,104,97,110,110,101,108,115,32,40,115,97,109,101,41,10,0,0,0,0,45,99,104,97,110,110,101,108,115,32,46,46,46,32,32,32,32,45,45,32,115,112,101,99,105,102,121,32, 98,111,116,104,32,105,110,112,117,116,32,97,110,100,32,111,117,116,112,117,116,32,99,104,97,110,110,101,108,115,10,0,45,97,117,100,105,111,98,117,102,32,60,110,62,32,32,32,32,45,45,32,115,112,101,99,105,102,121,32,115,105,122,101,32,111,102,32,97,117, 100,105,111,32,98,117,102,102,101,114,32,105,110,32,109,115,101,99,10,0,0,0,45,98,108,111,99,107,115,105,122,101,32,60,110,62,32,32,32,45,45,32,115,112,101,99,105,102,121,32,97,117,100,105,111,32,73,47,79,32,98,108,111,99,107,32,115,105,122,101,32,105, 110,32,115,97,109,112,108,101,32,102,114,97,109,101,115,10,0,0,45,115,108,101,101,112,103,114,97,105,110,32,60,110,62,32,32,45,45,32,115,112,101,99,105,102,121,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32, 116,111,32,115,108,101,101,112,32,119,104,101,110,32,105,100,108,101,10,0,0,45,110,111,100,97,99,32,32,32,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,97,117,100,105,111,32,111,117,116,112,117,116,10,0,0,45,110,111,97,100,99,32, 32,32,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,97,117,100,105,111,32,105,110,112,117,116,10,0,0,0,45,110,111,97,117,100,105,111,32,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,97,117,100,105,111,32,105, 110,112,117,116,32,97,110,100,32,111,117,116,112,117,116,32,40,45,110,111,115,111,117,110,100,32,105,115,32,115,121,110,111,110,121,109,41,32,10,0,45,108,105,115,116,100,101,118,32,32,32,32,32,32,32,32,32,45,45,32,108,105,115,116,32,97,117,100,105,111, 32,97,110,100,32,77,73,68,73,32,100,101,118,105,99,101,115,10,0,0,0,0,32,32,32,32,32,32,40,100,101,102,97,117,108,116,32,97,117,100,105,111,32,65,80,73,32,102,111,114,32,116,104,105,115,32,112,108,97,116,102,111,114,109,58,32,32,0,100,117,109,109,121, 32,97,117,100,105,111,0,41,10,10,0,10,77,73,68,73,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,102,108,97,103,115,58,10,0,0,0,45,109,105,100,105,105,110,100,101,118,32,46,46,46,32,32,32,45,45,32,109,105,100,105,32,105,110,32,100,101,118,105, 99,101,32,108,105,115,116,59,32,101,46,103,46,44,32,34,49,44,51,34,32,102,111,114,32,102,105,114,115,116,32,97,110,100,32,116,104,105,114,100,10,0,0,0,45,109,105,100,105,111,117,116,100,101,118,32,46,46,46,32,32,45,45,32,109,105,100,105,32,111,117,116, 32,100,101,118,105,99,101,32,108,105,115,116,44,32,115,97,109,101,32,102,111,114,109,97,116,10,0,0,45,109,105,100,105,100,101,118,32,46,46,46,32,32,32,32,32,45,45,32,115,112,101,99,105,102,121,32,45,109,105,100,105,111,117,116,100,101,118,32,97,110,100, 32,45,109,105,100,105,105,110,100,101,118,32,116,111,103,101,116,104,101,114,10,0,0,0,0,45,110,111,109,105,100,105,105,110,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,77,73,68,73,32,105,110,112,117,116,10,0,0,0,0,45,110,111,109, 105,100,105,111,117,116,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,77,73,68,73,32,111,117,116,112,117,116,10,0,0,0,45,110,111,109,105,100,105,32,32,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,77,73,68,73, 32,105,110,112,117,116,32,97,110,100,32,111,117,116,112,117,116,10,0,10,111,116,104,101,114,32,102,108,97,103,115,58,10,0,0,45,112,97,116,104,32,60,112,97,116,104,62,32,32,32,32,32,45,45,32,97,100,100,32,116,111,32,102,105,108,101,32,115,101,97,114,99, 104,32,112,97,116,104,10,0,0,0,0,45,110,111,115,116,100,112,97,116,104,32,32,32,32,32,32,32,45,45,32,100,111,110,39,116,32,115,101,97,114,99,104,32,115,116,97,110,100,97,114,100,32,40,34,101,120,116,114,97,34,41,32,100,105,114,101,99,116,111,114,121, 10,0,0,45,115,116,100,112,97,116,104,32,32,32,32,32,32,32,32,32,45,45,32,115,101,97,114,99,104,32,115,116,97,110,100,97,114,100,32,100,105,114,101,99,116,111,114,121,32,40,116,114,117,101,32,98,121,32,100,101,102,97,117,108,116,41,10,0,0,0,0,45,104,101, 108,112,112,97,116,104,32,60,112,97,116,104,62,32,45,45,32,97,100,100,32,116,111,32,104,101,108,112,32,102,105,108,101,32,115,101,97,114,99,104,32,112,97,116,104,10,0,0,0,45,111,112,101,110,32,60,102,105,108,101,62,32,32,32,32,32,45,45,32,111,112,101, 110,32,102,105,108,101,40,115,41,32,111,110,32,115,116,97,114,116,117,112,10,0,0,0,0,45,108,105,98,32,60,102,105,108,101,62,32,32,32,32,32,32,45,45,32,108,111,97,100,32,111,98,106,101,99,116,32,108,105,98,114,97,114,121,40,115,41,10,0,45,102,111,110, 116,45,115,105,122,101,32,60,110,62,32,32,32,32,32,45,45,32,115,112,101,99,105,102,121,32,100,101,102,97,117,108,116,32,102,111,110,116,32,115,105,122,101,32,105,110,32,112,111,105,110,116,115,10,0,0,45,102,111,110,116,45,102,97,99,101,32,60,110,97,109, 101,62,32,32,45,45,32,115,112,101,99,105,102,121,32,100,101,102,97,117,108,116,32,102,111,110,116,10,0,45,102,111,110,116,45,119,101,105,103,104,116,32,60,110,97,109,101,62,45,45,32,115,112,101,99,105,102,121,32,100,101,102,97,117,108,116,32,102,111, 110,116,32,119,101,105,103,104,116,32,40,110,111,114,109,97,108,32,111,114,32,98,111,108,100,41,10,0,45,118,101,114,98,111,115,101,32,32,32,32,32,32,32,32,32,45,45,32,101,120,116,114,97,32,112,114,105,110,116,111,117,116,32,111,110,32,115,116,97,114, 116,117,112,32,97,110,100,32,119,104,101,110,32,115,101,97,114,99,104,105,110,103,32,102,111,114,32,102,105,108,101,115,10,0,45,118,101,114,115,105,111,110,32,32,32,32,32,32,32,32,32,45,45,32,100,111,110,39,116,32,114,117,110,32,80,100,59,32,106,117, 115,116,32,112,114,105,110,116,32,111,117,116,32,119,104,105,99,104,32,118,101,114,115,105,111,110,32,105,116,32,105,115,32,10,0,0,45,100,32,60,110,62,32,32,32,32,32,32,32,32,32,32,32,45,45,32,115,112,101,99,105,102,121,32,100,101,98,117,103,32,108,101, 118,101,108,10,0,0,0,0,45,110,111,108,111,97,100,98,97,110,103,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,97,108,108,32,108,111,97,100,98,97,110,103,115,10,0,45,115,116,100,101,114,114,32,32,32,32,32,32,32,32,32,32,45,45,32,115,101, 110,100,32,112,114,105,110,116,111,117,116,32,116,111,32,115,116,97,110,100,97,114,100,32,101,114,114,111,114,32,105,110,115,116,101,97,100,32,111,102,32,71,85,73,10,0,45,110,111,103,117,105,32,32,32,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114, 101,115,115,32,115,116,97,114,116,105,110,103,32,116,104,101,32,71,85,73,10,0,0,45,103,117,105,112,111,114,116,32,60,110,62,32,32,32,32,32,45,45,32,99,111,110,110,101,99,116,32,116,111,32,112,114,101,45,101,120,105,115,116,105,110,103,32,71,85,73,32, 111,118,101,114,32,112,111,114,116,32,60,110,62,10,0,0,45,103,117,105,99,109,100,32,34,99,109,100,46,46,46,34,32,45,45,32,115,116,97,114,116,32,97,108,116,101,114,110,97,116,118,101,32,71,85,73,32,112,114,111,103,114,97,109,32,40,101,46,103,46,44,32, 114,101,109,111,116,101,32,118,105,97,32,115,115,104,41,10,0,0,0,0,45,115,101,110,100,32,34,109,115,103,46,46,46,34,32,32,32,45,45,32,115,101,110,100,32,97,32,109,101,115,115,97,103,101,32,97,116,32,115,116,97,114,116,117,112,44,32,97,102,116,101,114, 32,112,97,116,99,104,101,115,32,97,114,101,32,108,111,97,100,101,100,10,0,0,0,0,45,110,111,112,114,101,102,115,32,32,32,32,32,32,32,32,32,45,45,32,115,117,112,112,114,101,115,115,32,108,111,97,100,105,110,103,32,112,114,101,102,101,114,101,110,99,101, 115,32,111,110,32,115,116,97,114,116,117,112,10,0,0,0,0,45,114,116,32,111,114,32,45,114,101,97,108,116,105,109,101,32,45,45,32,117,115,101,32,114,101,97,108,45,116,105,109,101,32,112,114,105,111,114,105,116,121,10,0,45,110,114,116,32,32,32,32,32,32,32, 32,32,32,32,32,32,45,45,32,100,111,110,39,116,32,117,115,101,32,114,101,97,108,45,116,105,109,101,32,112,114,105,111,114,105,116,121,10,0,0,0,45,110,111,115,108,101,101,112,32,32,32,32,32,32,32,32,32,45,45,32,115,112,105,110,44,32,100,111,110,39,116, 32,115,108,101,101,112,32,40,109,97,121,32,108,111,119,101,114,32,108,97,116,101,110,99,121,32,111,110,32,109,117,108,116,105,45,67,80,85,115,41,10,0,0,0,0,45,115,99,104,101,100,108,105,98,32,60,102,105,108,101,62,32,45,45,32,112,108,117,103,32,105,110, 32,101,120,116,101,114,110,97,108,32,115,99,104,101,100,117,108,101,114,10,0,45,101,120,116,114,97,102,108,97,103,115,32,60,115,62,32,32,45,45,32,115,116,114,105,110,103,32,97,114,103,117,109,101,110,116,32,116,111,32,115,101,110,100,32,115,99,104,101, 100,108,105,98,10,0,0,0,45,98,97,116,99,104,32,32,32,32,32,32,32,32,32,32,32,45,45,32,114,117,110,32,111,102,102,45,108,105,110,101,32,97,115,32,97,32,98,97,116,99,104,32,112,114,111,99,101,115,115,10,0,0,0,0,45,110,111,97,117,116,111,112,97,116,99,104, 32,32,32,32,32,45,45,32,100,101,102,101,97,116,32,97,117,116,111,45,112,97,116,99,104,105,110,103,32,110,101,119,32,102,114,111,109,32,115,101,108,101,99,116,101,100,32,111,98,106,101,99,116,115,10,0,46,46,0,0,0,47,108,105,98,47,112,100,0,45,114,0,0, 0,0,45,105,110,99,104,97,110,110,101,108,115,0,45,111,117,116,99,104,97,110,110,101,108,115,0,45,99,104,97,110,110,101,108,115,0,45,115,111,117,110,100,98,117,102,0,45,97,117,100,105,111,98,117,102,0,45,99,97,108,108,98,97,99,107,0,45,98,108,111,99,107, 115,105,122,101,0,45,115,108,101,101,112,103,114,97,105,110,0,45,110,111,100,97,99,0,45,110,111,97,100,99,0,45,110,111,115,111,117,110,100,0,45,110,111,97,117,100,105,111,0,45,110,111,109,105,100,105,105,110,0,45,110,111,109,105,100,105,111,117,116,0, 45,110,111,109,105,100,105,0,45,109,105,100,105,105,110,100,101,118,0,45,109,105,100,105,111,117,116,100,101,118,0,45,109,105,100,105,100,101,118,0,45,112,97,116,104,0,45,110,111,115,116,100,112,97,116,104,0,0,45,104,101,108,112,112,97,116,104,0,45,111, 112,101,110,0,0,45,102,111,110,116,45,115,105,122,101,0,45,102,111,110,116,0,45,102,111,110,116,45,102,97,99,101,0,45,116,121,112,101,102,97,99,101,0,45,102,111,110,116,45,119,101,105,103,104,116,0,45,118,101,114,98,111,115,101,0,45,118,101,114,115,105, 111,110,0,45,100,0,45,110,111,108,111,97,100,98,97,110,103,0,45,110,111,103,117,105,0,45,103,117,105,112,111,114,116,0,45,115,116,100,101,114,114,0,45,103,117,105,99,109,100,0,45,115,101,110,100,0,45,108,105,115,116,100,101,118,0,45,115,99,104,101,100, 108,105,98,0,45,101,120,116,114,97,102,108,97,103,115,0,45,98,97,116,99,104,0,45,110,111,97,117,116,111,112,97,116,99,104,0,45,114,116,0,45,114,101,97,108,116,105,109,101,0,45,110,114,116,0,45,110,111,115,108,101,101,112,0,45,115,111,117,110,100,105, 110,100,101,118,0,45,97,117,100,105,111,105,110,100,101,118,0,45,115,111,117,110,100,111,117,116,100,101,118,0,45,97,117,100,105,111,111,117,116,100,101,118,0,45,115,111,117,110,100,100,101,118,0,45,97,117,100,105,111,100,101,118,0,47,101,120,116,114, 97,0,47,100,111,99,47,53,46,114,101,102,101,114,101,110,99,101,0,115,121,115,95,110,109,105,100,105,105,110,32,37,100,44,32,110,109,105,100,105,105,110,100,101,118,32,37,100,0,126,47,0,0,126,47,76,105,98,114,97,114,121,47,80,100,0,47,76,105,98,114,97, 114,121,47,80,100,0,0,0,0,116,114,105,101,100,32,37,115,59,32,115,116,97,116,32,102,97,105,108,101,100,32,111,114,32,100,105,114,101,99,116,111,114,121,0,116,114,105,101,100,32,37,115,32,97,110,100,32,115,117,99,99,101,101,100,101,100,0,116,114,105,101, 100,32,37,115,32,97,110,100,32,102,97,105,108,101,100,0,46,47,0,45,104,101,108,112,46,112,100,0,0,104,101,108,112,45,0,0,0,0,115,111,114,114,121,44,32,99,111,117,108,100,110,39,116,32,102,105,110,100,32,104,101,108,112,32,112,97,116,99,104,32,102,111, 114,32,34,37,115,34,0,0,0,46,112,100,114,99,0,0,0,114,101,97,100,105,110,103,32,115,116,97,114,116,117,112,32,102,105,108,101,58,32,37,115,0,37,57,57,56,115,0,0,0,115,116,97,114,116,117,112,32,102,105,108,101,32,116,111,111,32,108,111,110,103,59,32,101, 120,116,114,97,32,97,114,103,115,32,100,114,111,112,112,101,100,10,0,115,116,97,114,116,117,112,32,97,114,103,115,32,102,114,111,109,32,82,67,32,102,105,108,101,58,0,0,0,0,110,111,32,82,67,32,102,105,108,101,32,97,114,103,117,109,101,110,116,115,32,102, 111,117,110,100,0,101,114,114,111,114,32,112,97,114,115,105,110,103,32,82,67,32,97,114,103,117,109,101,110,116,115,0,102,108,97,103,115,58,32,37,115,58,32,116,111,111,32,108,111,110,103,0,0,101,114,114,111,114,32,112,97,114,115,105,110,103,32,115,116, 97,114,116,117,112,32,97,114,103,117,109,101,110,116,115,0,115,121,115,95,100,101,99,111,100,101,100,105,97,108,111,103,58,32,37,115,0,115,101,116,32,58,58,116,109,112,95,112,97,116,104,32,123,125,10,0,108,97,112,112,101,110,100,32,58,58,116,109,112, 95,112,97,116,104,32,123,37,115,125,10,0,0,0,0,115,101,116,32,58,58,115,121,115,95,115,101,97,114,99,104,112,97,116,104,32,36,58,58,116,109,112,95,112,97,116,104,10,0,0,0,115,101,116,32,58,58,115,121,115,95,115,116,97,116,105,99,112,97,116,104,32,36, 58,58,116,109,112,95,112,97,116,104,10,0,112,100,116,107,95,112,97,116,104,95,100,105,97,108,111,103,32,37,37,115,32,37,100,32,37,100,10,0,115,101,116,32,58,58,115,116,97,114,116,117,112,95,102,108,97,103,115,32,123,37,115,125,10,0,115,101,116,32,58, 58,115,116,97,114,116,117,112,95,108,105,98,114,97,114,105,101,115,32,123,125,10,0,108,97,112,112,101,110,100,32,58,58,115,116,97,114,116,117,112,95,108,105,98,114,97,114,105,101,115,32,123,37,115,125,10,0,0,0,112,100,116,107,95,115,116,97,114,116,117, 112,95,100,105,97,108,111,103,32,37,37,115,32,37,100,32,34,37,115,34,10,0,0,0,0,58,58,112,100,119,105,110,100,111,119,58,58,112,111,115,116,32,51,32,123,37,115,125,10,0,101,114,114,111,114,58,32,37,115,0,58,58,112,100,119,105,110,100,111,119,58,58,112, 111,115,116,32,49,32,123,37,115,125,10,0,118,101,114,98,111,115,101,40,37,100,41,58,32,37,115,0,58,58,112,100,119,105,110,100,111,119,58,58,112,111,115,116,32,37,100,32,123,37,115,125,10,0,99,111,110,115,105,115,116,101,110,99,121,32,99,104,101,99,107, 32,102,97,105,108,101,100,58,32,37,115,0,0,46,46,46,32,121,111,117,32,109,105,103,104,116,32,98,101,32,97,98,108,101,32,116,111,32,116,114,97,99,107,32,116,104,105,115,32,100,111,119,110,32,102,114,111,109,32,116,104,101,32,70,105,110,100,32,109,101, 110,117,46,0,110,111,32,102,105,110,100,97,98,108,101,32,101,114,114,111,114,32,121,101,116,46,0,108,97,115,116,32,116,114,97,99,107,97,98,108,101,32,101,114,114,111,114,58,0,0,0,98,101,108,108,10,0,97,99,111,117,115,116,105,99,115,46,112,100,0,109,116, 111,102,0,102,116,111,109,0,112,111,119,116,111,100,98,0,114,109,115,116,111,100,98,0,100,98,116,111,112,111,119,0,100,98,116,111,114,109,115,0,99,108,105,112,0,111,112,101,114,97,116,111,114,115,0,111,116,104,101,114,98,105,110,111,112,115,0,109,97, 116,104,0,112,111,119,0,109,105,110,0,61,61,0,33,61,0,62,0,60,0,62,61,0,60,61,0,38,0,38,38,0,124,0,124,124,0,60,60,0,62,62,0,37,0,109,111,100,0,100,105,118,0,115,105,110,0,99,111,115,0,116,97,110,0,97,116,97,110,0,97,116,97,110,50,0,115,113,114,116,0, 101,120,112,0,97,98,115,0,119,114,97,112,0,105,110,116,0,105,0,0,0,115,101,108,0,114,111,117,116,101,0,112,97,99,107,58,32,37,115,58,32,98,97,100,32,116,121,112,101,0,112,97,99,107,58,32,115,116,97,108,101,32,112,111,105,110,116,101,114,0,0,0,0,112,97, 99,107,95,98,97,110,103,58,32,119,97,114,110,105,110,103,58,32,114,101,101,110,116,114,121,32,119,105,116,104,32,112,111,105,110,116,101,114,115,32,117,110,112,114,111,116,101,99,116,101,100,0,112,97,99,107,95,112,111,105,110,116,101,114,58,32,119,114, 111,110,103,32,116,121,112,101,0,112,97,99,107,95,102,108,111,97,116,58,32,119,114,111,110,103,32,116,121,112,101,0,112,97,99,107,95,115,121,109,98,111,108,58,32,119,114,111,110,103,32,116,121,112,101,0,112,97,99,107,0,117,110,112,97,99,107,58,32,37, 115,58,32,98,97,100,32,116,121,112,101,0,117,110,112,97,99,107,58,32,116,121,112,101,32,109,105,115,109,97,116,99,104,0,117,110,112,97,99,107,0,116,114,105,103,103,101,114,58,32,37,115,58,32,98,97,100,32,116,121,112,101,0,117,110,112,97,99,107,58,32, 98,97,100,32,112,111,105,110,116,101,114,0,0,116,114,105,103,103,101,114,58,32,99,97,110,32,111,110,108,121,32,99,111,110,118,101,114,116,32,39,115,39,32,116,111,32,39,98,39,32,111,114,32,39,97,39,0,0,0,115,112,105,103,111,116,0,109,111,115,101,115,0, 98,97,110,103,50,0,117,110,116,105,108,0,45,46,35,48,49,50,51,52,53,54,55,56,57,0,102,103,71,101,69,0,120,88,100,105,111,117,99,0,102,105,108,101,46,37,100,0,0,0,0,109,97,107,101,102,105,108,101,110,97,109,101,0,115,119,97,112,0,102,115,119,97,112,0, 99,104,97,110,103,101,0,118,97,108,117,101,95,114,101,108,101,97,115,101,0,118,97,108,117,101,0,118,0,97,117,100,105,111,32,100,105,97,108,111,103,32,116,111,111,32,108,111,110,103,0,46,103,102,120,115,116,117,98,37,108,120,0,100,101,115,116,114,111, 121,32,46,103,102,120,115,116,117,98,37,108,120,10,0,103,102,120,115,116,117,98,0,101,110,100,0,99,97,110,99,101,108,0,100,37,108,120,0,112,100,116,107,95,111,112,101,110,112,97,110,101,108,32,123,37,115,125,32,123,37,115,125,10,0,111,112,101,110,112, 97,110,101,108,0,112,100,116,107,95,115,97,118,101,112,97,110,101,108,32,123,37,115,125,32,123,37,115,125,10,0,115,97,118,101,112,97,110,101,108,0,107,101,121,117,112,0,107,101,121,110,97,109,101,0,45,110,0,58,32,0,37,115,37,115,98,97,110,103,0,37,115, 37,115,40,103,112,111,105,110,116,101,114,41,0,37,115,37,115,37,103,0,37,115,37,115,37,115,0,108,105,115,116,95,97,108,108,111,99,58,32,111,117,116,32,111,102,32,109,101,109,111,114,121,0,108,105,115,116,32,105,110,108,101,116,0,108,105,115,116,32,97, 112,112,101,110,100,0,108,105,115,116,32,112,114,101,112,101,110,100,0,108,105,115,116,32,115,112,108,105,116,0,108,105,115,116,32,116,114,105,109,0,108,105,115,116,32,108,101,110,103,116,104,0,112,114,101,112,101,110,100,0,115,112,108,105,116,0,116, 114,105,109,0,108,101,110,103,116,104,0,108,105,115,116,32,37,115,58,32,117,110,107,110,111,119,110,32,102,117,110,99,116,105,111,110,0,0,109,105,100,105,105,110,0,109,105,100,105,0,35,109,105,100,105,105,110,0,115,121,115,101,120,105,110,0,35,115,121, 115,101,120,105,110,0,110,111,116,101,105,110,0,35,110,111,116,101,105,110,0,99,116,108,105,110,0,35,99,116,108,105,110,0,112,103,109,105,110,0,35,112,103,109,105,110,0,98,101,110,100,105,110,0,35,98,101,110,100,105,110,0,116,111,117,99,104,105,110,0, 35,116,111,117,99,104,105,110,0,112,111,108,121,116,111,117,99,104,105,110,0,35,112,111,108,121,116,111,117,99,104,105,110,0,109,105,100,105,99,108,107,105,110,0,35,109,105,100,105,99,108,107,105,110,0,109,105,100,105,114,101,97,108,116,105,109,101,105, 110,58,32,119,111,114,107,115,32,117,110,100,101,114,32,77,83,87,32,111,110,108,121,0,109,105,100,105,114,101,97,108,116,105,109,101,105,110,0,35,109,105,100,105,114,101,97,108,116,105,109,101,105,110,0,109,105,100,105,111,117,116,0,110,111,116,101,111, 117,116,0,99,116,108,111,117,116,0,112,103,109,111,117,116,0,98,101,110,100,111,117,116,0,116,111,117,99,104,111,117,116,0,112,111,108,121,116,111,117,99,104,111,117,116,0,109,97,107,101,110,111,116,101,0,0,0,0,115,116,114,105,112,110,111,116,101,0,112, 111,108,121,0,98,97,103,0,102,108,117,115,104,0,114,97,110,100,111,109,0,115,101,101,100,0,110,97,109,101,99,97,110,118,97,115,0,99,111,109,37,100,95,111,112,101,110,10,0,99,111,109,37,100,95,115,101,110,100,32,34,92,37,51,46,51,111,34,10,0,115,101,114, 105,97,108,0,99,112,117,116,105,109,101,0,114,101,97,108,116,105,109,101,0,0,0,0,110,101,116,115,101,110,100,95,99,111,110,110,101,99,116,58,32,97,108,114,101,97,100,121,32,99,111,110,110,101,99,116,101,100,0,0,0,0,98,97,100,32,104,111,115,116,63,10, 0,115,101,116,116,105,110,103,32,83,79,95,66,82,79,65,68,67,65,83,84,0,0,0,0,99,111,110,110,101,99,116,105,110,103,32,116,111,32,112,111,114,116,32,37,100,0,0,110,101,116,115,101,110,100,32,98,108,111,99,107,101,100,32,37,100,32,109,115,101,99,0,110, 101,116,115,101,110,100,0,110,101,116,115,101,110,100,58,32,110,111,116,32,99,111,110,110,101,99,116,101,100,0,0,110,101,116,114,101,99,101,105,118,101,58,32,103,111,116,32,100,111,108,108,97,114,32,115,105,103,110,32,105,110,32,109,101,115,115,97,103, 101,0,110,101,116,114,101,99,101,105,118,101,58,32,97,99,99,101,112,116,32,102,97,105,108,101,100,0,111,108,100,0,0,0,0,115,101,116,115,111,99,107,111,112,116,32,40,83,79,95,82,69,85,83,69,65,68,68,82,41,32,102,97,105,108,101,100,10,0,98,105,110,100, 0,0,0,0,110,101,116,114,101,99,101,105,118,101,0,0,0,0,113,108,105,115,116,58,32,37,115,58,32,110,111,32,115,117,99,104,32,111,98,106,101,99,116,0,99,114,0,0,37,115,58,32,114,101,97,100,32,102,97,105,108,101,100,0,0,0,45,45,45,45,45,45,45,45,45,32,116, 101,120,116,102,105,108,101,32,111,114,32,113,108,105,115,116,32,99,111,110,116,101,110,116,115,58,32,45,45,45,45,45,45,45,45,45,45,45,0,113,108,105,115,116,0,114,101,119,105,110,100,0,0,99,108,101,97,114,0,114,101,97,100,0,116,101,109,112,111,0,116, 101,120,116,102,105,108,101,0,0,0,98,97,110,103,0,0,0,100,101,108,97,121,0,100,101,108,0,0,109,101,116,114,111,0,108,105,110,101,0,0,0,116,105,109,101,114,0,0,0,0,112,105,112,101,58,32,37,115,58,32,98,97,100,32,116,105,109,101,32,100,101,108,97,121,32, 118,97,108,117,101,0,112,105,112,101,58,32,37,115,58,32,98,97,100,32,116,121,112,101,0,112,105,112,101,58,32,115,116,97,108,101,32,112,111,105,110,116,101,114,0,0,0,112,105,112,101,58,32,115,121,109,98,111,108,32,111,114,32,112,111,105,110,116,101,114, 32,105,110,32,116,105,109,101,32,105,110,108,101,116,0,112,105,112,101,58,32,98,97,100,32,112,111,105,110,116,101,114,0,112,105,112,101,0,108,105,98,112,100,95,114,101,99,101,105,118,101,0,0,0,0,0,0,0,0,128,63,0,0,64,192,0,0,0,68,0,0,0,59,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,240,63,0,0,0,160,85,85,197,191,0,0,0,0,0,0,56,65,0,0,0,0,0,0,56,193,0,0,122,68,0,0,0,0,64,140,181,120,29,175,21,68,0,0,0,0,0,64,143,64,110,134,27,240,249,33,25,64,0,0,0,64,111,18,131,58,84,0,128,63,0,0,0,0,0,0,0,0,0,0,224,63,252, 169,241,210,77,98,80,63,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,192,172,210,182,79,201,131,253,59,205,59,127,102,158,160,246,63,0,0,0,63,0,0,0,0,151,209,126,90,251,33,25,64,154,153,153,153,153,153,169,63,0,0,0,0,0,0,36,64,241,104,227,136,181, 248,228,62,0,0,0,0,0,0,52,64,151,209,126,90,251,33,9,64,219,15,201,63,219,15,201,191,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,68,44,71,208,15,201,191,208,15,201,63,97,11,182,186,171,170,42,61,0,0,32,65,208,15,201,64,0,0,128,64,0,0,128,191, 236,120,173,96,110,134,27,240,249,33,25,192,0,0,0,0,0,0,224,191,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,128,187,196,0,96,187,68,0,128,242,67,0,128,89,68,0,0,122,196,0,0,0,0,0,0,0,0,0,0,80,63,0,0,0,0,0,0,248,63,123,91,60,254,3,147,173,63,47, 177,194,80,2,90,32,64,182,1,7,76,218,79,191,63,32,121,28,140,245,79,49,64,0,0,0,0,0,0,89,64,127,135,136,95,28,121,189,63,138,79,56,237,44,95,33,64,127,135,136,95,28,121,205,63,138,79,56,237,44,95,17,64,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0, 56,65,0,0,0,0,0,0,200,65,0,0,0,0,0,244,199,65,208,15,73,60,140,249,162,66,0,0,128,48,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,224,64,0,0,0,0,0,0,96,65,0,0,0,0,192,255,223,64,0,0,0,71,0,0,0,75,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,79,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,191,0,0,200,66,0,0,0,65,0,0,0,79,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,160,65,0,0,150,67,0,0,32,67,0,0,176,65,0,0,225, 67,0,0,22,68,0,0,200,67,0,0,72,66,0,128,9,68,0,0,175,67,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,67,0,0,64,64,0,0,0,0,0,0,208,63,0,0,0,0,0,0,20,64,123,20,174,71,225,122,132,63,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,79,0,0,0,0,0,0,0,0,0,0,0,0,194,189,240,252,0,0,0,0,174,71,225,122,20,174,239,63,57,238,148,14,214,255,223,63,187,189,215,217,223,124,219,61,187,189,215,217,223,124,219,189,0,0,0,0,0,192,95,64,0,0,0,0,0,0,73,64,0,0,0, 0,0,112,167,64,27,105,87,67,184,23,158,199,27,105,87,67,184,23,158,71,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,236,120,173,224,0,0,160,66,0,0,0,0,0,0,94,64,123,20,174,71,225,122,132,191,45,67,28,235,226,54,26,63,154,153,153,153,153,249,88,192,0,0,0,0,64,136, 195,64,0,0,64,65,0,0,202,194,0,0,22,67,0,0,0,0,0,0,0,0,0,0,16,193,0,0,0,0,0,0,32,64,0,0,0,0,0,0,32,192,43,135,22,217,206,247,239,63,0,0,0,0,160,234,106,65,141,237,181,160,247,198,176,62,0,0,0,0,128,132,46,65,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,128,48,0,0,128,32,14,0,128,32,200,3,128,32,8,250,128,32,8,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5,74,172,174,66,0,0,0,0,168,198,75,55,137,213,85,64,255,255,255,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,65,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,128,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,61,123,20,174,71,225,122,116,63,8,229,60,30,0,0,0,0,35,66,146,12,161,156,199,59,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,149,214,38,232,11,46,17,62,0,254,255,70,0,1,0,56,255,37,232,146,9,0,255, 37,236,146,9,0,255,37,240,146,9,0,255,37,244,146,9,0,255,37,248,146,9,0,255,37,252,146,9,0,255,37,0,147,9,0,255,37,4,147,9,0,255,37,8,147,9,0,255,37,12,147,9,0,255,37,16,147,9,0,255,37,20,147,9,0,255,37,24,147,9,0,255,37,28,147,9,0,255,37,32,147,9,0, 255,37,36,147,9,0,255,37,40,147,9,0,255,37,44,147,9,0,255,37,48,147,9,0,255,37,52,147,9,0,255,37,56,147,9,0,255,37,60,147,9,0,255,37,64,147,9,0,255,37,68,147,9,0,255,37,72,147,9,0,255,37,76,147,9,0,255,37,80,147,9,0,255,37,84,147,9,0,255,37,88,147,9, 0,255,37,92,147,9,0,255,37,96,147,9,0,255,37,100,147,9,0,255,37,104,147,9,0,255,37,108,147,9,0,255,37,112,147,9,0,255,37,116,147,9,0,255,37,120,147,9,0,255,37,124,147,9,0,255,37,128,147,9,0,255,37,132,147,9,0,255,37,136,147,9,0,255,37,140,147,9,0,255, 37,144,147,9,0,255,37,148,147,9,0,255,37,152,147,9,0,255,37,156,147,9,0,255,37,160,147,9,0,255,37,164,147,9,0,255,37,168,147,9,0,255,37,172,147,9,0,255,37,176,147,9,0,255,37,180,147,9,0,255,37,184,147,9,0,255,37,188,147,9,0,255,37,192,147,9,0,255,37, 196,147,9,0,255,37,200,147,9,0,255,37,204,147,9,0,255,37,208,147,9,0,255,37,212,147,9,0,255,37,216,147,9,0,255,37,220,147,9,0,255,37,224,147,9,0,255,37,228,147,9,0,255,37,232,147,9,0,255,37,236,147,9,0,255,37,240,147,9,0,255,37,244,147,9,0,255,37,248, 147,9,0,255,37,252,147,9,0,255,37,0,148,9,0,255,37,4,148,9,0,255,37,8,148,9,0,255,37,12,148,9,0,255,37,16,148,9,0,255,37,20,148,9,0,255,37,24,148,9,0,255,37,28,148,9,0,255,37,32,148,9,0,255,37,36,148,9,0,255,37,40,148,9,0,255,37,44,148,9,0,255,37,48, 148,9,0,255,37,52,148,9,0,255,37,56,148,9,0,255,37,60,148,9,0,255,37,64,148,9,0,255,37,68,148,9,0,255,37,72,148,9,0,255,37,76,148,9,0,255,37,80,148,9,0,255,37,84,148,9,0,255,37,88,148,9,0,255,37,92,148,9,0,255,37,96,148,9,0,255,37,100,148,9,0,255,37, 104,148,9,0,255,37,108,148,9,0,255,37,112,148,9,0,255,37,116,148,9,0,255,37,120,148,9,0,255,37,124,148,9,0,255,37,128,148,9,0,255,37,132,148,9,0,255,37,136,148,9,0,255,37,140,148,9,0,255,37,144,148,9,0,255,37,148,148,9,0,255,37,152,148,9,0,255,37,156, 148,9,0,255,37,160,148,9,0,104,4,144,9,0,255,37,0,144,9,0,144,104,23,1,0,0,233,234,255,255,255,104,255,0,0,0,233,224,255,255,255,104,233,0,0,0,233,214,255,255,255,104,211,0,0,0,233,204,255,255,255,104,190,0,0,0,233,194,255,255,255,104,169,0,0,0,233,184, 255,255,255,104,0,0,0,0,233,174,255,255,255,104,16,0,0,0,233,164,255,255,255,104,35,0,0,0,233,154,255,255,255,104,56,0,0,0,233,144,255,255,255,104,78,0,0,0,233,134,255,255,255,104,99,0,0,0,233,124,255,255,255,104,122,0,0,0,233,114,255,255,255,104,144, 0,0,0,233,104,255,255,255,104,37,1,0,0,233,94,255,255,255,104,61,1,0,0,233,84,255,255,255,104,75,1,0,0,233,74,255,255,255,104,90,1,0,0,233,64,255,255,255,104,104,1,0,0,233,54,255,255,255,104,117,1,0,0,233,44,255,255,255,104,130,1,0,0,233,34,255,255,255, 104,143,1,0,0,233,24,255,255,255,104,165,1,0,0,233,14,255,255,255,104,179,1,0,0,233,4,255,255,255,104,194,1,0,0,233,250,254,255,255,104,217,1,0,0,233,240,254,255,255,104,242,1,0,0,233,230,254,255,255,104,254,1,0,0,233,220,254,255,255,104,227,3,0,0,233, 210,254,255,255,104,215,3,0,0,233,200,254,255,255,104,191,3,0,0,233,190,254,255,255,104,170,3,0,0,233,180,254,255,255,104,155,3,0,0,233,170,254,255,255,104,134,3,0,0,233,160,254,255,255,104,112,3,0,0,233,150,254,255,255,104,97,3,0,0,233,140,254,255,255, 104,82,3,0,0,233,130,254,255,255,104,58,3,0,0,233,120,254,255,255,104,36,3,0,0,233,110,254,255,255,104,21,3,0,0,233,100,254,255,255,104,8,3,0,0,233,90,254,255,255,104,250,2,0,0,233,80,254,255,255,104,227,2,0,0,233,70,254,255,255,104,213,2,0,0,233,60, 254,255,255,104,197,2,0,0,233,50,254,255,255,104,184,2,0,0,233,40,254,255,255,104,161,2,0,0,233,30,254,255,255,104,147,2,0,0,233,20,254,255,255,104,123,2,0,0,233,10,254,255,255,104,42,4,0,0,233,0,254,255,255,104,57,4,0,0,233,246,253,255,255,104,79,4, 0,0,233,236,253,255,255,104,94,4,0,0,233,226,253,255,255,104,109,4,0,0,233,216,253,255,255,104,132,4,0,0,233,206,253,255,255,104,144,4,0,0,233,196,253,255,255,104,157,4,0,0,233,186,253,255,255,104,186,4,0,0,233,176,253,255,255,104,221,4,0,0,233,166,253, 255,255,104,249,4,0,0,233,156,253,255,255,104,28,5,0,0,233,146,253,255,255,104,51,5,0,0,233,136,253,255,255,104,81,5,0,0,233,126,253,255,255,104,111,5,0,0,233,116,253,255,255,104,138,5,0,0,233,106,253,255,255,104,165,5,0,0,233,96,253,255,255,104,27,4, 0,0,233,86,253,255,255,104,12,4,0,0,233,76,253,255,255,104,254,3,0,0,233,66,253,255,255,104,241,3,0,0,233,56,253,255,255,104,195,6,0,0,233,46,253,255,255,104,210,6,0,0,233,36,253,255,255,104,222,6,0,0,233,26,253,255,255,104,235,6,0,0,233,16,253,255,255, 104,2,7,0,0,233,6,253,255,255,104,19,7,0,0,233,252,252,255,255,104,34,7,0,0,233,242,252,255,255,104,49,7,0,0,233,232,252,255,255,104,70,7,0,0,233,222,252,255,255,104,85,7,0,0,233,212,252,255,255,104,100,7,0,0,233,202,252,255,255,104,126,7,0,0,233,192, 252,255,255,104,141,7,0,0,233,182,252,255,255,104,157,7,0,0,233,172,252,255,255,104,173,7,0,0,233,162,252,255,255,104,189,7,0,0,233,152,252,255,255,104,204,7,0,0,233,142,252,255,255,104,219,7,0,0,233,132,252,255,255,104,243,7,0,0,233,122,252,255,255, 104,1,8,0,0,233,112,252,255,255,104,19,8,0,0,233,102,252,255,255,104,108,2,0,0,233,92,252,255,255,104,95,2,0,0,233,82,252,255,255,104,83,2,0,0,233,72,252,255,255,104,70,2,0,0,233,62,252,255,255,104,56,2,0,0,233,52,252,255,255,104,42,2,0,0,233,42,252, 255,255,104,27,2,0,0,233,32,252,255,255,104,11,2,0,0,233,22,252,255,255,104,195,5,0,0,233,12,252,255,255,104,224,5,0,0,233,2,252,255,255,104,245,5,0,0,233,248,251,255,255,104,19,6,0,0,233,238,251,255,255,104,41,6,0,0,233,228,251,255,255,104,57,6,0,0, 233,218,251,255,255,104,79,6,0,0,233,208,251,255,255,104,103,6,0,0,233,198,251,255,255,104,125,6,0,0,233,188,251,255,255,104,143,6,0,0,233,178,251,255,255,104,162,6,0,0,233,168,251,255,255,104,177,6,0,0,233,158,251,255,255,0,0,0,0,1,0,0,0,28,0,0,0,0, 0,0,0,28,0,0,0,0,0,0,0,28,0,0,0,2,0,0,0,0,0,0,0,52,0,0,0,52,0,0,0,249,143,9,0,0,0,0,0,52,0,0,0,3,0,0,0,12,0,1,0,16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,150,9,0,52,212,9,0,168,150,9,0,144,150,9,0,224,211,9,0,177,12,0,0,176,213,9,0, 172,213,9,0,145,143,0,0,70,41,1,0,0,0,0,0,244,211,9,0,232,211,9,0,4,212,9,0,0,212,9,0,240,211,9,0,236,211,9,0,8,212,9,0,248,211,9,0,228,211,9,0,252,211,9,0,12,212,9,0,28,212,9,0,36,212,9,0,16,212,9,0,32,212,9,0,40,212,9,0,24,212,9,0,20,212,9,0,48,212, 9,0,44,212,9,0,0,0,0,0,160,212,9,0,84,212,9,0,164,212,9,0,96,162,9,0,196,162,9,0,8,151,9,0,228,150,9,0,100,160,9,0,136,16,2,0,244,16,2,0,56,212,9,0,220,221,9,0,218,16,2,0,27,16,2,0,163,91,3,0,253,163,4,0,188,213,9,0,162,251,2,0,20,42,5,0,84,41,5,0,92, 212,9,0,128,48,5,0,148,40,5,0,108,160,9,0,52,40,5,0,73,32,5,0,100,212,9,0,244,40,5,0,228,41,5,0,31,245,2,0,179,37,5,0,196,40,5,0,88,212,9,0,208,221,9,0,100,213,9,0,180,41,5,0,224,212,9,0,196,73,5,0,36,41,5,0,96,212,9,0,104,213,9,0,132,41,5,0,148,73,5, 0,100,40,5,0,116,213,9,0,60,150,9,0,77,42,2,0,240,212,9,0,199,36,2,0,245,39,2,0,104,212,9,0,180,150,9,0,132,212,9,0,168,212,9,0,196,212,9,0,156,150,9,0,216,150,9,0,224,221,9,0,236,212,9,0,228,212,9,0,232,212,9,0,108,213,9,0,212,221,9,0,244,212,9,0,132, 150,9,0,16,213,9,0,44,213,9,0,192,148,9,0,72,213,9,0,160,154,9,0,32,155,9,0,192,158,9,0,192,150,9,0,220,81,5,0,77,50,7,0,246,185,7,0,180,43,7,0,236,98,7,0,43,233,8,0,187,188,2,0,186,42,3,0,59,233,8,0,112,213,9,0,78,12,7,0,98,187,7,0,51,233,8,0,250,183, 6,0,70,185,7,0,22,188,7,0,95,56,7,0,18,75,3,0,84,139,2,0,144,70,7,0,55,198,7,0,70,114,7,0,86,16,7,0,238,53,7,0,153,127,7,0,128,213,9,0,168,213,9,0,144,213,9,0,120,213,9,0,136,213,9,0,124,213,9,0,156,213,9,0,152,213,9,0,160,213,9,0,228,221,9,0,164,213, 9,0,192,213,9,0,16,161,9,0,232,221,9,0,128,163,9,0,180,213,9,0,240,221,9,0,188,161,9,0,216,221,9,0,184,213,9,0,200,221,9,0,192,161,9,0,204,221,9,0,236,221,9,0,252,221,9,0,224,213,9,0,224,217,9,0,136,160,9,0,200,217,9,0,120,151,9,0,0,0,0,0,244,221,9,0, 248,221,9,0,16,222,9,0,12,222,9,0,0,222,9,0,8,222,9,0,4,222,9,0,20,222,9,0,62,90,7,0,172,163,9,0,180,163,9,0,168,163,9,0,164,163,9,0,160,163,9,0,184,163,9,0,176,163,9,0,148,163,9,0,140,163,9,0,144,163,9,0,156,163,9,0,152,163,9,0,196,161,9,0,200,161,9, 0,146,139,9,0,156,139,9,0,166,139,9,0,176,139,9,0,186,139,9,0,196,139,9,0,206,139,9,0,216,139,9,0,136,139,9,0,126,139,9,0,116,139,9,0,106,139,9,0,96,139,9,0,86,139,9,0,226,139,9,0,236,139,9,0,246,139,9,0,0,140,9,0,10,140,9,0,20,140,9,0,30,140,9,0,40, 140,9,0,50,140,9,0,60,140,9,0,70,140,9,0,80,140,9,0,90,140,9,0,100,140,9,0,42,143,9,0,32,143,9,0,22,143,9,0,12,143,9,0,2,143,9,0,248,142,9,0,238,142,9,0,228,142,9,0,54,141,9,0,44,141,9,0,34,141,9,0,24,141,9,0,14,141,9,0,4,141,9,0,250,140,9,0,240,140, 9,0,230,140,9,0,220,140,9,0,210,140,9,0,200,140,9,0,190,140,9,0,180,140,9,0,170,140,9,0,160,140,9,0,150,140,9,0,140,140,9,0,130,140,9,0,120,140,9,0,110,140,9,0,8,142,9,0,254,141,9,0,244,141,9,0,234,141,9,0,64,141,9,0,74,141,9,0,84,141,9,0,94,141,9,0, 104,141,9,0,114,141,9,0,124,141,9,0,134,141,9,0,144,141,9,0,154,141,9,0,164,141,9,0,174,141,9,0,184,141,9,0,194,141,9,0,204,141,9,0,214,141,9,0,224,141,9,0,52,143,9,0,62,143,9,0,72,143,9,0,82,143,9,0,92,143,9,0,102,143,9,0,112,143,9,0,122,143,9,0,132, 143,9,0,142,143,9,0,152,143,9,0,162,143,9,0,18,142,9,0,28,142,9,0,38,142,9,0,48,142,9,0,58,142,9,0,68,142,9,0,78,142,9,0,88,142,9,0,98,142,9,0,108,142,9,0,118,142,9,0,128,142,9,0,138,142,9,0,148,142,9,0,158,142,9,0,168,142,9,0,178,142,9,0,188,142,9,0, 198,142,9,0,208,142,9,0,218,142,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,13,9,0,45,13,9,0,44,13,9,0,44,13,9,0,44,13,9,0,50,13,9,0,44,13,9,0,44,13,9,0,44,13,9,0,54,13,9,0,44,13,9,0,44,13,9,0,44,13,9,0,58,13,9,0,44,13,9,0,44,13,9, 0,44,13,9,0,62,13,9,0,44,13,9,0,44,13,9,0,44,13,9,0,66,13,9,0,44,13,9,0,44,13,9,0,44,13,9,0,69,13,9,0,44,13,9,0,44,13,9,0,44,13,9,0,72,13,9,0,44,13,9,0,44,13,9,0,44,13,9,0,77,13,9,0,44,13,9,0,44,13,9,0,44,13,9,0,80,13,9,0,44,13,9,0,44,13,9,0,44,13,9, 0,83,13,9,0,44,13,9,0,44,13,9,0,44,13,9,0,44,13,9,0,44,13,9,0,116,74,2,0,181,74,2,0,189,74,2,0,203,74,2,0,211,74,2,0,219,74,2,0,7,75,2,0,8,151,9,0,8,151,9,0,131,28,9,0,140,28,9,0,146,28,9,0,164,28,9,0,169,28,9,0,175,28,9,0,182,28,9,0,61,133,3,0,101,135, 3,0,7,136,3,0,26,137,3,0,99,137,3,0,177,116,3,0,21,140,3,0,128,165,4,0,98,169,4,0,140,168,4,0,1,172,4,0,9,172,4,0,17,172,4,0,73,176,4,0,6,219,4,0,226,220,4,0,234,220,4,0,242,220,4,0,76,222,4,0,196,228,4,0,10,244,4,0,97,249,4,0,105,249,4,0,113,249,4,0, 121,249,4,0,241,10,5,0,151,17,5,0,124,20,5,0,132,20,5,0,172,20,5,0,212,20,5,0,35,29,5,0,116,75,5,0,31,77,5,0,2,78,5,0,172,78,5,0,253,78,5,0,29,79,5,0,62,80,5,0,116,75,5,0,222,66,5,0,2,78,5,0,172,78,5,0,253,78,5,0,75,67,5,0,62,80,5,0,0,0,0,0,0,0,0,0,0, 0,0,0,8,151,9,0,146,73,9,0,0,0,0,0,0,0,0,0,6,89,9,0,0,0,0,0,0,0,0,0,136,91,9,0,0,0,0,0,0,0,0,0,36,130,9,0,0,0,0,0,0,0,0,0,12,89,9,0,0,0,0,0,0,0,0,0,250,88,9,0,0,0,0,0,0,0,0,0,24,3,9,0,0,0,0,0,0,0,0,0,155,53,9,0,0,0,0,0,0,0,0,0,132,24,9,0,0,0,0,0,0,0, 0,0,67,56,9,0,0,0,0,0,0,0,0,0,12,61,9,0,0,0,0,0,0,0,0,0,44,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,150,9,0,144,150,9,0,156,150,9,0,168,150,9,0,180,150,9,0,192,150,9,0,204,150,9,0,216,150,9,0,228,150,9,0,240,150,9,0,252,150,9,0,8,151,9,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,94,9,0,199,94,9,0,211,94,9,0,223,94,9,0,234,94,9,0,8,151,9,0,72,115,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,105,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,106, 9,0,42,106,9,0,72,106,9,0,116,106,9,0,188,106,9,0,236,106,9,0,36,107,9,0,112,107,9,0,172,107,9,0,232,107,9,0,36,108,9,0,104,108,9,0,176,108,9,0,220,108,9,0,8,109,9,0,84,109,9,0,136,109,9,0,182,109,9,0,194,109,9,0,198,109,9,0,228,109,9,0,48,110,9,0,104, 110,9,0,172,110,9,0,216,110,9,0,4,111,9,0,56,111,9,0,72,111,9,0,120,111,9,0,184,111,9,0,252,111,9,0,48,112,9,0,96,112,9,0,140,112,9,0,200,112,9,0,244,112,9,0,56,113,9,0,132,113,9,0,204,113,9,0,248,113,9,0,36,114,9,0,104,114,9,0,152,114,9,0,216,114,9, 0,36,115,9,0,112,115,9,0,176,115,9,0,220,115,9,0,16,116,9,0,92,116,9,0,140,116,9,0,196,116,9,0,252,116,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,139,10,63,247,129,2,63,141,158,0,63,133,39,0,63,223,9,0,63,120,2,0,63,158,0,0,63,39,0,0,63,10,0,0,63, 2,0,0,63,1,0,0,63,0,0,0,63,0,0,0,63,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,4,53,63,94,131,108,63,190,20,123,63,109,196,126,63,15,177,127,63,67,236,127,63,17,251,127,63,196,254,127,63,177,255,127,63,236,255, 127,63,251,255,127,63,255,255,127,63,0,0,128,63,0,0,128,63,0,0,128,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,63,243,4,53,63,21,239,195,62,194,197,71,62,54,189,200,61,48,251,72,61,176,10,201,60,144,14,73,60,136,15,201, 59,198,15,73,59,213,15,201,58,217,15,73,58,218,15,201,57,219,15,73,57,219,15,201,56,219,15,73,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,4,53,63,94,131,108,63,190,20,123,63,109,196,126,63,15,177,127,63,67,236,127,63, 17,251,127,63,196,254,127,63,177,255,127,63,236,255,127,63,251,255,127,63,255,255,127,63,0,0,128,63,0,0,128,63,0,0,128,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,63,243,4,53,63,21,239,195,62,194,197,71,62,54,189,200,61, 48,251,72,61,176,10,201,60,144,14,73,60,136,15,201,59,198,15,73,59,213,15,201,58,217,15,73,58,218,15,201,57,219,15,73,57,219,15,201,56,219,15,73,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,1,0,0,64,14,172,68,0,0,0,0,0,0,83,83,78,68,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,252,252,0,160,160,160,0,64,64,64,0,224,224,252,0,192,224,252,0,200,252,252,0,216,252,216,0,252,252,216,0,252,228,220,0,252,216,248,0,224,224,224,0,124,124,124,0,32,32,32,0,40,40,252,0,68,172,252,0,40,232,232,0, 20,232,20,0,244,244,40,0,252,80,60,0,240,48,244,0,188,188,188,0,96,96,96,0,0,0,0,0,8,8,140,0,0,48,88,0,20,40,120,0,20,80,40,0,80,68,0,0,136,20,0,0,80,0,88,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0, 0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0, 2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2, 0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,4,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0, 0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0, 0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0, 0,14,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,17,0,0,0,17,0,0,0,17,0,0,0,18,0,0,0,18,0,0,0,18,0,0,0,19,0,0,0,19,0,0,0,19,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,21,0,0,0,21,0,0,0,22,0,0,0,22,0, 0,0,23,0,0,0,23,0,0,0,24,0,0,0,24,0,0,0,25,0,0,0,26,0,0,0,27,0,0,0,28,0,0,0,29,0,0,0,30,0,0,0,31,0,0,0,32,0,0,0,33,0,0,0,33,0,0,0,34,0,0,0,34,0,0,0,35,0,0,0,35,0,0,0,36,0,0,0,36,0,0,0,37,0,0,0,37,0,0,0,37,0,0,0,38,0,0,0,38,0,0,0,38,0,0,0,39,0,0,0,39, 0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0,16,0,0,0, 16,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,15,0,0,0,14,0,0,0,14,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,13,0,0,0,19,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,78,32,99,97,110,118,97,115,32,48,32,48,32,52,53,56,32,49,53,51,32,49,48,59,10,35,88,32,111,98,106,32,52,51,32,51,49,32,115,116,114,117,99,116,32,95,102,108,111,97,116,95,97,114,114,97,121,32,97,114,114,97,121,32,122, 32,102,108,111,97,116,32,102,108,111,97,116,32,115,116,121,108,101,10,102,108,111,97,116,32,108,105,110,101,119,105,100,116,104,32,102,108,111,97,116,32,99,111,108,111,114,59,10,35,88,32,111,98,106,32,52,51,32,55,48,32,112,108,111,116,32,122,32,99,111, 108,111,114,32,108,105,110,101,119,105,100,116,104,32,48,32,48,32,49,32,115,116,121,108,101,59,10,0,35,78,32,99,97,110,118,97,115,32,48,32,48,32,52,53,56,32,49,53,51,32,49,48,59,10,35,88,32,111,98,106,32,51,57,32,50,54,32,115,116,114,117,99,116,32,102, 108,111,97,116,32,102,108,111,97,116,32,121,59,10,0,0,0,16,39,0,0,232,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,203,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,10,0,0,0,20,0,0,0,30,0,0,0,50,0,0,0,100, 0,0,0,232,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,167,171,170,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,8,0,0,0,5,0,0,0,9,0, 0,0,10,0,0,0,6,0,0,0,10,0,0,0,12,0,0,0,7,0,0,0,13,0,0,0,14,0,0,0,9,0,0,0,17,0,0,0,16,0,0,0,10,0,0,0,19,0,0,0,24,0,0,0,15,0,0,0,28,0,0,0,24,0,0,0,15,0,0,0,28,0,0,0,46,100,95,102,97,116,0,46,112,100,95,100,97,114,119,105,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,58,48,53,58,53,49,0,77,97,114,32,50,55,32,50,48,49,49,0,0,0,0,255,255,255,255,0,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,111,110,97,99,111,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,111,114,109,97,108,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255, 255,255,8,0,0,0,6,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,7,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,9,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,10,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,15,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,36,0,0,0,25,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,27,93,205,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,33, 8,90,65,96,20,65,96,128,1,65,96,134,1,71,96,109,67,82,66,128,10,8,112,20,92,69,87,72,112,28,96,53,18,32,178,145,38,128,110,2,112,1,112,2,81,0,17,64,95,95,68,101,102,97,117,108,116,82,117,110,101,76,111,99,97,108,101,0,81,113,136,5,144,64,95,95,95,115, 116,97,99,107,95,99,104,107,95,103,117,97,114,100,0,113,132,1,144,64,95,95,95,115,116,100,101,114,114,112,0,113,48,144,64,100,121,108,100,95,115,116,117,98,95,98,105,110,100,101,114,0,113,0,144,0,113,232,5,17,64,95,95,95,101,114,114,111,114,0,144,0,113, 236,5,17,64,95,95,95,109,97,115,107,114,117,110,101,0,144,0,113,240,5,17,64,95,95,95,109,101,109,99,112,121,95,99,104,107,0,144,0,113,244,5,17,64,95,95,95,109,101,109,109,111,118,101,95,99,104,107,0,144,0,113,248,5,17,64,95,95,95,109,101,109,115,101, 116,95,99,104,107,0,144,0,113,252,5,17,64,95,95,95,115,110,112,114,105,110,116,102,95,99,104,107,0,144,0,113,128,6,17,64,95,95,95,115,112,114,105,110,116,102,95,99,104,107,0,144,0,113,132,6,17,64,95,95,95,115,116,97,99,107,95,99,104,107,95,102,97,105, 108,0,144,0,113,136,6,17,64,95,95,95,115,116,114,99,97,116,95,99,104,107,0,144,0,113,140,6,17,64,95,95,95,115,116,114,99,112,121,95,99,104,107,0,144,0,113,144,6,17,64,95,95,95,115,116,114,110,99,97,116,95,99,104,107,0,144,0,113,148,6,17,64,95,95,95,115, 116,114,110,99,112,121,95,99,104,107,0,144,0,113,152,6,17,64,95,95,95,118,115,110,112,114,105,110,116,102,95,99,104,107,0,144,0,113,156,6,17,64,95,95,101,120,105,116,0,144,0,113,160,6,17,64,95,97,99,99,101,112,116,36,85,78,73,88,50,48,48,51,0,144,0,113, 164,6,17,64,95,97,116,97,110,50,0,144,0,113,168,6,17,64,95,97,116,97,110,50,102,0,144,0,113,172,6,17,64,95,97,116,97,110,102,0,144,0,113,176,6,17,64,95,97,116,111,102,0,144,0,113,180,6,17,64,95,97,116,111,105,0,144,0,113,184,6,17,64,95,97,116,111,108, 0,144,0,113,188,6,17,64,95,98,105,110,100,36,85,78,73,88,50,48,48,51,0,144,0,113,192,6,17,64,95,98,122,101,114,111,0,144,0,113,196,6,17,64,95,99,97,108,108,111,99,0,144,0,113,200,6,17,64,95,99,108,111,115,101,36,85,78,73,88,50,48,48,51,0,144,0,113,204, 6,17,64,95,99,111,110,110,101,99,116,36,85,78,73,88,50,48,48,51,0,144,0,113,208,6,17,64,95,99,111,115,0,144,0,113,212,6,17,64,95,99,111,115,102,0,144,0,113,216,6,17,64,95,100,108,101,114,114,111,114,0,144,0,113,220,6,17,64,95,100,108,111,112,101,110, 0,144,0,113,224,6,17,64,95,100,108,115,121,109,0,144,0,113,228,6,17,64,95,101,120,101,99,108,0,144,0,113,232,6,17,64,95,101,120,105,116,0,144,0,113,236,6,17,64,95,101,120,112,0,144,0,113,240,6,17,64,95,101,120,112,102,0,144,0,113,244,6,17,64,95,102,99, 108,111,115,101,0,144,0,113,248,6,17,64,95,102,100,111,112,101,110,36,85,78,73,88,50,48,48,51,0,144,0,113,252,6,17,64,95,102,108,111,111,114,0,144,0,113,128,7,17,64,95,102,111,112,101,110,36,85,78,73,88,50,48,48,51,0,144,0,113,132,7,17,64,95,102,111, 114,107,0,144,0,113,136,7,17,64,95,102,112,114,105,110,116,102,0,144,0,113,140,7,17,64,95,102,112,117,116,99,0,144,0,113,144,7,17,64,95,102,112,117,116,115,36,85,78,73,88,50,48,48,51,0,144,0,113,148,7,17,64,95,102,114,101,97,100,0,144,0,113,152,7,17, 64,95,102,114,101,101,0,144,0,113,156,7,17,64,95,102,115,99,97,110,102,0,144,0,113,160,7,17,64,95,102,115,116,97,116,36,73,78,79,68,69,54,52,0,144,0,113,164,7,17,64,95,102,119,114,105,116,101,36,85,78,73,88,50,48,48,51,0,144,0,113,168,7,17,64,95,103, 101,116,99,119,100,0,144,0,113,172,7,17,64,95,103,101,116,101,110,118,0,144,0,113,176,7,17,64,95,103,101,116,104,111,115,116,98,121,110,97,109,101,0,144,0,113,180,7,17,64,95,103,101,116,116,105,109,101,111,102,100,97,121,0,144,0,113,184,7,17,64,95,103, 101,116,117,105,100,0,144,0,113,188,7,17,64,95,103,108,111,98,36,73,78,79,68,69,54,52,0,144,0,113,192,7,17,64,95,108,105,115,116,101,110,36,85,78,73,88,50,48,48,51,0,144,0,113,196,7,17,64,95,108,111,103,0,144,0,113,200,7,17,64,95,108,111,103,49,48,0, 144,0,113,204,7,17,64,95,108,111,103,102,0,144,0,113,208,7,17,64,95,108,115,101,101,107,0,144,0,113,212,7,17,64,95,109,97,108,108,111,99,0,144,0,113,216,7,17,64,95,109,101,109,99,112,121,0,144,0,113,220,7,17,64,95,109,101,109,115,101,116,0,144,0,113, 224,7,17,64,95,111,112,101,110,36,85,78,73,88,50,48,48,51,0,144,0,113,228,7,17,64,95,112,99,108,111,115,101,0,144,0,113,232,7,17,64,95,112,101,114,114,111,114,0,144,0,113,236,7,17,64,95,112,111,112,101,110,36,85,78,73,88,50,48,48,51,0,144,0,113,240,7, 17,64,95,112,111,119,0,144,0,113,244,7,17,64,95,112,111,119,102,0,144,0,113,248,7,17,64,95,112,116,104,114,101,97,100,95,99,111,110,100,95,100,101,115,116,114,111,121,0,144,0,113,252,7,17,64,95,112,116,104,114,101,97,100,95,99,111,110,100,95,105,110, 105,116,36,85,78,73,88,50,48,48,51,0,144,0,113,128,8,17,64,95,112,116,104,114,101,97,100,95,99,111,110,100,95,115,105,103,110,97,108,0,144,0,113,132,8,17,64,95,112,116,104,114,101,97,100,95,99,111,110,100,95,119,97,105,116,36,85,78,73,88,50,48,48,51, 0,144,0,113,136,8,17,64,95,112,116,104,114,101,97,100,95,99,114,101,97,116,101,0,144,0,113,140,8,17,64,95,112,116,104,114,101,97,100,95,106,111,105,110,36,85,78,73,88,50,48,48,51,0,144,0,113,144,8,17,64,95,112,116,104,114,101,97,100,95,109,117,116,101, 120,95,100,101,115,116,114,111,121,0,144,0,113,148,8,17,64,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,105,110,105,116,0,144,0,113,152,8,17,64,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,108,111,99,107,0,144,0,113,156,8,17,64, 95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,116,114,121,108,111,99,107,0,144,0,113,160,8,17,64,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,117,110,108,111,99,107,0,144,0,113,164,8,17,64,95,112,116,104,114,101,97,100,95,115,101, 108,102,0,144,0,113,168,8,17,64,95,112,116,104,114,101,97,100,95,115,101,116,115,99,104,101,100,112,97,114,97,109,0,144,0,113,172,8,17,64,95,114,101,97,100,36,85,78,73,88,50,48,48,51,0,144,0,113,176,8,17,64,95,114,101,97,108,108,111,99,0,144,0,113,180, 8,17,64,95,114,101,99,118,36,85,78,73,88,50,48,48,51,0,144,0,113,184,8,17,64,95,115,101,108,101,99,116,36,85,78,73,88,50,48,48,51,0,144,0,113,188,8,17,64,95,115,101,110,100,36,85,78,73,88,50,48,48,51,0,144,0,113,192,8,17,64,95,115,101,116,105,116,105, 109,101,114,0,144,0,113,196,8,17,64,95,115,101,116,115,111,99,107,111,112,116,0,144,0,113,200,8,17,64,95,115,101,116,117,105,100,0,144,0,113,204,8,17,64,95,115,105,103,97,99,116,105,111,110,0,144,0,113,208,8,17,64,95,115,105,103,110,97,108,0,144,0,113, 212,8,17,64,95,115,105,110,0,144,0,113,216,8,17,64,95,115,105,110,102,0,144,0,113,220,8,17,64,95,115,108,101,101,112,36,85,78,73,88,50,48,48,51,0,144,0,113,224,8,17,64,95,115,110,112,114,105,110,116,102,0,144,0,113,228,8,17,64,95,115,111,99,107,101,116, 0,144,0,113,232,8,17,64,95,115,115,99,97,110,102,0,144,0,113,236,8,17,64,95,115,116,97,116,36,73,78,79,68,69,54,52,0,144,0,113,240,8,17,64,95,115,116,114,99,104,114,0,144,0,113,244,8,17,64,95,115,116,114,99,109,112,0,144,0,113,248,8,17,64,95,115,116, 114,101,114,114,111,114,36,85,78,73,88,50,48,48,51,0,144,0,113,252,8,17,64,95,115,116,114,108,101,110,0,144,0,113,128,9,17,64,95,115,116,114,110,99,109,112,0,144,0,113,132,9,17,64,95,115,116,114,110,99,112,121,0,144,0,113,136,9,17,64,95,115,116,114,114, 99,104,114,0,144,0,113,140,9,17,64,95,115,116,114,115,116,114,0,144,0,113,144,9,17,64,95,115,116,114,116,111,108,0,144,0,113,148,9,17,64,95,115,121,115,116,101,109,36,85,78,73,88,50,48,48,51,0,144,0,113,152,9,17,64,95,116,105,109,101,115,0,144,0,113, 156,9,17,64,95,118,115,110,112,114,105,110,116,102,0,144,0,113,160,9,17,64,95,119,114,105,116,101,36,85,78,73,88,50,48,48,51,0,144,0,0,0,0,1,95,0,5,0,23,112,0,103,115,0,156,1,100,0,185,2,109,0,165,3,116,0,175,4,111,0,144,5,101,0,233,8,99,0,195,9,102, 0,238,11,98,0,174,12,108,0,129,13,110,0,220,13,113,0,170,20,114,0,174,22,97,0,222,23,117,0,131,25,122,0,166,27,105,0,249,27,103,0,172,36,104,0,176,66,118,0,196,68,119,111,114,100,95,0,159,75,120,95,0,196,127,0,3,108,0,116,111,0,160,14,100,0,148,15,0, 2,117,115,95,112,101,114,102,0,134,1,111,116,95,0,145,79,0,2,111,114,109,0,146,1,56,0,151,1,3,0,177,25,0,3,0,155,26,0,0,9,99,0,228,1,116,0,180,13,104,111,114,116,95,116,111,95,102,108,111,97,116,0,142,15,105,103,0,243,16,111,0,245,26,121,0,168,95,101, 108,101,99,116,95,115,101,116,117,112,0,136,129,1,119,97,112,95,115,101,116,117,112,0,148,129,1,95,0,211,141,1,0,2,97,108,97,114,0,244,1,104,101,100,95,0,160,99,0,5,112,108,117,115,95,112,101,114,102,0,163,2,109,0,244,3,116,105,109,101,115,95,112,101, 114,102,0,250,4,111,118,101,114,95,112,101,114,102,0,197,5,95,0,203,75,0,2,111,114,109,0,175,2,56,0,180,2,3,0,187,29,0,3,0,157,30,0,0,6,115,112,95,0,228,2,95,0,212,6,98,116,111,0,248,21,111,0,219,24,114,97,119,110,117,109,98,101,114,95,0,194,79,117,109, 109,121,95,0,193,114,0,2,97,100,100,0,243,2,116,105,99,107,0,243,27,0,2,95,0,252,2,0,227,27,0,4,112,108,117,115,0,160,3,115,99,97,108,97,114,99,111,112,121,0,227,8,99,111,112,121,0,206,10,122,101,114,111,0,215,27,3,0,230,32,0,0,6,105,110,0,202,3,97,0, 219,5,116,111,102,0,168,21,121,95,0,202,70,101,115,115,95,105,110,105,116,0,158,94,95,0,160,103,0,2,117,115,95,112,101,114,102,0,222,3,95,112,101,114,102,0,168,6,0,2,111,114,109,0,234,3,56,0,239,3,3,0,128,41,0,3,0,240,41,0,0,2,105,110,0,133,4,97,120, 95,112,101,114,102,0,146,6,0,2,117,115,95,112,101,114,102,0,153,4,95,112,101,114,102,0,190,6,0,2,111,114,109,0,165,4,56,0,170,4,3,0,144,45,0,3,0,242,45,0,0,5,105,109,101,115,95,112,101,114,102,0,228,4,97,98,0,210,7,104,114,101,115,104,111,108,100,95, 116,105,108,100,101,95,100,115,112,0,183,9,101,0,224,64,111,103,103,108,101,95,0,229,81,0,2,111,114,109,0,240,4,56,0,245,4,3,0,199,56,0,3,0,177,57,0,0,2,111,114,109,0,134,5,56,0,139,5,3,0,209,60,0,3,0,179,61,0,0,4,118,101,114,95,112,101,114,102,0,175, 5,112,101,110,95,0,177,26,98,106,95,0,211,97,117,116,0,183,98,0,2,111,114,109,0,187,5,56,0,192,5,3,0,136,72,0,3,0,172,73,0,0,2,111,114,109,0,209,5,56,0,214,5,3,0,182,80,0,3,0,198,81,0,0,2,120,95,0,233,5,121,101,114,95,0,155,11,0,2,112,101,114,102,0,252, 5,100,101,102,97,117,108,116,0,146,95,0,2,111,114,109,0,136,6,56,0,141,6,3,0,204,92,0,3,0,220,93,0,0,2,111,114,109,0,158,6,56,0,163,6,3,0,192,99,0,3,0,198,100,0,0,2,111,114,109,0,180,6,56,0,185,6,3,0,181,113,0,3,0,201,114,0,0,2,111,114,109,0,202,6,56, 0,207,6,3,0,205,120,0,3,0,215,121,0,0,9,97,114,0,173,7,99,116,108,95,115,101,116,117,112,0,189,9,100,0,212,10,102,0,250,10,103,108,111,98,97,108,95,115,101,116,117,112,0,164,20,109,0,150,24,111,115,99,95,115,101,116,117,112,0,213,24,115,111,117,110,100, 102,105,108,101,95,115,101,116,117,112,0,160,27,117,103,101,110,95,115,101,116,117,112,0,132,30,0,2,105,116,104,109,101,116,105,99,95,115,101,116,117,112,0,204,7,114,97,121,95,115,101,116,117,112,0,221,8,4,0,217,132,1,0,0,4,119,114,105,116,101,95,0,134, 8,112,108,97,121,95,116,105,108,100,101,95,115,101,116,0,162,8,114,101,97,100,0,168,8,111,115,99,52,95,116,105,108,100,101,95,115,101,116,0,209,8,0,2,116,105,108,100,101,95,115,101,116,0,156,8,115,101,116,117,112,0,215,8,4,0,175,136,1,0,4,0,196,146,1, 0,0,2,95,116,105,108,100,101,95,115,101,116,0,197,8,52,95,116,105,108,100,101,95,115,101,116,0,203,8,4,0,172,155,1,0,4,0,159,165,1,0,4,0,248,176,1,0,4,0,179,209,1,0,4,0,242,210,1,0,4,0,138,213,1,0,0,3,110,0,137,9,120,112,95,116,105,108,100,101,95,112, 101,114,102,111,114,109,0,210,23,114,114,111,114,0,132,125,0,2,118,95,116,105,108,100,101,95,0,158,9,100,112,111,115,116,0,254,124,0,2,115,101,116,117,112,0,177,9,99,108,97,115,115,0,228,145,1,4,0,182,139,2,0,4,0,244,146,2,0,4,0,245,150,2,0,0,7,111,0, 252,9,102,102,116,0,232,11,114,101,97,116,101,95,0,232,14,97,110,118,97,115,95,0,205,38,117,114,118,101,95,0,230,78,108,0,168,90,104,97,110,103,101,95,115,101,116,117,112,0,154,129,1,0,4,112,121,0,164,10,109,112,117,116,101,95,102,102,116,0,214,13,110, 102,95,105,110,105,116,0,140,95,115,95,116,97,98,108,101,0,214,146,1,0,2,95,112,101,114,102,0,182,10,98,121,116,101,115,0,235,96,0,2,111,114,109,0,194,10,56,0,200,10,4,0,145,159,2,0,4,0,221,159,2,0,4,0,209,161,2,0,0,2,97,99,95,115,101,116,117,112,0,238, 10,101,108,97,121,95,115,101,116,117,112,0,244,10,4,0,255,165,2,0,4,0,162,192,2,0,0,2,102,116,95,115,101,116,117,112,0,149,11,105,108,116,101,114,95,115,101,116,117,112,0,158,20,4,0,188,225,2,0,0,3,102,0,175,11,105,102,102,116,0,199,11,114,101,97,108, 0,205,11,0,2,104,116,0,187,11,102,116,0,193,11,4,0,216,225,2,0,4,0,238,250,2,0,4,0,245,253,2,0,0,2,102,102,116,0,220,11,105,102,102,116,0,226,11,4,0,252,128,3,0,4,0,190,130,3,0,4,0,207,131,3,0,0,5,102,116,95,99,108,101,97,114,0,168,12,116,111,109,0,208, 21,105,101,108,100,100,101,115,99,95,0,152,78,114,101,101,98,121,116,101,115,0,247,96,108,111,97,116,105,110,108,101,116,95,110,101,119,0,199,97,4,0,213,134,3,0,0,5,117,0,227,12,108,111,99,107,95,116,105,108,100,101,95,115,101,116,117,112,0,221,27,110, 103,95,0,204,44,105,110,98,117,102,95,0,188,87,97,110,103,95,115,101,116,117,112,0,130,129,1,0,2,105,108,100,95,102,102,116,95,110,101,116,119,111,114,107,0,251,12,103,0,156,125,4,0,170,135,3,0,0,2,111,0,139,13,105,0,171,50,0,2,97,100,95,114,101,103, 105,115,116,101,114,115,0,174,13,103,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,216,23,4,0,130,149,3,0,0,2,111,114,101,95,114,101,103,105,115,116,101,114,115,0,208,13,97,114,116,112,111,115,116,0,230,124,4,0,220,164,3,0,4,0,211,182,3,0,0, 3,101,0,245,13,117,108,108,102,110,0,218,94,97,109,101,108,105,115,116,95,0,133,122,0,2,116,95,0,128,14,119,0,131,94,0,2,97,108,108,111,99,0,148,14,100,101,97,108,108,111,99,0,154,14,4,0,239,187,3,0,4,0,207,190,3,0,0,3,119,0,188,14,105,110,116,101,114, 105,110,108,101,116,95,110,101,119,0,193,97,115,116,0,200,124,0,3,101,114,95,111,102,95,116,119,111,0,226,14,116,111,100,98,0,164,23,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,204,23,4,0,141,192,3,0,0,2,104,97,110,110,105,110,103,0,130,15, 114,101,99,116,97,110,103,117,108,97,114,0,136,15,4,0,195,192,3,0,4,0,197,193,3,0,4,0,228,193,3,0,0,4,95,0,198,15,105,110,116,95,115,101,116,117,112,0,240,128,1,102,108,111,97,116,95,115,101,116,117,112,0,246,128,1,115,121,109,98,111,108,95,115,101,116, 117,112,0,252,128,1,0,15,102,0,191,16,103,101,116,112,97,114,101,110,116,119,105,100,103,101,116,0,174,93,110,101,119,0,164,94,116,121,112,101,100,109,101,115,115,0,181,94,118,0,187,94,99,0,189,101,98,0,202,103,117,110,98,105,110,100,0,222,103,115,0, 240,103,112,0,151,104,100,111,108,111,97,100,98,97,110,103,0,195,104,108,105,115,116,0,225,104,105,110,105,116,0,231,104,101,114,114,111,114,0,144,125,111,98,106,101,99,116,109,97,107,101,114,0,242,147,1,0,5,102,116,0,237,16,111,114,119,97,114,100,109, 101,115,115,0,212,94,114,101,101,0,148,103,105,110,100,98,121,99,108,97,115,115,0,234,103,108,111,97,116,0,207,104,4,0,145,194,3,0,0,9,104,105,112,95,0,168,17,108,111,112,95,0,193,17,98,0,218,17,115,0,156,18,114,0,201,18,99,0,186,19,119,114,97,112,95, 0,143,21,118,99,102,95,0,188,24,110,97,108,0,145,28,0,2,115,101,116,117,112,0,187,17,99,108,97,115,115,0,136,146,1,4,0,185,202,3,0,0,2,115,101,116,117,112,0,212,17,99,108,97,115,115,0,142,146,1,4,0,243,210,3,0,0,2,112,95,0,234,17,105,113,117,97,100,95, 0,131,18,0,2,115,101,116,117,112,0,253,17,99,108,97,115,115,0,240,145,1,4,0,167,224,3,0,0,2,115,101,116,117,112,0,150,18,99,108,97,115,115,0,234,145,1,4,0,235,235,3,0,0,2,97,109,112,104,111,108,100,95,0,176,18,113,114,116,95,0,239,20,0,2,115,101,116, 117,112,0,195,18,99,108,97,115,115,0,166,146,1,4,0,211,242,3,0,0,3,112,111,108,101,95,0,232,18,122,101,114,111,95,0,129,19,115,113,114,116,95,115,101,116,117,112,0,233,20,0,2,115,101,116,117,112,0,251,18,99,108,97,115,115,0,148,146,1,4,0,250,248,3,0, 0,3,115,101,116,117,112,0,155,19,114,101,118,95,0,161,19,99,108,97,115,115,0,154,146,1,4,0,248,254,3,0,0,2,115,101,116,117,112,0,180,19,99,108,97,115,115,0,160,146,1,4,0,246,132,4,0,0,2,112,111,108,101,95,0,204,19,122,101,114,111,95,0,229,19,0,2,115, 101,116,117,112,0,223,19,99,108,97,115,115,0,246,145,1,4,0,213,142,4,0,0,3,115,101,116,117,112,0,255,19,114,101,118,95,0,133,20,99,108,97,115,115,0,252,145,1,4,0,244,151,4,0,0,2,115,101,116,117,112,0,152,20,99,108,97,115,115,0,130,146,1,4,0,147,161,4, 0,4,0,214,163,4,0,4,0,165,195,4,0,0,3,56,95,0,192,20,115,113,114,116,0,221,20,114,115,113,114,116,0,227,20,0,2,114,115,113,114,116,0,209,20,115,113,114,116,0,215,20,4,0,247,201,4,0,4,0,246,202,4,0,4,0,254,203,4,0,4,0,177,204,4,0,4,0,152,208,4,0,0,2,112, 101,114,102,111,114,109,0,131,21,115,101,116,117,112,0,137,21,4,0,198,210,4,0,4,0,175,213,4,0,0,2,115,101,116,117,112,0,162,21,99,108,97,115,115,0,208,146,1,4,0,206,217,4,0,0,2,95,116,105,108,100,101,95,0,183,21,0,160,127,0,2,115,101,116,117,112,0,202, 21,99,108,97,115,115,0,190,146,1,4,0,254,221,4,0,0,2,95,116,105,108,100,101,95,0,223,21,0,166,127,0,2,115,101,116,117,112,0,242,21,99,108,97,115,115,0,184,146,1,4,0,154,226,4,0,0,2,114,109,115,0,134,22,112,111,119,0,252,22,0,2,95,116,105,108,100,101, 95,0,149,22,0,190,127,0,2,115,101,116,117,112,0,168,22,99,108,97,115,115,0,178,146,1,4,0,198,230,4,0,0,4,109,115,116,111,100,98,0,212,22,101,115,0,206,25,116,101,120,116,95,0,179,73,111,117,116,101,95,115,101,116,117,112,0,142,129,1,0,2,95,116,105,108, 100,101,95,0,227,22,0,178,127,0,2,115,101,116,117,112,0,246,22,99,108,97,115,115,0,202,146,1,4,0,144,235,4,0,0,2,95,116,105,108,100,101,95,0,139,23,0,184,127,0,2,115,101,116,117,112,0,158,23,99,108,97,115,115,0,172,146,1,4,0,188,239,4,0,0,2,95,116,105, 108,100,101,95,0,179,23,0,172,127,0,2,115,101,116,117,112,0,198,23,99,108,97,115,115,0,196,146,1,4,0,134,244,4,0,4,0,177,246,4,0,4,0,194,250,4,0,4,0,156,254,4,0,0,4,98,115,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,144,24,114,114,97,121, 95,0,230,35,116,111,109,95,0,196,86,108,105,115,116,95,99,108,97,115,115,0,191,150,1,4,0,240,130,5,0,0,2,97,116,104,95,115,101,116,117,112,0,176,24,105,115,99,95,115,101,116,117,112,0,182,24,4,0,131,134,5,0,4,0,195,144,5,0,0,2,115,101,116,117,112,0,207, 24,99,108,97,115,115,0,220,146,1,4,0,187,179,5,0,4,0,138,185,5,0,0,2,119,110,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,48,0,253,24,103,101,110,115,121,109,0,234,93,4,0,171,185,5,0,0,3,112,115,97,109,112,108,105,110,103,95,112,101, 114,102,111,114,109,95,0,166,25,103,101,110,95,0,129,29,56,95,0,200,125,0,3,48,0,188,25,104,111,108,100,0,194,25,108,105,110,101,97,114,0,200,25,4,0,149,186,5,0,4,0,175,187,5,0,4,0,198,188,5,0,0,2,97,109,112,108,101,0,227,25,105,122,101,98,121,116,101, 115,0,241,96,0,3,95,0,253,25,102,114,111,109,95,100,115,112,0,165,26,116,111,95,100,115,112,0,171,26,0,3,105,110,105,116,0,147,26,102,114,101,101,0,153,26,100,115,112,0,159,26,4,0,178,191,5,0,4,0,157,192,5,0,4,0,228,193,5,0,4,0,201,197,5,0,4,0,147,199, 5,0,0,2,115,111,117,110,100,102,105,108,101,0,198,26,118,105,97,95,0,229,122,0,2,95,118,105,97,95,0,211,26,0,233,26,0,2,102,100,0,227,26,99,97,110,118,97,115,0,239,26,4,0,212,202,5,0,4,0,235,221,5,0,4,0,142,224,5,0,0,2,117,110,100,102,105,108,101,114, 95,100,111,119,114,105,116,101,0,154,27,99,107,101,116,114,101,99,101,105,118,101,114,95,0,150,116,4,0,146,199,6,0,4,0,219,172,7,0,0,3,101,114,111,95,112,101,114,102,0,191,27,103,101,116,102,110,0,134,95,122,0,228,103,0,2,111,114,109,0,203,27,56,0,209, 27,4,0,242,172,7,0,4,0,184,173,7,0,4,0,246,174,7,0,4,0,244,184,7,0,4,0,240,187,7,1,118,0,237,27,4,0,212,189,7,0,4,0,175,191,7,0,0,3,108,111,103,50,0,139,28,101,109,0,138,30,110,0,253,96,4,0,134,192,7,0,0,2,95,0,163,28,105,110,108,101,116,95,110,101,119, 0,181,97,0,4,99,0,204,28,109,97,107,101,114,101,117,115,97,98,108,101,0,233,28,110,101,119,0,239,28,115,101,116,98,111,114,114,111,119,101,100,0,245,28,0,2,108,101,97,110,117,112,0,227,28,111,109,112,97,116,105,98,108,101,0,251,28,4,0,185,192,7,0,4,0, 215,193,7,0,4,0,198,196,7,0,4,0,185,199,7,0,4,0,175,200,7,0,0,5,115,116,0,171,29,103,101,116,0,205,29,97,100,100,0,236,29,99,111,110,110,101,99,116,0,242,29,100,111,110,101,95,103,114,97,112,104,0,248,29,0,2,111,112,0,184,29,97,114,116,0,190,29,4,0,239, 200,7,0,4,0,194,201,7,1,95,103,114,97,112,104,0,230,29,0,2,115,111,114,116,110,111,0,224,29,105,111,115,105,103,0,254,29,4,0,185,202,7,0,4,0,207,202,7,0,4,0,214,203,7,0,4,0,197,205,7,0,4,0,226,223,7,0,4,0,142,246,7,0,4,0,210,249,7,0,0,2,103,117,105,95, 0,151,30,95,0,146,35,0,11,99,0,236,30,109,111,100,117,108,111,95,99,111,108,111,114,0,149,31,100,0,155,31,114,0,186,31,118,0,217,31,110,101,119,95,0,255,31,97,108,108,95,0,164,32,102,105,114,115,116,95,100,111,108,108,97,114,97,114,103,50,115,121,109, 0,245,32,115,0,197,33,108,97,98,101,108,0,241,33,112,0,175,34,0,2,108,105,112,95,0,249,30,111,0,156,33,0,2,115,105,122,101,0,137,31,102,111,110,116,0,143,31,4,0,228,249,7,0,4,0,252,249,7,0,4,0,148,250,7,0,0,3,111,108,108,97,114,50,114,97,117,116,101, 0,180,31,101,108,0,156,34,105,0,214,34,4,0,183,250,7,0,0,2,97,117,116,101,50,100,111,108,108,97,114,0,211,31,101,99,101,105,118,101,0,235,33,4,0,153,252,7,0,0,3,101,114,105,102,121,95,115,110,100,95,110,101,95,114,99,118,0,249,31,105,115,0,250,34,117, 95,0,139,141,1,4,0,251,253,7,0,0,2,100,111,103,101,116,110,97,109,101,0,152,32,103,101,116,110,97,109,101,115,0,158,32,4,0,244,254,7,0,4,0,226,128,8,0,0,4,100,111,108,108,97,114,0,212,32,115,121,109,50,100,111,108,108,97,114,97,114,103,0,239,32,99,111, 108,0,251,32,114,97,117,116,101,50,100,111,108,108,97,114,0,191,33,0,2,97,114,103,50,115,121,109,0,233,32,50,114,97,117,116,101,0,185,33,4,0,246,130,8,0,4,0,234,133,8,0,4,0,188,135,8,0,0,2,50,115,97,118,101,0,144,33,102,114,111,109,108,111,97,100,0,150, 33,4,0,196,135,8,0,4,0,148,137,8,0,0,2,109,112,97,116,105,98,108,101,95,99,111,108,0,179,33,108,111,114,0,200,34,4,0,191,140,8,0,4,0,138,141,8,0,4,0,219,141,8,0,0,3,101,0,215,33,105,122,101,0,150,34,97,118,101,0,128,35,0,2,110,100,0,229,33,108,101,99, 116,0,238,34,4,0,172,142,8,0,4,0,167,144,8,0,4,0,201,147,8,1,95,0,251,33,0,2,112,111,115,0,138,34,102,111,110,116,0,144,34,4,0,180,149,8,0,4,0,146,151,8,0,4,0,143,155,8,0,0,2,116,97,0,169,34,101,116,101,0,244,34,4,0,222,155,8,0,0,2,111,115,0,194,34,114, 111,112,101,114,116,105,101,115,0,134,35,4,0,144,157,8,0,4,0,165,158,8,1,95,104,101,120,0,145,143,1,0,2,115,112,108,97,99,101,0,232,34,97,108,111,103,0,140,35,4,0,155,160,8,0,4,0,136,161,8,0,4,0,218,161,8,0,4,0,244,161,8,0,4,0,207,162,8,0,4,0,171,163, 8,0,4,0,128,164,8,0,0,3,105,110,116,116,111,0,185,35,115,121,109,97,114,103,115,116,111,105,110,116,0,212,35,102,115,116,121,108,101,116,111,105,110,116,0,224,35,0,2,115,121,109,97,114,103,115,0,206,35,102,115,116,121,108,101,0,218,35,4,0,226,179,8,0, 4,0,203,181,8,0,4,0,249,181,8,0,4,0,210,183,8,0,0,5,110,101,119,0,138,36,114,101,0,144,36,102,114,101,101,0,166,36,103,101,116,0,154,42,100,111,99,108,105,99,107,0,184,42,4,0,145,185,8,0,0,2,115,105,122,101,0,160,36,100,114,97,119,0,148,42,4,0,194,186, 8,0,4,0,210,189,8,0,0,11,97,114,114,97,121,95,0,141,37,114,97,112,104,95,0,171,38,108,0,235,39,95,0,175,43,111,98,106,95,0,129,57,117,105,99,111,110,110,101,99,116,95,110,0,141,66,116,101,109,112,108,97,116,101,95,103,101,116,0,146,78,115,116,117,98, 95,0,246,82,112,111,105,110,116,101,114,95,0,147,83,101,0,240,93,102,120,115,116,117,98,95,0,231,129,1,0,12,105,110,105,116,0,128,38,103,101,116,0,134,38,112,114,111,112,101,114,116,105,101,115,0,229,39,97,0,180,41,117,115,101,100,105,110,100,115,112, 0,190,42,114,101,0,196,42,116,101,109,112,108,97,116,101,0,218,42,110,112,111,105,110,116,115,0,224,42,118,101,99,0,230,42,115,101,116,115,97,118,101,105,116,0,138,43,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,175,141,1,99,108,97,115,115, 0,226,146,1,4,0,236,190,8,0,0,3,97,114,114,97,121,0,159,38,110,97,109,101,0,165,38,102,108,111,97,116,0,236,42,4,0,151,196,8,0,4,0,153,199,8,0,0,2,97,114,114,97,121,0,199,38,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,181,141,1,4,0,199,201, 8,0,0,21,109,0,177,39,117,0,242,45,115,0,166,46,103,101,116,0,162,48,114,0,165,49,110,0,144,51,100,0,150,52,102,0,217,53,108,0,253,54,112,0,188,55,105,0,228,55,111,0,232,56,104,0,206,59,99,0,246,59,118,0,164,60,107,101,121,0,207,61,101,100,105,116,0, 175,62,97,0,188,63,119,0,134,73,98,110,103,0,204,80,116,111,103,103,108,101,0,210,80,0,5,101,110,117,0,205,39,97,0,247,49,111,0,157,61,121,99,110,118,0,130,81,115,103,0,148,81,0,2,97,114,114,97,121,0,223,39,99,108,111,115,101,0,139,62,4,0,245,207,8,0, 4,0,157,209,8,0,0,2,105,115,116,95,0,250,39,111,98,95,0,169,47,0,17,97,0,128,41,105,0,254,50,103,0,192,51,109,101,0,136,53,115,0,141,58,100,0,183,58,110,111,115,101,108,101,99,116,0,152,59,99,108,101,97,0,227,62,114,101,0,245,62,102,0,168,63,112,105, 120,101,108,115,116,111,0,168,64,120,116,111,112,105,120,101,108,115,0,190,64,121,116,111,112,105,120,101,108,115,0,196,64,119,114,105,116,101,116,111,98,105,110,98,117,102,0,167,73,116,101,120,116,0,180,80,101,114,97,115,101,105,111,102,111,114,0,205, 81,118,97,108,105,100,0,163,143,1,0,3,114,114,97,121,100,105,97,108,111,103,0,174,41,100,100,0,173,51,109,114,101,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,115,0,169,143,1,4,0,205,212,8,0,0,2,114,114,97,121,0,202,41,109,98,105, 103,101,110,100,105,97,110,0,144,43,0,2,100,105,97,108,111,103,0,225,41,118,105,101,119,108,105,115,116,95,0,231,41,4,0,199,215,8,0,0,3,110,101,119,0,130,42,102,105,108,108,112,97,103,101,0,136,42,99,108,111,115,101,0,142,42,4,0,192,221,8,0,4,0,241,224, 8,0,4,0,218,230,8,0,4,0,190,232,8,0,0,2,99,111,111,114,100,105,110,97,116,101,0,178,42,102,105,101,108,100,115,0,188,79,4,0,246,232,8,0,4,0,232,248,8,0,4,0,253,155,9,0,0,2,100,114,97,119,0,212,42,115,105,122,101,0,150,43,4,0,230,156,9,0,4,0,209,157,9, 0,4,0,175,158,9,0,4,0,202,158,9,0,0,2,119,111,114,100,115,0,254,42,97,114,114,97,121,0,132,43,4,0,230,158,9,0,4,0,151,160,9,0,4,0,184,160,9,0,4,0,191,189,9,0,0,2,95,108,111,110,103,0,163,43,0,169,43,4,0,224,189,9,0,4,0,167,191,9,0,0,13,97,114,114,97, 121,95,115,101,116,117,112,0,198,44,98,97,110,103,95,115,101,116,117,112,0,236,45,99,97,110,118,97,115,95,115,101,116,117,112,0,251,56,101,100,105,116,111,114,95,115,101,116,117,112,0,203,62,103,0,230,65,104,0,208,67,105,111,95,115,101,116,117,112,0, 196,70,109,121,99,97,110,118,97,115,95,115,101,116,117,112,0,209,71,110,117,109,98,111,120,95,115,101,116,117,112,0,193,72,114,101,97,100,119,114,105,116,101,95,115,101,116,117,112,0,173,73,115,99,97,108,97,114,95,115,101,116,117,112,0,153,76,116,0,237, 79,118,0,132,85,4,0,151,192,9,0,0,3,100,114,97,119,0,246,44,99,104,101,99,107,95,109,105,110,109,97,120,0,230,45,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,232,146,1,0,2,95,0,255,44,0,224,45,0,7,117,112,100,97,116,101,0,182,45,110,101,119, 0,188,45,109,111,118,101,0,194,45,101,114,97,115,101,0,200,45,99,111,110,102,105,103,0,206,45,105,111,0,212,45,115,101,108,101,99,116,0,218,45,4,0,140,203,9,0,4,0,130,204,9,0,4,0,151,209,9,0,4,0,174,213,9,0,4,0,141,215,9,0,4,0,207,217,9,0,4,0,232,220, 9,0,4,0,250,222,9,0,4,0,213,228,9,0,4,0,171,137,10,0,0,2,112,100,97,116,101,0,138,46,110,115,101,116,99,117,114,114,101,110,116,0,250,48,0,2,119,105,110,100,111,119,108,105,115,116,0,160,46,95,100,115,112,0,187,56,4,0,158,148,10,0,0,6,101,0,231,46,104, 111,119,116,101,120,116,0,163,56,117,115,112,101,110,100,95,100,115,112,0,175,56,97,118,101,100,101,99,108,97,114,97,116,105,111,110,115,116,111,0,226,56,116,0,219,61,121,109,98,111,108,97,116,111,109,0,166,81,0,2,116,0,250,46,108,101,99,116,105,110, 114,101,99,116,0,195,61,0,5,97,114,103,115,0,163,47,99,117,114,0,229,48,117,110,100,111,0,176,59,103,114,97,112,104,0,210,60,100,101,108,101,116,105,110,103,0,215,62,4,0,232,149,10,0,0,11,115,0,245,47,100,115,112,0,193,56,118,101,114,105,102,121,113, 117,105,116,0,133,62,107,101,121,0,169,62,101,118,97,108,102,105,108,101,0,162,90,105,110,105,116,0,152,95,97,117,100,105,111,0,205,107,109,0,149,108,102,0,169,114,112,0,250,116,113,117,105,116,0,148,118,0,3,101,116,102,105,108,101,110,97,109,101,0,156, 48,97,118,101,112,114,101,102,101,114,101,110,99,101,115,0,186,115,116,97,114,116,0,247,123,4,0,212,150,10,0,0,7,99,117,114,114,101,110,116,0,217,48,101,110,118,0,128,49,100,0,134,49,97,114,103,115,0,159,49,105,110,100,101,120,0,165,50,114,111,111,116, 102,111,114,0,169,56,98,108,111,99,107,0,199,56,4,0,248,150,10,1,100,105,114,0,235,49,0,2,114,101,110,116,0,244,48,115,111,114,0,200,59,4,0,169,151,10,0,4,0,188,151,10,0,4,0,207,151,10,0,0,2,111,108,108,97,114,122,101,114,111,0,153,49,105,114,0,241,49, 4,0,171,152,10,0,4,0,249,152,10,0,0,2,101,0,175,49,109,0,226,63,0,6,97,108,105,122,101,100,111,108,108,97,114,0,229,49,110,97,109,101,0,159,50,102,108,101,99,116,116,105,116,108,101,0,144,52,100,114,97,119,0,241,52,115,0,208,54,108,111,97,100,0,194,59, 4,0,167,153,10,0,4,0,167,154,10,0,4,0,196,154,10,0,0,2,107,101,0,130,50,112,0,235,52,0,2,102,105,108,101,110,97,109,101,0,153,50,98,105,110,100,115,121,109,0,138,52,4,0,223,154,10,0,4,0,136,159,10,0,4,0,236,160,10,0,0,3,110,101,116,114,97,118,101,114, 115,101,114,95,0,202,50,98,112,100,0,202,134,1,115,116,95,0,197,150,1,0,2,115,0,215,50,110,101,120,116,0,242,50,0,2,116,97,114,116,0,236,50,107,105,112,111,98,106,101,99,116,0,248,50,4,0,163,161,10,0,4,0,221,161,10,0,4,0,207,168,10,0,0,2,110,105,116, 0,138,51,115,0,218,51,4,0,237,168,10,0,0,3,101,119,0,167,51,111,117,110,100,111,0,182,59,117,109,98,111,120,0,136,81,4,0,226,170,10,0,0,2,103,108,105,115,116,0,186,51,0,209,62,4,0,171,184,10,0,0,3,108,105,115,116,0,212,51,101,116,0,176,53,114,97,98,0, 144,63,4,0,197,191,10,0,0,4,103,114,97,112,104,0,132,52,118,105,115,105,98,108,101,0,164,53,116,111,112,108,101,118,101,108,0,170,53,115,101,108,101,99,116,101,100,0,245,58,4,0,156,194,10,0,4,0,241,197,10,0,4,0,134,199,10,0,0,6,105,0,204,52,114,97,119, 114,101,100,114,101,99,116,0,229,52,101,0,159,54,111,0,241,60,97,116,97,112,114,111,112,101,114,116,105,101,115,0,250,72,115,112,115,116,97,116,101,0,244,146,1,0,2,114,116,121,0,223,52,115,99,111,110,110,101,99,116,0,188,59,4,0,201,202,10,0,4,0,165,204, 10,0,4,0,182,206,10,0,4,0,200,209,10,1,97,108,108,102,111,114,116,101,109,112,108,97,116,101,0,205,56,0,2,110,117,95,111,112,101,110,0,158,53,114,103,101,102,105,108,101,0,244,72,4,0,152,210,10,0,4,0,225,211,10,0,4,0,164,212,10,0,0,4,102,111,110,116, 0,211,53,105,110,100,101,120,0,164,59,110,101,120,116,120,121,0,197,62,99,97,110,118,97,115,0,150,63,4,0,225,212,10,0,0,4,114,101,101,0,251,53,105,0,129,54,97,116,116,101,110,115,117,98,0,222,55,108,111,97,116,97,116,111,109,0,160,81,4,0,169,213,10,0, 0,2,120,108,105,110,101,115,102,111,114,0,153,54,110,100,101,114,114,111,114,0,145,62,4,0,249,217,10,0,0,2,108,101,116,101,108,105,110,101,115,102,111,114,0,191,54,115,116,114,111,121,95,101,100,105,116,111,114,0,158,60,4,0,156,219,10,1,105,111,0,202, 54,4,0,188,220,10,0,0,3,116,111,114,101,0,233,54,117,109,101,95,100,115,112,0,181,56,111,114,116,0,251,63,4,0,225,222,10,1,99,111,110,110,101,99,116,105,111,110,115,0,157,62,0,2,111,0,138,55,105,115,116,0,128,147,1,0,2,97,100,98,97,110,103,0,158,55,103, 101,114,114,111,114,0,216,55,0,2,115,117,98,112,97,116,99,104,101,115,0,176,55,0,182,55,4,0,250,225,10,0,4,0,196,227,10,0,0,2,111,112,97,98,115,116,114,97,99,116,105,111,110,0,210,55,114,0,216,60,4,0,184,229,10,0,4,0,139,230,10,0,4,0,220,232,10,0,0,2, 115,0,243,55,101,109,103,117,105,115,0,198,80,0,3,97,98,115,116,114,97,99,116,105,111,110,0,151,56,116,97,98,108,101,0,157,56,99,111,110,110,101,99,116,101,100,0,183,61,4,0,242,240,10,0,4,0,139,241,10,0,4,0,181,242,10,0,4,0,135,244,10,0,4,0,212,248,10, 0,4,0,130,249,10,0,4,0,149,249,10,0,4,0,187,249,10,0,4,0,219,250,10,0,4,0,168,253,10,1,99,97,110,118,97,115,0,220,56,4,0,238,253,10,0,4,0,170,128,11,0,0,2,112,101,110,0,245,56,98,106,0,186,80,4,0,148,138,11,0,4,0,210,144,11,0,0,6,103,101,116,114,101, 99,116,0,174,57,100,0,180,57,115,0,206,57,97,99,116,105,118,97,116,101,0,239,57,118,105,115,0,129,58,99,108,105,99,107,0,135,58,4,0,148,165,11,0,0,2,105,115,112,108,97,99,101,0,200,57,101,108,101,116,101,0,245,57,4,0,235,165,11,0,0,3,101,108,101,99,116, 0,233,57,104,111,117,108,100,118,105,115,0,251,57,97,118,101,0,154,103,4,0,182,166,11,0,4,0,250,166,11,0,4,0,190,167,11,0,4,0,251,167,11,0,4,0,157,172,11,0,4,0,247,172,11,0,0,3,101,108,101,99,116,0,165,58,111,114,116,0,156,63,99,97,108,97,114,0,129,76, 0,2,108,105,110,101,0,177,58,0,251,58,4,0,237,173,11,0,0,3,101,0,209,58,112,105,120,116,111,100,0,202,64,114,97,119,105,111,102,111,114,0,193,81,0,2,115,101,108,101,99,116,0,227,58,108,101,116,101,0,221,62,0,2,108,105,110,101,0,239,58,0,146,59,4,0,158, 175,11,0,4,0,245,175,11,0,4,0,199,176,11,2,97,108,108,0,158,59,105,111,110,105,110,100,101,120,0,170,59,4,0,226,178,11,0,4,0,208,183,11,0,4,0,178,184,11,0,4,0,136,186,11,0,4,0,191,186,11,0,4,0,211,187,11,0,4,0,208,189,11,0,4,0,225,193,11,0,4,0,247,221, 11,0,4,0,246,222,11,0,0,4,105,116,98,111,120,0,240,59,115,108,105,100,101,114,0,222,80,100,105,97,108,0,228,80,114,97,100,105,111,0,240,80,4,0,244,223,11,0,0,3,114,101,97,116,101,95,101,100,105,116,111,114,0,152,60,111,110,110,101,99,116,0,163,62,108, 97,115,115,0,238,146,1,4,0,167,232,11,0,4,0,146,233,11,0,0,5,105,115,0,204,60,115,108,105,100,101,114,0,216,80,100,105,97,108,0,234,80,114,97,100,105,111,0,246,80,117,109,101,116,101,114,0,252,80,4,0,159,234,11,0,4,0,168,242,11,0,0,2,111,112,101,114, 116,105,101,115,0,235,60,105,110,116,0,255,61,4,0,162,247,11,0,0,2,99,0,133,61,97,100,100,116,101,109,112,108,97,116,101,0,128,73,0,2,108,105,99,107,0,151,61,111,110,110,101,99,116,0,189,61,4,0,160,141,12,0,0,2,117,115,101,0,172,61,116,105,111,110,0, 213,61,4,0,216,163,12,1,117,112,0,201,61,4,0,172,164,12,0,4,0,146,165,12,0,4,0,218,175,12,0,4,0,160,179,12,0,4,0,163,186,12,0,4,0,173,204,12,0,0,2,97,114,116,109,111,116,105,111,110,0,249,61,111,119,99,111,110,110,101,99,116,105,111,110,115,0,151,62, 4,0,236,210,12,0,4,0,219,211,12,0,4,0,186,213,12,0,4,0,253,214,12,0,4,0,214,228,12,0,4,0,174,229,12,0,4,0,250,233,12,0,4,0,198,130,13,0,4,0,146,150,13,0,0,2,109,111,100,101,0,191,62,105,110,103,0,250,146,1,4,0,204,150,13,0,4,0,222,158,13,0,4,0,215,159, 13,0,4,0,251,173,13,0,4,0,203,176,13,0,4,0,144,177,13,0,0,2,114,0,239,62,110,117,112,0,162,63,4,0,163,183,13,0,0,3,116,101,120,116,0,138,63,100,114,97,119,0,200,65,97,100,0,199,72,4,0,195,184,13,0,4,0,156,185,13,0,4,0,172,186,13,0,4,0,174,191,13,0,4, 0,205,192,13,0,0,2,114,101,101,0,182,63,105,110,100,0,206,65,4,0,167,193,13,0,0,2,100,100,0,201,63,116,111,109,0,154,81,0,2,105,110,108,101,116,0,220,63,111,117,116,108,101,116,0,150,64,4,0,205,193,13,0,0,2,105,110,108,101,116,0,245,63,111,117,116,108, 101,116,0,156,64,4,0,146,195,13,0,0,2,105,110,108,101,116,115,0,144,64,111,117,116,108,101,116,115,0,162,64,4,0,250,196,13,0,4,0,179,200,13,0,4,0,233,201,13,0,4,0,209,203,13,0,0,2,120,0,178,64,121,0,184,64,4,0,176,212,13,0,4,0,178,215,13,0,4,0,180,218, 13,0,4,0,184,221,13,0,0,2,120,0,212,64,121,0,218,64,4,0,188,224,13,0,4,0,154,225,13,0,0,2,120,116,95,0,242,64,109,112,108,97,116,101,95,0,159,76,0,7,120,112,105,120,0,188,65,121,112,105,120,0,194,65,115,0,172,81,100,114,97,119,98,111,114,100,101,114, 0,199,81,101,114,97,115,101,98,111,114,100,101,114,0,211,81,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,205,141,1,99,108,97,115,115,0,200,147,1,4,0,248,225,13,0,4,0,253,227,13,0,4,0,130,230,13,0,0,2,103,114,97,112,104,0,224,65,114,116,101, 120,116,0,209,74,4,0,164,155,14,0,0,2,114,97,112,104,95,115,101,116,117,112,0,135,66,117,105,99,111,110,110,101,99,116,95,115,101,116,117,112,0,170,66,4,0,129,156,14,0,0,2,101,119,0,158,66,111,116,97,114,103,101,116,0,164,66,4,0,244,160,14,0,4,0,147, 162,14,0,4,0,147,164,14,0,0,2,114,97,100,105,111,95,0,197,66,115,108,105,100,101,114,95,0,245,67,0,2,100,114,97,119,0,224,66,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,140,147,1,0,2,95,0,233,66,0,202,67,0,7,117,112,100,97,116,101,0,160,67, 110,101,119,0,166,67,109,111,118,101,0,172,67,101,114,97,115,101,0,178,67,99,111,110,102,105,103,0,184,67,105,111,0,190,67,115,101,108,101,99,116,0,196,67,4,0,194,165,14,0,4,0,148,167,14,0,4,0,215,173,14,0,4,0,173,178,14,0,4,0,186,180,14,0,4,0,225,183, 14,0,4,0,250,186,14,0,4,0,134,189,14,0,0,2,114,97,100,105,111,95,115,101,116,117,112,0,239,67,115,108,105,100,101,114,95,115,101,116,117,112,0,190,68,4,0,215,249,14,0,0,3,100,114,97,119,0,153,68,99,104,101,99,107,95,0,159,68,119,105,100,103,101,116,98, 101,104,97,118,105,111,114,0,146,147,1,4,0,226,164,15,0,0,2,119,105,100,116,104,0,178,68,109,105,110,109,97,120,0,184,68,4,0,216,171,15,0,4,0,232,173,15,0,4,0,190,228,15,0,0,7,105,110,108,101,116,95,0,131,69,111,117,116,108,101,116,95,0,228,69,114,97, 100,105,111,95,0,249,83,115,108,105,100,101,114,95,0,184,85,117,95,0,136,86,101,114,98,111,115,101,0,138,125,97,108,117,101,95,0,160,129,1,0,5,103,101,116,105,116,0,175,69,105,115,115,105,103,110,97,108,0,181,69,112,101,114,102,111,114,109,0,187,69,100, 0,193,69,99,108,97,115,115,0,152,147,1,4,0,156,244,15,0,4,0,214,244,15,0,4,0,236,244,15,0,0,2,111,112,114,111,108,111,103,0,216,69,115,112,112,114,111,108,111,103,0,222,69,4,0,227,246,15,0,4,0,168,248,15,0,0,5,103,101,116,105,116,0,146,70,105,115,115, 105,103,110,97,108,0,152,70,112,101,114,102,111,114,109,0,158,70,100,115,112,0,164,70,99,108,97,115,115,0,158,147,1,4,0,231,134,16,0,4,0,161,135,16,0,4,0,183,135,16,0,0,2,112,114,111,108,111,103,0,184,70,101,112,105,108,111,103,0,190,70,4,0,252,138,16, 0,4,0,192,141,16,0,4,0,152,153,16,0,0,2,99,97,110,118,97,115,95,0,224,70,110,117,109,98,111,120,95,0,215,71,0,2,100,114,97,119,0,251,70,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,164,147,1,0,2,95,0,132,71,0,203,71,0,5,110,101,119,0,173,71, 109,111,118,101,0,179,71,101,114,97,115,101,0,185,71,99,111,110,102,105,103,0,191,71,115,101,108,101,99,116,0,197,71,4,0,170,153,16,0,4,0,243,156,16,0,4,0,136,159,16,0,4,0,253,159,16,0,4,0,173,162,16,0,4,0,175,163,16,0,4,0,160,198,16,0,0,4,99,0,253,71, 102,116,111,97,0,175,72,100,114,97,119,0,181,72,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,170,147,1,0,3,108,105,112,0,163,72,97,108,99,95,102,111,110,116,119,105,100,116,104,0,169,72,104,101,99,107,95,109,105,110,109,97,120,0,187,72,4,0, 157,208,16,0,4,0,141,209,16,0,4,0,167,210,16,0,4,0,183,243,16,0,4,0,137,251,16,0,4,0,221,179,17,0,0,3,115,99,97,108,97,114,0,226,72,102,114,111,109,98,105,110,98,117,102,0,232,72,0,238,72,4,0,161,198,17,0,4,0,186,202,17,0,4,0,169,212,17,0,4,0,210,212, 17,0,4,0,251,212,17,0,4,0,191,216,17,0,0,2,114,105,116,101,115,99,97,108,97,114,0,161,73,104,105,99,104,102,105,110,100,0,134,147,1,4,0,193,217,17,0,4,0,155,227,17,0,4,0,193,133,18,0,0,12,110,101,119,0,144,74,102,114,101,101,0,150,74,103,101,116,0,156, 74,114,101,116,101,120,116,0,203,74,119,105,100,116,104,0,215,74,104,101,105,103,104,116,0,221,74,100,0,227,74,101,114,97,115,101,0,251,74,115,101,108,101,99,116,0,135,75,97,99,116,105,118,97,116,101,0,141,75,107,101,121,0,147,75,109,111,117,115,101, 0,153,75,4,0,164,137,18,0,4,0,177,139,18,0,0,2,116,0,172,74,115,101,108,116,101,120,116,0,197,74,0,2,97,103,0,185,74,101,120,116,0,191,74,4,0,151,141,18,0,4,0,165,141,18,0,4,0,194,141,18,0,4,0,222,165,18,0,4,0,157,171,18,0,4,0,138,172,18,0,4,0,203,172, 18,0,0,2,114,97,119,0,245,74,105,115,112,108,97,99,101,0,129,75,4,0,140,173,18,0,4,0,202,173,18,0,4,0,137,174,18,0,4,0,216,174,18,0,4,0,207,175,18,0,4,0,227,177,18,0,4,0,147,188,18,0,0,3,105,110,105,116,0,185,75,114,101,115,116,111,114,101,0,191,75,102, 114,101,101,0,197,75,4,0,181,194,18,0,4,0,132,196,18,0,4,0,214,197,18,0,0,5,110,101,119,0,251,75,103,101,116,98,97,115,101,120,121,0,135,76,114,101,100,114,97,119,0,141,76,100,111,99,108,105,99,107,0,147,76,99,108,97,115,115,0,176,147,1,4,0,190,198,18, 0,4,0,253,199,18,0,4,0,242,201,18,0,4,0,176,220,18,0,4,0,238,220,18,0,4,0,193,230,18,0,0,6,110,0,197,76,115,0,218,76,102,0,237,76,103,101,116,0,158,77,109,97,116,99,104,0,220,77,99,111,110,102,111,114,109,0,226,77,0,2,101,119,0,212,76,111,116,105,102, 121,0,244,77,4,0,207,232,18,0,0,2,105,122,101,0,231,76,101,116,0,183,77,4,0,160,237,18,0,0,2,105,110,100,0,251,76,114,101,101,0,140,78,0,3,95,102,105,101,108,100,0,152,77,98,121,110,97,109,101,0,232,77,99,97,110,118,97,115,0,238,77,4,0,177,237,18,0,0, 2,102,108,111,97,116,0,177,77,115,121,109,98,111,108,0,208,77,4,0,247,238,18,0,0,2,102,108,111,97,116,0,202,77,115,121,109,98,111,108,0,214,77,4,0,190,240,18,0,4,0,233,241,18,0,4,0,161,243,18,0,4,0,205,244,18,0,4,0,128,130,19,0,4,0,228,135,19,0,4,0,142, 136,19,0,4,0,217,136,19,1,102,111,114,115,99,97,108,97,114,0,134,78,4,0,145,137,19,0,4,0,188,140,19,0,4,0,129,148,19,0,0,3,99,118,116,0,182,78,103,101,116,99,111,111,114,100,0,212,78,115,101,116,99,111,111,114,100,0,224,78,0,2,116,111,99,111,111,114, 100,0,206,78,102,114,111,109,99,111,111,114,100,0,218,78,4,0,180,165,19,0,4,0,252,167,19,0,4,0,147,170,19,0,4,0,186,173,19,0,0,3,102,108,111,97,116,0,139,79,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,187,141,1,99,108,97,115,115,0,182,147, 1,4,0,235,179,19,0,0,3,102,108,111,97,116,0,182,79,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,193,141,1,99,108,97,115,115,0,194,147,1,4,0,140,221,19,0,4,0,253,227,19,0,0,3,102,108,111,97,116,0,231,79,119,105,100,103,101,116,98,101,104,97, 118,105,111,114,0,199,141,1,99,108,97,115,115,0,188,147,1,4,0,169,159,20,0,0,3,101,0,146,80,111,103,103,108,101,95,115,101,116,117,112,0,240,82,114,97,118,101,114,115,97,108,95,115,101,116,117,112,0,243,83,0,2,109,112,108,97,116,101,95,115,101,116,117, 112,0,174,80,120,116,95,115,101,116,117,112,0,223,81,4,0,168,192,20,0,4,0,201,192,20,0,4,0,179,203,20,1,102,111,114,0,142,81,4,0,226,206,20,0,4,0,180,208,20,0,4,0,228,208,20,0,4,0,148,209,20,0,4,0,196,209,20,0,4,0,244,209,20,0,4,0,164,210,20,0,4,0,212, 210,20,0,4,0,132,211,20,0,4,0,180,211,20,0,4,0,228,211,20,0,4,0,148,212,20,0,4,0,196,212,20,0,4,0,128,225,20,0,4,0,140,137,21,0,4,0,148,147,21,0,4,0,196,147,21,0,0,2,97,118,101,0,187,81,101,116,116,111,0,217,81,4,0,220,163,21,0,4,0,177,172,21,0,4,0,221, 176,21,0,4,0,221,190,21,0,4,0,142,192,21,0,4,0,239,192,21,0,4,0,164,197,21,0,0,2,100,114,97,119,0,128,82,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,206,147,1,0,2,95,0,137,82,0,234,82,0,7,117,112,100,97,116,101,0,192,82,110,101,119,0,198, 82,109,111,118,101,0,204,82,101,114,97,115,101,0,210,82,99,111,110,102,105,103,0,216,82,105,111,0,222,82,115,101,108,101,99,116,0,228,82,4,0,245,208,21,0,4,0,223,210,21,0,4,0,229,217,21,0,4,0,137,223,21,0,4,0,132,225,21,0,4,0,178,228,21,0,4,0,203,231, 21,0,4,0,149,233,21,0,4,0,224,144,22,0,0,2,110,101,119,0,135,83,99,117,116,111,102,102,0,141,83,4,0,217,155,22,0,4,0,141,157,22,0,0,4,99,0,174,83,117,110,115,101,116,0,201,83,115,101,116,0,207,83,105,110,105,116,0,237,83,0,2,104,101,99,107,0,189,83,111, 112,121,0,195,83,4,0,223,157,22,0,4,0,209,159,22,0,4,0,161,160,22,0,0,2,103,108,105,115,116,0,225,83,97,114,114,97,121,0,231,83,4,0,205,160,22,0,4,0,164,161,22,0,4,0,251,161,22,0,4,0,150,230,22,0,0,2,100,114,97,119,0,148,84,119,105,100,103,101,116,98, 101,104,97,118,105,111,114,0,212,147,1,0,2,95,0,157,84,0,254,84,0,7,117,112,100,97,116,101,0,212,84,110,101,119,0,218,84,109,111,118,101,0,224,84,101,114,97,115,101,0,230,84,99,111,110,102,105,103,0,236,84,105,111,0,242,84,115,101,108,101,99,116,0,248, 84,4,0,198,230,22,0,4,0,152,232,22,0,4,0,228,238,22,0,4,0,168,243,22,0,4,0,181,245,22,0,4,0,220,248,22,0,4,0,141,252,22,0,4,0,153,254,22,0,0,3,114,97,100,105,111,95,115,101,116,117,112,0,178,85,115,108,105,100,101,114,95,115,101,116,117,112,0,130,86, 117,109,101,116,101,114,95,115,101,116,117,112,0,190,86,4,0,168,186,23,0,0,3,100,114,97,119,0,220,85,99,104,101,99,107,95,0,226,85,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,218,147,1,4,0,193,227,23,0,0,2,104,101,105,103,104,116,0,246,85, 109,105,110,109,97,120,0,252,85,4,0,183,234,23,0,4,0,178,236,23,0,4,0,179,160,24,0,0,3,100,114,97,119,0,178,86,99,104,101,99,107,95,104,101,105,103,104,116,0,184,86,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,224,147,1,4,0,218,219,24,0,4, 0,135,225,24,0,4,0,197,136,25,0,0,2,103,101,0,212,86,115,116,114,105,110,103,0,182,87,0,2,116,0,225,86,110,115,121,109,0,158,87,0,3,102,108,111,97,116,0,250,86,105,110,116,0,134,87,115,121,109,98,111,108,0,146,87,4,0,252,144,25,1,97,114,103,0,164,87, 4,0,181,145,25,1,97,114,103,0,170,87,4,0,208,145,25,1,97,114,103,0,176,87,4,0,175,146,25,0,4,0,241,147,25,0,4,0,204,148,25,0,4,0,245,148,25,0,4,0,196,149,25,0,0,12,110,101,119,0,147,88,102,114,101,101,0,153,88,100,117,112,108,105,99,97,116,101,0,159, 88,99,108,101,97,114,0,165,88,116,101,120,116,0,171,88,103,101,116,0,177,88,97,100,100,0,206,88,114,101,0,250,88,112,114,105,110,116,0,142,89,101,0,160,89,119,114,105,116,101,0,144,90,109,97,116,99,104,0,150,90,4,0,244,160,25,0,4,0,171,161,25,0,4,0,228, 161,25,0,4,0,180,163,25,0,4,0,243,163,25,0,0,3,116,101,120,116,0,200,88,110,97,116,111,109,0,148,89,118,101,99,0,154,89,4,0,136,180,25,0,4,0,177,185,25,3,118,0,232,88,98,105,110,98,117,102,0,238,88,115,101,109,105,0,244,88,4,0,226,186,25,0,4,0,202,189, 25,0,4,0,164,195,25,0,0,2,115,116,111,114,101,0,136,89,97,0,189,89,4,0,212,195,25,0,4,0,142,200,25,0,4,0,187,201,25,0,4,0,200,201,25,0,0,2,120,112,97,110,100,100,111,108,108,115,121,109,0,183,89,118,97,108,0,215,89,4,0,214,201,25,0,0,2,108,105,122,101, 100,111,108,108,115,121,109,0,209,89,100,0,228,89,4,0,141,204,25,0,4,0,164,209,25,1,102,105,108,101,0,156,90,4,0,140,222,25,1,95,118,105,97,95,0,242,89,0,2,99,97,110,118,97,115,0,132,90,112,97,116,104,0,138,90,4,0,235,228,25,0,4,0,146,231,25,0,4,0,185, 233,25,0,4,0,170,234,26,0,4,0,135,237,26,0,4,0,250,239,26,0,0,2,97,115,115,95,0,184,90,111,99,107,95,0,243,104,0,6,110,101,119,0,231,90,97,100,100,0,237,90,100,111,0,198,91,115,101,116,0,250,91,103,101,116,0,229,92,105,115,100,114,97,119,99,111,109,109, 97,110,100,0,186,93,4,0,163,249,26,0,0,7,99,114,101,97,116,111,114,0,174,91,109,101,116,104,111,100,0,180,91,98,97,110,103,0,186,91,112,111,105,110,116,101,114,0,192,91,115,121,109,98,111,108,0,232,91,108,105,115,116,0,238,91,97,110,121,116,104,105,110, 103,0,244,91,4,0,203,255,26,0,4,0,170,129,27,0,4,0,186,136,27,0,4,0,203,136,27,0,0,2,97,100,100,102,108,111,97,116,0,226,91,109,97,105,110,115,105,103,110,97,108,105,110,0,192,93,4,0,220,136,27,0,4,0,237,136,27,0,4,0,254,136,27,0,4,0,143,137,27,0,0,6, 119,105,100,103,101,116,0,187,92,112,0,193,92,104,101,108,112,115,121,109,98,111,108,0,168,93,100,114,97,119,99,111,109,109,97,110,100,0,180,93,95,101,120,116,101,114,110,95,100,105,114,0,198,93,115,97,118,101,102,110,0,210,93,4,0,160,137,27,0,0,2,97, 114,101,110,116,119,105,100,103,101,116,0,223,92,114,111,112,101,114,116,105,101,115,102,110,0,222,93,4,0,177,137,27,0,0,4,110,97,109,101,0,141,93,104,101,108,112,0,147,93,115,97,118,101,102,110,0,216,93,112,114,111,112,101,114,116,105,101,115,102,110, 0,228,93,4,0,194,137,27,0,0,2,110,97,109,101,0,162,93,100,105,114,0,204,93,4,0,209,137,27,0,4,0,225,137,27,0,4,0,242,137,27,0,4,0,130,138,27,0,4,0,145,138,27,0,4,0,251,138,27,0,4,0,219,139,27,0,4,0,244,139,27,0,4,0,165,140,27,0,4,0,182,140,27,0,4,0,196, 140,27,0,4,0,213,140,27,0,4,0,227,140,27,0,0,2,110,115,121,109,0,253,93,116,0,224,94,4,0,191,143,27,0,0,2,95,97,110,121,116,104,105,110,103,0,152,94,101,115,116,0,230,147,1,4,0,136,146,27,0,4,0,174,151,27,0,0,2,101,115,116,0,175,94,0,142,103,4,0,212, 153,27,0,4,0,236,153,27,0,0,2,109,101,115,115,0,206,94,101,114,115,105,111,110,0,139,143,1,4,0,173,169,27,0,4,0,230,171,27,0,4,0,219,173,27,0,0,4,102,110,0,128,95,98,121,116,101,115,0,223,96,122,98,121,116,101,115,0,229,96,95,115,121,115,95,0,225,118, 4,0,227,173,27,0,4,0,233,174,27,0,4,0,185,175,27,0,4,0,251,177,27,0,4,0,179,179,27,1,102,114,111,109,103,117,105,0,179,121,0,2,115,95,0,191,95,109,98,111,108,105,110,108,101,116,95,110,101,119,0,205,97,0,20,103,0,154,96,99,108,0,138,106,112,0,162,106, 97,0,131,107,108,0,226,107,117,0,209,108,116,0,151,109,101,120,0,192,109,115,0,160,110,114,0,166,112,109,0,198,115,118,0,196,116,113,117,101,117,101,103,117,105,0,166,117,98,0,232,117,111,0,154,118,110,0,145,120,104,0,183,120,102,0,229,120,105,0,221, 121,100,0,145,123,0,2,101,116,0,166,96,117,105,0,220,116,0,6,118,101,114,115,105,111,110,0,217,96,95,0,210,109,115,114,0,144,113,109,101,116,101,114,115,0,162,113,114,101,97,108,116,105,109,101,0,192,115,98,108,107,115,105,122,101,0,203,121,4,0,150,194, 27,0,4,0,203,194,27,0,4,0,152,195,27,0,4,0,171,195,27,0,4,0,187,196,27,0,4,0,177,198,27,0,0,2,108,101,116,95,0,143,97,109,105,100,105,95,0,158,130,1,0,3,110,101,119,0,175,97,102,114,101,101,0,187,97,103,101,116,115,105,103,110,97,108,105,110,100,101, 120,0,130,103,4,0,209,198,27,0,4,0,255,199,27,0,4,0,137,211,27,0,4,0,191,212,27,0,4,0,233,213,27,0,4,0,147,215,27,0,0,8,108,105,115,116,0,153,98,105,0,159,98,99,111,110,110,101,99,116,0,206,100,100,105,115,99,111,110,110,101,99,116,0,212,100,110,0,218, 100,115,0,149,101,109,111,118,101,0,234,101,102,105,110,100,115,105,103,110,97,108,115,99,97,108,97,114,0,252,102,4,0,170,216,27,0,0,2,110,105,116,0,177,98,115,115,105,103,110,97,108,0,209,102,4,0,161,218,27,0,0,2,108,101,116,95,0,201,98,109,105,100, 105,95,0,156,132,1,0,8,115,0,131,99,110,101,119,0,242,99,98,97,110,103,0,248,99,112,111,105,110,116,101,114,0,254,99,102,0,132,100,108,105,115,116,0,159,100,97,110,121,116,104,105,110,103,0,165,100,103,101,116,115,0,171,100,0,2,101,116,115,116,97,99, 107,108,105,109,0,154,99,121,109,98,111,108,0,153,100,4,0,140,223,27,0,0,5,103,101,116,101,118,101,110,116,110,111,0,236,99,114,101,111,112,101,110,109,101,112,108,101,97,115,101,0,237,104,115,101,116,95,117,115,105,110,103,95,97,117,100,105,111,0,173, 108,116,105,99,107,0,179,108,97,117,100,105,111,95,99,97,108,108,98,97,99,107,102,110,0,185,108,4,0,173,223,27,0,4,0,195,223,27,0,4,0,230,224,27,0,4,0,226,225,27,0,0,2,108,111,97,116,0,147,100,114,101,101,0,200,100,4,0,249,226,27,0,4,0,252,227,27,0,4, 0,255,228,27,0,4,0,144,230,27,0,0,2,121,109,98,111,108,0,194,100,105,103,110,97,108,105,110,100,101,120,0,136,103,4,0,161,231,27,0,4,0,175,231,27,0,4,0,158,232,27,0,4,0,178,234,27,0,0,4,111,117,116,108,101,116,115,0,137,101,105,110,108,101,116,115,0, 143,101,101,120,116,116,114,97,118,101,114,115,101,111,117,116,108,101,116,0,183,101,115,105,103,0,147,102,4,0,214,236,27,0,4,0,133,237,27,0,0,2,116,97,114,116,116,114,97,118,101,114,115,101,111,117,116,108,101,116,0,177,101,105,103,0,174,102,4,0,196, 237,27,0,4,0,146,238,27,0,0,3,104,101,99,107,111,98,106,101,99,116,0,228,101,111,109,112,105,108,101,0,235,143,1,97,110,118,97,115,109,97,107,101,114,0,236,147,1,4,0,233,239,27,0,0,2,105,110,108,101,116,102,105,114,115,116,0,135,102,111,117,116,108,101, 116,102,105,114,115,116,0,141,102,4,0,144,240,27,0,4,0,235,240,27,0,0,2,105,110,108,101,116,115,0,168,102,111,117,116,108,101,116,115,0,234,102,4,0,198,241,27,0,0,2,105,110,108,101,116,105,110,100,101,120,0,203,102,111,117,116,108,101,116,105,110,100, 101,120,0,240,102,4,0,169,242,27,0,0,2,105,110,108,101,116,0,228,102,111,117,116,108,101,116,0,246,102,4,0,182,243,27,0,4,0,223,244,27,0,4,0,166,245,27,0,4,0,133,246,27,0,4,0,232,246,27,0,4,0,159,248,27,0,4,0,157,249,27,0,4,0,245,249,27,0,4,0,215,250, 27,0,4,0,247,251,27,0,0,3,112,100,95,115,101,116,117,112,0,196,103,109,97,105,110,108,111,111,112,0,191,108,98,97,116,99,104,109,97,105,110,0,197,108,4,0,255,254,27,0,0,2,105,110,100,0,216,103,97,110,103,0,201,104,4,0,246,128,28,0,4,0,214,130,28,0,4, 0,141,133,28,0,4,0,149,133,28,0,0,2,101,116,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,0,145,104,121,109,98,111,108,0,219,104,4,0,234,134,28,0,0,2,117,115,104,115,121,109,0,166,104,111,0,172,104,4,0,200,135,28,0,0,2,112,115,121, 109,0,189,104,105,110,116,101,114,0,213,104,4,0,187,136,28,0,4,0,193,137,28,0,4,0,154,138,28,0,4,0,178,138,28,0,4,0,209,138,28,0,4,0,240,138,28,0,4,0,143,139,28,0,4,0,204,139,28,0,4,0,237,139,28,0,0,6,110,101,119,0,158,105,117,110,115,101,116,0,164,105, 115,101,116,0,170,105,100,101,108,97,121,0,184,105,103,101,116,0,190,105,102,114,101,101,0,132,106,4,0,135,140,28,0,4,0,217,140,28,0,4,0,225,141,28,1,108,105,115,116,0,132,148,1,4,0,225,143,28,0,0,3,108,111,103,105,99,97,108,116,105,109,101,0,228,105, 115,121,115,116,105,109,101,0,234,105,116,105,109,101,115,105,110,99,101,0,248,105,4,0,180,144,28,0,4,0,214,144,28,1,97,102,116,101,114,0,254,105,4,0,248,144,28,0,4,0,197,145,28,0,4,0,138,146,28,0,0,2,101,97,114,104,105,115,116,0,156,106,111,115,101, 0,252,111,4,0,176,146,28,0,0,4,114,0,196,106,111,108,108,0,178,117,117,116,111,110,108,111,97,100,108,105,115,116,0,201,118,101,114,102,0,254,147,1,0,2,105,110,116,0,220,106,101,116,101,110,100,103,117,105,98,121,116,101,115,0,160,117,0,2,104,0,238,106, 116,111,115,116,100,101,114,114,0,185,150,1,0,2,105,115,116,0,253,106,111,111,107,0,179,150,1,4,0,190,147,28,0,0,3,100,0,158,107,114,103,112,97,114,115,101,0,197,121,117,100,105,111,97,112,105,0,213,143,1,0,2,100,0,181,107,118,97,110,99,101,95,115,97, 109,112,108,101,115,0,179,148,1,0,2,104,105,115,116,0,199,107,112,111,108,108,102,110,0,138,116,4,0,133,151,28,0,0,2,115,116,97,116,117,115,0,220,107,95,0,174,113,4,0,206,152,28,0,0,2,111,0,236,107,105,0,219,113,0,3,103,0,252,107,99,107,0,203,108,97, 100,0,157,115,0,2,95,101,114,114,111,114,0,143,108,101,114,114,111,114,0,162,125,4,0,218,154,28,0,0,2,101,116,101,114,115,0,167,108,105,100,105,95,0,148,134,1,4,0,214,160,28,0,4,0,238,161,28,0,4,0,174,163,28,0,4,0,129,172,28,0,4,0,245,174,28,0,4,0,216, 175,28,0,4,0,231,176,28,0,0,2,110,0,228,108,115,101,115,116,100,112,97,116,104,0,144,145,1,0,4,108,111,99,107,0,145,109,113,117,101,117,101,103,117,105,0,172,117,98,97,115,104,102,105,108,101,110,97,109,101,0,215,121,105,120,101,114,114,111,114,0,168, 125,4,0,136,177,28,0,0,2,114,121,0,165,109,105,109,101,0,150,148,1,0,2,108,111,99,107,0,186,109,116,111,111,112,101,110,111,110,101,0,196,122,4,0,169,177,28,0,0,2,105,116,0,204,109,116,0,149,149,1,4,0,202,177,28,0,0,4,97,117,100,105,111,95,0,129,110, 111,117,116,99,104,97,110,110,101,108,115,0,150,113,105,110,99,104,97,110,110,101,108,115,0,156,113,109,105,100,105,95,0,173,133,1,0,3,112,97,114,97,109,115,0,154,110,100,101,118,115,0,133,114,97,112,105,115,0,163,114,4,0,193,178,28,0,0,6,97,118,101, 95,97,117,100,105,111,95,112,97,114,97,109,115,0,215,110,101,0,221,110,111,0,241,115,116,97,0,205,117,99,104,101,100,0,175,143,1,108,101,101,112,103,114,97,105,110,0,144,148,1,4,0,157,180,28,0,0,3,116,0,249,110,110,100,95,100,97,99,115,0,138,113,97,114, 99,104,112,97,116,104,0,167,150,1,0,6,99,104,115,114,0,182,111,95,0,188,111,98,108,111,99,107,115,105,122,101,0,139,114,97,108,97,114,109,0,235,115,101,120,116,114,97,112,97,116,104,0,190,122,109,105,100,105,116,105,109,101,100,105,102,102,0,142,134, 1,4,0,141,182,28,0,0,3,97,117,100,105,111,95,0,215,111,115,0,212,123,101,120,116,114,97,112,97,116,104,0,241,123,0,2,115,0,227,111,97,112,105,0,145,114,0,2,101,116,116,105,110,103,115,0,246,111,116,97,116,101,0,157,114,4,0,215,187,28,0,0,3,95,0,142,112, 115,111,99,107,101,116,0,190,116,0,255,122,0,2,97,117,100,105,111,0,160,112,109,105,100,105,0,217,133,1,4,0,162,200,28,0,0,4,101,0,205,112,109,112,111,108,108,102,110,0,144,116,117,110,95,115,99,104,101,100,117,108,101,114,0,219,118,99,102,105,108,101, 0,139,123,0,3,111,112,101,110,95,0,242,112,112,111,114,116,105,100,108,101,0,168,113,103,105,115,116,101,114,95,108,111,97,100,101,114,0,207,118,0,2,97,117,100,105,111,0,132,113,109,105,100,105,0,223,133,1,4,0,226,201,28,0,4,0,252,204,28,0,4,0,254,207, 28,0,4,0,166,208,28,0,4,0,190,208,28,0,4,0,214,208,28,0,4,0,190,209,28,0,0,3,112,114,111,112,101,114,116,105,101,115,0,207,113,100,105,97,108,111,103,0,213,113,115,101,116,97,112,105,0,151,114,4,0,180,215,28,0,4,0,205,228,28,0,0,2,115,116,0,234,113,98, 100,105,114,0,247,149,1,0,2,100,101,118,115,0,255,113,109,105,100,105,100,101,118,115,0,199,133,1,4,0,186,233,28,0,4,0,244,233,28,0,4,0,184,234,28,0,4,0,168,235,28,0,4,0,238,235,28,0,4,0,197,237,28,0,4,0,241,237,28,0,0,2,111,111,0,187,114,105,110,100, 101,114,114,111,114,0,150,125,4,0,223,240,28,0,0,5,111,112,101,110,95,97,117,100,105,111,0,255,114,99,108,111,115,101,95,97,117,100,105,111,0,133,115,115,101,110,100,95,100,97,99,115,0,139,115,103,101,116,100,101,118,115,0,145,115,108,105,115,116,100, 101,118,115,0,151,115,4,0,167,241,28,0,4,0,180,241,28,0,4,0,193,241,28,0,4,0,206,241,28,0,4,0,201,242,28,0,0,2,112,114,101,102,101,114,101,110,99,101,115,0,180,115,95,108,105,98,0,213,118,4,0,204,248,28,0,4,0,144,141,29,0,4,0,163,158,29,0,0,2,105,0,210, 115,97,105,110,0,185,121,0,2,99,114,111,115,108,101,101,112,0,229,115,100,105,0,219,144,1,4,0,130,164,29,0,4,0,239,166,29,0,0,2,99,107,101,114,114,111,114,0,132,116,117,110,100,0,209,148,1,4,0,183,168,29,0,4,0,143,169,29,0,4,0,194,170,29,0,0,3,110,101, 119,0,172,116,102,114,101,101,0,178,116,114,101,97,100,0,184,116,4,0,143,172,29,0,4,0,152,173,29,0,4,0,190,180,29,0,4,0,204,185,29,0,0,2,103,117,105,0,214,116,101,114,98,111,115,101,0,149,150,1,4,0,217,187,29,0,4,0,175,193,29,2,99,109,100,0,235,149,1, 115,101,116,112,111,114,116,110,117,109,98,101,114,0,241,149,1,0,3,105,110,103,0,154,117,97,116,104,95,100,105,97,108,111,103,0,176,124,100,111,98,106,101,99,116,0,248,147,1,4,0,236,197,29,0,4,0,149,201,29,0,4,0,184,201,29,0,4,0,228,202,29,0,0,2,103, 117,105,0,199,117,109,105,100,105,113,117,101,117,101,0,136,134,1,4,0,137,204,29,0,0,2,114,116,103,117,105,0,226,117,116,105,99,112,97,116,104,0,173,150,1,4,0,197,204,29,0,0,2,97,0,250,117,108,111,99,107,115,105,122,101,0,207,143,1,0,2,105,108,0,142, 118,115,104,102,105,108,101,110,97,109,101,0,209,121,4,0,248,226,29,0,4,0,198,228,29,0,0,4,110,108,111,97,100,108,105,115,116,0,195,118,112,101,110,95,0,202,122,117,0,174,125,108,100,116,99,108,118,101,114,115,105,111,110,0,143,150,1,4,0,161,229,29,0, 4,0,251,229,29,0,4,0,150,245,29,0,4,0,253,245,29,0,4,0,228,246,29,0,0,4,115,0,133,119,109,97,105,110,95,97,100,118,97,110,99,101,0,186,119,116,105,109,101,0,192,119,100,97,99,115,114,0,255,119,0,3,111,117,110,100,0,161,119,99,104,101,100,0,219,119,108, 101,101,112,103,114,97,105,110,0,133,120,0,2,111,117,116,0,174,119,105,110,0,180,119,4,0,164,250,29,0,4,0,188,250,29,0,4,0,212,250,29,0,0,2,95,112,101,114,95,100,115,112,95,116,105,99,107,0,213,119,0,249,119,4,0,232,250,29,0,0,2,98,108,111,99,107,115, 105,122,101,0,243,119,97,100,118,97,110,99,101,0,139,120,4,0,254,250,29,0,4,0,148,251,29,0,4,0,170,251,29,0,4,0,192,251,29,0,4,0,214,251,29,0,0,3,101,97,114,101,115,116,102,111,110,116,115,105,122,101,0,177,120,111,0,143,144,1,109,105,100,105,0,192,144, 1,4,0,195,252,29,0,0,3,111,115,116,102,111,110,116,115,105,122,101,0,223,120,105,112,114,105,111,114,105,116,121,0,137,144,1,101,108,112,112,97,116,104,0,161,150,1,4,0,216,252,29,0,0,3,111,110,116,0,130,121,105,110,100,112,114,111,103,100,105,114,0,191, 121,108,97,103,115,0,133,143,1,0,3,119,0,149,121,104,101,105,103,104,116,0,173,121,0,132,145,1,0,2,105,100,116,104,0,167,121,101,105,103,104,116,0,138,145,1,4,0,238,252,29,0,4,0,132,253,29,0,4,0,153,255,29,0,4,0,221,133,30,0,4,0,194,138,30,0,4,0,172, 142,30,0,4,0,184,178,30,0,4,0,242,190,30,0,4,0,165,191,30,0,0,3,115,97,98,115,111,108,117,116,101,112,97,116,104,0,255,121,110,0,229,133,1,100,108,101,104,111,111,107,0,138,148,1,4,0,216,191,30,0,0,3,97,112,112,101,110,100,0,157,122,102,114,101,101,0, 178,122,103,101,116,0,184,122,4,0,240,196,30,1,95,102,105,108,101,115,0,172,122,4,0,133,199,30,0,4,0,229,200,30,0,4,0,191,201,30,0,4,0,138,202,30,0,4,0,139,204,30,0,0,2,97,98,115,111,108,117,116,101,0,223,122,109,105,100,105,0,211,133,1,4,0,241,211,30, 0,0,2,112,97,116,104,0,249,122,104,101,108,112,112,97,116,104,0,133,123,4,0,143,218,30,0,4,0,229,218,30,0,4,0,248,218,30,0,4,0,239,224,30,0,0,3,111,102,108,97,103,115,0,168,123,101,0,174,123,97,99,115,114,0,185,148,1,4,0,169,232,30,0,0,3,99,111,100,101, 100,105,97,108,111,103,0,206,123,102,0,236,148,1,98,117,103,108,101,118,101,108,0,137,149,1,4,0,153,237,30,0,0,2,101,97,114,99,104,112,97,116,104,0,235,123,116,97,114,116,117,112,0,182,124,4,0,234,240,30,0,4,0,216,241,30,0,0,2,95,0,137,124,117,112,95, 100,105,97,108,111,103,0,194,124,0,2,112,97,116,104,95,100,105,97,108,111,103,0,170,124,115,116,97,114,116,117,112,95,100,105,97,108,111,103,0,188,124,4,0,198,242,30,0,4,0,246,243,30,0,4,0,228,245,30,0,4,0,226,246,30,0,4,0,150,248,30,0,4,0,130,131,31, 3,115,116,114,105,110,103,0,236,124,97,116,111,109,0,242,124,102,108,111,97,116,0,248,124,4,0,168,132,31,0,4,0,174,133,31,0,4,0,218,133,31,0,4,0,245,134,31,0,4,0,203,135,31,0,4,0,187,136,31,0,4,0,198,137,31,0,4,0,231,138,31,0,4,0,183,140,31,0,4,0,156, 141,31,0,4,0,167,142,31,0,4,0,203,142,31,0,0,2,99,104,0,194,125,116,99,104,97,110,110,101,108,115,0,197,148,1,4,0,130,143,31,0,0,8,115,0,132,126,116,111,117,0,156,126,119,99,95,0,181,126,111,102,102,115,101,116,0,226,126,99,104,97,114,110,117,109,0,232, 126,110,101,120,116,99,104,97,114,0,238,126,105,110,99,0,250,126,100,101,99,0,135,127,0,2,101,113,108,101,110,0,150,126,116,114,108,101,110,0,244,126,4,0,244,143,31,0,0,2,99,115,0,169,126,116,102,56,0,175,126,4,0,153,144,31,0,4,0,178,146,31,0,0,2,110, 98,121,116,101,115,0,201,126,116,111,117,116,102,56,0,207,126,4,0,229,149,31,0,4,0,188,150,31,1,95,110,117,108,0,220,126,4,0,188,152,31,0,4,0,229,152,31,0,4,0,227,153,31,0,4,0,234,154,31,0,4,0,226,155,31,0,4,0,150,156,31,1,95,112,116,114,0,148,127,4, 0,160,157,31,1,95,112,116,114,0,154,127,4,0,170,158,31,0,4,0,171,159,31,0,4,0,172,160,31,0,4,0,200,161,31,0,4,0,205,162,31,0,4,0,249,163,31,0,4,0,165,165,31,0,4,0,179,166,31,0,0,9,97,0,189,128,1,99,111,110,110,101,99,116,105,118,101,95,115,101,116,117, 112,0,225,129,1,103,117,105,95,115,101,116,117,112,0,140,130,1,105,110,116,101,114,102,97,99,101,95,115,101,116,117,112,0,146,130,1,108,105,115,116,95,115,101,116,117,112,0,152,130,1,109,105,0,228,131,1,110,101,116,95,115,101,116,117,112,0,138,132,1, 113,108,105,115,116,95,115,101,116,117,112,0,144,132,1,116,105,109,101,95,115,101,116,117,112,0,150,132,1,0,2,99,111,117,115,116,105,99,115,95,115,101,116,117,112,0,228,128,1,114,105,116,104,109,101,116,105,99,95,115,101,116,117,112,0,234,128,1,4,0,159, 172,31,0,4,0,129,233,31,0,4,0,237,143,32,0,4,0,135,147,32,0,4,0,139,151,32,0,4,0,183,153,32,0,4,0,217,172,32,0,4,0,218,185,32,0,4,0,146,248,32,0,4,0,146,251,32,0,0,3,103,101,116,0,192,129,1,114,101,108,101,97,115,101,0,207,129,1,115,101,116,102,108,111, 97,116,0,219,129,1,4,0,235,252,32,1,102,108,111,97,116,0,213,129,1,4,0,240,253,32,0,4,0,233,254,32,0,4,0,186,255,32,0,4,0,199,131,33,0,0,2,110,101,119,0,128,130,1,100,101,108,101,116,101,102,111,114,107,101,121,0,134,130,1,4,0,169,132,33,0,4,0,135,138, 33,0,4,0,226,161,33,0,4,0,168,171,33,0,4,0,213,217,33,0,0,7,98,121,116,101,0,225,130,1,115,121,115,101,120,0,231,130,1,110,111,116,101,111,110,0,237,130,1,99,0,243,130,1,112,0,145,131,1,97,102,116,101,114,116,111,117,99,104,0,204,131,1,114,101,97,108, 116,105,109,101,105,110,0,222,131,1,4,0,236,224,33,0,4,0,232,225,33,0,4,0,137,232,33,0,0,2,111,110,116,114,111,108,99,104,97,110,103,101,0,139,131,1,108,107,0,216,131,1,4,0,128,240,33,0,0,3,114,111,103,114,97,109,99,104,97,110,103,101,0,192,131,1,105, 116,99,104,98,101,110,100,0,198,131,1,111,108,121,97,102,116,101,114,116,111,117,99,104,0,210,131,1,4,0,229,245,33,0,4,0,173,251,33,0,4,0,242,128,34,0,4,0,157,135,34,0,4,0,152,140,34,0,4,0,154,146,34,0,0,2,100,105,95,115,101,116,117,112,0,254,131,1,115, 99,95,115,101,116,117,112,0,132,132,1,4,0,175,200,34,0,4,0,216,220,34,0,4,0,157,247,34,0,4,0,225,141,35,0,4,0,146,199,35,0,0,5,110,111,116,101,111,110,0,212,132,1,99,111,110,116,114,111,108,99,104,97,110,103,101,0,218,132,1,112,0,224,132,1,97,102,116, 101,114,116,111,117,99,104,0,155,133,1,98,121,116,101,0,167,133,1,4,0,179,199,35,0,4,0,137,201,35,0,0,3,114,111,103,114,97,109,99,104,97,110,103,101,0,143,133,1,105,116,99,104,98,101,110,100,0,149,133,1,111,108,121,97,102,116,101,114,116,111,117,99,104, 0,161,133,1,4,0,223,202,35,0,4,0,141,204,35,0,4,0,193,205,35,0,4,0,239,206,35,0,4,0,197,208,35,0,0,2,97,112,105,115,0,193,133,1,112,97,114,97,109,115,0,205,133,1,4,0,203,209,35,0,4,0,211,209,35,0,4,0,219,209,35,0,4,0,227,209,35,0,4,0,235,209,35,0,4,0, 243,209,35,0,0,2,105,116,109,105,100,105,113,117,101,117,101,0,130,134,1,99,104,97,110,110,101,108,115,0,191,148,1,4,0,251,209,35,0,4,0,131,210,35,0,4,0,139,210,35,0,0,3,115,101,116,97,112,105,0,184,134,1,112,114,111,112,101,114,116,105,101,115,0,190, 134,1,100,105,97,108,111,103,0,196,134,1,4,0,171,210,35,0,4,0,179,210,35,0,4,0,187,210,35,0,0,2,114,101,99,101,105,118,101,95,0,221,134,1,95,0,251,134,1,0,2,110,101,119,0,239,134,1,115,101,116,117,112,0,245,134,1,4,0,183,213,35,0,4,0,251,213,35,0,0,14, 105,110,105,116,0,239,135,1,99,0,255,135,1,97,0,188,136,1,112,0,133,137,1,115,0,145,138,1,102,0,186,138,1,98,0,239,138,1,117,110,98,105,110,100,0,145,139,1,101,120,105,115,116,115,0,214,139,1,110,111,116,101,111,110,0,220,139,1,109,0,176,140,1,111,112, 101,110,102,105,108,101,0,249,140,1,103,101,116,100,111,108,108,97,114,122,101,114,111,0,133,141,1,108,105,115,116,104,111,111,107,0,174,145,1,4,0,158,216,35,1,95,97,117,100,105,111,0,255,136,1,0,2,108,0,150,136,1,111,110,116,114,111,108,99,104,97,110, 103,101,0,234,139,1,0,2,101,97,114,95,115,101,97,114,99,104,95,112,97,116,104,0,182,136,1,111,115,101,102,105,108,101,0,255,140,1,4,0,179,218,35,0,0,2,100,100,95,0,210,136,1,102,116,101,114,116,111,117,99,104,0,148,140,1,0,3,116,111,95,115,101,97,114, 99,104,95,112,97,116,104,0,249,136,1,102,108,111,97,116,0,174,138,1,115,121,109,98,111,108,0,180,138,1,4,0,230,218,35,0,4,0,166,219,35,0,0,3,114,0,169,137,1,105,116,99,104,98,101,110,100,0,134,140,1,111,108,121,97,102,116,101,114,116,111,117,99,104,0, 162,140,1,0,2,111,0,187,137,1,105,110,116,104,111,111,107,0,150,145,1,0,2,99,101,115,115,95,0,212,137,1,103,114,97,109,99,104,97,110,103,101,0,248,139,1,0,4,114,97,119,0,249,137,1,115,104,111,114,116,0,255,137,1,102,108,111,97,116,0,133,138,1,100,111, 117,98,108,101,0,139,138,1,4,0,202,220,35,0,4,0,253,223,35,0,4,0,169,227,35,0,4,0,168,230,35,0,0,2,116,97,114,116,95,109,101,115,115,97,103,101,0,168,138,1,121,0,151,139,1,4,0,183,233,35,0,4,0,228,233,35,0,4,0,180,234,35,0,0,2,105,110,105,115,104,95, 0,206,138,1,108,111,97,116,0,180,139,1,0,2,108,105,115,116,0,227,138,1,109,101,115,115,97,103,101,0,233,138,1,4,0,151,235,35,0,4,0,254,235,35,0,0,3,105,110,100,0,139,139,1,97,110,103,0,194,139,1,108,111,99,107,115,105,122,101,0,208,139,1,4,0,236,236, 35,0,4,0,135,237,35,0,0,2,109,98,111,108,0,166,139,1,115,0,217,140,1,4,0,154,237,35,1,104,111,111,107,0,168,145,1,4,0,227,237,35,1,104,111,111,107,0,162,145,1,4,0,164,238,35,1,104,111,111,107,0,156,145,1,4,0,222,238,35,0,4,0,235,238,35,0,4,0,134,239, 35,1,104,111,111,107,0,186,145,1,4,0,249,239,35,1,104,111,111,107,0,192,145,1,4,0,236,240,35,1,104,111,111,107,0,198,145,1,4,0,195,241,35,1,104,111,111,107,0,204,145,1,4,0,164,242,35,1,104,111,111,107,0,210,145,1,4,0,251,242,35,1,104,111,111,107,0,216, 145,1,0,2,105,100,105,98,121,116,101,0,203,140,1,101,115,115,97,103,101,104,111,111,107,0,180,145,1,4,0,238,243,35,1,104,111,111,107,0,222,145,1,0,2,101,120,0,237,140,1,114,101,97,108,116,105,109,101,0,243,140,1,4,0,194,244,35,0,4,0,147,245,35,0,4,0, 231,245,35,0,4,0,160,246,35,0,4,0,179,246,35,0,0,3,115,99,97,108,101,95,115,116,114,0,169,141,1,100,98,50,105,0,151,143,1,99,111,108,0,157,143,1,4,0,192,169,38,0,4,0,252,170,38,0,4,0,188,171,38,0,4,0,244,171,38,0,4,0,140,172,38,0,4,0,164,172,38,0,4,0, 188,172,38,0,0,10,112,111,105,110,116,101,114,0,157,142,1,102,108,111,97,116,0,163,142,1,115,0,169,142,1,98,97,110,103,0,195,142,1,108,105,115,116,0,201,142,1,97,110,121,116,104,105,110,103,0,207,142,1,95,0,219,142,1,120,0,243,142,1,121,0,249,142,1,0, 255,142,1,4,0,132,173,38,0,4,0,144,173,38,0,0,2,121,109,98,111,108,0,189,142,1,105,103,110,97,108,0,213,142,1,4,0,156,173,38,0,4,0,168,173,38,0,4,0,180,173,38,0,4,0,192,173,38,0,4,0,204,173,38,0,0,2,78,0,231,142,1,88,0,237,142,1,4,0,216,173,38,0,4,0, 228,173,38,0,4,0,240,173,38,0,4,0,252,173,38,0,4,0,136,174,38,0,4,0,248,174,38,0,4,0,160,175,38,0,4,0,160,181,38,0,4,0,160,182,38,0,4,0,192,189,38,0,4,0,228,192,38,0,4,0,236,192,38,0,0,2,98,108,111,99,107,115,105,122,101,0,201,143,1,97,100,118,97,110, 99,101,0,203,148,1,4,0,136,193,38,0,4,0,140,194,38,0,4,0,144,194,38,1,111,112,101,110,101,100,0,229,143,1,4,0,148,194,38,0,0,2,116,105,109,101,0,253,143,1,100,97,116,101,0,131,144,1,4,0,164,195,38,0,4,0,173,195,38,0,4,0,188,195,38,0,0,4,115,108,101,101, 112,0,186,144,1,97,117,116,111,112,97,116,99,104,0,253,149,1,103,117,105,0,131,150,1,108,111,97,100,98,97,110,103,0,137,150,1,4,0,192,195,38,0,0,2,111,117,116,0,207,144,1,105,110,0,213,144,1,4,0,196,195,38,0,4,0,200,195,38,0,0,2,105,110,100,101,118,108, 105,115,116,0,248,144,1,111,117,116,100,101,118,108,105,115,116,0,254,144,1,4,0,224,195,38,0,4,0,160,196,38,0,4,0,224,196,38,0,4,0,196,197,38,0,4,0,128,199,38,0,4,0,136,199,38,0,4,0,140,199,38,0,4,0,144,199,38,0,4,0,148,199,38,0,4,0,152,199,38,0,4,0, 156,199,38,0,4,0,160,199,38,0,4,0,164,199,38,0,4,0,168,199,38,0,4,0,172,199,38,0,4,0,176,199,38,0,4,0,180,199,38,0,4,0,184,199,38,0,4,0,224,167,39,0,4,0,228,167,39,0,4,0,232,167,39,0,4,0,236,167,39,0,4,0,240,167,39,0,4,0,244,167,39,0,4,0,248,167,39,0, 4,0,252,167,39,0,4,0,128,168,39,0,4,0,132,168,39,0,4,0,136,168,39,0,4,0,140,168,39,0,4,0,144,168,39,0,4,0,148,168,39,0,4,0,152,168,39,0,4,0,156,168,39,0,4,0,160,168,39,0,4,0,164,168,39,0,4,0,168,168,39,0,4,0,172,168,39,0,4,0,176,168,39,0,4,0,180,168, 39,0,4,0,184,168,39,0,4,0,212,168,39,0,4,0,216,168,39,0,4,0,220,168,39,0,4,0,224,168,39,0,4,0,228,168,39,0,4,0,232,168,39,0,4,0,132,169,39,0,4,0,160,169,39,0,4,0,164,169,39,0,4,0,168,169,39,0,4,0,196,169,39,0,4,0,224,169,39,0,4,0,228,169,39,0,4,0,232, 169,39,0,4,0,236,169,39,0,4,0,240,169,39,0,4,0,244,169,39,0,4,0,144,170,39,0,4,0,172,170,39,0,4,0,200,170,39,0,4,0,228,170,39,0,4,0,232,170,39,0,4,0,236,170,39,0,4,0,240,170,39,0,4,0,244,170,39,0,4,0,248,170,39,0,4,0,252,170,39,0,4,0,128,171,39,0,4,0, 136,171,39,1,95,112,101,114,95,100,115,112,95,116,105,99,107,0,173,148,1,4,0,144,171,39,0,4,0,152,171,39,0,4,0,156,171,39,0,4,0,160,171,39,0,4,0,164,171,39,0,4,0,168,171,39,0,0,2,105,110,0,224,148,1,111,117,116,0,230,148,1,4,0,172,171,39,0,4,0,176,171, 39,0,0,2,101,97,116,114,116,0,131,149,1,97,117,108,116,102,111,110,116,0,143,149,1,4,0,180,171,39,0,4,0,184,171,39,0,4,0,188,171,39,0,0,2,101,114,110,0,169,149,1,114,97,102,108,97,103,115,0,213,149,1,0,2,97,108,115,99,104,101,100,108,105,98,0,193,149, 1,108,105,115,116,0,155,150,1,4,0,192,171,39,1,110,97,109,101,0,207,149,1,4,0,224,171,39,0,4,0,200,179,39,1,115,116,114,105,110,103,0,229,149,1,4,0,224,179,39,0,4,0,200,187,39,0,4,0,204,187,39,0,4,0,208,187,39,0,4,0,212,187,39,0,4,0,216,187,39,0,4,0, 220,187,39,0,4,0,224,187,39,0,4,0,228,187,39,0,4,0,232,187,39,0,4,0,236,187,39,0,4,0,240,187,39,0,4,0,244,187,39,0,4,0,248,187,39,0,4,0,252,187,39,0,4,0,128,188,39,0,0,5,97,112,112,101,110,100,95,99,108,97,115,115,0,149,151,1,108,101,110,103,116,104, 95,99,108,97,115,115,0,155,151,1,112,114,101,112,101,110,100,95,99,108,97,115,115,0,161,151,1,115,112,108,105,116,95,99,108,97,115,115,0,167,151,1,116,114,105,109,95,99,108,97,115,115,0,173,151,1,4,0,132,188,39,0,4,0,136,188,39,0,4,0,140,188,39,0,4,0, 144,188,39,0,4,0,148,188,39,0,0,41,190,0,0,100,0,0,0,0,0,0,0,81,190,0,0,100,0,0,0,0,0,0,0,110,190,0,0,102,0,1,0,80,96,143,77,1,0,0,0,46,1,0,0,164,11,0,0,178,190,0,0,36,1,0,0,164,11,0,0,1,0,0,0,36,0,0,0,13,1,0,0,1,0,0,0,78,1,0,0,13,1,0,0,1,0,0,0,46,1, 0,0,177,12,0,0,188,190,0,0,36,1,0,0,177,12,0,0,1,0,0,0,36,0,0,0,106,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,1,0,0,0,46,1,0,0,27,13,0,0,202,190,0,0,36,1,0,0,27,13,0,0,1,0,0,0,36,0,0,0,160,1,0,0,1,0,0,0,78,1,0,0,160,1,0,0,1,0,0,0,46,1,0,0,187,14,0,0,214,190,0, 0,36,1,0,0,187,14,0,0,1,0,0,0,36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,1,0,0,0,46,1,0,0,29,15,0,0,234,190,0,0,36,1,0,0,29,15,0,0,1,0,0,0,36,0,0,0,73,1,0,0,1,0,0,0,78,1,0,0,73,1,0,0,1,0,0,0,46,1,0,0,102,16,0,0,252,190,0,0,36,1,0,0,102,16,0,0,1,0,0, 0,36,0,0,0,131,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,1,0,0,0,46,1,0,0,233,16,0,0,10,191,0,0,36,1,0,0,233,16,0,0,1,0,0,0,36,0,0,0,70,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,1,0,0,0,46,1,0,0,47,17,0,0,20,191,0,0,36,1,0,0,47,17,0,0,1,0,0,0,36,0,0,0,177,0,0,0,1,0,0,0, 78,1,0,0,177,0,0,0,1,0,0,0,46,1,0,0,224,17,0,0,36,191,0,0,36,1,0,0,224,17,0,0,1,0,0,0,36,0,0,0,147,1,0,0,1,0,0,0,78,1,0,0,147,1,0,0,1,0,0,0,46,1,0,0,115,19,0,0,48,191,0,0,36,1,0,0,115,19,0,0,1,0,0,0,36,0,0,0,13,1,0,0,1,0,0,0,78,1,0,0,13,1,0,0,1,0,0,0, 46,1,0,0,128,20,0,0,59,191,0,0,36,1,0,0,128,20,0,0,1,0,0,0,36,0,0,0,112,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,1,0,0,0,46,1,0,0,240,20,0,0,74,191,0,0,36,1,0,0,240,20,0,0,1,0,0,0,36,0,0,0,160,1,0,0,1,0,0,0,78,1,0,0,160,1,0,0,1,0,0,0,46,1,0,0,144,22,0,0,87,191, 0,0,36,1,0,0,144,22,0,0,1,0,0,0,36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,1,0,0,0,46,1,0,0,242,22,0,0,108,191,0,0,36,1,0,0,242,22,0,0,1,0,0,0,36,0,0,0,73,1,0,0,1,0,0,0,78,1,0,0,73,1,0,0,1,0,0,0,46,1,0,0,59,24,0,0,127,191,0,0,36,1,0,0,59,24,0,0,1,0, 0,0,36,0,0,0,187,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,1,0,0,0,46,1,0,0,246,24,0,0,138,191,0,0,36,1,0,0,246,24,0,0,1,0,0,0,36,0,0,0,177,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,1,0,0,0,46,1,0,0,167,25,0,0,155,191,0,0,36,1,0,0,167,25,0,0,1,0,0,0,36,0,0,0,147,1,0,0, 1,0,0,0,78,1,0,0,147,1,0,0,1,0,0,0,46,1,0,0,58,27,0,0,168,191,0,0,36,1,0,0,58,27,0,0,1,0,0,0,36,0,0,0,13,1,0,0,1,0,0,0,78,1,0,0,13,1,0,0,1,0,0,0,46,1,0,0,71,28,0,0,179,191,0,0,36,1,0,0,71,28,0,0,1,0,0,0,36,0,0,0,106,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,1, 0,0,0,46,1,0,0,177,28,0,0,194,191,0,0,36,1,0,0,177,28,0,0,1,0,0,0,36,0,0,0,160,1,0,0,1,0,0,0,78,1,0,0,160,1,0,0,1,0,0,0,46,1,0,0,81,30,0,0,207,191,0,0,36,1,0,0,81,30,0,0,1,0,0,0,36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,1,0,0,0,46,1,0,0,179,30,0,0, 228,191,0,0,36,1,0,0,179,30,0,0,1,0,0,0,36,0,0,0,73,1,0,0,1,0,0,0,78,1,0,0,73,1,0,0,1,0,0,0,46,1,0,0,252,31,0,0,247,191,0,0,36,1,0,0,252,31,0,0,1,0,0,0,36,0,0,0,187,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,1,0,0,0,46,1,0,0,183,32,0,0,2,192,0,0,36,1,0,0,183,32, 0,0,1,0,0,0,36,0,0,0,177,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,1,0,0,0,46,1,0,0,104,33,0,0,19,192,0,0,36,1,0,0,104,33,0,0,1,0,0,0,36,0,0,0,147,1,0,0,1,0,0,0,78,1,0,0,147,1,0,0,1,0,0,0,46,1,0,0,251,34,0,0,32,192,0,0,36,1,0,0,251,34,0,0,1,0,0,0,36,0,0,0,13, 1,0,0,1,0,0,0,78,1,0,0,13,1,0,0,1,0,0,0,46,1,0,0,8,36,0,0,42,192,0,0,36,1,0,0,8,36,0,0,1,0,0,0,36,0,0,0,164,0,0,0,1,0,0,0,78,1,0,0,164,0,0,0,1,0,0,0,46,1,0,0,172,36,0,0,56,192,0,0,36,1,0,0,172,36,0,0,1,0,0,0,36,0,0,0,138,3,0,0,1,0,0,0,78,1,0,0,138,3, 0,0,1,0,0,0,46,1,0,0,54,40,0,0,68,192,0,0,36,1,0,0,54,40,0,0,1,0,0,0,36,0,0,0,144,0,0,0,1,0,0,0,78,1,0,0,144,0,0,0,1,0,0,0,46,1,0,0,198,40,0,0,88,192,0,0,36,1,0,0,198,40,0,0,1,0,0,0,36,0,0,0,122,1,0,0,1,0,0,0,78,1,0,0,122,1,0,0,1,0,0,0,46,1,0,0,64,42, 0,0,106,192,0,0,36,1,0,0,64,42,0,0,1,0,0,0,36,0,0,0,187,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,1,0,0,0,46,1,0,0,251,42,0,0,116,192,0,0,36,1,0,0,251,42,0,0,1,0,0,0,36,0,0,0,177,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,1,0,0,0,46,1,0,0,172,43,0,0,132,192,0,0,36,1,0, 0,172,43,0,0,1,0,0,0,36,0,0,0,147,1,0,0,1,0,0,0,78,1,0,0,147,1,0,0,1,0,0,0,46,1,0,0,63,45,0,0,144,192,0,0,36,1,0,0,63,45,0,0,1,0,0,0,36,0,0,0,13,1,0,0,1,0,0,0,78,1,0,0,13,1,0,0,1,0,0,0,46,1,0,0,76,46,0,0,153,192,0,0,36,1,0,0,76,46,0,0,1,0,0,0,36,0,0, 0,144,0,0,0,1,0,0,0,78,1,0,0,144,0,0,0,1,0,0,0,46,1,0,0,220,46,0,0,166,192,0,0,36,1,0,0,220,46,0,0,1,0,0,0,36,0,0,0,228,2,0,0,1,0,0,0,78,1,0,0,228,2,0,0,1,0,0,0,46,1,0,0,192,49,0,0,177,192,0,0,36,1,0,0,192,49,0,0,1,0,0,0,36,0,0,0,134,0,0,0,1,0,0,0,78, 1,0,0,134,0,0,0,1,0,0,0,46,1,0,0,70,50,0,0,196,192,0,0,36,1,0,0,70,50,0,0,1,0,0,0,36,0,0,0,99,2,0,0,1,0,0,0,78,1,0,0,99,2,0,0,1,0,0,0,46,1,0,0,169,52,0,0,213,192,0,0,36,1,0,0,169,52,0,0,1,0,0,0,36,0,0,0,187,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,1,0,0,0,46, 1,0,0,100,53,0,0,222,192,0,0,36,1,0,0,100,53,0,0,1,0,0,0,36,0,0,0,177,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,1,0,0,0,46,1,0,0,21,54,0,0,237,192,0,0,36,1,0,0,21,54,0,0,1,0,0,0,36,0,0,0,147,1,0,0,1,0,0,0,78,1,0,0,147,1,0,0,1,0,0,0,46,1,0,0,168,55,0,0,248,192, 0,0,36,1,0,0,168,55,0,0,1,0,0,0,36,0,0,0,13,1,0,0,1,0,0,0,78,1,0,0,13,1,0,0,1,0,0,0,46,1,0,0,181,56,0,0,1,193,0,0,36,1,0,0,181,56,0,0,1,0,0,0,36,0,0,0,148,0,0,0,1,0,0,0,78,1,0,0,148,0,0,0,1,0,0,0,46,1,0,0,73,57,0,0,14,193,0,0,36,1,0,0,73,57,0,0,1,0,0, 0,36,0,0,0,4,3,0,0,1,0,0,0,78,1,0,0,4,3,0,0,1,0,0,0,46,1,0,0,77,60,0,0,25,193,0,0,36,1,0,0,77,60,0,0,1,0,0,0,36,0,0,0,138,0,0,0,1,0,0,0,78,1,0,0,138,0,0,0,1,0,0,0,46,1,0,0,215,60,0,0,44,193,0,0,36,1,0,0,215,60,0,0,1,0,0,0,36,0,0,0,131,2,0,0,1,0,0,0,78, 1,0,0,131,2,0,0,1,0,0,0,46,1,0,0,90,63,0,0,61,193,0,0,36,1,0,0,90,63,0,0,1,0,0,0,36,0,0,0,187,0,0,0,1,0,0,0,78,1,0,0,187,0,0,0,1,0,0,0,46,1,0,0,21,64,0,0,70,193,0,0,36,1,0,0,21,64,0,0,1,0,0,0,36,0,0,0,177,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,1,0,0,0,46,1, 0,0,198,64,0,0,85,193,0,0,36,1,0,0,198,64,0,0,1,0,0,0,36,0,0,0,147,1,0,0,1,0,0,0,78,1,0,0,147,1,0,0,1,0,0,0,46,1,0,0,89,66,0,0,96,193,0,0,36,1,0,0,89,66,0,0,1,0,0,0,36,0,0,0,38,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,116,193,0,0,38,10,0,0,192,163,9,0,128,193, 0,0,38,10,0,0,196,163,9,0,146,193,0,0,38,10,0,0,200,163,9,0,159,193,0,0,38,10,0,0,204,163,9,0,178,193,0,0,38,10,0,0,208,163,9,0,191,193,0,0,38,10,0,0,212,163,9,0,210,193,0,0,38,10,0,0,216,163,9,0,222,193,0,0,38,10,0,0,220,163,9,0,240,193,0,0,38,10,0, 0,224,163,9,0,251,193,0,0,38,10,0,0,228,163,9,0,12,194,0,0,38,10,0,0,232,163,9,0,23,194,0,0,38,10,0,0,236,163,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,40,194,0,0,100,0,0,0,0,0,0,0,64,194,0,0,102,0,1,0,80,96,143,77,1,0,0,0,46,1,0,0,127, 66,0,0,127,194,0,0,36,1,0,0,127,66,0,0,1,0,0,0,36,0,0,0,74,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,1,0,0,0,46,1,0,0,201,66,0,0,147,194,0,0,36,1,0,0,201,66,0,0,1,0,0,0,36,0,0,0,83,0,0,0,1,0,0,0,78,1,0,0,83,0,0,0,1,0,0,0,46,1,0,0,28,67,0,0,170,194,0,0,36,1,0,0, 28,67,0,0,1,0,0,0,36,0,0,0,19,1,0,0,1,0,0,0,78,1,0,0,19,1,0,0,1,0,0,0,46,1,0,0,47,68,0,0,194,194,0,0,36,1,0,0,47,68,0,0,1,0,0,0,36,0,0,0,213,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,1,0,0,0,46,1,0,0,4,69,0,0,214,194,0,0,36,1,0,0,4,69,0,0,1,0,0,0,36,0,0,0,92, 0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,96,69,0,0,234,194,0,0,36,1,0,0,96,69,0,0,1,0,0,0,36,0,0,0,18,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,1,0,0,0,46,1,0,0,114,69,0,0,255,194,0,0,36,1,0,0,114,69,0,0,1,0,0,0,36,0,0,0,66,0,0,0,1,0,0,0,78,1,0,0,66,0, 0,0,1,0,0,0,46,1,0,0,180,69,0,0,21,195,0,0,36,1,0,0,180,69,0,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,222,69,0,0,42,195,0,0,36,1,0,0,222,69,0,0,1,0,0,0,36,0,0,0,129,1,0,0,1,0,0,0,78,1,0,0,129,1,0,0,1,0,0,0,46,1,0,0,95,71, 0,0,64,195,0,0,36,1,0,0,95,71,0,0,1,0,0,0,36,0,0,0,153,0,0,0,1,0,0,0,78,1,0,0,153,0,0,0,1,0,0,0,46,1,0,0,248,71,0,0,83,195,0,0,36,1,0,0,248,71,0,0,1,0,0,0,36,0,0,0,76,1,0,0,1,0,0,0,78,1,0,0,76,1,0,0,1,0,0,0,46,1,0,0,68,73,0,0,106,195,0,0,36,1,0,0,68, 73,0,0,1,0,0,0,36,0,0,0,213,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,1,0,0,0,46,1,0,0,25,74,0,0,125,195,0,0,36,1,0,0,25,74,0,0,1,0,0,0,36,0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,117,74,0,0,144,195,0,0,36,1,0,0,117,74,0,0,1,0,0,0,36,0,0,0,136, 0,0,0,1,0,0,0,78,1,0,0,136,0,0,0,1,0,0,0,46,1,0,0,253,74,0,0,164,195,0,0,36,1,0,0,253,74,0,0,1,0,0,0,36,0,0,0,18,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,1,0,0,0,46,1,0,0,15,75,0,0,184,195,0,0,36,1,0,0,15,75,0,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0, 0,0,1,0,0,0,46,1,0,0,37,75,0,0,204,195,0,0,36,1,0,0,37,75,0,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,59,75,0,0,224,195,0,0,36,1,0,0,59,75,0,0,1,0,0,0,36,0,0,0,47,1,0,0,1,0,0,0,78,1,0,0,47,1,0,0,1,0,0,0,46,1,0,0,106,76,0, 0,245,195,0,0,36,1,0,0,106,76,0,0,1,0,0,0,36,0,0,0,103,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,1,0,0,0,46,1,0,0,209,76,0,0,8,196,0,0,36,1,0,0,209,76,0,0,1,0,0,0,36,0,0,0,219,0,0,0,1,0,0,0,78,1,0,0,219,0,0,0,1,0,0,0,46,1,0,0,172,77,0,0,31,196,0,0,36,1,0,0,172, 77,0,0,1,0,0,0,36,0,0,0,213,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,1,0,0,0,46,1,0,0,129,78,0,0,50,196,0,0,36,1,0,0,129,78,0,0,1,0,0,0,36,0,0,0,107,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,1,0,0,0,46,1,0,0,236,78,0,0,69,196,0,0,36,1,0,0,236,78,0,0,1,0,0,0,36,0,0,0, 8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,244,78,0,0,89,196,0,0,36,1,0,0,244,78,0,0,1,0,0,0,36,0,0,0,247,0,0,0,1,0,0,0,78,1,0,0,247,0,0,0,1,0,0,0,46,1,0,0,235,79,0,0,110,196,0,0,36,1,0,0,235,79,0,0,1,0,0,0,36,0,0,0,138,0,0,0,1,0,0,0,78,1,0,0, 138,0,0,0,1,0,0,0,46,1,0,0,117,80,0,0,130,196,0,0,36,1,0,0,117,80,0,0,1,0,0,0,36,0,0,0,42,2,0,0,1,0,0,0,78,1,0,0,42,2,0,0,1,0,0,0,46,1,0,0,159,82,0,0,154,196,0,0,36,1,0,0,159,82,0,0,1,0,0,0,36,0,0,0,213,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,1,0,0,0,46,1,0, 0,116,83,0,0,174,196,0,0,36,1,0,0,116,83,0,0,1,0,0,0,36,0,0,0,107,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,1,0,0,0,46,1,0,0,223,83,0,0,194,196,0,0,36,1,0,0,223,83,0,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,231,83,0,0,215,196,0,0,36, 1,0,0,231,83,0,0,1,0,0,0,36,0,0,0,247,0,0,0,1,0,0,0,78,1,0,0,247,0,0,0,1,0,0,0,46,1,0,0,222,84,0,0,237,196,0,0,36,1,0,0,222,84,0,0,1,0,0,0,36,0,0,0,179,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,1,0,0,0,46,1,0,0,145,85,0,0,0,197,0,0,36,1,0,0,145,85,0,0,1,0,0,0, 36,0,0,0,231,2,0,0,1,0,0,0,78,1,0,0,231,2,0,0,1,0,0,0,46,1,0,0,120,88,0,0,23,197,0,0,36,1,0,0,120,88,0,0,1,0,0,0,36,0,0,0,104,1,0,0,1,0,0,0,78,1,0,0,104,1,0,0,1,0,0,0,46,1,0,0,224,89,0,0,42,197,0,0,36,1,0,0,224,89,0,0,1,0,0,0,36,0,0,0,21,0,0,0,1,0,0, 0,78,1,0,0,21,0,0,0,1,0,0,0,46,1,0,0,245,89,0,0,61,197,0,0,36,1,0,0,245,89,0,0,1,0,0,0,36,0,0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,128,90,0,0,80,197,0,0,36,1,0,0,128,90,0,0,1,0,0,0,36,0,0,0,49,1,0,0,1,0,0,0,78,1,0,0,49,1,0,0,1,0,0, 0,46,1,0,0,177,91,0,0,101,197,0,0,36,1,0,0,177,91,0,0,1,0,0,0,36,0,0,0,74,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,1,0,0,0,46,1,0,0,251,91,0,0,114,197,0,0,36,1,0,0,251,91,0,0,1,0,0,0,36,0,0,0,2,1,0,0,1,0,0,0,78,1,0,0,2,1,0,0,1,0,0,0,46,1,0,0,253,92,0,0,131,197, 0,0,36,1,0,0,253,92,0,0,1,0,0,0,36,0,0,0,84,1,0,0,1,0,0,0,78,1,0,0,84,1,0,0,1,0,0,0,46,1,0,0,81,94,0,0,144,197,0,0,36,1,0,0,81,94,0,0,1,0,0,0,36,0,0,0,181,0,0,0,1,0,0,0,78,1,0,0,181,0,0,0,1,0,0,0,46,1,0,0,6,95,0,0,159,197,0,0,36,1,0,0,6,95,0,0,1,0,0, 0,36,0,0,0,176,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,1,0,0,0,46,1,0,0,182,95,0,0,179,197,0,0,36,1,0,0,182,95,0,0,1,0,0,0,36,0,0,0,20,1,0,0,1,0,0,0,78,1,0,0,20,1,0,0,1,0,0,0,46,1,0,0,202,96,0,0,195,197,0,0,36,1,0,0,202,96,0,0,1,0,0,0,36,0,0,0,73,0,0,0,1,0, 0,0,78,1,0,0,73,0,0,0,1,0,0,0,46,1,0,0,19,97,0,0,211,197,0,0,36,1,0,0,19,97,0,0,1,0,0,0,36,0,0,0,157,0,0,0,1,0,0,0,78,1,0,0,157,0,0,0,1,0,0,0,46,1,0,0,176,97,0,0,229,197,0,0,36,1,0,0,176,97,0,0,1,0,0,0,36,0,0,0,16,1,0,0,1,0,0,0,78,1,0,0,16,1,0,0,1,0, 0,0,46,1,0,0,192,98,0,0,244,197,0,0,36,1,0,0,192,98,0,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,209,98,0,0,1,198,0,0,36,1,0,0,209,98,0,0,1,0,0,0,36,0,0,0,73,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,1,0,0,0,46,1,0,0,26,99,0,0,14,198, 0,0,36,1,0,0,26,99,0,0,1,0,0,0,36,0,0,0,191,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,1,0,0,0,46,1,0,0,217,99,0,0,29,198,0,0,36,1,0,0,217,99,0,0,1,0,0,0,36,0,0,0,115,2,0,0,1,0,0,0,78,1,0,0,115,2,0,0,1,0,0,0,46,1,0,0,76,102,0,0,45,198,0,0,36,1,0,0,76,102,0,0,1, 0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,93,102,0,0,59,198,0,0,36,1,0,0,93,102,0,0,1,0,0,0,36,0,0,0,73,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,1,0,0,0,46,1,0,0,166,102,0,0,73,198,0,0,36,1,0,0,166,102,0,0,1,0,0,0,36,0,0,0,191,0,0,0,1, 0,0,0,78,1,0,0,191,0,0,0,1,0,0,0,46,1,0,0,101,103,0,0,89,198,0,0,36,1,0,0,101,103,0,0,1,0,0,0,36,0,0,0,232,0,0,0,1,0,0,0,78,1,0,0,232,0,0,0,1,0,0,0,46,1,0,0,77,104,0,0,105,198,0,0,36,1,0,0,77,104,0,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0, 0,1,0,0,0,46,1,0,0,94,104,0,0,119,198,0,0,36,1,0,0,94,104,0,0,1,0,0,0,36,0,0,0,85,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,1,0,0,0,46,1,0,0,179,104,0,0,133,198,0,0,36,1,0,0,179,104,0,0,1,0,0,0,36,0,0,0,191,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,1,0,0,0,46,1,0,0,114, 105,0,0,149,198,0,0,36,1,0,0,114,105,0,0,1,0,0,0,36,0,0,0,58,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,164,198,0,0,38,10,0,0,240,163,9,0,176,198,0,0,38,10,0,0,244,163,9,0,198,198,0,0,38,10,0,0,248,163,9,0,219,198,0,0,38,10,0,0,252,163,9,0,240,198,0,0,38,10,0,0, 0,164,9,0,6,199,0,0,38,10,0,0,4,164,9,0,27,199,0,0,38,10,0,0,8,164,9,0,42,199,0,0,38,10,0,0,12,164,9,0,60,199,0,0,38,10,0,0,16,164,9,0,75,199,0,0,38,10,0,0,20,164,9,0,91,199,0,0,38,10,0,0,24,164,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0, 0,0,107,199,0,0,100,0,0,0,0,0,0,0,129,199,0,0,102,0,1,0,80,96,143,77,1,0,0,0,46,1,0,0,172,105,0,0,190,199,0,0,36,1,0,0,172,105,0,0,1,0,0,0,36,0,0,0,72,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,1,0,0,0,46,1,0,0,244,105,0,0,209,199,0,0,36,1,0,0,244,105,0,0,1,0,0, 0,36,0,0,0,150,0,0,0,1,0,0,0,78,1,0,0,150,0,0,0,1,0,0,0,46,1,0,0,138,106,0,0,226,199,0,0,36,1,0,0,138,106,0,0,1,0,0,0,36,0,0,0,117,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,1,0,0,0,46,1,0,0,255,106,0,0,246,199,0,0,36,1,0,0,255,106,0,0,1,0,0,0,36,0,0,0,17,0,0, 0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,16,107,0,0,7,200,0,0,36,1,0,0,16,107,0,0,1,0,0,0,36,0,0,0,74,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,1,0,0,0,46,1,0,0,90,107,0,0,22,200,0,0,36,1,0,0,90,107,0,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1, 0,0,0,46,1,0,0,169,107,0,0,37,200,0,0,36,1,0,0,169,107,0,0,1,0,0,0,36,0,0,0,183,0,0,0,1,0,0,0,78,1,0,0,183,0,0,0,1,0,0,0,46,1,0,0,96,108,0,0,54,200,0,0,36,1,0,0,96,108,0,0,1,0,0,0,36,0,0,0,154,1,0,0,1,0,0,0,78,1,0,0,154,1,0,0,1,0,0,0,46,1,0,0,250,109, 0,0,74,200,0,0,36,1,0,0,250,109,0,0,1,0,0,0,36,0,0,0,232,1,0,0,1,0,0,0,78,1,0,0,232,1,0,0,1,0,0,0,46,1,0,0,226,111,0,0,92,200,0,0,36,1,0,0,226,111,0,0,1,0,0,0,36,0,0,0,129,0,0,0,1,0,0,0,78,1,0,0,129,0,0,0,1,0,0,0,46,1,0,0,99,112,0,0,110,200,0,0,36,1, 0,0,99,112,0,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,141,112,0,0,127,200,0,0,36,1,0,0,141,112,0,0,1,0,0,0,36,0,0,0,221,0,0,0,1,0,0,0,78,1,0,0,221,0,0,0,1,0,0,0,46,1,0,0,106,113,0,0,143,200,0,0,36,1,0,0,106,113,0,0,1,0,0, 0,36,0,0,0,163,0,0,0,1,0,0,0,78,1,0,0,163,0,0,0,1,0,0,0,46,1,0,0,13,114,0,0,159,200,0,0,36,1,0,0,13,114,0,0,1,0,0,0,36,0,0,0,229,0,0,0,1,0,0,0,78,1,0,0,229,0,0,0,1,0,0,0,46,1,0,0,242,114,0,0,177,200,0,0,36,1,0,0,242,114,0,0,1,0,0,0,36,0,0,0,188,2,0,0, 1,0,0,0,78,1,0,0,188,2,0,0,1,0,0,0,46,1,0,0,174,117,0,0,198,200,0,0,36,1,0,0,174,117,0,0,1,0,0,0,36,0,0,0,162,0,0,0,1,0,0,0,78,1,0,0,162,0,0,0,1,0,0,0,46,1,0,0,80,118,0,0,216,200,0,0,36,1,0,0,80,118,0,0,1,0,0,0,36,0,0,0,101,2,0,0,1,0,0,0,78,1,0,0,101, 2,0,0,1,0,0,0,46,1,0,0,181,120,0,0,235,200,0,0,36,1,0,0,181,120,0,0,1,0,0,0,36,0,0,0,151,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,1,0,0,0,46,1,0,0,76,121,0,0,252,200,0,0,36,1,0,0,76,121,0,0,1,0,0,0,36,0,0,0,229,0,0,0,1,0,0,0,78,1,0,0,229,0,0,0,1,0,0,0,46,1,0, 0,49,122,0,0,13,201,0,0,36,1,0,0,49,122,0,0,1,0,0,0,36,0,0,0,233,0,0,0,1,0,0,0,78,1,0,0,233,0,0,0,1,0,0,0,46,1,0,0,26,123,0,0,32,201,0,0,36,1,0,0,26,123,0,0,1,0,0,0,36,0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,118,123,0,0,52,201,0,0,36, 1,0,0,118,123,0,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,1,0,0,0,46,1,0,0,164,123,0,0,76,201,0,0,36,1,0,0,164,123,0,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,243,123,0,0,96,201,0,0,36,1,0,0,243,123,0,0,1,0,0, 0,36,0,0,0,32,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,1,0,0,0,46,1,0,0,19,124,0,0,117,201,0,0,36,1,0,0,19,124,0,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,36,124,0,0,137,201,0,0,36,1,0,0,36,124,0,0,1,0,0,0,36,0,0,0,5,1,0,0,1,0,0,0, 78,1,0,0,5,1,0,0,1,0,0,0,46,1,0,0,41,125,0,0,159,201,0,0,36,1,0,0,41,125,0,0,1,0,0,0,36,0,0,0,108,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,1,0,0,0,46,1,0,0,149,125,0,0,180,201,0,0,36,1,0,0,149,125,0,0,1,0,0,0,36,0,0,0,119,0,0,0,1,0,0,0,78,1,0,0,119,0,0,0,1,0, 0,0,46,1,0,0,12,126,0,0,205,201,0,0,36,1,0,0,12,126,0,0,1,0,0,0,36,0,0,0,201,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0,1,0,0,0,46,1,0,0,213,126,0,0,226,201,0,0,36,1,0,0,213,126,0,0,1,0,0,0,36,0,0,0,164,0,0,0,1,0,0,0,78,1,0,0,164,0,0,0,1,0,0,0,46,1,0,0,121,127, 0,0,248,201,0,0,36,1,0,0,121,127,0,0,1,0,0,0,36,0,0,0,49,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,1,0,0,0,46,1,0,0,170,127,0,0,12,202,0,0,36,1,0,0,170,127,0,0,1,0,0,0,36,0,0,0,203,0,0,0,1,0,0,0,78,1,0,0,203,0,0,0,1,0,0,0,46,1,0,0,117,128,0,0,35,202,0,0,36,1,0, 0,117,128,0,0,1,0,0,0,36,0,0,0,19,2,0,0,1,0,0,0,78,1,0,0,19,2,0,0,1,0,0,0,46,1,0,0,136,130,0,0,50,202,0,0,36,1,0,0,136,130,0,0,1,0,0,0,36,0,0,0,148,1,0,0,1,0,0,0,78,1,0,0,148,1,0,0,1,0,0,0,46,1,0,0,28,132,0,0,69,202,0,0,36,1,0,0,28,132,0,0,1,0,0,0,36, 0,0,0,49,1,0,0,1,0,0,0,78,1,0,0,49,1,0,0,1,0,0,0,46,1,0,0,77,133,0,0,84,202,0,0,36,1,0,0,77,133,0,0,1,0,0,0,36,0,0,0,40,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,1,0,0,0,46,1,0,0,117,133,0,0,100,202,0,0,36,1,0,0,117,133,0,0,1,0,0,0,36,0,0,0,65,0,0,0,1,0,0,0,78, 1,0,0,65,0,0,0,1,0,0,0,46,1,0,0,182,133,0,0,114,202,0,0,36,1,0,0,182,133,0,0,1,0,0,0,36,0,0,0,199,0,0,0,1,0,0,0,78,1,0,0,199,0,0,0,1,0,0,0,46,1,0,0,125,134,0,0,131,202,0,0,36,1,0,0,125,134,0,0,1,0,0,0,36,0,0,0,15,1,0,0,1,0,0,0,78,1,0,0,15,1,0,0,1,0,0, 0,46,1,0,0,140,135,0,0,152,202,0,0,36,1,0,0,140,135,0,0,1,0,0,0,36,0,0,0,63,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,1,0,0,0,46,1,0,0,203,135,0,0,173,202,0,0,36,1,0,0,203,135,0,0,1,0,0,0,36,0,0,0,59,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,1,0,0,0,46,1,0,0,6,136,0,0,194, 202,0,0,36,1,0,0,6,136,0,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,54,136,0,0,216,202,0,0,36,1,0,0,54,136,0,0,1,0,0,0,36,0,0,0,62,1,0,0,1,0,0,0,78,1,0,0,62,1,0,0,1,0,0,0,46,1,0,0,116,137,0,0,241,202,0,0,36,1,0,0,116,137,0, 0,1,0,0,0,36,0,0,0,134,0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,1,0,0,0,46,1,0,0,250,137,0,0,6,203,0,0,36,1,0,0,250,137,0,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,16,138,0,0,26,203,0,0,36,1,0,0,16,138,0,0,1,0,0,0,36,0,0,0,101,1, 0,0,1,0,0,0,78,1,0,0,101,1,0,0,1,0,0,0,46,1,0,0,117,139,0,0,49,203,0,0,36,1,0,0,117,139,0,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,62,203,0,0,38,10,0,0,28,164,9,0,79,203,0,0,38,10,0,0,32,164,9,0,97,203,0,0,38,10,0,0,36,164,9,0,116,203,0, 0,38,10,0,0,40,164,9,0,138,203,0,0,38,10,0,0,44,164,9,0,161,203,0,0,38,10,0,0,48,164,9,0,184,203,0,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,201,203,0,0,100,0,0,0,0,0,0,0,223,203,0,0,102,0,1,0,80,96,143,77,1,0,0,0,46, 1,0,0,160,139,0,0,28,204,0,0,36,1,0,0,160,139,0,0,1,0,0,0,36,0,0,0,22,1,0,0,1,0,0,0,78,1,0,0,22,1,0,0,1,0,0,0,46,1,0,0,182,140,0,0,37,204,0,0,36,1,0,0,182,140,0,0,1,0,0,0,36,0,0,0,218,0,0,0,1,0,0,0,78,1,0,0,218,0,0,0,1,0,0,0,46,1,0,0,144,141,0,0,46,204, 0,0,36,1,0,0,144,141,0,0,1,0,0,0,36,0,0,0,39,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,1,0,0,0,46,1,0,0,183,141,0,0,56,204,0,0,36,1,0,0,183,141,0,0,1,0,0,0,36,0,0,0,229,0,0,0,1,0,0,0,78,1,0,0,229,0,0,0,1,0,0,0,46,1,0,0,156,142,0,0,67,204,0,0,36,1,0,0,156,142,0, 0,1,0,0,0,36,0,0,0,245,0,0,0,1,0,0,0,78,1,0,0,245,0,0,0,1,0,0,0,46,1,0,0,145,143,0,0,76,204,0,0,36,1,0,0,145,143,0,0,1,0,0,0,36,0,0,0,76,0,0,0,1,0,0,0,78,1,0,0,76,0,0,0,1,0,0,0,46,1,0,0,221,143,0,0,90,204,0,0,36,1,0,0,221,143,0,0,1,0,0,0,36,0,0,0,244, 0,0,0,1,0,0,0,78,1,0,0,244,0,0,0,1,0,0,0,46,1,0,0,209,144,0,0,102,204,0,0,36,1,0,0,209,144,0,0,1,0,0,0,36,0,0,0,117,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,1,0,0,0,46,1,0,0,70,145,0,0,116,204,0,0,36,1,0,0,70,145,0,0,1,0,0,0,36,0,0,0,197,0,0,0,1,0,0,0,78,1,0, 0,197,0,0,0,1,0,0,0,46,1,0,0,11,146,0,0,125,204,0,0,36,1,0,0,11,146,0,0,1,0,0,0,36,0,0,0,39,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,1,0,0,0,46,1,0,0,50,146,0,0,135,204,0,0,36,1,0,0,50,146,0,0,1,0,0,0,36,0,0,0,205,0,0,0,1,0,0,0,78,1,0,0,205,0,0,0,1,0,0,0,46,1, 0,0,255,146,0,0,146,204,0,0,36,1,0,0,255,146,0,0,1,0,0,0,36,0,0,0,18,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,159,204,0,0,38,10,0,0,52,164,9,0,170,204,0,0,38,10,0,0,56,164,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,181,204,0,0,100,0,0,0,0,0,0, 0,205,204,0,0,102,0,1,0,81,96,143,77,1,0,0,0,46,1,0,0,17,147,0,0,12,205,0,0,36,1,0,0,17,147,0,0,1,0,0,0,36,0,0,0,169,0,0,0,1,0,0,0,78,1,0,0,169,0,0,0,1,0,0,0,46,1,0,0,186,147,0,0,34,205,0,0,36,1,0,0,186,147,0,0,1,0,0,0,36,0,0,0,50,0,0,0,1,0,0,0,78,1, 0,0,50,0,0,0,1,0,0,0,46,1,0,0,236,147,0,0,60,205,0,0,36,1,0,0,236,147,0,0,1,0,0,0,36,0,0,0,170,0,0,0,1,0,0,0,78,1,0,0,170,0,0,0,1,0,0,0,46,1,0,0,150,148,0,0,77,205,0,0,36,1,0,0,150,148,0,0,1,0,0,0,36,0,0,0,38,1,0,0,1,0,0,0,78,1,0,0,38,1,0,0,1,0,0,0,46, 1,0,0,188,149,0,0,98,205,0,0,36,1,0,0,188,149,0,0,1,0,0,0,36,0,0,0,132,0,0,0,1,0,0,0,78,1,0,0,132,0,0,0,1,0,0,0,46,1,0,0,64,150,0,0,115,205,0,0,36,1,0,0,64,150,0,0,1,0,0,0,36,0,0,0,61,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,1,0,0,0,46,1,0,0,125,150,0,0,133,205, 0,0,36,1,0,0,125,150,0,0,1,0,0,0,36,0,0,0,193,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,1,0,0,0,46,1,0,0,62,151,0,0,152,205,0,0,36,1,0,0,62,151,0,0,1,0,0,0,36,0,0,0,129,0,0,0,1,0,0,0,78,1,0,0,129,0,0,0,1,0,0,0,46,1,0,0,191,151,0,0,168,205,0,0,36,1,0,0,191,151, 0,0,1,0,0,0,36,0,0,0,243,0,0,0,1,0,0,0,78,1,0,0,243,0,0,0,1,0,0,0,46,1,0,0,178,152,0,0,186,205,0,0,36,1,0,0,178,152,0,0,1,0,0,0,36,0,0,0,179,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,1,0,0,0,46,1,0,0,101,153,0,0,206,205,0,0,36,1,0,0,101,153,0,0,1,0,0,0,36,0,0, 0,79,1,0,0,1,0,0,0,78,1,0,0,79,1,0,0,1,0,0,0,46,1,0,0,180,154,0,0,222,205,0,0,36,1,0,0,180,154,0,0,1,0,0,0,36,0,0,0,191,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,1,0,0,0,46,1,0,0,115,155,0,0,240,205,0,0,36,1,0,0,115,155,0,0,1,0,0,0,36,0,0,0,140,0,0,0,1,0,0,0, 78,1,0,0,140,0,0,0,1,0,0,0,46,1,0,0,255,155,0,0,251,205,0,0,36,1,0,0,255,155,0,0,1,0,0,0,36,0,0,0,95,2,0,0,1,0,0,0,78,1,0,0,95,2,0,0,1,0,0,0,46,1,0,0,94,158,0,0,10,206,0,0,36,1,0,0,94,158,0,0,1,0,0,0,36,0,0,0,15,1,0,0,1,0,0,0,78,1,0,0,15,1,0,0,1,0,0, 0,46,1,0,0,109,159,0,0,21,206,0,0,36,1,0,0,109,159,0,0,1,0,0,0,36,0,0,0,181,0,0,0,1,0,0,0,78,1,0,0,181,0,0,0,1,0,0,0,46,1,0,0,34,160,0,0,34,206,0,0,36,1,0,0,34,160,0,0,1,0,0,0,36,0,0,0,23,0,0,0,1,0,0,0,78,1,0,0,23,0,0,0,49,206,0,0,38,10,0,0,60,164,9, 0,63,206,0,0,38,10,0,0,64,164,9,0,82,206,0,0,38,10,0,0,68,164,9,0,100,206,0,0,38,10,0,0,72,164,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,113,206,0,0,100,0,0,0,0,0,0,0,135,206,0,0,102,0,1,0,81,96,143,77,1,0,0,0,46,1,0,0,57,160,0,0,196, 206,0,0,36,1,0,0,57,160,0,0,1,0,0,0,36,0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,149,160,0,0,209,206,0,0,36,1,0,0,149,160,0,0,1,0,0,0,36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,1,0,0,0,46,1,0,0,247,160,0,0,223,206,0,0,36,1,0,0,247,160, 0,0,1,0,0,0,36,0,0,0,155,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,1,0,0,0,46,1,0,0,146,161,0,0,235,206,0,0,36,1,0,0,146,161,0,0,1,0,0,0,36,0,0,0,155,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,1,0,0,0,46,1,0,0,45,162,0,0,248,206,0,0,36,1,0,0,45,162,0,0,1,0,0,0,36,0,0,0, 72,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,1,0,0,0,46,1,0,0,117,162,0,0,8,207,0,0,36,1,0,0,117,162,0,0,1,0,0,0,36,0,0,0,72,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,1,0,0,0,46,1,0,0,189,162,0,0,25,207,0,0,36,1,0,0,189,162,0,0,1,0,0,0,36,0,0,0,152,1,0,0,1,0,0,0,78,1,0, 0,152,1,0,0,1,0,0,0,46,1,0,0,85,164,0,0,38,207,0,0,36,1,0,0,85,164,0,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,132,164,0,0,50,207,0,0,36,1,0,0,132,164,0,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0, 0,179,164,0,0,63,207,0,0,36,1,0,0,179,164,0,0,1,0,0,0,36,0,0,0,107,1,0,0,1,0,0,0,78,1,0,0,107,1,0,0,1,0,0,0,46,1,0,0,30,166,0,0,77,207,0,0,36,1,0,0,30,166,0,0,1,0,0,0,36,0,0,0,113,0,0,0,1,0,0,0,78,1,0,0,113,0,0,0,1,0,0,0,46,1,0,0,143,166,0,0,90,207,0, 0,36,1,0,0,143,166,0,0,1,0,0,0,36,0,0,0,54,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,1,0,0,0,46,1,0,0,197,166,0,0,107,207,0,0,36,1,0,0,197,166,0,0,1,0,0,0,36,0,0,0,129,1,0,0,1,0,0,0,78,1,0,0,129,1,0,0,1,0,0,0,46,1,0,0,70,168,0,0,120,207,0,0,36,1,0,0,70,168,0,0, 1,0,0,0,36,0,0,0,209,0,0,0,1,0,0,0,78,1,0,0,209,0,0,0,1,0,0,0,46,1,0,0,23,169,0,0,135,207,0,0,36,1,0,0,23,169,0,0,1,0,0,0,36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,149,169,0,0,149,207,0,0,36,1,0,0,149,169,0,0,1,0,0,0,36,0,0,0,54, 0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,1,0,0,0,46,1,0,0,203,169,0,0,167,207,0,0,36,1,0,0,203,169,0,0,1,0,0,0,36,0,0,0,97,1,0,0,1,0,0,0,78,1,0,0,97,1,0,0,1,0,0,0,46,1,0,0,44,171,0,0,181,207,0,0,36,1,0,0,44,171,0,0,1,0,0,0,36,0,0,0,209,0,0,0,1,0,0,0,78,1,0,0, 209,0,0,0,1,0,0,0,46,1,0,0,253,171,0,0,197,207,0,0,36,1,0,0,253,171,0,0,1,0,0,0,36,0,0,0,155,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,1,0,0,0,46,1,0,0,152,172,0,0,211,207,0,0,36,1,0,0,152,172,0,0,1,0,0,0,36,0,0,0,162,2,0,0,1,0,0,0,78,1,0,0,162,2,0,0,1,0,0,0, 46,1,0,0,58,175,0,0,229,207,0,0,36,1,0,0,58,175,0,0,1,0,0,0,36,0,0,0,213,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,1,0,0,0,46,1,0,0,15,176,0,0,243,207,0,0,36,1,0,0,15,176,0,0,1,0,0,0,36,0,0,0,173,0,0,0,1,0,0,0,78,1,0,0,173,0,0,0,1,0,0,0,46,1,0,0,188,176,0,0,3, 208,0,0,36,1,0,0,188,176,0,0,1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,16,208,0,0,38,10,0,0,76,164,9,0,30,208,0,0,38,10,0,0,80,164,9,0,45,208,0,0,38,10,0,0,84,164,9,0,60,208,0,0,38,10,0,0,88,164,9,0,76,208,0,0,38,10,0,0,92,164,9,0,1,0,0,0,100, 1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,92,208,0,0,100,0,0,0,0,0,0,0,120,208,0,0,102,0,1,0,81,96,143,77,1,0,0,0,46,1,0,0,216,176,0,0,187,208,0,0,36,1,0,0,216,176,0,0,1,0,0,0,36,0,0,0,150,12,0,0,1,0,0,0,78,1,0,0,150,12,0,0,1,0,0,0,46,1,0,0,110,189, 0,0,198,208,0,0,36,1,0,0,110,189,0,0,1,0,0,0,36,0,0,0,135,1,0,0,1,0,0,0,78,1,0,0,135,1,0,0,1,0,0,0,46,1,0,0,245,190,0,0,209,208,0,0,36,1,0,0,245,190,0,0,1,0,0,0,36,0,0,0,135,1,0,0,1,0,0,0,78,1,0,0,135,1,0,0,1,0,0,0,46,1,0,0,124,192,0,0,221,208,0,0,36, 1,0,0,124,192,0,0,1,0,0,0,36,0,0,0,194,0,0,0,1,0,0,0,78,1,0,0,194,0,0,0,1,0,0,0,46,1,0,0,62,193,0,0,236,208,0,0,36,1,0,0,62,193,0,0,1,0,0,0,36,0,0,0,145,0,0,0,1,0,0,0,78,1,0,0,145,0,0,0,252,208,0,0,38,9,0,0,160,152,9,0,4,209,0,0,38,9,0,0,0,153,9,0,12, 209,0,0,38,9,0,0,96,153,9,0,20,209,0,0,38,9,0,0,192,153,9,0,28,209,0,0,38,9,0,0,32,154,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,36,209,0,0,100,0,0,0,0,0,0,0,65,209,0,0,102,0,1,0,81,96,143,77,1,0,0,0,46,1,0,0,207,193,0,0,133,209,0,0, 36,1,0,0,207,193,0,0,1,0,0,0,36,0,0,0,134,1,0,0,1,0,0,0,78,1,0,0,134,1,0,0,1,0,0,0,46,1,0,0,85,195,0,0,139,209,0,0,36,1,0,0,85,195,0,0,1,0,0,0,36,0,0,0,85,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,1,0,0,0,46,1,0,0,170,195,0,0,150,209,0,0,36,1,0,0,170,195,0,0,1, 0,0,0,36,0,0,0,216,6,0,0,1,0,0,0,78,1,0,0,216,6,0,0,1,0,0,0,46,1,0,0,130,202,0,0,169,209,0,0,36,1,0,0,130,202,0,0,1,0,0,0,36,0,0,0,218,7,0,0,1,0,0,0,78,1,0,0,218,7,0,0,1,0,0,0,46,1,0,0,92,210,0,0,185,209,0,0,36,1,0,0,92,210,0,0,1,0,0,0,36,0,0,0,247,8, 0,0,1,0,0,0,78,1,0,0,247,8,0,0,1,0,0,0,46,1,0,0,83,219,0,0,202,209,0,0,36,1,0,0,83,219,0,0,1,0,0,0,36,0,0,0,156,2,0,0,1,0,0,0,78,1,0,0,156,2,0,0,1,0,0,0,46,1,0,0,239,221,0,0,215,209,0,0,36,1,0,0,239,221,0,0,1,0,0,0,36,0,0,0,96,1,0,0,1,0,0,0,78,1,0,0, 96,1,0,0,1,0,0,0,46,1,0,0,79,223,0,0,226,209,0,0,36,1,0,0,79,223,0,0,1,0,0,0,36,0,0,0,190,0,0,0,1,0,0,0,78,1,0,0,190,0,0,0,1,0,0,0,46,1,0,0,13,224,0,0,239,209,0,0,36,1,0,0,13,224,0,0,1,0,0,0,36,0,0,0,54,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,1,0,0,0,46,1,0, 0,67,224,0,0,253,209,0,0,36,1,0,0,67,224,0,0,1,0,0,0,36,0,0,0,130,0,0,0,1,0,0,0,78,1,0,0,130,0,0,0,1,0,0,0,46,1,0,0,197,224,0,0,13,210,0,0,36,1,0,0,197,224,0,0,1,0,0,0,36,0,0,0,31,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,1,0,0,0,46,1,0,0,228,224,0,0,33,210,0, 0,36,1,0,0,228,224,0,0,1,0,0,0,36,0,0,0,45,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,1,0,0,0,46,1,0,0,17,225,0,0,49,210,0,0,36,1,0,0,17,225,0,0,1,0,0,0,36,0,0,0,220,0,0,0,1,0,0,0,78,1,0,0,220,0,0,0,57,210,0,0,38,10,0,0,96,164,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190, 0,0,100,0,0,0,0,0,0,0,67,210,0,0,100,0,0,0,0,0,0,0,92,210,0,0,102,0,1,0,81,96,143,77,1,0,0,0,46,1,0,0,237,225,0,0,156,210,0,0,36,1,0,0,237,225,0,0,1,0,0,0,36,0,0,0,196,0,0,0,1,0,0,0,78,1,0,0,196,0,0,0,1,0,0,0,46,1,0,0,177,226,0,0,168,210,0,0,36,1,0,0, 177,226,0,0,1,0,0,0,36,0,0,0,208,0,0,0,1,0,0,0,78,1,0,0,208,0,0,0,1,0,0,0,46,1,0,0,129,227,0,0,180,210,0,0,36,1,0,0,129,227,0,0,1,0,0,0,36,0,0,0,30,1,0,0,1,0,0,0,78,1,0,0,30,1,0,0,1,0,0,0,46,1,0,0,159,228,0,0,196,210,0,0,36,1,0,0,159,228,0,0,1,0,0,0, 36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,29,229,0,0,208,210,0,0,36,1,0,0,29,229,0,0,1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,1,0,0,0,46,1,0,0,57,229,0,0,222,210,0,0,36,1,0,0,57,229,0,0,1,0,0,0,36,0,0,0,51,1,0,0,1,0,0, 0,78,1,0,0,51,1,0,0,1,0,0,0,46,1,0,0,108,230,0,0,236,210,0,0,36,1,0,0,108,230,0,0,1,0,0,0,36,0,0,0,196,0,0,0,1,0,0,0,78,1,0,0,196,0,0,0,1,0,0,0,46,1,0,0,48,231,0,0,248,210,0,0,36,1,0,0,48,231,0,0,1,0,0,0,36,0,0,0,202,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0, 1,0,0,0,46,1,0,0,250,231,0,0,4,211,0,0,36,1,0,0,250,231,0,0,1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,1,0,0,0,46,1,0,0,22,232,0,0,18,211,0,0,36,1,0,0,22,232,0,0,1,0,0,0,36,0,0,0,223,0,0,0,1,0,0,0,78,1,0,0,223,0,0,0,1,0,0,0,46,1,0,0,245,232, 0,0,34,211,0,0,36,1,0,0,245,232,0,0,1,0,0,0,36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,115,233,0,0,46,211,0,0,36,1,0,0,115,233,0,0,1,0,0,0,36,0,0,0,51,1,0,0,1,0,0,0,78,1,0,0,51,1,0,0,1,0,0,0,46,1,0,0,166,234,0,0,60,211,0,0,36,1,0, 0,166,234,0,0,1,0,0,0,36,0,0,0,17,1,0,0,1,0,0,0,78,1,0,0,17,1,0,0,1,0,0,0,46,1,0,0,183,235,0,0,71,211,0,0,36,1,0,0,183,235,0,0,1,0,0,0,36,0,0,0,213,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,1,0,0,0,46,1,0,0,140,236,0,0,83,211,0,0,36,1,0,0,140,236,0,0,1,0,0,0, 36,0,0,0,106,1,0,0,1,0,0,0,78,1,0,0,106,1,0,0,1,0,0,0,46,1,0,0,246,237,0,0,97,211,0,0,36,1,0,0,246,237,0,0,1,0,0,0,36,0,0,0,36,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,1,0,0,0,46,1,0,0,26,238,0,0,108,211,0,0,36,1,0,0,26,238,0,0,1,0,0,0,36,0,0,0,36,0,0,0,1,0,0, 0,78,1,0,0,36,0,0,0,1,0,0,0,46,1,0,0,62,238,0,0,119,211,0,0,36,1,0,0,62,238,0,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,109,238,0,0,132,211,0,0,36,1,0,0,109,238,0,0,1,0,0,0,36,0,0,0,50,1,0,0,1,0,0,0,78,1,0,0,50,1,0,0,1,0, 0,0,46,1,0,0,159,239,0,0,147,211,0,0,36,1,0,0,159,239,0,0,1,0,0,0,36,0,0,0,136,0,0,0,1,0,0,0,78,1,0,0,136,0,0,0,1,0,0,0,46,1,0,0,39,240,0,0,158,211,0,0,36,1,0,0,39,240,0,0,1,0,0,0,36,0,0,0,123,1,0,0,1,0,0,0,78,1,0,0,123,1,0,0,1,0,0,0,46,1,0,0,162,241, 0,0,171,211,0,0,36,1,0,0,162,241,0,0,1,0,0,0,36,0,0,0,150,0,0,0,1,0,0,0,78,1,0,0,150,0,0,0,1,0,0,0,46,1,0,0,56,242,0,0,186,211,0,0,36,1,0,0,56,242,0,0,1,0,0,0,36,0,0,0,64,1,0,0,1,0,0,0,78,1,0,0,64,1,0,0,1,0,0,0,46,1,0,0,120,243,0,0,205,211,0,0,36,1,0, 0,120,243,0,0,1,0,0,0,36,0,0,0,200,1,0,0,1,0,0,0,78,1,0,0,200,1,0,0,1,0,0,0,46,1,0,0,64,245,0,0,221,211,0,0,36,1,0,0,64,245,0,0,1,0,0,0,36,0,0,0,80,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,1,0,0,0,46,1,0,0,144,245,0,0,236,211,0,0,36,1,0,0,144,245,0,0,1,0,0,0, 36,0,0,0,91,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,1,0,0,0,46,1,0,0,235,245,0,0,251,211,0,0,36,1,0,0,235,245,0,0,1,0,0,0,36,0,0,0,87,1,0,0,1,0,0,0,78,1,0,0,87,1,0,0,1,0,0,0,46,1,0,0,66,247,0,0,12,212,0,0,36,1,0,0,66,247,0,0,1,0,0,0,36,0,0,0,150,0,0,0,1,0,0, 0,78,1,0,0,150,0,0,0,1,0,0,0,46,1,0,0,216,247,0,0,29,212,0,0,36,1,0,0,216,247,0,0,1,0,0,0,36,0,0,0,184,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,1,0,0,0,46,1,0,0,144,248,0,0,50,212,0,0,36,1,0,0,144,248,0,0,1,0,0,0,36,0,0,0,105,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0, 1,0,0,0,46,1,0,0,249,248,0,0,67,212,0,0,36,1,0,0,249,248,0,0,1,0,0,0,36,0,0,0,73,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,1,0,0,0,46,1,0,0,66,249,0,0,86,212,0,0,36,1,0,0,66,249,0,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,83,249,0, 0,103,212,0,0,36,1,0,0,83,249,0,0,1,0,0,0,36,0,0,0,51,1,0,0,1,0,0,0,78,1,0,0,51,1,0,0,1,0,0,0,46,1,0,0,134,250,0,0,122,212,0,0,36,1,0,0,134,250,0,0,1,0,0,0,36,0,0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,17,251,0,0,136,212,0,0,36,1,0,0, 17,251,0,0,1,0,0,0,36,0,0,0,211,0,0,0,1,0,0,0,78,1,0,0,211,0,0,0,1,0,0,0,46,1,0,0,228,251,0,0,154,212,0,0,36,1,0,0,228,251,0,0,1,0,0,0,36,0,0,0,105,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,1,0,0,0,46,1,0,0,77,252,0,0,168,212,0,0,36,1,0,0,77,252,0,0,1,0,0,0,36, 0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,1,0,0,0,46,1,0,0,105,252,0,0,184,212,0,0,36,1,0,0,105,252,0,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,122,252,0,0,198,212,0,0,36,1,0,0,122,252,0,0,1,0,0,0,36,0,0,0,51,1,0,0,1,0,0,0, 78,1,0,0,51,1,0,0,1,0,0,0,46,1,0,0,173,253,0,0,214,212,0,0,36,1,0,0,173,253,0,0,1,0,0,0,36,0,0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,56,254,0,0,228,212,0,0,36,1,0,0,56,254,0,0,1,0,0,0,36,0,0,0,170,0,0,0,1,0,0,0,78,1,0,0,170,0,0,0,1, 0,0,0,46,1,0,0,226,254,0,0,246,212,0,0,36,1,0,0,226,254,0,0,1,0,0,0,36,0,0,0,105,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,1,0,0,0,46,1,0,0,75,255,0,0,4,213,0,0,36,1,0,0,75,255,0,0,1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,1,0,0,0,46,1,0,0,103,255,0, 0,20,213,0,0,36,1,0,0,103,255,0,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,120,255,0,0,34,213,0,0,36,1,0,0,120,255,0,0,1,0,0,0,36,0,0,0,51,1,0,0,1,0,0,0,78,1,0,0,51,1,0,0,1,0,0,0,46,1,0,0,171,0,1,0,50,213,0,0,36,1,0,0,171, 0,1,0,1,0,0,0,36,0,0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,54,1,1,0,68,213,0,0,36,1,0,0,54,1,1,0,1,0,0,0,36,0,0,0,170,0,0,0,1,0,0,0,78,1,0,0,170,0,0,0,1,0,0,0,46,1,0,0,224,1,1,0,90,213,0,0,36,1,0,0,224,1,1,0,1,0,0,0,36,0,0,0,105,0,0, 0,1,0,0,0,78,1,0,0,105,0,0,0,1,0,0,0,46,1,0,0,73,2,1,0,108,213,0,0,36,1,0,0,73,2,1,0,1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,1,0,0,0,46,1,0,0,101,2,1,0,128,213,0,0,36,1,0,0,101,2,1,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0, 0,0,46,1,0,0,118,2,1,0,146,213,0,0,36,1,0,0,118,2,1,0,1,0,0,0,36,0,0,0,51,1,0,0,1,0,0,0,78,1,0,0,51,1,0,0,1,0,0,0,46,1,0,0,169,3,1,0,166,213,0,0,36,1,0,0,169,3,1,0,1,0,0,0,36,0,0,0,33,1,0,0,1,0,0,0,78,1,0,0,33,1,0,0,1,0,0,0,46,1,0,0,202,4,1,0,180,213, 0,0,36,1,0,0,202,4,1,0,1,0,0,0,36,0,0,0,161,1,0,0,1,0,0,0,78,1,0,0,161,1,0,0,1,0,0,0,46,1,0,0,107,6,1,0,198,213,0,0,36,1,0,0,107,6,1,0,1,0,0,0,36,0,0,0,168,0,0,0,1,0,0,0,78,1,0,0,168,0,0,0,1,0,0,0,46,1,0,0,19,7,1,0,212,213,0,0,36,1,0,0,19,7,1,0,1,0,0, 0,36,0,0,0,40,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,1,0,0,0,46,1,0,0,59,7,1,0,228,213,0,0,36,1,0,0,59,7,1,0,1,0,0,0,36,0,0,0,26,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,1,0,0,0,46,1,0,0,85,7,1,0,242,213,0,0,36,1,0,0,85,7,1,0,1,0,0,0,36,0,0,0,67,1,0,0,1,0,0,0,78,1,0, 0,67,1,0,0,1,0,0,0,46,1,0,0,152,8,1,0,2,214,0,0,36,1,0,0,152,8,1,0,1,0,0,0,36,0,0,0,33,1,0,0,1,0,0,0,78,1,0,0,33,1,0,0,1,0,0,0,46,1,0,0,185,9,1,0,16,214,0,0,36,1,0,0,185,9,1,0,1,0,0,0,36,0,0,0,81,1,0,0,1,0,0,0,78,1,0,0,81,1,0,0,1,0,0,0,46,1,0,0,10,11, 1,0,34,214,0,0,36,1,0,0,10,11,1,0,1,0,0,0,36,0,0,0,168,0,0,0,1,0,0,0,78,1,0,0,168,0,0,0,1,0,0,0,46,1,0,0,178,11,1,0,48,214,0,0,36,1,0,0,178,11,1,0,1,0,0,0,36,0,0,0,40,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,1,0,0,0,46,1,0,0,218,11,1,0,64,214,0,0,36,1,0,0,218, 11,1,0,1,0,0,0,36,0,0,0,26,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,1,0,0,0,46,1,0,0,244,11,1,0,78,214,0,0,36,1,0,0,244,11,1,0,1,0,0,0,36,0,0,0,67,1,0,0,1,0,0,0,78,1,0,0,67,1,0,0,1,0,0,0,46,1,0,0,55,13,1,0,94,214,0,0,36,1,0,0,55,13,1,0,1,0,0,0,36,0,0,0,33,1,0, 0,1,0,0,0,78,1,0,0,33,1,0,0,1,0,0,0,46,1,0,0,88,14,1,0,112,214,0,0,36,1,0,0,88,14,1,0,1,0,0,0,36,0,0,0,81,1,0,0,1,0,0,0,78,1,0,0,81,1,0,0,1,0,0,0,46,1,0,0,169,15,1,0,134,214,0,0,36,1,0,0,169,15,1,0,1,0,0,0,36,0,0,0,168,0,0,0,1,0,0,0,78,1,0,0,168,0,0, 0,1,0,0,0,46,1,0,0,81,16,1,0,152,214,0,0,36,1,0,0,81,16,1,0,1,0,0,0,36,0,0,0,40,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,1,0,0,0,46,1,0,0,121,16,1,0,172,214,0,0,36,1,0,0,121,16,1,0,1,0,0,0,36,0,0,0,26,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,1,0,0,0,46,1,0,0,147,16,1, 0,190,214,0,0,36,1,0,0,147,16,1,0,1,0,0,0,36,0,0,0,67,1,0,0,1,0,0,0,78,1,0,0,67,1,0,0,1,0,0,0,46,1,0,0,214,17,1,0,210,214,0,0,36,1,0,0,214,17,1,0,1,0,0,0,36,0,0,0,63,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,226,214,0,0,32,11,0,0,0,0,0,0,243,214,0,0,32,11,0,0, 0,0,0,0,0,215,0,0,32,11,0,0,0,0,0,0,16,215,0,0,32,11,0,0,0,0,0,0,32,215,0,0,32,11,0,0,0,0,0,0,52,215,0,0,32,11,0,0,0,0,0,0,66,215,0,0,32,11,0,0,0,0,0,0,80,215,0,0,32,11,0,0,0,0,0,0,96,215,0,0,32,11,0,0,0,0,0,0,112,215,0,0,32,11,0,0,0,0,0,0,132,215,0, 0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,151,215,0,0,100,0,0,0,0,0,0,0,176,215,0,0,102,0,1,0,82,96,143,77,1,0,0,0,46,1,0,0,21,18,1,0,240,215,0,0,36,1,0,0,21,18,1,0,1,0,0,0,36,0,0,0,193,0,0,0,1,0,0,0,78,1,0,0,193,0,0, 0,1,0,0,0,46,1,0,0,214,18,1,0,253,215,0,0,36,1,0,0,214,18,1,0,18,216,0,0,132,0,0,0,0,0,0,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,0,19,1,0,48,216,0,0,36,1,0,0,0,19,1,0,1,0,0,0,36,0,0,0,144,0,0,0,1,0,0,0,78,1,0,0,144,0,0, 0,1,0,0,0,46,1,0,0,144,19,1,0,65,216,0,0,36,1,0,0,144,19,1,0,1,0,0,0,36,0,0,0,119,0,0,0,1,0,0,0,78,1,0,0,119,0,0,0,1,0,0,0,46,1,0,0,7,20,1,0,78,216,0,0,36,1,0,0,7,20,1,0,1,0,0,0,36,0,0,0,60,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,1,0,0,0,46,1,0,0,67,20,1,0,92, 216,0,0,36,1,0,0,67,20,1,0,1,0,0,0,36,0,0,0,233,0,0,0,1,0,0,0,78,1,0,0,233,0,0,0,1,0,0,0,46,1,0,0,44,21,1,0,107,216,0,0,36,1,0,0,44,21,1,0,1,0,0,0,36,0,0,0,93,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,1,0,0,0,46,1,0,0,137,21,1,0,123,216,0,0,36,1,0,0,137,21,1,0, 1,0,0,0,36,0,0,0,125,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,1,0,0,0,46,1,0,0,6,22,1,0,143,216,0,0,36,1,0,0,6,22,1,0,1,0,0,0,36,0,0,0,117,1,0,0,1,0,0,0,78,1,0,0,117,1,0,0,1,0,0,0,46,1,0,0,123,23,1,0,161,216,0,0,36,1,0,0,123,23,1,0,1,0,0,0,36,0,0,0,181,0,0,0, 1,0,0,0,78,1,0,0,181,0,0,0,1,0,0,0,46,1,0,0,48,24,1,0,177,216,0,0,36,1,0,0,48,24,1,0,1,0,0,0,36,0,0,0,215,0,0,0,1,0,0,0,78,1,0,0,215,0,0,0,1,0,0,0,46,1,0,0,7,25,1,0,193,216,0,0,36,1,0,0,7,25,1,0,1,0,0,0,36,0,0,0,47,1,0,0,1,0,0,0,78,1,0,0,47,1,0,0,1,0, 0,0,46,1,0,0,54,26,1,0,211,216,0,0,36,1,0,0,54,26,1,0,1,0,0,0,36,0,0,0,202,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,1,0,0,0,46,1,0,0,0,27,1,0,225,216,0,0,36,1,0,0,0,27,1,0,1,0,0,0,36,0,0,0,95,0,0,0,1,0,0,0,78,1,0,0,95,0,0,0,1,0,0,0,46,1,0,0,95,27,1,0,243,216, 0,0,36,1,0,0,95,27,1,0,1,0,0,0,36,0,0,0,71,1,0,0,1,0,0,0,78,1,0,0,71,1,0,0,1,0,0,0,46,1,0,0,166,28,1,0,3,217,0,0,36,1,0,0,166,28,1,0,1,0,0,0,36,0,0,0,194,0,0,0,1,0,0,0,78,1,0,0,194,0,0,0,1,0,0,0,46,1,0,0,104,29,1,0,17,217,0,0,36,1,0,0,104,29,1,0,1,0, 0,0,36,0,0,0,60,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,1,0,0,0,46,1,0,0,164,29,1,0,32,217,0,0,36,1,0,0,164,29,1,0,1,0,0,0,36,0,0,0,197,0,0,0,1,0,0,0,78,1,0,0,197,0,0,0,1,0,0,0,46,1,0,0,105,30,1,0,48,217,0,0,36,1,0,0,105,30,1,0,1,0,0,0,36,0,0,0,84,0,0,0,1,0, 0,0,78,1,0,0,84,0,0,0,1,0,0,0,46,1,0,0,189,30,1,0,62,217,0,0,36,1,0,0,189,30,1,0,1,0,0,0,36,0,0,0,176,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,1,0,0,0,46,1,0,0,109,31,1,0,80,217,0,0,36,1,0,0,109,31,1,0,1,0,0,0,36,0,0,0,181,0,0,0,1,0,0,0,78,1,0,0,181,0,0,0,1, 0,0,0,46,1,0,0,34,32,1,0,94,217,0,0,36,1,0,0,34,32,1,0,1,0,0,0,36,0,0,0,144,0,0,0,1,0,0,0,78,1,0,0,144,0,0,0,1,0,0,0,46,1,0,0,178,32,1,0,108,217,0,0,36,1,0,0,178,32,1,0,1,0,0,0,36,0,0,0,243,0,0,0,1,0,0,0,78,1,0,0,243,0,0,0,1,0,0,0,46,1,0,0,165,33,1,0, 124,217,0,0,36,1,0,0,165,33,1,0,1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,140,217,0,0,38,10,0,0,100,164,9,0,155,217,0,0,38,10,0,0,104,164,9,0,173,217,0,0,38,10,0,0,108,164,9,0,189,217,0,0,38,10,0,0,112,164,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190, 0,0,100,0,0,0,0,0,0,0,205,217,0,0,100,0,0,0,0,0,0,0,228,217,0,0,102,0,1,0,82,96,143,77,1,0,0,0,46,1,0,0,193,33,1,0,34,218,0,0,36,1,0,0,193,33,1,0,1,0,0,0,36,0,0,0,144,0,0,0,1,0,0,0,78,1,0,0,144,0,0,0,1,0,0,0,46,1,0,0,81,34,1,0,44,218,0,0,36,1,0,0,81, 34,1,0,1,0,0,0,36,0,0,0,147,0,0,0,1,0,0,0,78,1,0,0,147,0,0,0,1,0,0,0,46,1,0,0,228,34,1,0,58,218,0,0,36,1,0,0,228,34,1,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,58,35,1,0,68,218,0,0,36,1,0,0,58,35,1,0,1,0,0,0,36,0,0,0,189, 0,0,0,1,0,0,0,78,1,0,0,189,0,0,0,1,0,0,0,46,1,0,0,247,35,1,0,80,218,0,0,36,1,0,0,247,35,1,0,1,0,0,0,36,0,0,0,0,1,0,0,1,0,0,0,78,1,0,0,0,1,0,0,1,0,0,0,46,1,0,0,247,36,1,0,92,218,0,0,36,1,0,0,247,36,1,0,1,0,0,0,36,0,0,0,127,0,0,0,1,0,0,0,78,1,0,0,127,0, 0,0,1,0,0,0,46,1,0,0,118,37,1,0,102,218,0,0,36,1,0,0,118,37,1,0,1,0,0,0,36,0,0,0,136,0,0,0,1,0,0,0,78,1,0,0,136,0,0,0,1,0,0,0,46,1,0,0,254,37,1,0,111,218,0,0,36,1,0,0,254,37,1,0,1,0,0,0,36,0,0,0,51,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,1,0,0,0,46,1,0,0,49, 38,1,0,118,218,0,0,36,1,0,0,49,38,1,0,1,0,0,0,36,0,0,0,51,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,1,0,0,0,46,1,0,0,100,38,1,0,126,218,0,0,36,1,0,0,100,38,1,0,1,0,0,0,36,0,0,0,84,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,1,0,0,0,46,1,0,0,184,38,1,0,140,218,0,0,36,1,0,0, 184,38,1,0,1,0,0,0,36,0,0,0,17,1,0,0,1,0,0,0,78,1,0,0,17,1,0,0,1,0,0,0,46,1,0,0,201,39,1,0,158,218,0,0,36,1,0,0,201,39,1,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,24,40,1,0,172,218,0,0,36,1,0,0,24,40,1,0,1,0,0,0,36,0,0,0, 218,0,0,0,1,0,0,0,78,1,0,0,218,0,0,0,1,0,0,0,46,1,0,0,242,40,1,0,188,218,0,0,36,1,0,0,242,40,1,0,1,0,0,0,36,0,0,0,84,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,1,0,0,0,46,1,0,0,70,41,1,0,201,218,0,0,36,1,0,0,70,41,1,0,1,0,0,0,36,0,0,0,26,1,0,0,1,0,0,0,78,1,0,0, 26,1,0,0,1,0,0,0,46,1,0,0,96,42,1,0,218,218,0,0,36,1,0,0,96,42,1,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,175,42,1,0,231,218,0,0,36,1,0,0,175,42,1,0,1,0,0,0,36,0,0,0,213,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,1,0,0,0,46,1,0,0, 132,43,1,0,246,218,0,0,36,1,0,0,132,43,1,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,218,43,1,0,3,219,0,0,36,1,0,0,218,43,1,0,1,0,0,0,36,0,0,0,165,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,1,0,0,0,46,1,0,0,127,44,1,0,20,219,0,0,36,1, 0,0,127,44,1,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,206,44,1,0,33,219,0,0,36,1,0,0,206,44,1,0,1,0,0,0,36,0,0,0,179,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,1,0,0,0,46,1,0,0,129,45,1,0,48,219,0,0,36,1,0,0,129,45,1,0,1,0,0,0,36, 0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,215,45,1,0,64,219,0,0,36,1,0,0,215,45,1,0,1,0,0,0,36,0,0,0,216,0,0,0,1,0,0,0,78,1,0,0,216,0,0,0,1,0,0,0,46,1,0,0,175,46,1,0,84,219,0,0,36,1,0,0,175,46,1,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78, 1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,254,46,1,0,100,219,0,0,36,1,0,0,254,46,1,0,1,0,0,0,36,0,0,0,179,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,1,0,0,0,46,1,0,0,177,47,1,0,118,219,0,0,36,1,0,0,177,47,1,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46, 1,0,0,7,48,1,0,134,219,0,0,36,1,0,0,7,48,1,0,1,0,0,0,36,0,0,0,196,0,0,0,1,0,0,0,78,1,0,0,196,0,0,0,1,0,0,0,46,1,0,0,203,48,1,0,154,219,0,0,36,1,0,0,203,48,1,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,26,49,1,0,170,219,0,0, 36,1,0,0,26,49,1,0,1,0,0,0,36,0,0,0,179,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,1,0,0,0,46,1,0,0,205,49,1,0,188,219,0,0,36,1,0,0,205,49,1,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,35,50,1,0,207,219,0,0,36,1,0,0,35,50,1,0,1,0,0,0, 36,0,0,0,212,0,0,0,1,0,0,0,78,1,0,0,212,0,0,0,1,0,0,0,46,1,0,0,247,50,1,0,230,219,0,0,36,1,0,0,247,50,1,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,70,51,1,0,249,219,0,0,36,1,0,0,70,51,1,0,1,0,0,0,36,0,0,0,179,0,0,0,1,0,0,0, 78,1,0,0,179,0,0,0,1,0,0,0,46,1,0,0,249,51,1,0,14,220,0,0,36,1,0,0,249,51,1,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,79,52,1,0,33,220,0,0,36,1,0,0,79,52,1,0,1,0,0,0,36,0,0,0,242,0,0,0,1,0,0,0,78,1,0,0,242,0,0,0,1,0,0,0,46, 1,0,0,65,53,1,0,56,220,0,0,36,1,0,0,65,53,1,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,144,53,1,0,75,220,0,0,36,1,0,0,144,53,1,0,1,0,0,0,36,0,0,0,179,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,1,0,0,0,46,1,0,0,67,54,1,0,96,220,0,0,36, 1,0,0,67,54,1,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,153,54,1,0,115,220,0,0,36,1,0,0,153,54,1,0,1,0,0,0,36,0,0,0,212,0,0,0,1,0,0,0,78,1,0,0,212,0,0,0,1,0,0,0,46,1,0,0,109,55,1,0,138,220,0,0,36,1,0,0,109,55,1,0,1,0,0,0, 36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,188,55,1,0,157,220,0,0,36,1,0,0,188,55,1,0,1,0,0,0,36,0,0,0,179,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,1,0,0,0,46,1,0,0,111,56,1,0,178,220,0,0,36,1,0,0,111,56,1,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0, 0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,197,56,1,0,197,220,0,0,36,1,0,0,197,56,1,0,1,0,0,0,36,0,0,0,242,0,0,0,1,0,0,0,78,1,0,0,242,0,0,0,1,0,0,0,46,1,0,0,183,57,1,0,220,220,0,0,36,1,0,0,183,57,1,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0, 0,0,46,1,0,0,6,58,1,0,239,220,0,0,36,1,0,0,6,58,1,0,1,0,0,0,36,0,0,0,179,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,1,0,0,0,46,1,0,0,185,58,1,0,4,221,0,0,36,1,0,0,185,58,1,0,1,0,0,0,36,0,0,0,120,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,1,0,0,0,46,1,0,0,49,59,1,0,19,221, 0,0,36,1,0,0,49,59,1,0,1,0,0,0,36,0,0,0,188,0,0,0,1,0,0,0,78,1,0,0,188,0,0,0,1,0,0,0,46,1,0,0,237,59,1,0,38,221,0,0,36,1,0,0,237,59,1,0,1,0,0,0,36,0,0,0,96,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,1,0,0,0,46,1,0,0,77,60,1,0,53,221,0,0,36,1,0,0,77,60,1,0,1,0,0, 0,36,0,0,0,181,0,0,0,1,0,0,0,78,1,0,0,181,0,0,0,1,0,0,0,46,1,0,0,2,61,1,0,70,221,0,0,36,1,0,0,2,61,1,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,66,61,1,0,85,221,0,0,36,1,0,0,66,61,1,0,1,0,0,0,36,0,0,0,102,0,0,0,1,0,0,0,78, 1,0,0,102,0,0,0,1,0,0,0,46,1,0,0,168,61,1,0,104,221,0,0,36,1,0,0,168,61,1,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,247,61,1,0,119,221,0,0,36,1,0,0,247,61,1,0,1,0,0,0,36,0,0,0,173,0,0,0,1,0,0,0,78,1,0,0,173,0,0,0,1,0,0,0, 46,1,0,0,164,62,1,0,136,221,0,0,36,1,0,0,164,62,1,0,1,0,0,0,36,0,0,0,120,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,1,0,0,0,46,1,0,0,28,63,1,0,151,221,0,0,36,1,0,0,28,63,1,0,1,0,0,0,36,0,0,0,255,0,0,0,1,0,0,0,78,1,0,0,255,0,0,0,1,0,0,0,46,1,0,0,27,64,1,0,170,221, 0,0,36,1,0,0,27,64,1,0,1,0,0,0,36,0,0,0,96,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,1,0,0,0,46,1,0,0,123,64,1,0,185,221,0,0,36,1,0,0,123,64,1,0,1,0,0,0,36,0,0,0,181,0,0,0,1,0,0,0,78,1,0,0,181,0,0,0,1,0,0,0,46,1,0,0,48,65,1,0,202,221,0,0,36,1,0,0,48,65,1,0,1,0, 0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,112,65,1,0,217,221,0,0,36,1,0,0,112,65,1,0,1,0,0,0,36,0,0,0,151,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,1,0,0,0,46,1,0,0,7,66,1,0,236,221,0,0,36,1,0,0,7,66,1,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0, 0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,86,66,1,0,251,221,0,0,36,1,0,0,86,66,1,0,1,0,0,0,36,0,0,0,173,0,0,0,1,0,0,0,78,1,0,0,173,0,0,0,1,0,0,0,46,1,0,0,3,67,1,0,12,222,0,0,36,1,0,0,3,67,1,0,1,0,0,0,36,0,0,0,0,1,0,0,1,0,0,0,78,1,0,0,0,1,0,0,26,222,0,0,38, 10,0,0,128,164,9,0,38,222,0,0,38,10,0,0,160,164,9,0,52,222,0,0,38,10,0,0,160,168,9,0,71,222,0,0,38,10,0,0,160,184,9,0,87,222,0,0,38,10,0,0,164,184,9,0,102,222,0,0,38,10,0,0,168,184,9,0,119,222,0,0,38,10,0,0,172,184,9,0,136,222,0,0,38,10,0,0,176,184,9, 0,153,222,0,0,38,10,0,0,180,184,9,0,170,222,0,0,32,11,0,0,0,0,0,0,191,222,0,0,32,11,0,0,0,0,0,0,212,222,0,0,32,11,0,0,0,0,0,0,230,222,0,0,32,11,0,0,0,0,0,0,248,222,0,0,32,11,0,0,0,0,0,0,13,223,0,0,32,11,0,0,0,0,0,0,34,223,0,0,32,11,0,0,0,0,0,0,1,0,0, 0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,49,223,0,0,100,0,0,0,0,0,0,0,72,223,0,0,102,0,1,0,82,96,143,77,1,0,0,0,46,1,0,0,3,68,1,0,134,223,0,0,36,1,0,0,3,68,1,0,1,0,0,0,36,0,0,0,193,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,1,0,0,0,46,1,0,0,196,68,1,0, 149,223,0,0,36,1,0,0,196,68,1,0,1,0,0,0,36,0,0,0,71,0,0,0,1,0,0,0,78,1,0,0,71,0,0,0,1,0,0,0,46,1,0,0,11,69,1,0,160,223,0,0,36,1,0,0,11,69,1,0,1,0,0,0,36,0,0,0,58,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,1,0,0,0,46,1,0,0,69,69,1,0,173,223,0,0,36,1,0,0,69,69,1, 0,1,0,0,0,36,0,0,0,18,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,1,0,0,0,46,1,0,0,87,69,1,0,185,223,0,0,36,1,0,0,87,69,1,0,1,0,0,0,36,0,0,0,111,0,0,0,1,0,0,0,78,1,0,0,111,0,0,0,1,0,0,0,46,1,0,0,198,69,1,0,196,223,0,0,36,1,0,0,198,69,1,0,1,0,0,0,36,0,0,0,233,0,0, 0,1,0,0,0,78,1,0,0,233,0,0,0,1,0,0,0,46,1,0,0,175,70,1,0,209,223,0,0,36,1,0,0,175,70,1,0,1,0,0,0,36,0,0,0,66,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,1,0,0,0,46,1,0,0,241,70,1,0,229,223,0,0,36,1,0,0,241,70,1,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0, 0,1,0,0,0,46,1,0,0,33,71,1,0,245,223,0,0,36,1,0,0,33,71,1,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,55,71,1,0,6,224,0,0,36,1,0,0,55,71,1,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,77,71,1,0,23, 224,0,0,36,1,0,0,77,71,1,0,1,0,0,0,36,0,0,0,93,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,1,0,0,0,46,1,0,0,170,71,1,0,39,224,0,0,36,1,0,0,170,71,1,0,1,0,0,0,36,0,0,0,153,0,0,0,1,0,0,0,78,1,0,0,153,0,0,0,1,0,0,0,46,1,0,0,67,72,1,0,57,224,0,0,36,1,0,0,67,72,1,0,1, 0,0,0,36,0,0,0,18,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,71,224,0,0,38,10,0,0,184,184,9,0,84,224,0,0,38,10,0,0,188,184,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,102,224,0,0,100,0,0,0,0,0,0,0,124,224,0,0,102,0,1,0,82,96,143,77,1,0,0,0,46,1,0, 0,85,72,1,0,185,224,0,0,36,1,0,0,85,72,1,0,1,0,0,0,36,0,0,0,159,0,0,0,1,0,0,0,78,1,0,0,159,0,0,0,1,0,0,0,46,1,0,0,244,72,1,0,197,224,0,0,36,1,0,0,244,72,1,0,1,0,0,0,36,0,0,0,19,1,0,0,1,0,0,0,78,1,0,0,19,1,0,0,1,0,0,0,46,1,0,0,7,74,1,0,213,224,0,0,36, 1,0,0,7,74,1,0,1,0,0,0,36,0,0,0,118,0,0,0,1,0,0,0,78,1,0,0,118,0,0,0,1,0,0,0,46,1,0,0,125,74,1,0,225,224,0,0,36,1,0,0,125,74,1,0,1,0,0,0,36,0,0,0,21,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,1,0,0,0,46,1,0,0,146,74,1,0,237,224,0,0,36,1,0,0,146,74,1,0,1,0,0,0,36, 0,0,0,243,0,0,0,1,0,0,0,78,1,0,0,243,0,0,0,1,0,0,0,46,1,0,0,133,75,1,0,251,224,0,0,36,1,0,0,133,75,1,0,1,0,0,0,36,0,0,0,84,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,1,0,0,0,46,1,0,0,217,75,1,0,4,225,0,0,36,1,0,0,217,75,1,0,1,0,0,0,36,0,0,0,183,1,0,0,1,0,0,0,78, 1,0,0,183,1,0,0,1,0,0,0,46,1,0,0,144,77,1,0,17,225,0,0,36,1,0,0,144,77,1,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,223,77,1,0,26,225,0,0,36,1,0,0,223,77,1,0,1,0,0,0,36,0,0,0,202,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,1,0,0,0,46, 1,0,0,169,78,1,0,41,225,0,0,36,1,0,0,169,78,1,0,1,0,0,0,36,0,0,0,186,0,0,0,1,0,0,0,78,1,0,0,186,0,0,0,1,0,0,0,46,1,0,0,99,79,1,0,52,225,0,0,36,1,0,0,99,79,1,0,1,0,0,0,36,0,0,0,159,0,0,0,1,0,0,0,78,1,0,0,159,0,0,0,1,0,0,0,46,1,0,0,2,80,1,0,61,225,0,0, 36,1,0,0,2,80,1,0,1,0,0,0,36,0,0,0,32,2,0,0,1,0,0,0,78,1,0,0,32,2,0,0,1,0,0,0,46,1,0,0,34,82,1,0,74,225,0,0,36,1,0,0,34,82,1,0,1,0,0,0,36,0,0,0,118,0,0,0,1,0,0,0,78,1,0,0,118,0,0,0,1,0,0,0,46,1,0,0,152,82,1,0,83,225,0,0,36,1,0,0,152,82,1,0,1,0,0,0,36, 0,0,0,45,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,1,0,0,0,46,1,0,0,197,82,1,0,92,225,0,0,36,1,0,0,197,82,1,0,1,0,0,0,36,0,0,0,248,0,0,0,1,0,0,0,78,1,0,0,248,0,0,0,1,0,0,0,46,1,0,0,189,83,1,0,103,225,0,0,36,1,0,0,189,83,1,0,1,0,0,0,36,0,0,0,22,1,0,0,1,0,0,0,78, 1,0,0,22,1,0,0,1,0,0,0,46,1,0,0,211,84,1,0,115,225,0,0,36,1,0,0,211,84,1,0,1,0,0,0,36,0,0,0,85,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,1,0,0,0,46,1,0,0,40,85,1,0,127,225,0,0,36,1,0,0,40,85,1,0,1,0,0,0,36,0,0,0,239,3,0,0,1,0,0,0,78,1,0,0,239,3,0,0,1,0,0,0,46, 1,0,0,23,89,1,0,143,225,0,0,36,1,0,0,23,89,1,0,1,0,0,0,36,0,0,0,164,0,0,0,1,0,0,0,78,1,0,0,164,0,0,0,1,0,0,0,46,1,0,0,187,89,1,0,155,225,0,0,36,1,0,0,187,89,1,0,1,0,0,0,36,0,0,0,251,0,0,0,1,0,0,0,78,1,0,0,251,0,0,0,1,0,0,0,46,1,0,0,182,90,1,0,169,225, 0,0,36,1,0,0,182,90,1,0,1,0,0,0,36,0,0,0,106,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,1,0,0,0,46,1,0,0,32,91,1,0,180,225,0,0,36,1,0,0,32,91,1,0,1,0,0,0,36,0,0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,171,91,1,0,195,225,0,0,36,1,0,0,171,91,1,0, 1,0,0,0,36,0,0,0,74,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,1,0,0,0,46,1,0,0,245,91,1,0,206,225,0,0,36,1,0,0,245,91,1,0,1,0,0,0,36,0,0,0,149,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,1,0,0,0,46,1,0,0,138,92,1,0,219,225,0,0,36,1,0,0,138,92,1,0,1,0,0,0,36,0,0,0,33,0,0, 0,1,0,0,0,78,1,0,0,33,0,0,0,232,225,0,0,38,9,0,0,112,154,9,0,243,225,0,0,38,10,0,0,192,184,9,0,1,226,0,0,38,10,0,0,196,184,9,0,21,226,0,0,38,10,0,0,200,184,9,0,32,226,0,0,38,10,0,0,204,184,9,0,43,226,0,0,38,10,0,0,208,184,9,0,60,226,0,0,38,10,0,0,212, 184,9,0,73,226,0,0,32,11,0,0,0,0,0,0,84,226,0,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,98,226,0,0,100,0,0,0,0,0,0,0,125,226,0,0,102,0,1,0,82,96,143,77,1,0,0,0,46,1,0,0,171,92,1,0,191,226,0,0,36,1,0,0,171,92,1,0,1,0,0, 0,36,0,0,0,106,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,1,0,0,0,46,1,0,0,21,93,1,0,215,226,0,0,36,1,0,0,21,93,1,0,1,0,0,0,36,0,0,0,154,0,0,0,1,0,0,0,78,1,0,0,154,0,0,0,1,0,0,0,46,1,0,0,175,93,1,0,237,226,0,0,36,1,0,0,175,93,1,0,1,0,0,0,36,0,0,0,151,0,0,0,1,0, 0,0,78,1,0,0,151,0,0,0,1,0,0,0,46,1,0,0,70,94,1,0,6,227,0,0,36,1,0,0,70,94,1,0,1,0,0,0,36,0,0,0,108,1,0,0,1,0,0,0,78,1,0,0,108,1,0,0,1,0,0,0,46,1,0,0,178,95,1,0,33,227,0,0,36,1,0,0,178,95,1,0,1,0,0,0,36,0,0,0,107,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,1,0, 0,0,46,1,0,0,29,96,1,0,48,227,0,0,36,1,0,0,29,96,1,0,1,0,0,0,36,0,0,0,199,0,0,0,1,0,0,0,78,1,0,0,199,0,0,0,1,0,0,0,46,1,0,0,228,96,1,0,63,227,0,0,36,1,0,0,228,96,1,0,1,0,0,0,36,0,0,0,229,1,0,0,1,0,0,0,78,1,0,0,229,1,0,0,1,0,0,0,46,1,0,0,201,98,1,0,77, 227,0,0,36,1,0,0,201,98,1,0,1,0,0,0,36,0,0,0,202,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,1,0,0,0,46,1,0,0,147,99,1,0,95,227,0,0,36,1,0,0,147,99,1,0,1,0,0,0,36,0,0,0,212,0,0,0,1,0,0,0,78,1,0,0,212,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0, 111,227,0,0,100,0,0,0,0,0,0,0,139,227,0,0,102,0,1,0,83,96,143,77,1,0,0,0,46,1,0,0,103,100,1,0,206,227,0,0,36,1,0,0,103,100,1,0,1,0,0,0,36,0,0,0,78,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,1,0,0,0,46,1,0,0,181,100,1,0,213,227,0,0,36,1,0,0,181,100,1,0,1,0,0,0,36, 0,0,0,59,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,1,0,0,0,46,1,0,0,240,100,1,0,220,227,0,0,36,1,0,0,240,100,1,0,1,0,0,0,36,0,0,0,100,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,1,0,0,0,46,1,0,0,84,101,1,0,232,227,0,0,36,1,0,0,84,101,1,0,1,0,0,0,36,0,0,0,151,9,0,0,1,0,0, 0,78,1,0,0,151,9,0,0,1,0,0,0,46,1,0,0,235,110,1,0,255,227,0,0,36,1,0,0,235,110,1,0,1,0,0,0,36,0,0,0,35,1,0,0,1,0,0,0,78,1,0,0,35,1,0,0,1,0,0,0,46,1,0,0,14,112,1,0,15,228,0,0,36,1,0,0,14,112,1,0,1,0,0,0,36,0,0,0,35,1,0,0,1,0,0,0,78,1,0,0,35,1,0,0,1,0, 0,0,46,1,0,0,49,113,1,0,42,228,0,0,36,1,0,0,49,113,1,0,1,0,0,0,36,0,0,0,13,4,0,0,1,0,0,0,78,1,0,0,13,4,0,0,1,0,0,0,46,1,0,0,62,117,1,0,67,228,0,0,36,1,0,0,62,117,1,0,1,0,0,0,36,0,0,0,13,4,0,0,1,0,0,0,78,1,0,0,13,4,0,0,1,0,0,0,46,1,0,0,75,121,1,0,91,228, 0,0,36,1,0,0,75,121,1,0,1,0,0,0,36,0,0,0,83,6,0,0,1,0,0,0,78,1,0,0,83,6,0,0,1,0,0,0,46,1,0,0,158,127,1,0,117,228,0,0,36,1,0,0,158,127,1,0,1,0,0,0,36,0,0,0,67,11,0,0,1,0,0,0,78,1,0,0,67,11,0,0,1,0,0,0,46,1,0,0,225,138,1,0,135,228,0,0,36,1,0,0,225,138, 1,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,4,139,1,0,156,228,0,0,36,1,0,0,4,139,1,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,46,139,1,0,177,228,0,0,36,1,0,0,46,139,1,0,1,0,0,0,36,0,0,0,42,0,0, 0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,88,139,1,0,198,228,0,0,36,1,0,0,88,139,1,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,130,139,1,0,220,228,0,0,36,1,0,0,130,139,1,0,1,0,0,0,36,0,0,0,239,2,0,0,1,0,0,0,78,1,0,0,239, 2,0,0,1,0,0,0,46,1,0,0,113,142,1,0,243,228,0,0,36,1,0,0,113,142,1,0,1,0,0,0,36,0,0,0,140,4,0,0,1,0,0,0,78,1,0,0,140,4,0,0,1,0,0,0,46,1,0,0,253,146,1,0,13,229,0,0,36,1,0,0,253,146,1,0,1,0,0,0,36,0,0,0,140,4,0,0,1,0,0,0,78,1,0,0,140,4,0,0,1,0,0,0,46,1, 0,0,137,151,1,0,38,229,0,0,36,1,0,0,137,151,1,0,1,0,0,0,36,0,0,0,77,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,1,0,0,0,46,1,0,0,214,151,1,0,54,229,0,0,36,1,0,0,214,151,1,0,1,0,0,0,36,0,0,0,188,11,0,0,1,0,0,0,78,1,0,0,188,11,0,0,1,0,0,0,46,1,0,0,146,163,1,0,71,229, 0,0,36,1,0,0,146,163,1,0,1,0,0,0,36,0,0,0,49,8,0,0,1,0,0,0,78,1,0,0,49,8,0,0,1,0,0,0,46,1,0,0,195,171,1,0,91,229,0,0,36,1,0,0,195,171,1,0,1,0,0,0,36,0,0,0,71,0,0,0,1,0,0,0,78,1,0,0,71,0,0,0,1,0,0,0,46,1,0,0,10,172,1,0,109,229,0,0,36,1,0,0,10,172,1,0, 1,0,0,0,36,0,0,0,219,0,0,0,1,0,0,0,78,1,0,0,219,0,0,0,1,0,0,0,46,1,0,0,229,172,1,0,127,229,0,0,36,1,0,0,229,172,1,0,1,0,0,0,36,0,0,0,144,7,0,0,1,0,0,0,78,1,0,0,144,7,0,0,1,0,0,0,46,1,0,0,117,180,1,0,146,229,0,0,36,1,0,0,117,180,1,0,1,0,0,0,36,0,0,0,68, 2,0,0,1,0,0,0,78,1,0,0,68,2,0,0,1,0,0,0,46,1,0,0,185,182,1,0,158,229,0,0,36,1,0,0,185,182,1,0,1,0,0,0,36,0,0,0,25,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,1,0,0,0,46,1,0,0,210,182,1,0,171,229,0,0,36,1,0,0,210,182,1,0,1,0,0,0,36,0,0,0,81,4,0,0,1,0,0,0,78,1,0,0, 81,4,0,0,1,0,0,0,46,1,0,0,35,187,1,0,187,229,0,0,36,1,0,0,35,187,1,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,104,187,1,0,201,229,0,0,36,1,0,0,104,187,1,0,1,0,0,0,36,0,0,0,82,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,1,0,0,0,46,1,0, 0,186,187,1,0,214,229,0,0,36,1,0,0,186,187,1,0,1,0,0,0,36,0,0,0,63,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,1,0,0,0,46,1,0,0,249,187,1,0,228,229,0,0,36,1,0,0,249,187,1,0,1,0,0,0,36,0,0,0,193,2,0,0,1,0,0,0,78,1,0,0,193,2,0,0,1,0,0,0,46,1,0,0,186,190,1,0,241,229, 0,0,36,1,0,0,186,190,1,0,1,0,0,0,36,0,0,0,215,0,0,0,1,0,0,0,78,1,0,0,215,0,0,0,1,0,0,0,46,1,0,0,145,191,1,0,253,229,0,0,36,1,0,0,145,191,1,0,1,0,0,0,36,0,0,0,181,0,0,0,1,0,0,0,78,1,0,0,181,0,0,0,1,0,0,0,46,1,0,0,70,192,1,0,11,230,0,0,36,1,0,0,70,192, 1,0,1,0,0,0,36,0,0,0,14,1,0,0,1,0,0,0,78,1,0,0,14,1,0,0,1,0,0,0,46,1,0,0,84,193,1,0,24,230,0,0,36,1,0,0,84,193,1,0,1,0,0,0,36,0,0,0,163,1,0,0,1,0,0,0,78,1,0,0,163,1,0,0,1,0,0,0,46,1,0,0,247,194,1,0,38,230,0,0,36,1,0,0,247,194,1,0,1,0,0,0,36,0,0,0,110, 7,0,0,1,0,0,0,78,1,0,0,110,7,0,0,1,0,0,0,46,1,0,0,101,202,1,0,58,230,0,0,36,1,0,0,101,202,1,0,1,0,0,0,36,0,0,0,70,2,0,0,1,0,0,0,78,1,0,0,70,2,0,0,1,0,0,0,46,1,0,0,171,204,1,0,71,230,0,0,36,1,0,0,171,204,1,0,1,0,0,0,36,0,0,0,207,1,0,0,1,0,0,0,78,1,0,0, 207,1,0,0,1,0,0,0,46,1,0,0,122,206,1,0,88,230,0,0,36,1,0,0,122,206,1,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,191,206,1,0,103,230,0,0,36,1,0,0,191,206,1,0,1,0,0,0,36,0,0,0,82,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,1,0,0,0,46,1, 0,0,17,207,1,0,117,230,0,0,36,1,0,0,17,207,1,0,1,0,0,0,36,0,0,0,15,3,0,0,1,0,0,0,78,1,0,0,15,3,0,0,1,0,0,0,46,1,0,0,32,210,1,0,131,230,0,0,36,1,0,0,32,210,1,0,1,0,0,0,36,0,0,0,229,0,0,0,1,0,0,0,78,1,0,0,229,0,0,0,1,0,0,0,46,1,0,0,5,211,1,0,144,230,0, 0,36,1,0,0,5,211,1,0,1,0,0,0,36,0,0,0,181,0,0,0,1,0,0,0,78,1,0,0,181,0,0,0,1,0,0,0,46,1,0,0,186,211,1,0,159,230,0,0,36,1,0,0,186,211,1,0,1,0,0,0,36,0,0,0,0,1,0,0,1,0,0,0,78,1,0,0,0,1,0,0,1,0,0,0,46,1,0,0,186,212,1,0,173,230,0,0,36,1,0,0,186,212,1,0,1, 0,0,0,36,0,0,0,161,1,0,0,1,0,0,0,78,1,0,0,161,1,0,0,1,0,0,0,46,1,0,0,91,214,1,0,188,230,0,0,36,1,0,0,91,214,1,0,1,0,0,0,36,0,0,0,23,0,0,0,1,0,0,0,78,1,0,0,23,0,0,0,207,230,0,0,38,9,0,0,116,154,9,0,220,230,0,0,38,10,0,0,216,184,9,0,238,230,0,0,38,10,0, 0,220,184,9,0,252,230,0,0,38,10,0,0,224,184,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,11,231,0,0,100,0,0,0,0,0,0,0,34,231,0,0,102,0,1,0,83,96,143,77,1,0,0,0,46,1,0,0,114,214,1,0,96,231,0,0,36,1,0,0,114,214,1,0,1,0,0,0,36,0,0,0,70,0,0, 0,1,0,0,0,78,1,0,0,70,0,0,0,1,0,0,0,46,1,0,0,184,214,1,0,110,231,0,0,36,1,0,0,184,214,1,0,1,0,0,0,36,0,0,0,190,0,0,0,1,0,0,0,78,1,0,0,190,0,0,0,1,0,0,0,46,1,0,0,118,215,1,0,122,231,0,0,36,1,0,0,118,215,1,0,1,0,0,0,36,0,0,0,103,0,0,0,1,0,0,0,78,1,0,0, 103,0,0,0,1,0,0,0,46,1,0,0,221,215,1,0,136,231,0,0,36,1,0,0,221,215,1,0,1,0,0,0,36,0,0,0,117,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,1,0,0,0,46,1,0,0,82,216,1,0,147,231,0,0,36,1,0,0,82,216,1,0,1,0,0,0,36,0,0,0,253,1,0,0,1,0,0,0,78,1,0,0,253,1,0,0,1,0,0,0,46, 1,0,0,79,218,1,0,158,231,0,0,36,1,0,0,79,218,1,0,1,0,0,0,36,0,0,0,53,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,1,0,0,0,46,1,0,0,132,218,1,0,170,231,0,0,36,1,0,0,132,218,1,0,1,0,0,0,36,0,0,0,53,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,1,0,0,0,46,1,0,0,185,218,1,0,183,231, 0,0,36,1,0,0,185,218,1,0,1,0,0,0,36,0,0,0,147,0,0,0,1,0,0,0,78,1,0,0,147,0,0,0,1,0,0,0,46,1,0,0,76,219,1,0,195,231,0,0,36,1,0,0,76,219,1,0,1,0,0,0,36,0,0,0,158,0,0,0,1,0,0,0,78,1,0,0,158,0,0,0,1,0,0,0,46,1,0,0,234,219,1,0,209,231,0,0,36,1,0,0,234,219, 1,0,1,0,0,0,36,0,0,0,130,0,0,0,1,0,0,0,78,1,0,0,130,0,0,0,1,0,0,0,46,1,0,0,108,220,1,0,223,231,0,0,36,1,0,0,108,220,1,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,116,220,1,0,234,231,0,0,36,1,0,0,116,220,1,0,1,0,0,0,36,0,0,0,111, 1,0,0,1,0,0,0,78,1,0,0,111,1,0,0,1,0,0,0,46,1,0,0,227,221,1,0,253,231,0,0,36,1,0,0,227,221,1,0,1,0,0,0,36,0,0,0,13,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,1,0,0,0,46,1,0,0,240,221,1,0,7,232,0,0,36,1,0,0,240,221,1,0,1,0,0,0,36,0,0,0,228,0,0,0,1,0,0,0,78,1,0,0, 228,0,0,0,1,0,0,0,46,1,0,0,212,222,1,0,16,232,0,0,36,1,0,0,212,222,1,0,1,0,0,0,36,0,0,0,219,0,0,0,1,0,0,0,78,1,0,0,219,0,0,0,1,0,0,0,46,1,0,0,175,223,1,0,26,232,0,0,36,1,0,0,175,223,1,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,1,0,0,0,46,1, 0,0,6,224,1,0,36,232,0,0,36,1,0,0,6,224,1,0,1,0,0,0,36,0,0,0,51,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,1,0,0,0,46,1,0,0,57,224,1,0,43,232,0,0,36,1,0,0,57,224,1,0,1,0,0,0,36,0,0,0,158,0,0,0,1,0,0,0,78,1,0,0,158,0,0,0,1,0,0,0,46,1,0,0,215,224,1,0,59,232,0,0,36, 1,0,0,215,224,1,0,1,0,0,0,36,0,0,0,111,1,0,0,1,0,0,0,78,1,0,0,111,1,0,0,1,0,0,0,46,1,0,0,70,226,1,0,80,232,0,0,36,1,0,0,70,226,1,0,1,0,0,0,36,0,0,0,84,1,0,0,1,0,0,0,78,1,0,0,84,1,0,0,1,0,0,0,46,1,0,0,154,227,1,0,92,232,0,0,36,1,0,0,154,227,1,0,1,0,0, 0,36,0,0,0,31,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,1,0,0,0,46,1,0,0,185,227,1,0,108,232,0,0,36,1,0,0,185,227,1,0,1,0,0,0,36,0,0,0,118,0,0,0,1,0,0,0,78,1,0,0,118,0,0,0,1,0,0,0,46,1,0,0,47,228,1,0,128,232,0,0,36,1,0,0,47,228,1,0,1,0,0,0,36,0,0,0,64,0,0,0,1, 0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,111,228,1,0,147,232,0,0,36,1,0,0,111,228,1,0,1,0,0,0,36,0,0,0,83,0,0,0,1,0,0,0,78,1,0,0,83,0,0,0,1,0,0,0,46,1,0,0,194,228,1,0,158,232,0,0,36,1,0,0,194,228,1,0,1,0,0,0,36,0,0,0,119,0,0,0,1,0,0,0,78,1,0,0,119,0, 0,0,1,0,0,0,46,1,0,0,57,229,1,0,170,232,0,0,36,1,0,0,57,229,1,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,79,229,1,0,186,232,0,0,36,1,0,0,79,229,1,0,1,0,0,0,36,0,0,0,135,0,0,0,1,0,0,0,78,1,0,0,135,0,0,0,1,0,0,0,46,1,0,0,214, 229,1,0,204,232,0,0,36,1,0,0,214,229,1,0,1,0,0,0,36,0,0,0,239,0,0,0,1,0,0,0,78,1,0,0,239,0,0,0,1,0,0,0,46,1,0,0,197,230,1,0,214,232,0,0,36,1,0,0,197,230,1,0,1,0,0,0,36,0,0,0,244,1,0,0,1,0,0,0,78,1,0,0,244,1,0,0,1,0,0,0,46,1,0,0,185,232,1,0,228,232,0, 0,36,1,0,0,185,232,1,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,254,232,1,0,240,232,0,0,36,1,0,0,254,232,1,0,1,0,0,0,36,0,0,0,228,6,0,0,1,0,0,0,78,1,0,0,228,6,0,0,1,0,0,0,46,1,0,0,226,239,1,0,251,232,0,0,36,1,0,0,226,239,1, 0,1,0,0,0,36,0,0,0,44,11,0,0,1,0,0,0,78,1,0,0,44,11,0,0,1,0,0,0,46,1,0,0,14,251,1,0,12,233,0,0,36,1,0,0,14,251,1,0,1,0,0,0,36,0,0,0,118,0,0,0,1,0,0,0,78,1,0,0,118,0,0,0,1,0,0,0,46,1,0,0,132,251,1,0,27,233,0,0,36,1,0,0,132,251,1,0,1,0,0,0,36,0,0,0,136, 0,0,0,1,0,0,0,78,1,0,0,136,0,0,0,1,0,0,0,46,1,0,0,12,252,1,0,50,233,0,0,36,1,0,0,12,252,1,0,1,0,0,0,36,0,0,0,77,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,1,0,0,0,46,1,0,0,89,252,1,0,72,233,0,0,36,1,0,0,89,252,1,0,1,0,0,0,36,0,0,0,121,0,0,0,1,0,0,0,78,1,0,0,121, 0,0,0,1,0,0,0,46,1,0,0,210,252,1,0,96,233,0,0,36,1,0,0,210,252,1,0,1,0,0,0,36,0,0,0,18,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,110,233,0,0,38,10,0,0,0,185,9,0,123,233,0,0,38,10,0,0,4,185,9,0,134,233,0,0,38,10,0,0,8,185,9,0,145,233,0,0,38,10,0,0,12,185,9,0,160, 233,0,0,38,10,0,0,16,185,9,0,171,233,0,0,38,10,0,0,20,185,9,0,184,233,0,0,38,10,0,0,32,185,9,0,201,233,0,0,38,10,0,0,164,185,9,0,222,233,0,0,38,10,0,0,168,185,9,0,239,233,0,0,38,10,0,0,172,185,9,0,4,234,0,0,38,10,0,0,176,185,9,0,1,0,0,0,100,1,0,0,0,0, 0,0,41,190,0,0,100,0,0,0,0,0,0,0,28,234,0,0,100,0,0,0,0,0,0,0,55,234,0,0,102,0,1,0,84,96,143,77,1,0,0,0,46,1,0,0,228,252,1,0,121,234,0,0,36,1,0,0,228,252,1,0,1,0,0,0,36,0,0,0,24,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,1,0,0,0,46,1,0,0,252,252,1,0,139,234,0,0, 36,1,0,0,252,252,1,0,1,0,0,0,36,0,0,0,24,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,1,0,0,0,46,1,0,0,20,253,1,0,157,234,0,0,36,1,0,0,20,253,1,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,55,253,1,0,178,234,0,0,36,1,0,0,55,253,1,0,1,0,0, 0,36,0,0,0,226,0,0,0,1,0,0,0,78,1,0,0,226,0,0,0,1,0,0,0,46,1,0,0,25,254,1,0,199,234,0,0,36,1,0,0,25,254,1,0,1,0,0,0,36,0,0,0,226,0,0,0,1,0,0,0,78,1,0,0,226,0,0,0,1,0,0,0,46,1,0,0,251,254,1,0,220,234,0,0,36,1,0,0,251,254,1,0,1,0,0,0,36,0,0,0,121,0,0,0, 1,0,0,0,78,1,0,0,121,0,0,0,1,0,0,0,46,1,0,0,116,255,1,0,246,234,0,0,36,1,0,0,116,255,1,0,1,0,0,0,36,0,0,0,238,0,0,0,1,0,0,0,78,1,0,0,238,0,0,0,1,0,0,0,46,1,0,0,98,0,2,0,12,235,0,0,36,1,0,0,98,0,2,0,1,0,0,0,36,0,0,0,20,1,0,0,1,0,0,0,78,1,0,0,20,1,0,0, 1,0,0,0,46,1,0,0,118,1,2,0,33,235,0,0,36,1,0,0,118,1,2,0,1,0,0,0,36,0,0,0,159,0,0,0,1,0,0,0,78,1,0,0,159,0,0,0,1,0,0,0,46,1,0,0,21,2,2,0,59,235,0,0,36,1,0,0,21,2,2,0,1,0,0,0,36,0,0,0,213,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,1,0,0,0,46,1,0,0,234,2,2,0,86, 235,0,0,36,1,0,0,234,2,2,0,1,0,0,0,36,0,0,0,210,0,0,0,1,0,0,0,78,1,0,0,210,0,0,0,1,0,0,0,46,1,0,0,188,3,2,0,112,235,0,0,36,1,0,0,188,3,2,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,196,3,2,0,140,235,0,0,36,1,0,0,196,3,2,0,1,0, 0,0,36,0,0,0,208,0,0,0,1,0,0,0,78,1,0,0,208,0,0,0,1,0,0,0,46,1,0,0,148,4,2,0,161,235,0,0,36,1,0,0,148,4,2,0,1,0,0,0,36,0,0,0,171,1,0,0,1,0,0,0,78,1,0,0,171,1,0,0,1,0,0,0,46,1,0,0,63,6,2,0,185,235,0,0,36,1,0,0,63,6,2,0,1,0,0,0,36,0,0,0,75,0,0,0,1,0,0, 0,78,1,0,0,75,0,0,0,1,0,0,0,46,1,0,0,138,6,2,0,208,235,0,0,36,1,0,0,138,6,2,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,219,6,2,0,233,235,0,0,36,1,0,0,219,6,2,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46, 1,0,0,44,7,2,0,2,236,0,0,36,1,0,0,44,7,2,0,1,0,0,0,36,0,0,0,251,0,0,0,1,0,0,0,78,1,0,0,251,0,0,0,1,0,0,0,46,1,0,0,39,8,2,0,15,236,0,0,36,1,0,0,39,8,2,0,1,0,0,0,36,0,0,0,162,1,0,0,1,0,0,0,78,1,0,0,162,1,0,0,1,0,0,0,46,1,0,0,201,9,2,0,31,236,0,0,36,1,0, 0,201,9,2,0,1,0,0,0,36,0,0,0,235,0,0,0,1,0,0,0,78,1,0,0,235,0,0,0,1,0,0,0,46,1,0,0,180,10,2,0,45,236,0,0,36,1,0,0,180,10,2,0,1,0,0,0,36,0,0,0,222,0,0,0,1,0,0,0,78,1,0,0,222,0,0,0,1,0,0,0,46,1,0,0,146,11,2,0,63,236,0,0,36,1,0,0,146,11,2,0,1,0,0,0,36,0, 0,0,218,1,0,0,1,0,0,0,78,1,0,0,218,1,0,0,1,0,0,0,46,1,0,0,108,13,2,0,82,236,0,0,36,1,0,0,108,13,2,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,143,13,2,0,103,236,0,0,36,1,0,0,143,13,2,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1, 0,0,79,0,0,0,1,0,0,0,46,1,0,0,222,13,2,0,116,236,0,0,36,1,0,0,222,13,2,0,1,0,0,0,36,0,0,0,178,0,0,0,1,0,0,0,78,1,0,0,178,0,0,0,1,0,0,0,46,1,0,0,144,14,2,0,130,236,0,0,36,1,0,0,144,14,2,0,1,0,0,0,36,0,0,0,149,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,1,0,0,0,46, 1,0,0,37,15,2,0,142,236,0,0,36,1,0,0,37,15,2,0,1,0,0,0,36,0,0,0,246,0,0,0,1,0,0,0,78,1,0,0,246,0,0,0,1,0,0,0,46,1,0,0,27,16,2,0,156,236,0,0,36,1,0,0,27,16,2,0,1,0,0,0,36,0,0,0,109,0,0,0,1,0,0,0,78,1,0,0,109,0,0,0,1,0,0,0,46,1,0,0,136,16,2,0,173,236,0, 0,36,1,0,0,136,16,2,0,1,0,0,0,36,0,0,0,82,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,1,0,0,0,46,1,0,0,218,16,2,0,188,236,0,0,36,1,0,0,218,16,2,0,1,0,0,0,36,0,0,0,26,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,1,0,0,0,46,1,0,0,244,16,2,0,203,236,0,0,36,1,0,0,244,16,2,0,1,0, 0,0,36,0,0,0,91,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,1,0,0,0,46,1,0,0,79,17,2,0,215,236,0,0,36,1,0,0,79,17,2,0,1,0,0,0,36,0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,171,17,2,0,228,236,0,0,36,1,0,0,171,17,2,0,1,0,0,0,36,0,0,0,85,0,0,0,1,0,0, 0,78,1,0,0,85,0,0,0,1,0,0,0,46,1,0,0,0,18,2,0,247,236,0,0,36,1,0,0,0,18,2,0,1,0,0,0,36,0,0,0,226,7,0,0,1,0,0,0,78,1,0,0,226,7,0,0,1,0,0,0,46,1,0,0,226,25,2,0,6,237,0,0,36,1,0,0,226,25,2,0,1,0,0,0,36,0,0,0,191,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,1,0,0,0, 46,1,0,0,161,26,2,0,24,237,0,0,36,1,0,0,161,26,2,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,203,26,2,0,45,237,0,0,36,1,0,0,203,26,2,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,1,0,0,0,46,1,0,0,249,26,2,0,63,237,0, 0,36,1,0,0,249,26,2,0,1,0,0,0,36,0,0,0,217,0,0,0,1,0,0,0,78,1,0,0,217,0,0,0,1,0,0,0,46,1,0,0,210,27,2,0,80,237,0,0,36,1,0,0,210,27,2,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,97,237,0,0,32,9,0,0,0,0,0,0,118,237,0,0,32,9,0,0,0,0,0,0,136,237, 0,0,32,9,0,0,0,0,0,0,152,237,0,0,32,9,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,167,237,0,0,100,0,0,0,0,0,0,0,191,237,0,0,102,0,1,0,84,96,143,77,1,0,0,0,46,1,0,0,232,27,2,0,254,237,0,0,36,1,0,0,232,27,2,0,1,0,0,0,36,0,0,0,169, 0,0,0,1,0,0,0,78,1,0,0,169,0,0,0,1,0,0,0,46,1,0,0,145,28,2,0,13,238,0,0,36,1,0,0,145,28,2,0,1,0,0,0,36,0,0,0,177,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,1,0,0,0,46,1,0,0,66,29,2,0,24,238,0,0,36,1,0,0,66,29,2,0,1,0,0,0,36,0,0,0,253,0,0,0,1,0,0,0,78,1,0,0,253, 0,0,0,1,0,0,0,46,1,0,0,63,30,2,0,38,238,0,0,36,1,0,0,63,30,2,0,1,0,0,0,36,0,0,0,147,0,0,0,1,0,0,0,78,1,0,0,147,0,0,0,1,0,0,0,46,1,0,0,210,30,2,0,63,238,0,0,36,1,0,0,210,30,2,0,1,0,0,0,36,0,0,0,154,0,0,0,1,0,0,0,78,1,0,0,154,0,0,0,1,0,0,0,46,1,0,0,108, 31,2,0,75,238,0,0,36,1,0,0,108,31,2,0,1,0,0,0,36,0,0,0,217,1,0,0,1,0,0,0,78,1,0,0,217,1,0,0,1,0,0,0,46,1,0,0,69,33,2,0,88,238,0,0,36,1,0,0,69,33,2,0,1,0,0,0,36,0,0,0,210,0,0,0,1,0,0,0,78,1,0,0,210,0,0,0,1,0,0,0,46,1,0,0,23,34,2,0,102,238,0,0,36,1,0,0, 23,34,2,0,1,0,0,0,36,0,0,0,236,0,0,0,1,0,0,0,78,1,0,0,236,0,0,0,1,0,0,0,46,1,0,0,3,35,2,0,119,238,0,0,36,1,0,0,3,35,2,0,1,0,0,0,36,0,0,0,150,0,0,0,1,0,0,0,78,1,0,0,150,0,0,0,1,0,0,0,46,1,0,0,153,35,2,0,146,238,0,0,36,1,0,0,153,35,2,0,1,0,0,0,36,0,0,0, 29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,182,35,2,0,162,238,0,0,36,1,0,0,182,35,2,0,1,0,0,0,36,0,0,0,17,1,0,0,1,0,0,0,78,1,0,0,17,1,0,0,1,0,0,0,46,1,0,0,199,36,2,0,181,238,0,0,36,1,0,0,199,36,2,0,1,0,0,0,36,0,0,0,46,3,0,0,1,0,0,0,78,1,0,0, 46,3,0,0,1,0,0,0,46,1,0,0,245,39,2,0,194,238,0,0,36,1,0,0,245,39,2,0,1,0,0,0,36,0,0,0,168,0,0,0,1,0,0,0,78,1,0,0,168,0,0,0,1,0,0,0,46,1,0,0,157,40,2,0,212,238,0,0,36,1,0,0,157,40,2,0,1,0,0,0,36,0,0,0,176,1,0,0,1,0,0,0,78,1,0,0,176,1,0,0,1,0,0,0,46,1, 0,0,77,42,2,0,231,238,0,0,36,1,0,0,77,42,2,0,1,0,0,0,36,0,0,0,122,1,0,0,1,0,0,0,78,1,0,0,122,1,0,0,1,0,0,0,46,1,0,0,199,43,2,0,250,238,0,0,36,1,0,0,199,43,2,0,1,0,0,0,36,0,0,0,249,2,0,0,1,0,0,0,78,1,0,0,249,2,0,0,1,0,0,0,46,1,0,0,192,46,2,0,14,239,0, 0,36,1,0,0,192,46,2,0,1,0,0,0,36,0,0,0,177,1,0,0,1,0,0,0,78,1,0,0,177,1,0,0,1,0,0,0,46,1,0,0,113,48,2,0,40,239,0,0,36,1,0,0,113,48,2,0,1,0,0,0,36,0,0,0,233,2,0,0,1,0,0,0,78,1,0,0,233,2,0,0,1,0,0,0,46,1,0,0,90,51,2,0,71,239,0,0,36,1,0,0,90,51,2,0,1,0, 0,0,36,0,0,0,52,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,1,0,0,0,46,1,0,0,142,51,2,0,99,239,0,0,36,1,0,0,142,51,2,0,1,0,0,0,36,0,0,0,176,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,1,0,0,0,46,1,0,0,62,52,2,0,112,239,0,0,36,1,0,0,62,52,2,0,1,0,0,0,36,0,0,0,56,0,0,0,1,0,0, 0,78,1,0,0,56,0,0,0,1,0,0,0,46,1,0,0,118,52,2,0,126,239,0,0,36,1,0,0,118,52,2,0,1,0,0,0,36,0,0,0,117,1,0,0,1,0,0,0,78,1,0,0,117,1,0,0,1,0,0,0,46,1,0,0,235,53,2,0,147,239,0,0,36,1,0,0,235,53,2,0,1,0,0,0,36,0,0,0,86,4,0,0,1,0,0,0,78,1,0,0,86,4,0,0,1,0, 0,0,46,1,0,0,65,58,2,0,161,239,0,0,36,1,0,0,65,58,2,0,1,0,0,0,36,0,0,0,39,2,0,0,1,0,0,0,78,1,0,0,39,2,0,0,1,0,0,0,46,1,0,0,104,60,2,0,184,239,0,0,36,1,0,0,104,60,2,0,1,0,0,0,36,0,0,0,134,11,0,0,1,0,0,0,78,1,0,0,134,11,0,0,1,0,0,0,46,1,0,0,238,71,2,0, 199,239,0,0,36,1,0,0,238,71,2,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,24,72,2,0,221,239,0,0,36,1,0,0,24,72,2,0,1,0,0,0,36,0,0,0,92,2,0,0,1,0,0,0,78,1,0,0,92,2,0,0,1,0,0,0,46,1,0,0,116,74,2,0,236,239,0,0,36,1,0,0,116,74, 2,0,1,0,0,0,36,0,0,0,65,0,0,0,1,0,0,0,78,1,0,0,65,0,0,0,1,0,0,0,46,1,0,0,181,74,2,0,252,239,0,0,36,1,0,0,181,74,2,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,189,74,2,0,13,240,0,0,36,1,0,0,189,74,2,0,1,0,0,0,36,0,0,0,14,0,0,0, 1,0,0,0,78,1,0,0,14,0,0,0,1,0,0,0,46,1,0,0,203,74,2,0,28,240,0,0,36,1,0,0,203,74,2,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,211,74,2,0,45,240,0,0,36,1,0,0,211,74,2,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0, 0,46,1,0,0,219,74,2,0,60,240,0,0,36,1,0,0,219,74,2,0,1,0,0,0,36,0,0,0,44,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,1,0,0,0,46,1,0,0,7,75,2,0,72,240,0,0,36,1,0,0,7,75,2,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,86,75,2,0,86,240,0,0, 36,1,0,0,86,75,2,0,1,0,0,0,36,0,0,0,167,2,0,0,1,0,0,0,78,1,0,0,167,2,0,0,1,0,0,0,46,1,0,0,253,77,2,0,99,240,0,0,36,1,0,0,253,77,2,0,1,0,0,0,36,0,0,0,15,0,0,0,1,0,0,0,78,1,0,0,15,0,0,0,1,0,0,0,46,1,0,0,12,78,2,0,117,240,0,0,36,1,0,0,12,78,2,0,1,0,0,0, 36,0,0,0,90,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,1,0,0,0,46,1,0,0,102,78,2,0,134,240,0,0,36,1,0,0,102,78,2,0,1,0,0,0,36,0,0,0,107,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,1,0,0,0,46,1,0,0,209,78,2,0,149,240,0,0,36,1,0,0,209,78,2,0,1,0,0,0,36,0,0,0,94,0,0,0,1,0,0, 0,78,1,0,0,94,0,0,0,1,0,0,0,46,1,0,0,47,79,2,0,166,240,0,0,36,1,0,0,47,79,2,0,1,0,0,0,36,0,0,0,27,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,1,0,0,0,46,1,0,0,74,79,2,0,182,240,0,0,36,1,0,0,74,79,2,0,1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,1,0,0,0,46, 1,0,0,102,79,2,0,194,240,0,0,36,1,0,0,102,79,2,0,1,0,0,0,36,0,0,0,177,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,1,0,0,0,46,1,0,0,23,80,2,0,216,240,0,0,36,1,0,0,23,80,2,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,56,80,2,0,238,240,0, 0,36,1,0,0,56,80,2,0,1,0,0,0,36,0,0,0,73,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,1,0,0,0,46,1,0,0,129,80,2,0,0,241,0,0,36,1,0,0,129,80,2,0,1,0,0,0,36,0,0,0,148,0,0,0,1,0,0,0,78,1,0,0,148,0,0,0,1,0,0,0,46,1,0,0,21,81,2,0,14,241,0,0,36,1,0,0,21,81,2,0,1,0,0,0, 36,0,0,0,73,2,0,0,1,0,0,0,78,1,0,0,73,2,0,0,1,0,0,0,46,1,0,0,94,83,2,0,27,241,0,0,36,1,0,0,94,83,2,0,1,0,0,0,36,0,0,0,4,1,0,0,1,0,0,0,78,1,0,0,4,1,0,0,1,0,0,0,46,1,0,0,98,84,2,0,43,241,0,0,36,1,0,0,98,84,2,0,1,0,0,0,36,0,0,0,4,1,0,0,1,0,0,0,78,1,0,0, 4,1,0,0,1,0,0,0,46,1,0,0,102,85,2,0,61,241,0,0,36,1,0,0,102,85,2,0,1,0,0,0,36,0,0,0,168,1,0,0,1,0,0,0,78,1,0,0,168,1,0,0,1,0,0,0,46,1,0,0,14,87,2,0,79,241,0,0,36,1,0,0,14,87,2,0,1,0,0,0,36,0,0,0,22,1,0,0,1,0,0,0,78,1,0,0,22,1,0,0,1,0,0,0,46,1,0,0,36, 88,2,0,92,241,0,0,36,1,0,0,36,88,2,0,1,0,0,0,36,0,0,0,149,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,1,0,0,0,46,1,0,0,185,88,2,0,107,241,0,0,36,1,0,0,185,88,2,0,1,0,0,0,36,0,0,0,128,0,0,0,1,0,0,0,78,1,0,0,128,0,0,0,1,0,0,0,46,1,0,0,57,89,2,0,122,241,0,0,36,1,0, 0,57,89,2,0,1,0,0,0,36,0,0,0,128,0,0,0,1,0,0,0,78,1,0,0,128,0,0,0,1,0,0,0,46,1,0,0,185,89,2,0,137,241,0,0,36,1,0,0,185,89,2,0,1,0,0,0,36,0,0,0,45,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,1,0,0,0,46,1,0,0,230,89,2,0,152,241,0,0,36,1,0,0,230,89,2,0,1,0,0,0,36,0, 0,0,45,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,1,0,0,0,46,1,0,0,19,90,2,0,167,241,0,0,36,1,0,0,19,90,2,0,1,0,0,0,36,0,0,0,104,0,0,0,1,0,0,0,78,1,0,0,104,0,0,0,1,0,0,0,46,1,0,0,123,90,2,0,182,241,0,0,36,1,0,0,123,90,2,0,1,0,0,0,36,0,0,0,121,2,0,0,1,0,0,0,78,1, 0,0,121,2,0,0,1,0,0,0,46,1,0,0,244,92,2,0,195,241,0,0,36,1,0,0,244,92,2,0,1,0,0,0,36,0,0,0,203,1,0,0,1,0,0,0,78,1,0,0,203,1,0,0,1,0,0,0,46,1,0,0,191,94,2,0,209,241,0,0,36,1,0,0,191,94,2,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46, 1,0,0,224,94,2,0,229,241,0,0,36,1,0,0,224,94,2,0,1,0,0,0,36,0,0,0,199,0,0,0,1,0,0,0,78,1,0,0,199,0,0,0,1,0,0,0,46,1,0,0,167,95,2,0,249,241,0,0,36,1,0,0,167,95,2,0,1,0,0,0,36,0,0,0,32,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,1,0,0,0,46,1,0,0,199,95,2,0,8,242,0, 0,36,1,0,0,199,95,2,0,1,0,0,0,36,0,0,0,80,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,1,0,0,0,46,1,0,0,23,96,2,0,22,242,0,0,36,1,0,0,23,96,2,0,1,0,0,0,36,0,0,0,117,5,0,0,1,0,0,0,78,1,0,0,117,5,0,0,37,242,0,0,32,9,0,0,0,0,0,0,60,242,0,0,38,9,0,0,128,159,9,0,86,242, 0,0,38,9,0,0,36,160,9,0,112,242,0,0,38,10,0,0,180,185,9,0,120,242,0,0,38,10,0,0,184,185,9,0,148,242,0,0,38,10,0,0,188,185,9,0,174,242,0,0,38,10,0,0,192,185,9,0,200,242,0,0,38,10,0,0,196,185,9,0,221,242,0,0,38,10,0,0,200,185,9,0,242,242,0,0,38,10,0,0, 204,185,9,0,6,243,0,0,38,10,0,0,208,185,9,0,27,243,0,0,38,10,0,0,212,185,9,0,47,243,0,0,38,10,0,0,216,185,9,0,64,243,0,0,38,10,0,0,220,185,9,0,87,243,0,0,38,10,0,0,224,185,9,0,109,243,0,0,38,10,0,0,228,185,9,0,132,243,0,0,38,10,0,0,232,185,9,0,153,243, 0,0,38,10,0,0,236,185,9,0,173,243,0,0,38,10,0,0,240,185,9,0,195,243,0,0,38,10,0,0,244,185,9,0,217,243,0,0,38,10,0,0,248,185,9,0,237,243,0,0,38,10,0,0,252,185,9,0,2,244,0,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,16,244, 0,0,100,0,0,0,0,0,0,0,39,244,0,0,102,0,1,0,85,96,143,77,1,0,0,0,46,1,0,0,140,101,2,0,101,244,0,0,36,1,0,0,140,101,2,0,1,0,0,0,36,0,0,0,118,0,0,0,1,0,0,0,78,1,0,0,118,0,0,0,1,0,0,0,46,1,0,0,2,102,2,0,118,244,0,0,36,1,0,0,2,102,2,0,1,0,0,0,36,0,0,0,149, 2,0,0,1,0,0,0,78,1,0,0,149,2,0,0,1,0,0,0,46,1,0,0,151,104,2,0,132,244,0,0,36,1,0,0,151,104,2,0,1,0,0,0,36,0,0,0,23,2,0,0,1,0,0,0,78,1,0,0,23,2,0,0,1,0,0,0,46,1,0,0,174,106,2,0,147,244,0,0,36,1,0,0,174,106,2,0,1,0,0,0,36,0,0,0,223,0,0,0,1,0,0,0,78,1,0, 0,223,0,0,0,1,0,0,0,46,1,0,0,141,107,2,0,163,244,0,0,36,1,0,0,141,107,2,0,1,0,0,0,36,0,0,0,66,1,0,0,1,0,0,0,78,1,0,0,66,1,0,0,1,0,0,0,46,1,0,0,207,108,2,0,180,244,0,0,36,1,0,0,207,108,2,0,1,0,0,0,36,0,0,0,153,1,0,0,1,0,0,0,78,1,0,0,153,1,0,0,1,0,0,0, 46,1,0,0,104,110,2,0,193,244,0,0,36,1,0,0,104,110,2,0,1,0,0,0,36,0,0,0,18,1,0,0,1,0,0,0,78,1,0,0,18,1,0,0,1,0,0,0,46,1,0,0,122,111,2,0,210,244,0,0,36,1,0,0,122,111,2,0,1,0,0,0,36,0,0,0,204,0,0,0,1,0,0,0,78,1,0,0,204,0,0,0,1,0,0,0,46,1,0,0,70,112,2,0, 220,244,0,0,36,1,0,0,70,112,2,0,1,0,0,0,36,0,0,0,100,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,1,0,0,0,46,1,0,0,170,112,2,0,233,244,0,0,36,1,0,0,170,112,2,0,1,0,0,0,36,0,0,0,171,1,0,0,1,0,0,0,78,1,0,0,171,1,0,0,1,0,0,0,46,1,0,0,85,114,2,0,243,244,0,0,36,1,0,0, 85,114,2,0,1,0,0,0,36,0,0,0,84,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,1,0,0,0,46,1,0,0,169,114,2,0,5,245,0,0,36,1,0,0,169,114,2,0,1,0,0,0,36,0,0,0,67,2,0,0,1,0,0,0,78,1,0,0,67,2,0,0,1,0,0,0,46,1,0,0,236,116,2,0,21,245,0,0,36,1,0,0,236,116,2,0,1,0,0,0,36,0,0, 0,198,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,1,0,0,0,46,1,0,0,178,117,2,0,30,245,0,0,36,1,0,0,178,117,2,0,1,0,0,0,36,0,0,0,176,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,1,0,0,0,46,1,0,0,98,118,2,0,41,245,0,0,36,1,0,0,98,118,2,0,1,0,0,0,36,0,0,0,158,0,0,0,1,0,0,0,78, 1,0,0,158,0,0,0,1,0,0,0,46,1,0,0,0,119,2,0,52,245,0,0,36,1,0,0,0,119,2,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,48,119,2,0,62,245,0,0,36,1,0,0,48,119,2,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0, 0,96,119,2,0,73,245,0,0,36,1,0,0,96,119,2,0,1,0,0,0,36,0,0,0,49,1,0,0,1,0,0,0,78,1,0,0,49,1,0,0,1,0,0,0,46,1,0,0,145,120,2,0,85,245,0,0,36,1,0,0,145,120,2,0,1,0,0,0,36,0,0,0,30,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,1,0,0,0,46,1,0,0,175,120,2,0,96,245,0,0,36, 1,0,0,175,120,2,0,1,0,0,0,36,0,0,0,97,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,1,0,0,0,46,1,0,0,16,121,2,0,110,245,0,0,36,1,0,0,16,121,2,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,35,121,2,0,121,245,0,0,36,1,0,0,35,121,2,0,1,0,0,0, 36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,54,121,2,0,133,245,0,0,36,1,0,0,54,121,2,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,73,121,2,0,146,245,0,0,36,1,0,0,73,121,2,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0, 78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,92,121,2,0,156,245,0,0,36,1,0,0,92,121,2,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,111,121,2,0,170,245,0,0,36,1,0,0,111,121,2,0,1,0,0,0,36,0,0,0,71,0,0,0,1,0,0,0,78,1,0,0,71,0,0,0,1,0,0, 0,46,1,0,0,182,121,2,0,184,245,0,0,36,1,0,0,182,121,2,0,1,0,0,0,36,0,0,0,80,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,1,0,0,0,46,1,0,0,6,122,2,0,194,245,0,0,36,1,0,0,6,122,2,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,53,122,2,0,205, 245,0,0,36,1,0,0,53,122,2,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,100,122,2,0,214,245,0,0,36,1,0,0,100,122,2,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,186,122,2,0,229,245,0,0,36,1,0,0,186,122, 2,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,233,122,2,0,240,245,0,0,36,1,0,0,233,122,2,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,10,123,2,0,250,245,0,0,36,1,0,0,10,123,2,0,1,0,0,0,36,0,0,0,33, 0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,43,123,2,0,7,246,0,0,36,1,0,0,43,123,2,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,76,123,2,0,18,246,0,0,36,1,0,0,76,123,2,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0, 0,1,0,0,0,46,1,0,0,123,123,2,0,33,246,0,0,36,1,0,0,123,123,2,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,170,123,2,0,49,246,0,0,36,1,0,0,170,123,2,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,239,123, 2,0,59,246,0,0,36,1,0,0,239,123,2,0,1,0,0,0,36,0,0,0,53,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,1,0,0,0,46,1,0,0,36,124,2,0,73,246,0,0,36,1,0,0,36,124,2,0,1,0,0,0,36,0,0,0,40,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,1,0,0,0,46,1,0,0,76,124,2,0,87,246,0,0,36,1,0,0,76, 124,2,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,105,124,2,0,101,246,0,0,36,1,0,0,105,124,2,0,1,0,0,0,36,0,0,0,177,7,0,0,1,0,0,0,78,1,0,0,177,7,0,0,1,0,0,0,46,1,0,0,26,132,2,0,110,246,0,0,36,1,0,0,26,132,2,0,1,0,0,0,36,0,0, 0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,61,132,2,0,131,246,0,0,36,1,0,0,61,132,2,0,1,0,0,0,36,0,0,0,110,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,1,0,0,0,46,1,0,0,171,132,2,0,139,246,0,0,36,1,0,0,171,132,2,0,1,0,0,0,36,0,0,0,115,5,0,0,1,0,0,0,78, 1,0,0,115,5,0,0,153,246,0,0,38,10,0,0,0,186,9,0,164,246,0,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,184,246,0,0,100,0,0,0,0,0,0,0,209,246,0,0,102,0,1,0,85,96,143,77,1,0,0,0,46,1,0,0,30,138,2,0,17,247,0,0,36,1,0,0,30,138, 2,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,77,138,2,0,42,247,0,0,36,1,0,0,77,138,2,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,1,0,0,0,46,1,0,0,123,138,2,0,60,247,0,0,36,1,0,0,123,138,2,0,1,0,0,0,36,0,0,0,109,0, 0,0,1,0,0,0,78,1,0,0,109,0,0,0,1,0,0,0,46,1,0,0,232,138,2,0,80,247,0,0,36,1,0,0,232,138,2,0,1,0,0,0,36,0,0,0,108,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,1,0,0,0,46,1,0,0,84,139,2,0,96,247,0,0,36,1,0,0,84,139,2,0,1,0,0,0,36,0,0,0,36,0,0,0,1,0,0,0,78,1,0,0,36, 0,0,0,1,0,0,0,46,1,0,0,120,139,2,0,114,247,0,0,36,1,0,0,120,139,2,0,1,0,0,0,36,0,0,0,49,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,1,0,0,0,46,1,0,0,169,139,2,0,133,247,0,0,36,1,0,0,169,139,2,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0, 188,139,2,0,152,247,0,0,36,1,0,0,188,139,2,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,207,139,2,0,173,247,0,0,36,1,0,0,207,139,2,0,1,0,0,0,36,0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,43,140,2,0,188,247,0,0, 36,1,0,0,43,140,2,0,1,0,0,0,36,0,0,0,78,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,1,0,0,0,46,1,0,0,121,140,2,0,210,247,0,0,36,1,0,0,121,140,2,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,1,0,0,0,46,1,0,0,167,140,2,0,226,247,0,0,36,1,0,0,167,140,2,0,1, 0,0,0,36,0,0,0,128,0,0,0,1,0,0,0,78,1,0,0,128,0,0,0,1,0,0,0,46,1,0,0,39,141,2,0,248,247,0,0,36,1,0,0,39,141,2,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,68,141,2,0,14,248,0,0,36,1,0,0,68,141,2,0,1,0,0,0,36,0,0,0,27,0,0,0,1, 0,0,0,78,1,0,0,27,0,0,0,1,0,0,0,46,1,0,0,95,141,2,0,29,248,0,0,36,1,0,0,95,141,2,0,1,0,0,0,36,0,0,0,178,1,0,0,1,0,0,0,78,1,0,0,178,1,0,0,1,0,0,0,46,1,0,0,17,143,2,0,50,248,0,0,36,1,0,0,17,143,2,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1, 0,0,0,46,1,0,0,59,143,2,0,72,248,0,0,36,1,0,0,59,143,2,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,94,143,2,0,93,248,0,0,36,1,0,0,94,143,2,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,136,143,2,0,115, 248,0,0,36,1,0,0,136,143,2,0,1,0,0,0,36,0,0,0,228,0,0,0,1,0,0,0,78,1,0,0,228,0,0,0,1,0,0,0,46,1,0,0,108,144,2,0,130,248,0,0,36,1,0,0,108,144,2,0,1,0,0,0,36,0,0,0,55,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,1,0,0,0,46,1,0,0,163,144,2,0,147,248,0,0,36,1,0,0,163, 144,2,0,1,0,0,0,36,0,0,0,58,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,1,0,0,0,46,1,0,0,221,144,2,0,168,248,0,0,36,1,0,0,221,144,2,0,1,0,0,0,36,0,0,0,114,3,0,0,1,0,0,0,78,1,0,0,114,3,0,0,1,0,0,0,46,1,0,0,79,148,2,0,188,248,0,0,36,1,0,0,79,148,2,0,1,0,0,0,36,0,0, 0,30,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,1,0,0,0,46,1,0,0,109,148,2,0,214,248,0,0,36,1,0,0,109,148,2,0,1,0,0,0,36,0,0,0,203,0,0,0,1,0,0,0,78,1,0,0,203,0,0,0,1,0,0,0,46,1,0,0,56,149,2,0,226,248,0,0,36,1,0,0,56,149,2,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78, 1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,98,149,2,0,247,248,0,0,36,1,0,0,98,149,2,0,1,0,0,0,36,0,0,0,79,5,0,0,1,0,0,0,78,1,0,0,79,5,0,0,1,0,0,0,46,1,0,0,177,154,2,0,3,249,0,0,36,1,0,0,177,154,2,0,1,0,0,0,36,0,0,0,122,1,0,0,1,0,0,0,78,1,0,0,122,1,0,0,1,0,0,0,46, 1,0,0,43,156,2,0,18,249,0,0,36,1,0,0,43,156,2,0,1,0,0,0,36,0,0,0,154,3,0,0,1,0,0,0,78,1,0,0,154,3,0,0,1,0,0,0,46,1,0,0,197,159,2,0,34,249,0,0,36,1,0,0,197,159,2,0,1,0,0,0,36,0,0,0,87,1,0,0,1,0,0,0,78,1,0,0,87,1,0,0,1,0,0,0,46,1,0,0,28,161,2,0,47,249, 0,0,36,1,0,0,28,161,2,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,76,161,2,0,62,249,0,0,36,1,0,0,76,161,2,0,1,0,0,0,36,0,0,0,76,0,0,0,1,0,0,0,78,1,0,0,76,0,0,0,1,0,0,0,46,1,0,0,152,161,2,0,80,249,0,0,36,1,0,0,152,161,2,0,1, 0,0,0,36,0,0,0,89,1,0,0,1,0,0,0,78,1,0,0,89,1,0,0,1,0,0,0,46,1,0,0,241,162,2,0,100,249,0,0,36,1,0,0,241,162,2,0,1,0,0,0,36,0,0,0,149,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,1,0,0,0,46,1,0,0,134,163,2,0,120,249,0,0,36,1,0,0,134,163,2,0,1,0,0,0,36,0,0,0,195,1, 0,0,1,0,0,0,78,1,0,0,195,1,0,0,1,0,0,0,46,1,0,0,73,165,2,0,141,249,0,0,36,1,0,0,73,165,2,0,1,0,0,0,36,0,0,0,220,0,0,0,1,0,0,0,78,1,0,0,220,0,0,0,1,0,0,0,46,1,0,0,37,166,2,0,155,249,0,0,36,1,0,0,37,166,2,0,1,0,0,0,36,0,0,0,17,1,0,0,1,0,0,0,78,1,0,0,17, 1,0,0,1,0,0,0,46,1,0,0,54,167,2,0,175,249,0,0,36,1,0,0,54,167,2,0,1,0,0,0,36,0,0,0,146,1,0,0,1,0,0,0,78,1,0,0,146,1,0,0,1,0,0,0,46,1,0,0,200,168,2,0,187,249,0,0,36,1,0,0,200,168,2,0,1,0,0,0,36,0,0,0,80,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,1,0,0,0,46,1,0,0, 24,169,2,0,202,249,0,0,36,1,0,0,24,169,2,0,1,0,0,0,36,0,0,0,201,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0,1,0,0,0,46,1,0,0,225,169,2,0,219,249,0,0,36,1,0,0,225,169,2,0,1,0,0,0,36,0,0,0,67,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,1,0,0,0,46,1,0,0,36,170,2,0,236,249,0,0, 36,1,0,0,36,170,2,0,1,0,0,0,36,0,0,0,61,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,1,0,0,0,46,1,0,0,97,170,2,0,254,249,0,0,36,1,0,0,97,170,2,0,1,0,0,0,36,0,0,0,72,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,1,0,0,0,46,1,0,0,169,170,2,0,13,250,0,0,36,1,0,0,169,170,2,0,1,0,0, 0,36,0,0,0,125,1,0,0,1,0,0,0,78,1,0,0,125,1,0,0,1,0,0,0,46,1,0,0,38,172,2,0,26,250,0,0,36,1,0,0,38,172,2,0,1,0,0,0,36,0,0,0,211,0,0,0,1,0,0,0,78,1,0,0,211,0,0,0,1,0,0,0,46,1,0,0,249,172,2,0,44,250,0,0,36,1,0,0,249,172,2,0,1,0,0,0,36,0,0,0,163,0,0,0,1, 0,0,0,78,1,0,0,163,0,0,0,1,0,0,0,46,1,0,0,156,173,2,0,64,250,0,0,36,1,0,0,156,173,2,0,1,0,0,0,36,0,0,0,160,0,0,0,1,0,0,0,78,1,0,0,160,0,0,0,1,0,0,0,46,1,0,0,60,174,2,0,87,250,0,0,36,1,0,0,60,174,2,0,1,0,0,0,36,0,0,0,180,0,0,0,1,0,0,0,78,1,0,0,180,0,0, 0,1,0,0,0,46,1,0,0,240,174,2,0,112,250,0,0,36,1,0,0,240,174,2,0,1,0,0,0,36,0,0,0,113,0,0,0,1,0,0,0,78,1,0,0,113,0,0,0,1,0,0,0,46,1,0,0,97,175,2,0,124,250,0,0,36,1,0,0,97,175,2,0,1,0,0,0,36,0,0,0,33,1,0,0,1,0,0,0,78,1,0,0,33,1,0,0,1,0,0,0,46,1,0,0,130, 176,2,0,140,250,0,0,36,1,0,0,130,176,2,0,1,0,0,0,36,0,0,0,120,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,1,0,0,0,46,1,0,0,250,176,2,0,169,250,0,0,36,1,0,0,250,176,2,0,1,0,0,0,36,0,0,0,202,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,1,0,0,0,46,1,0,0,196,177,2,0,196,250,0, 0,36,1,0,0,196,177,2,0,1,0,0,0,36,0,0,0,30,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,1,0,0,0,46,1,0,0,226,177,2,0,213,250,0,0,36,1,0,0,226,177,2,0,1,0,0,0,36,0,0,0,214,0,0,0,1,0,0,0,78,1,0,0,214,0,0,0,1,0,0,0,46,1,0,0,184,178,2,0,230,250,0,0,36,1,0,0,184,178,2, 0,1,0,0,0,36,0,0,0,83,0,0,0,1,0,0,0,78,1,0,0,83,0,0,0,1,0,0,0,46,1,0,0,11,179,2,0,253,250,0,0,36,1,0,0,11,179,2,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,19,179,2,0,14,251,0,0,36,1,0,0,19,179,2,0,1,0,0,0,36,0,0,0,31,1,0,0,1, 0,0,0,78,1,0,0,31,1,0,0,1,0,0,0,46,1,0,0,50,180,2,0,29,251,0,0,36,1,0,0,50,180,2,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,92,180,2,0,43,251,0,0,36,1,0,0,92,180,2,0,1,0,0,0,36,0,0,0,34,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,1,0, 0,0,46,1,0,0,126,180,2,0,61,251,0,0,36,1,0,0,126,180,2,0,1,0,0,0,36,0,0,0,225,0,0,0,1,0,0,0,78,1,0,0,225,0,0,0,1,0,0,0,46,1,0,0,95,181,2,0,83,251,0,0,36,1,0,0,95,181,2,0,1,0,0,0,36,0,0,0,19,3,0,0,1,0,0,0,78,1,0,0,19,3,0,0,1,0,0,0,46,1,0,0,114,184,2,0, 94,251,0,0,36,1,0,0,114,184,2,0,1,0,0,0,36,0,0,0,25,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,1,0,0,0,46,1,0,0,139,184,2,0,116,251,0,0,36,1,0,0,139,184,2,0,1,0,0,0,36,0,0,0,170,0,0,0,1,0,0,0,78,1,0,0,170,0,0,0,1,0,0,0,46,1,0,0,53,185,2,0,132,251,0,0,36,1,0,0,53, 185,2,0,1,0,0,0,36,0,0,0,210,0,0,0,1,0,0,0,78,1,0,0,210,0,0,0,1,0,0,0,46,1,0,0,7,186,2,0,149,251,0,0,36,1,0,0,7,186,2,0,1,0,0,0,36,0,0,0,61,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,1,0,0,0,46,1,0,0,68,186,2,0,168,251,0,0,36,1,0,0,68,186,2,0,1,0,0,0,36,0,0,0,39, 1,0,0,1,0,0,0,78,1,0,0,39,1,0,0,1,0,0,0,46,1,0,0,107,187,2,0,182,251,0,0,36,1,0,0,107,187,2,0,1,0,0,0,36,0,0,0,34,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,1,0,0,0,46,1,0,0,141,187,2,0,194,251,0,0,36,1,0,0,141,187,2,0,1,0,0,0,36,0,0,0,133,0,0,0,1,0,0,0,78,1,0, 0,133,0,0,0,1,0,0,0,46,1,0,0,18,188,2,0,212,251,0,0,36,1,0,0,18,188,2,0,1,0,0,0,36,0,0,0,66,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,1,0,0,0,46,1,0,0,84,188,2,0,229,251,0,0,36,1,0,0,84,188,2,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,1,0,0,0,46,1,0, 0,130,188,2,0,249,251,0,0,36,1,0,0,130,188,2,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,149,188,2,0,12,252,0,0,36,1,0,0,149,188,2,0,1,0,0,0,36,0,0,0,38,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,1,0,0,0,46,1,0,0,187,188,2,0,31,252,0, 0,36,1,0,0,187,188,2,0,1,0,0,0,36,0,0,0,160,0,0,0,1,0,0,0,78,1,0,0,160,0,0,0,1,0,0,0,46,1,0,0,91,189,2,0,41,252,0,0,36,1,0,0,91,189,2,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,170,189,2,0,58,252,0,0,36,1,0,0,170,189,2,0,1, 0,0,0,36,0,0,0,254,0,0,0,1,0,0,0,78,1,0,0,254,0,0,0,1,0,0,0,46,1,0,0,168,190,2,0,75,252,0,0,36,1,0,0,168,190,2,0,1,0,0,0,36,0,0,0,70,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,1,0,0,0,46,1,0,0,238,190,2,0,104,252,0,0,36,1,0,0,238,190,2,0,1,0,0,0,36,0,0,0,234,0, 0,0,1,0,0,0,78,1,0,0,234,0,0,0,1,0,0,0,46,1,0,0,216,191,2,0,139,252,0,0,36,1,0,0,216,191,2,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,24,192,2,0,152,252,0,0,36,1,0,0,24,192,2,0,1,0,0,0,36,0,0,0,18,0,0,0,1,0,0,0,78,1,0,0,18, 0,0,0,1,0,0,0,46,1,0,0,42,192,2,0,166,252,0,0,36,1,0,0,42,192,2,0,1,0,0,0,36,0,0,0,189,0,0,0,1,0,0,0,78,1,0,0,189,0,0,0,1,0,0,0,46,1,0,0,231,192,2,0,193,252,0,0,36,1,0,0,231,192,2,0,1,0,0,0,36,0,0,0,88,1,0,0,1,0,0,0,78,1,0,0,88,1,0,0,1,0,0,0,46,1,0,0, 63,194,2,0,214,252,0,0,36,1,0,0,63,194,2,0,1,0,0,0,36,0,0,0,213,2,0,0,1,0,0,0,78,1,0,0,213,2,0,0,1,0,0,0,46,1,0,0,20,197,2,0,230,252,0,0,36,1,0,0,20,197,2,0,1,0,0,0,36,0,0,0,62,3,0,0,1,0,0,0,78,1,0,0,62,3,0,0,1,0,0,0,46,1,0,0,82,200,2,0,243,252,0,0,36, 1,0,0,82,200,2,0,1,0,0,0,36,0,0,0,66,10,0,0,1,0,0,0,78,1,0,0,66,10,0,0,3,253,0,0,38,9,0,0,152,149,9,0,23,253,0,0,38,9,0,0,156,149,9,0,44,253,0,0,32,9,0,0,0,0,0,0,57,253,0,0,38,9,0,0,104,160,9,0,74,253,0,0,38,10,0,0,4,186,9,0,87,253,0,0,38,10,0,0,8,186, 9,0,97,253,0,0,38,10,0,0,12,186,9,0,113,253,0,0,38,10,0,0,16,186,9,0,129,253,0,0,38,10,0,0,20,186,9,0,144,253,0,0,32,11,0,0,0,0,0,0,158,253,0,0,32,11,0,0,0,0,0,0,175,253,0,0,32,11,0,0,0,0,0,0,191,253,0,0,32,11,0,0,0,0,0,0,204,253,0,0,32,11,0,0,0,0,0, 0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,222,253,0,0,100,0,0,0,0,0,0,0,247,253,0,0,102,0,1,0,86,96,143,77,1,0,0,0,46,1,0,0,148,210,2,0,55,254,0,0,36,1,0,0,148,210,2,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,1,0,0,0,46,1,0, 0,235,210,2,0,69,254,0,0,36,1,0,0,235,210,2,0,1,0,0,0,36,0,0,0,75,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,1,0,0,0,46,1,0,0,54,211,2,0,84,254,0,0,36,1,0,0,54,211,2,0,1,0,0,0,36,0,0,0,68,0,0,0,1,0,0,0,78,1,0,0,68,0,0,0,1,0,0,0,46,1,0,0,122,211,2,0,97,254,0,0,36, 1,0,0,122,211,2,0,1,0,0,0,36,0,0,0,68,0,0,0,1,0,0,0,78,1,0,0,68,0,0,0,1,0,0,0,46,1,0,0,190,211,2,0,112,254,0,0,36,1,0,0,190,211,2,0,1,0,0,0,36,0,0,0,61,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,1,0,0,0,46,1,0,0,251,211,2,0,125,254,0,0,36,1,0,0,251,211,2,0,1,0, 0,0,36,0,0,0,34,2,0,0,1,0,0,0,78,1,0,0,34,2,0,0,1,0,0,0,46,1,0,0,29,214,2,0,141,254,0,0,36,1,0,0,29,214,2,0,1,0,0,0,36,0,0,0,90,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,1,0,0,0,46,1,0,0,119,214,2,0,151,254,0,0,36,1,0,0,119,214,2,0,1,0,0,0,36,0,0,0,118,0,0,0,1, 0,0,0,78,1,0,0,118,0,0,0,1,0,0,0,46,1,0,0,237,214,2,0,163,254,0,0,36,1,0,0,237,214,2,0,1,0,0,0,36,0,0,0,177,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,1,0,0,0,46,1,0,0,158,215,2,0,181,254,0,0,36,1,0,0,158,215,2,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0, 0,0,1,0,0,0,46,1,0,0,245,215,2,0,201,254,0,0,36,1,0,0,245,215,2,0,1,0,0,0,36,0,0,0,82,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,1,0,0,0,46,1,0,0,71,216,2,0,219,254,0,0,36,1,0,0,71,216,2,0,1,0,0,0,36,0,0,0,184,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,1,0,0,0,46,1,0,0,255, 216,2,0,233,254,0,0,36,1,0,0,255,216,2,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,98,217,2,0,4,255,0,0,36,1,0,0,98,217,2,0,1,0,0,0,36,0,0,0,110,2,0,0,1,0,0,0,78,1,0,0,110,2,0,0,1,0,0,0,46,1,0,0,208,219,2,0,20,255,0,0,36,1, 0,0,208,219,2,0,1,0,0,0,36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,1,0,0,0,46,1,0,0,50,220,2,0,36,255,0,0,36,1,0,0,50,220,2,0,1,0,0,0,36,0,0,0,214,0,0,0,1,0,0,0,78,1,0,0,214,0,0,0,1,0,0,0,46,1,0,0,8,221,2,0,53,255,0,0,36,1,0,0,8,221,2,0,1,0,0,0,36,0, 0,0,55,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,1,0,0,0,46,1,0,0,63,221,2,0,69,255,0,0,36,1,0,0,63,221,2,0,1,0,0,0,36,0,0,0,78,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,1,0,0,0,46,1,0,0,141,221,2,0,91,255,0,0,36,1,0,0,141,221,2,0,1,0,0,0,36,0,0,0,70,0,0,0,1,0,0,0,78,1, 0,0,70,0,0,0,1,0,0,0,46,1,0,0,211,221,2,0,102,255,0,0,36,1,0,0,211,221,2,0,1,0,0,0,36,0,0,0,253,0,0,0,1,0,0,0,78,1,0,0,253,0,0,0,1,0,0,0,46,1,0,0,208,222,2,0,118,255,0,0,36,1,0,0,208,222,2,0,1,0,0,0,36,0,0,0,76,0,0,0,1,0,0,0,78,1,0,0,76,0,0,0,1,0,0,0, 46,1,0,0,28,223,2,0,133,255,0,0,36,1,0,0,28,223,2,0,1,0,0,0,36,0,0,0,196,0,0,0,1,0,0,0,78,1,0,0,196,0,0,0,1,0,0,0,46,1,0,0,224,223,2,0,146,255,0,0,36,1,0,0,224,223,2,0,1,0,0,0,36,0,0,0,196,0,0,0,1,0,0,0,78,1,0,0,196,0,0,0,1,0,0,0,46,1,0,0,164,224,2,0, 159,255,0,0,36,1,0,0,164,224,2,0,1,0,0,0,36,0,0,0,61,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,1,0,0,0,46,1,0,0,225,224,2,0,187,255,0,0,36,1,0,0,225,224,2,0,1,0,0,0,36,0,0,0,236,0,0,0,1,0,0,0,78,1,0,0,236,0,0,0,1,0,0,0,46,1,0,0,205,225,2,0,206,255,0,0,36,1,0,0, 205,225,2,0,1,0,0,0,36,0,0,0,203,0,0,0,1,0,0,0,78,1,0,0,203,0,0,0,1,0,0,0,46,1,0,0,152,226,2,0,230,255,0,0,36,1,0,0,152,226,2,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,199,226,2,0,255,255,0,0,36,1,0,0,199,226,2,0,1,0,0,0, 36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,12,227,2,0,20,0,1,0,36,1,0,0,12,227,2,0,1,0,0,0,36,0,0,0,23,2,0,0,1,0,0,0,78,1,0,0,23,2,0,0,1,0,0,0,46,1,0,0,35,229,2,0,41,0,1,0,36,1,0,0,35,229,2,0,1,0,0,0,36,0,0,0,182,2,0,0,1,0,0,0,78,1, 0,0,182,2,0,0,1,0,0,0,46,1,0,0,217,231,2,0,58,0,1,0,36,1,0,0,217,231,2,0,1,0,0,0,36,0,0,0,84,2,0,0,1,0,0,0,78,1,0,0,84,2,0,0,1,0,0,0,46,1,0,0,45,234,2,0,80,0,1,0,36,1,0,0,45,234,2,0,1,0,0,0,36,0,0,0,111,1,0,0,1,0,0,0,78,1,0,0,111,1,0,0,1,0,0,0,46,1,0, 0,156,235,2,0,98,0,1,0,36,1,0,0,156,235,2,0,1,0,0,0,36,0,0,0,52,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,1,0,0,0,46,1,0,0,208,235,2,0,121,0,1,0,36,1,0,0,208,235,2,0,1,0,0,0,36,0,0,0,11,1,0,0,1,0,0,0,78,1,0,0,11,1,0,0,1,0,0,0,46,1,0,0,219,236,2,0,140,0,1,0,36, 1,0,0,219,236,2,0,1,0,0,0,36,0,0,0,28,2,0,0,1,0,0,0,78,1,0,0,28,2,0,0,1,0,0,0,46,1,0,0,247,238,2,0,156,0,1,0,36,1,0,0,247,238,2,0,1,0,0,0,36,0,0,0,127,0,0,0,1,0,0,0,78,1,0,0,127,0,0,0,1,0,0,0,46,1,0,0,118,239,2,0,171,0,1,0,36,1,0,0,118,239,2,0,1,0,0, 0,36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,244,239,2,0,189,0,1,0,36,1,0,0,244,239,2,0,1,0,0,0,36,0,0,0,168,0,0,0,1,0,0,0,78,1,0,0,168,0,0,0,1,0,0,0,46,1,0,0,156,240,2,0,204,0,1,0,36,1,0,0,156,240,2,0,1,0,0,0,36,0,0,0,139,1,0,0,1, 0,0,0,78,1,0,0,139,1,0,0,1,0,0,0,46,1,0,0,39,242,2,0,223,0,1,0,36,1,0,0,39,242,2,0,1,0,0,0,36,0,0,0,180,0,0,0,1,0,0,0,78,1,0,0,180,0,0,0,1,0,0,0,46,1,0,0,219,242,2,0,242,0,1,0,36,1,0,0,219,242,2,0,1,0,0,0,36,0,0,0,201,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0, 1,0,0,0,46,1,0,0,164,243,2,0,254,0,1,0,36,1,0,0,164,243,2,0,1,0,0,0,36,0,0,0,131,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,1,0,0,0,46,1,0,0,39,244,2,0,11,1,1,0,36,1,0,0,39,244,2,0,1,0,0,0,36,0,0,0,107,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,1,0,0,0,46,1,0,0,146,244, 2,0,33,1,1,0,36,1,0,0,146,244,2,0,1,0,0,0,36,0,0,0,141,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,1,0,0,0,46,1,0,0,31,245,2,0,56,1,1,0,36,1,0,0,31,245,2,0,1,0,0,0,36,0,0,0,9,4,0,0,1,0,0,0,78,1,0,0,9,4,0,0,1,0,0,0,46,1,0,0,40,249,2,0,68,1,1,0,36,1,0,0,40,249,2, 0,1,0,0,0,36,0,0,0,122,2,0,0,1,0,0,0,78,1,0,0,122,2,0,0,1,0,0,0,46,1,0,0,162,251,2,0,85,1,1,0,36,1,0,0,162,251,2,0,1,0,0,0,36,0,0,0,69,3,0,0,1,0,0,0,78,1,0,0,69,3,0,0,1,0,0,0,46,1,0,0,231,254,2,0,104,1,1,0,36,1,0,0,231,254,2,0,1,0,0,0,36,0,0,0,90,4,0, 0,1,0,0,0,78,1,0,0,90,4,0,0,1,0,0,0,46,1,0,0,65,3,3,0,129,1,1,0,36,1,0,0,65,3,3,0,1,0,0,0,36,0,0,0,95,3,0,0,1,0,0,0,78,1,0,0,95,3,0,0,1,0,0,0,46,1,0,0,160,6,3,0,148,1,1,0,36,1,0,0,160,6,3,0,1,0,0,0,36,0,0,0,56,11,0,0,1,0,0,0,78,1,0,0,56,11,0,0,1,0,0, 0,46,1,0,0,216,17,3,0,164,1,1,0,36,1,0,0,216,17,3,0,1,0,0,0,36,0,0,0,84,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,1,0,0,0,46,1,0,0,44,18,3,0,178,1,1,0,36,1,0,0,44,18,3,0,1,0,0,0,36,0,0,0,102,0,0,0,1,0,0,0,78,1,0,0,102,0,0,0,1,0,0,0,46,1,0,0,146,18,3,0,198,1,1, 0,36,1,0,0,146,18,3,0,1,0,0,0,36,0,0,0,72,5,0,0,1,0,0,0,78,1,0,0,72,5,0,0,1,0,0,0,46,1,0,0,218,23,3,0,216,1,1,0,36,1,0,0,218,23,3,0,1,0,0,0,36,0,0,0,156,0,0,0,1,0,0,0,78,1,0,0,156,0,0,0,1,0,0,0,46,1,0,0,118,24,3,0,237,1,1,0,36,1,0,0,118,24,3,0,1,0,0, 0,36,0,0,0,42,1,0,0,1,0,0,0,78,1,0,0,42,1,0,0,1,0,0,0,46,1,0,0,160,25,3,0,254,1,1,0,36,1,0,0,160,25,3,0,1,0,0,0,36,0,0,0,58,2,0,0,1,0,0,0,78,1,0,0,58,2,0,0,1,0,0,0,46,1,0,0,218,27,3,0,14,2,1,0,36,1,0,0,218,27,3,0,1,0,0,0,36,0,0,0,73,1,0,0,1,0,0,0,78, 1,0,0,73,1,0,0,1,0,0,0,46,1,0,0,35,29,3,0,40,2,1,0,36,1,0,0,35,29,3,0,1,0,0,0,36,0,0,0,128,8,0,0,1,0,0,0,78,1,0,0,128,8,0,0,1,0,0,0,46,1,0,0,163,37,3,0,52,2,1,0,36,1,0,0,163,37,3,0,1,0,0,0,36,0,0,0,138,0,0,0,1,0,0,0,78,1,0,0,138,0,0,0,1,0,0,0,46,1,0, 0,45,38,3,0,64,2,1,0,36,1,0,0,45,38,3,0,1,0,0,0,36,0,0,0,63,3,0,0,1,0,0,0,78,1,0,0,63,3,0,0,1,0,0,0,46,1,0,0,108,41,3,0,79,2,1,0,36,1,0,0,108,41,3,0,1,0,0,0,36,0,0,0,111,0,0,0,1,0,0,0,78,1,0,0,111,0,0,0,1,0,0,0,46,1,0,0,219,41,3,0,99,2,1,0,36,1,0,0,219, 41,3,0,1,0,0,0,36,0,0,0,84,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,1,0,0,0,46,1,0,0,47,42,3,0,113,2,1,0,36,1,0,0,47,42,3,0,1,0,0,0,36,0,0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,186,42,3,0,130,2,1,0,36,1,0,0,186,42,3,0,1,0,0,0,36,0,0,0,195,0, 0,0,1,0,0,0,78,1,0,0,195,0,0,0,1,0,0,0,46,1,0,0,125,43,3,0,147,2,1,0,36,1,0,0,125,43,3,0,1,0,0,0,36,0,0,0,255,1,0,0,1,0,0,0,78,1,0,0,255,1,0,0,1,0,0,0,46,1,0,0,124,45,3,0,165,2,1,0,36,1,0,0,124,45,3,0,1,0,0,0,36,0,0,0,166,0,0,0,1,0,0,0,78,1,0,0,166,0, 0,0,1,0,0,0,46,1,0,0,34,46,3,0,182,2,1,0,36,1,0,0,34,46,3,0,1,0,0,0,36,0,0,0,187,1,0,0,1,0,0,0,78,1,0,0,187,1,0,0,1,0,0,0,46,1,0,0,221,47,3,0,197,2,1,0,36,1,0,0,221,47,3,0,1,0,0,0,36,0,0,0,224,0,0,0,1,0,0,0,78,1,0,0,224,0,0,0,1,0,0,0,46,1,0,0,189,48, 3,0,210,2,1,0,36,1,0,0,189,48,3,0,1,0,0,0,36,0,0,0,120,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,1,0,0,0,46,1,0,0,53,49,3,0,229,2,1,0,36,1,0,0,53,49,3,0,1,0,0,0,36,0,0,0,65,0,0,0,1,0,0,0,78,1,0,0,65,0,0,0,1,0,0,0,46,1,0,0,118,49,3,0,249,2,1,0,36,1,0,0,118,49, 3,0,1,0,0,0,36,0,0,0,224,0,0,0,1,0,0,0,78,1,0,0,224,0,0,0,1,0,0,0,46,1,0,0,86,50,3,0,12,3,1,0,36,1,0,0,86,50,3,0,1,0,0,0,36,0,0,0,88,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,1,0,0,0,46,1,0,0,174,50,3,0,30,3,1,0,36,1,0,0,174,50,3,0,1,0,0,0,36,0,0,0,76,2,0,0,1, 0,0,0,78,1,0,0,76,2,0,0,1,0,0,0,46,1,0,0,250,52,3,0,54,3,1,0,36,1,0,0,250,52,3,0,1,0,0,0,36,0,0,0,121,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,1,0,0,0,46,1,0,0,115,53,3,0,81,3,1,0,36,1,0,0,115,53,3,0,1,0,0,0,36,0,0,0,118,1,0,0,1,0,0,0,78,1,0,0,118,1,0,0,1,0, 0,0,46,1,0,0,233,54,3,0,96,3,1,0,36,1,0,0,233,54,3,0,1,0,0,0,36,0,0,0,186,0,0,0,1,0,0,0,78,1,0,0,186,0,0,0,1,0,0,0,46,1,0,0,163,55,3,0,109,3,1,0,36,1,0,0,163,55,3,0,1,0,0,0,36,0,0,0,22,1,0,0,1,0,0,0,78,1,0,0,22,1,0,0,1,0,0,0,46,1,0,0,185,56,3,0,127,3, 1,0,36,1,0,0,185,56,3,0,1,0,0,0,36,0,0,0,231,1,0,0,1,0,0,0,78,1,0,0,231,1,0,0,1,0,0,0,46,1,0,0,160,58,3,0,143,3,1,0,36,1,0,0,160,58,3,0,1,0,0,0,36,0,0,0,96,1,0,0,1,0,0,0,78,1,0,0,96,1,0,0,1,0,0,0,46,1,0,0,0,60,3,0,155,3,1,0,36,1,0,0,0,60,3,0,1,0,0,0, 36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,1,0,0,0,46,1,0,0,98,60,3,0,177,3,1,0,36,1,0,0,98,60,3,0,1,0,0,0,36,0,0,0,96,1,0,0,1,0,0,0,78,1,0,0,96,1,0,0,1,0,0,0,46,1,0,0,194,61,3,0,193,3,1,0,36,1,0,0,194,61,3,0,1,0,0,0,36,0,0,0,135,0,0,0,1,0,0,0,78,1, 0,0,135,0,0,0,1,0,0,0,46,1,0,0,73,62,3,0,207,3,1,0,36,1,0,0,73,62,3,0,1,0,0,0,36,0,0,0,252,0,0,0,1,0,0,0,78,1,0,0,252,0,0,0,1,0,0,0,46,1,0,0,69,63,3,0,225,3,1,0,36,1,0,0,69,63,3,0,1,0,0,0,36,0,0,0,185,0,0,0,1,0,0,0,78,1,0,0,185,0,0,0,1,0,0,0,46,1,0,0, 254,63,3,0,243,3,1,0,36,1,0,0,254,63,3,0,1,0,0,0,36,0,0,0,72,1,0,0,1,0,0,0,78,1,0,0,72,1,0,0,1,0,0,0,46,1,0,0,70,65,3,0,4,4,1,0,36,1,0,0,70,65,3,0,1,0,0,0,36,0,0,0,252,2,0,0,1,0,0,0,78,1,0,0,252,2,0,0,1,0,0,0,46,1,0,0,66,68,3,0,20,4,1,0,36,1,0,0,66,68, 3,0,1,0,0,0,36,0,0,0,97,6,0,0,1,0,0,0,78,1,0,0,97,6,0,0,1,0,0,0,46,1,0,0,163,74,3,0,33,4,1,0,36,1,0,0,163,74,3,0,1,0,0,0,36,0,0,0,111,0,0,0,1,0,0,0,78,1,0,0,111,0,0,0,1,0,0,0,46,1,0,0,18,75,3,0,52,4,1,0,36,1,0,0,18,75,3,0,1,0,0,0,36,0,0,0,58,0,0,0,1, 0,0,0,78,1,0,0,58,0,0,0,1,0,0,0,46,1,0,0,76,75,3,0,62,4,1,0,36,1,0,0,76,75,3,0,1,0,0,0,36,0,0,0,56,1,0,0,1,0,0,0,78,1,0,0,56,1,0,0,1,0,0,0,46,1,0,0,132,76,3,0,79,4,1,0,36,1,0,0,132,76,3,0,1,0,0,0,36,0,0,0,193,1,0,0,1,0,0,0,78,1,0,0,193,1,0,0,1,0,0,0, 46,1,0,0,69,78,3,0,94,4,1,0,36,1,0,0,69,78,3,0,1,0,0,0,36,0,0,0,25,1,0,0,1,0,0,0,78,1,0,0,25,1,0,0,1,0,0,0,46,1,0,0,94,79,3,0,107,4,1,0,36,1,0,0,94,79,3,0,1,0,0,0,36,0,0,0,74,0,0,0,1,0,0,0,78,1,0,0,74,0,0,0,1,0,0,0,46,1,0,0,168,79,3,0,124,4,1,0,36,1, 0,0,168,79,3,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,215,79,3,0,141,4,1,0,36,1,0,0,215,79,3,0,1,0,0,0,36,0,0,0,36,7,0,0,1,0,0,0,78,1,0,0,36,7,0,0,157,4,1,0,38,9,0,0,160,149,9,0,169,4,1,0,32,9,0,0,0,0,0,0,200,4,1,0,38,10, 0,0,24,186,9,0,214,4,1,0,38,10,0,0,28,186,9,0,230,4,1,0,38,10,0,0,32,186,9,0,241,4,1,0,38,10,0,0,36,186,9,0,2,5,1,0,38,10,0,0,40,186,9,0,17,5,1,0,38,10,0,0,44,186,9,0,33,5,1,0,38,10,0,0,48,186,9,0,46,5,1,0,38,10,0,0,52,186,9,0,66,5,1,0,38,10,0,0,56,186, 9,0,90,5,1,0,38,10,0,0,60,186,9,0,106,5,1,0,38,10,0,0,64,186,9,0,128,5,1,0,38,10,0,0,68,186,9,0,145,5,1,0,38,10,0,0,72,186,9,0,165,5,1,0,38,10,0,0,76,186,9,0,183,5,1,0,38,10,0,0,80,186,9,0,213,5,1,0,38,10,0,0,88,186,9,0,233,5,1,0,38,10,0,0,96,186,9,0, 245,5,1,0,38,10,0,0,100,186,9,0,1,6,1,0,38,10,0,0,104,186,9,0,21,6,1,0,38,10,0,0,108,186,9,0,41,6,1,0,38,10,0,0,112,186,9,0,64,6,1,0,38,10,0,0,116,186,9,0,80,6,1,0,38,10,0,0,120,186,9,0,93,6,1,0,38,10,0,0,124,186,9,0,107,6,1,0,38,10,0,0,128,186,9,0,126, 6,1,0,38,10,0,0,132,186,9,0,147,6,1,0,38,10,0,0,136,186,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,168,6,1,0,100,0,0,0,0,0,0,0,192,6,1,0,102,0,1,0,86,96,143,77,1,0,0,0,46,1,0,0,251,86,3,0,255,6,1,0,36,1,0,0,251,86,3,0,1,0,0,0,36,0,0,0, 80,1,0,0,1,0,0,0,78,1,0,0,80,1,0,0,1,0,0,0,46,1,0,0,75,88,3,0,10,7,1,0,36,1,0,0,75,88,3,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,144,88,3,0,30,7,1,0,36,1,0,0,144,88,3,0,1,0,0,0,36,0,0,0,19,3,0,0,1,0,0,0,78,1,0,0,19,3,0,0, 1,0,0,0,46,1,0,0,163,91,3,0,44,7,1,0,36,1,0,0,163,91,3,0,1,0,0,0,36,0,0,0,160,0,0,0,1,0,0,0,78,1,0,0,160,0,0,0,1,0,0,0,46,1,0,0,67,92,3,0,57,7,1,0,36,1,0,0,67,92,3,0,1,0,0,0,36,0,0,0,89,0,0,0,1,0,0,0,78,1,0,0,89,0,0,0,1,0,0,0,46,1,0,0,156,92,3,0,71,7, 1,0,36,1,0,0,156,92,3,0,1,0,0,0,36,0,0,0,144,0,0,0,1,0,0,0,78,1,0,0,144,0,0,0,1,0,0,0,46,1,0,0,44,93,3,0,83,7,1,0,36,1,0,0,44,93,3,0,1,0,0,0,36,0,0,0,66,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,1,0,0,0,46,1,0,0,110,93,3,0,100,7,1,0,36,1,0,0,110,93,3,0,1,0,0,0, 36,0,0,0,93,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,1,0,0,0,46,1,0,0,203,93,3,0,118,7,1,0,36,1,0,0,203,93,3,0,1,0,0,0,36,0,0,0,37,1,0,0,1,0,0,0,78,1,0,0,37,1,0,0,1,0,0,0,46,1,0,0,240,94,3,0,131,7,1,0,36,1,0,0,240,94,3,0,1,0,0,0,36,0,0,0,190,0,0,0,1,0,0,0,78, 1,0,0,190,0,0,0,1,0,0,0,46,1,0,0,174,95,3,0,145,7,1,0,36,1,0,0,174,95,3,0,1,0,0,0,36,0,0,0,159,0,0,0,1,0,0,0,78,1,0,0,159,0,0,0,1,0,0,0,46,1,0,0,77,96,3,0,157,7,1,0,36,1,0,0,77,96,3,0,1,0,0,0,36,0,0,0,90,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,1,0,0,0,46,1,0, 0,167,96,3,0,172,7,1,0,36,1,0,0,167,96,3,0,1,0,0,0,36,0,0,0,38,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,1,0,0,0,46,1,0,0,205,96,3,0,184,7,1,0,36,1,0,0,205,96,3,0,1,0,0,0,36,0,0,0,197,0,0,0,1,0,0,0,78,1,0,0,197,0,0,0,1,0,0,0,46,1,0,0,146,97,3,0,201,7,1,0,36,1, 0,0,146,97,3,0,1,0,0,0,36,0,0,0,232,0,0,0,1,0,0,0,78,1,0,0,232,0,0,0,1,0,0,0,46,1,0,0,122,98,3,0,217,7,1,0,36,1,0,0,122,98,3,0,1,0,0,0,36,0,0,0,185,1,0,0,1,0,0,0,78,1,0,0,185,1,0,0,1,0,0,0,46,1,0,0,51,100,3,0,238,7,1,0,36,1,0,0,51,100,3,0,1,0,0,0,36, 0,0,0,182,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,1,0,0,0,46,1,0,0,233,100,3,0,0,8,1,0,36,1,0,0,233,100,3,0,1,0,0,0,36,0,0,0,232,0,0,0,1,0,0,0,78,1,0,0,232,0,0,0,1,0,0,0,46,1,0,0,209,101,3,0,17,8,1,0,36,1,0,0,209,101,3,0,1,0,0,0,36,0,0,0,185,1,0,0,1,0,0,0,78, 1,0,0,185,1,0,0,1,0,0,0,46,1,0,0,138,103,3,0,39,8,1,0,36,1,0,0,138,103,3,0,1,0,0,0,36,0,0,0,162,0,0,0,1,0,0,0,78,1,0,0,162,0,0,0,1,0,0,0,46,1,0,0,44,104,3,0,53,8,1,0,36,1,0,0,44,104,3,0,1,0,0,0,36,0,0,0,52,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,1,0,0,0,46,1, 0,0,96,104,3,0,67,8,1,0,36,1,0,0,96,104,3,0,1,0,0,0,36,0,0,0,52,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,1,0,0,0,46,1,0,0,148,104,3,0,81,8,1,0,36,1,0,0,148,104,3,0,1,0,0,0,36,0,0,0,197,0,0,0,1,0,0,0,78,1,0,0,197,0,0,0,1,0,0,0,46,1,0,0,89,105,3,0,95,8,1,0,36,1, 0,0,89,105,3,0,1,0,0,0,36,0,0,0,215,0,0,0,1,0,0,0,78,1,0,0,215,0,0,0,1,0,0,0,46,1,0,0,48,106,3,0,109,8,1,0,36,1,0,0,48,106,3,0,1,0,0,0,36,0,0,0,130,1,0,0,1,0,0,0,78,1,0,0,130,1,0,0,1,0,0,0,46,1,0,0,178,107,3,0,126,8,1,0,36,1,0,0,178,107,3,0,1,0,0,0,36, 0,0,0,130,1,0,0,1,0,0,0,78,1,0,0,130,1,0,0,1,0,0,0,46,1,0,0,52,109,3,0,143,8,1,0,36,1,0,0,52,109,3,0,1,0,0,0,36,0,0,0,132,1,0,0,1,0,0,0,78,1,0,0,132,1,0,0,1,0,0,0,46,1,0,0,184,110,3,0,160,8,1,0,36,1,0,0,184,110,3,0,1,0,0,0,36,0,0,0,132,1,0,0,1,0,0,0, 78,1,0,0,132,1,0,0,1,0,0,0,46,1,0,0,60,112,3,0,177,8,1,0,36,1,0,0,60,112,3,0,1,0,0,0,36,0,0,0,94,0,0,0,1,0,0,0,78,1,0,0,94,0,0,0,1,0,0,0,46,1,0,0,154,112,3,0,193,8,1,0,36,1,0,0,154,112,3,0,1,0,0,0,36,0,0,0,94,0,0,0,1,0,0,0,78,1,0,0,94,0,0,0,1,0,0,0,46, 1,0,0,248,112,3,0,209,8,1,0,36,1,0,0,248,112,3,0,1,0,0,0,36,0,0,0,5,1,0,0,1,0,0,0,78,1,0,0,5,1,0,0,1,0,0,0,46,1,0,0,253,113,3,0,220,8,1,0,36,1,0,0,253,113,3,0,1,0,0,0,36,0,0,0,5,1,0,0,1,0,0,0,78,1,0,0,5,1,0,0,1,0,0,0,46,1,0,0,2,115,3,0,231,8,1,0,36,1, 0,0,2,115,3,0,1,0,0,0,36,0,0,0,175,1,0,0,1,0,0,0,78,1,0,0,175,1,0,0,1,0,0,0,46,1,0,0,177,116,3,0,245,8,1,0,36,1,0,0,177,116,3,0,1,0,0,0,36,0,0,0,28,16,0,0,1,0,0,0,78,1,0,0,28,16,0,0,1,0,0,0,46,1,0,0,205,132,3,0,0,9,1,0,36,1,0,0,205,132,3,0,1,0,0,0,36, 0,0,0,112,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,1,0,0,0,46,1,0,0,61,133,3,0,17,9,1,0,36,1,0,0,61,133,3,0,1,0,0,0,36,0,0,0,40,2,0,0,1,0,0,0,78,1,0,0,40,2,0,0,1,0,0,0,46,1,0,0,101,135,3,0,32,9,1,0,36,1,0,0,101,135,3,0,1,0,0,0,36,0,0,0,162,0,0,0,1,0,0,0,78,1, 0,0,162,0,0,0,1,0,0,0,46,1,0,0,7,136,3,0,48,9,1,0,36,1,0,0,7,136,3,0,1,0,0,0,36,0,0,0,19,1,0,0,1,0,0,0,78,1,0,0,19,1,0,0,1,0,0,0,46,1,0,0,26,137,3,0,62,9,1,0,36,1,0,0,26,137,3,0,1,0,0,0,36,0,0,0,73,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,1,0,0,0,46,1,0,0,99, 137,3,0,78,9,1,0,36,1,0,0,99,137,3,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,185,137,3,0,92,9,1,0,36,1,0,0,185,137,3,0,1,0,0,0,36,0,0,0,92,2,0,0,1,0,0,0,78,1,0,0,92,2,0,0,1,0,0,0,46,1,0,0,21,140,3,0,106,9,1,0,36,1,0,0,21, 140,3,0,1,0,0,0,36,0,0,0,143,1,0,0,1,0,0,0,78,1,0,0,143,1,0,0,1,0,0,0,46,1,0,0,164,141,3,0,119,9,1,0,36,1,0,0,164,141,3,0,1,0,0,0,36,0,0,0,93,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,1,0,0,0,46,1,0,0,1,142,3,0,136,9,1,0,36,1,0,0,1,142,3,0,1,0,0,0,36,0,0,0,115, 2,0,0,1,0,0,0,78,1,0,0,115,2,0,0,151,9,1,0,32,9,0,0,0,0,0,0,173,9,1,0,38,10,0,0,140,186,9,0,189,9,1,0,38,10,0,0,144,186,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,205,9,1,0,100,0,0,0,0,0,0,0,234,9,1,0,102,0,1,0,87,96,143,77,1,0,0,0,46, 1,0,0,116,144,3,0,46,10,1,0,36,1,0,0,116,144,3,0,1,0,0,0,36,0,0,0,77,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,1,0,0,0,46,1,0,0,193,144,3,0,62,10,1,0,36,1,0,0,193,144,3,0,1,0,0,0,36,0,0,0,63,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,1,0,0,0,46,1,0,0,0,145,3,0,79,10,1,0, 36,1,0,0,0,145,3,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,19,145,3,0,96,10,1,0,36,1,0,0,19,145,3,0,1,0,0,0,36,0,0,0,141,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,1,0,0,0,46,1,0,0,160,145,3,0,117,10,1,0,36,1,0,0,160,145,3,0,1,0,0, 0,36,0,0,0,53,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,1,0,0,0,46,1,0,0,213,145,3,0,138,10,1,0,36,1,0,0,213,145,3,0,1,0,0,0,36,0,0,0,62,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,1,0,0,0,46,1,0,0,19,146,3,0,158,10,1,0,36,1,0,0,19,146,3,0,1,0,0,0,36,0,0,0,175,0,0,0,1,0,0, 0,78,1,0,0,175,0,0,0,178,10,1,0,38,10,0,0,148,186,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,196,10,1,0,100,0,0,0,0,0,0,0,220,10,1,0,102,0,1,0,87,96,143,77,1,0,0,0,46,1,0,0,194,146,3,0,27,11,1,0,36,1,0,0,194,146,3,0,1,0,0,0,36,0,0,0,210, 0,0,0,1,0,0,0,78,1,0,0,210,0,0,0,1,0,0,0,46,1,0,0,148,147,3,0,47,11,1,0,36,1,0,0,148,147,3,0,1,0,0,0,36,0,0,0,67,3,0,0,1,0,0,0,78,1,0,0,67,3,0,0,1,0,0,0,46,1,0,0,215,150,3,0,64,11,1,0,36,1,0,0,215,150,3,0,1,0,0,0,36,0,0,0,86,2,0,0,1,0,0,0,78,1,0,0,86, 2,0,0,1,0,0,0,46,1,0,0,45,153,3,0,82,11,1,0,36,1,0,0,45,153,3,0,1,0,0,0,36,0,0,0,13,1,0,0,1,0,0,0,78,1,0,0,13,1,0,0,1,0,0,0,46,1,0,0,58,154,3,0,101,11,1,0,36,1,0,0,58,154,3,0,1,0,0,0,36,0,0,0,167,1,0,0,1,0,0,0,78,1,0,0,167,1,0,0,1,0,0,0,46,1,0,0,225, 155,3,0,121,11,1,0,36,1,0,0,225,155,3,0,1,0,0,0,36,0,0,0,153,1,0,0,1,0,0,0,78,1,0,0,153,1,0,0,1,0,0,0,46,1,0,0,122,157,3,0,137,11,1,0,36,1,0,0,122,157,3,0,1,0,0,0,36,0,0,0,12,1,0,0,1,0,0,0,78,1,0,0,12,1,0,0,1,0,0,0,46,1,0,0,134,158,3,0,157,11,1,0,36, 1,0,0,134,158,3,0,1,0,0,0,36,0,0,0,225,0,0,0,1,0,0,0,78,1,0,0,225,0,0,0,1,0,0,0,46,1,0,0,103,159,3,0,170,11,1,0,36,1,0,0,103,159,3,0,1,0,0,0,36,0,0,0,113,0,0,0,1,0,0,0,78,1,0,0,113,0,0,0,1,0,0,0,46,1,0,0,216,159,3,0,186,11,1,0,36,1,0,0,216,159,3,0,1, 0,0,0,36,0,0,0,230,1,0,0,1,0,0,0,78,1,0,0,230,1,0,0,1,0,0,0,46,1,0,0,190,161,3,0,199,11,1,0,36,1,0,0,190,161,3,0,1,0,0,0,36,0,0,0,93,2,0,0,1,0,0,0,78,1,0,0,93,2,0,0,1,0,0,0,46,1,0,0,27,164,3,0,218,11,1,0,36,1,0,0,27,164,3,0,1,0,0,0,36,0,0,0,206,1,0,0, 1,0,0,0,78,1,0,0,206,1,0,0,1,0,0,0,46,1,0,0,233,165,3,0,233,11,1,0,36,1,0,0,233,165,3,0,1,0,0,0,36,0,0,0,226,0,0,0,1,0,0,0,78,1,0,0,226,0,0,0,1,0,0,0,46,1,0,0,203,166,3,0,245,11,1,0,36,1,0,0,203,166,3,0,1,0,0,0,36,0,0,0,125,2,0,0,1,0,0,0,78,1,0,0,125, 2,0,0,1,0,0,0,46,1,0,0,72,169,3,0,2,12,1,0,36,1,0,0,72,169,3,0,1,0,0,0,36,0,0,0,62,3,0,0,1,0,0,0,78,1,0,0,62,3,0,0,1,0,0,0,46,1,0,0,134,172,3,0,15,12,1,0,36,1,0,0,134,172,3,0,1,0,0,0,36,0,0,0,124,3,0,0,1,0,0,0,78,1,0,0,124,3,0,0,1,0,0,0,46,1,0,0,2,176, 3,0,29,12,1,0,36,1,0,0,2,176,3,0,1,0,0,0,36,0,0,0,91,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,1,0,0,0,46,1,0,0,93,176,3,0,43,12,1,0,36,1,0,0,93,176,3,0,1,0,0,0,36,0,0,0,97,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,1,0,0,0,46,1,0,0,190,176,3,0,60,12,1,0,36,1,0,0,190,176, 3,0,1,0,0,0,36,0,0,0,60,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,1,0,0,0,46,1,0,0,250,176,3,0,77,12,1,0,36,1,0,0,250,176,3,0,1,0,0,0,36,0,0,0,204,0,0,0,1,0,0,0,78,1,0,0,204,0,0,0,1,0,0,0,46,1,0,0,198,177,3,0,92,12,1,0,36,1,0,0,198,177,3,0,1,0,0,0,36,0,0,0,80, 0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,1,0,0,0,46,1,0,0,22,178,3,0,105,12,1,0,36,1,0,0,22,178,3,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,69,178,3,0,119,12,1,0,36,1,0,0,69,178,3,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0, 0,0,1,0,0,0,46,1,0,0,116,178,3,0,131,12,1,0,36,1,0,0,116,178,3,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,163,178,3,0,145,12,1,0,36,1,0,0,163,178,3,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,196, 178,3,0,158,12,1,0,36,1,0,0,196,178,3,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,229,178,3,0,174,12,1,0,36,1,0,0,229,178,3,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,6,179,3,0,188,12,1,0,36,1,0, 0,6,179,3,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,53,179,3,0,206,12,1,0,36,1,0,0,53,179,3,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,100,179,3,0,225,12,1,0,36,1,0,0,100,179,3,0,1,0,0,0,36,0,0, 0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,169,179,3,0,238,12,1,0,36,1,0,0,169,179,3,0,1,0,0,0,36,0,0,0,21,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,1,0,0,0,46,1,0,0,190,179,3,0,4,13,1,0,36,1,0,0,190,179,3,0,1,0,0,0,36,0,0,0,21,0,0,0,1,0,0,0,78,1,0, 0,21,0,0,0,1,0,0,0,46,1,0,0,211,179,3,0,26,13,1,0,36,1,0,0,211,179,3,0,1,0,0,0,36,0,0,0,84,8,0,0,1,0,0,0,78,1,0,0,84,8,0,0,1,0,0,0,46,1,0,0,39,188,3,0,40,13,1,0,36,1,0,0,39,188,3,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0, 74,188,3,0,61,13,1,0,36,1,0,0,74,188,3,0,1,0,0,0,36,0,0,0,41,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,1,0,0,0,46,1,0,0,115,188,3,0,73,13,1,0,36,1,0,0,115,188,3,0,1,0,0,0,36,0,0,0,41,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,1,0,0,0,46,1,0,0,156,188,3,0,84,13,1,0,36,1,0, 0,156,188,3,0,1,0,0,0,36,0,0,0,59,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,1,0,0,0,46,1,0,0,215,188,3,0,95,13,1,0,36,1,0,0,215,188,3,0,1,0,0,0,36,0,0,0,51,11,0,0,1,0,0,0,78,1,0,0,51,11,0,0,111,13,1,0,38,10,0,0,152,186,9,0,125,13,1,0,38,10,0,0,156,186,9,0,143, 13,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,166,13,1,0,100,0,0,0,0,0,0,0,192,13,1,0,102,0,1,0,87,96,143,77,1,0,0,0,46,1,0,0,10,200,3,0,1,14,1,0,36,1,0,0,10,200,3,0,1,0,0,0,36,0,0,0,84,1,0,0,1,0,0,0,78,1,0,0,84,1,0, 0,1,0,0,0,46,1,0,0,94,201,3,0,22,14,1,0,36,1,0,0,94,201,3,0,1,0,0,0,36,0,0,0,159,2,0,0,1,0,0,0,78,1,0,0,159,2,0,0,1,0,0,0,46,1,0,0,253,203,3,0,40,14,1,0,36,1,0,0,253,203,3,0,1,0,0,0,36,0,0,0,250,1,0,0,1,0,0,0,78,1,0,0,250,1,0,0,1,0,0,0,46,1,0,0,247,205, 3,0,59,14,1,0,36,1,0,0,247,205,3,0,1,0,0,0,36,0,0,0,223,0,0,0,1,0,0,0,78,1,0,0,223,0,0,0,1,0,0,0,46,1,0,0,214,206,3,0,79,14,1,0,36,1,0,0,214,206,3,0,1,0,0,0,36,0,0,0,33,1,0,0,1,0,0,0,78,1,0,0,33,1,0,0,1,0,0,0,46,1,0,0,247,207,3,0,100,14,1,0,36,1,0,0, 247,207,3,0,1,0,0,0,36,0,0,0,161,1,0,0,1,0,0,0,78,1,0,0,161,1,0,0,1,0,0,0,46,1,0,0,152,209,3,0,117,14,1,0,36,1,0,0,152,209,3,0,1,0,0,0,36,0,0,0,202,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,1,0,0,0,46,1,0,0,98,210,3,0,138,14,1,0,36,1,0,0,98,210,3,0,1,0,0,0,36, 0,0,0,225,0,0,0,1,0,0,0,78,1,0,0,225,0,0,0,1,0,0,0,46,1,0,0,67,211,3,0,152,14,1,0,36,1,0,0,67,211,3,0,1,0,0,0,36,0,0,0,105,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,1,0,0,0,46,1,0,0,172,211,3,0,169,14,1,0,36,1,0,0,172,211,3,0,1,0,0,0,36,0,0,0,44,2,0,0,1,0,0,0, 78,1,0,0,44,2,0,0,1,0,0,0,46,1,0,0,216,213,3,0,183,14,1,0,36,1,0,0,216,213,3,0,1,0,0,0,36,0,0,0,16,1,0,0,1,0,0,0,78,1,0,0,16,1,0,0,1,0,0,0,46,1,0,0,232,214,3,0,204,14,1,0,36,1,0,0,232,214,3,0,1,0,0,0,36,0,0,0,239,1,0,0,1,0,0,0,78,1,0,0,239,1,0,0,1,0, 0,0,46,1,0,0,215,216,3,0,226,14,1,0,36,1,0,0,215,216,3,0,1,0,0,0,36,0,0,0,144,2,0,0,1,0,0,0,78,1,0,0,144,2,0,0,1,0,0,0,46,1,0,0,103,219,3,0,246,14,1,0,36,1,0,0,103,219,3,0,1,0,0,0,36,0,0,0,188,1,0,0,1,0,0,0,78,1,0,0,188,1,0,0,1,0,0,0,46,1,0,0,35,221, 3,0,3,15,1,0,36,1,0,0,35,221,3,0,1,0,0,0,36,0,0,0,73,1,0,0,1,0,0,0,78,1,0,0,73,1,0,0,1,0,0,0,46,1,0,0,108,222,3,0,17,15,1,0,36,1,0,0,108,222,3,0,1,0,0,0,36,0,0,0,229,1,0,0,1,0,0,0,78,1,0,0,229,1,0,0,1,0,0,0,46,1,0,0,81,224,3,0,33,15,1,0,36,1,0,0,81,224, 3,0,1,0,0,0,36,0,0,0,181,1,0,0,1,0,0,0,78,1,0,0,181,1,0,0,1,0,0,0,46,1,0,0,6,226,3,0,49,15,1,0,36,1,0,0,6,226,3,0,1,0,0,0,36,0,0,0,43,1,0,0,1,0,0,0,78,1,0,0,43,1,0,0,1,0,0,0,46,1,0,0,49,227,3,0,64,15,1,0,36,1,0,0,49,227,3,0,1,0,0,0,36,0,0,0,153,0,0,0, 1,0,0,0,78,1,0,0,153,0,0,0,1,0,0,0,46,1,0,0,202,227,3,0,82,15,1,0,36,1,0,0,202,227,3,0,1,0,0,0,36,0,0,0,115,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,1,0,0,0,46,1,0,0,61,228,3,0,96,15,1,0,36,1,0,0,61,228,3,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0, 1,0,0,0,46,1,0,0,108,228,3,0,111,15,1,0,36,1,0,0,108,228,3,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,155,228,3,0,124,15,1,0,36,1,0,0,155,228,3,0,1,0,0,0,36,0,0,0,109,0,0,0,1,0,0,0,78,1,0,0,109,0,0,0,1,0,0,0,46,1,0,0,8,229, 3,0,139,15,1,0,36,1,0,0,8,229,3,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,55,229,3,0,154,15,1,0,36,1,0,0,55,229,3,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,88,229,3,0,168,15,1,0,36,1,0,0,88,229, 3,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,121,229,3,0,185,15,1,0,36,1,0,0,121,229,3,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,154,229,3,0,200,15,1,0,36,1,0,0,154,229,3,0,1,0,0,0,36,0,0,0,47, 0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,201,229,3,0,219,15,1,0,36,1,0,0,201,229,3,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,248,229,3,0,239,15,1,0,36,1,0,0,248,229,3,0,1,0,0,0,36,0,0,0,66,0,0,0,1,0,0,0,78,1,0,0,66, 0,0,0,1,0,0,0,46,1,0,0,58,230,3,0,252,15,1,0,36,1,0,0,58,230,3,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,139,230,3,0,9,16,1,0,36,1,0,0,139,230,3,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,208,230, 3,0,23,16,1,0,36,1,0,0,208,230,3,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,0,231,3,0,39,16,1,0,36,1,0,0,0,231,3,0,1,0,0,0,36,0,0,0,109,1,0,0,1,0,0,0,78,1,0,0,109,1,0,0,1,0,0,0,46,1,0,0,109,232,3,0,54,16,1,0,36,1,0,0,109,232, 3,0,1,0,0,0,36,0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,201,232,3,0,72,16,1,0,36,1,0,0,201,232,3,0,1,0,0,0,36,0,0,0,23,9,0,0,1,0,0,0,78,1,0,0,23,9,0,0,1,0,0,0,46,1,0,0,224,241,3,0,85,16,1,0,36,1,0,0,224,241,3,0,1,0,0,0,36,0,0,0,35,0, 0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,3,242,3,0,106,16,1,0,36,1,0,0,3,242,3,0,1,0,0,0,36,0,0,0,59,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,1,0,0,0,46,1,0,0,62,242,3,0,120,16,1,0,36,1,0,0,62,242,3,0,1,0,0,0,36,0,0,0,105,6,0,0,1,0,0,0,78,1,0,0,105,6,0, 0,137,16,1,0,38,10,0,0,160,186,9,0,152,16,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,176,16,1,0,100,0,0,0,0,0,0,0,197,16,1,0,102,0,1,0,88,96,143,77,1,0,0,0,46,1,0,0,167,248,3,0,1,17,1,0,36,1,0,0,167,248,3,0,1,0,0,0,36, 0,0,0,132,0,0,0,1,0,0,0,78,1,0,0,132,0,0,0,1,0,0,0,46,1,0,0,43,249,3,0,13,17,1,0,36,1,0,0,43,249,3,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,65,249,3,0,26,17,1,0,36,1,0,0,65,249,3,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1, 0,0,29,0,0,0,1,0,0,0,46,1,0,0,94,249,3,0,42,17,1,0,36,1,0,0,94,249,3,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,123,249,3,0,56,17,1,0,36,1,0,0,123,249,3,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0, 0,152,249,3,0,71,17,1,0,36,1,0,0,152,249,3,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,1,0,0,0,46,1,0,0,195,249,3,0,84,17,1,0,36,1,0,0,195,249,3,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,1,0,0,0,46,1,0,0,238,249,3,0,101,17,1,0,36, 1,0,0,238,249,3,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,1,0,0,0,46,1,0,0,28,250,3,0,114,17,1,0,36,1,0,0,28,250,3,0,1,0,0,0,36,0,0,0,58,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,1,0,0,0,46,1,0,0,86,250,3,0,128,17,1,0,36,1,0,0,86,250,3,0,1,0,0,0,36, 0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,108,250,3,0,145,17,1,0,36,1,0,0,108,250,3,0,1,0,0,0,36,0,0,0,114,0,0,0,1,0,0,0,78,1,0,0,114,0,0,0,1,0,0,0,46,1,0,0,222,250,3,0,161,17,1,0,36,1,0,0,222,250,3,0,1,0,0,0,36,0,0,0,133,0,0,0,1,0,0, 0,78,1,0,0,133,0,0,0,1,0,0,0,46,1,0,0,99,251,3,0,173,17,1,0,36,1,0,0,99,251,3,0,1,0,0,0,36,0,0,0,197,0,0,0,1,0,0,0,78,1,0,0,197,0,0,0,1,0,0,0,46,1,0,0,40,252,3,0,190,17,1,0,36,1,0,0,40,252,3,0,1,0,0,0,36,0,0,0,236,2,0,0,1,0,0,0,78,1,0,0,236,2,0,0,1,0, 0,0,46,1,0,0,20,255,3,0,208,17,1,0,36,1,0,0,20,255,3,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,62,255,3,0,229,17,1,0,36,1,0,0,62,255,3,0,1,0,0,0,36,0,0,0,2,1,0,0,1,0,0,0,78,1,0,0,2,1,0,0,1,0,0,0,46,1,0,0,64,0,4,0,244,17,1, 0,36,1,0,0,64,0,4,0,1,0,0,0,36,0,0,0,163,1,0,0,1,0,0,0,78,1,0,0,163,1,0,0,1,0,0,0,46,1,0,0,227,1,4,0,2,18,1,0,36,1,0,0,227,1,4,0,1,0,0,0,36,0,0,0,147,0,0,0,1,0,0,0,78,1,0,0,147,0,0,0,1,0,0,0,46,1,0,0,118,2,4,0,15,18,1,0,36,1,0,0,118,2,4,0,1,0,0,0,36, 0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,140,2,4,0,29,18,1,0,36,1,0,0,140,2,4,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,169,2,4,0,46,18,1,0,36,1,0,0,169,2,4,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29, 0,0,0,1,0,0,0,46,1,0,0,198,2,4,0,61,18,1,0,36,1,0,0,198,2,4,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,227,2,4,0,77,18,1,0,36,1,0,0,227,2,4,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,1,0,0,0,46,1,0,0,14,3,4,0,91, 18,1,0,36,1,0,0,14,3,4,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,1,0,0,0,46,1,0,0,57,3,4,0,109,18,1,0,36,1,0,0,57,3,4,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,1,0,0,0,46,1,0,0,103,3,4,0,123,18,1,0,36,1,0,0,103,3,4,0,1,0,0,0,36, 0,0,0,58,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,1,0,0,0,46,1,0,0,161,3,4,0,138,18,1,0,36,1,0,0,161,3,4,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,183,3,4,0,156,18,1,0,36,1,0,0,183,3,4,0,1,0,0,0,36,0,0,0,164,0,0,0,1,0,0,0,78,1,0,0, 164,0,0,0,1,0,0,0,46,1,0,0,91,4,4,0,173,18,1,0,36,1,0,0,91,4,4,0,1,0,0,0,36,0,0,0,158,0,0,0,1,0,0,0,78,1,0,0,158,0,0,0,1,0,0,0,46,1,0,0,249,4,4,0,191,18,1,0,36,1,0,0,249,4,4,0,1,0,0,0,36,0,0,0,131,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,1,0,0,0,46,1,0,0,124, 5,4,0,220,18,1,0,36,1,0,0,124,5,4,0,1,0,0,0,36,0,0,0,151,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,1,0,0,0,46,1,0,0,19,6,4,0,239,18,1,0,36,1,0,0,19,6,4,0,1,0,0,0,36,0,0,0,173,0,0,0,1,0,0,0,78,1,0,0,173,0,0,0,1,0,0,0,46,1,0,0,192,6,4,0,252,18,1,0,36,1,0,0,192, 6,4,0,1,0,0,0,36,0,0,0,11,3,0,0,1,0,0,0,78,1,0,0,11,3,0,0,1,0,0,0,46,1,0,0,203,9,4,0,15,19,1,0,36,1,0,0,203,9,4,0,1,0,0,0,36,0,0,0,42,1,0,0,1,0,0,0,78,1,0,0,42,1,0,0,1,0,0,0,46,1,0,0,245,10,4,0,31,19,1,0,36,1,0,0,245,10,4,0,1,0,0,0,36,0,0,0,163,1,0,0, 1,0,0,0,78,1,0,0,163,1,0,0,1,0,0,0,46,1,0,0,152,12,4,0,46,19,1,0,36,1,0,0,152,12,4,0,1,0,0,0,36,0,0,0,18,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,58,19,1,0,38,10,0,0,164,186,9,0,63,19,1,0,32,11,0,0,0,0,0,0,77,19,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0, 41,190,0,0,100,0,0,0,0,0,0,0,92,19,1,0,100,0,0,0,0,0,0,0,119,19,1,0,102,0,1,0,88,96,143,77,1,0,0,0,46,1,0,0,170,12,4,0,185,19,1,0,36,1,0,0,170,12,4,0,1,0,0,0,36,0,0,0,201,1,0,0,1,0,0,0,78,1,0,0,201,1,0,0,1,0,0,0,46,1,0,0,115,14,4,0,205,19,1,0,36,1,0, 0,115,14,4,0,1,0,0,0,36,0,0,0,21,1,0,0,1,0,0,0,78,1,0,0,21,1,0,0,1,0,0,0,46,1,0,0,136,15,4,0,226,19,1,0,36,1,0,0,136,15,4,0,1,0,0,0,36,0,0,0,117,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,1,0,0,0,46,1,0,0,253,15,4,0,248,19,1,0,36,1,0,0,253,15,4,0,1,0,0,0,36,0, 0,0,48,1,0,0,1,0,0,0,78,1,0,0,48,1,0,0,1,0,0,0,46,1,0,0,45,17,4,0,15,20,1,0,36,1,0,0,45,17,4,0,1,0,0,0,36,0,0,0,130,0,0,0,1,0,0,0,78,1,0,0,130,0,0,0,1,0,0,0,46,1,0,0,175,17,4,0,38,20,1,0,36,1,0,0,175,17,4,0,1,0,0,0,36,0,0,0,136,0,0,0,1,0,0,0,78,1,0,0, 136,0,0,0,1,0,0,0,46,1,0,0,55,18,4,0,54,20,1,0,36,1,0,0,55,18,4,0,1,0,0,0,36,0,0,0,100,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,1,0,0,0,46,1,0,0,155,18,4,0,73,20,1,0,36,1,0,0,155,18,4,0,1,0,0,0,36,0,0,0,160,1,0,0,1,0,0,0,78,1,0,0,160,1,0,0,1,0,0,0,46,1,0,0,59, 20,4,0,89,20,1,0,36,1,0,0,59,20,4,0,1,0,0,0,36,0,0,0,13,2,0,0,1,0,0,0,78,1,0,0,13,2,0,0,1,0,0,0,46,1,0,0,72,22,4,0,111,20,1,0,36,1,0,0,72,22,4,0,1,0,0,0,36,0,0,0,182,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,1,0,0,0,46,1,0,0,254,22,4,0,130,20,1,0,36,1,0,0,254, 22,4,0,1,0,0,0,36,0,0,0,40,1,0,0,1,0,0,0,78,1,0,0,40,1,0,0,1,0,0,0,46,1,0,0,38,24,4,0,148,20,1,0,36,1,0,0,38,24,4,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,124,24,4,0,164,20,1,0,36,1,0,0,124,24,4,0,1,0,0,0,36,0,0,0,47,0,0, 0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,171,24,4,0,181,20,1,0,36,1,0,0,171,24,4,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,218,24,4,0,196,20,1,0,36,1,0,0,218,24,4,0,1,0,0,0,36,0,0,0,172,0,0,0,1,0,0,0,78,1,0,0,172,0,0, 0,1,0,0,0,46,1,0,0,134,25,4,0,216,20,1,0,36,1,0,0,134,25,4,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,181,25,4,0,233,20,1,0,36,1,0,0,181,25,4,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,214,25,4, 0,249,20,1,0,36,1,0,0,214,25,4,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,247,25,4,0,12,21,1,0,36,1,0,0,247,25,4,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,24,26,4,0,29,21,1,0,36,1,0,0,24,26,4,0, 1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,71,26,4,0,50,21,1,0,36,1,0,0,71,26,4,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,118,26,4,0,72,21,1,0,36,1,0,0,118,26,4,0,1,0,0,0,36,0,0,0,76,8,0,0,1,0,0, 0,78,1,0,0,76,8,0,0,1,0,0,0,46,1,0,0,194,34,4,0,87,21,1,0,36,1,0,0,194,34,4,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,229,34,4,0,108,21,1,0,36,1,0,0,229,34,4,0,1,0,0,0,36,0,0,0,59,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,1,0,0,0,46, 1,0,0,32,35,4,0,122,21,1,0,36,1,0,0,32,35,4,0,1,0,0,0,36,0,0,0,105,4,0,0,1,0,0,0,78,1,0,0,105,4,0,0,140,21,1,0,38,10,0,0,168,186,9,0,157,21,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,183,21,1,0,100,0,0,0,0,0,0,0,208, 21,1,0,102,0,1,0,88,96,143,77,1,0,0,0,46,1,0,0,137,39,4,0,16,22,1,0,36,1,0,0,137,39,4,0,1,0,0,0,36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,1,0,0,0,46,1,0,0,235,39,4,0,38,22,1,0,36,1,0,0,235,39,4,0,1,0,0,0,36,0,0,0,50,0,0,0,1,0,0,0,78,1,0,0,50,0,0,0, 1,0,0,0,46,1,0,0,29,40,4,0,59,22,1,0,36,1,0,0,29,40,4,0,1,0,0,0,36,0,0,0,112,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,1,0,0,0,46,1,0,0,141,40,4,0,75,22,1,0,36,1,0,0,141,40,4,0,1,0,0,0,36,0,0,0,154,0,0,0,1,0,0,0,78,1,0,0,154,0,0,0,1,0,0,0,46,1,0,0,39,41,4,0,101, 22,1,0,36,1,0,0,39,41,4,0,1,0,0,0,36,0,0,0,79,2,0,0,1,0,0,0,78,1,0,0,79,2,0,0,1,0,0,0,46,1,0,0,118,43,4,0,117,22,1,0,36,1,0,0,118,43,4,0,1,0,0,0,36,0,0,0,198,1,0,0,1,0,0,0,78,1,0,0,198,1,0,0,1,0,0,0,46,1,0,0,60,45,4,0,140,22,1,0,36,1,0,0,60,45,4,0,1, 0,0,0,36,0,0,0,191,3,0,0,1,0,0,0,78,1,0,0,191,3,0,0,1,0,0,0,46,1,0,0,251,48,4,0,160,22,1,0,36,1,0,0,251,48,4,0,1,0,0,0,36,0,0,0,174,2,0,0,1,0,0,0,78,1,0,0,174,2,0,0,1,0,0,0,46,1,0,0,169,51,4,0,181,22,1,0,36,1,0,0,169,51,4,0,1,0,0,0,36,0,0,0,251,0,0,0, 1,0,0,0,78,1,0,0,251,0,0,0,1,0,0,0,46,1,0,0,164,52,4,0,203,22,1,0,36,1,0,0,164,52,4,0,1,0,0,0,36,0,0,0,175,1,0,0,1,0,0,0,78,1,0,0,175,1,0,0,1,0,0,0,46,1,0,0,83,54,4,0,226,22,1,0,36,1,0,0,83,54,4,0,1,0,0,0,36,0,0,0,153,1,0,0,1,0,0,0,78,1,0,0,153,1,0,0, 1,0,0,0,46,1,0,0,236,55,4,0,245,22,1,0,36,1,0,0,236,55,4,0,1,0,0,0,36,0,0,0,203,1,0,0,1,0,0,0,78,1,0,0,203,1,0,0,1,0,0,0,46,1,0,0,183,57,4,0,12,23,1,0,36,1,0,0,183,57,4,0,1,0,0,0,36,0,0,0,225,0,0,0,1,0,0,0,78,1,0,0,225,0,0,0,1,0,0,0,46,1,0,0,152,58,4, 0,28,23,1,0,36,1,0,0,152,58,4,0,1,0,0,0,36,0,0,0,103,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,1,0,0,0,46,1,0,0,255,58,4,0,47,23,1,0,36,1,0,0,255,58,4,0,1,0,0,0,36,0,0,0,138,2,0,0,1,0,0,0,78,1,0,0,138,2,0,0,1,0,0,0,46,1,0,0,137,61,4,0,63,23,1,0,36,1,0,0,137,61, 4,0,1,0,0,0,36,0,0,0,8,2,0,0,1,0,0,0,78,1,0,0,8,2,0,0,1,0,0,0,46,1,0,0,145,63,4,0,87,23,1,0,36,1,0,0,145,63,4,0,1,0,0,0,36,0,0,0,225,2,0,0,1,0,0,0,78,1,0,0,225,2,0,0,1,0,0,0,46,1,0,0,114,66,4,0,109,23,1,0,36,1,0,0,114,66,4,0,1,0,0,0,36,0,0,0,118,0,0, 0,1,0,0,0,78,1,0,0,118,0,0,0,1,0,0,0,46,1,0,0,232,66,4,0,125,23,1,0,36,1,0,0,232,66,4,0,1,0,0,0,36,0,0,0,14,2,0,0,1,0,0,0,78,1,0,0,14,2,0,0,1,0,0,0,46,1,0,0,246,68,4,0,143,23,1,0,36,1,0,0,246,68,4,0,1,0,0,0,36,0,0,0,35,1,0,0,1,0,0,0,78,1,0,0,35,1,0,0, 1,0,0,0,46,1,0,0,25,70,4,0,161,23,1,0,36,1,0,0,25,70,4,0,1,0,0,0,36,0,0,0,96,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,1,0,0,0,46,1,0,0,121,70,4,0,178,23,1,0,36,1,0,0,121,70,4,0,1,0,0,0,36,0,0,0,95,1,0,0,1,0,0,0,78,1,0,0,95,1,0,0,1,0,0,0,46,1,0,0,216,71,4,0,198, 23,1,0,36,1,0,0,216,71,4,0,1,0,0,0,36,0,0,0,77,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,1,0,0,0,46,1,0,0,37,72,4,0,213,23,1,0,36,1,0,0,37,72,4,0,1,0,0,0,36,0,0,0,198,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,1,0,0,0,46,1,0,0,235,72,4,0,235,23,1,0,36,1,0,0,235,72,4,0,1, 0,0,0,36,0,0,0,55,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,1,0,0,0,46,1,0,0,34,73,4,0,252,23,1,0,36,1,0,0,34,73,4,0,1,0,0,0,36,0,0,0,145,0,0,0,1,0,0,0,78,1,0,0,145,0,0,0,1,0,0,0,46,1,0,0,179,73,4,0,12,24,1,0,36,1,0,0,179,73,4,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0, 0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,226,73,4,0,29,24,1,0,36,1,0,0,226,73,4,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,17,74,4,0,44,24,1,0,36,1,0,0,17,74,4,0,1,0,0,0,36,0,0,0,155,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,1,0,0,0,46, 1,0,0,172,74,4,0,61,24,1,0,36,1,0,0,172,74,4,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,219,74,4,0,78,24,1,0,36,1,0,0,219,74,4,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,252,74,4,0,94,24,1,0,36, 1,0,0,252,74,4,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,29,75,4,0,113,24,1,0,36,1,0,0,29,75,4,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,62,75,4,0,130,24,1,0,36,1,0,0,62,75,4,0,1,0,0,0,36,0,0, 0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,109,75,4,0,151,24,1,0,36,1,0,0,109,75,4,0,1,0,0,0,36,0,0,0,194,0,0,0,1,0,0,0,78,1,0,0,194,0,0,0,1,0,0,0,46,1,0,0,47,76,4,0,173,24,1,0,36,1,0,0,47,76,4,0,1,0,0,0,36,0,0,0,112,0,0,0,1,0,0,0,78,1,0,0, 112,0,0,0,1,0,0,0,46,1,0,0,159,76,4,0,188,24,1,0,36,1,0,0,159,76,4,0,1,0,0,0,36,0,0,0,21,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,1,0,0,0,46,1,0,0,180,76,4,0,203,24,1,0,36,1,0,0,180,76,4,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,249, 76,4,0,219,24,1,0,36,1,0,0,249,76,4,0,1,0,0,0,36,0,0,0,91,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,1,0,0,0,46,1,0,0,84,77,4,0,239,24,1,0,36,1,0,0,84,77,4,0,1,0,0,0,36,0,0,0,56,2,0,0,1,0,0,0,78,1,0,0,56,2,0,0,1,0,0,0,46,1,0,0,140,79,4,0,254,24,1,0,36,1,0,0,140, 79,4,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,175,79,4,0,19,25,1,0,36,1,0,0,175,79,4,0,1,0,0,0,36,0,0,0,70,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,1,0,0,0,46,1,0,0,245,79,4,0,35,25,1,0,36,1,0,0,245,79,4,0,1,0,0,0,36,0,0,0,104,9, 0,0,1,0,0,0,78,1,0,0,104,9,0,0,1,0,0,0,46,1,0,0,93,89,4,0,50,25,1,0,36,1,0,0,93,89,4,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,128,89,4,0,71,25,1,0,36,1,0,0,128,89,4,0,1,0,0,0,36,0,0,0,93,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,1, 0,0,0,46,1,0,0,221,89,4,0,87,25,1,0,36,1,0,0,221,89,4,0,1,0,0,0,36,0,0,0,131,6,0,0,1,0,0,0,78,1,0,0,131,6,0,0,103,25,1,0,38,10,0,0,172,186,9,0,120,25,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,146,25,1,0,100,0,0,0,0, 0,0,0,174,25,1,0,102,0,1,0,89,96,143,77,1,0,0,0,46,1,0,0,96,96,4,0,241,25,1,0,36,1,0,0,96,96,4,0,1,0,0,0,36,0,0,0,119,0,0,0,1,0,0,0,78,1,0,0,119,0,0,0,1,0,0,0,46,1,0,0,215,96,4,0,4,26,1,0,36,1,0,0,215,96,4,0,1,0,0,0,36,0,0,0,73,0,0,0,1,0,0,0,78,1,0,0, 73,0,0,0,1,0,0,0,46,1,0,0,32,97,4,0,22,26,1,0,36,1,0,0,32,97,4,0,1,0,0,0,36,0,0,0,1,2,0,0,1,0,0,0,78,1,0,0,1,2,0,0,1,0,0,0,46,1,0,0,33,99,4,0,39,26,1,0,36,1,0,0,33,99,4,0,1,0,0,0,36,0,0,0,25,2,0,0,1,0,0,0,78,1,0,0,25,2,0,0,1,0,0,0,46,1,0,0,58,101,4,0, 57,26,1,0,36,1,0,0,58,101,4,0,1,0,0,0,36,0,0,0,162,3,0,0,1,0,0,0,78,1,0,0,162,3,0,0,1,0,0,0,46,1,0,0,220,104,4,0,79,26,1,0,36,1,0,0,220,104,4,0,1,0,0,0,36,0,0,0,77,1,0,0,1,0,0,0,78,1,0,0,77,1,0,0,1,0,0,0,46,1,0,0,41,106,4,0,93,26,1,0,36,1,0,0,41,106, 4,0,1,0,0,0,36,0,0,0,41,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,1,0,0,0,46,1,0,0,82,106,4,0,105,26,1,0,36,1,0,0,82,106,4,0,1,0,0,0,36,0,0,0,41,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,1,0,0,0,46,1,0,0,123,106,4,0,122,26,1,0,36,1,0,0,123,106,4,0,1,0,0,0,36,0,0,0,196,1, 0,0,1,0,0,0,78,1,0,0,196,1,0,0,1,0,0,0,46,1,0,0,63,108,4,0,145,26,1,0,36,1,0,0,63,108,4,0,1,0,0,0,36,0,0,0,130,0,0,0,1,0,0,0,78,1,0,0,130,0,0,0,1,0,0,0,46,1,0,0,193,108,4,0,167,26,1,0,36,1,0,0,193,108,4,0,1,0,0,0,36,0,0,0,234,2,0,0,1,0,0,0,78,1,0,0,234, 2,0,0,1,0,0,0,46,1,0,0,171,111,4,0,187,26,1,0,36,1,0,0,171,111,4,0,1,0,0,0,36,0,0,0,94,0,0,0,1,0,0,0,78,1,0,0,94,0,0,0,1,0,0,0,46,1,0,0,9,112,4,0,204,26,1,0,36,1,0,0,9,112,4,0,1,0,0,0,36,0,0,0,53,1,0,0,1,0,0,0,78,1,0,0,53,1,0,0,1,0,0,0,46,1,0,0,62,113, 4,0,234,26,1,0,36,1,0,0,62,113,4,0,1,0,0,0,36,0,0,0,93,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,1,0,0,0,46,1,0,0,155,113,4,0,6,27,1,0,36,1,0,0,155,113,4,0,1,0,0,0,36,0,0,0,62,3,0,0,1,0,0,0,78,1,0,0,62,3,0,0,1,0,0,0,46,1,0,0,217,116,4,0,27,27,1,0,36,1,0,0,217, 116,4,0,1,0,0,0,36,0,0,0,141,1,0,0,1,0,0,0,78,1,0,0,141,1,0,0,1,0,0,0,46,1,0,0,102,118,4,0,40,27,1,0,36,1,0,0,102,118,4,0,1,0,0,0,36,0,0,0,211,6,0,0,1,0,0,0,78,1,0,0,211,6,0,0,1,0,0,0,46,1,0,0,57,125,4,0,55,27,1,0,36,1,0,0,57,125,4,0,1,0,0,0,36,0,0,0, 219,0,0,0,1,0,0,0,78,1,0,0,219,0,0,0,1,0,0,0,46,1,0,0,20,126,4,0,83,27,1,0,36,1,0,0,20,126,4,0,1,0,0,0,36,0,0,0,103,2,0,0,1,0,0,0,78,1,0,0,103,2,0,0,1,0,0,0,46,1,0,0,123,128,4,0,107,27,1,0,36,1,0,0,123,128,4,0,1,0,0,0,36,0,0,0,250,0,0,0,1,0,0,0,78,1, 0,0,250,0,0,0,1,0,0,0,46,1,0,0,117,129,4,0,126,27,1,0,36,1,0,0,117,129,4,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,203,129,4,0,145,27,1,0,36,1,0,0,203,129,4,0,1,0,0,0,36,0,0,0,246,0,0,0,1,0,0,0,78,1,0,0,246,0,0,0,1,0,0,0, 46,1,0,0,193,130,4,0,162,27,1,0,36,1,0,0,193,130,4,0,1,0,0,0,36,0,0,0,227,1,0,0,1,0,0,0,78,1,0,0,227,1,0,0,181,27,1,0,38,10,0,0,176,186,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,196,27,1,0,100,0,0,0,0,0,0,0,220,27,1,0,102,0,1,0,89,96, 143,77,1,0,0,0,46,1,0,0,164,132,4,0,27,28,1,0,36,1,0,0,164,132,4,0,1,0,0,0,36,0,0,0,13,1,0,0,1,0,0,0,78,1,0,0,13,1,0,0,1,0,0,0,46,1,0,0,177,133,4,0,38,28,1,0,36,1,0,0,177,133,4,0,1,0,0,0,36,0,0,0,230,0,0,0,1,0,0,0,78,1,0,0,230,0,0,0,1,0,0,0,46,1,0,0, 151,134,4,0,50,28,1,0,36,1,0,0,151,134,4,0,1,0,0,0,36,0,0,0,14,0,0,0,1,0,0,0,78,1,0,0,14,0,0,0,1,0,0,0,46,1,0,0,165,134,4,0,64,28,1,0,36,1,0,0,165,134,4,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,194,134,4,0,79,28,1,0,36,1, 0,0,194,134,4,0,1,0,0,0,36,0,0,0,45,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,1,0,0,0,46,1,0,0,239,134,4,0,97,28,1,0,36,1,0,0,239,134,4,0,1,0,0,0,36,0,0,0,164,0,0,0,1,0,0,0,78,1,0,0,164,0,0,0,1,0,0,0,46,1,0,0,147,135,4,0,112,28,1,0,36,1,0,0,147,135,4,0,1,0,0,0, 36,0,0,0,72,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,1,0,0,0,46,1,0,0,219,135,4,0,122,28,1,0,36,1,0,0,219,135,4,0,1,0,0,0,36,0,0,0,65,0,0,0,1,0,0,0,78,1,0,0,65,0,0,0,1,0,0,0,46,1,0,0,28,136,4,0,131,28,1,0,36,1,0,0,28,136,4,0,1,0,0,0,36,0,0,0,152,10,0,0,1,0,0, 0,78,1,0,0,152,10,0,0,1,0,0,0,46,1,0,0,180,146,4,0,147,28,1,0,36,1,0,0,180,146,4,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,222,146,4,0,169,28,1,0,36,1,0,0,222,146,4,0,1,0,0,0,36,0,0,0,191,2,0,0,1,0,0,0,78,1,0,0,191,2,0,0, 1,0,0,0,46,1,0,0,157,149,4,0,183,28,1,0,36,1,0,0,157,149,4,0,1,0,0,0,36,0,0,0,109,0,0,0,1,0,0,0,78,1,0,0,109,0,0,0,1,0,0,0,46,1,0,0,10,150,4,0,200,28,1,0,36,1,0,0,10,150,4,0,1,0,0,0,36,0,0,0,65,0,0,0,1,0,0,0,78,1,0,0,65,0,0,0,1,0,0,0,46,1,0,0,75,150, 4,0,213,28,1,0,36,1,0,0,75,150,4,0,1,0,0,0,36,0,0,0,65,0,0,0,1,0,0,0,78,1,0,0,65,0,0,0,1,0,0,0,46,1,0,0,140,150,4,0,227,28,1,0,36,1,0,0,140,150,4,0,1,0,0,0,36,0,0,0,62,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,1,0,0,0,46,1,0,0,202,150,4,0,239,28,1,0,36,1,0,0,202, 150,4,0,1,0,0,0,36,0,0,0,63,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,1,0,0,0,46,1,0,0,9,151,4,0,252,28,1,0,36,1,0,0,9,151,4,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,88,151,4,0,12,29,1,0,36,1,0,0,88,151,4,0,1,0,0,0,36,0,0,0,119,0, 0,0,1,0,0,0,78,1,0,0,119,0,0,0,1,0,0,0,46,1,0,0,207,151,4,0,26,29,1,0,36,1,0,0,207,151,4,0,1,0,0,0,36,0,0,0,20,1,0,0,1,0,0,0,78,1,0,0,20,1,0,0,1,0,0,0,46,1,0,0,227,152,4,0,42,29,1,0,36,1,0,0,227,152,4,0,1,0,0,0,36,0,0,0,48,5,0,0,1,0,0,0,78,1,0,0,48,5, 0,0,1,0,0,0,46,1,0,0,19,158,4,0,53,29,1,0,36,1,0,0,19,158,4,0,1,0,0,0,36,0,0,0,34,3,0,0,1,0,0,0,78,1,0,0,34,3,0,0,66,29,1,0,38,10,0,0,180,186,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,81,29,1,0,100,0,0,0,0,0,0,0,106,29,1,0,102,0,1,0, 89,96,143,77,1,0,0,0,46,1,0,0,53,161,4,0,170,29,1,0,36,1,0,0,53,161,4,0,1,0,0,0,36,0,0,0,207,0,0,0,1,0,0,0,78,1,0,0,207,0,0,0,1,0,0,0,46,1,0,0,4,162,4,0,181,29,1,0,36,1,0,0,4,162,4,0,1,0,0,0,36,0,0,0,210,0,0,0,1,0,0,0,78,1,0,0,210,0,0,0,1,0,0,0,46,1, 0,0,214,162,4,0,195,29,1,0,36,1,0,0,214,162,4,0,1,0,0,0,36,0,0,0,104,0,0,0,1,0,0,0,78,1,0,0,104,0,0,0,1,0,0,0,46,1,0,0,62,163,4,0,206,29,1,0,36,1,0,0,62,163,4,0,1,0,0,0,36,0,0,0,191,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,1,0,0,0,46,1,0,0,253,163,4,0,218,29, 1,0,36,1,0,0,253,163,4,0,1,0,0,0,36,0,0,0,245,0,0,0,1,0,0,0,78,1,0,0,245,0,0,0,1,0,0,0,46,1,0,0,242,164,4,0,232,29,1,0,36,1,0,0,242,164,4,0,1,0,0,0,36,0,0,0,142,0,0,0,1,0,0,0,78,1,0,0,142,0,0,0,1,0,0,0,46,1,0,0,128,165,4,0,250,29,1,0,36,1,0,0,128,165, 4,0,1,0,0,0,36,0,0,0,221,1,0,0,1,0,0,0,78,1,0,0,221,1,0,0,1,0,0,0,46,1,0,0,93,167,4,0,10,30,1,0,36,1,0,0,93,167,4,0,1,0,0,0,36,0,0,0,47,1,0,0,1,0,0,0,78,1,0,0,47,1,0,0,1,0,0,0,46,1,0,0,140,168,4,0,33,30,1,0,36,1,0,0,140,168,4,0,1,0,0,0,36,0,0,0,214,0, 0,0,1,0,0,0,78,1,0,0,214,0,0,0,1,0,0,0,46,1,0,0,98,169,4,0,48,30,1,0,36,1,0,0,98,169,4,0,1,0,0,0,36,0,0,0,159,2,0,0,1,0,0,0,78,1,0,0,159,2,0,0,1,0,0,0,46,1,0,0,1,172,4,0,65,30,1,0,36,1,0,0,1,172,4,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1, 0,0,0,46,1,0,0,9,172,4,0,82,30,1,0,36,1,0,0,9,172,4,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,17,172,4,0,97,30,1,0,36,1,0,0,17,172,4,0,1,0,0,0,36,0,0,0,227,1,0,0,1,0,0,0,78,1,0,0,227,1,0,0,1,0,0,0,46,1,0,0,244,173,4,0,109,30, 1,0,36,1,0,0,244,173,4,0,1,0,0,0,36,0,0,0,60,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,1,0,0,0,46,1,0,0,48,174,4,0,126,30,1,0,36,1,0,0,48,174,4,0,1,0,0,0,36,0,0,0,62,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,1,0,0,0,46,1,0,0,110,174,4,0,141,30,1,0,36,1,0,0,110,174,4,0,1, 0,0,0,36,0,0,0,219,1,0,0,1,0,0,0,78,1,0,0,219,1,0,0,1,0,0,0,46,1,0,0,73,176,4,0,157,30,1,0,36,1,0,0,73,176,4,0,1,0,0,0,36,0,0,0,151,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,1,0,0,0,46,1,0,0,224,176,4,0,171,30,1,0,36,1,0,0,224,176,4,0,1,0,0,0,36,0,0,0,163,0,0, 0,1,0,0,0,78,1,0,0,163,0,0,0,1,0,0,0,46,1,0,0,131,177,4,0,184,30,1,0,36,1,0,0,131,177,4,0,1,0,0,0,36,0,0,0,58,1,0,0,1,0,0,0,78,1,0,0,58,1,0,0,1,0,0,0,46,1,0,0,189,178,4,0,203,30,1,0,36,1,0,0,189,178,4,0,1,0,0,0,36,0,0,0,132,0,0,0,1,0,0,0,78,1,0,0,132, 0,0,0,1,0,0,0,46,1,0,0,65,179,4,0,216,30,1,0,36,1,0,0,65,179,4,0,1,0,0,0,36,0,0,0,181,0,0,0,1,0,0,0,78,1,0,0,181,0,0,0,232,30,1,0,38,9,0,0,216,149,9,0,255,30,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,13,31,1,0,100,0, 0,0,0,0,0,0,40,31,1,0,102,0,1,0,90,96,143,77,1,0,0,0,46,1,0,0,246,179,4,0,106,31,1,0,36,1,0,0,246,179,4,0,1,0,0,0,36,0,0,0,89,0,0,0,1,0,0,0,78,1,0,0,89,0,0,0,1,0,0,0,46,1,0,0,79,180,4,0,124,31,1,0,36,1,0,0,79,180,4,0,1,0,0,0,36,0,0,0,81,2,0,0,1,0,0,0, 78,1,0,0,81,2,0,0,1,0,0,0,46,1,0,0,160,182,4,0,138,31,1,0,36,1,0,0,160,182,4,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,177,182,4,0,153,31,1,0,36,1,0,0,177,182,4,0,1,0,0,0,36,0,0,0,198,0,0,0,1,0,0,0,78,1,0,0,198,0,0,0,1,0, 0,0,46,1,0,0,119,183,4,0,174,31,1,0,36,1,0,0,119,183,4,0,1,0,0,0,36,0,0,0,199,0,0,0,1,0,0,0,78,1,0,0,199,0,0,0,1,0,0,0,46,1,0,0,62,184,4,0,193,31,1,0,36,1,0,0,62,184,4,0,1,0,0,0,36,0,0,0,171,0,0,0,1,0,0,0,78,1,0,0,171,0,0,0,1,0,0,0,46,1,0,0,233,184,4, 0,212,31,1,0,36,1,0,0,233,184,4,0,1,0,0,0,36,0,0,0,184,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,1,0,0,0,46,1,0,0,161,185,4,0,232,31,1,0,36,1,0,0,161,185,4,0,1,0,0,0,36,0,0,0,172,0,0,0,1,0,0,0,78,1,0,0,172,0,0,0,1,0,0,0,46,1,0,0,77,186,4,0,252,31,1,0,36,1,0,0, 77,186,4,0,1,0,0,0,36,0,0,0,24,1,0,0,1,0,0,0,78,1,0,0,24,1,0,0,1,0,0,0,46,1,0,0,101,187,4,0,12,32,1,0,36,1,0,0,101,187,4,0,1,0,0,0,36,0,0,0,131,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,1,0,0,0,46,1,0,0,232,187,4,0,35,32,1,0,36,1,0,0,232,187,4,0,1,0,0,0,36,0, 0,0,22,2,0,0,1,0,0,0,78,1,0,0,22,2,0,0,1,0,0,0,46,1,0,0,254,189,4,0,59,32,1,0,36,1,0,0,254,189,4,0,1,0,0,0,36,0,0,0,31,2,0,0,1,0,0,0,78,1,0,0,31,2,0,0,1,0,0,0,46,1,0,0,29,192,4,0,82,32,1,0,36,1,0,0,29,192,4,0,1,0,0,0,36,0,0,0,227,0,0,0,1,0,0,0,78,1,0, 0,227,0,0,0,1,0,0,0,46,1,0,0,0,193,4,0,105,32,1,0,36,1,0,0,0,193,4,0,1,0,0,0,36,0,0,0,228,2,0,0,1,0,0,0,78,1,0,0,228,2,0,0,1,0,0,0,46,1,0,0,228,195,4,0,123,32,1,0,36,1,0,0,228,195,4,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0, 0,14,196,4,0,144,32,1,0,36,1,0,0,14,196,4,0,1,0,0,0,36,0,0,0,75,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,1,0,0,0,46,1,0,0,89,196,4,0,165,32,1,0,36,1,0,0,89,196,4,0,1,0,0,0,36,0,0,0,56,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,1,0,0,0,46,1,0,0,145,196,4,0,182,32,1,0,36, 1,0,0,145,196,4,0,1,0,0,0,36,0,0,0,105,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,1,0,0,0,46,1,0,0,250,196,4,0,208,32,1,0,36,1,0,0,250,196,4,0,1,0,0,0,36,0,0,0,66,1,0,0,1,0,0,0,78,1,0,0,66,1,0,0,1,0,0,0,46,1,0,0,60,198,4,0,230,32,1,0,36,1,0,0,60,198,4,0,1,0,0, 0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,141,198,4,0,245,32,1,0,36,1,0,0,141,198,4,0,1,0,0,0,36,0,0,0,159,0,0,0,1,0,0,0,78,1,0,0,159,0,0,0,1,0,0,0,46,1,0,0,44,199,4,0,5,33,1,0,36,1,0,0,44,199,4,0,1,0,0,0,36,0,0,0,15,2,0,0,1,0,0, 0,78,1,0,0,15,2,0,0,1,0,0,0,46,1,0,0,59,201,4,0,22,33,1,0,36,1,0,0,59,201,4,0,1,0,0,0,36,0,0,0,85,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,1,0,0,0,46,1,0,0,144,201,4,0,37,33,1,0,36,1,0,0,144,201,4,0,1,0,0,0,36,0,0,0,113,0,0,0,1,0,0,0,78,1,0,0,113,0,0,0,1,0,0, 0,46,1,0,0,1,202,4,0,56,33,1,0,36,1,0,0,1,202,4,0,1,0,0,0,36,0,0,0,14,0,0,0,1,0,0,0,78,1,0,0,14,0,0,0,1,0,0,0,46,1,0,0,15,202,4,0,71,33,1,0,36,1,0,0,15,202,4,0,1,0,0,0,36,0,0,0,113,1,0,0,1,0,0,0,78,1,0,0,113,1,0,0,1,0,0,0,46,1,0,0,128,203,4,0,87,33,1, 0,36,1,0,0,128,203,4,0,1,0,0,0,36,0,0,0,155,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,1,0,0,0,46,1,0,0,27,204,4,0,104,33,1,0,36,1,0,0,27,204,4,0,1,0,0,0,36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,1,0,0,0,46,1,0,0,125,204,4,0,130,33,1,0,36,1,0,0,125,204,4,0,1, 0,0,0,36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,1,0,0,0,46,1,0,0,223,204,4,0,157,33,1,0,36,1,0,0,223,204,4,0,1,0,0,0,36,0,0,0,208,3,0,0,1,0,0,0,78,1,0,0,208,3,0,0,1,0,0,0,46,1,0,0,175,208,4,0,181,33,1,0,36,1,0,0,175,208,4,0,1,0,0,0,36,0,0,0,104,0,0, 0,1,0,0,0,78,1,0,0,104,0,0,0,1,0,0,0,46,1,0,0,23,209,4,0,204,33,1,0,36,1,0,0,23,209,4,0,1,0,0,0,36,0,0,0,172,0,0,0,1,0,0,0,78,1,0,0,172,0,0,0,1,0,0,0,46,1,0,0,195,209,4,0,228,33,1,0,36,1,0,0,195,209,4,0,1,0,0,0,36,0,0,0,108,0,0,0,1,0,0,0,78,1,0,0,108, 0,0,0,1,0,0,0,46,1,0,0,47,210,4,0,251,33,1,0,36,1,0,0,47,210,4,0,1,0,0,0,36,0,0,0,133,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,1,0,0,0,46,1,0,0,180,210,4,0,15,34,1,0,36,1,0,0,180,210,4,0,1,0,0,0,36,0,0,0,72,1,0,0,1,0,0,0,78,1,0,0,72,1,0,0,1,0,0,0,46,1,0,0,252, 211,4,0,37,34,1,0,36,1,0,0,252,211,4,0,1,0,0,0,36,0,0,0,154,0,0,0,1,0,0,0,78,1,0,0,154,0,0,0,1,0,0,0,46,1,0,0,150,212,4,0,57,34,1,0,36,1,0,0,150,212,4,0,1,0,0,0,36,0,0,0,125,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,1,0,0,0,46,1,0,0,19,213,4,0,78,34,1,0,36,1, 0,0,19,213,4,0,1,0,0,0,36,0,0,0,167,1,0,0,1,0,0,0,78,1,0,0,167,1,0,0,1,0,0,0,46,1,0,0,186,214,4,0,102,34,1,0,36,1,0,0,186,214,4,0,1,0,0,0,36,0,0,0,125,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,1,0,0,0,46,1,0,0,55,215,4,0,122,34,1,0,36,1,0,0,55,215,4,0,1,0,0,0, 36,0,0,0,180,2,0,0,1,0,0,0,78,1,0,0,180,2,0,0,1,0,0,0,46,1,0,0,235,217,4,0,133,34,1,0,36,1,0,0,235,217,4,0,1,0,0,0,36,0,0,0,27,1,0,0,1,0,0,0,78,1,0,0,27,1,0,0,1,0,0,0,46,1,0,0,6,219,4,0,146,34,1,0,36,1,0,0,6,219,4,0,1,0,0,0,36,0,0,0,220,1,0,0,1,0,0,0, 78,1,0,0,220,1,0,0,1,0,0,0,46,1,0,0,226,220,4,0,161,34,1,0,36,1,0,0,226,220,4,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,234,220,4,0,177,34,1,0,36,1,0,0,234,220,4,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46, 1,0,0,242,220,4,0,191,34,1,0,36,1,0,0,242,220,4,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,250,220,4,0,207,34,1,0,36,1,0,0,250,220,4,0,1,0,0,0,36,0,0,0,63,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,1,0,0,0,46,1,0,0,57,221,4,0,219,34,1, 0,36,1,0,0,57,221,4,0,1,0,0,0,36,0,0,0,19,1,0,0,1,0,0,0,78,1,0,0,19,1,0,0,1,0,0,0,46,1,0,0,76,222,4,0,234,34,1,0,36,1,0,0,76,222,4,0,1,0,0,0,36,0,0,0,60,4,0,0,1,0,0,0,78,1,0,0,60,4,0,0,1,0,0,0,46,1,0,0,136,226,4,0,245,34,1,0,36,1,0,0,136,226,4,0,1,0, 0,0,36,0,0,0,60,2,0,0,1,0,0,0,78,1,0,0,60,2,0,0,1,0,0,0,46,1,0,0,196,228,4,0,3,35,1,0,36,1,0,0,196,228,4,0,1,0,0,0,36,0,0,0,126,3,0,0,1,0,0,0,78,1,0,0,126,3,0,0,1,0,0,0,46,1,0,0,66,232,4,0,16,35,1,0,36,1,0,0,66,232,4,0,1,0,0,0,36,0,0,0,56,0,0,0,1,0,0, 0,78,1,0,0,56,0,0,0,1,0,0,0,46,1,0,0,122,232,4,0,28,35,1,0,36,1,0,0,122,232,4,0,1,0,0,0,36,0,0,0,71,1,0,0,1,0,0,0,78,1,0,0,71,1,0,0,1,0,0,0,46,1,0,0,193,233,4,0,41,35,1,0,36,1,0,0,193,233,4,0,1,0,0,0,36,0,0,0,203,4,0,0,1,0,0,0,78,1,0,0,203,4,0,0,1,0, 0,0,46,1,0,0,140,238,4,0,51,35,1,0,36,1,0,0,140,238,4,0,1,0,0,0,36,0,0,0,32,1,0,0,1,0,0,0,78,1,0,0,32,1,0,0,1,0,0,0,46,1,0,0,172,239,4,0,63,35,1,0,36,1,0,0,172,239,4,0,1,0,0,0,36,0,0,0,81,2,0,0,1,0,0,0,78,1,0,0,81,2,0,0,1,0,0,0,46,1,0,0,253,241,4,0,87, 35,1,0,36,1,0,0,253,241,4,0,1,0,0,0,36,0,0,0,13,2,0,0,1,0,0,0,78,1,0,0,13,2,0,0,1,0,0,0,46,1,0,0,10,244,4,0,104,35,1,0,36,1,0,0,10,244,4,0,1,0,0,0,36,0,0,0,87,5,0,0,1,0,0,0,78,1,0,0,87,5,0,0,1,0,0,0,46,1,0,0,97,249,4,0,118,35,1,0,36,1,0,0,97,249,4,0, 1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,105,249,4,0,133,35,1,0,36,1,0,0,105,249,4,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,113,249,4,0,146,35,1,0,36,1,0,0,113,249,4,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0, 0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,121,249,4,0,161,35,1,0,36,1,0,0,121,249,4,0,1,0,0,0,36,0,0,0,120,17,0,0,1,0,0,0,78,1,0,0,120,17,0,0,1,0,0,0,46,1,0,0,241,10,5,0,171,35,1,0,36,1,0,0,241,10,5,0,1,0,0,0,36,0,0,0,115,1,0,0,1,0,0,0,78,1,0,0,115,1,0,0, 1,0,0,0,46,1,0,0,100,12,5,0,183,35,1,0,36,1,0,0,100,12,5,0,1,0,0,0,36,0,0,0,179,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,1,0,0,0,46,1,0,0,23,13,5,0,195,35,1,0,36,1,0,0,23,13,5,0,1,0,0,0,36,0,0,0,146,2,0,0,1,0,0,0,78,1,0,0,146,2,0,0,1,0,0,0,46,1,0,0,169,15,5, 0,211,35,1,0,36,1,0,0,169,15,5,0,1,0,0,0,36,0,0,0,41,1,0,0,1,0,0,0,78,1,0,0,41,1,0,0,1,0,0,0,46,1,0,0,210,16,5,0,229,35,1,0,36,1,0,0,210,16,5,0,1,0,0,0,36,0,0,0,155,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,1,0,0,0,46,1,0,0,109,17,5,0,249,35,1,0,36,1,0,0,109, 17,5,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,151,17,5,0,15,36,1,0,36,1,0,0,151,17,5,0,1,0,0,0,36,0,0,0,229,2,0,0,1,0,0,0,78,1,0,0,229,2,0,0,1,0,0,0,46,1,0,0,124,20,5,0,35,36,1,0,36,1,0,0,124,20,5,0,1,0,0,0,36,0,0,0,8,0, 0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,132,20,5,0,56,36,1,0,36,1,0,0,132,20,5,0,1,0,0,0,36,0,0,0,40,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,1,0,0,0,46,1,0,0,172,20,5,0,75,36,1,0,36,1,0,0,172,20,5,0,1,0,0,0,36,0,0,0,40,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,1, 0,0,0,46,1,0,0,212,20,5,0,96,36,1,0,36,1,0,0,212,20,5,0,1,0,0,0,36,0,0,0,54,3,0,0,1,0,0,0,78,1,0,0,54,3,0,0,1,0,0,0,46,1,0,0,10,24,5,0,112,36,1,0,36,1,0,0,10,24,5,0,1,0,0,0,36,0,0,0,108,1,0,0,1,0,0,0,78,1,0,0,108,1,0,0,1,0,0,0,46,1,0,0,118,25,5,0,131, 36,1,0,36,1,0,0,118,25,5,0,1,0,0,0,36,0,0,0,173,3,0,0,1,0,0,0,78,1,0,0,173,3,0,0,1,0,0,0,46,1,0,0,35,29,5,0,147,36,1,0,36,1,0,0,35,29,5,0,1,0,0,0,36,0,0,0,22,2,0,0,1,0,0,0,78,1,0,0,22,2,0,0,1,0,0,0,46,1,0,0,57,31,5,0,165,36,1,0,36,1,0,0,57,31,5,0,1,0, 0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,65,31,5,0,182,36,1,0,36,1,0,0,65,31,5,0,1,0,0,0,36,0,0,0,231,0,0,0,1,0,0,0,78,1,0,0,231,0,0,0,1,0,0,0,46,1,0,0,40,32,5,0,200,36,1,0,36,1,0,0,40,32,5,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78, 1,0,0,33,0,0,0,218,36,1,0,32,9,0,0,0,0,0,0,240,36,1,0,32,9,0,0,0,0,0,0,5,37,1,0,32,9,0,0,0,0,0,0,32,37,1,0,38,10,0,0,184,186,9,0,45,37,1,0,38,10,0,0,188,186,9,0,62,37,1,0,38,10,0,0,192,186,9,0,78,37,1,0,38,10,0,0,196,186,9,0,98,37,1,0,38,10,0,0,200,186, 9,0,124,37,1,0,38,10,0,0,204,186,9,0,144,37,1,0,38,10,0,0,208,186,9,0,163,37,1,0,38,10,0,0,212,186,9,0,189,37,1,0,38,10,0,0,216,186,9,0,209,37,1,0,38,10,0,0,220,186,9,0,228,37,1,0,38,10,0,0,224,186,9,0,248,37,1,0,38,10,0,0,228,186,9,0,13,38,1,0,38,10, 0,0,232,186,9,0,33,38,1,0,38,10,0,0,236,186,9,0,50,38,1,0,38,10,0,0,240,186,9,0,73,38,1,0,38,10,0,0,244,186,9,0,96,38,1,0,38,10,0,0,0,187,9,0,127,38,1,0,38,10,0,0,4,187,9,0,152,38,1,0,38,10,0,0,8,187,9,0,178,38,1,0,38,10,0,0,12,187,9,0,203,38,1,0,38, 10,0,0,16,187,9,0,225,38,1,0,38,10,0,0,20,187,9,0,253,38,1,0,38,10,0,0,24,187,9,0,25,39,1,0,38,10,0,0,36,187,9,0,51,39,1,0,38,10,0,0,40,187,9,0,79,39,1,0,32,11,0,0,0,0,0,0,92,39,1,0,32,11,0,0,0,0,0,0,110,39,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0, 0,0,41,190,0,0,100,0,0,0,0,0,0,0,122,39,1,0,100,0,0,0,0,0,0,0,145,39,1,0,102,0,1,0,90,96,143,77,1,0,0,0,46,1,0,0,73,32,5,0,207,39,1,0,36,1,0,0,73,32,5,0,1,0,0,0,36,0,0,0,20,2,0,0,1,0,0,0,78,1,0,0,20,2,0,0,1,0,0,0,46,1,0,0,93,34,5,0,219,39,1,0,36,1,0, 0,93,34,5,0,1,0,0,0,36,0,0,0,210,1,0,0,1,0,0,0,78,1,0,0,210,1,0,0,1,0,0,0,46,1,0,0,47,36,5,0,235,39,1,0,36,1,0,0,47,36,5,0,1,0,0,0,36,0,0,0,132,1,0,0,1,0,0,0,78,1,0,0,132,1,0,0,1,0,0,0,46,1,0,0,179,37,5,0,253,39,1,0,36,1,0,0,179,37,5,0,1,0,0,0,36,0,0, 0,175,1,0,0,1,0,0,0,78,1,0,0,175,1,0,0,1,0,0,0,46,1,0,0,98,39,5,0,9,40,1,0,36,1,0,0,98,39,5,0,1,0,0,0,36,0,0,0,210,0,0,0,1,0,0,0,78,1,0,0,210,0,0,0,1,0,0,0,46,1,0,0,52,40,5,0,25,40,1,0,36,1,0,0,52,40,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48, 0,0,0,1,0,0,0,46,1,0,0,100,40,5,0,37,40,1,0,36,1,0,0,100,40,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,148,40,5,0,52,40,1,0,36,1,0,0,148,40,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,196,40, 5,0,68,40,1,0,36,1,0,0,196,40,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,244,40,5,0,84,40,1,0,36,1,0,0,244,40,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,36,41,5,0,98,40,1,0,36,1,0,0,36,41,5, 0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,84,41,5,0,112,40,1,0,36,1,0,0,84,41,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,132,41,5,0,127,40,1,0,36,1,0,0,132,41,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1, 0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,180,41,5,0,142,40,1,0,36,1,0,0,180,41,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,228,41,5,0,158,40,1,0,36,1,0,0,228,41,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0, 0,0,46,1,0,0,20,42,5,0,172,40,1,0,36,1,0,0,20,42,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,68,42,5,0,187,40,1,0,36,1,0,0,68,42,5,0,1,0,0,0,36,0,0,0,193,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,1,0,0,0,46,1,0,0,5,43,5,0,202,40,1, 0,36,1,0,0,5,43,5,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,27,43,5,0,222,40,1,0,36,1,0,0,27,43,5,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,56,43,5,0,243,40,1,0,36,1,0,0,56,43,5,0,1,0,0,0,36,0, 0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,85,43,5,0,9,41,1,0,36,1,0,0,85,43,5,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,1,0,0,0,46,1,0,0,128,43,5,0,29,41,1,0,36,1,0,0,128,43,5,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43, 0,0,0,1,0,0,0,46,1,0,0,171,43,5,0,53,41,1,0,36,1,0,0,171,43,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,219,43,5,0,67,41,1,0,36,1,0,0,219,43,5,0,1,0,0,0,36,0,0,0,60,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,1,0,0,0,46,1,0,0,23,44,5, 0,82,41,1,0,36,1,0,0,23,44,5,0,1,0,0,0,36,0,0,0,60,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,1,0,0,0,46,1,0,0,83,44,5,0,98,41,1,0,36,1,0,0,83,44,5,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,1,0,0,0,46,1,0,0,129,44,5,0,112,41,1,0,36,1,0,0,129,44,5,0, 1,0,0,0,36,0,0,0,71,0,0,0,1,0,0,0,78,1,0,0,71,0,0,0,1,0,0,0,46,1,0,0,200,44,5,0,125,41,1,0,36,1,0,0,200,44,5,0,1,0,0,0,36,0,0,0,57,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,1,0,0,0,46,1,0,0,1,45,5,0,139,41,1,0,36,1,0,0,1,45,5,0,1,0,0,0,36,0,0,0,71,0,0,0,1,0,0, 0,78,1,0,0,71,0,0,0,1,0,0,0,46,1,0,0,72,45,5,0,152,41,1,0,36,1,0,0,72,45,5,0,1,0,0,0,36,0,0,0,72,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,1,0,0,0,46,1,0,0,144,45,5,0,170,41,1,0,36,1,0,0,144,45,5,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,1,0,0,0,46, 1,0,0,187,45,5,0,187,41,1,0,36,1,0,0,187,45,5,0,1,0,0,0,36,0,0,0,96,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,1,0,0,0,46,1,0,0,27,46,5,0,206,41,1,0,36,1,0,0,27,46,5,0,1,0,0,0,36,0,0,0,16,1,0,0,1,0,0,0,78,1,0,0,16,1,0,0,1,0,0,0,46,1,0,0,43,47,5,0,226,41,1,0,36, 1,0,0,43,47,5,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,85,47,5,0,248,41,1,0,36,1,0,0,85,47,5,0,1,0,0,0,36,0,0,0,165,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,1,0,0,0,46,1,0,0,250,47,5,0,7,42,1,0,36,1,0,0,250,47,5,0,1,0,0,0,36,0,0, 0,112,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,1,0,0,0,46,1,0,0,106,48,5,0,21,42,1,0,36,1,0,0,106,48,5,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,128,48,5,0,35,42,1,0,36,1,0,0,128,48,5,0,1,0,0,0,36,0,0,0,124,2,0,0,1,0,0,0,78,1,0,0, 124,2,0,0,1,0,0,0,46,1,0,0,252,50,5,0,47,42,1,0,36,1,0,0,252,50,5,0,1,0,0,0,36,0,0,0,232,0,0,0,1,0,0,0,78,1,0,0,232,0,0,0,1,0,0,0,46,1,0,0,228,51,5,0,62,42,1,0,36,1,0,0,228,51,5,0,1,0,0,0,36,0,0,0,56,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,1,0,0,0,46,1,0,0,28, 52,5,0,79,42,1,0,36,1,0,0,28,52,5,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,63,52,5,0,93,42,1,0,36,1,0,0,63,52,5,0,1,0,0,0,36,0,0,0,120,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,1,0,0,0,46,1,0,0,183,52,5,0,107,42,1,0,36,1,0,0,183, 52,5,0,1,0,0,0,36,0,0,0,182,0,0,0,1,0,0,0,78,1,0,0,182,0,0,0,1,0,0,0,46,1,0,0,109,53,5,0,118,42,1,0,36,1,0,0,109,53,5,0,1,0,0,0,36,0,0,0,89,1,0,0,1,0,0,0,78,1,0,0,89,1,0,0,1,0,0,0,46,1,0,0,198,54,5,0,130,42,1,0,36,1,0,0,198,54,5,0,1,0,0,0,36,0,0,0,66, 0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,1,0,0,0,46,1,0,0,8,55,5,0,143,42,1,0,36,1,0,0,8,55,5,0,1,0,0,0,36,0,0,0,143,0,0,0,1,0,0,0,78,1,0,0,143,0,0,0,1,0,0,0,46,1,0,0,151,55,5,0,160,42,1,0,36,1,0,0,151,55,5,0,1,0,0,0,36,0,0,0,66,0,0,0,1,0,0,0,78,1,0,0,66,0,0, 0,1,0,0,0,46,1,0,0,217,55,5,0,174,42,1,0,36,1,0,0,217,55,5,0,1,0,0,0,36,0,0,0,125,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,1,0,0,0,46,1,0,0,86,56,5,0,186,42,1,0,36,1,0,0,86,56,5,0,1,0,0,0,36,0,0,0,50,2,0,0,1,0,0,0,78,1,0,0,50,2,0,0,1,0,0,0,46,1,0,0,136,58,5, 0,200,42,1,0,36,1,0,0,136,58,5,0,1,0,0,0,36,0,0,0,31,2,0,0,1,0,0,0,78,1,0,0,31,2,0,0,1,0,0,0,46,1,0,0,167,60,5,0,211,42,1,0,36,1,0,0,167,60,5,0,1,0,0,0,36,0,0,0,92,1,0,0,1,0,0,0,78,1,0,0,92,1,0,0,1,0,0,0,46,1,0,0,3,62,5,0,224,42,1,0,36,1,0,0,3,62,5,0, 1,0,0,0,36,0,0,0,166,3,0,0,1,0,0,0,78,1,0,0,166,3,0,0,1,0,0,0,46,1,0,0,169,65,5,0,237,42,1,0,36,1,0,0,169,65,5,0,1,0,0,0,36,0,0,0,53,1,0,0,1,0,0,0,78,1,0,0,53,1,0,0,1,0,0,0,46,1,0,0,222,66,5,0,2,43,1,0,36,1,0,0,222,66,5,0,1,0,0,0,36,0,0,0,109,0,0,0,1, 0,0,0,78,1,0,0,109,0,0,0,1,0,0,0,46,1,0,0,75,67,5,0,18,43,1,0,36,1,0,0,75,67,5,0,1,0,0,0,36,0,0,0,65,1,0,0,1,0,0,0,78,1,0,0,65,1,0,0,1,0,0,0,46,1,0,0,140,68,5,0,29,43,1,0,36,1,0,0,140,68,5,0,1,0,0,0,36,0,0,0,8,5,0,0,1,0,0,0,78,1,0,0,8,5,0,0,1,0,0,0,46, 1,0,0,148,73,5,0,42,43,1,0,36,1,0,0,148,73,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,196,73,5,0,60,43,1,0,36,1,0,0,196,73,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,244,73,5,0,79,43,1,0,36, 1,0,0,244,73,5,0,1,0,0,0,36,0,0,0,73,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,1,0,0,0,46,1,0,0,61,74,5,0,91,43,1,0,36,1,0,0,61,74,5,0,1,0,0,0,36,0,0,0,55,1,0,0,1,0,0,0,78,1,0,0,55,1,0,0,1,0,0,0,46,1,0,0,116,75,5,0,109,43,1,0,36,1,0,0,116,75,5,0,1,0,0,0,36,0,0, 0,171,1,0,0,1,0,0,0,78,1,0,0,171,1,0,0,1,0,0,0,46,1,0,0,31,77,5,0,123,43,1,0,36,1,0,0,31,77,5,0,1,0,0,0,36,0,0,0,227,0,0,0,1,0,0,0,78,1,0,0,227,0,0,0,1,0,0,0,46,1,0,0,2,78,5,0,138,43,1,0,36,1,0,0,2,78,5,0,1,0,0,0,36,0,0,0,170,0,0,0,1,0,0,0,78,1,0,0,170, 0,0,0,1,0,0,0,46,1,0,0,172,78,5,0,151,43,1,0,36,1,0,0,172,78,5,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,253,78,5,0,166,43,1,0,36,1,0,0,253,78,5,0,1,0,0,0,36,0,0,0,32,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,1,0,0,0,46,1,0,0,29,79, 5,0,179,43,1,0,36,1,0,0,29,79,5,0,1,0,0,0,36,0,0,0,33,1,0,0,1,0,0,0,78,1,0,0,33,1,0,0,1,0,0,0,46,1,0,0,62,80,5,0,189,43,1,0,36,1,0,0,62,80,5,0,1,0,0,0,36,0,0,0,158,1,0,0,1,0,0,0,78,1,0,0,158,1,0,0,1,0,0,0,46,1,0,0,220,81,5,0,201,43,1,0,36,1,0,0,220,81, 5,0,1,0,0,0,36,0,0,0,85,4,0,0,1,0,0,0,78,1,0,0,85,4,0,0,1,0,0,0,46,1,0,0,49,86,5,0,212,43,1,0,36,1,0,0,49,86,5,0,1,0,0,0,36,0,0,0,44,2,0,0,1,0,0,0,78,1,0,0,44,2,0,0,1,0,0,0,46,1,0,0,93,88,5,0,229,43,1,0,36,1,0,0,93,88,5,0,1,0,0,0,36,0,0,0,0,7,0,0,1,0, 0,0,78,1,0,0,0,7,0,0,1,0,0,0,46,1,0,0,93,95,5,0,246,43,1,0,36,1,0,0,93,95,5,0,1,0,0,0,36,0,0,0,177,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,1,0,0,0,46,1,0,0,14,96,5,0,8,44,1,0,36,1,0,0,14,96,5,0,1,0,0,0,36,0,0,0,97,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,1,0,0,0,46, 1,0,0,111,96,5,0,26,44,1,0,36,1,0,0,111,96,5,0,1,0,0,0,36,0,0,0,45,2,0,0,1,0,0,0,78,1,0,0,45,2,0,0,1,0,0,0,46,1,0,0,156,98,5,0,38,44,1,0,36,1,0,0,156,98,5,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,164,98,5,0,53,44,1,0,36,1, 0,0,164,98,5,0,1,0,0,0,36,0,0,0,209,5,0,0,1,0,0,0,78,1,0,0,209,5,0,0,67,44,1,0,32,9,0,0,0,0,0,0,88,44,1,0,38,9,0,0,88,150,9,0,110,44,1,0,38,10,0,0,44,187,9,0,125,44,1,0,38,10,0,0,48,187,9,0,138,44,1,0,38,10,0,0,52,187,9,0,159,44,1,0,32,11,0,0,0,0,0,0, 1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,171,44,1,0,100,0,0,0,0,0,0,0,196,44,1,0,102,0,1,0,90,96,143,77,1,0,0,0,46,1,0,0,117,104,5,0,4,45,1,0,36,1,0,0,117,104,5,0,1,0,0,0,36,0,0,0,234,0,0,0,1,0,0,0,78,1,0,0,234,0,0,0,1,0,0,0,46,1,0,0,95, 105,5,0,24,45,1,0,36,1,0,0,95,105,5,0,1,0,0,0,36,0,0,0,134,3,0,0,1,0,0,0,78,1,0,0,134,3,0,0,1,0,0,0,46,1,0,0,229,108,5,0,41,45,1,0,36,1,0,0,229,108,5,0,1,0,0,0,36,0,0,0,164,2,0,0,1,0,0,0,78,1,0,0,164,2,0,0,1,0,0,0,46,1,0,0,137,111,5,0,59,45,1,0,36,1, 0,0,137,111,5,0,1,0,0,0,36,0,0,0,251,0,0,0,1,0,0,0,78,1,0,0,251,0,0,0,1,0,0,0,46,1,0,0,132,112,5,0,78,45,1,0,36,1,0,0,132,112,5,0,1,0,0,0,36,0,0,0,174,1,0,0,1,0,0,0,78,1,0,0,174,1,0,0,1,0,0,0,46,1,0,0,50,114,5,0,98,45,1,0,36,1,0,0,50,114,5,0,1,0,0,0, 36,0,0,0,153,1,0,0,1,0,0,0,78,1,0,0,153,1,0,0,1,0,0,0,46,1,0,0,203,115,5,0,114,45,1,0,36,1,0,0,203,115,5,0,1,0,0,0,36,0,0,0,202,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,1,0,0,0,46,1,0,0,149,116,5,0,134,45,1,0,36,1,0,0,149,116,5,0,1,0,0,0,36,0,0,0,204,0,0,0,1, 0,0,0,78,1,0,0,204,0,0,0,1,0,0,0,46,1,0,0,97,117,5,0,147,45,1,0,36,1,0,0,97,117,5,0,1,0,0,0,36,0,0,0,100,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,1,0,0,0,46,1,0,0,197,117,5,0,163,45,1,0,36,1,0,0,197,117,5,0,1,0,0,0,36,0,0,0,195,1,0,0,1,0,0,0,78,1,0,0,195,1,0, 0,1,0,0,0,46,1,0,0,136,119,5,0,176,45,1,0,36,1,0,0,136,119,5,0,1,0,0,0,36,0,0,0,47,2,0,0,1,0,0,0,78,1,0,0,47,2,0,0,1,0,0,0,46,1,0,0,183,121,5,0,195,45,1,0,36,1,0,0,183,121,5,0,1,0,0,0,36,0,0,0,224,0,0,0,1,0,0,0,78,1,0,0,224,0,0,0,1,0,0,0,46,1,0,0,151, 122,5,0,208,45,1,0,36,1,0,0,151,122,5,0,1,0,0,0,36,0,0,0,97,1,0,0,1,0,0,0,78,1,0,0,97,1,0,0,1,0,0,0,46,1,0,0,248,123,5,0,223,45,1,0,36,1,0,0,248,123,5,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,11,124,5,0,237,45,1,0,36,1,0, 0,11,124,5,0,1,0,0,0,36,0,0,0,97,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,1,0,0,0,46,1,0,0,108,124,5,0,254,45,1,0,36,1,0,0,108,124,5,0,1,0,0,0,36,0,0,0,95,0,0,0,1,0,0,0,78,1,0,0,95,0,0,0,1,0,0,0,46,1,0,0,203,124,5,0,10,46,1,0,36,1,0,0,203,124,5,0,1,0,0,0,36,0, 0,0,138,0,0,0,1,0,0,0,78,1,0,0,138,0,0,0,1,0,0,0,46,1,0,0,85,125,5,0,24,46,1,0,36,1,0,0,85,125,5,0,1,0,0,0,36,0,0,0,120,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,1,0,0,0,46,1,0,0,205,125,5,0,37,46,1,0,36,1,0,0,205,125,5,0,1,0,0,0,36,0,0,0,73,0,0,0,1,0,0,0,78, 1,0,0,73,0,0,0,1,0,0,0,46,1,0,0,22,126,5,0,54,46,1,0,36,1,0,0,22,126,5,0,1,0,0,0,36,0,0,0,80,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,1,0,0,0,46,1,0,0,102,126,5,0,67,46,1,0,36,1,0,0,102,126,5,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1, 0,0,149,126,5,0,81,46,1,0,36,1,0,0,149,126,5,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,196,126,5,0,93,46,1,0,36,1,0,0,196,126,5,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,243,126,5,0,107,46,1,0, 36,1,0,0,243,126,5,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,20,127,5,0,120,46,1,0,36,1,0,0,20,127,5,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,53,127,5,0,136,46,1,0,36,1,0,0,53,127,5,0,1,0,0,0, 36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,86,127,5,0,150,46,1,0,36,1,0,0,86,127,5,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,133,127,5,0,169,46,1,0,36,1,0,0,133,127,5,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0, 78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,180,127,5,0,187,46,1,0,36,1,0,0,180,127,5,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,249,127,5,0,200,46,1,0,36,1,0,0,249,127,5,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,1,0,0, 0,46,1,0,0,39,128,5,0,216,46,1,0,36,1,0,0,39,128,5,0,1,0,0,0,36,0,0,0,219,7,0,0,1,0,0,0,78,1,0,0,219,7,0,0,1,0,0,0,46,1,0,0,2,136,5,0,228,46,1,0,36,1,0,0,2,136,5,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,37,136,5,0,249,46, 1,0,36,1,0,0,37,136,5,0,1,0,0,0,36,0,0,0,59,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,1,0,0,0,46,1,0,0,96,136,5,0,4,47,1,0,36,1,0,0,96,136,5,0,1,0,0,0,36,0,0,0,121,5,0,0,1,0,0,0,78,1,0,0,121,5,0,0,20,47,1,0,38,10,0,0,56,187,9,0,34,47,1,0,32,11,0,0,0,0,0,0,1,0, 0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,57,47,1,0,100,0,0,0,0,0,0,0,85,47,1,0,102,0,1,0,91,96,143,77,1,0,0,0,46,1,0,0,217,141,5,0,152,47,1,0,36,1,0,0,217,141,5,0,1,0,0,0,36,0,0,0,80,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,1,0,0,0,46,1,0,0,41,142,5, 0,163,47,1,0,36,1,0,0,41,142,5,0,1,0,0,0,36,0,0,0,100,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,1,0,0,0,46,1,0,0,141,142,5,0,174,47,1,0,36,1,0,0,141,142,5,0,1,0,0,0,36,0,0,0,82,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,1,0,0,0,46,1,0,0,223,142,5,0,188,47,1,0,36,1,0,0,223, 142,5,0,1,0,0,0,36,0,0,0,160,0,0,0,1,0,0,0,78,1,0,0,160,0,0,0,1,0,0,0,46,1,0,0,127,143,5,0,204,47,1,0,36,1,0,0,127,143,5,0,1,0,0,0,36,0,0,0,82,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,1,0,0,0,46,1,0,0,209,143,5,0,229,47,1,0,36,1,0,0,209,143,5,0,1,0,0,0,36,0,0, 0,80,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,1,0,0,0,46,1,0,0,33,144,5,0,244,47,1,0,36,1,0,0,33,144,5,0,1,0,0,0,36,0,0,0,44,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,1,0,0,0,46,1,0,0,77,144,5,0,4,48,1,0,36,1,0,0,77,144,5,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87, 0,0,0,1,0,0,0,46,1,0,0,164,144,5,0,23,48,1,0,36,1,0,0,164,144,5,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,1,0,0,0,46,1,0,0,251,144,5,0,42,48,1,0,36,1,0,0,251,144,5,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,32, 145,5,0,57,48,1,0,36,1,0,0,32,145,5,0,1,0,0,0,36,0,0,0,255,0,0,0,1,0,0,0,78,1,0,0,255,0,0,0,1,0,0,0,46,1,0,0,31,146,5,0,69,48,1,0,36,1,0,0,31,146,5,0,1,0,0,0,36,0,0,0,114,0,0,0,1,0,0,0,78,1,0,0,114,0,0,0,1,0,0,0,46,1,0,0,145,146,5,0,86,48,1,0,36,1,0, 0,145,146,5,0,1,0,0,0,36,0,0,0,222,1,0,0,1,0,0,0,78,1,0,0,222,1,0,0,1,0,0,0,46,1,0,0,111,148,5,0,100,48,1,0,36,1,0,0,111,148,5,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,153,148,5,0,113,48,1,0,36,1,0,0,153,148,5,0,1,0,0,0, 36,0,0,0,239,0,0,0,1,0,0,0,78,1,0,0,239,0,0,0,1,0,0,0,46,1,0,0,136,149,5,0,132,48,1,0,36,1,0,0,136,149,5,0,1,0,0,0,36,0,0,0,178,0,0,0,1,0,0,0,78,1,0,0,178,0,0,0,1,0,0,0,46,1,0,0,58,150,5,0,145,48,1,0,36,1,0,0,58,150,5,0,1,0,0,0,36,0,0,0,54,0,0,0,1,0, 0,0,78,1,0,0,54,0,0,0,1,0,0,0,46,1,0,0,112,150,5,0,161,48,1,0,36,1,0,0,112,150,5,0,1,0,0,0,36,0,0,0,159,0,0,0,1,0,0,0,78,1,0,0,159,0,0,0,1,0,0,0,46,1,0,0,15,151,5,0,176,48,1,0,36,1,0,0,15,151,5,0,1,0,0,0,36,0,0,0,53,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,1, 0,0,0,46,1,0,0,68,151,5,0,189,48,1,0,36,1,0,0,68,151,5,0,1,0,0,0,36,0,0,0,197,1,0,0,1,0,0,0,78,1,0,0,197,1,0,0,1,0,0,0,46,1,0,0,9,153,5,0,203,48,1,0,36,1,0,0,9,153,5,0,1,0,0,0,36,0,0,0,219,0,0,0,1,0,0,0,78,1,0,0,219,0,0,0,1,0,0,0,46,1,0,0,228,153,5,0, 212,48,1,0,36,1,0,0,228,153,5,0,1,0,0,0,36,0,0,0,188,1,0,0,1,0,0,0,78,1,0,0,188,1,0,0,1,0,0,0,46,1,0,0,160,155,5,0,225,48,1,0,36,1,0,0,160,155,5,0,1,0,0,0,36,0,0,0,39,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,1,0,0,0,46,1,0,0,199,155,5,0,235,48,1,0,36,1,0,0,199, 155,5,0,1,0,0,0,36,0,0,0,133,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,1,0,0,0,46,1,0,0,76,156,5,0,246,48,1,0,36,1,0,0,76,156,5,0,1,0,0,0,36,0,0,0,163,1,0,0,1,0,0,0,78,1,0,0,163,1,0,0,1,0,0,0,46,1,0,0,239,157,5,0,255,48,1,0,36,1,0,0,239,157,5,0,1,0,0,0,36,0,0, 0,31,2,0,0,1,0,0,0,78,1,0,0,31,2,0,0,1,0,0,0,46,1,0,0,14,160,5,0,9,49,1,0,36,1,0,0,14,160,5,0,1,0,0,0,36,0,0,0,85,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,1,0,0,0,46,1,0,0,99,160,5,0,20,49,1,0,36,1,0,0,99,160,5,0,1,0,0,0,36,0,0,0,85,0,0,0,1,0,0,0,78,1,0,0,85, 0,0,0,1,0,0,0,46,1,0,0,184,160,5,0,32,49,1,0,36,1,0,0,184,160,5,0,1,0,0,0,36,0,0,0,53,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,1,0,0,0,46,1,0,0,237,160,5,0,42,49,1,0,36,1,0,0,237,160,5,0,1,0,0,0,36,0,0,0,185,0,0,0,1,0,0,0,78,1,0,0,185,0,0,0,1,0,0,0,46,1,0,0,166, 161,5,0,53,49,1,0,36,1,0,0,166,161,5,0,1,0,0,0,36,0,0,0,141,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,1,0,0,0,46,1,0,0,51,162,5,0,63,49,1,0,36,1,0,0,51,162,5,0,1,0,0,0,36,0,0,0,63,2,0,0,1,0,0,0,78,1,0,0,63,2,0,0,1,0,0,0,46,1,0,0,114,164,5,0,75,49,1,0,36,1,0,0, 114,164,5,0,1,0,0,0,36,0,0,0,36,0,0,0,1,0,0,0,78,1,0,0,36,0,0,0,1,0,0,0,46,1,0,0,150,164,5,0,86,49,1,0,36,1,0,0,150,164,5,0,1,0,0,0,36,0,0,0,141,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,1,0,0,0,46,1,0,0,35,165,5,0,98,49,1,0,36,1,0,0,35,165,5,0,1,0,0,0,36,0,0, 0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,127,165,5,0,111,49,1,0,36,1,0,0,127,165,5,0,1,0,0,0,36,0,0,0,165,1,0,0,1,0,0,0,78,1,0,0,165,1,0,0,1,0,0,0,46,1,0,0,36,167,5,0,128,49,1,0,36,1,0,0,36,167,5,0,1,0,0,0,36,0,0,0,137,0,0,0,1,0,0,0,78,1, 0,0,137,0,0,0,1,0,0,0,46,1,0,0,173,167,5,0,143,49,1,0,36,1,0,0,173,167,5,0,1,0,0,0,36,0,0,0,104,0,0,0,1,0,0,0,78,1,0,0,104,0,0,0,1,0,0,0,46,1,0,0,21,168,5,0,156,49,1,0,36,1,0,0,21,168,5,0,1,0,0,0,36,0,0,0,229,3,0,0,1,0,0,0,78,1,0,0,229,3,0,0,1,0,0,0, 46,1,0,0,250,171,5,0,171,49,1,0,36,1,0,0,250,171,5,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,16,172,5,0,185,49,1,0,36,1,0,0,16,172,5,0,1,0,0,0,36,0,0,0,149,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,1,0,0,0,46,1,0,0,165,172,5,0,200, 49,1,0,36,1,0,0,165,172,5,0,1,0,0,0,36,0,0,0,41,1,0,0,1,0,0,0,78,1,0,0,41,1,0,0,1,0,0,0,46,1,0,0,206,173,5,0,212,49,1,0,36,1,0,0,206,173,5,0,1,0,0,0,36,0,0,0,24,2,0,0,1,0,0,0,78,1,0,0,24,2,0,0,1,0,0,0,46,1,0,0,230,175,5,0,226,49,1,0,36,1,0,0,230,175, 5,0,1,0,0,0,36,0,0,0,53,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,1,0,0,0,46,1,0,0,27,176,5,0,239,49,1,0,36,1,0,0,27,176,5,0,1,0,0,0,36,0,0,0,133,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,1,0,0,0,46,1,0,0,160,176,5,0,253,49,1,0,36,1,0,0,160,176,5,0,1,0,0,0,36,0,0,0,106, 0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,1,0,0,0,46,1,0,0,10,177,5,0,10,50,1,0,36,1,0,0,10,177,5,0,1,0,0,0,36,0,0,0,105,1,0,0,1,0,0,0,78,1,0,0,105,1,0,0,1,0,0,0,46,1,0,0,115,178,5,0,27,50,1,0,36,1,0,0,115,178,5,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22, 0,0,0,1,0,0,0,46,1,0,0,137,178,5,0,41,50,1,0,36,1,0,0,137,178,5,0,1,0,0,0,36,0,0,0,141,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,1,0,0,0,46,1,0,0,22,179,5,0,56,50,1,0,36,1,0,0,22,179,5,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,75,50,1,0,38,10,0,0, 60,187,9,0,89,50,1,0,38,10,0,0,64,187,9,0,100,50,1,0,38,10,0,0,68,187,9,0,111,50,1,0,38,10,0,0,72,187,9,0,123,50,1,0,38,10,0,0,76,187,9,0,138,50,1,0,38,10,0,0,80,187,9,0,153,50,1,0,38,10,0,0,84,187,9,0,167,50,1,0,38,10,0,0,88,187,9,0,1,0,0,0,100,1,0, 0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,182,50,1,0,100,0,0,0,0,0,0,0,206,50,1,0,102,0,1,0,91,96,143,77,1,0,0,0,46,1,0,0,70,179,5,0,13,51,1,0,36,1,0,0,70,179,5,0,1,0,0,0,36,0,0,0,210,0,0,0,1,0,0,0,78,1,0,0,210,0,0,0,1,0,0,0,46,1,0,0,24,180,5,0,33,51,1, 0,36,1,0,0,24,180,5,0,1,0,0,0,36,0,0,0,76,3,0,0,1,0,0,0,78,1,0,0,76,3,0,0,1,0,0,0,46,1,0,0,100,183,5,0,50,51,1,0,36,1,0,0,100,183,5,0,1,0,0,0,36,0,0,0,68,2,0,0,1,0,0,0,78,1,0,0,68,2,0,0,1,0,0,0,46,1,0,0,168,185,5,0,68,51,1,0,36,1,0,0,168,185,5,0,1,0, 0,0,36,0,0,0,13,1,0,0,1,0,0,0,78,1,0,0,13,1,0,0,1,0,0,0,46,1,0,0,181,186,5,0,87,51,1,0,36,1,0,0,181,186,5,0,1,0,0,0,36,0,0,0,167,1,0,0,1,0,0,0,78,1,0,0,167,1,0,0,1,0,0,0,46,1,0,0,92,188,5,0,107,51,1,0,36,1,0,0,92,188,5,0,1,0,0,0,36,0,0,0,177,1,0,0,1, 0,0,0,78,1,0,0,177,1,0,0,1,0,0,0,46,1,0,0,13,190,5,0,123,51,1,0,36,1,0,0,13,190,5,0,1,0,0,0,36,0,0,0,12,1,0,0,1,0,0,0,78,1,0,0,12,1,0,0,1,0,0,0,46,1,0,0,25,191,5,0,143,51,1,0,36,1,0,0,25,191,5,0,1,0,0,0,36,0,0,0,225,0,0,0,1,0,0,0,78,1,0,0,225,0,0,0,1, 0,0,0,46,1,0,0,250,191,5,0,156,51,1,0,36,1,0,0,250,191,5,0,1,0,0,0,36,0,0,0,113,0,0,0,1,0,0,0,78,1,0,0,113,0,0,0,1,0,0,0,46,1,0,0,107,192,5,0,172,51,1,0,36,1,0,0,107,192,5,0,1,0,0,0,36,0,0,0,230,1,0,0,1,0,0,0,78,1,0,0,230,1,0,0,1,0,0,0,46,1,0,0,81,194, 5,0,185,51,1,0,36,1,0,0,81,194,5,0,1,0,0,0,36,0,0,0,93,2,0,0,1,0,0,0,78,1,0,0,93,2,0,0,1,0,0,0,46,1,0,0,174,196,5,0,204,51,1,0,36,1,0,0,174,196,5,0,1,0,0,0,36,0,0,0,206,1,0,0,1,0,0,0,78,1,0,0,206,1,0,0,1,0,0,0,46,1,0,0,124,198,5,0,219,51,1,0,36,1,0,0, 124,198,5,0,1,0,0,0,36,0,0,0,214,0,0,0,1,0,0,0,78,1,0,0,214,0,0,0,1,0,0,0,46,1,0,0,82,199,5,0,231,51,1,0,36,1,0,0,82,199,5,0,1,0,0,0,36,0,0,0,125,2,0,0,1,0,0,0,78,1,0,0,125,2,0,0,1,0,0,0,46,1,0,0,207,201,5,0,244,51,1,0,36,1,0,0,207,201,5,0,1,0,0,0,36, 0,0,0,62,3,0,0,1,0,0,0,78,1,0,0,62,3,0,0,1,0,0,0,46,1,0,0,13,205,5,0,1,52,1,0,36,1,0,0,13,205,5,0,1,0,0,0,36,0,0,0,124,3,0,0,1,0,0,0,78,1,0,0,124,3,0,0,1,0,0,0,46,1,0,0,137,208,5,0,15,52,1,0,36,1,0,0,137,208,5,0,1,0,0,0,36,0,0,0,91,0,0,0,1,0,0,0,78,1, 0,0,91,0,0,0,1,0,0,0,46,1,0,0,228,208,5,0,29,52,1,0,36,1,0,0,228,208,5,0,1,0,0,0,36,0,0,0,97,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,1,0,0,0,46,1,0,0,69,209,5,0,46,52,1,0,36,1,0,0,69,209,5,0,1,0,0,0,36,0,0,0,60,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,1,0,0,0,46,1,0, 0,129,209,5,0,63,52,1,0,36,1,0,0,129,209,5,0,1,0,0,0,36,0,0,0,204,0,0,0,1,0,0,0,78,1,0,0,204,0,0,0,1,0,0,0,46,1,0,0,77,210,5,0,78,52,1,0,36,1,0,0,77,210,5,0,1,0,0,0,36,0,0,0,80,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,1,0,0,0,46,1,0,0,157,210,5,0,91,52,1,0,36, 1,0,0,157,210,5,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,204,210,5,0,105,52,1,0,36,1,0,0,204,210,5,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,251,210,5,0,117,52,1,0,36,1,0,0,251,210,5,0,1,0,0, 0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,42,211,5,0,131,52,1,0,36,1,0,0,42,211,5,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,75,211,5,0,144,52,1,0,36,1,0,0,75,211,5,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0, 78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,108,211,5,0,160,52,1,0,36,1,0,0,108,211,5,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,141,211,5,0,174,52,1,0,36,1,0,0,141,211,5,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0, 0,46,1,0,0,188,211,5,0,192,52,1,0,36,1,0,0,188,211,5,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,235,211,5,0,211,52,1,0,36,1,0,0,235,211,5,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,48,212,5,0,224, 52,1,0,36,1,0,0,48,212,5,0,1,0,0,0,36,0,0,0,21,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,1,0,0,0,46,1,0,0,69,212,5,0,246,52,1,0,36,1,0,0,69,212,5,0,1,0,0,0,36,0,0,0,21,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,1,0,0,0,46,1,0,0,90,212,5,0,12,53,1,0,36,1,0,0,90,212,5,0,1, 0,0,0,36,0,0,0,30,8,0,0,1,0,0,0,78,1,0,0,30,8,0,0,1,0,0,0,46,1,0,0,120,220,5,0,26,53,1,0,36,1,0,0,120,220,5,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,155,220,5,0,47,53,1,0,36,1,0,0,155,220,5,0,1,0,0,0,36,0,0,0,41,0,0,0,1, 0,0,0,78,1,0,0,41,0,0,0,1,0,0,0,46,1,0,0,196,220,5,0,59,53,1,0,36,1,0,0,196,220,5,0,1,0,0,0,36,0,0,0,41,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,1,0,0,0,46,1,0,0,237,220,5,0,70,53,1,0,36,1,0,0,237,220,5,0,1,0,0,0,36,0,0,0,59,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,1, 0,0,0,46,1,0,0,40,221,5,0,81,53,1,0,36,1,0,0,40,221,5,0,1,0,0,0,36,0,0,0,163,10,0,0,1,0,0,0,78,1,0,0,163,10,0,0,97,53,1,0,38,10,0,0,92,187,9,0,111,53,1,0,38,10,0,0,96,187,9,0,129,53,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0, 0,0,0,0,152,53,1,0,100,0,0,0,0,0,0,0,178,53,1,0,102,0,1,0,92,96,143,77,1,0,0,0,46,1,0,0,203,231,5,0,243,53,1,0,36,1,0,0,203,231,5,0,1,0,0,0,36,0,0,0,220,0,0,0,1,0,0,0,78,1,0,0,220,0,0,0,1,0,0,0,46,1,0,0,167,232,5,0,8,54,1,0,36,1,0,0,167,232,5,0,1,0,0, 0,36,0,0,0,171,2,0,0,1,0,0,0,78,1,0,0,171,2,0,0,1,0,0,0,46,1,0,0,82,235,5,0,26,54,1,0,36,1,0,0,82,235,5,0,1,0,0,0,36,0,0,0,8,2,0,0,1,0,0,0,78,1,0,0,8,2,0,0,1,0,0,0,46,1,0,0,90,237,5,0,45,54,1,0,36,1,0,0,90,237,5,0,1,0,0,0,36,0,0,0,223,0,0,0,1,0,0,0,78, 1,0,0,223,0,0,0,1,0,0,0,46,1,0,0,57,238,5,0,65,54,1,0,36,1,0,0,57,238,5,0,1,0,0,0,36,0,0,0,33,1,0,0,1,0,0,0,78,1,0,0,33,1,0,0,1,0,0,0,46,1,0,0,90,239,5,0,86,54,1,0,36,1,0,0,90,239,5,0,1,0,0,0,36,0,0,0,157,1,0,0,1,0,0,0,78,1,0,0,157,1,0,0,1,0,0,0,46,1, 0,0,247,240,5,0,103,54,1,0,36,1,0,0,247,240,5,0,1,0,0,0,36,0,0,0,202,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,1,0,0,0,46,1,0,0,193,241,5,0,124,54,1,0,36,1,0,0,193,241,5,0,1,0,0,0,36,0,0,0,225,0,0,0,1,0,0,0,78,1,0,0,225,0,0,0,1,0,0,0,46,1,0,0,162,242,5,0,138, 54,1,0,36,1,0,0,162,242,5,0,1,0,0,0,36,0,0,0,105,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,1,0,0,0,46,1,0,0,11,243,5,0,155,54,1,0,36,1,0,0,11,243,5,0,1,0,0,0,36,0,0,0,44,2,0,0,1,0,0,0,78,1,0,0,44,2,0,0,1,0,0,0,46,1,0,0,55,245,5,0,169,54,1,0,36,1,0,0,55,245,5, 0,1,0,0,0,36,0,0,0,251,0,0,0,1,0,0,0,78,1,0,0,251,0,0,0,1,0,0,0,46,1,0,0,50,246,5,0,191,54,1,0,36,1,0,0,50,246,5,0,1,0,0,0,36,0,0,0,239,1,0,0,1,0,0,0,78,1,0,0,239,1,0,0,1,0,0,0,46,1,0,0,33,248,5,0,213,54,1,0,36,1,0,0,33,248,5,0,1,0,0,0,36,0,0,0,124,2, 0,0,1,0,0,0,78,1,0,0,124,2,0,0,1,0,0,0,46,1,0,0,157,250,5,0,233,54,1,0,36,1,0,0,157,250,5,0,1,0,0,0,36,0,0,0,73,1,0,0,1,0,0,0,78,1,0,0,73,1,0,0,1,0,0,0,46,1,0,0,230,251,5,0,247,54,1,0,36,1,0,0,230,251,5,0,1,0,0,0,36,0,0,0,229,1,0,0,1,0,0,0,78,1,0,0,229, 1,0,0,1,0,0,0,46,1,0,0,203,253,5,0,7,55,1,0,36,1,0,0,203,253,5,0,1,0,0,0,36,0,0,0,181,1,0,0,1,0,0,0,78,1,0,0,181,1,0,0,1,0,0,0,46,1,0,0,128,255,5,0,23,55,1,0,36,1,0,0,128,255,5,0,1,0,0,0,36,0,0,0,48,1,0,0,1,0,0,0,78,1,0,0,48,1,0,0,1,0,0,0,46,1,0,0,176, 0,6,0,38,55,1,0,36,1,0,0,176,0,6,0,1,0,0,0,36,0,0,0,153,0,0,0,1,0,0,0,78,1,0,0,153,0,0,0,1,0,0,0,46,1,0,0,73,1,6,0,56,55,1,0,36,1,0,0,73,1,6,0,1,0,0,0,36,0,0,0,188,1,0,0,1,0,0,0,78,1,0,0,188,1,0,0,1,0,0,0,46,1,0,0,5,3,6,0,69,55,1,0,36,1,0,0,5,3,6,0,1, 0,0,0,36,0,0,0,55,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,1,0,0,0,46,1,0,0,60,3,6,0,84,55,1,0,36,1,0,0,60,3,6,0,1,0,0,0,36,0,0,0,115,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,1,0,0,0,46,1,0,0,175,3,6,0,98,55,1,0,36,1,0,0,175,3,6,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78, 1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,222,3,6,0,113,55,1,0,36,1,0,0,222,3,6,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,13,4,6,0,126,55,1,0,36,1,0,0,13,4,6,0,1,0,0,0,36,0,0,0,109,0,0,0,1,0,0,0,78,1,0,0,109,0,0,0,1,0,0,0,46,1,0,0, 122,4,6,0,141,55,1,0,36,1,0,0,122,4,6,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,169,4,6,0,156,55,1,0,36,1,0,0,169,4,6,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,202,4,6,0,170,55,1,0,36,1,0,0,202, 4,6,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,235,4,6,0,187,55,1,0,36,1,0,0,235,4,6,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,12,5,6,0,202,55,1,0,36,1,0,0,12,5,6,0,1,0,0,0,36,0,0,0,47,0,0,0,1, 0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,59,5,6,0,221,55,1,0,36,1,0,0,59,5,6,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,106,5,6,0,241,55,1,0,36,1,0,0,106,5,6,0,1,0,0,0,36,0,0,0,66,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,1,0,0,0,46, 1,0,0,172,5,6,0,254,55,1,0,36,1,0,0,172,5,6,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,253,5,6,0,11,56,1,0,36,1,0,0,253,5,6,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,66,6,6,0,25,56,1,0,36,1,0,0, 66,6,6,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,114,6,6,0,41,56,1,0,36,1,0,0,114,6,6,0,1,0,0,0,36,0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,206,6,6,0,59,56,1,0,36,1,0,0,206,6,6,0,1,0,0,0,36,0,0,0,7,9,0,0, 1,0,0,0,78,1,0,0,7,9,0,0,1,0,0,0,46,1,0,0,213,15,6,0,72,56,1,0,36,1,0,0,213,15,6,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,248,15,6,0,93,56,1,0,36,1,0,0,248,15,6,0,1,0,0,0,36,0,0,0,59,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,1,0,0, 0,46,1,0,0,51,16,6,0,107,56,1,0,36,1,0,0,51,16,6,0,1,0,0,0,36,0,0,0,105,6,0,0,1,0,0,0,78,1,0,0,105,6,0,0,124,56,1,0,38,10,0,0,100,187,9,0,139,56,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,163,56,1,0,100,0,0,0,0,0,0,0, 189,56,1,0,102,0,1,0,92,96,143,77,1,0,0,0,46,1,0,0,156,22,6,0,254,56,1,0,36,1,0,0,156,22,6,0,1,0,0,0,36,0,0,0,228,0,0,0,1,0,0,0,78,1,0,0,228,0,0,0,1,0,0,0,46,1,0,0,128,23,6,0,13,57,1,0,36,1,0,0,128,23,6,0,1,0,0,0,36,0,0,0,181,1,0,0,1,0,0,0,78,1,0,0,181, 1,0,0,1,0,0,0,46,1,0,0,53,25,6,0,29,57,1,0,36,1,0,0,53,25,6,0,1,0,0,0,36,0,0,0,118,0,0,0,1,0,0,0,78,1,0,0,118,0,0,0,1,0,0,0,46,1,0,0,171,25,6,0,45,57,1,0,36,1,0,0,171,25,6,0,1,0,0,0,36,0,0,0,124,6,0,0,1,0,0,0,78,1,0,0,124,6,0,0,1,0,0,0,46,1,0,0,39,32, 6,0,58,57,1,0,36,1,0,0,39,32,6,0,1,0,0,0,36,0,0,0,37,4,0,0,1,0,0,0,78,1,0,0,37,4,0,0,1,0,0,0,46,1,0,0,76,36,6,0,72,57,1,0,36,1,0,0,76,36,6,0,1,0,0,0,36,0,0,0,236,1,0,0,1,0,0,0,78,1,0,0,236,1,0,0,1,0,0,0,46,1,0,0,56,38,6,0,87,57,1,0,36,1,0,0,56,38,6,0, 1,0,0,0,36,0,0,0,232,2,0,0,1,0,0,0,78,1,0,0,232,2,0,0,1,0,0,0,46,1,0,0,32,41,6,0,103,57,1,0,36,1,0,0,32,41,6,0,1,0,0,0,36,0,0,0,179,2,0,0,1,0,0,0,78,1,0,0,179,2,0,0,1,0,0,0,46,1,0,0,211,43,6,0,115,57,1,0,36,1,0,0,211,43,6,0,1,0,0,0,36,0,0,0,7,2,0,0,1, 0,0,0,78,1,0,0,7,2,0,0,1,0,0,0,46,1,0,0,218,45,6,0,131,57,1,0,36,1,0,0,218,45,6,0,1,0,0,0,36,0,0,0,175,0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,1,0,0,0,46,1,0,0,137,46,6,0,140,57,1,0,36,1,0,0,137,46,6,0,1,0,0,0,36,0,0,0,110,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,1, 0,0,0,46,1,0,0,247,46,6,0,152,57,1,0,36,1,0,0,247,46,6,0,1,0,0,0,36,0,0,0,144,1,0,0,1,0,0,0,78,1,0,0,144,1,0,0,1,0,0,0,46,1,0,0,135,48,6,0,161,57,1,0,36,1,0,0,135,48,6,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,1,0,0,0,46,1,0,0,222,48,6,0, 178,57,1,0,36,1,0,0,222,48,6,0,1,0,0,0,36,0,0,0,23,3,0,0,1,0,0,0,78,1,0,0,23,3,0,0,1,0,0,0,46,1,0,0,245,51,6,0,188,57,1,0,36,1,0,0,245,51,6,0,1,0,0,0,36,0,0,0,8,2,0,0,1,0,0,0,78,1,0,0,8,2,0,0,1,0,0,0,46,1,0,0,253,53,6,0,203,57,1,0,36,1,0,0,253,53,6,0, 1,0,0,0,36,0,0,0,128,1,0,0,1,0,0,0,78,1,0,0,128,1,0,0,1,0,0,0,46,1,0,0,125,55,6,0,214,57,1,0,36,1,0,0,125,55,6,0,1,0,0,0,36,0,0,0,200,0,0,0,1,0,0,0,78,1,0,0,200,0,0,0,1,0,0,0,46,1,0,0,69,56,6,0,223,57,1,0,36,1,0,0,69,56,6,0,1,0,0,0,36,0,0,0,47,0,0,0, 1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,116,56,6,0,233,57,1,0,36,1,0,0,116,56,6,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,163,56,6,0,241,57,1,0,36,1,0,0,163,56,6,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1, 0,0,0,46,1,0,0,210,56,6,0,251,57,1,0,36,1,0,0,210,56,6,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,243,56,6,0,7,58,1,0,36,1,0,0,243,56,6,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,20,57,6,0,17,58, 1,0,36,1,0,0,20,57,6,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,67,57,6,0,31,58,1,0,36,1,0,0,67,57,6,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,114,57,6,0,46,58,1,0,36,1,0,0,114,57,6,0,1,0,0,0,36, 0,0,0,53,1,0,0,1,0,0,0,78,1,0,0,53,1,0,0,1,0,0,0,46,1,0,0,167,58,6,0,56,58,1,0,36,1,0,0,167,58,6,0,1,0,0,0,36,0,0,0,53,1,0,0,1,0,0,0,78,1,0,0,53,1,0,0,1,0,0,0,46,1,0,0,220,59,6,0,64,58,1,0,36,1,0,0,220,59,6,0,1,0,0,0,36,0,0,0,170,0,0,0,1,0,0,0,78,1,0, 0,170,0,0,0,1,0,0,0,46,1,0,0,134,60,6,0,73,58,1,0,36,1,0,0,134,60,6,0,1,0,0,0,36,0,0,0,97,7,0,0,1,0,0,0,78,1,0,0,97,7,0,0,1,0,0,0,46,1,0,0,231,67,6,0,81,58,1,0,36,1,0,0,231,67,6,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,10, 68,6,0,102,58,1,0,36,1,0,0,10,68,6,0,1,0,0,0,36,0,0,0,59,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,1,0,0,0,46,1,0,0,69,68,6,0,111,58,1,0,36,1,0,0,69,68,6,0,1,0,0,0,36,0,0,0,55,4,0,0,1,0,0,0,78,1,0,0,55,4,0,0,128,58,1,0,38,10,0,0,104,187,9,0,138,58,1,0,32,11,0, 0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,157,58,1,0,100,0,0,0,0,0,0,0,180,58,1,0,102,0,1,0,92,96,143,77,1,0,0,0,46,1,0,0,124,72,6,0,242,58,1,0,36,1,0,0,124,72,6,0,1,0,0,0,36,0,0,0,57,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,1,0,0,0,46, 1,0,0,181,72,6,0,1,59,1,0,36,1,0,0,181,72,6,0,1,0,0,0,36,0,0,0,27,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,1,0,0,0,46,1,0,0,208,72,6,0,14,59,1,0,36,1,0,0,208,72,6,0,1,0,0,0,36,0,0,0,95,0,0,0,1,0,0,0,78,1,0,0,95,0,0,0,1,0,0,0,46,1,0,0,47,73,6,0,30,59,1,0,36,1, 0,0,47,73,6,0,1,0,0,0,36,0,0,0,194,0,0,0,1,0,0,0,78,1,0,0,194,0,0,0,1,0,0,0,46,1,0,0,241,73,6,0,43,59,1,0,36,1,0,0,241,73,6,0,1,0,0,0,36,0,0,0,91,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,1,0,0,0,46,1,0,0,76,74,6,0,61,59,1,0,36,1,0,0,76,74,6,0,1,0,0,0,36,0,0,0, 41,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,1,0,0,0,46,1,0,0,117,74,6,0,77,59,1,0,36,1,0,0,117,74,6,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,196,74,6,0,96,59,1,0,36,1,0,0,196,74,6,0,1,0,0,0,36,0,0,0,96,5,0,0,1,0,0,0,78,1,0,0,96,5, 0,0,1,0,0,0,46,1,0,0,36,80,6,0,109,59,1,0,36,1,0,0,36,80,6,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,71,80,6,0,130,59,1,0,36,1,0,0,71,80,6,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41, 190,0,0,100,0,0,0,0,0,0,0,152,59,1,0,100,0,0,0,0,0,0,0,177,59,1,0,102,0,1,0,92,96,143,77,1,0,0,0,46,1,0,0,116,80,6,0,241,59,1,0,36,1,0,0,116,80,6,0,1,0,0,0,36,0,0,0,55,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,1,0,0,0,46,1,0,0,171,80,6,0,253,59,1,0,36,1,0,0,171, 80,6,0,1,0,0,0,36,0,0,0,57,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,1,0,0,0,46,1,0,0,228,80,6,0,10,60,1,0,36,1,0,0,228,80,6,0,1,0,0,0,36,0,0,0,166,0,0,0,1,0,0,0,78,1,0,0,166,0,0,0,1,0,0,0,46,1,0,0,138,81,6,0,28,60,1,0,36,1,0,0,138,81,6,0,1,0,0,0,36,0,0,0,42,0, 0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,180,81,6,0,49,60,1,0,36,1,0,0,180,81,6,0,1,0,0,0,36,0,0,0,63,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,1,0,0,0,46,1,0,0,243,81,6,0,63,60,1,0,36,1,0,0,243,81,6,0,1,0,0,0,36,0,0,0,21,8,0,0,1,0,0,0,78,1,0,0,21,8,0,0, 1,0,0,0,46,1,0,0,8,90,6,0,76,60,1,0,36,1,0,0,8,90,6,0,1,0,0,0,36,0,0,0,134,2,0,0,1,0,0,0,78,1,0,0,134,2,0,0,1,0,0,0,46,1,0,0,142,92,6,0,92,60,1,0,36,1,0,0,142,92,6,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,177,92,6,0,113, 60,1,0,36,1,0,0,177,92,6,0,1,0,0,0,36,0,0,0,177,0,0,0,1,0,0,0,78,1,0,0,177,0,0,0,1,0,0,0,46,1,0,0,98,93,6,0,125,60,1,0,36,1,0,0,98,93,6,0,1,0,0,0,36,0,0,0,104,1,0,0,1,0,0,0,78,1,0,0,104,1,0,0,1,0,0,0,46,1,0,0,202,94,6,0,138,60,1,0,36,1,0,0,202,94,6,0, 1,0,0,0,36,0,0,0,218,2,0,0,1,0,0,0,78,1,0,0,218,2,0,0,1,0,0,0,46,1,0,0,164,97,6,0,156,60,1,0,36,1,0,0,164,97,6,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,212,97,6,0,172,60,1,0,36,1,0,0,212,97,6,0,1,0,0,0,36,0,0,0,58,2,0,0, 1,0,0,0,78,1,0,0,58,2,0,0,1,0,0,0,46,1,0,0,14,100,6,0,188,60,1,0,36,1,0,0,14,100,6,0,1,0,0,0,36,0,0,0,173,0,0,0,1,0,0,0,78,1,0,0,173,0,0,0,1,0,0,0,46,1,0,0,187,100,6,0,202,60,1,0,36,1,0,0,187,100,6,0,1,0,0,0,36,0,0,0,13,0,0,0,1,0,0,0,78,1,0,0,13,0,0, 0,1,0,0,0,46,1,0,0,200,100,6,0,219,60,1,0,36,1,0,0,200,100,6,0,1,0,0,0,36,0,0,0,14,0,0,0,1,0,0,0,78,1,0,0,14,0,0,0,1,0,0,0,46,1,0,0,214,100,6,0,234,60,1,0,36,1,0,0,214,100,6,0,1,0,0,0,36,0,0,0,55,1,0,0,1,0,0,0,78,1,0,0,55,1,0,0,1,0,0,0,46,1,0,0,13,102, 6,0,0,61,1,0,36,1,0,0,13,102,6,0,1,0,0,0,36,0,0,0,151,2,0,0,1,0,0,0,78,1,0,0,151,2,0,0,1,0,0,0,46,1,0,0,164,104,6,0,23,61,1,0,36,1,0,0,164,104,6,0,1,0,0,0,36,0,0,0,120,5,0,0,1,0,0,0,78,1,0,0,120,5,0,0,1,0,0,0,46,1,0,0,28,110,6,0,36,61,1,0,36,1,0,0,28, 110,6,0,1,0,0,0,36,0,0,0,114,0,0,0,1,0,0,0,78,1,0,0,114,0,0,0,1,0,0,0,46,1,0,0,142,110,6,0,51,61,1,0,36,1,0,0,142,110,6,0,1,0,0,0,36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,12,111,6,0,67,61,1,0,36,1,0,0,12,111,6,0,1,0,0,0,36,0,0,0, 95,3,0,0,1,0,0,0,78,1,0,0,95,3,0,0,1,0,0,0,46,1,0,0,107,114,6,0,80,61,1,0,36,1,0,0,107,114,6,0,1,0,0,0,36,0,0,0,39,1,0,0,1,0,0,0,78,1,0,0,39,1,0,0,1,0,0,0,46,1,0,0,146,115,6,0,104,61,1,0,36,1,0,0,146,115,6,0,1,0,0,0,36,0,0,0,39,1,0,0,1,0,0,0,78,1,0,0, 39,1,0,0,1,0,0,0,46,1,0,0,185,116,6,0,126,61,1,0,36,1,0,0,185,116,6,0,1,0,0,0,36,0,0,0,142,4,0,0,1,0,0,0,78,1,0,0,142,4,0,0,1,0,0,0,46,1,0,0,71,121,6,0,140,61,1,0,36,1,0,0,71,121,6,0,1,0,0,0,36,0,0,0,227,59,0,0,1,0,0,0,78,1,0,0,227,59,0,0,1,0,0,0,46, 1,0,0,42,181,6,0,156,61,1,0,36,1,0,0,42,181,6,0,1,0,0,0,36,0,0,0,93,1,0,0,1,0,0,0,78,1,0,0,93,1,0,0,1,0,0,0,46,1,0,0,135,182,6,0,170,61,1,0,36,1,0,0,135,182,6,0,1,0,0,0,36,0,0,0,115,1,0,0,1,0,0,0,78,1,0,0,115,1,0,0,1,0,0,0,46,1,0,0,250,183,6,0,187,61, 1,0,36,1,0,0,250,183,6,0,1,0,0,0,36,0,0,0,167,0,0,0,1,0,0,0,78,1,0,0,167,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,202,61,1,0,100,0,0,0,0,0,0,0,226,61,1,0,102,0,1,0,93,96,143,77,1,0,0,0,46,1,0,0,164,184,6,0,33,62,1,0,36,1,0,0,164,184, 6,0,1,0,0,0,36,0,0,0,62,0,0,0,1,0,0,0,78,1,0,0,62,0,0,0,1,0,0,0,46,1,0,0,226,184,6,0,53,62,1,0,36,1,0,0,226,184,6,0,1,0,0,0,36,0,0,0,123,0,0,0,1,0,0,0,78,1,0,0,123,0,0,0,1,0,0,0,46,1,0,0,93,185,6,0,69,62,1,0,36,1,0,0,93,185,6,0,1,0,0,0,36,0,0,0,147,0, 0,0,1,0,0,0,78,1,0,0,147,0,0,0,1,0,0,0,46,1,0,0,240,185,6,0,88,62,1,0,36,1,0,0,240,185,6,0,1,0,0,0,36,0,0,0,147,0,0,0,1,0,0,0,78,1,0,0,147,0,0,0,1,0,0,0,46,1,0,0,131,186,6,0,105,62,1,0,36,1,0,0,131,186,6,0,1,0,0,0,36,0,0,0,147,0,0,0,1,0,0,0,78,1,0,0, 147,0,0,0,1,0,0,0,46,1,0,0,22,187,6,0,123,62,1,0,36,1,0,0,22,187,6,0,1,0,0,0,36,0,0,0,141,1,0,0,1,0,0,0,78,1,0,0,141,1,0,0,1,0,0,0,46,1,0,0,163,188,6,0,139,62,1,0,36,1,0,0,163,188,6,0,1,0,0,0,36,0,0,0,40,3,0,0,1,0,0,0,78,1,0,0,40,3,0,0,1,0,0,0,46,1,0, 0,203,191,6,0,150,62,1,0,36,1,0,0,203,191,6,0,1,0,0,0,36,0,0,0,223,0,0,0,1,0,0,0,78,1,0,0,223,0,0,0,1,0,0,0,46,1,0,0,170,192,6,0,168,62,1,0,36,1,0,0,170,192,6,0,1,0,0,0,36,0,0,0,144,3,0,0,1,0,0,0,78,1,0,0,144,3,0,0,1,0,0,0,46,1,0,0,58,196,6,0,185,62, 1,0,36,1,0,0,58,196,6,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,75,196,6,0,200,62,1,0,36,1,0,0,75,196,6,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,92,196,6,0,218,62,1,0,36,1,0,0,92,196,6,0,1,0, 0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,109,196,6,0,236,62,1,0,36,1,0,0,109,196,6,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,126,196,6,0,253,62,1,0,36,1,0,0,126,196,6,0,1,0,0,0,36,0,0,0,17,0,0,0,1, 0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,143,196,6,0,12,63,1,0,36,1,0,0,143,196,6,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,160,196,6,0,31,63,1,0,36,1,0,0,160,196,6,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1, 0,0,0,46,1,0,0,177,196,6,0,48,63,1,0,36,1,0,0,177,196,6,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,194,196,6,0,71,63,1,0,36,1,0,0,194,196,6,0,1,0,0,0,36,0,0,0,15,0,0,0,1,0,0,0,78,1,0,0,15,0,0,0,1,0,0,0,46,1,0,0,209,196,6,0, 86,63,1,0,36,1,0,0,209,196,6,0,1,0,0,0,36,0,0,0,16,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,1,0,0,0,46,1,0,0,225,196,6,0,105,63,1,0,36,1,0,0,225,196,6,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,242,196,6,0,126,63,1,0,36,1,0,0,242,196, 6,0,1,0,0,0,36,0,0,0,16,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,1,0,0,0,46,1,0,0,2,197,6,0,146,63,1,0,36,1,0,0,2,197,6,0,1,0,0,0,36,0,0,0,15,0,0,0,1,0,0,0,78,1,0,0,15,0,0,0,1,0,0,0,46,1,0,0,17,197,6,0,168,63,1,0,36,1,0,0,17,197,6,0,1,0,0,0,36,0,0,0,18,0,0,0, 1,0,0,0,78,1,0,0,18,0,0,0,1,0,0,0,46,1,0,0,35,197,6,0,189,63,1,0,36,1,0,0,35,197,6,0,1,0,0,0,36,0,0,0,88,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,1,0,0,0,46,1,0,0,123,197,6,0,208,63,1,0,36,1,0,0,123,197,6,0,1,0,0,0,36,0,0,0,96,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0, 1,0,0,0,46,1,0,0,219,197,6,0,230,63,1,0,36,1,0,0,219,197,6,0,1,0,0,0,36,0,0,0,25,0,0,0,1,0,0,0,78,1,0,0,25,0,0,0,1,0,0,0,46,1,0,0,244,197,6,0,252,63,1,0,36,1,0,0,244,197,6,0,1,0,0,0,36,0,0,0,16,0,0,0,1,0,0,0,78,1,0,0,16,0,0,0,1,0,0,0,46,1,0,0,4,198,6, 0,14,64,1,0,36,1,0,0,4,198,6,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,37,198,6,0,30,64,1,0,36,1,0,0,37,198,6,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,54,198,6,0,47,64,1,0,36,1,0,0,54,198,6,0, 1,0,0,0,36,0,0,0,14,0,0,0,1,0,0,0,78,1,0,0,14,0,0,0,1,0,0,0,46,1,0,0,68,198,6,0,64,64,1,0,36,1,0,0,68,198,6,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,85,198,6,0,87,64,1,0,36,1,0,0,85,198,6,0,1,0,0,0,36,0,0,0,14,0,0,0,1,0, 0,0,78,1,0,0,14,0,0,0,1,0,0,0,46,1,0,0,99,198,6,0,110,64,1,0,36,1,0,0,99,198,6,0,1,0,0,0,36,0,0,0,57,1,0,0,1,0,0,0,78,1,0,0,57,1,0,0,1,0,0,0,46,1,0,0,156,199,6,0,120,64,1,0,36,1,0,0,156,199,6,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0, 0,0,46,1,0,0,191,199,6,0,141,64,1,0,36,1,0,0,191,199,6,0,1,0,0,0,36,0,0,0,27,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,1,0,0,0,46,1,0,0,218,199,6,0,149,64,1,0,36,1,0,0,218,199,6,0,1,0,0,0,36,0,0,0,46,1,0,0,1,0,0,0,78,1,0,0,46,1,0,0,1,0,0,0,46,1,0,0,8,201,6,0,164, 64,1,0,36,1,0,0,8,201,6,0,1,0,0,0,36,0,0,0,166,2,0,0,1,0,0,0,78,1,0,0,166,2,0,0,1,0,0,0,46,1,0,0,174,203,6,0,178,64,1,0,36,1,0,0,174,203,6,0,1,0,0,0,36,0,0,0,38,1,0,0,1,0,0,0,78,1,0,0,38,1,0,0,1,0,0,0,46,1,0,0,212,204,6,0,189,64,1,0,36,1,0,0,212,204, 6,0,1,0,0,0,36,0,0,0,24,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,1,0,0,0,46,1,0,0,236,204,6,0,200,64,1,0,36,1,0,0,236,204,6,0,1,0,0,0,36,0,0,0,193,7,0,0,1,0,0,0,78,1,0,0,193,7,0,0,1,0,0,0,46,1,0,0,173,212,6,0,214,64,1,0,36,1,0,0,173,212,6,0,1,0,0,0,36,0,0,0,57, 1,0,0,1,0,0,0,78,1,0,0,57,1,0,0,1,0,0,0,46,1,0,0,230,213,6,0,224,64,1,0,36,1,0,0,230,213,6,0,1,0,0,0,36,0,0,0,245,0,0,0,1,0,0,0,78,1,0,0,245,0,0,0,1,0,0,0,46,1,0,0,219,214,6,0,240,64,1,0,36,1,0,0,219,214,6,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0, 8,0,0,0,1,0,0,0,46,1,0,0,227,214,6,0,248,64,1,0,36,1,0,0,227,214,6,0,1,0,0,0,36,0,0,0,134,0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,1,0,0,0,46,1,0,0,105,215,6,0,255,64,1,0,36,1,0,0,105,215,6,0,1,0,0,0,36,0,0,0,80,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,7,65,1,0,38,9, 0,0,128,150,9,0,25,65,1,0,32,9,0,0,0,0,0,0,36,65,1,0,32,9,0,0,0,0,0,0,45,65,1,0,32,9,0,0,0,0,0,0,55,65,1,0,32,9,0,0,0,0,0,0,63,65,1,0,32,9,0,0,0,0,0,0,71,65,1,0,32,9,0,0,0,0,0,0,83,65,1,0,32,9,0,0,0,0,0,0,93,65,1,0,32,9,0,0,0,0,0,0,99,65,1,0,32,9,0,0, 0,0,0,0,105,65,1,0,32,9,0,0,0,0,0,0,110,65,1,0,32,9,0,0,0,0,0,0,115,65,1,0,32,9,0,0,0,0,0,0,119,65,1,0,38,9,0,0,32,151,9,0,128,65,1,0,38,10,0,0,128,187,9,0,143,65,1,0,38,10,0,0,160,187,9,0,152,65,1,0,38,10,0,0,160,203,9,0,167,65,1,0,32,11,0,0,0,0,0,0, 175,65,1,0,32,11,0,0,0,0,0,0,191,65,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,207,65,1,0,100,0,0,0,0,0,0,0,230,65,1,0,102,0,1,0,93,96,143,77,1,0,0,0,46,1,0,0,185,215,6,0,36,66,1,0,36,1,0,0,185,215,6,0,1,0,0,0,36,0,0, 0,218,0,0,0,1,0,0,0,78,1,0,0,218,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,47,66,1,0,100,0,0,0,0,0,0,0,70,66,1,0,102,0,1,0,93,96,143,77,1,0,0,0,46,1,0,0,147,216,6,0,132,66,1,0,36,1,0,0,147,216,6,0,1,0,0,0,36,0,0,0,55,0,0,0,1,0,0,0, 78,1,0,0,55,0,0,0,1,0,0,0,46,1,0,0,202,216,6,0,146,66,1,0,36,1,0,0,202,216,6,0,1,0,0,0,36,0,0,0,49,0,0,0,1,0,0,0,78,1,0,0,49,0,0,0,1,0,0,0,46,1,0,0,251,216,6,0,157,66,1,0,36,1,0,0,251,216,6,0,1,0,0,0,36,0,0,0,184,0,0,0,1,0,0,0,78,1,0,0,184,0,0,0,1,0, 0,0,46,1,0,0,179,217,6,0,170,66,1,0,36,1,0,0,179,217,6,0,1,0,0,0,36,0,0,0,99,7,0,0,1,0,0,0,78,1,0,0,99,7,0,0,1,0,0,0,46,1,0,0,22,225,6,0,181,66,1,0,36,1,0,0,22,225,6,0,1,0,0,0,36,0,0,0,53,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,197,66,1,0,38,10,0,0,164,203,9, 0,207,66,1,0,32,11,0,0,0,0,0,0,222,66,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,232,66,1,0,100,0,0,0,0,0,0,0,1,67,1,0,102,0,1,0,93,96,143,77,1,0,0,0,46,1,0,0,75,225,6,0,65,67,1,0,36,1,0,0,75,225,6,0,1,0,0,0,36,0,0,0, 77,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,1,0,0,0,46,1,0,0,152,225,6,0,75,67,1,0,36,1,0,0,152,225,6,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,171,225,6,0,86,67,1,0,36,1,0,0,171,225,6,0,1,0,0,0,36,0,0,0,102,0,0,0,1,0,0,0,78,1,0,0, 102,0,0,0,1,0,0,0,46,1,0,0,17,226,6,0,97,67,1,0,36,1,0,0,17,226,6,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,59,226,6,0,118,67,1,0,36,1,0,0,59,226,6,0,1,0,0,0,36,0,0,0,204,0,0,0,1,0,0,0,78,1,0,0,204,0,0,0,1,0,0,0,46,1,0,0, 7,227,6,0,131,67,1,0,36,1,0,0,7,227,6,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,49,227,6,0,152,67,1,0,36,1,0,0,49,227,6,0,1,0,0,0,36,0,0,0,32,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0, 0,0,0,0,163,67,1,0,100,0,0,0,0,0,0,0,185,67,1,0,102,0,1,0,93,96,143,77,1,0,0,0,46,1,0,0,81,227,6,0,246,67,1,0,36,1,0,0,81,227,6,0,1,0,0,0,36,0,0,0,174,0,0,0,1,0,0,0,78,1,0,0,174,0,0,0,1,0,0,0,46,1,0,0,255,227,6,0,1,68,1,0,36,1,0,0,255,227,6,0,1,0,0,0, 36,0,0,0,76,0,0,0,1,0,0,0,78,1,0,0,76,0,0,0,1,0,0,0,46,1,0,0,75,228,6,0,18,68,1,0,36,1,0,0,75,228,6,0,1,0,0,0,36,0,0,0,66,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,1,0,0,0,46,1,0,0,141,228,6,0,31,68,1,0,36,1,0,0,141,228,6,0,1,0,0,0,36,0,0,0,181,0,0,0,1,0,0,0,78, 1,0,0,181,0,0,0,1,0,0,0,46,1,0,0,66,229,6,0,43,68,1,0,36,1,0,0,66,229,6,0,1,0,0,0,36,0,0,0,207,0,0,0,1,0,0,0,78,1,0,0,207,0,0,0,1,0,0,0,46,1,0,0,17,230,6,0,58,68,1,0,36,1,0,0,17,230,6,0,1,0,0,0,36,0,0,0,243,0,0,0,1,0,0,0,78,1,0,0,243,0,0,0,1,0,0,0,46, 1,0,0,4,231,6,0,71,68,1,0,36,1,0,0,4,231,6,0,1,0,0,0,36,0,0,0,207,0,0,0,1,0,0,0,78,1,0,0,207,0,0,0,1,0,0,0,46,1,0,0,211,231,6,0,85,68,1,0,36,1,0,0,211,231,6,0,1,0,0,0,36,0,0,0,58,1,0,0,1,0,0,0,78,1,0,0,58,1,0,0,1,0,0,0,46,1,0,0,13,233,6,0,97,68,1,0,36, 1,0,0,13,233,6,0,1,0,0,0,36,0,0,0,124,0,0,0,1,0,0,0,78,1,0,0,124,0,0,0,1,0,0,0,46,1,0,0,137,233,6,0,113,68,1,0,36,1,0,0,137,233,6,0,1,0,0,0,36,0,0,0,112,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,1,0,0,0,46,1,0,0,249,233,6,0,125,68,1,0,36,1,0,0,249,233,6,0,1,0, 0,0,36,0,0,0,70,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,1,0,0,0,46,1,0,0,63,234,6,0,147,68,1,0,36,1,0,0,63,234,6,0,1,0,0,0,36,0,0,0,151,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,1,0,0,0,46,1,0,0,214,234,6,0,165,68,1,0,36,1,0,0,214,234,6,0,1,0,0,0,36,0,0,0,19,0,0,0,1, 0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,233,234,6,0,183,68,1,0,36,1,0,0,233,234,6,0,1,0,0,0,36,0,0,0,151,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,1,0,0,0,46,1,0,0,128,235,6,0,199,68,1,0,36,1,0,0,128,235,6,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0, 0,1,0,0,0,46,1,0,0,147,235,6,0,219,68,1,0,36,1,0,0,147,235,6,0,1,0,0,0,36,0,0,0,151,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,1,0,0,0,46,1,0,0,42,236,6,0,236,68,1,0,36,1,0,0,42,236,6,0,1,0,0,0,36,0,0,0,247,0,0,0,1,0,0,0,78,1,0,0,247,0,0,0,1,0,0,0,46,1,0,0,33, 237,6,0,246,68,1,0,36,1,0,0,33,237,6,0,1,0,0,0,36,0,0,0,107,2,0,0,1,0,0,0,78,1,0,0,107,2,0,0,1,0,0,0,46,1,0,0,140,239,6,0,0,69,1,0,36,1,0,0,140,239,6,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,173,239,6,0,20,69,1,0,36,1,0, 0,173,239,6,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,195,239,6,0,38,69,1,0,36,1,0,0,195,239,6,0,1,0,0,0,36,0,0,0,121,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,1,0,0,0,46,1,0,0,60,240,6,0,50,69,1,0,36,1,0,0,60,240,6,0,1,0,0,0,36,0, 0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,102,240,6,0,69,69,1,0,36,1,0,0,102,240,6,0,1,0,0,0,36,0,0,0,124,0,0,0,1,0,0,0,78,1,0,0,124,0,0,0,1,0,0,0,46,1,0,0,226,240,6,0,82,69,1,0,36,1,0,0,226,240,6,0,1,0,0,0,36,0,0,0,151,0,0,0,1,0,0,0,78, 1,0,0,151,0,0,0,1,0,0,0,46,1,0,0,121,241,6,0,98,69,1,0,36,1,0,0,121,241,6,0,1,0,0,0,36,0,0,0,131,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,1,0,0,0,46,1,0,0,252,241,6,0,112,69,1,0,36,1,0,0,252,241,6,0,1,0,0,0,36,0,0,0,131,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,1,0,0, 0,46,1,0,0,127,242,6,0,127,69,1,0,36,1,0,0,127,242,6,0,1,0,0,0,36,0,0,0,145,0,0,0,1,0,0,0,78,1,0,0,145,0,0,0,1,0,0,0,46,1,0,0,16,243,6,0,140,69,1,0,36,1,0,0,16,243,6,0,1,0,0,0,36,0,0,0,145,0,0,0,1,0,0,0,78,1,0,0,145,0,0,0,1,0,0,0,46,1,0,0,161,243,6,0, 157,69,1,0,36,1,0,0,161,243,6,0,1,0,0,0,36,0,0,0,14,0,0,0,1,0,0,0,78,1,0,0,14,0,0,0,1,0,0,0,46,1,0,0,175,243,6,0,175,69,1,0,36,1,0,0,175,243,6,0,1,0,0,0,36,0,0,0,111,0,0,0,1,0,0,0,78,1,0,0,111,0,0,0,1,0,0,0,46,1,0,0,30,244,6,0,188,69,1,0,36,1,0,0,30, 244,6,0,1,0,0,0,36,0,0,0,20,1,0,0,1,0,0,0,78,1,0,0,20,1,0,0,1,0,0,0,46,1,0,0,50,245,6,0,201,69,1,0,36,1,0,0,50,245,6,0,1,0,0,0,36,0,0,0,36,1,0,0,1,0,0,0,78,1,0,0,36,1,0,0,1,0,0,0,46,1,0,0,86,246,6,0,217,69,1,0,36,1,0,0,86,246,6,0,1,0,0,0,36,0,0,0,47, 0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,133,246,6,0,231,69,1,0,36,1,0,0,133,246,6,0,1,0,0,0,36,0,0,0,63,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,1,0,0,0,46,1,0,0,196,246,6,0,244,69,1,0,36,1,0,0,196,246,6,0,1,0,0,0,36,0,0,0,78,0,0,0,1,0,0,0,78,1,0,0,78, 0,0,0,1,0,0,0,46,1,0,0,18,247,6,0,13,70,1,0,36,1,0,0,18,247,6,0,1,0,0,0,36,0,0,0,215,0,0,0,1,0,0,0,78,1,0,0,215,0,0,0,1,0,0,0,46,1,0,0,233,247,6,0,37,70,1,0,36,1,0,0,233,247,6,0,1,0,0,0,36,0,0,0,39,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,1,0,0,0,46,1,0,0,16, 248,6,0,53,70,1,0,36,1,0,0,16,248,6,0,1,0,0,0,36,0,0,0,91,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,1,0,0,0,46,1,0,0,107,248,6,0,73,70,1,0,36,1,0,0,107,248,6,0,1,0,0,0,36,0,0,0,91,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,1,0,0,0,46,1,0,0,198,248,6,0,94,70,1,0,36,1,0,0, 198,248,6,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,41,249,6,0,110,70,1,0,36,1,0,0,41,249,6,0,1,0,0,0,36,0,0,0,141,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,1,0,0,0,46,1,0,0,182,249,6,0,129,70,1,0,36,1,0,0,182,249,6,0,1,0,0,0,36,0, 0,0,169,0,0,0,1,0,0,0,78,1,0,0,169,0,0,0,1,0,0,0,46,1,0,0,95,250,6,0,148,70,1,0,36,1,0,0,95,250,6,0,1,0,0,0,36,0,0,0,71,0,0,0,1,0,0,0,78,1,0,0,71,0,0,0,1,0,0,0,46,1,0,0,166,250,6,0,165,70,1,0,36,1,0,0,166,250,6,0,1,0,0,0,36,0,0,0,95,0,0,0,1,0,0,0,78, 1,0,0,95,0,0,0,1,0,0,0,46,1,0,0,5,251,6,0,185,70,1,0,36,1,0,0,5,251,6,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,104,251,6,0,205,70,1,0,36,1,0,0,104,251,6,0,1,0,0,0,36,0,0,0,183,0,0,0,1,0,0,0,78,1,0,0,183,0,0,0,1,0,0,0,46, 1,0,0,31,252,6,0,227,70,1,0,36,1,0,0,31,252,6,0,1,0,0,0,36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,157,252,6,0,249,70,1,0,36,1,0,0,157,252,6,0,1,0,0,0,36,0,0,0,88,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,16,71,1,0,38,10,0,0,168,203,9,0,28, 71,1,0,38,10,0,0,172,203,9,0,41,71,1,0,38,10,0,0,176,203,9,0,61,71,1,0,38,10,0,0,180,203,9,0,79,71,1,0,38,10,0,0,184,203,9,0,98,71,1,0,38,10,0,0,188,203,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,114,71,1,0,100,0,0,0,0,0,0,0,135,71,1, 0,102,0,1,0,93,96,143,77,1,0,0,0,46,1,0,0,245,252,6,0,195,71,1,0,36,1,0,0,245,252,6,0,1,0,0,0,36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,1,0,0,0,46,1,0,0,87,253,6,0,203,71,1,0,36,1,0,0,87,253,6,0,1,0,0,0,36,0,0,0,160,0,0,0,1,0,0,0,78,1,0,0,160,0,0,0, 1,0,0,0,46,1,0,0,247,253,6,0,212,71,1,0,36,1,0,0,247,253,6,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,38,254,6,0,223,71,1,0,36,1,0,0,38,254,6,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,85,254,6, 0,238,71,1,0,36,1,0,0,85,254,6,0,1,0,0,0,36,0,0,0,54,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,1,0,0,0,46,1,0,0,139,254,6,0,254,71,1,0,36,1,0,0,139,254,6,0,1,0,0,0,36,0,0,0,54,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,1,0,0,0,46,1,0,0,193,254,6,0,15,72,1,0,36,1,0,0,193, 254,6,0,1,0,0,0,36,0,0,0,54,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,1,0,0,0,46,1,0,0,247,254,6,0,33,72,1,0,36,1,0,0,247,254,6,0,1,0,0,0,36,0,0,0,68,0,0,0,1,0,0,0,78,1,0,0,68,0,0,0,1,0,0,0,46,1,0,0,59,255,6,0,48,72,1,0,36,1,0,0,59,255,6,0,1,0,0,0,36,0,0,0,68, 0,0,0,1,0,0,0,78,1,0,0,68,0,0,0,1,0,0,0,46,1,0,0,127,255,6,0,67,72,1,0,36,1,0,0,127,255,6,0,1,0,0,0,36,0,0,0,247,0,0,0,1,0,0,0,78,1,0,0,247,0,0,0,1,0,0,0,46,1,0,0,118,0,7,0,79,72,1,0,36,1,0,0,118,0,7,0,1,0,0,0,36,0,0,0,224,0,0,0,1,0,0,0,78,1,0,0,224, 0,0,0,1,0,0,0,46,1,0,0,86,1,7,0,88,72,1,0,36,1,0,0,86,1,7,0,1,0,0,0,36,0,0,0,55,1,0,0,1,0,0,0,78,1,0,0,55,1,0,0,1,0,0,0,46,1,0,0,141,2,7,0,99,72,1,0,36,1,0,0,141,2,7,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,149,2,7,0,103,72, 1,0,36,1,0,0,149,2,7,0,1,0,0,0,36,0,0,0,213,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,1,0,0,0,46,1,0,0,106,3,7,0,119,72,1,0,36,1,0,0,106,3,7,0,1,0,0,0,36,0,0,0,94,0,0,0,1,0,0,0,78,1,0,0,94,0,0,0,1,0,0,0,46,1,0,0,200,3,7,0,145,72,1,0,36,1,0,0,200,3,7,0,1,0,0,0, 36,0,0,0,115,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,1,0,0,0,46,1,0,0,59,4,7,0,157,72,1,0,36,1,0,0,59,4,7,0,1,0,0,0,36,0,0,0,134,0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,1,0,0,0,46,1,0,0,193,4,7,0,168,72,1,0,36,1,0,0,193,4,7,0,1,0,0,0,36,0,0,0,89,0,0,0,1,0,0,0,78,1, 0,0,89,0,0,0,1,0,0,0,46,1,0,0,26,5,7,0,183,72,1,0,36,1,0,0,26,5,7,0,1,0,0,0,36,0,0,0,24,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,1,0,0,0,46,1,0,0,50,5,7,0,192,72,1,0,36,1,0,0,50,5,7,0,1,0,0,0,36,0,0,0,31,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,1,0,0,0,46,1,0,0,81,5,7, 0,202,72,1,0,36,1,0,0,81,5,7,0,1,0,0,0,36,0,0,0,31,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,1,0,0,0,46,1,0,0,112,5,7,0,214,72,1,0,36,1,0,0,112,5,7,0,1,0,0,0,36,0,0,0,31,0,0,0,1,0,0,0,78,1,0,0,31,0,0,0,1,0,0,0,46,1,0,0,143,5,7,0,225,72,1,0,36,1,0,0,143,5,7,0,1, 0,0,0,36,0,0,0,61,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,1,0,0,0,46,1,0,0,204,5,7,0,234,72,1,0,36,1,0,0,204,5,7,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,243,72,1,0,38,10,0,0,192,203,9,0,0,73,1,0,38,10,0,0,196,203,9,0,16,73,1,0,38,10,0,0,200,203, 9,0,28,73,1,0,38,10,0,0,204,203,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,51,73,1,0,100,0,0,0,0,0,0,0,75,73,1,0,102,0,1,0,94,96,143,77,1,0,0,0,46,1,0,0,237,5,7,0,138,73,1,0,36,1,0,0,237,5,7,0,1,0,0,0,36,0,0,0,26,0,0,0,1,0,0,0,78,1,0, 0,26,0,0,0,1,0,0,0,46,1,0,0,7,6,7,0,160,73,1,0,36,1,0,0,7,6,7,0,1,0,0,0,36,0,0,0,82,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,1,0,0,0,46,1,0,0,89,6,7,0,171,73,1,0,36,1,0,0,89,6,7,0,1,0,0,0,36,0,0,0,136,0,0,0,1,0,0,0,78,1,0,0,136,0,0,0,1,0,0,0,46,1,0,0,225,6,7, 0,184,73,1,0,36,1,0,0,225,6,7,0,1,0,0,0,36,0,0,0,0,1,0,0,1,0,0,0,78,1,0,0,0,1,0,0,1,0,0,0,46,1,0,0,225,7,7,0,195,73,1,0,36,1,0,0,225,7,7,0,1,0,0,0,36,0,0,0,83,0,0,0,1,0,0,0,78,1,0,0,83,0,0,0,1,0,0,0,46,1,0,0,52,8,7,0,208,73,1,0,36,1,0,0,52,8,7,0,1,0, 0,0,36,0,0,0,34,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,1,0,0,0,46,1,0,0,86,8,7,0,230,73,1,0,36,1,0,0,86,8,7,0,1,0,0,0,36,0,0,0,34,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,1,0,0,0,46,1,0,0,120,8,7,0,248,73,1,0,36,1,0,0,120,8,7,0,1,0,0,0,36,0,0,0,77,0,0,0,1,0,0,0,78,1, 0,0,77,0,0,0,1,0,0,0,46,1,0,0,197,8,7,0,12,74,1,0,36,1,0,0,197,8,7,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,10,9,7,0,35,74,1,0,36,1,0,0,10,9,7,0,1,0,0,0,36,0,0,0,38,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,1,0,0,0,46,1,0,0,48,9,7, 0,47,74,1,0,36,1,0,0,48,9,7,0,1,0,0,0,36,0,0,0,142,0,0,0,1,0,0,0,78,1,0,0,142,0,0,0,1,0,0,0,46,1,0,0,190,9,7,0,62,74,1,0,36,1,0,0,190,9,7,0,1,0,0,0,36,0,0,0,199,1,0,0,1,0,0,0,78,1,0,0,199,1,0,0,1,0,0,0,46,1,0,0,133,11,7,0,77,74,1,0,36,1,0,0,133,11,7, 0,1,0,0,0,36,0,0,0,201,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0,1,0,0,0,46,1,0,0,78,12,7,0,90,74,1,0,36,1,0,0,78,12,7,0,1,0,0,0,36,0,0,0,12,1,0,0,1,0,0,0,78,1,0,0,12,1,0,0,1,0,0,0,46,1,0,0,90,13,7,0,108,74,1,0,36,1,0,0,90,13,7,0,1,0,0,0,36,0,0,0,254,0,0,0,1, 0,0,0,78,1,0,0,254,0,0,0,1,0,0,0,46,1,0,0,88,14,7,0,123,74,1,0,36,1,0,0,88,14,7,0,1,0,0,0,36,0,0,0,254,1,0,0,1,0,0,0,78,1,0,0,254,1,0,0,1,0,0,0,46,1,0,0,86,16,7,0,144,74,1,0,36,1,0,0,86,16,7,0,1,0,0,0,36,0,0,0,152,0,0,0,1,0,0,0,78,1,0,0,152,0,0,0,1,0, 0,0,46,1,0,0,238,16,7,0,157,74,1,0,36,1,0,0,238,16,7,0,1,0,0,0,36,0,0,0,192,0,0,0,1,0,0,0,78,1,0,0,192,0,0,0,1,0,0,0,46,1,0,0,174,17,7,0,180,74,1,0,36,1,0,0,174,17,7,0,1,0,0,0,36,0,0,0,229,0,0,0,1,0,0,0,78,1,0,0,229,0,0,0,1,0,0,0,46,1,0,0,147,18,7,0, 192,74,1,0,36,1,0,0,147,18,7,0,1,0,0,0,36,0,0,0,110,3,0,0,1,0,0,0,78,1,0,0,110,3,0,0,1,0,0,0,46,1,0,0,1,22,7,0,212,74,1,0,36,1,0,0,1,22,7,0,1,0,0,0,36,0,0,0,196,0,0,0,1,0,0,0,78,1,0,0,196,0,0,0,1,0,0,0,46,1,0,0,197,22,7,0,236,74,1,0,36,1,0,0,197,22,7, 0,1,0,0,0,36,0,0,0,176,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,1,0,0,0,46,1,0,0,117,23,7,0,1,75,1,0,36,1,0,0,117,23,7,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,216,23,7,0,13,75,1,0,36,1,0,0,216,23,7,0,1,0,0,0,36,0,0,0,143,0,0,0, 1,0,0,0,78,1,0,0,143,0,0,0,1,0,0,0,46,1,0,0,103,24,7,0,26,75,1,0,36,1,0,0,103,24,7,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,136,24,7,0,36,75,1,0,36,1,0,0,136,24,7,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0, 0,0,46,1,0,0,169,24,7,0,48,75,1,0,36,1,0,0,169,24,7,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,202,24,7,0,61,75,1,0,36,1,0,0,202,24,7,0,1,0,0,0,36,0,0,0,26,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,71,75,1,0,38,9,0,0,100,151,9,0,87, 75,1,0,38,9,0,0,128,160,9,0,106,75,1,0,32,9,0,0,0,0,0,0,126,75,1,0,38,9,0,0,160,160,9,0,135,75,1,0,38,9,0,0,216,160,9,0,151,75,1,0,38,9,0,0,224,160,9,0,162,75,1,0,38,10,0,0,224,203,9,0,179,75,1,0,38,10,0,0,228,203,9,0,192,75,1,0,38,10,0,0,232,203,9,0, 217,75,1,0,38,10,0,0,236,203,9,0,247,75,1,0,38,10,0,0,240,203,9,0,6,76,1,0,38,10,0,0,248,203,9,0,16,76,1,0,38,10,0,0,0,204,9,0,31,76,1,0,38,10,0,0,104,205,9,0,45,76,1,0,38,10,0,0,112,205,9,0,59,76,1,0,38,10,0,0,116,205,9,0,74,76,1,0,38,10,0,0,120,205, 9,0,92,76,1,0,38,10,0,0,124,205,9,0,107,76,1,0,38,10,0,0,128,205,9,0,119,76,1,0,38,10,0,0,32,206,9,0,133,76,1,0,38,10,0,0,36,206,9,0,151,76,1,0,38,10,0,0,40,206,9,0,167,76,1,0,38,10,0,0,44,206,9,0,185,76,1,0,38,10,0,0,48,206,9,0,204,76,1,0,38,10,0,0, 52,206,9,0,220,76,1,0,38,10,0,0,56,206,9,0,237,76,1,0,38,10,0,0,64,206,9,0,6,77,1,0,38,10,0,0,72,206,9,0,34,77,1,0,32,11,0,0,0,0,0,0,49,77,1,0,32,11,0,0,0,0,0,0,63,77,1,0,32,11,0,0,0,0,0,0,79,77,1,0,32,11,0,0,0,0,0,0,89,77,1,0,32,11,0,0,0,0,0,0,1,0,0, 0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,112,77,1,0,100,0,0,0,0,0,0,0,136,77,1,0,102,0,1,0,94,96,143,77,1,0,0,0,46,1,0,0,228,24,7,0,199,77,1,0,36,1,0,0,228,24,7,0,1,0,0,0,36,0,0,0,93,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,1,0,0,0,46,1,0,0,65,25,7,0, 213,77,1,0,36,1,0,0,65,25,7,0,1,0,0,0,36,0,0,0,220,0,0,0,1,0,0,0,78,1,0,0,220,0,0,0,1,0,0,0,46,1,0,0,29,26,7,0,235,77,1,0,36,1,0,0,29,26,7,0,1,0,0,0,36,0,0,0,202,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,1,0,0,0,46,1,0,0,231,26,7,0,2,78,1,0,36,1,0,0,231,26,7, 0,1,0,0,0,36,0,0,0,38,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,1,0,0,0,46,1,0,0,13,27,7,0,14,78,1,0,36,1,0,0,13,27,7,0,1,0,0,0,36,0,0,0,160,2,0,0,1,0,0,0,78,1,0,0,160,2,0,0,1,0,0,0,46,1,0,0,173,29,7,0,27,78,1,0,36,1,0,0,173,29,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1, 0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,215,29,7,0,48,78,1,0,36,1,0,0,215,29,7,0,1,0,0,0,36,0,0,0,75,6,0,0,1,0,0,0,78,1,0,0,75,6,0,0,1,0,0,0,46,1,0,0,34,36,7,0,72,78,1,0,36,1,0,0,34,36,7,0,1,0,0,0,36,0,0,0,192,0,0,0,1,0,0,0,78,1,0,0,192,0,0,0,1,0,0, 0,46,1,0,0,226,36,7,0,89,78,1,0,36,1,0,0,226,36,7,0,1,0,0,0,36,0,0,0,154,1,0,0,1,0,0,0,78,1,0,0,154,1,0,0,1,0,0,0,46,1,0,0,124,38,7,0,107,78,1,0,36,1,0,0,124,38,7,0,1,0,0,0,36,0,0,0,130,1,0,0,1,0,0,0,78,1,0,0,130,1,0,0,1,0,0,0,46,1,0,0,254,39,7,0,122, 78,1,0,36,1,0,0,254,39,7,0,1,0,0,0,36,0,0,0,40,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,1,0,0,0,46,1,0,0,38,40,7,0,133,78,1,0,36,1,0,0,38,40,7,0,1,0,0,0,36,0,0,0,24,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,1,0,0,0,46,1,0,0,62,40,7,0,154,78,1,0,36,1,0,0,62,40,7,0,1,0,0, 0,36,0,0,0,24,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,1,0,0,0,46,1,0,0,86,40,7,0,174,78,1,0,36,1,0,0,86,40,7,0,1,0,0,0,36,0,0,0,104,0,0,0,1,0,0,0,78,1,0,0,104,0,0,0,1,0,0,0,46,1,0,0,190,40,7,0,189,78,1,0,36,1,0,0,190,40,7,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78, 1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,198,40,7,0,205,78,1,0,36,1,0,0,198,40,7,0,1,0,0,0,36,0,0,0,6,1,0,0,1,0,0,0,78,1,0,0,6,1,0,0,1,0,0,0,46,1,0,0,204,41,7,0,220,78,1,0,36,1,0,0,204,41,7,0,1,0,0,0,36,0,0,0,232,1,0,0,1,0,0,0,78,1,0,0,232,1,0,0,1,0,0,0,46,1,0, 0,180,43,7,0,239,78,1,0,36,1,0,0,180,43,7,0,1,0,0,0,36,0,0,0,153,6,0,0,1,0,0,0,78,1,0,0,153,6,0,0,1,0,0,0,46,1,0,0,77,50,7,0,6,79,1,0,36,1,0,0,77,50,7,0,1,0,0,0,36,0,0,0,109,2,0,0,1,0,0,0,78,1,0,0,109,2,0,0,1,0,0,0,46,1,0,0,186,52,7,0,25,79,1,0,36,1, 0,0,186,52,7,0,1,0,0,0,36,0,0,0,58,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,1,0,0,0,46,1,0,0,244,52,7,0,39,79,1,0,36,1,0,0,244,52,7,0,1,0,0,0,36,0,0,0,68,0,0,0,1,0,0,0,78,1,0,0,68,0,0,0,1,0,0,0,46,1,0,0,56,53,7,0,59,79,1,0,36,1,0,0,56,53,7,0,1,0,0,0,36,0,0,0, 112,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,1,0,0,0,46,1,0,0,168,53,7,0,77,79,1,0,36,1,0,0,168,53,7,0,1,0,0,0,36,0,0,0,70,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,1,0,0,0,46,1,0,0,238,53,7,0,96,79,1,0,36,1,0,0,238,53,7,0,1,0,0,0,36,0,0,0,215,0,0,0,1,0,0,0,78,1,0,0,215, 0,0,0,1,0,0,0,46,1,0,0,197,54,7,0,115,79,1,0,36,1,0,0,197,54,7,0,1,0,0,0,36,0,0,0,44,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,1,0,0,0,46,1,0,0,241,54,7,0,136,79,1,0,36,1,0,0,241,54,7,0,1,0,0,0,36,0,0,0,40,1,0,0,1,0,0,0,78,1,0,0,40,1,0,0,1,0,0,0,46,1,0,0,25,56, 7,0,156,79,1,0,36,1,0,0,25,56,7,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,60,56,7,0,177,79,1,0,36,1,0,0,60,56,7,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,95,56,7,0,198,79,1,0,36,1,0,0,95,56,7, 0,1,0,0,0,36,0,0,0,72,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,208,79,1,0,32,9,0,0,0,0,0,0,223,79,1,0,32,9,0,0,0,0,0,0,237,79,1,0,32,9,0,0,0,0,0,0,1,80,1,0,38,9,0,0,24,161,9,0,20,80,1,0,38,9,0,0,28,161,9,0,40,80,1,0,38,10,0,0,80,206,9,0,54,80,1,0,38,10,0,0,84, 206,9,0,66,80,1,0,38,10,0,0,88,206,9,0,77,80,1,0,38,10,0,0,92,206,9,0,89,80,1,0,38,10,0,0,96,206,9,0,102,80,1,0,38,10,0,0,100,206,9,0,120,80,1,0,38,10,0,0,116,206,9,0,140,80,1,0,38,10,0,0,132,206,9,0,159,80,1,0,38,10,0,0,148,206,9,0,180,80,1,0,38,10, 0,0,164,206,9,0,192,80,1,0,38,10,0,0,168,206,9,0,207,80,1,0,38,10,0,0,172,206,9,0,223,80,1,0,38,10,0,0,176,206,9,0,247,80,1,0,38,10,0,0,180,206,9,0,10,81,1,0,38,10,0,0,184,206,9,0,30,81,1,0,32,11,0,0,0,0,0,0,51,81,1,0,32,11,0,0,0,0,0,0,62,81,1,0,32,11, 0,0,0,0,0,0,78,81,1,0,32,11,0,0,0,0,0,0,95,81,1,0,32,11,0,0,0,0,0,0,113,81,1,0,32,11,0,0,0,0,0,0,126,81,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,140,81,1,0,100,0,0,0,0,0,0,0,170,81,1,0,102,0,1,0,94,96,143,77,1,0,0, 0,46,1,0,0,167,56,7,0,239,81,1,0,36,1,0,0,167,56,7,0,1,0,0,0,36,0,0,0,13,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,1,0,0,0,46,1,0,0,180,56,7,0,1,82,1,0,36,1,0,0,180,56,7,0,1,0,0,0,36,0,0,0,13,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,1,0,0,0,46,1,0,0,193,56,7,0,20,82,1, 0,36,1,0,0,193,56,7,0,1,0,0,0,36,0,0,0,13,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,1,0,0,0,46,1,0,0,206,56,7,0,37,82,1,0,36,1,0,0,206,56,7,0,1,0,0,0,36,0,0,0,123,0,0,0,1,0,0,0,78,1,0,0,123,0,0,0,1,0,0,0,46,1,0,0,73,57,7,0,52,82,1,0,36,1,0,0,73,57,7,0,1,0,0,0, 36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,68,82,1,0,100,0,0,0,0,0,0,0,91,82,1,0,102,0,1,0,94,96,143,77,1,0,0,0,46,1,0,0,81,57,7,0,153,82,1,0,36,1,0,0,81,57,7,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78, 1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,89,57,7,0,178,82,1,0,36,1,0,0,89,57,7,0,1,0,0,0,36,0,0,0,75,2,0,0,1,0,0,0,78,1,0,0,75,2,0,0,1,0,0,0,46,1,0,0,164,59,7,0,197,82,1,0,36,1,0,0,164,59,7,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,172, 59,7,0,222,82,1,0,36,1,0,0,172,59,7,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,180,59,7,0,247,82,1,0,36,1,0,0,180,59,7,0,1,0,0,0,36,0,0,0,144,0,0,0,1,0,0,0,78,1,0,0,144,0,0,0,1,0,0,0,46,1,0,0,68,60,7,0,10,83,1,0,36,1,0,0,68, 60,7,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,76,60,7,0,35,83,1,0,36,1,0,0,76,60,7,0,1,0,0,0,36,0,0,0,68,10,0,0,1,0,0,0,78,1,0,0,68,10,0,0,1,0,0,0,46,1,0,0,144,70,7,0,56,83,1,0,36,1,0,0,144,70,7,0,1,0,0,0,36,0,0,0,147,8,0, 0,1,0,0,0,78,1,0,0,147,8,0,0,78,83,1,0,32,9,0,0,0,0,0,0,89,83,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,103,83,1,0,100,0,0,0,0,0,0,0,127,83,1,0,102,0,1,0,95,96,143,77,1,0,0,0,46,1,0,0,35,79,7,0,190,83,1,0,36,1,0,0,35, 79,7,0,1,0,0,0,36,0,0,0,149,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,1,0,0,0,46,1,0,0,184,79,7,0,207,83,1,0,36,1,0,0,184,79,7,0,1,0,0,0,36,0,0,0,37,2,0,0,1,0,0,0,78,1,0,0,37,2,0,0,1,0,0,0,46,1,0,0,221,81,7,0,225,83,1,0,36,1,0,0,221,81,7,0,244,83,1,0,132,0,0, 0,0,0,0,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,2,82,7,0,16,84,1,0,36,1,0,0,2,82,7,0,1,0,0,0,36,0,0,0,27,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,1,0,0,0,46,1,0,0,29,82,7,0,32,84,1,0,36,1,0,0,29,82,7,0,1,0,0,0,36,0,0,0,106,0,0,0, 1,0,0,0,78,1,0,0,106,0,0,0,1,0,0,0,46,1,0,0,135,82,7,0,44,84,1,0,36,1,0,0,135,82,7,0,1,0,0,0,36,0,0,0,104,0,0,0,1,0,0,0,78,1,0,0,104,0,0,0,1,0,0,0,46,1,0,0,239,82,7,0,61,84,1,0,36,1,0,0,239,82,7,0,1,0,0,0,36,0,0,0,63,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,1, 0,0,0,46,1,0,0,46,83,7,0,79,84,1,0,36,1,0,0,46,83,7,0,1,0,0,0,36,0,0,0,65,0,0,0,1,0,0,0,78,1,0,0,65,0,0,0,1,0,0,0,46,1,0,0,111,83,7,0,95,84,1,0,36,1,0,0,111,83,7,0,1,0,0,0,36,0,0,0,200,0,0,0,1,0,0,0,78,1,0,0,200,0,0,0,1,0,0,0,46,1,0,0,55,84,7,0,109,84, 1,0,36,1,0,0,55,84,7,0,1,0,0,0,36,0,0,0,88,0,0,0,1,0,0,0,78,1,0,0,88,0,0,0,1,0,0,0,46,1,0,0,143,84,7,0,124,84,1,0,36,1,0,0,143,84,7,0,1,0,0,0,36,0,0,0,179,0,0,0,1,0,0,0,78,1,0,0,179,0,0,0,1,0,0,0,46,1,0,0,66,85,7,0,139,84,1,0,36,1,0,0,66,85,7,0,1,0,0, 0,36,0,0,0,205,0,0,0,1,0,0,0,78,1,0,0,205,0,0,0,1,0,0,0,46,1,0,0,15,86,7,0,153,84,1,0,36,1,0,0,15,86,7,0,1,0,0,0,36,0,0,0,137,0,0,0,1,0,0,0,78,1,0,0,137,0,0,0,1,0,0,0,46,1,0,0,152,86,7,0,173,84,1,0,36,1,0,0,152,86,7,0,1,0,0,0,36,0,0,0,40,0,0,0,1,0,0, 0,78,1,0,0,40,0,0,0,1,0,0,0,46,1,0,0,192,86,7,0,194,84,1,0,36,1,0,0,192,86,7,0,1,0,0,0,36,0,0,0,9,2,0,0,1,0,0,0,78,1,0,0,9,2,0,0,1,0,0,0,46,1,0,0,201,88,7,0,217,84,1,0,36,1,0,0,201,88,7,0,1,0,0,0,36,0,0,0,117,1,0,0,1,0,0,0,78,1,0,0,117,1,0,0,1,0,0,0, 46,1,0,0,62,90,7,0,240,84,1,0,36,1,0,0,62,90,7,0,1,0,0,0,36,0,0,0,142,2,0,0,1,0,0,0,78,1,0,0,142,2,0,0,1,0,0,0,46,1,0,0,204,92,7,0,5,85,1,0,36,1,0,0,204,92,7,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,223,92,7,0,22,85,1,0, 36,1,0,0,223,92,7,0,1,0,0,0,36,0,0,0,250,0,0,0,1,0,0,0,78,1,0,0,250,0,0,0,1,0,0,0,46,1,0,0,217,93,7,0,46,85,1,0,36,1,0,0,217,93,7,0,1,0,0,0,36,0,0,0,214,2,0,0,1,0,0,0,78,1,0,0,214,2,0,0,1,0,0,0,46,1,0,0,175,96,7,0,56,85,1,0,36,1,0,0,175,96,7,0,1,0,0, 0,36,0,0,0,40,0,0,0,1,0,0,0,78,1,0,0,40,0,0,0,1,0,0,0,46,1,0,0,215,96,7,0,65,85,1,0,36,1,0,0,215,96,7,0,1,0,0,0,36,0,0,0,235,1,0,0,1,0,0,0,78,1,0,0,235,1,0,0,1,0,0,0,46,1,0,0,194,98,7,0,81,85,1,0,36,1,0,0,194,98,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0, 78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,236,98,7,0,103,85,1,0,36,1,0,0,236,98,7,0,1,0,0,0,36,0,0,0,26,0,0,0,1,0,0,0,78,1,0,0,26,0,0,0,1,0,0,0,46,1,0,0,6,99,7,0,114,85,1,0,36,1,0,0,6,99,7,0,1,0,0,0,36,0,0,0,26,1,0,0,1,0,0,0,78,1,0,0,26,1,0,0,1,0,0,0,46,1,0, 0,32,100,7,0,130,85,1,0,36,1,0,0,32,100,7,0,1,0,0,0,36,0,0,0,117,0,0,0,1,0,0,0,78,1,0,0,117,0,0,0,1,0,0,0,46,1,0,0,149,100,7,0,146,85,1,0,36,1,0,0,149,100,7,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,184,100,7,0,167,85,1,0, 36,1,0,0,184,100,7,0,1,0,0,0,36,0,0,0,172,0,0,0,1,0,0,0,78,1,0,0,172,0,0,0,1,0,0,0,46,1,0,0,100,101,7,0,181,85,1,0,36,1,0,0,100,101,7,0,1,0,0,0,36,0,0,0,165,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,1,0,0,0,46,1,0,0,9,102,7,0,197,85,1,0,36,1,0,0,9,102,7,0,1,0, 0,0,36,0,0,0,60,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,1,0,0,0,46,1,0,0,69,102,7,0,210,85,1,0,36,1,0,0,69,102,7,0,1,0,0,0,36,0,0,0,14,11,0,0,1,0,0,0,78,1,0,0,14,11,0,0,1,0,0,0,46,1,0,0,83,113,7,0,224,85,1,0,36,1,0,0,83,113,7,0,238,85,1,0,132,0,0,0,0,0,0,0,1, 0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,120,113,7,0,23,86,1,0,36,1,0,0,120,113,7,0,1,0,0,0,36,0,0,0,206,0,0,0,1,0,0,0,78,1,0,0,206,0,0,0,1,0,0,0,46,1,0,0,70,114,7,0,33,86,1,0,36,1,0,0,70,114,7,0,1,0,0,0,36,0,0,0,91,0,0,0,1, 0,0,0,78,1,0,0,91,0,0,0,44,86,1,0,38,9,0,0,32,161,9,0,61,86,1,0,38,10,0,0,188,206,9,0,72,86,1,0,38,10,0,0,196,206,9,0,86,86,1,0,38,10,0,0,200,206,9,0,102,86,1,0,38,10,0,0,204,206,9,0,115,86,1,0,38,10,0,0,208,206,9,0,127,86,1,0,38,10,0,0,212,206,9,0,138, 86,1,0,38,10,0,0,216,206,9,0,151,86,1,0,38,10,0,0,220,206,9,0,161,86,1,0,38,10,0,0,224,206,9,0,181,86,1,0,38,10,0,0,228,206,9,0,199,86,1,0,38,10,0,0,232,206,9,0,211,86,1,0,38,10,0,0,236,206,9,0,227,86,1,0,38,10,0,0,240,206,9,0,243,86,1,0,38,10,0,0,244, 206,9,0,3,87,1,0,38,10,0,0,248,206,9,0,23,87,1,0,38,10,0,0,252,206,9,0,47,87,1,0,38,10,0,0,0,207,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,60,87,1,0,100,0,0,0,0,0,0,0,85,87,1,0,102,0,1,0,95,96,143,77,1,0,0,0,46,1,0,0,161,114,7,0,149, 87,1,0,36,1,0,0,161,114,7,0,1,0,0,0,36,0,0,0,90,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,1,0,0,0,46,1,0,0,251,114,7,0,165,87,1,0,36,1,0,0,251,114,7,0,1,0,0,0,36,0,0,0,77,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,1,0,0,0,46,1,0,0,72,115,7,0,184,87,1,0,36,1,0,0,72,115,7, 0,1,0,0,0,36,0,0,0,1,7,0,0,1,0,0,0,78,1,0,0,1,7,0,0,1,0,0,0,46,1,0,0,73,122,7,0,201,87,1,0,36,1,0,0,73,122,7,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,108,122,7,0,222,87,1,0,36,1,0,0,108,122,7,0,1,0,0,0,36,0,0,0,42,0,0,0, 1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,150,122,7,0,244,87,1,0,36,1,0,0,150,122,7,0,1,0,0,0,36,0,0,0,103,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,1,0,0,0,46,1,0,0,253,122,7,0,9,88,1,0,36,1,0,0,253,122,7,0,1,0,0,0,36,0,0,0,103,0,0,0,1,0,0,0,78,1,0,0,103,0, 0,0,1,0,0,0,46,1,0,0,100,123,7,0,23,88,1,0,36,1,0,0,100,123,7,0,1,0,0,0,36,0,0,0,192,1,0,0,1,0,0,0,78,1,0,0,192,1,0,0,42,88,1,0,38,9,0,0,124,151,9,0,51,88,1,0,38,9,0,0,116,161,9,0,66,88,1,0,38,9,0,0,123,161,9,0,82,88,1,0,38,10,0,0,4,207,9,0,1,0,0,0,100, 1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,94,88,1,0,100,0,0,0,0,0,0,0,117,88,1,0,102,0,1,0,95,96,143,77,1,0,0,0,46,1,0,0,36,125,7,0,179,88,1,0,36,1,0,0,36,125,7,0,1,0,0,0,36,0,0,0,24,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,1,0,0,0,46,1,0,0,60,125,7,0,197,88, 1,0,36,1,0,0,60,125,7,0,1,0,0,0,36,0,0,0,24,0,0,0,1,0,0,0,78,1,0,0,24,0,0,0,1,0,0,0,46,1,0,0,84,125,7,0,214,88,1,0,36,1,0,0,84,125,7,0,1,0,0,0,36,0,0,0,20,0,0,0,1,0,0,0,78,1,0,0,20,0,0,0,1,0,0,0,46,1,0,0,104,125,7,0,236,88,1,0,36,1,0,0,104,125,7,0,1, 0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,126,125,7,0,7,89,1,0,36,1,0,0,126,125,7,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,148,125,7,0,31,89,1,0,36,1,0,0,148,125,7,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0, 0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,170,125,7,0,45,89,1,0,36,1,0,0,170,125,7,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,192,125,7,0,60,89,1,0,36,1,0,0,192,125,7,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0, 0,0,46,1,0,0,214,125,7,0,80,89,1,0,36,1,0,0,214,125,7,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,236,125,7,0,102,89,1,0,36,1,0,0,236,125,7,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,1,0,0,0,46,1,0,0,67,126,7,0,116, 89,1,0,36,1,0,0,67,126,7,0,1,0,0,0,36,0,0,0,21,0,0,0,1,0,0,0,78,1,0,0,21,0,0,0,1,0,0,0,46,1,0,0,88,126,7,0,137,89,1,0,36,1,0,0,88,126,7,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,110,126,7,0,155,89,1,0,36,1,0,0,110,126,7,0, 1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,132,126,7,0,170,89,1,0,36,1,0,0,132,126,7,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,154,126,7,0,186,89,1,0,36,1,0,0,154,126,7,0,1,0,0,0,36,0,0,0,255,0,0, 0,1,0,0,0,78,1,0,0,255,0,0,0,1,0,0,0,46,1,0,0,153,127,7,0,194,89,1,0,36,1,0,0,153,127,7,0,1,0,0,0,36,0,0,0,68,3,0,0,1,0,0,0,78,1,0,0,68,3,0,0,1,0,0,0,46,1,0,0,221,130,7,0,212,89,1,0,36,1,0,0,221,130,7,0,1,0,0,0,36,0,0,0,170,1,0,0,1,0,0,0,78,1,0,0,170, 1,0,0,1,0,0,0,46,1,0,0,135,132,7,0,222,89,1,0,36,1,0,0,135,132,7,0,1,0,0,0,36,0,0,0,112,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,1,0,0,0,46,1,0,0,247,132,7,0,240,89,1,0,36,1,0,0,247,132,7,0,1,0,0,0,36,0,0,0,75,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,1,0,0,0,46,1,0,0, 66,133,7,0,9,90,1,0,36,1,0,0,66,133,7,0,1,0,0,0,36,0,0,0,234,1,0,0,1,0,0,0,78,1,0,0,234,1,0,0,1,0,0,0,46,1,0,0,44,135,7,0,26,90,1,0,36,1,0,0,44,135,7,0,1,0,0,0,36,0,0,0,12,18,0,0,1,0,0,0,78,1,0,0,12,18,0,0,1,0,0,0,46,1,0,0,56,153,7,0,40,90,1,0,36,1,0, 0,56,153,7,0,1,0,0,0,36,0,0,0,13,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,1,0,0,0,46,1,0,0,69,153,7,0,56,90,1,0,36,1,0,0,69,153,7,0,1,0,0,0,36,0,0,0,241,5,0,0,1,0,0,0,78,1,0,0,241,5,0,0,1,0,0,0,46,1,0,0,54,159,7,0,75,90,1,0,36,1,0,0,54,159,7,0,1,0,0,0,36,0,0, 0,60,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,97,90,1,0,32,9,0,0,0,0,0,0,109,90,1,0,38,9,0,0,192,151,9,0,123,90,1,0,32,9,0,0,0,0,0,0,139,90,1,0,32,9,0,0,0,0,0,0,155,90,1,0,32,9,0,0,0,0,0,0,171,90,1,0,32,9,0,0,0,0,0,0,184,90,1,0,32,9,0,0,0,0,0,0,198,90,1,0,32, 9,0,0,0,0,0,0,211,90,1,0,32,9,0,0,0,0,0,0,230,90,1,0,32,9,0,0,0,0,0,0,250,90,1,0,32,9,0,0,0,0,0,0,4,91,1,0,32,9,0,0,0,0,0,0,20,91,1,0,38,9,0,0,208,162,9,0,34,91,1,0,38,9,0,0,212,162,9,0,49,91,1,0,38,9,0,0,216,162,9,0,60,91,1,0,38,9,0,0,220,162,9,0,72, 91,1,0,38,9,0,0,224,162,9,0,86,91,1,0,38,10,0,0,8,207,9,0,96,91,1,0,38,10,0,0,12,207,9,0,110,91,1,0,38,10,0,0,16,207,9,0,127,91,1,0,38,10,0,0,20,207,9,0,140,91,1,0,38,10,0,0,24,207,9,0,156,91,1,0,38,10,0,0,28,207,9,0,174,91,1,0,38,10,0,0,32,207,9,0,193, 91,1,0,38,10,0,0,36,207,9,0,209,91,1,0,38,10,0,0,40,207,9,0,220,91,1,0,38,10,0,0,44,207,9,0,240,91,1,0,38,10,0,0,60,207,9,0,5,92,1,0,38,10,0,0,76,207,9,0,19,92,1,0,38,10,0,0,92,207,9,0,34,92,1,0,32,11,0,0,0,0,0,0,50,92,1,0,32,11,0,0,0,0,0,0,67,92,1,0, 32,11,0,0,0,0,0,0,89,92,1,0,32,11,0,0,0,0,0,0,115,92,1,0,32,11,0,0,0,0,0,0,131,92,1,0,32,11,0,0,0,0,0,0,153,92,1,0,32,11,0,0,0,0,0,0,165,92,1,0,32,11,0,0,0,0,0,0,187,92,1,0,32,11,0,0,0,0,0,0,199,92,1,0,32,11,0,0,0,0,0,0,216,92,1,0,32,11,0,0,0,0,0,0,227, 92,1,0,32,11,0,0,0,0,0,0,243,92,1,0,32,11,0,0,0,0,0,0,6,93,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,19,93,1,0,100,0,0,0,0,0,0,0,42,93,1,0,102,0,1,0,95,96,143,77,1,0,0,0,46,1,0,0,114,159,7,0,104,93,1,0,36,1,0,0,114, 159,7,0,1,0,0,0,36,0,0,0,51,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,1,0,0,0,46,1,0,0,165,159,7,0,122,93,1,0,36,1,0,0,165,159,7,0,1,0,0,0,36,0,0,0,51,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,1,0,0,0,46,1,0,0,216,159,7,0,142,93,1,0,36,1,0,0,216,159,7,0,1,0,0,0,36,0,0,0, 47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,7,160,7,0,162,93,1,0,36,1,0,0,7,160,7,0,1,0,0,0,36,0,0,0,188,1,0,0,1,0,0,0,78,1,0,0,188,1,0,0,1,0,0,0,46,1,0,0,195,161,7,0,178,93,1,0,36,1,0,0,195,161,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0, 42,0,0,0,1,0,0,0,46,1,0,0,237,161,7,0,200,93,1,0,36,1,0,0,237,161,7,0,1,0,0,0,36,0,0,0,131,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,1,0,0,0,46,1,0,0,112,162,7,0,211,93,1,0,36,1,0,0,112,162,7,0,1,0,0,0,36,0,0,0,242,0,0,0,1,0,0,0,78,1,0,0,242,0,0,0,1,0,0,0,46, 1,0,0,98,163,7,0,228,93,1,0,36,1,0,0,98,163,7,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0,0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,133,163,7,0,249,93,1,0,36,1,0,0,133,163,7,0,1,0,0,0,36,0,0,0,224,0,0,0,1,0,0,0,78,1,0,0,224,0,0,0,1,0,0,0,46,1,0,0,101,164,7,0,16,94, 1,0,36,1,0,0,101,164,7,0,1,0,0,0,36,0,0,0,90,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,1,0,0,0,46,1,0,0,191,164,7,0,31,94,1,0,36,1,0,0,191,164,7,0,1,0,0,0,36,0,0,0,75,0,0,0,1,0,0,0,78,1,0,0,75,0,0,0,1,0,0,0,46,1,0,0,10,165,7,0,45,94,1,0,36,1,0,0,10,165,7,0,1,0, 0,0,36,0,0,0,1,1,0,0,1,0,0,0,78,1,0,0,1,1,0,0,1,0,0,0,46,1,0,0,11,166,7,0,63,94,1,0,36,1,0,0,11,166,7,0,1,0,0,0,36,0,0,0,195,3,0,0,1,0,0,0,78,1,0,0,195,3,0,0,1,0,0,0,46,1,0,0,206,169,7,0,81,94,1,0,36,1,0,0,206,169,7,0,1,0,0,0,36,0,0,0,35,0,0,0,1,0,0, 0,78,1,0,0,35,0,0,0,1,0,0,0,46,1,0,0,241,169,7,0,102,94,1,0,36,1,0,0,241,169,7,0,1,0,0,0,36,0,0,0,136,1,0,0,1,0,0,0,78,1,0,0,136,1,0,0,1,0,0,0,46,1,0,0,121,171,7,0,121,94,1,0,36,1,0,0,121,171,7,0,1,0,0,0,36,0,0,0,150,1,0,0,1,0,0,0,78,1,0,0,150,1,0,0, 1,0,0,0,46,1,0,0,15,173,7,0,139,94,1,0,36,1,0,0,15,173,7,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,101,173,7,0,154,94,1,0,36,1,0,0,101,173,7,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,120,173,7, 0,165,94,1,0,36,1,0,0,120,173,7,0,1,0,0,0,36,0,0,0,247,2,0,0,1,0,0,0,78,1,0,0,247,2,0,0,1,0,0,0,46,1,0,0,111,176,7,0,184,94,1,0,36,1,0,0,111,176,7,0,1,0,0,0,36,0,0,0,186,3,0,0,1,0,0,0,78,1,0,0,186,3,0,0,1,0,0,0,46,1,0,0,41,180,7,0,196,94,1,0,36,1,0,0, 41,180,7,0,1,0,0,0,36,0,0,0,222,1,0,0,1,0,0,0,78,1,0,0,222,1,0,0,1,0,0,0,46,1,0,0,7,182,7,0,209,94,1,0,36,1,0,0,7,182,7,0,218,94,1,0,132,0,0,0,0,0,0,0,1,0,0,0,36,0,0,0,27,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,1,0,0,0,46,1,0,0,34,182,7,0,239,94,1,0,36,1,0,0, 34,182,7,0,1,0,0,0,36,0,0,0,97,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,1,0,0,0,46,1,0,0,131,182,7,0,249,94,1,0,36,1,0,0,131,182,7,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,153,182,7,0,2,95,1,0,36,1,0,0,153,182,7,0,1,0,0,0,36,0,0, 0,209,1,0,0,1,0,0,0,78,1,0,0,209,1,0,0,1,0,0,0,46,1,0,0,106,184,7,0,20,95,1,0,36,1,0,0,106,184,7,0,1,0,0,0,36,0,0,0,110,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,1,0,0,0,46,1,0,0,216,184,7,0,40,95,1,0,36,1,0,0,216,184,7,0,1,0,0,0,36,0,0,0,110,0,0,0,1,0,0,0,78, 1,0,0,110,0,0,0,1,0,0,0,46,1,0,0,70,185,7,0,59,95,1,0,36,1,0,0,70,185,7,0,1,0,0,0,36,0,0,0,176,0,0,0,1,0,0,0,78,1,0,0,176,0,0,0,1,0,0,0,46,1,0,0,246,185,7,0,83,95,1,0,36,1,0,0,246,185,7,0,1,0,0,0,36,0,0,0,238,0,0,0,1,0,0,0,78,1,0,0,238,0,0,0,1,0,0,0, 46,1,0,0,228,186,7,0,101,95,1,0,36,1,0,0,228,186,7,0,1,0,0,0,36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,98,187,7,0,118,95,1,0,36,1,0,0,98,187,7,0,1,0,0,0,36,0,0,0,180,0,0,0,1,0,0,0,78,1,0,0,180,0,0,0,1,0,0,0,46,1,0,0,22,188,7,0,145, 95,1,0,36,1,0,0,22,188,7,0,1,0,0,0,36,0,0,0,248,0,0,0,1,0,0,0,78,1,0,0,248,0,0,0,166,95,1,0,32,9,0,0,0,0,0,0,182,95,1,0,32,11,0,0,0,0,0,0,198,95,1,0,32,11,0,0,0,0,0,0,212,95,1,0,32,11,0,0,0,0,0,0,228,95,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0, 41,190,0,0,100,0,0,0,0,0,0,0,244,95,1,0,100,0,0,0,0,0,0,0,12,96,1,0,102,0,1,0,96,96,143,77,1,0,0,0,46,1,0,0,14,189,7,0,75,96,1,0,36,1,0,0,14,189,7,0,1,0,0,0,36,0,0,0,148,0,0,0,1,0,0,0,78,1,0,0,148,0,0,0,1,0,0,0,46,1,0,0,162,189,7,0,87,96,1,0,36,1,0,0, 162,189,7,0,1,0,0,0,36,0,0,0,200,0,0,0,1,0,0,0,78,1,0,0,200,0,0,0,1,0,0,0,46,1,0,0,106,190,7,0,95,96,1,0,36,1,0,0,106,190,7,0,1,0,0,0,36,0,0,0,0,1,0,0,1,0,0,0,78,1,0,0,0,1,0,0,1,0,0,0,46,1,0,0,106,191,7,0,104,96,1,0,36,1,0,0,106,191,7,0,1,0,0,0,36,0, 0,0,24,1,0,0,1,0,0,0,78,1,0,0,24,1,0,0,1,0,0,0,46,1,0,0,130,192,7,0,115,96,1,0,36,1,0,0,130,192,7,0,1,0,0,0,36,0,0,0,0,1,0,0,1,0,0,0,78,1,0,0,0,1,0,0,1,0,0,0,46,1,0,0,130,193,7,0,122,96,1,0,36,1,0,0,130,193,7,0,1,0,0,0,36,0,0,0,166,0,0,0,1,0,0,0,78,1, 0,0,166,0,0,0,1,0,0,0,46,1,0,0,40,194,7,0,128,96,1,0,36,1,0,0,40,194,7,0,1,0,0,0,36,0,0,0,134,0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,1,0,0,0,46,1,0,0,174,194,7,0,139,96,1,0,36,1,0,0,174,194,7,0,1,0,0,0,36,0,0,0,44,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,1,0,0,0,46, 1,0,0,218,194,7,0,151,96,1,0,36,1,0,0,218,194,7,0,1,0,0,0,36,0,0,0,155,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,1,0,0,0,46,1,0,0,117,195,7,0,161,96,1,0,36,1,0,0,117,195,7,0,1,0,0,0,36,0,0,0,86,0,0,0,1,0,0,0,78,1,0,0,86,0,0,0,1,0,0,0,46,1,0,0,203,195,7,0,172, 96,1,0,36,1,0,0,203,195,7,0,1,0,0,0,36,0,0,0,112,0,0,0,1,0,0,0,78,1,0,0,112,0,0,0,1,0,0,0,46,1,0,0,59,196,7,0,181,96,1,0,36,1,0,0,59,196,7,0,1,0,0,0,36,0,0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,198,196,7,0,188,96,1,0,36,1,0,0,198,196, 7,0,1,0,0,0,36,0,0,0,161,0,0,0,1,0,0,0,78,1,0,0,161,0,0,0,1,0,0,0,46,1,0,0,103,197,7,0,197,96,1,0,36,1,0,0,103,197,7,0,1,0,0,0,36,0,0,0,208,0,0,0,1,0,0,0,78,1,0,0,208,0,0,0,1,0,0,0,46,1,0,0,55,198,7,0,207,96,1,0,36,1,0,0,55,198,7,0,1,0,0,0,36,0,0,0,101, 0,0,0,1,0,0,0,78,1,0,0,101,0,0,0,1,0,0,0,46,1,0,0,156,198,7,0,223,96,1,0,36,1,0,0,156,198,7,0,1,0,0,0,36,0,0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,39,199,7,0,228,96,1,0,36,1,0,0,39,199,7,0,1,0,0,0,36,0,0,0,36,0,0,0,1,0,0,0,78,1,0,0, 36,0,0,0,1,0,0,0,46,1,0,0,75,199,7,0,242,96,1,0,36,1,0,0,75,199,7,0,1,0,0,0,36,0,0,0,55,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,1,0,0,0,46,1,0,0,130,199,7,0,1,97,1,0,36,1,0,0,130,199,7,0,1,0,0,0,36,0,0,0,114,0,0,0,1,0,0,0,78,1,0,0,114,0,0,0,11,97,1,0,38,10,0, 0,128,207,9,0,24,97,1,0,38,10,0,0,132,207,9,0,38,97,1,0,38,10,0,0,160,207,9,0,52,97,1,0,38,10,0,0,160,208,9,0,63,97,1,0,38,10,0,0,164,208,9,0,74,97,1,0,32,11,0,0,0,0,0,0,89,97,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0, 0,108,97,1,0,100,0,0,0,0,0,0,0,131,97,1,0,102,0,1,0,96,96,143,77,1,0,0,0,46,1,0,0,244,199,7,0,193,97,1,0,36,1,0,0,244,199,7,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,25,200,7,0,204,97,1,0,36,1,0,0,25,200,7,0,1,0,0,0,36,0, 0,0,25,1,0,0,1,0,0,0,78,1,0,0,25,1,0,0,1,0,0,0,46,1,0,0,50,201,7,0,214,97,1,0,36,1,0,0,50,201,7,0,1,0,0,0,36,0,0,0,179,1,0,0,1,0,0,0,78,1,0,0,179,1,0,0,1,0,0,0,46,1,0,0,229,202,7,0,225,97,1,0,36,1,0,0,229,202,7,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78, 1,0,0,87,0,0,0,1,0,0,0,46,1,0,0,60,203,7,0,239,97,1,0,36,1,0,0,60,203,7,0,1,0,0,0,36,0,0,0,0,1,0,0,1,0,0,0,78,1,0,0,0,1,0,0,1,0,0,0,46,1,0,0,60,204,7,0,253,97,1,0,36,1,0,0,60,204,7,0,1,0,0,0,36,0,0,0,41,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,1,0,0,0,46,1,0, 0,101,204,7,0,15,98,1,0,36,1,0,0,101,204,7,0,1,0,0,0,36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,227,204,7,0,26,98,1,0,36,1,0,0,227,204,7,0,1,0,0,0,36,0,0,0,135,0,0,0,1,0,0,0,78,1,0,0,135,0,0,0,1,0,0,0,46,1,0,0,106,205,7,0,38,98,1, 0,36,1,0,0,106,205,7,0,1,0,0,0,36,0,0,0,120,0,0,0,1,0,0,0,78,1,0,0,120,0,0,0,1,0,0,0,46,1,0,0,226,205,7,0,51,98,1,0,36,1,0,0,226,205,7,0,1,0,0,0,36,0,0,0,52,0,0,0,1,0,0,0,78,1,0,0,52,0,0,0,1,0,0,0,46,1,0,0,22,206,7,0,62,98,1,0,36,1,0,0,22,206,7,0,1,0, 0,0,36,0,0,0,138,0,0,0,1,0,0,0,78,1,0,0,138,0,0,0,1,0,0,0,46,1,0,0,160,206,7,0,70,98,1,0,36,1,0,0,160,206,7,0,1,0,0,0,36,0,0,0,138,0,0,0,1,0,0,0,78,1,0,0,138,0,0,0,1,0,0,0,46,1,0,0,42,207,7,0,78,98,1,0,36,1,0,0,42,207,7,0,1,0,0,0,36,0,0,0,129,0,0,0,1, 0,0,0,78,1,0,0,129,0,0,0,1,0,0,0,46,1,0,0,171,207,7,0,90,98,1,0,36,1,0,0,171,207,7,0,1,0,0,0,36,0,0,0,129,0,0,0,1,0,0,0,78,1,0,0,129,0,0,0,102,98,1,0,38,3,0,0,0,135,9,0,119,98,1,0,38,3,0,0,32,135,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0, 0,0,141,98,1,0,100,0,0,0,0,0,0,0,169,98,1,0,102,0,1,0,96,96,143,77,1,0,0,0,46,1,0,0,44,208,7,0,236,98,1,0,36,1,0,0,44,208,7,0,1,0,0,0,36,0,0,0,156,0,0,0,1,0,0,0,78,1,0,0,156,0,0,0,1,0,0,0,46,1,0,0,200,208,7,0,242,98,1,0,36,1,0,0,200,208,7,0,1,0,0,0,36, 0,0,0,133,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,1,0,0,0,46,1,0,0,77,209,7,0,248,98,1,0,36,1,0,0,77,209,7,0,1,0,0,0,36,0,0,0,172,0,0,0,1,0,0,0,78,1,0,0,172,0,0,0,1,0,0,0,46,1,0,0,249,209,7,0,1,99,1,0,36,1,0,0,249,209,7,0,1,0,0,0,36,0,0,0,172,0,0,0,1,0,0,0, 78,1,0,0,172,0,0,0,1,0,0,0,46,1,0,0,165,210,7,0,10,99,1,0,36,1,0,0,165,210,7,0,1,0,0,0,36,0,0,0,142,0,0,0,1,0,0,0,78,1,0,0,142,0,0,0,1,0,0,0,46,1,0,0,51,211,7,0,19,99,1,0,36,1,0,0,51,211,7,0,1,0,0,0,36,0,0,0,142,0,0,0,1,0,0,0,78,1,0,0,142,0,0,0,1,0,0, 0,46,1,0,0,193,211,7,0,28,99,1,0,36,1,0,0,193,211,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,1,212,7,0,38,99,1,0,36,1,0,0,1,212,7,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,38,212,7,0,50,99,1, 0,36,1,0,0,38,212,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,102,212,7,0,60,99,1,0,36,1,0,0,102,212,7,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,139,212,7,0,72,99,1,0,36,1,0,0,139,212,7,0,1,0, 0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,203,212,7,0,85,99,1,0,36,1,0,0,203,212,7,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,240,212,7,0,100,99,1,0,36,1,0,0,240,212,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0, 0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,48,213,7,0,113,99,1,0,36,1,0,0,48,213,7,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,85,213,7,0,128,99,1,0,36,1,0,0,85,213,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0, 0,46,1,0,0,149,213,7,0,141,99,1,0,36,1,0,0,149,213,7,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,186,213,7,0,156,99,1,0,36,1,0,0,186,213,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,250,213,7,0,169, 99,1,0,36,1,0,0,250,213,7,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,31,214,7,0,184,99,1,0,36,1,0,0,31,214,7,0,1,0,0,0,36,0,0,0,18,3,0,0,1,0,0,0,78,1,0,0,18,3,0,0,203,99,1,0,38,10,0,0,168,208,9,0,215,99,1,0,38,10,0,0,172,208, 9,0,227,99,1,0,38,10,0,0,176,208,9,0,242,99,1,0,38,10,0,0,180,208,9,0,1,100,1,0,38,10,0,0,184,208,9,0,16,100,1,0,38,10,0,0,188,208,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,31,100,1,0,100,0,0,0,0,0,0,0,60,100,1,0,102,0,1,0,96,96,143, 77,1,0,0,0,46,1,0,0,49,217,7,0,128,100,1,0,36,1,0,0,49,217,7,0,1,0,0,0,36,0,0,0,103,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,1,0,0,0,46,1,0,0,152,217,7,0,140,100,1,0,36,1,0,0,152,217,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,194, 217,7,0,157,100,1,0,36,1,0,0,194,217,7,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,242,217,7,0,175,100,1,0,36,1,0,0,242,217,7,0,1,0,0,0,36,0,0,0,57,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,1,0,0,0,46,1,0,0,43,218,7,0,194,100,1,0,36, 1,0,0,43,218,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,85,218,7,0,212,100,1,0,36,1,0,0,85,218,7,0,1,0,0,0,36,0,0,0,54,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,1,0,0,0,46,1,0,0,139,218,7,0,231,100,1,0,36,1,0,0,139,218,7,0,1,0,0,0, 36,0,0,0,63,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,1,0,0,0,46,1,0,0,202,218,7,0,251,100,1,0,36,1,0,0,202,218,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,244,218,7,0,13,101,1,0,36,1,0,0,244,218,7,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0, 0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,36,219,7,0,32,101,1,0,36,1,0,0,36,219,7,0,1,0,0,0,36,0,0,0,57,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,1,0,0,0,46,1,0,0,93,219,7,0,52,101,1,0,36,1,0,0,93,219,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0, 46,1,0,0,135,219,7,0,68,101,1,0,36,1,0,0,135,219,7,0,1,0,0,0,36,0,0,0,116,0,0,0,1,0,0,0,78,1,0,0,116,0,0,0,1,0,0,0,46,1,0,0,251,219,7,0,85,101,1,0,36,1,0,0,251,219,7,0,1,0,0,0,36,0,0,0,125,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,1,0,0,0,46,1,0,0,120,220,7,0, 103,101,1,0,36,1,0,0,120,220,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,162,220,7,0,119,101,1,0,36,1,0,0,162,220,7,0,1,0,0,0,36,0,0,0,113,0,0,0,1,0,0,0,78,1,0,0,113,0,0,0,1,0,0,0,46,1,0,0,19,221,7,0,136,101,1,0,36,1,0,0, 19,221,7,0,1,0,0,0,36,0,0,0,122,0,0,0,1,0,0,0,78,1,0,0,122,0,0,0,1,0,0,0,46,1,0,0,141,221,7,0,154,101,1,0,36,1,0,0,141,221,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,183,221,7,0,170,101,1,0,36,1,0,0,183,221,7,0,1,0,0,0,36, 0,0,0,84,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,1,0,0,0,46,1,0,0,11,222,7,0,187,101,1,0,36,1,0,0,11,222,7,0,1,0,0,0,36,0,0,0,93,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,1,0,0,0,46,1,0,0,104,222,7,0,205,101,1,0,36,1,0,0,104,222,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78, 1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,146,222,7,0,221,101,1,0,36,1,0,0,146,222,7,0,1,0,0,0,36,0,0,0,84,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,1,0,0,0,46,1,0,0,230,222,7,0,238,101,1,0,36,1,0,0,230,222,7,0,1,0,0,0,36,0,0,0,93,0,0,0,1,0,0,0,78,1,0,0,93,0,0,0,1,0,0,0, 46,1,0,0,67,223,7,0,0,102,1,0,36,1,0,0,67,223,7,0,1,0,0,0,36,0,0,0,103,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,1,0,0,0,46,1,0,0,170,223,7,0,12,102,1,0,36,1,0,0,170,223,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,212,223,7,0,27,102, 1,0,36,1,0,0,212,223,7,0,1,0,0,0,36,0,0,0,101,0,0,0,1,0,0,0,78,1,0,0,101,0,0,0,1,0,0,0,46,1,0,0,57,224,7,0,43,102,1,0,36,1,0,0,57,224,7,0,1,0,0,0,36,0,0,0,110,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,1,0,0,0,46,1,0,0,167,224,7,0,60,102,1,0,36,1,0,0,167,224,7, 0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,209,224,7,0,75,102,1,0,36,1,0,0,209,224,7,0,1,0,0,0,36,0,0,0,101,0,0,0,1,0,0,0,78,1,0,0,101,0,0,0,1,0,0,0,46,1,0,0,54,225,7,0,91,102,1,0,36,1,0,0,54,225,7,0,1,0,0,0,36,0,0,0,110,0, 0,0,1,0,0,0,78,1,0,0,110,0,0,0,1,0,0,0,46,1,0,0,164,225,7,0,108,102,1,0,36,1,0,0,164,225,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,206,225,7,0,123,102,1,0,36,1,0,0,206,225,7,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0, 99,0,0,0,1,0,0,0,46,1,0,0,49,226,7,0,139,102,1,0,36,1,0,0,49,226,7,0,1,0,0,0,36,0,0,0,108,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,1,0,0,0,46,1,0,0,157,226,7,0,156,102,1,0,36,1,0,0,157,226,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1, 0,0,199,226,7,0,171,102,1,0,36,1,0,0,199,226,7,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,42,227,7,0,187,102,1,0,36,1,0,0,42,227,7,0,1,0,0,0,36,0,0,0,108,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,1,0,0,0,46,1,0,0,150,227,7,0,204,102, 1,0,36,1,0,0,150,227,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,192,227,7,0,219,102,1,0,36,1,0,0,192,227,7,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,35,228,7,0,235,102,1,0,36,1,0,0,35,228,7,0, 1,0,0,0,36,0,0,0,108,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,1,0,0,0,46,1,0,0,143,228,7,0,252,102,1,0,36,1,0,0,143,228,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,185,228,7,0,11,103,1,0,36,1,0,0,185,228,7,0,1,0,0,0,36,0,0,0,99,0, 0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,28,229,7,0,27,103,1,0,36,1,0,0,28,229,7,0,1,0,0,0,36,0,0,0,108,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,1,0,0,0,46,1,0,0,136,229,7,0,44,103,1,0,36,1,0,0,136,229,7,0,1,0,0,0,36,0,0,0,103,0,0,0,1,0,0,0,78,1,0,0,103, 0,0,0,1,0,0,0,46,1,0,0,239,229,7,0,56,103,1,0,36,1,0,0,239,229,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,25,230,7,0,71,103,1,0,36,1,0,0,25,230,7,0,1,0,0,0,36,0,0,0,58,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,1,0,0,0,46,1,0,0,83, 230,7,0,87,103,1,0,36,1,0,0,83,230,7,0,1,0,0,0,36,0,0,0,67,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,1,0,0,0,46,1,0,0,150,230,7,0,104,103,1,0,36,1,0,0,150,230,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,192,230,7,0,119,103,1,0,36,1, 0,0,192,230,7,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,17,231,7,0,135,103,1,0,36,1,0,0,17,231,7,0,1,0,0,0,36,0,0,0,90,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,1,0,0,0,46,1,0,0,107,231,7,0,152,103,1,0,36,1,0,0,107,231,7,0,1,0,0,0, 36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,149,231,7,0,167,103,1,0,36,1,0,0,149,231,7,0,1,0,0,0,36,0,0,0,58,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,1,0,0,0,46,1,0,0,207,231,7,0,183,103,1,0,36,1,0,0,207,231,7,0,1,0,0,0,36,0,0,0,67,0,0,0,1,0, 0,0,78,1,0,0,67,0,0,0,1,0,0,0,46,1,0,0,18,232,7,0,200,103,1,0,36,1,0,0,18,232,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,60,232,7,0,215,103,1,0,36,1,0,0,60,232,7,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0, 0,0,46,1,0,0,141,232,7,0,231,103,1,0,36,1,0,0,141,232,7,0,1,0,0,0,36,0,0,0,90,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,1,0,0,0,46,1,0,0,231,232,7,0,248,103,1,0,36,1,0,0,231,232,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,17,233,7, 0,7,104,1,0,36,1,0,0,17,233,7,0,1,0,0,0,36,0,0,0,60,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,1,0,0,0,46,1,0,0,77,233,7,0,23,104,1,0,36,1,0,0,77,233,7,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,146,233,7,0,40,104,1,0,36,1,0,0,146,233, 7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,188,233,7,0,55,104,1,0,36,1,0,0,188,233,7,0,1,0,0,0,36,0,0,0,60,0,0,0,1,0,0,0,78,1,0,0,60,0,0,0,1,0,0,0,46,1,0,0,248,233,7,0,71,104,1,0,36,1,0,0,248,233,7,0,1,0,0,0,36,0,0,0,69, 0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,61,234,7,0,88,104,1,0,36,1,0,0,61,234,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,103,234,7,0,103,104,1,0,36,1,0,0,103,234,7,0,1,0,0,0,36,0,0,0,96,0,0,0,1,0,0,0,78,1,0,0,96, 0,0,0,1,0,0,0,46,1,0,0,199,234,7,0,119,104,1,0,36,1,0,0,199,234,7,0,1,0,0,0,36,0,0,0,105,0,0,0,1,0,0,0,78,1,0,0,105,0,0,0,1,0,0,0,46,1,0,0,48,235,7,0,136,104,1,0,36,1,0,0,48,235,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0, 90,235,7,0,152,104,1,0,36,1,0,0,90,235,7,0,1,0,0,0,36,0,0,0,107,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,1,0,0,0,46,1,0,0,197,235,7,0,169,104,1,0,36,1,0,0,197,235,7,0,1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,1,0,0,0,46,1,0,0,225,235,7,0,187,104,1, 0,36,1,0,0,225,235,7,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,11,236,7,0,203,104,1,0,36,1,0,0,11,236,7,0,1,0,0,0,36,0,0,0,114,0,0,0,1,0,0,0,78,1,0,0,114,0,0,0,1,0,0,0,46,1,0,0,125,236,7,0,220,104,1,0,36,1,0,0,125,236,7,0, 1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,1,0,0,0,46,1,0,0,153,236,7,0,238,104,1,0,36,1,0,0,153,236,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,217,236,7,0,247,104,1,0,36,1,0,0,217,236,7,0,1,0,0,0,36,0,0,0,37,0, 0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,254,236,7,0,2,105,1,0,36,1,0,0,254,236,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,62,237,7,0,11,105,1,0,36,1,0,0,62,237,7,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0, 0,1,0,0,0,46,1,0,0,99,237,7,0,22,105,1,0,36,1,0,0,99,237,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,163,237,7,0,31,105,1,0,36,1,0,0,163,237,7,0,1,0,0,0,36,0,0,0,130,0,0,0,1,0,0,0,78,1,0,0,130,0,0,0,1,0,0,0,46,1,0,0,37,238, 7,0,42,105,1,0,36,1,0,0,37,238,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,101,238,7,0,52,105,1,0,36,1,0,0,101,238,7,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,138,238,7,0,64,105,1,0,36,1,0,0,138, 238,7,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,237,238,7,0,75,105,1,0,36,1,0,0,237,238,7,0,1,0,0,0,36,0,0,0,136,0,0,0,1,0,0,0,78,1,0,0,136,0,0,0,1,0,0,0,46,1,0,0,117,239,7,0,88,105,1,0,36,1,0,0,117,239,7,0,1,0,0,0,36,0,0, 0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,181,239,7,0,98,105,1,0,36,1,0,0,181,239,7,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,24,240,7,0,110,105,1,0,36,1,0,0,24,240,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0, 0,64,0,0,0,1,0,0,0,46,1,0,0,88,240,7,0,119,105,1,0,36,1,0,0,88,240,7,0,1,0,0,0,36,0,0,0,103,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,1,0,0,0,46,1,0,0,191,240,7,0,130,105,1,0,36,1,0,0,191,240,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46, 1,0,0,255,240,7,0,139,105,1,0,36,1,0,0,255,240,7,0,1,0,0,0,36,0,0,0,84,0,0,0,1,0,0,0,78,1,0,0,84,0,0,0,1,0,0,0,46,1,0,0,83,241,7,0,150,105,1,0,36,1,0,0,83,241,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,147,241,7,0,159,105, 1,0,36,1,0,0,147,241,7,0,1,0,0,0,36,0,0,0,56,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,1,0,0,0,46,1,0,0,203,241,7,0,170,105,1,0,36,1,0,0,203,241,7,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,11,242,7,0,180,105,1,0,36,1,0,0,11,242,7,0, 1,0,0,0,36,0,0,0,70,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,1,0,0,0,46,1,0,0,81,242,7,0,192,105,1,0,36,1,0,0,81,242,7,0,1,0,0,0,36,0,0,0,124,0,0,0,1,0,0,0,78,1,0,0,124,0,0,0,1,0,0,0,46,1,0,0,205,242,7,0,202,105,1,0,36,1,0,0,205,242,7,0,1,0,0,0,36,0,0,0,132,0, 0,0,1,0,0,0,78,1,0,0,132,0,0,0,1,0,0,0,46,1,0,0,81,243,7,0,213,105,1,0,36,1,0,0,81,243,7,0,1,0,0,0,36,0,0,0,141,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,1,0,0,0,46,1,0,0,222,243,7,0,225,105,1,0,36,1,0,0,222,243,7,0,1,0,0,0,36,0,0,0,163,0,0,0,1,0,0,0,78,1,0,0, 163,0,0,0,1,0,0,0,46,1,0,0,129,244,7,0,237,105,1,0,36,1,0,0,129,244,7,0,1,0,0,0,36,0,0,0,173,18,0,0,1,0,0,0,78,1,0,0,173,18,0,0,1,106,1,0,38,10,0,0,192,208,9,0,20,106,1,0,38,10,0,0,196,208,9,0,40,106,1,0,38,10,0,0,200,208,9,0,60,106,1,0,38,10,0,0,204, 208,9,0,78,106,1,0,38,10,0,0,208,208,9,0,96,106,1,0,38,10,0,0,212,208,9,0,114,106,1,0,38,10,0,0,216,208,9,0,132,106,1,0,38,10,0,0,220,208,9,0,149,106,1,0,38,10,0,0,224,208,9,0,166,106,1,0,38,10,0,0,228,208,9,0,183,106,1,0,38,10,0,0,232,208,9,0,200,106, 1,0,38,10,0,0,236,208,9,0,217,106,1,0,38,10,0,0,240,208,9,0,234,106,1,0,38,10,0,0,244,208,9,0,251,106,1,0,38,10,0,0,248,208,9,0,12,107,1,0,38,10,0,0,252,208,9,0,29,107,1,0,38,10,0,0,0,209,9,0,46,107,1,0,38,10,0,0,4,209,9,0,63,107,1,0,38,10,0,0,8,209, 9,0,80,107,1,0,38,10,0,0,12,209,9,0,97,107,1,0,38,10,0,0,16,209,9,0,115,107,1,0,38,10,0,0,20,209,9,0,133,107,1,0,38,10,0,0,24,209,9,0,144,107,1,0,38,10,0,0,28,209,9,0,155,107,1,0,38,10,0,0,32,209,9,0,166,107,1,0,38,10,0,0,36,209,9,0,178,107,1,0,38,10, 0,0,40,209,9,0,191,107,1,0,38,10,0,0,44,209,9,0,203,107,1,0,38,10,0,0,48,209,9,0,214,107,1,0,38,10,0,0,52,209,9,0,225,107,1,0,38,10,0,0,56,209,9,0,236,107,1,0,38,10,0,0,60,209,9,0,248,107,1,0,38,10,0,0,64,209,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0, 100,0,0,0,0,0,0,0,4,108,1,0,100,0,0,0,0,0,0,0,33,108,1,0,102,0,1,0,97,96,143,77,1,0,0,0,46,1,0,0,46,7,8,0,101,108,1,0,36,1,0,0,46,7,8,0,1,0,0,0,36,0,0,0,94,0,0,0,1,0,0,0,78,1,0,0,94,0,0,0,1,0,0,0,46,1,0,0,140,7,8,0,112,108,1,0,36,1,0,0,140,7,8,0,1,0, 0,0,36,0,0,0,44,0,0,0,1,0,0,0,78,1,0,0,44,0,0,0,1,0,0,0,46,1,0,0,184,7,8,0,124,108,1,0,36,1,0,0,184,7,8,0,1,0,0,0,36,0,0,0,53,0,0,0,1,0,0,0,78,1,0,0,53,0,0,0,1,0,0,0,46,1,0,0,237,7,8,0,137,108,1,0,36,1,0,0,237,7,8,0,1,0,0,0,36,0,0,0,203,0,0,0,1,0,0,0, 78,1,0,0,203,0,0,0,1,0,0,0,46,1,0,0,184,8,8,0,150,108,1,0,36,1,0,0,184,8,8,0,1,0,0,0,36,0,0,0,107,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,1,0,0,0,46,1,0,0,35,9,8,0,163,108,1,0,36,1,0,0,35,9,8,0,1,0,0,0,36,0,0,0,27,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,1,0,0,0,46, 1,0,0,62,9,8,0,177,108,1,0,36,1,0,0,62,9,8,0,1,0,0,0,36,0,0,0,32,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,1,0,0,0,46,1,0,0,94,9,8,0,191,108,1,0,36,1,0,0,94,9,8,0,1,0,0,0,36,0,0,0,41,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,1,0,0,0,46,1,0,0,135,9,8,0,206,108,1,0,36,1,0, 0,135,9,8,0,1,0,0,0,36,0,0,0,203,0,0,0,1,0,0,0,78,1,0,0,203,0,0,0,1,0,0,0,46,1,0,0,82,10,8,0,221,108,1,0,36,1,0,0,82,10,8,0,1,0,0,0,36,0,0,0,107,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,1,0,0,0,46,1,0,0,189,10,8,0,235,108,1,0,36,1,0,0,189,10,8,0,1,0,0,0,36,0, 0,0,32,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,1,0,0,0,46,1,0,0,221,10,8,0,250,108,1,0,36,1,0,0,221,10,8,0,1,0,0,0,36,0,0,0,41,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,1,0,0,0,46,1,0,0,6,11,8,0,11,109,1,0,36,1,0,0,6,11,8,0,1,0,0,0,36,0,0,0,41,0,0,0,1,0,0,0,78,1,0,0,41, 0,0,0,1,0,0,0,46,1,0,0,47,11,8,0,30,109,1,0,36,1,0,0,47,11,8,0,1,0,0,0,36,0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,139,11,8,0,45,109,1,0,36,1,0,0,139,11,8,0,1,0,0,0,36,0,0,0,181,0,0,0,1,0,0,0,78,1,0,0,181,0,0,0,1,0,0,0,46,1,0,0,64,12, 8,0,61,109,1,0,36,1,0,0,64,12,8,0,1,0,0,0,36,0,0,0,77,0,0,0,1,0,0,0,78,1,0,0,77,0,0,0,1,0,0,0,46,1,0,0,141,12,8,0,71,109,1,0,36,1,0,0,141,12,8,0,1,0,0,0,36,0,0,0,20,0,0,0,1,0,0,0,78,1,0,0,20,0,0,0,1,0,0,0,46,1,0,0,161,12,8,0,82,109,1,0,36,1,0,0,161,12, 8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,183,12,8,0,93,109,1,0,36,1,0,0,183,12,8,0,1,0,0,0,36,0,0,0,9,1,0,0,1,0,0,0,78,1,0,0,9,1,0,0,1,0,0,0,46,1,0,0,192,13,8,0,105,109,1,0,36,1,0,0,192,13,8,0,1,0,0,0,36,0,0,0,38,0,0,0, 1,0,0,0,78,1,0,0,38,0,0,0,1,0,0,0,46,1,0,0,230,13,8,0,116,109,1,0,36,1,0,0,230,13,8,0,1,0,0,0,36,0,0,0,45,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,1,0,0,0,46,1,0,0,19,14,8,0,128,109,1,0,36,1,0,0,19,14,8,0,1,0,0,0,36,0,0,0,45,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,1, 0,0,0,46,1,0,0,64,14,8,0,141,109,1,0,36,1,0,0,64,14,8,0,1,0,0,0,36,0,0,0,45,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,1,0,0,0,46,1,0,0,109,14,8,0,155,109,1,0,36,1,0,0,109,14,8,0,1,0,0,0,36,0,0,0,59,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,1,0,0,0,46,1,0,0,168,14,8,0,166, 109,1,0,36,1,0,0,168,14,8,0,1,0,0,0,36,0,0,0,59,0,0,0,1,0,0,0,78,1,0,0,59,0,0,0,1,0,0,0,46,1,0,0,227,14,8,0,181,109,1,0,36,1,0,0,227,14,8,0,1,0,0,0,36,0,0,0,83,0,0,0,1,0,0,0,78,1,0,0,83,0,0,0,1,0,0,0,46,1,0,0,54,15,8,0,191,109,1,0,36,1,0,0,54,15,8,0, 1,0,0,0,36,0,0,0,51,1,0,0,1,0,0,0,78,1,0,0,51,1,0,0,1,0,0,0,46,1,0,0,105,16,8,0,203,109,1,0,36,1,0,0,105,16,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,127,16,8,0,217,109,1,0,36,1,0,0,127,16,8,0,1,0,0,0,36,0,0,0,29,0,0,0, 1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,156,16,8,0,232,109,1,0,36,1,0,0,156,16,8,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,185,16,8,0,248,109,1,0,36,1,0,0,185,16,8,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0, 1,0,0,0,46,1,0,0,214,16,8,0,9,110,1,0,36,1,0,0,214,16,8,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,1,0,0,0,46,1,0,0,1,17,8,0,23,110,1,0,36,1,0,0,1,17,8,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,1,0,0,0,46,1,0,0,44,17,8,0,41,110, 1,0,36,1,0,0,44,17,8,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,1,0,0,0,46,1,0,0,131,17,8,0,54,110,1,0,36,1,0,0,131,17,8,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,160,17,8,0,68,110,1,0,36,1,0,0,160,17,8,0,1,0,0, 0,36,0,0,0,55,1,0,0,1,0,0,0,78,1,0,0,55,1,0,0,1,0,0,0,46,1,0,0,215,18,8,0,83,110,1,0,36,1,0,0,215,18,8,0,1,0,0,0,36,0,0,0,72,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,1,0,0,0,46,1,0,0,31,19,8,0,95,110,1,0,36,1,0,0,31,19,8,0,1,0,0,0,36,0,0,0,67,0,0,0,1,0,0,0,78, 1,0,0,67,0,0,0,1,0,0,0,46,1,0,0,98,19,8,0,108,110,1,0,36,1,0,0,98,19,8,0,1,0,0,0,36,0,0,0,106,0,0,0,1,0,0,0,78,1,0,0,106,0,0,0,1,0,0,0,46,1,0,0,204,19,8,0,120,110,1,0,36,1,0,0,204,19,8,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46, 1,0,0,47,20,8,0,133,110,1,0,36,1,0,0,47,20,8,0,1,0,0,0,36,0,0,0,39,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,1,0,0,0,46,1,0,0,86,20,8,0,144,110,1,0,36,1,0,0,86,20,8,0,1,0,0,0,36,0,0,0,3,2,0,0,1,0,0,0,78,1,0,0,3,2,0,0,1,0,0,0,46,1,0,0,89,22,8,0,156,110,1,0,36,1, 0,0,89,22,8,0,1,0,0,0,36,0,0,0,111,1,0,0,1,0,0,0,78,1,0,0,111,1,0,0,1,0,0,0,46,1,0,0,200,23,8,0,170,110,1,0,36,1,0,0,200,23,8,0,1,0,0,0,36,0,0,0,204,0,0,0,1,0,0,0,78,1,0,0,204,0,0,0,1,0,0,0,46,1,0,0,148,24,8,0,186,110,1,0,36,1,0,0,148,24,8,0,1,0,0,0, 36,0,0,0,193,2,0,0,1,0,0,0,78,1,0,0,193,2,0,0,1,0,0,0,46,1,0,0,85,27,8,0,198,110,1,0,36,1,0,0,85,27,8,0,1,0,0,0,36,0,0,0,39,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,1,0,0,0,46,1,0,0,124,27,8,0,210,110,1,0,36,1,0,0,124,27,8,0,1,0,0,0,36,0,0,0,94,1,0,0,1,0,0,0, 78,1,0,0,94,1,0,0,1,0,0,0,46,1,0,0,218,28,8,0,221,110,1,0,36,1,0,0,218,28,8,0,1,0,0,0,36,0,0,0,159,0,0,0,1,0,0,0,78,1,0,0,159,0,0,0,1,0,0,0,46,1,0,0,121,29,8,0,234,110,1,0,36,1,0,0,121,29,8,0,1,0,0,0,36,0,0,0,147,2,0,0,1,0,0,0,78,1,0,0,147,2,0,0,1,0, 0,0,46,1,0,0,12,32,8,0,244,110,1,0,36,1,0,0,12,32,8,0,1,0,0,0,36,0,0,0,95,1,0,0,1,0,0,0,78,1,0,0,95,1,0,0,1,0,0,0,46,1,0,0,107,33,8,0,255,110,1,0,36,1,0,0,107,33,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,149,33,8,0,20,111, 1,0,36,1,0,0,149,33,8,0,1,0,0,0,36,0,0,0,128,0,0,0,1,0,0,0,78,1,0,0,128,0,0,0,1,0,0,0,46,1,0,0,21,34,8,0,34,111,1,0,36,1,0,0,21,34,8,0,1,0,0,0,36,0,0,0,78,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,1,0,0,0,46,1,0,0,99,34,8,0,46,111,1,0,36,1,0,0,99,34,8,0,1,0,0, 0,36,0,0,0,78,0,0,0,1,0,0,0,78,1,0,0,78,0,0,0,1,0,0,0,46,1,0,0,177,34,8,0,59,111,1,0,36,1,0,0,177,34,8,0,1,0,0,0,36,0,0,0,41,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,1,0,0,0,46,1,0,0,218,34,8,0,70,111,1,0,36,1,0,0,218,34,8,0,1,0,0,0,36,0,0,0,154,0,0,0,1,0,0,0, 78,1,0,0,154,0,0,0,1,0,0,0,46,1,0,0,116,35,8,0,85,111,1,0,36,1,0,0,116,35,8,0,1,0,0,0,36,0,0,0,151,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,1,0,0,0,46,1,0,0,11,36,8,0,96,111,1,0,36,1,0,0,11,36,8,0,1,0,0,0,36,0,0,0,7,1,0,0,1,0,0,0,78,1,0,0,7,1,0,0,1,0,0,0,46, 1,0,0,18,37,8,0,108,111,1,0,36,1,0,0,18,37,8,0,1,0,0,0,36,0,0,0,184,1,0,0,1,0,0,0,78,1,0,0,184,1,0,0,1,0,0,0,46,1,0,0,202,38,8,0,120,111,1,0,36,1,0,0,202,38,8,0,1,0,0,0,36,0,0,0,230,0,0,0,1,0,0,0,78,1,0,0,230,0,0,0,1,0,0,0,46,1,0,0,176,39,8,0,133,111, 1,0,36,1,0,0,176,39,8,0,1,0,0,0,36,0,0,0,154,0,0,0,1,0,0,0,78,1,0,0,154,0,0,0,1,0,0,0,46,1,0,0,74,40,8,0,150,111,1,0,36,1,0,0,74,40,8,0,1,0,0,0,36,0,0,0,39,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,1,0,0,0,46,1,0,0,113,40,8,0,163,111,1,0,36,1,0,0,113,40,8,0,1, 0,0,0,36,0,0,0,159,0,0,0,1,0,0,0,78,1,0,0,159,0,0,0,1,0,0,0,46,1,0,0,16,41,8,0,177,111,1,0,36,1,0,0,16,41,8,0,1,0,0,0,36,0,0,0,95,2,0,0,1,0,0,0,78,1,0,0,95,2,0,0,1,0,0,0,46,1,0,0,111,43,8,0,190,111,1,0,36,1,0,0,111,43,8,0,1,0,0,0,36,0,0,0,98,1,0,0,1, 0,0,0,78,1,0,0,98,1,0,0,1,0,0,0,46,1,0,0,209,44,8,0,204,111,1,0,36,1,0,0,209,44,8,0,1,0,0,0,36,0,0,0,154,0,0,0,1,0,0,0,78,1,0,0,154,0,0,0,1,0,0,0,46,1,0,0,107,45,8,0,222,111,1,0,36,1,0,0,107,45,8,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0, 1,0,0,0,46,1,0,0,150,45,8,0,236,111,1,0,36,1,0,0,150,45,8,0,1,0,0,0,36,0,0,0,55,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,1,0,0,0,46,1,0,0,205,45,8,0,253,111,1,0,36,1,0,0,205,45,8,0,1,0,0,0,36,0,0,0,55,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,1,0,0,0,46,1,0,0,4,46,8,0, 12,112,1,0,36,1,0,0,4,46,8,0,1,0,0,0,36,0,0,0,55,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,1,0,0,0,46,1,0,0,59,46,8,0,28,112,1,0,36,1,0,0,59,46,8,0,1,0,0,0,36,0,0,0,39,0,0,0,1,0,0,0,78,1,0,0,39,0,0,0,1,0,0,0,46,1,0,0,98,46,8,0,42,112,1,0,36,1,0,0,98,46,8,0,1,0, 0,0,36,0,0,0,55,1,0,0,1,0,0,0,78,1,0,0,55,1,0,0,1,0,0,0,46,1,0,0,153,47,8,0,57,112,1,0,36,1,0,0,153,47,8,0,1,0,0,0,36,0,0,0,90,0,0,0,1,0,0,0,78,1,0,0,90,0,0,0,1,0,0,0,46,1,0,0,243,47,8,0,69,112,1,0,36,1,0,0,243,47,8,0,1,0,0,0,36,0,0,0,60,0,0,0,1,0,0, 0,78,1,0,0,60,0,0,0,1,0,0,0,46,1,0,0,47,48,8,0,82,112,1,0,36,1,0,0,47,48,8,0,1,0,0,0,36,0,0,0,67,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,1,0,0,0,46,1,0,0,114,48,8,0,98,112,1,0,36,1,0,0,114,48,8,0,1,0,0,0,36,0,0,0,67,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,1,0,0,0,46, 1,0,0,181,48,8,0,112,112,1,0,36,1,0,0,181,48,8,0,1,0,0,0,36,0,0,0,67,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,1,0,0,0,46,1,0,0,248,48,8,0,127,112,1,0,36,1,0,0,248,48,8,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,73,49,8,0,140,112,1, 0,36,1,0,0,73,49,8,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,154,49,8,0,157,112,1,0,36,1,0,0,154,49,8,0,1,0,0,0,36,0,0,0,3,1,0,0,1,0,0,0,78,1,0,0,3,1,0,0,1,0,0,0,46,1,0,0,157,50,8,0,171,112,1,0,36,1,0,0,157,50,8,0,1,0,0,0, 36,0,0,0,125,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,1,0,0,0,46,1,0,0,26,51,8,0,182,112,1,0,36,1,0,0,26,51,8,0,1,0,0,0,36,0,0,0,68,0,0,0,1,0,0,0,78,1,0,0,68,0,0,0,1,0,0,0,46,1,0,0,94,51,8,0,195,112,1,0,36,1,0,0,94,51,8,0,1,0,0,0,36,0,0,0,129,0,0,0,1,0,0,0,78, 1,0,0,129,0,0,0,1,0,0,0,46,1,0,0,223,51,8,0,208,112,1,0,36,1,0,0,223,51,8,0,1,0,0,0,36,0,0,0,132,0,0,0,1,0,0,0,78,1,0,0,132,0,0,0,1,0,0,0,46,1,0,0,99,52,8,0,219,112,1,0,36,1,0,0,99,52,8,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46, 1,0,0,178,52,8,0,231,112,1,0,36,1,0,0,178,52,8,0,1,0,0,0,36,0,0,0,124,0,0,0,1,0,0,0,78,1,0,0,124,0,0,0,1,0,0,0,46,1,0,0,46,53,8,0,244,112,1,0,36,1,0,0,46,53,8,0,1,0,0,0,36,0,0,0,18,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,1,0,0,0,46,1,0,0,64,53,8,0,1,113,1,0, 36,1,0,0,64,53,8,0,1,0,0,0,36,0,0,0,201,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0,1,0,0,0,46,1,0,0,9,54,8,0,14,113,1,0,36,1,0,0,9,54,8,0,1,0,0,0,36,0,0,0,55,1,0,0,1,0,0,0,78,1,0,0,55,1,0,0,1,0,0,0,46,1,0,0,64,55,8,0,39,113,1,0,36,1,0,0,64,55,8,0,1,0,0,0,36,0, 0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,203,55,8,0,57,113,1,0,36,1,0,0,203,55,8,0,1,0,0,0,36,0,0,0,119,1,0,0,1,0,0,0,78,1,0,0,119,1,0,0,1,0,0,0,46,1,0,0,66,57,8,0,77,113,1,0,36,1,0,0,66,57,8,0,1,0,0,0,36,0,0,0,252,0,0,0,1,0,0,0,78,1, 0,0,252,0,0,0,1,0,0,0,46,1,0,0,62,58,8,0,98,113,1,0,36,1,0,0,62,58,8,0,1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,1,0,0,0,46,1,0,0,90,58,8,0,116,113,1,0,36,1,0,0,90,58,8,0,1,0,0,0,36,0,0,0,217,0,0,0,1,0,0,0,78,1,0,0,217,0,0,0,1,0,0,0,46,1,0, 0,51,59,8,0,136,113,1,0,36,1,0,0,51,59,8,0,1,0,0,0,36,0,0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,190,59,8,0,146,113,1,0,36,1,0,0,190,59,8,0,1,0,0,0,36,0,0,0,56,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,1,0,0,0,46,1,0,0,246,59,8,0,157,113,1,0,36, 1,0,0,246,59,8,0,1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,1,0,0,0,46,1,0,0,18,60,8,0,169,113,1,0,36,1,0,0,18,60,8,0,1,0,0,0,36,0,0,0,203,0,0,0,1,0,0,0,78,1,0,0,203,0,0,0,1,0,0,0,46,1,0,0,221,60,8,0,181,113,1,0,36,1,0,0,221,60,8,0,1,0,0,0,36, 0,0,0,73,0,0,0,1,0,0,0,78,1,0,0,73,0,0,0,1,0,0,0,46,1,0,0,38,61,8,0,193,113,1,0,36,1,0,0,38,61,8,0,1,0,0,0,36,0,0,0,32,0,0,0,1,0,0,0,78,1,0,0,32,0,0,0,1,0,0,0,46,1,0,0,70,61,8,0,206,113,1,0,36,1,0,0,70,61,8,0,1,0,0,0,36,0,0,0,59,0,0,0,1,0,0,0,78,1,0, 0,59,0,0,0,1,0,0,0,46,1,0,0,129,61,8,0,220,113,1,0,36,1,0,0,129,61,8,0,1,0,0,0,36,0,0,0,17,0,0,0,1,0,0,0,78,1,0,0,17,0,0,0,1,0,0,0,46,1,0,0,146,61,8,0,232,113,1,0,36,1,0,0,146,61,8,0,1,0,0,0,36,0,0,0,217,0,0,0,1,0,0,0,78,1,0,0,217,0,0,0,1,0,0,0,46,1, 0,0,107,62,8,0,246,113,1,0,36,1,0,0,107,62,8,0,1,0,0,0,36,0,0,0,133,0,0,0,1,0,0,0,78,1,0,0,133,0,0,0,1,0,0,0,46,1,0,0,240,62,8,0,1,114,1,0,36,1,0,0,240,62,8,0,1,0,0,0,36,0,0,0,121,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,1,0,0,0,46,1,0,0,105,63,8,0,16,114,1, 0,36,1,0,0,105,63,8,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,186,63,8,0,32,114,1,0,36,1,0,0,186,63,8,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,9,64,8,0,48,114,1,0,36,1,0,0,9,64,8,0,1,0,0,0,36, 0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,101,64,8,0,59,114,1,0,36,1,0,0,101,64,8,0,1,0,0,0,36,0,0,0,34,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,1,0,0,0,46,1,0,0,135,64,8,0,71,114,1,0,36,1,0,0,135,64,8,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1, 0,0,19,0,0,0,1,0,0,0,46,1,0,0,154,64,8,0,84,114,1,0,36,1,0,0,154,64,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,176,64,8,0,94,114,1,0,36,1,0,0,176,64,8,0,1,0,0,0,36,0,0,0,23,1,0,0,1,0,0,0,78,1,0,0,23,1,0,0,1,0,0,0,46,1,0, 0,199,65,8,0,107,114,1,0,36,1,0,0,199,65,8,0,1,0,0,0,36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,127,114,1,0,38,10,0,0,68,209,9,0,140,114,1,0,38,10,0,0,72,209,9,0,155,114,1,0,38,10,0,0,76,209,9,0,171,114,1,0,38,10,0,0,80,209,9,0,183,114,1,0,38,10,0,0, 84,209,9,0,195,114,1,0,38,10,0,0,88,209,9,0,210,114,1,0,38,10,0,0,92,209,9,0,222,114,1,0,38,10,0,0,96,209,9,0,234,114,1,0,38,10,0,0,100,209,9,0,247,114,1,0,38,10,0,0,104,209,9,0,3,115,1,0,38,10,0,0,108,209,9,0,17,115,1,0,38,10,0,0,112,209,9,0,32,115, 1,0,38,10,0,0,116,209,9,0,46,115,1,0,38,10,0,0,120,209,9,0,59,115,1,0,38,10,0,0,124,209,9,0,72,115,1,0,38,10,0,0,128,209,9,0,92,115,1,0,38,10,0,0,132,209,9,0,104,115,1,0,38,10,0,0,136,209,9,0,118,115,1,0,38,10,0,0,140,209,9,0,131,115,1,0,38,10,0,0,144, 209,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,146,115,1,0,100,0,0,0,0,0,0,0,168,115,1,0,102,0,1,0,97,96,143,77,1,0,0,0,46,1,0,0,41,66,8,0,229,115,1,0,36,1,0,0,41,66,8,0,1,0,0,0,36,0,0,0,123,2,0,0,1,0,0,0,78,1,0,0,123,2,0,0,1,0,0,0,46, 1,0,0,164,68,8,0,242,115,1,0,36,1,0,0,164,68,8,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,7,69,8,0,3,116,1,0,36,1,0,0,7,69,8,0,1,0,0,0,36,0,0,0,131,0,0,0,1,0,0,0,78,1,0,0,131,0,0,0,1,0,0,0,46,1,0,0,138,69,8,0,25,116,1,0,36, 1,0,0,138,69,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,160,69,8,0,41,116,1,0,36,1,0,0,160,69,8,0,1,0,0,0,36,0,0,0,30,0,0,0,1,0,0,0,78,1,0,0,30,0,0,0,1,0,0,0,46,1,0,0,190,69,8,0,58,116,1,0,36,1,0,0,190,69,8,0,1,0,0,0,36, 0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,26,70,8,0,72,116,1,0,36,1,0,0,26,70,8,0,1,0,0,0,36,0,0,0,85,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,1,0,0,0,46,1,0,0,111,70,8,0,85,116,1,0,36,1,0,0,111,70,8,0,1,0,0,0,36,0,0,0,53,0,0,0,1,0,0,0,78,1,0, 0,53,0,0,0,1,0,0,0,46,1,0,0,164,70,8,0,103,116,1,0,36,1,0,0,164,70,8,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,193,70,8,0,117,116,1,0,36,1,0,0,193,70,8,0,1,0,0,0,36,0,0,0,89,1,0,0,1,0,0,0,78,1,0,0,89,1,0,0,1,0,0,0,46,1,0, 0,26,72,8,0,132,116,1,0,36,1,0,0,26,72,8,0,1,0,0,0,36,0,0,0,183,0,0,0,1,0,0,0,78,1,0,0,183,0,0,0,1,0,0,0,46,1,0,0,209,72,8,0,147,116,1,0,36,1,0,0,209,72,8,0,1,0,0,0,36,0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,45,73,8,0,165,116,1,0,36, 1,0,0,45,73,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,87,73,8,0,181,116,1,0,36,1,0,0,87,73,8,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,116,73,8,0,201,116,1,0,36,1,0,0,116,73,8,0,1,0,0,0,36,0, 0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,145,73,8,0,217,116,1,0,36,1,0,0,145,73,8,0,1,0,0,0,36,0,0,0,213,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,1,0,0,0,46,1,0,0,102,74,8,0,234,116,1,0,36,1,0,0,102,74,8,0,1,0,0,0,36,0,0,0,196,0,0,0,1,0,0,0,78, 1,0,0,196,0,0,0,1,0,0,0,46,1,0,0,42,75,8,0,249,116,1,0,36,1,0,0,42,75,8,0,1,0,0,0,36,0,0,0,92,0,0,0,1,0,0,0,78,1,0,0,92,0,0,0,1,0,0,0,46,1,0,0,134,75,8,0,11,117,1,0,36,1,0,0,134,75,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1, 0,0,176,75,8,0,27,117,1,0,36,1,0,0,176,75,8,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,205,75,8,0,47,117,1,0,36,1,0,0,205,75,8,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,234,75,8,0,63,117,1,0,36, 1,0,0,234,75,8,0,1,0,0,0,36,0,0,0,213,0,0,0,1,0,0,0,78,1,0,0,213,0,0,0,1,0,0,0,46,1,0,0,191,76,8,0,80,117,1,0,36,1,0,0,191,76,8,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,1,0,0,0,46,1,0,0,22,77,8,0,89,117,1,0,36,1,0,0,22,77,8,0,1,0,0,0,36, 0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,51,77,8,0,100,117,1,0,36,1,0,0,51,77,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,93,77,8,0,110,117,1,0,36,1,0,0,93,77,8,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0, 0,87,0,0,0,1,0,0,0,46,1,0,0,180,77,8,0,121,117,1,0,36,1,0,0,180,77,8,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0,0,0,1,0,0,0,46,1,0,0,209,77,8,0,134,117,1,0,36,1,0,0,209,77,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0, 0,251,77,8,0,146,117,1,0,36,1,0,0,251,77,8,0,1,0,0,0,36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,121,78,8,0,159,117,1,0,36,1,0,0,121,78,8,0,1,0,0,0,36,0,0,0,98,0,0,0,1,0,0,0,78,1,0,0,98,0,0,0,1,0,0,0,46,1,0,0,219,78,8,0,173,117,1,0, 36,1,0,0,219,78,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,5,79,8,0,187,117,1,0,36,1,0,0,5,79,8,0,1,0,0,0,36,0,0,0,221,1,0,0,1,0,0,0,78,1,0,0,221,1,0,0,1,0,0,0,46,1,0,0,226,80,8,0,198,117,1,0,36,1,0,0,226,80,8,0,1,0,0,0, 36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,211,117,1,0,38,10,0,0,148,209,9,0,226,117,1,0,38,10,0,0,152,209,9,0,240,117,1,0,38,10,0,0,156,209,9,0,0,118,1,0,38,10,0,0,160,209,9,0,17,118,1,0,38,10,0,0,164,209,9,0,34,118,1,0,38,10,0,0,168,209,9,0,43,118, 1,0,38,10,0,0,172,209,9,0,54,118,1,0,38,10,0,0,176,209,9,0,67,118,1,0,38,10,0,0,180,209,9,0,78,118,1,0,38,10,0,0,184,209,9,0,91,118,1,0,38,10,0,0,188,209,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,106,118,1,0,100,0,0,0,0,0,0,0,134,118, 1,0,102,0,1,0,97,96,143,77,1,0,0,0,46,1,0,0,254,80,8,0,201,118,1,0,36,1,0,0,254,80,8,0,1,0,0,0,36,0,0,0,73,1,0,0,1,0,0,0,78,1,0,0,73,1,0,0,1,0,0,0,46,1,0,0,71,82,8,0,212,118,1,0,36,1,0,0,71,82,8,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,1, 0,0,0,46,1,0,0,158,82,8,0,224,118,1,0,36,1,0,0,158,82,8,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,1,0,0,0,46,1,0,0,245,82,8,0,239,118,1,0,36,1,0,0,245,82,8,0,1,0,0,0,36,0,0,0,108,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,1,0,0,0,46,1,0,0,97,83,8,0, 252,118,1,0,36,1,0,0,97,83,8,0,1,0,0,0,36,0,0,0,225,0,0,0,1,0,0,0,78,1,0,0,225,0,0,0,1,0,0,0,46,1,0,0,66,84,8,0,8,119,1,0,36,1,0,0,66,84,8,0,1,0,0,0,36,0,0,0,125,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,1,0,0,0,46,1,0,0,191,84,8,0,24,119,1,0,36,1,0,0,191,84, 8,0,1,0,0,0,36,0,0,0,233,0,0,0,1,0,0,0,78,1,0,0,233,0,0,0,1,0,0,0,46,1,0,0,168,85,8,0,37,119,1,0,36,1,0,0,168,85,8,0,1,0,0,0,36,0,0,0,13,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,56,119,1,0,38,10,0,0,192,209,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0, 0,0,0,69,119,1,0,100,0,0,0,0,0,0,0,92,119,1,0,102,0,1,0,97,96,143,77,1,0,0,0,46,1,0,0,181,85,8,0,154,119,1,0,36,1,0,0,181,85,8,0,1,0,0,0,36,0,0,0,58,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,1,0,0,0,46,1,0,0,239,85,8,0,166,119,1,0,36,1,0,0,239,85,8,0,1,0,0,0,36, 0,0,0,61,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,1,0,0,0,46,1,0,0,44,86,8,0,178,119,1,0,36,1,0,0,44,86,8,0,1,0,0,0,36,0,0,0,141,0,0,0,1,0,0,0,78,1,0,0,141,0,0,0,1,0,0,0,46,1,0,0,185,86,8,0,191,119,1,0,36,1,0,0,185,86,8,0,1,0,0,0,36,0,0,0,86,1,0,0,1,0,0,0,78, 1,0,0,86,1,0,0,1,0,0,0,46,1,0,0,15,88,8,0,203,119,1,0,36,1,0,0,15,88,8,0,1,0,0,0,36,0,0,0,128,1,0,0,1,0,0,0,78,1,0,0,128,1,0,0,1,0,0,0,46,1,0,0,143,89,8,0,219,119,1,0,36,1,0,0,143,89,8,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46, 1,0,0,222,89,8,0,234,119,1,0,36,1,0,0,222,89,8,0,1,0,0,0,36,0,0,0,102,1,0,0,1,0,0,0,78,1,0,0,102,1,0,0,1,0,0,0,46,1,0,0,68,91,8,0,247,119,1,0,36,1,0,0,68,91,8,0,1,0,0,0,36,0,0,0,149,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,1,0,0,0,46,1,0,0,217,91,8,0,4,120,1, 0,36,1,0,0,217,91,8,0,1,0,0,0,36,0,0,0,153,0,0,0,1,0,0,0,78,1,0,0,153,0,0,0,1,0,0,0,46,1,0,0,114,92,8,0,21,120,1,0,36,1,0,0,114,92,8,0,1,0,0,0,36,0,0,0,133,1,0,0,1,0,0,0,78,1,0,0,133,1,0,0,1,0,0,0,46,1,0,0,247,93,8,0,39,120,1,0,36,1,0,0,247,93,8,0,1, 0,0,0,36,0,0,0,167,1,0,0,1,0,0,0,78,1,0,0,167,1,0,0,1,0,0,0,46,1,0,0,158,95,8,0,61,120,1,0,36,1,0,0,158,95,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,180,95,8,0,79,120,1,0,36,1,0,0,180,95,8,0,1,0,0,0,36,0,0,0,195,0,0,0,1, 0,0,0,78,1,0,0,195,0,0,0,1,0,0,0,46,1,0,0,119,96,8,0,98,120,1,0,36,1,0,0,119,96,8,0,1,0,0,0,36,0,0,0,153,0,0,0,1,0,0,0,78,1,0,0,153,0,0,0,1,0,0,0,46,1,0,0,16,97,8,0,116,120,1,0,36,1,0,0,16,97,8,0,1,0,0,0,36,0,0,0,130,1,0,0,1,0,0,0,78,1,0,0,130,1,0,0, 1,0,0,0,46,1,0,0,146,98,8,0,135,120,1,0,36,1,0,0,146,98,8,0,1,0,0,0,36,0,0,0,172,1,0,0,1,0,0,0,78,1,0,0,172,1,0,0,1,0,0,0,46,1,0,0,62,100,8,0,158,120,1,0,36,1,0,0,62,100,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,84,100, 8,0,177,120,1,0,36,1,0,0,84,100,8,0,1,0,0,0,36,0,0,0,195,0,0,0,1,0,0,0,78,1,0,0,195,0,0,0,1,0,0,0,46,1,0,0,23,101,8,0,197,120,1,0,36,1,0,0,23,101,8,0,1,0,0,0,36,0,0,0,166,0,0,0,1,0,0,0,78,1,0,0,166,0,0,0,1,0,0,0,46,1,0,0,189,101,8,0,213,120,1,0,36,1, 0,0,189,101,8,0,1,0,0,0,36,0,0,0,196,0,0,0,1,0,0,0,78,1,0,0,196,0,0,0,1,0,0,0,46,1,0,0,129,102,8,0,230,120,1,0,36,1,0,0,129,102,8,0,1,0,0,0,36,0,0,0,14,1,0,0,1,0,0,0,78,1,0,0,14,1,0,0,1,0,0,0,46,1,0,0,143,103,8,0,251,120,1,0,36,1,0,0,143,103,8,0,1,0, 0,0,36,0,0,0,191,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,1,0,0,0,46,1,0,0,78,104,8,0,13,121,1,0,36,1,0,0,78,104,8,0,1,0,0,0,36,0,0,0,66,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,1,0,0,0,46,1,0,0,144,104,8,0,28,121,1,0,36,1,0,0,144,104,8,0,1,0,0,0,36,0,0,0,121,0,0,0,1, 0,0,0,78,1,0,0,121,0,0,0,1,0,0,0,46,1,0,0,9,105,8,0,44,121,1,0,36,1,0,0,9,105,8,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0,0,0,1,0,0,0,46,1,0,0,52,105,8,0,64,121,1,0,36,1,0,0,52,105,8,0,1,0,0,0,36,0,0,0,183,0,0,0,1,0,0,0,78,1,0,0,183,0,0,0,1,0, 0,0,46,1,0,0,235,105,8,0,81,121,1,0,36,1,0,0,235,105,8,0,1,0,0,0,36,0,0,0,66,0,0,0,1,0,0,0,78,1,0,0,66,0,0,0,1,0,0,0,46,1,0,0,45,106,8,0,98,121,1,0,36,1,0,0,45,106,8,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,78,106,8,0,116, 121,1,0,36,1,0,0,78,106,8,0,1,0,0,0,36,0,0,0,58,0,0,0,1,0,0,0,78,1,0,0,58,0,0,0,1,0,0,0,46,1,0,0,136,106,8,0,138,121,1,0,36,1,0,0,136,106,8,0,1,0,0,0,36,0,0,0,183,0,0,0,1,0,0,0,78,1,0,0,183,0,0,0,1,0,0,0,46,1,0,0,63,107,8,0,157,121,1,0,36,1,0,0,63,107, 8,0,1,0,0,0,36,0,0,0,150,1,0,0,1,0,0,0,78,1,0,0,150,1,0,0,1,0,0,0,46,1,0,0,213,108,8,0,167,121,1,0,36,1,0,0,213,108,8,0,1,0,0,0,36,0,0,0,91,0,0,0,1,0,0,0,78,1,0,0,91,0,0,0,181,121,1,0,32,11,0,0,0,0,0,0,194,121,1,0,32,11,0,0,0,0,0,0,213,121,1,0,32,11, 0,0,0,0,0,0,232,121,1,0,32,11,0,0,0,0,0,0,252,121,1,0,32,11,0,0,0,0,0,0,14,122,1,0,32,11,0,0,0,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,31,122,1,0,100,0,0,0,0,0,0,0,54,122,1,0,102,0,1,0,97,96,143,77,1,0,0,0,46,1,0,0,48,109,8,0,116, 122,1,0,36,1,0,0,48,109,8,0,1,0,0,0,36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,174,109,8,0,128,122,1,0,36,1,0,0,174,109,8,0,1,0,0,0,36,0,0,0,127,0,0,0,1,0,0,0,78,1,0,0,127,0,0,0,1,0,0,0,46,1,0,0,45,110,8,0,141,122,1,0,36,1,0,0,45, 110,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,87,110,8,0,154,122,1,0,36,1,0,0,87,110,8,0,1,0,0,0,36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,213,110,8,0,167,122,1,0,36,1,0,0,213,110,8,0,1,0,0,0,36,0,0, 0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,255,110,8,0,181,122,1,0,36,1,0,0,255,110,8,0,1,0,0,0,36,0,0,0,109,1,0,0,1,0,0,0,78,1,0,0,109,1,0,0,1,0,0,0,46,1,0,0,108,112,8,0,195,122,1,0,36,1,0,0,108,112,8,0,1,0,0,0,36,0,0,0,124,0,0,0,1,0,0,0, 78,1,0,0,124,0,0,0,1,0,0,0,46,1,0,0,232,112,8,0,208,122,1,0,36,1,0,0,232,112,8,0,1,0,0,0,36,0,0,0,124,0,0,0,1,0,0,0,78,1,0,0,124,0,0,0,1,0,0,0,46,1,0,0,100,113,8,0,222,122,1,0,36,1,0,0,100,113,8,0,1,0,0,0,36,0,0,0,186,0,0,0,1,0,0,0,78,1,0,0,186,0,0,0, 1,0,0,0,46,1,0,0,30,114,8,0,234,122,1,0,36,1,0,0,30,114,8,0,1,0,0,0,36,0,0,0,0,1,0,0,1,0,0,0,78,1,0,0,0,1,0,0,1,0,0,0,46,1,0,0,30,115,8,0,247,122,1,0,36,1,0,0,30,115,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,72,115,8,0, 4,123,1,0,36,1,0,0,72,115,8,0,1,0,0,0,36,0,0,0,193,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,1,0,0,0,46,1,0,0,9,116,8,0,18,123,1,0,36,1,0,0,9,116,8,0,1,0,0,0,36,0,0,0,166,0,0,0,1,0,0,0,78,1,0,0,166,0,0,0,1,0,0,0,46,1,0,0,175,116,8,0,33,123,1,0,36,1,0,0,175,116, 8,0,1,0,0,0,36,0,0,0,47,1,0,0,1,0,0,0,78,1,0,0,47,1,0,0,1,0,0,0,46,1,0,0,222,117,8,0,44,123,1,0,36,1,0,0,222,117,8,0,1,0,0,0,36,0,0,0,55,1,0,0,1,0,0,0,78,1,0,0,55,1,0,0,1,0,0,0,46,1,0,0,21,119,8,0,56,123,1,0,36,1,0,0,21,119,8,0,1,0,0,0,36,0,0,0,42,0, 0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,63,119,8,0,68,123,1,0,36,1,0,0,63,119,8,0,1,0,0,0,36,0,0,0,193,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,1,0,0,0,46,1,0,0,0,120,8,0,81,123,1,0,36,1,0,0,0,120,8,0,1,0,0,0,36,0,0,0,166,0,0,0,1,0,0,0,78,1,0,0,166,0, 0,0,1,0,0,0,46,1,0,0,166,120,8,0,103,123,1,0,36,1,0,0,166,120,8,0,1,0,0,0,36,0,0,0,155,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,1,0,0,0,46,1,0,0,65,121,8,0,114,123,1,0,36,1,0,0,65,121,8,0,1,0,0,0,36,0,0,0,185,0,0,0,1,0,0,0,78,1,0,0,185,0,0,0,1,0,0,0,46,1,0,0, 250,121,8,0,126,123,1,0,36,1,0,0,250,121,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,36,122,8,0,138,123,1,0,36,1,0,0,36,122,8,0,1,0,0,0,36,0,0,0,193,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,1,0,0,0,46,1,0,0,229,122,8,0,151,123,1, 0,36,1,0,0,229,122,8,0,1,0,0,0,36,0,0,0,137,0,0,0,1,0,0,0,78,1,0,0,137,0,0,0,1,0,0,0,46,1,0,0,110,123,8,0,173,123,1,0,36,1,0,0,110,123,8,0,1,0,0,0,36,0,0,0,155,0,0,0,1,0,0,0,78,1,0,0,155,0,0,0,1,0,0,0,46,1,0,0,9,124,8,0,185,123,1,0,36,1,0,0,9,124,8,0, 1,0,0,0,36,0,0,0,185,0,0,0,1,0,0,0,78,1,0,0,185,0,0,0,1,0,0,0,46,1,0,0,194,124,8,0,198,123,1,0,36,1,0,0,194,124,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,236,124,8,0,211,123,1,0,36,1,0,0,236,124,8,0,1,0,0,0,36,0,0,0,193, 0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,1,0,0,0,46,1,0,0,173,125,8,0,225,123,1,0,36,1,0,0,173,125,8,0,1,0,0,0,36,0,0,0,134,0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,1,0,0,0,46,1,0,0,51,126,8,0,243,123,1,0,36,1,0,0,51,126,8,0,1,0,0,0,36,0,0,0,155,0,0,0,1,0,0,0,78,1,0, 0,155,0,0,0,1,0,0,0,46,1,0,0,206,126,8,0,0,124,1,0,36,1,0,0,206,126,8,0,1,0,0,0,36,0,0,0,185,0,0,0,1,0,0,0,78,1,0,0,185,0,0,0,1,0,0,0,46,1,0,0,135,127,8,0,14,124,1,0,36,1,0,0,135,127,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46, 1,0,0,177,127,8,0,28,124,1,0,36,1,0,0,177,127,8,0,1,0,0,0,36,0,0,0,193,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,1,0,0,0,46,1,0,0,114,128,8,0,43,124,1,0,36,1,0,0,114,128,8,0,1,0,0,0,36,0,0,0,134,0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,1,0,0,0,46,1,0,0,248,128,8,0,62, 124,1,0,36,1,0,0,248,128,8,0,1,0,0,0,36,0,0,0,186,0,0,0,1,0,0,0,78,1,0,0,186,0,0,0,1,0,0,0,46,1,0,0,178,129,8,0,79,124,1,0,36,1,0,0,178,129,8,0,1,0,0,0,36,0,0,0,0,1,0,0,1,0,0,0,78,1,0,0,0,1,0,0,1,0,0,0,46,1,0,0,178,130,8,0,97,124,1,0,36,1,0,0,178,130, 8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,220,130,8,0,115,124,1,0,36,1,0,0,220,130,8,0,1,0,0,0,36,0,0,0,193,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,1,0,0,0,46,1,0,0,157,131,8,0,134,124,1,0,36,1,0,0,157,131,8,0,1,0,0,0,36,0,0,0, 166,0,0,0,1,0,0,0,78,1,0,0,166,0,0,0,1,0,0,0,46,1,0,0,67,132,8,0,157,124,1,0,36,1,0,0,67,132,8,0,1,0,0,0,36,0,0,0,126,0,0,0,1,0,0,0,78,1,0,0,126,0,0,0,1,0,0,0,46,1,0,0,193,132,8,0,172,124,1,0,36,1,0,0,193,132,8,0,1,0,0,0,36,0,0,0,108,0,0,0,1,0,0,0,78, 1,0,0,108,0,0,0,1,0,0,0,46,1,0,0,45,133,8,0,188,124,1,0,36,1,0,0,45,133,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,87,133,8,0,204,124,1,0,36,1,0,0,87,133,8,0,1,0,0,0,36,0,0,0,193,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,1,0,0,0, 46,1,0,0,24,134,8,0,221,124,1,0,36,1,0,0,24,134,8,0,1,0,0,0,36,0,0,0,24,1,0,0,1,0,0,0,78,1,0,0,24,1,0,0,1,0,0,0,46,1,0,0,48,135,8,0,233,124,1,0,36,1,0,0,48,135,8,0,1,0,0,0,36,0,0,0,147,0,0,0,1,0,0,0,78,1,0,0,147,0,0,0,1,0,0,0,46,1,0,0,195,135,8,0,253, 124,1,0,36,1,0,0,195,135,8,0,1,0,0,0,36,0,0,0,108,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,1,0,0,0,46,1,0,0,47,136,8,0,18,125,1,0,36,1,0,0,47,136,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,89,136,8,0,39,125,1,0,36,1,0,0,89,136,8, 0,1,0,0,0,36,0,0,0,193,0,0,0,1,0,0,0,78,1,0,0,193,0,0,0,1,0,0,0,46,1,0,0,26,137,8,0,61,125,1,0,36,1,0,0,26,137,8,0,1,0,0,0,36,0,0,0,125,0,0,0,1,0,0,0,78,1,0,0,125,0,0,0,1,0,0,0,46,1,0,0,151,137,8,0,80,125,1,0,36,1,0,0,151,137,8,0,1,0,0,0,36,0,0,0,100, 0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,1,0,0,0,46,1,0,0,251,137,8,0,93,125,1,0,36,1,0,0,251,137,8,0,1,0,0,0,36,0,0,0,72,0,0,0,1,0,0,0,78,1,0,0,72,0,0,0,1,0,0,0,46,1,0,0,67,138,8,0,108,125,1,0,36,1,0,0,67,138,8,0,1,0,0,0,36,0,0,0,173,0,0,0,1,0,0,0,78,1,0,0, 173,0,0,0,1,0,0,0,46,1,0,0,240,138,8,0,123,125,1,0,36,1,0,0,240,138,8,0,1,0,0,0,36,0,0,0,135,0,0,0,1,0,0,0,78,1,0,0,135,0,0,0,1,0,0,0,46,1,0,0,119,139,8,0,136,125,1,0,36,1,0,0,119,139,8,0,1,0,0,0,36,0,0,0,122,0,0,0,1,0,0,0,78,1,0,0,122,0,0,0,1,0,0,0, 46,1,0,0,241,139,8,0,151,125,1,0,36,1,0,0,241,139,8,0,1,0,0,0,36,0,0,0,165,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,1,0,0,0,46,1,0,0,150,140,8,0,166,125,1,0,36,1,0,0,150,140,8,0,1,0,0,0,36,0,0,0,130,0,0,0,1,0,0,0,78,1,0,0,130,0,0,0,1,0,0,0,46,1,0,0,24,141,8, 0,178,125,1,0,36,1,0,0,24,141,8,0,1,0,0,0,36,0,0,0,122,0,0,0,1,0,0,0,78,1,0,0,122,0,0,0,1,0,0,0,46,1,0,0,146,141,8,0,192,125,1,0,36,1,0,0,146,141,8,0,1,0,0,0,36,0,0,0,173,0,0,0,1,0,0,0,78,1,0,0,173,0,0,0,1,0,0,0,46,1,0,0,63,142,8,0,206,125,1,0,36,1,0, 0,63,142,8,0,1,0,0,0,36,0,0,0,100,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,1,0,0,0,46,1,0,0,163,142,8,0,218,125,1,0,36,1,0,0,163,142,8,0,1,0,0,0,36,0,0,0,160,0,0,0,1,0,0,0,78,1,0,0,160,0,0,0,1,0,0,0,46,1,0,0,67,143,8,0,232,125,1,0,36,1,0,0,67,143,8,0,1,0,0,0, 36,0,0,0,165,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,1,0,0,0,46,1,0,0,232,143,8,0,246,125,1,0,36,1,0,0,232,143,8,0,1,0,0,0,36,0,0,0,100,0,0,0,1,0,0,0,78,1,0,0,100,0,0,0,1,0,0,0,46,1,0,0,76,144,8,0,3,126,1,0,36,1,0,0,76,144,8,0,1,0,0,0,36,0,0,0,117,0,0,0,1,0, 0,0,78,1,0,0,117,0,0,0,1,0,0,0,46,1,0,0,193,144,8,0,18,126,1,0,36,1,0,0,193,144,8,0,1,0,0,0,36,0,0,0,165,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,1,0,0,0,46,1,0,0,102,145,8,0,33,126,1,0,36,1,0,0,102,145,8,0,1,0,0,0,36,0,0,0,100,0,0,0,1,0,0,0,78,1,0,0,100,0,0, 0,1,0,0,0,46,1,0,0,202,145,8,0,47,126,1,0,36,1,0,0,202,145,8,0,1,0,0,0,36,0,0,0,104,0,0,0,1,0,0,0,78,1,0,0,104,0,0,0,1,0,0,0,46,1,0,0,50,146,8,0,63,126,1,0,36,1,0,0,50,146,8,0,1,0,0,0,36,0,0,0,165,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,1,0,0,0,46,1,0,0,215, 146,8,0,79,126,1,0,36,1,0,0,215,146,8,0,1,0,0,0,36,0,0,0,135,0,0,0,1,0,0,0,78,1,0,0,135,0,0,0,1,0,0,0,46,1,0,0,94,147,8,0,97,126,1,0,36,1,0,0,94,147,8,0,1,0,0,0,36,0,0,0,122,0,0,0,1,0,0,0,78,1,0,0,122,0,0,0,1,0,0,0,46,1,0,0,216,147,8,0,117,126,1,0,36, 1,0,0,216,147,8,0,1,0,0,0,36,0,0,0,165,0,0,0,1,0,0,0,78,1,0,0,165,0,0,0,1,0,0,0,46,1,0,0,125,148,8,0,137,126,1,0,36,1,0,0,125,148,8,0,1,0,0,0,36,0,0,0,173,0,0,0,1,0,0,0,78,1,0,0,173,0,0,0,1,0,0,0,46,1,0,0,42,149,8,0,151,126,1,0,36,1,0,0,42,149,8,0,1, 0,0,0,36,0,0,0,189,0,0,0,1,0,0,0,78,1,0,0,189,0,0,0,1,0,0,0,46,1,0,0,231,149,8,0,166,126,1,0,36,1,0,0,231,149,8,0,1,0,0,0,36,0,0,0,2,1,0,0,1,0,0,0,78,1,0,0,2,1,0,0,1,0,0,0,46,1,0,0,233,150,8,0,182,126,1,0,36,1,0,0,233,150,8,0,1,0,0,0,36,0,0,0,130,0,0, 0,1,0,0,0,78,1,0,0,130,0,0,0,1,0,0,0,46,1,0,0,107,151,8,0,197,126,1,0,36,1,0,0,107,151,8,0,1,0,0,0,36,0,0,0,69,0,0,0,1,0,0,0,78,1,0,0,69,0,0,0,1,0,0,0,46,1,0,0,176,151,8,0,213,126,1,0,36,1,0,0,176,151,8,0,1,0,0,0,36,0,0,0,249,0,0,0,1,0,0,0,78,1,0,0,249, 0,0,0,1,0,0,0,46,1,0,0,169,152,8,0,229,126,1,0,36,1,0,0,169,152,8,0,1,0,0,0,36,0,0,0,124,0,0,0,1,0,0,0,78,1,0,0,124,0,0,0,1,0,0,0,46,1,0,0,37,153,8,0,244,126,1,0,36,1,0,0,37,153,8,0,1,0,0,0,36,0,0,0,89,0,0,0,1,0,0,0,78,1,0,0,89,0,0,0,1,0,0,0,46,1,0,0, 126,153,8,0,5,127,1,0,36,1,0,0,126,153,8,0,1,0,0,0,36,0,0,0,121,0,0,0,1,0,0,0,78,1,0,0,121,0,0,0,1,0,0,0,46,1,0,0,247,153,8,0,22,127,1,0,36,1,0,0,247,153,8,0,1,0,0,0,36,0,0,0,75,1,0,0,1,0,0,0,78,1,0,0,75,1,0,0,1,0,0,0,46,1,0,0,66,155,8,0,32,127,1,0,36, 1,0,0,66,155,8,0,1,0,0,0,36,0,0,0,205,3,0,0,1,0,0,0,78,1,0,0,205,3,0,0,1,0,0,0,46,1,0,0,15,159,8,0,44,127,1,0,36,1,0,0,15,159,8,0,1,0,0,0,36,0,0,0,175,0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,1,0,0,0,46,1,0,0,190,159,8,0,55,127,1,0,36,1,0,0,190,159,8,0,1,0,0, 0,36,0,0,0,61,0,0,0,1,0,0,0,78,1,0,0,61,0,0,0,1,0,0,0,46,1,0,0,251,159,8,0,67,127,1,0,36,1,0,0,251,159,8,0,1,0,0,0,36,0,0,0,45,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,1,0,0,0,46,1,0,0,40,160,8,0,78,127,1,0,36,1,0,0,40,160,8,0,1,0,0,0,36,0,0,0,249,0,0,0,1,0,0, 0,78,1,0,0,249,0,0,0,1,0,0,0,46,1,0,0,33,161,8,0,90,127,1,0,36,1,0,0,33,161,8,0,1,0,0,0,36,0,0,0,109,0,0,0,1,0,0,0,78,1,0,0,109,0,0,0,1,0,0,0,46,1,0,0,142,161,8,0,99,127,1,0,36,1,0,0,142,161,8,0,1,0,0,0,36,0,0,0,50,1,0,0,1,0,0,0,78,1,0,0,50,1,0,0,1,0, 0,0,46,1,0,0,192,162,8,0,110,127,1,0,36,1,0,0,192,162,8,0,1,0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,15,163,8,0,121,127,1,0,36,1,0,0,15,163,8,0,1,0,0,0,36,0,0,0,55,0,0,0,1,0,0,0,78,1,0,0,55,0,0,0,1,0,0,0,46,1,0,0,70,163,8,0, 132,127,1,0,36,1,0,0,70,163,8,0,1,0,0,0,36,0,0,0,233,0,0,0,1,0,0,0,78,1,0,0,233,0,0,0,1,0,0,0,46,1,0,0,47,164,8,0,143,127,1,0,36,1,0,0,47,164,8,0,1,0,0,0,36,0,0,0,108,0,0,0,1,0,0,0,78,1,0,0,108,0,0,0,157,127,1,0,38,10,0,0,196,209,9,0,169,127,1,0,38,10, 0,0,200,209,9,0,180,127,1,0,38,10,0,0,204,209,9,0,192,127,1,0,38,10,0,0,208,209,9,0,205,127,1,0,38,10,0,0,212,209,9,0,219,127,1,0,38,10,0,0,216,209,9,0,234,127,1,0,38,10,0,0,220,209,9,0,246,127,1,0,38,10,0,0,224,209,9,0,4,128,1,0,38,10,0,0,228,209,9, 0,15,128,1,0,38,10,0,0,232,209,9,0,28,128,1,0,38,10,0,0,236,209,9,0,39,128,1,0,38,10,0,0,240,209,9,0,52,128,1,0,38,10,0,0,244,209,9,0,64,128,1,0,38,10,0,0,248,209,9,0,78,128,1,0,38,10,0,0,252,209,9,0,91,128,1,0,38,10,0,0,0,210,9,0,106,128,1,0,38,10,0, 0,4,210,9,0,123,128,1,0,38,10,0,0,8,210,9,0,142,128,1,0,38,10,0,0,12,210,9,0,157,128,1,0,38,10,0,0,16,210,9,0,174,128,1,0,38,10,0,0,20,210,9,0,194,128,1,0,38,10,0,0,24,210,9,0,216,128,1,0,38,10,0,0,28,210,9,0,231,128,1,0,38,10,0,0,32,210,9,0,246,128, 1,0,38,10,0,0,36,210,9,0,4,129,1,0,38,10,0,0,40,210,9,0,18,129,1,0,38,10,0,0,44,210,9,0,33,129,1,0,38,10,0,0,48,210,9,0,49,129,1,0,38,10,0,0,52,210,9,0,69,129,1,0,38,10,0,0,56,210,9,0,85,129,1,0,38,10,0,0,60,210,9,0,102,129,1,0,38,10,0,0,64,210,9,0,114, 129,1,0,38,10,0,0,68,210,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,125,129,1,0,100,0,0,0,0,0,0,0,148,129,1,0,102,0,1,0,98,96,143,77,1,0,0,0,46,1,0,0,155,164,8,0,210,129,1,0,36,1,0,0,155,164,8,0,1,0,0,0,36,0,0,0,55,0,0,0,1,0,0,0,78,1, 0,0,55,0,0,0,1,0,0,0,46,1,0,0,210,164,8,0,220,129,1,0,36,1,0,0,210,164,8,0,1,0,0,0,36,0,0,0,107,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,1,0,0,0,46,1,0,0,61,165,8,0,232,129,1,0,36,1,0,0,61,165,8,0,1,0,0,0,36,0,0,0,201,0,0,0,1,0,0,0,78,1,0,0,201,0,0,0,1,0,0,0, 46,1,0,0,6,166,8,0,245,129,1,0,36,1,0,0,6,166,8,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,105,166,8,0,2,130,1,0,36,1,0,0,105,166,8,0,1,0,0,0,36,0,0,0,191,0,0,0,1,0,0,0,78,1,0,0,191,0,0,0,1,0,0,0,46,1,0,0,40,167,8,0,16,130, 1,0,36,1,0,0,40,167,8,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,104,167,8,0,30,130,1,0,36,1,0,0,104,167,8,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,151,167,8,0,49,130,1,0,36,1,0,0,151,167,8,0, 1,0,0,0,36,0,0,0,149,0,0,0,1,0,0,0,78,1,0,0,149,0,0,0,1,0,0,0,46,1,0,0,44,168,8,0,65,130,1,0,36,1,0,0,44,168,8,0,1,0,0,0,36,0,0,0,96,0,0,0,1,0,0,0,78,1,0,0,96,0,0,0,1,0,0,0,46,1,0,0,140,168,8,0,81,130,1,0,36,1,0,0,140,168,8,0,1,0,0,0,36,0,0,0,47,0,0, 0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,187,168,8,0,98,130,1,0,36,1,0,0,187,168,8,0,1,0,0,0,36,0,0,0,107,0,0,0,1,0,0,0,78,1,0,0,107,0,0,0,1,0,0,0,46,1,0,0,38,169,8,0,116,130,1,0,36,1,0,0,38,169,8,0,1,0,0,0,36,0,0,0,214,0,0,0,1,0,0,0,78,1,0,0,214, 0,0,0,1,0,0,0,46,1,0,0,252,169,8,0,130,130,1,0,36,1,0,0,252,169,8,0,1,0,0,0,36,0,0,0,85,0,0,0,1,0,0,0,78,1,0,0,85,0,0,0,1,0,0,0,46,1,0,0,81,170,8,0,142,130,1,0,36,1,0,0,81,170,8,0,1,0,0,0,36,0,0,0,129,0,0,0,1,0,0,0,78,1,0,0,129,0,0,0,1,0,0,0,46,1,0,0, 210,170,8,0,156,130,1,0,36,1,0,0,210,170,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,232,170,8,0,170,130,1,0,36,1,0,0,232,170,8,0,1,0,0,0,36,0,0,0,151,0,0,0,1,0,0,0,78,1,0,0,151,0,0,0,1,0,0,0,46,1,0,0,127,171,8,0,185,130, 1,0,36,1,0,0,127,171,8,0,1,0,0,0,36,0,0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,10,172,8,0,198,130,1,0,36,1,0,0,10,172,8,0,1,0,0,0,36,0,0,0,175,0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,1,0,0,0,46,1,0,0,185,172,8,0,213,130,1,0,36,1,0,0,185,172, 8,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,204,172,8,0,228,130,1,0,36,1,0,0,204,172,8,0,1,0,0,0,36,0,0,0,82,0,0,0,1,0,0,0,78,1,0,0,82,0,0,0,1,0,0,0,46,1,0,0,30,173,8,0,244,130,1,0,36,1,0,0,30,173,8,0,1,0,0,0,36,0,0,0,139, 0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,169,173,8,0,2,131,1,0,36,1,0,0,169,173,8,0,1,0,0,0,36,0,0,0,175,0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,1,0,0,0,46,1,0,0,88,174,8,0,18,131,1,0,36,1,0,0,88,174,8,0,1,0,0,0,36,0,0,0,38,0,0,0,1,0,0,0,78,1,0,0,38, 0,0,0,32,131,1,0,38,9,0,0,132,163,9,0,54,131,1,0,38,10,0,0,72,210,9,0,68,131,1,0,38,10,0,0,76,210,9,0,84,131,1,0,38,10,0,0,80,210,9,0,102,131,1,0,38,10,0,0,84,210,9,0,116,131,1,0,38,10,0,0,88,210,9,0,131,131,1,0,38,10,0,0,92,210,9,0,1,0,0,0,100,1,0,0, 0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,147,131,1,0,100,0,0,0,0,0,0,0,169,131,1,0,102,0,1,0,98,96,143,77,1,0,0,0,46,1,0,0,126,174,8,0,230,131,1,0,36,1,0,0,126,174,8,0,1,0,0,0,36,0,0,0,119,0,0,0,1,0,0,0,78,1,0,0,119,0,0,0,1,0,0,0,46,1,0,0,245,174,8,0,243, 131,1,0,36,1,0,0,245,174,8,0,1,0,0,0,36,0,0,0,20,2,0,0,1,0,0,0,78,1,0,0,20,2,0,0,1,0,0,0,46,1,0,0,9,177,8,0,4,132,1,0,36,1,0,0,9,177,8,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,46,177,8,0,18,132,1,0,36,1,0,0,46,177,8,0,1, 0,0,0,36,0,0,0,79,0,0,0,1,0,0,0,78,1,0,0,79,0,0,0,1,0,0,0,46,1,0,0,125,177,8,0,38,132,1,0,36,1,0,0,125,177,8,0,1,0,0,0,36,0,0,0,49,2,0,0,1,0,0,0,78,1,0,0,49,2,0,0,1,0,0,0,46,1,0,0,174,179,8,0,52,132,1,0,36,1,0,0,174,179,8,0,1,0,0,0,36,0,0,0,19,0,0,0, 1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,193,179,8,0,66,132,1,0,36,1,0,0,193,179,8,0,1,0,0,0,36,0,0,0,37,1,0,0,1,0,0,0,78,1,0,0,37,1,0,0,1,0,0,0,46,1,0,0,230,180,8,0,81,132,1,0,36,1,0,0,230,180,8,0,1,0,0,0,36,0,0,0,53,0,0,0,1,0,0,0,78,1,0,0,53,0,0, 0,1,0,0,0,46,1,0,0,27,181,8,0,100,132,1,0,36,1,0,0,27,181,8,0,1,0,0,0,36,0,0,0,165,1,0,0,1,0,0,0,78,1,0,0,165,1,0,0,1,0,0,0,46,1,0,0,192,182,8,0,117,132,1,0,36,1,0,0,192,182,8,0,1,0,0,0,36,0,0,0,219,0,0,0,1,0,0,0,78,1,0,0,219,0,0,0,1,0,0,0,46,1,0,0,155, 183,8,0,141,132,1,0,36,1,0,0,155,183,8,0,1,0,0,0,36,0,0,0,89,3,0,0,1,0,0,0,78,1,0,0,89,3,0,0,1,0,0,0,46,1,0,0,244,186,8,0,157,132,1,0,36,1,0,0,244,186,8,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,1,0,0,0,46,1,0,0,34,187,8,0,174,132,1,0,36, 1,0,0,34,187,8,0,1,0,0,0,36,0,0,0,123,0,0,0,1,0,0,0,78,1,0,0,123,0,0,0,1,0,0,0,46,1,0,0,157,187,8,0,192,132,1,0,36,1,0,0,157,187,8,0,1,0,0,0,36,0,0,0,18,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,205,132,1,0,38,10,0,0,96,210,9,0,222,132,1,0,38,10,0,0,104,210,9, 0,241,132,1,0,38,10,0,0,112,210,9,0,0,133,1,0,38,10,0,0,116,210,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,18,133,1,0,100,0,0,0,0,0,0,0,42,133,1,0,102,0,1,0,98,96,143,77,1,0,0,0,46,1,0,0,175,187,8,0,105,133,1,0,36,1,0,0,175,187,8,0,1, 0,0,0,36,0,0,0,223,0,0,0,1,0,0,0,78,1,0,0,223,0,0,0,1,0,0,0,46,1,0,0,142,188,8,0,116,133,1,0,36,1,0,0,142,188,8,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,223,188,8,0,130,133,1,0,36,1,0,0,223,188,8,0,1,0,0,0,36,0,0,0,215,2, 0,0,1,0,0,0,78,1,0,0,215,2,0,0,1,0,0,0,46,1,0,0,182,191,8,0,144,133,1,0,36,1,0,0,182,191,8,0,1,0,0,0,36,0,0,0,67,0,0,0,1,0,0,0,78,1,0,0,67,0,0,0,1,0,0,0,46,1,0,0,249,191,8,0,156,133,1,0,36,1,0,0,249,191,8,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0, 46,0,0,0,1,0,0,0,46,1,0,0,39,192,8,0,168,133,1,0,36,1,0,0,39,192,8,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,103,192,8,0,180,133,1,0,36,1,0,0,103,192,8,0,1,0,0,0,36,0,0,0,83,0,0,0,1,0,0,0,78,1,0,0,83,0,0,0,1,0,0,0,46,1,0, 0,186,192,8,0,191,133,1,0,36,1,0,0,186,192,8,0,1,0,0,0,36,0,0,0,38,0,0,0,1,0,0,0,78,1,0,0,38,0,0,0,1,0,0,0,46,1,0,0,224,192,8,0,203,133,1,0,36,1,0,0,224,192,8,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,1,0,0,0,46,1,0,0,1,193,8,0,216,133,1, 0,36,1,0,0,1,193,8,0,1,0,0,0,36,0,0,0,51,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,1,0,0,0,46,1,0,0,52,193,8,0,227,133,1,0,36,1,0,0,52,193,8,0,1,0,0,0,36,0,0,0,202,0,0,0,1,0,0,0,78,1,0,0,202,0,0,0,1,0,0,0,46,1,0,0,254,193,8,0,239,133,1,0,36,1,0,0,254,193,8,0,1, 0,0,0,36,0,0,0,70,1,0,0,1,0,0,0,78,1,0,0,70,1,0,0,1,0,0,0,46,1,0,0,68,195,8,0,252,133,1,0,36,1,0,0,68,195,8,0,1,0,0,0,36,0,0,0,47,0,0,0,1,0,0,0,78,1,0,0,47,0,0,0,1,0,0,0,46,1,0,0,115,195,8,0,9,134,1,0,36,1,0,0,115,195,8,0,1,0,0,0,36,0,0,0,29,1,0,0,1, 0,0,0,78,1,0,0,29,1,0,0,1,0,0,0,46,1,0,0,144,196,8,0,22,134,1,0,36,1,0,0,144,196,8,0,1,0,0,0,36,0,0,0,46,0,0,0,1,0,0,0,78,1,0,0,46,0,0,0,1,0,0,0,46,1,0,0,190,196,8,0,34,134,1,0,36,1,0,0,190,196,8,0,1,0,0,0,36,0,0,0,204,0,0,0,1,0,0,0,78,1,0,0,204,0,0, 0,1,0,0,0,46,1,0,0,138,197,8,0,48,134,1,0,36,1,0,0,138,197,8,0,1,0,0,0,36,0,0,0,47,1,0,0,1,0,0,0,78,1,0,0,47,1,0,0,1,0,0,0,46,1,0,0,185,198,8,0,63,134,1,0,36,1,0,0,185,198,8,0,1,0,0,0,36,0,0,0,18,0,0,0,1,0,0,0,78,1,0,0,18,0,0,0,1,0,0,0,46,1,0,0,203,198, 8,0,80,134,1,0,36,1,0,0,203,198,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,225,198,8,0,95,134,1,0,36,1,0,0,225,198,8,0,1,0,0,0,36,0,0,0,189,5,0,0,1,0,0,0,78,1,0,0,189,5,0,0,110,134,1,0,38,10,0,0,120,210,9,0,123,134,1,0,38, 10,0,0,124,210,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,139,134,1,0,100,0,0,0,0,0,0,0,162,134,1,0,102,0,1,0,98,96,143,77,1,0,0,0,46,1,0,0,158,204,8,0,224,134,1,0,36,1,0,0,158,204,8,0,1,0,0,0,36,0,0,0,36,0,0,0,1,0,0,0,78,1,0,0,36,0,0, 0,1,0,0,0,46,1,0,0,194,204,8,0,236,134,1,0,36,1,0,0,194,204,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,216,204,8,0,248,134,1,0,36,1,0,0,216,204,8,0,1,0,0,0,36,0,0,0,56,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,1,0,0,0,46,1,0,0,16, 205,8,0,3,135,1,0,36,1,0,0,16,205,8,0,1,0,0,0,36,0,0,0,37,0,0,0,1,0,0,0,78,1,0,0,37,0,0,0,1,0,0,0,46,1,0,0,53,205,8,0,16,135,1,0,36,1,0,0,53,205,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,75,205,8,0,28,135,1,0,36,1,0,0,75, 205,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,97,205,8,0,40,135,1,0,36,1,0,0,97,205,8,0,1,0,0,0,36,0,0,0,175,0,0,0,1,0,0,0,78,1,0,0,175,0,0,0,1,0,0,0,46,1,0,0,16,206,8,0,51,135,1,0,36,1,0,0,16,206,8,0,1,0,0,0,36,0,0,0,67, 1,0,0,1,0,0,0,78,1,0,0,67,1,0,0,1,0,0,0,46,1,0,0,83,207,8,0,64,135,1,0,36,1,0,0,83,207,8,0,1,0,0,0,36,0,0,0,70,0,0,0,1,0,0,0,78,1,0,0,70,0,0,0,1,0,0,0,46,1,0,0,153,207,8,0,76,135,1,0,36,1,0,0,153,207,8,0,1,0,0,0,36,0,0,0,76,0,0,0,1,0,0,0,78,1,0,0,76, 0,0,0,1,0,0,0,46,1,0,0,229,207,8,0,89,135,1,0,36,1,0,0,229,207,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,15,208,8,0,101,135,1,0,36,1,0,0,15,208,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,57, 208,8,0,113,135,1,0,36,1,0,0,57,208,8,0,1,0,0,0,36,0,0,0,56,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,1,0,0,0,46,1,0,0,113,208,8,0,124,135,1,0,36,1,0,0,113,208,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,135,208,8,0,136,135,1,0,36, 1,0,0,135,208,8,0,1,0,0,0,36,0,0,0,185,0,0,0,1,0,0,0,78,1,0,0,185,0,0,0,1,0,0,0,46,1,0,0,64,209,8,0,147,135,1,0,36,1,0,0,64,209,8,0,1,0,0,0,36,0,0,0,19,1,0,0,1,0,0,0,78,1,0,0,19,1,0,0,1,0,0,0,46,1,0,0,83,210,8,0,160,135,1,0,36,1,0,0,83,210,8,0,1,0,0, 0,36,0,0,0,85,1,0,0,1,0,0,0,78,1,0,0,85,1,0,0,1,0,0,0,46,1,0,0,168,211,8,0,171,135,1,0,36,1,0,0,168,211,8,0,1,0,0,0,36,0,0,0,237,1,0,0,1,0,0,0,78,1,0,0,237,1,0,0,1,0,0,0,46,1,0,0,149,213,8,0,183,135,1,0,36,1,0,0,149,213,8,0,1,0,0,0,36,0,0,0,31,0,0,0, 1,0,0,0,78,1,0,0,31,0,0,0,1,0,0,0,46,1,0,0,180,213,8,0,193,135,1,0,36,1,0,0,180,213,8,0,1,0,0,0,36,0,0,0,34,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,1,0,0,0,46,1,0,0,214,213,8,0,204,135,1,0,36,1,0,0,214,213,8,0,1,0,0,0,36,0,0,0,43,0,0,0,1,0,0,0,78,1,0,0,43,0, 0,0,1,0,0,0,46,1,0,0,1,214,8,0,214,135,1,0,36,1,0,0,1,214,8,0,1,0,0,0,36,0,0,0,22,0,0,0,1,0,0,0,78,1,0,0,22,0,0,0,1,0,0,0,46,1,0,0,23,214,8,0,225,135,1,0,36,1,0,0,23,214,8,0,1,0,0,0,36,0,0,0,7,1,0,0,1,0,0,0,78,1,0,0,7,1,0,0,1,0,0,0,46,1,0,0,30,215,8, 0,235,135,1,0,36,1,0,0,30,215,8,0,1,0,0,0,36,0,0,0,63,1,0,0,1,0,0,0,78,1,0,0,63,1,0,0,1,0,0,0,46,1,0,0,93,216,8,0,247,135,1,0,36,1,0,0,93,216,8,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,112,216,8,0,3,136,1,0,36,1,0,0,112, 216,8,0,1,0,0,0,36,0,0,0,54,0,0,0,1,0,0,0,78,1,0,0,54,0,0,0,1,0,0,0,46,1,0,0,166,216,8,0,16,136,1,0,36,1,0,0,166,216,8,0,1,0,0,0,36,0,0,0,139,0,0,0,1,0,0,0,78,1,0,0,139,0,0,0,1,0,0,0,46,1,0,0,49,217,8,0,27,136,1,0,36,1,0,0,49,217,8,0,1,0,0,0,36,0,0,0, 183,0,0,0,1,0,0,0,78,1,0,0,183,0,0,0,1,0,0,0,46,1,0,0,232,217,8,0,40,136,1,0,36,1,0,0,232,217,8,0,1,0,0,0,36,0,0,0,217,3,0,0,1,0,0,0,78,1,0,0,217,3,0,0,1,0,0,0,46,1,0,0,193,221,8,0,50,136,1,0,36,1,0,0,193,221,8,0,1,0,0,0,36,0,0,0,138,0,0,0,1,0,0,0,78, 1,0,0,138,0,0,0,1,0,0,0,46,1,0,0,75,222,8,0,61,136,1,0,36,1,0,0,75,222,8,0,1,0,0,0,36,0,0,0,102,1,0,0,1,0,0,0,78,1,0,0,102,1,0,0,1,0,0,0,46,1,0,0,177,223,8,0,72,136,1,0,36,1,0,0,177,223,8,0,1,0,0,0,36,0,0,0,158,2,0,0,1,0,0,0,78,1,0,0,158,2,0,0,1,0,0, 0,46,1,0,0,79,226,8,0,83,136,1,0,36,1,0,0,79,226,8,0,1,0,0,0,36,0,0,0,34,0,0,0,1,0,0,0,78,1,0,0,34,0,0,0,1,0,0,0,46,1,0,0,113,226,8,0,95,136,1,0,36,1,0,0,113,226,8,0,1,0,0,0,36,0,0,0,48,0,0,0,1,0,0,0,78,1,0,0,48,0,0,0,1,0,0,0,46,1,0,0,161,226,8,0,107, 136,1,0,36,1,0,0,161,226,8,0,1,0,0,0,36,0,0,0,241,0,0,0,1,0,0,0,78,1,0,0,241,0,0,0,1,0,0,0,46,1,0,0,146,227,8,0,119,136,1,0,36,1,0,0,146,227,8,0,1,0,0,0,36,0,0,0,33,0,0,0,1,0,0,0,78,1,0,0,33,0,0,0,133,136,1,0,38,10,0,0,128,210,9,0,146,136,1,0,38,10,0, 0,132,210,9,0,159,136,1,0,38,10,0,0,136,210,9,0,171,136,1,0,38,10,0,0,140,210,9,0,184,136,1,0,38,10,0,0,144,210,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,196,136,1,0,100,0,0,0,0,0,0,0,224,136,1,0,102,0,1,0,98,96,143,77,1,0,0,0,46,1,0, 0,179,227,8,0,35,137,1,0,36,1,0,0,179,227,8,0,1,0,0,0,36,0,0,0,214,0,0,0,1,0,0,0,78,1,0,0,214,0,0,0,1,0,0,0,46,1,0,0,137,228,8,0,51,137,1,0,36,1,0,0,137,228,8,0,1,0,0,0,36,0,0,0,214,0,0,0,1,0,0,0,78,1,0,0,214,0,0,0,1,0,0,0,46,1,0,0,95,229,8,0,74,137, 1,0,36,1,0,0,95,229,8,0,1,0,0,0,36,0,0,0,174,0,0,0,1,0,0,0,78,1,0,0,174,0,0,0,1,0,0,0,46,1,0,0,13,230,8,0,97,137,1,0,36,1,0,0,13,230,8,0,1,0,0,0,36,0,0,0,180,0,0,0,1,0,0,0,78,1,0,0,180,0,0,0,1,0,0,0,46,1,0,0,193,230,8,0,116,137,1,0,36,1,0,0,193,230,8, 0,1,0,0,0,36,0,0,0,174,0,0,0,1,0,0,0,78,1,0,0,174,0,0,0,1,0,0,0,46,1,0,0,111,231,8,0,136,137,1,0,36,1,0,0,111,231,8,0,1,0,0,0,36,0,0,0,214,0,0,0,1,0,0,0,78,1,0,0,214,0,0,0,1,0,0,0,46,1,0,0,69,232,8,0,160,137,1,0,36,1,0,0,69,232,8,0,1,0,0,0,36,0,0,0,134, 0,0,0,1,0,0,0,78,1,0,0,134,0,0,0,1,0,0,0,46,1,0,0,203,232,8,0,174,137,1,0,36,1,0,0,203,232,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,211,232,8,0,193,137,1,0,36,1,0,0,211,232,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8, 0,0,0,1,0,0,0,46,1,0,0,219,232,8,0,211,137,1,0,36,1,0,0,219,232,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,227,232,8,0,232,137,1,0,36,1,0,0,227,232,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,235, 232,8,0,247,137,1,0,36,1,0,0,235,232,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,243,232,8,0,7,138,1,0,36,1,0,0,243,232,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,251,232,8,0,24,138,1,0,36,1,0,0, 251,232,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,3,233,8,0,43,138,1,0,36,1,0,0,3,233,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,11,233,8,0,62,138,1,0,36,1,0,0,11,233,8,0,1,0,0,0,36,0,0,0,32,0, 0,0,1,0,0,0,78,1,0,0,32,0,0,0,1,0,0,0,46,1,0,0,43,233,8,0,83,138,1,0,36,1,0,0,43,233,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,51,233,8,0,101,138,1,0,36,1,0,0,51,233,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1, 0,0,0,46,1,0,0,59,233,8,0,123,138,1,0,36,1,0,0,59,233,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,141,138,1,0,100,0,0,0,0,0,0,0,172,138,1,0,102,0,1,0,98,96,143,77,1,0,0,0,46,1,0,0,67,233, 8,0,242,138,1,0,36,1,0,0,67,233,8,0,1,0,0,0,36,0,0,0,56,0,0,0,1,0,0,0,78,1,0,0,56,0,0,0,1,0,0,0,46,1,0,0,123,233,8,0,0,139,1,0,36,1,0,0,123,233,8,0,1,0,0,0,36,0,0,0,63,0,0,0,1,0,0,0,78,1,0,0,63,0,0,0,1,0,0,0,46,1,0,0,186,233,8,0,15,139,1,0,36,1,0,0,186, 233,8,0,1,0,0,0,36,0,0,0,65,0,0,0,1,0,0,0,78,1,0,0,65,0,0,0,1,0,0,0,46,1,0,0,251,233,8,0,31,139,1,0,36,1,0,0,251,233,8,0,1,0,0,0,36,0,0,0,8,0,0,0,1,0,0,0,78,1,0,0,8,0,0,0,1,0,0,0,46,1,0,0,3,234,8,0,48,139,1,0,36,1,0,0,3,234,8,0,1,0,0,0,36,0,0,0,70,0, 0,0,1,0,0,0,78,1,0,0,70,0,0,0,1,0,0,0,46,1,0,0,73,234,8,0,62,139,1,0,36,1,0,0,73,234,8,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,154,234,8,0,80,139,1,0,36,1,0,0,154,234,8,0,1,0,0,0,36,0,0,0,29,0,0,0,1,0,0,0,78,1,0,0,29,0, 0,0,1,0,0,0,46,1,0,0,183,234,8,0,99,139,1,0,36,1,0,0,183,234,8,0,1,0,0,0,36,0,0,0,68,0,0,0,1,0,0,0,78,1,0,0,68,0,0,0,1,0,0,0,46,1,0,0,251,234,8,0,117,139,1,0,36,1,0,0,251,234,8,0,1,0,0,0,36,0,0,0,7,1,0,0,1,0,0,0,78,1,0,0,7,1,0,0,137,139,1,0,38,10,0,0, 148,210,9,0,1,0,0,0,100,1,0,0,0,0,0,0,41,190,0,0,100,0,0,0,0,0,0,0,153,139,1,0,100,0,0,0,0,0,0,0,177,139,1,0,102,0,1,0,99,96,143,77,1,0,0,0,46,1,0,0,2,236,8,0,240,139,1,0,36,1,0,0,2,236,8,0,1,0,0,0,36,0,0,0,28,0,0,0,1,0,0,0,78,1,0,0,28,0,0,0,1,0,0,0, 46,1,0,0,30,236,8,0,252,139,1,0,36,1,0,0,30,236,8,0,1,0,0,0,36,0,0,0,21,1,0,0,1,0,0,0,78,1,0,0,21,1,0,0,1,0,0,0,46,1,0,0,51,237,8,0,8,140,1,0,36,1,0,0,51,237,8,0,1,0,0,0,36,0,0,0,51,0,0,0,1,0,0,0,78,1,0,0,51,0,0,0,1,0,0,0,46,1,0,0,102,237,8,0,33,140, 1,0,36,1,0,0,102,237,8,0,1,0,0,0,36,0,0,0,64,0,0,0,1,0,0,0,78,1,0,0,64,0,0,0,1,0,0,0,46,1,0,0,166,237,8,0,59,140,1,0,36,1,0,0,166,237,8,0,1,0,0,0,36,0,0,0,164,0,0,0,1,0,0,0,78,1,0,0,164,0,0,0,1,0,0,0,46,1,0,0,74,238,8,0,77,140,1,0,36,1,0,0,74,238,8,0, 1,0,0,0,36,0,0,0,95,1,0,0,1,0,0,0,78,1,0,0,95,1,0,0,1,0,0,0,46,1,0,0,169,239,8,0,96,140,1,0,36,1,0,0,169,239,8,0,1,0,0,0,36,0,0,0,42,0,0,0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,211,239,8,0,117,140,1,0,36,1,0,0,211,239,8,0,1,0,0,0,36,0,0,0,42,0,0, 0,1,0,0,0,78,1,0,0,42,0,0,0,1,0,0,0,46,1,0,0,253,239,8,0,138,140,1,0,36,1,0,0,253,239,8,0,1,0,0,0,36,0,0,0,172,1,0,0,1,0,0,0,78,1,0,0,172,1,0,0,1,0,0,0,46,1,0,0,169,241,8,0,159,140,1,0,36,1,0,0,169,241,8,0,1,0,0,0,36,0,0,0,127,1,0,0,1,0,0,0,78,1,0,0, 127,1,0,0,1,0,0,0,46,1,0,0,40,243,8,0,180,140,1,0,36,1,0,0,40,243,8,0,1,0,0,0,36,0,0,0,143,1,0,0,1,0,0,0,78,1,0,0,143,1,0,0,1,0,0,0,46,1,0,0,183,244,8,0,202,140,1,0,36,1,0,0,183,244,8,0,1,0,0,0,36,0,0,0,45,0,0,0,1,0,0,0,78,1,0,0,45,0,0,0,1,0,0,0,46,1, 0,0,228,244,8,0,223,140,1,0,36,1,0,0,228,244,8,0,1,0,0,0,36,0,0,0,80,0,0,0,1,0,0,0,78,1,0,0,80,0,0,0,1,0,0,0,46,1,0,0,52,245,8,0,240,140,1,0,36,1,0,0,52,245,8,0,1,0,0,0,36,0,0,0,99,0,0,0,1,0,0,0,78,1,0,0,99,0,0,0,1,0,0,0,46,1,0,0,151,245,8,0,2,141,1, 0,36,1,0,0,151,245,8,0,1,0,0,0,36,0,0,0,103,0,0,0,1,0,0,0,78,1,0,0,103,0,0,0,1,0,0,0,46,1,0,0,254,245,8,0,21,141,1,0,36,1,0,0,254,245,8,0,1,0,0,0,36,0,0,0,110,0,0,0,1,0,0,0,78,1,0,0,110,0,0,0,1,0,0,0,46,1,0,0,108,246,8,0,43,141,1,0,36,1,0,0,108,246,8, 0,1,0,0,0,36,0,0,0,27,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,1,0,0,0,46,1,0,0,135,246,8,0,55,141,1,0,36,1,0,0,135,246,8,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,154,246,8,0,69,141,1,0,36,1,0,0,154,246,8,0,1,0,0,0,36,0,0,0,73,0, 0,0,1,0,0,0,78,1,0,0,73,0,0,0,1,0,0,0,46,1,0,0,227,246,8,0,83,141,1,0,36,1,0,0,227,246,8,0,1,0,0,0,36,0,0,0,65,0,0,0,1,0,0,0,78,1,0,0,65,0,0,0,1,0,0,0,46,1,0,0,36,247,8,0,96,141,1,0,36,1,0,0,36,247,8,0,1,0,0,0,36,0,0,0,58,0,0,0,1,0,0,0,78,1,0,0,58,0, 0,0,1,0,0,0,46,1,0,0,94,247,8,0,108,141,1,0,36,1,0,0,94,247,8,0,1,0,0,0,36,0,0,0,13,0,0,0,1,0,0,0,78,1,0,0,13,0,0,0,1,0,0,0,46,1,0,0,107,247,8,0,125,141,1,0,36,1,0,0,107,247,8,0,1,0,0,0,36,0,0,0,27,0,0,0,1,0,0,0,78,1,0,0,27,0,0,0,1,0,0,0,46,1,0,0,134, 247,8,0,139,141,1,0,36,1,0,0,134,247,8,0,1,0,0,0,36,0,0,0,115,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,1,0,0,0,46,1,0,0,249,247,8,0,153,141,1,0,36,1,0,0,249,247,8,0,1,0,0,0,36,0,0,0,115,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,1,0,0,0,46,1,0,0,108,248,8,0,174,141,1, 0,36,1,0,0,108,248,8,0,1,0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,1,0,0,0,46,1,0,0,195,248,8,0,195,141,1,0,36,1,0,0,195,248,8,0,1,0,0,0,36,0,0,0,97,0,0,0,1,0,0,0,78,1,0,0,97,0,0,0,1,0,0,0,46,1,0,0,36,249,8,0,212,141,1,0,36,1,0,0,36,249,8,0,1, 0,0,0,36,0,0,0,87,0,0,0,1,0,0,0,78,1,0,0,87,0,0,0,1,0,0,0,46,1,0,0,123,249,8,0,230,141,1,0,36,1,0,0,123,249,8,0,1,0,0,0,36,0,0,0,115,0,0,0,1,0,0,0,78,1,0,0,115,0,0,0,1,0,0,0,46,1,0,0,238,249,8,0,252,141,1,0,36,1,0,0,238,249,8,0,1,0,0,0,36,0,0,0,84,0, 0,0,1,0,0,0,78,1,0,0,84,0,0,0,1,0,0,0,46,1,0,0,66,250,8,0,12,142,1,0,36,1,0,0,66,250,8,0,1,0,0,0,36,0,0,0,81,0,0,0,1,0,0,0,78,1,0,0,81,0,0,0,1,0,0,0,46,1,0,0,147,250,8,0,25,142,1,0,36,1,0,0,147,250,8,0,1,0,0,0,36,0,0,0,84,0,0,0,1,0,0,0,78,1,0,0,84,0, 0,0,1,0,0,0,46,1,0,0,231,250,8,0,44,142,1,0,36,1,0,0,231,250,8,0,1,0,0,0,36,0,0,0,57,0,0,0,1,0,0,0,78,1,0,0,57,0,0,0,1,0,0,0,46,1,0,0,32,251,8,0,60,142,1,0,36,1,0,0,32,251,8,0,1,0,0,0,36,0,0,0,19,0,0,0,1,0,0,0,78,1,0,0,19,0,0,0,1,0,0,0,46,1,0,0,51,251, 8,0,77,142,1,0,36,1,0,0,51,251,8,0,1,0,0,0,36,0,0,0,41,0,0,0,1,0,0,0,78,1,0,0,41,0,0,0,98,142,1,0,38,3,0,0,168,136,9,0,114,142,1,0,38,3,0,0,172,136,9,0,130,142,1,0,32,9,0,0,0,0,0,0,147,142,1,0,32,9,0,0,0,0,0,0,163,142,1,0,32,9,0,0,0,0,0,0,180,142,1,0, 32,9,0,0,0,0,0,0,198,142,1,0,32,9,0,0,0,0,0,0,214,142,1,0,32,9,0,0,0,0,0,0,233,142,1,0,32,9,0,0,0,0,0,0,251,142,1,0,32,9,0,0,0,0,0,0,20,143,1,0,32,9,0,0,0,0,0,0,45,143,1,0,32,9,0,0,0,0,0,0,66,143,1,0,32,9,0,0,0,0,0,0,88,143,1,0,32,9,0,0,0,0,0,0,114,143, 1,0,32,9,0,0,0,0,0,0,134,143,1,0,38,10,0,0,160,210,9,0,152,143,1,0,38,10,0,0,192,210,9,0,158,143,1,0,38,10,0,0,192,211,9,0,164,143,1,0,38,10,0,0,196,211,9,0,1,0,0,0,100,1,0,0,0,0,0,0,2,0,0,0,30,1,0,0,0,0,0,0,20,0,0,0,14,1,0,0,164,11,0,0,30,0,0,0,14,1, 0,0,233,16,0,0,40,0,0,0,14,1,0,0,47,17,0,0,56,0,0,0,14,1,0,0,224,17,0,0,68,0,0,0,14,1,0,0,115,19,0,0,79,0,0,0,14,1,0,0,59,24,0,0,90,0,0,0,14,1,0,0,246,24,0,0,107,0,0,0,14,1,0,0,167,25,0,0,120,0,0,0,14,1,0,0,58,27,0,0,131,0,0,0,14,1,0,0,252,31,0,0,142, 0,0,0,14,1,0,0,183,32,0,0,159,0,0,0,14,1,0,0,104,33,0,0,172,0,0,0,14,1,0,0,251,34,0,0,182,0,0,0,14,1,0,0,64,42,0,0,192,0,0,0,14,1,0,0,251,42,0,0,208,0,0,0,14,1,0,0,172,43,0,0,220,0,0,0,14,1,0,0,63,45,0,0,229,0,0,0,14,1,0,0,169,52,0,0,238,0,0,0,14,1,0, 0,100,53,0,0,253,0,0,0,14,1,0,0,21,54,0,0,8,1,0,0,14,1,0,0,168,55,0,0,17,1,0,0,14,1,0,0,90,63,0,0,26,1,0,0,14,1,0,0,21,64,0,0,41,1,0,0,14,1,0,0,198,64,0,0,52,1,0,0,14,1,0,0,127,66,0,0,72,1,0,0,14,1,0,0,201,66,0,0,95,1,0,0,14,1,0,0,28,67,0,0,119,1,0,0, 14,1,0,0,4,69,0,0,139,1,0,0,14,1,0,0,96,69,0,0,160,1,0,0,14,1,0,0,114,69,0,0,182,1,0,0,14,1,0,0,180,69,0,0,203,1,0,0,14,1,0,0,222,69,0,0,225,1,0,0,14,1,0,0,95,71,0,0,244,1,0,0,14,1,0,0,248,71,0,0,11,2,0,0,14,1,0,0,25,74,0,0,30,2,0,0,14,1,0,0,117,74,0, 0,50,2,0,0,14,1,0,0,253,74,0,0,70,2,0,0,14,1,0,0,15,75,0,0,90,2,0,0,14,1,0,0,37,75,0,0,110,2,0,0,14,1,0,0,59,75,0,0,131,2,0,0,14,1,0,0,106,76,0,0,150,2,0,0,14,1,0,0,209,76,0,0,173,2,0,0,14,1,0,0,129,78,0,0,192,2,0,0,14,1,0,0,236,78,0,0,212,2,0,0,14,1, 0,0,244,78,0,0,233,2,0,0,14,1,0,0,235,79,0,0,253,2,0,0,14,1,0,0,117,80,0,0,21,3,0,0,14,1,0,0,116,83,0,0,41,3,0,0,14,1,0,0,223,83,0,0,62,3,0,0,14,1,0,0,231,83,0,0,84,3,0,0,14,1,0,0,222,84,0,0,103,3,0,0,14,1,0,0,145,85,0,0,126,3,0,0,14,1,0,0,224,89,0,0, 145,3,0,0,14,1,0,0,245,89,0,0,164,3,0,0,14,1,0,0,128,90,0,0,185,3,0,0,14,1,0,0,177,91,0,0,198,3,0,0,14,1,0,0,251,91,0,0,215,3,0,0,14,1,0,0,253,92,0,0,228,3,0,0,14,1,0,0,81,94,0,0,243,3,0,0,14,1,0,0,6,95,0,0,7,4,0,0,14,1,0,0,182,95,0,0,23,4,0,0,14,1,0, 0,202,96,0,0,39,4,0,0,14,1,0,0,19,97,0,0,57,4,0,0,14,1,0,0,176,97,0,0,72,4,0,0,14,1,0,0,192,98,0,0,85,4,0,0,14,1,0,0,209,98,0,0,98,4,0,0,14,1,0,0,26,99,0,0,113,4,0,0,14,1,0,0,217,99,0,0,129,4,0,0,14,1,0,0,76,102,0,0,143,4,0,0,14,1,0,0,93,102,0,0,157, 4,0,0,14,1,0,0,166,102,0,0,173,4,0,0,14,1,0,0,101,103,0,0,189,4,0,0,14,1,0,0,77,104,0,0,203,4,0,0,14,1,0,0,94,104,0,0,217,4,0,0,14,1,0,0,172,105,0,0,236,4,0,0,14,1,0,0,244,105,0,0,253,4,0,0,14,1,0,0,255,106,0,0,14,5,0,0,14,1,0,0,16,107,0,0,29,5,0,0,14, 1,0,0,90,107,0,0,44,5,0,0,14,1,0,0,169,107,0,0,61,5,0,0,14,1,0,0,96,108,0,0,81,5,0,0,14,1,0,0,250,109,0,0,99,5,0,0,14,1,0,0,226,111,0,0,117,5,0,0,14,1,0,0,99,112,0,0,134,5,0,0,14,1,0,0,141,112,0,0,150,5,0,0,14,1,0,0,106,113,0,0,166,5,0,0,14,1,0,0,13, 114,0,0,184,5,0,0,14,1,0,0,242,114,0,0,205,5,0,0,14,1,0,0,174,117,0,0,223,5,0,0,14,1,0,0,80,118,0,0,242,5,0,0,14,1,0,0,181,120,0,0,3,6,0,0,14,1,0,0,76,121,0,0,20,6,0,0,14,1,0,0,49,122,0,0,39,6,0,0,14,1,0,0,26,123,0,0,59,6,0,0,14,1,0,0,118,123,0,0,83, 6,0,0,14,1,0,0,164,123,0,0,103,6,0,0,14,1,0,0,243,123,0,0,124,6,0,0,14,1,0,0,19,124,0,0,144,6,0,0,14,1,0,0,36,124,0,0,166,6,0,0,14,1,0,0,41,125,0,0,187,6,0,0,14,1,0,0,149,125,0,0,212,6,0,0,14,1,0,0,12,126,0,0,233,6,0,0,14,1,0,0,213,126,0,0,255,6,0,0, 14,1,0,0,121,127,0,0,19,7,0,0,14,1,0,0,170,127,0,0,42,7,0,0,14,1,0,0,117,128,0,0,57,7,0,0,14,1,0,0,136,130,0,0,76,7,0,0,14,1,0,0,28,132,0,0,91,7,0,0,14,1,0,0,77,133,0,0,107,7,0,0,14,1,0,0,117,133,0,0,121,7,0,0,14,1,0,0,125,134,0,0,142,7,0,0,14,1,0,0, 140,135,0,0,163,7,0,0,14,1,0,0,203,135,0,0,184,7,0,0,14,1,0,0,6,136,0,0,206,7,0,0,14,1,0,0,54,136,0,0,231,7,0,0,14,1,0,0,250,137,0,0,251,7,0,0,14,1,0,0,16,138,0,0,18,8,0,0,14,1,0,0,160,139,0,0,27,8,0,0,14,1,0,0,182,140,0,0,36,8,0,0,14,1,0,0,144,141,0, 0,46,8,0,0,14,1,0,0,183,141,0,0,57,8,0,0,14,1,0,0,156,142,0,0,66,8,0,0,14,1,0,0,70,145,0,0,75,8,0,0,14,1,0,0,11,146,0,0,85,8,0,0,14,1,0,0,50,146,0,0,96,8,0,0,14,1,0,0,17,147,0,0,118,8,0,0,14,1,0,0,186,147,0,0,144,8,0,0,14,1,0,0,236,147,0,0,161,8,0,0, 14,1,0,0,150,148,0,0,182,8,0,0,14,1,0,0,188,149,0,0,199,8,0,0,14,1,0,0,64,150,0,0,217,8,0,0,14,1,0,0,125,150,0,0,236,8,0,0,14,1,0,0,62,151,0,0,252,8,0,0,14,1,0,0,191,151,0,0,14,9,0,0,14,1,0,0,178,152,0,0,34,9,0,0,14,1,0,0,101,153,0,0,50,9,0,0,14,1,0, 0,180,154,0,0,68,9,0,0,14,1,0,0,115,155,0,0,79,9,0,0,14,1,0,0,255,155,0,0,94,9,0,0,14,1,0,0,94,158,0,0,105,9,0,0,14,1,0,0,109,159,0,0,118,9,0,0,14,1,0,0,57,160,0,0,131,9,0,0,14,1,0,0,149,160,0,0,145,9,0,0,14,1,0,0,247,160,0,0,157,9,0,0,14,1,0,0,146,161, 0,0,170,9,0,0,14,1,0,0,45,162,0,0,186,9,0,0,14,1,0,0,117,162,0,0,203,9,0,0,14,1,0,0,189,162,0,0,216,9,0,0,14,1,0,0,85,164,0,0,228,9,0,0,14,1,0,0,132,164,0,0,241,9,0,0,14,1,0,0,179,164,0,0,255,9,0,0,14,1,0,0,30,166,0,0,12,10,0,0,14,1,0,0,143,166,0,0,29, 10,0,0,14,1,0,0,197,166,0,0,42,10,0,0,14,1,0,0,70,168,0,0,57,10,0,0,14,1,0,0,23,169,0,0,71,10,0,0,14,1,0,0,149,169,0,0,89,10,0,0,14,1,0,0,203,169,0,0,103,10,0,0,14,1,0,0,44,171,0,0,119,10,0,0,14,1,0,0,253,171,0,0,133,10,0,0,14,1,0,0,152,172,0,0,151,10, 0,0,14,1,0,0,58,175,0,0,165,10,0,0,14,1,0,0,15,176,0,0,181,10,0,0,14,1,0,0,237,225,0,0,193,10,0,0,14,1,0,0,177,226,0,0,205,10,0,0,14,1,0,0,129,227,0,0,221,10,0,0,14,1,0,0,159,228,0,0,233,10,0,0,14,1,0,0,29,229,0,0,247,10,0,0,14,1,0,0,108,230,0,0,3,11, 0,0,14,1,0,0,48,231,0,0,15,11,0,0,14,1,0,0,250,231,0,0,29,11,0,0,14,1,0,0,22,232,0,0,45,11,0,0,14,1,0,0,245,232,0,0,57,11,0,0,14,1,0,0,166,234,0,0,68,11,0,0,14,1,0,0,183,235,0,0,80,11,0,0,14,1,0,0,140,236,0,0,94,11,0,0,14,1,0,0,246,237,0,0,105,11,0,0, 14,1,0,0,26,238,0,0,116,11,0,0,14,1,0,0,62,238,0,0,129,11,0,0,14,1,0,0,109,238,0,0,144,11,0,0,14,1,0,0,159,239,0,0,155,11,0,0,14,1,0,0,162,241,0,0,170,11,0,0,14,1,0,0,56,242,0,0,189,11,0,0,14,1,0,0,120,243,0,0,205,11,0,0,14,1,0,0,64,245,0,0,220,11,0, 0,14,1,0,0,144,245,0,0,235,11,0,0,14,1,0,0,66,247,0,0,252,11,0,0,14,1,0,0,216,247,0,0,17,12,0,0,14,1,0,0,144,248,0,0,34,12,0,0,14,1,0,0,249,248,0,0,53,12,0,0,14,1,0,0,66,249,0,0,70,12,0,0,14,1,0,0,134,250,0,0,84,12,0,0,14,1,0,0,17,251,0,0,102,12,0,0, 14,1,0,0,228,251,0,0,116,12,0,0,14,1,0,0,77,252,0,0,132,12,0,0,14,1,0,0,105,252,0,0,146,12,0,0,14,1,0,0,173,253,0,0,160,12,0,0,14,1,0,0,56,254,0,0,178,12,0,0,14,1,0,0,226,254,0,0,192,12,0,0,14,1,0,0,75,255,0,0,208,12,0,0,14,1,0,0,103,255,0,0,222,12,0, 0,14,1,0,0,171,0,1,0,240,12,0,0,14,1,0,0,54,1,1,0,6,13,0,0,14,1,0,0,224,1,1,0,24,13,0,0,14,1,0,0,73,2,1,0,44,13,0,0,14,1,0,0,101,2,1,0,62,13,0,0,14,1,0,0,169,3,1,0,76,13,0,0,14,1,0,0,202,4,1,0,94,13,0,0,14,1,0,0,107,6,1,0,108,13,0,0,14,1,0,0,19,7,1,0, 124,13,0,0,14,1,0,0,59,7,1,0,138,13,0,0,14,1,0,0,152,8,1,0,152,13,0,0,14,1,0,0,185,9,1,0,170,13,0,0,14,1,0,0,10,11,1,0,184,13,0,0,14,1,0,0,178,11,1,0,200,13,0,0,14,1,0,0,218,11,1,0,214,13,0,0,14,1,0,0,55,13,1,0,232,13,0,0,14,1,0,0,88,14,1,0,254,13,0, 0,14,1,0,0,169,15,1,0,16,14,0,0,14,1,0,0,81,16,1,0,36,14,0,0,14,1,0,0,121,16,1,0,54,14,0,0,14,1,0,0,21,18,1,0,67,14,0,0,14,1,0,0,214,18,1,0,88,14,0,0,14,1,0,0,0,19,1,0,105,14,0,0,14,1,0,0,144,19,1,0,118,14,0,0,14,1,0,0,7,20,1,0,132,14,0,0,14,1,0,0,67, 20,1,0,147,14,0,0,14,1,0,0,44,21,1,0,163,14,0,0,14,1,0,0,137,21,1,0,183,14,0,0,14,1,0,0,6,22,1,0,201,14,0,0,14,1,0,0,123,23,1,0,217,14,0,0,14,1,0,0,48,24,1,0,233,14,0,0,14,1,0,0,7,25,1,0,251,14,0,0,14,1,0,0,54,26,1,0,9,15,0,0,14,1,0,0,0,27,1,0,27,15, 0,0,14,1,0,0,95,27,1,0,43,15,0,0,14,1,0,0,166,28,1,0,57,15,0,0,14,1,0,0,104,29,1,0,72,15,0,0,14,1,0,0,164,29,1,0,88,15,0,0,14,1,0,0,105,30,1,0,102,15,0,0,14,1,0,0,189,30,1,0,120,15,0,0,14,1,0,0,109,31,1,0,134,15,0,0,14,1,0,0,34,32,1,0,148,15,0,0,14,1, 0,0,178,32,1,0,164,15,0,0,14,1,0,0,193,33,1,0,174,15,0,0,14,1,0,0,81,34,1,0,188,15,0,0,14,1,0,0,228,34,1,0,198,15,0,0,14,1,0,0,58,35,1,0,210,15,0,0,14,1,0,0,247,35,1,0,222,15,0,0,14,1,0,0,100,38,1,0,236,15,0,0,14,1,0,0,184,38,1,0,254,15,0,0,14,1,0,0, 201,39,1,0,12,16,0,0,14,1,0,0,242,40,1,0,25,16,0,0,14,1,0,0,96,42,1,0,38,16,0,0,14,1,0,0,132,43,1,0,51,16,0,0,14,1,0,0,218,43,1,0,68,16,0,0,14,1,0,0,127,44,1,0,81,16,0,0,14,1,0,0,129,45,1,0,97,16,0,0,14,1,0,0,215,45,1,0,117,16,0,0,14,1,0,0,175,46,1,0, 133,16,0,0,14,1,0,0,177,47,1,0,149,16,0,0,14,1,0,0,7,48,1,0,169,16,0,0,14,1,0,0,203,48,1,0,185,16,0,0,14,1,0,0,205,49,1,0,204,16,0,0,14,1,0,0,35,50,1,0,227,16,0,0,14,1,0,0,247,50,1,0,246,16,0,0,14,1,0,0,249,51,1,0,9,17,0,0,14,1,0,0,79,52,1,0,32,17,0, 0,14,1,0,0,65,53,1,0,51,17,0,0,14,1,0,0,67,54,1,0,70,17,0,0,14,1,0,0,153,54,1,0,93,17,0,0,14,1,0,0,109,55,1,0,112,17,0,0,14,1,0,0,111,56,1,0,131,17,0,0,14,1,0,0,197,56,1,0,154,17,0,0,14,1,0,0,183,57,1,0,173,17,0,0,14,1,0,0,185,58,1,0,188,17,0,0,14,1, 0,0,237,59,1,0,203,17,0,0,14,1,0,0,77,60,1,0,220,17,0,0,14,1,0,0,2,61,1,0,235,17,0,0,14,1,0,0,168,61,1,0,250,17,0,0,14,1,0,0,247,61,1,0,11,18,0,0,14,1,0,0,164,62,1,0,26,18,0,0,14,1,0,0,27,64,1,0,41,18,0,0,14,1,0,0,123,64,1,0,58,18,0,0,14,1,0,0,48,65, 1,0,73,18,0,0,14,1,0,0,7,66,1,0,88,18,0,0,14,1,0,0,86,66,1,0,105,18,0,0,14,1,0,0,3,68,1,0,120,18,0,0,14,1,0,0,196,68,1,0,131,18,0,0,14,1,0,0,11,69,1,0,144,18,0,0,14,1,0,0,69,69,1,0,156,18,0,0,14,1,0,0,87,69,1,0,167,18,0,0,14,1,0,0,198,69,1,0,180,18,0, 0,14,1,0,0,175,70,1,0,200,18,0,0,14,1,0,0,241,70,1,0,216,18,0,0,14,1,0,0,33,71,1,0,233,18,0,0,14,1,0,0,55,71,1,0,250,18,0,0,14,1,0,0,77,71,1,0,10,19,0,0,14,1,0,0,170,71,1,0,28,19,0,0,14,1,0,0,85,72,1,0,40,19,0,0,14,1,0,0,244,72,1,0,56,19,0,0,14,1,0,0, 7,74,1,0,68,19,0,0,14,1,0,0,125,74,1,0,80,19,0,0,14,1,0,0,146,74,1,0,94,19,0,0,14,1,0,0,133,75,1,0,103,19,0,0,14,1,0,0,217,75,1,0,116,19,0,0,14,1,0,0,144,77,1,0,125,19,0,0,14,1,0,0,223,77,1,0,140,19,0,0,14,1,0,0,169,78,1,0,151,19,0,0,14,1,0,0,99,79,1, 0,160,19,0,0,14,1,0,0,2,80,1,0,173,19,0,0,14,1,0,0,34,82,1,0,182,19,0,0,14,1,0,0,152,82,1,0,191,19,0,0,14,1,0,0,197,82,1,0,202,19,0,0,14,1,0,0,189,83,1,0,214,19,0,0,14,1,0,0,211,84,1,0,226,19,0,0,14,1,0,0,40,85,1,0,242,19,0,0,14,1,0,0,23,89,1,0,254,19, 0,0,14,1,0,0,182,90,1,0,9,20,0,0,14,1,0,0,32,91,1,0,24,20,0,0,14,1,0,0,171,91,1,0,35,20,0,0,14,1,0,0,245,91,1,0,48,20,0,0,14,1,0,0,103,100,1,0,55,20,0,0,14,1,0,0,181,100,1,0,62,20,0,0,14,1,0,0,240,100,1,0,74,20,0,0,14,1,0,0,49,113,1,0,99,20,0,0,14,1, 0,0,62,117,1,0,123,20,0,0,14,1,0,0,75,121,1,0,149,20,0,0,14,1,0,0,158,127,1,0,167,20,0,0,14,1,0,0,225,138,1,0,188,20,0,0,14,1,0,0,4,139,1,0,209,20,0,0,14,1,0,0,46,139,1,0,230,20,0,0,14,1,0,0,88,139,1,0,252,20,0,0,14,1,0,0,130,139,1,0,19,21,0,0,14,1,0, 0,113,142,1,0,45,21,0,0,14,1,0,0,253,146,1,0,70,21,0,0,14,1,0,0,137,151,1,0,86,21,0,0,14,1,0,0,214,151,1,0,103,21,0,0,14,1,0,0,195,171,1,0,121,21,0,0,14,1,0,0,10,172,1,0,139,21,0,0,14,1,0,0,229,172,1,0,158,21,0,0,14,1,0,0,117,180,1,0,170,21,0,0,14,1, 0,0,185,182,1,0,183,21,0,0,14,1,0,0,210,182,1,0,199,21,0,0,14,1,0,0,35,187,1,0,213,21,0,0,14,1,0,0,104,187,1,0,226,21,0,0,14,1,0,0,186,187,1,0,240,21,0,0,14,1,0,0,249,187,1,0,253,21,0,0,14,1,0,0,186,190,1,0,9,22,0,0,14,1,0,0,145,191,1,0,23,22,0,0,14, 1,0,0,70,192,1,0,36,22,0,0,14,1,0,0,84,193,1,0,50,22,0,0,14,1,0,0,247,194,1,0,70,22,0,0,14,1,0,0,101,202,1,0,83,22,0,0,14,1,0,0,171,204,1,0,100,22,0,0,14,1,0,0,122,206,1,0,115,22,0,0,14,1,0,0,191,206,1,0,129,22,0,0,14,1,0,0,17,207,1,0,143,22,0,0,14,1, 0,0,32,210,1,0,156,22,0,0,14,1,0,0,5,211,1,0,171,22,0,0,14,1,0,0,186,211,1,0,185,22,0,0,14,1,0,0,186,212,1,0,200,22,0,0,14,1,0,0,221,215,1,0,211,22,0,0,14,1,0,0,82,216,1,0,222,22,0,0,14,1,0,0,79,218,1,0,234,22,0,0,14,1,0,0,132,218,1,0,247,22,0,0,14,1, 0,0,185,218,1,0,3,23,0,0,14,1,0,0,76,219,1,0,17,23,0,0,14,1,0,0,234,219,1,0,31,23,0,0,14,1,0,0,108,220,1,0,42,23,0,0,14,1,0,0,227,221,1,0,52,23,0,0,14,1,0,0,154,227,1,0,68,23,0,0,14,1,0,0,185,232,1,0,80,23,0,0,14,1,0,0,254,232,1,0,91,23,0,0,14,1,0,0, 132,251,1,0,114,23,0,0,14,1,0,0,12,252,1,0,136,23,0,0,14,1,0,0,89,252,1,0,160,23,0,0,14,1,0,0,21,2,2,0,187,23,0,0,14,1,0,0,108,13,2,0,208,23,0,0,14,1,0,0,161,26,2,0,229,23,0,0,14,1,0,0,232,27,2,0,244,23,0,0,14,1,0,0,63,30,2,0,13,24,0,0,14,1,0,0,69,33, 2,0,27,24,0,0,14,1,0,0,3,35,2,0,54,24,0,0,14,1,0,0,182,35,2,0,73,24,0,0,14,1,0,0,142,51,2,0,86,24,0,0,14,1,0,0,235,53,2,0,100,24,0,0,14,1,0,0,65,58,2,0,123,24,0,0,14,1,0,0,238,71,2,0,145,24,0,0,14,1,0,0,24,72,2,0,160,24,0,0,14,1,0,0,116,74,2,0,176,24, 0,0,14,1,0,0,181,74,2,0,193,24,0,0,14,1,0,0,189,74,2,0,208,24,0,0,14,1,0,0,203,74,2,0,225,24,0,0,14,1,0,0,211,74,2,0,240,24,0,0,14,1,0,0,219,74,2,0,252,24,0,0,14,1,0,0,7,75,2,0,10,25,0,0,14,1,0,0,86,75,2,0,23,25,0,0,14,1,0,0,12,78,2,0,40,25,0,0,14,1, 0,0,129,80,2,0,54,25,0,0,14,1,0,0,21,81,2,0,67,25,0,0,14,1,0,0,94,83,2,0,83,25,0,0,14,1,0,0,98,84,2,0,101,25,0,0,14,1,0,0,102,85,2,0,119,25,0,0,14,1,0,0,14,87,2,0,132,25,0,0,14,1,0,0,36,88,2,0,147,25,0,0,14,1,0,0,185,88,2,0,162,25,0,0,14,1,0,0,57,89, 2,0,177,25,0,0,14,1,0,0,185,89,2,0,192,25,0,0,14,1,0,0,230,89,2,0,207,25,0,0,14,1,0,0,19,90,2,0,222,25,0,0,14,1,0,0,123,90,2,0,235,25,0,0,14,1,0,0,244,92,2,0,249,25,0,0,14,1,0,0,199,95,2,0,7,26,0,0,14,1,0,0,70,112,2,0,20,26,0,0,14,1,0,0,170,112,2,0,30, 26,0,0,14,1,0,0,169,114,2,0,46,26,0,0,14,1,0,0,236,116,2,0,55,26,0,0,14,1,0,0,178,117,2,0,66,26,0,0,14,1,0,0,98,118,2,0,77,26,0,0,14,1,0,0,0,119,2,0,87,26,0,0,14,1,0,0,48,119,2,0,98,26,0,0,14,1,0,0,96,119,2,0,110,26,0,0,14,1,0,0,145,120,2,0,121,26,0, 0,14,1,0,0,175,120,2,0,135,26,0,0,14,1,0,0,16,121,2,0,146,26,0,0,14,1,0,0,35,121,2,0,158,26,0,0,14,1,0,0,54,121,2,0,171,26,0,0,14,1,0,0,73,121,2,0,181,26,0,0,14,1,0,0,92,121,2,0,195,26,0,0,14,1,0,0,111,121,2,0,209,26,0,0,14,1,0,0,182,121,2,0,219,26,0, 0,14,1,0,0,6,122,2,0,230,26,0,0,14,1,0,0,53,122,2,0,239,26,0,0,14,1,0,0,100,122,2,0,254,26,0,0,14,1,0,0,186,122,2,0,9,27,0,0,14,1,0,0,233,122,2,0,19,27,0,0,14,1,0,0,10,123,2,0,32,27,0,0,14,1,0,0,43,123,2,0,43,27,0,0,14,1,0,0,76,123,2,0,58,27,0,0,14,1, 0,0,123,123,2,0,74,27,0,0,14,1,0,0,170,123,2,0,84,27,0,0,14,1,0,0,239,123,2,0,98,27,0,0,14,1,0,0,36,124,2,0,112,27,0,0,14,1,0,0,76,124,2,0,126,27,0,0,14,1,0,0,105,124,2,0,135,27,0,0,14,1,0,0,26,132,2,0,156,27,0,0,14,1,0,0,61,132,2,0,164,27,0,0,14,1,0, 0,77,138,2,0,182,27,0,0,14,1,0,0,123,138,2,0,202,27,0,0,14,1,0,0,17,143,2,0,224,27,0,0,14,1,0,0,59,143,2,0,245,27,0,0,14,1,0,0,94,143,2,0,11,28,0,0,14,1,0,0,56,149,2,0,32,28,0,0,14,1,0,0,177,154,2,0,47,28,0,0,14,1,0,0,76,161,2,0,65,28,0,0,14,1,0,0,152, 161,2,0,85,28,0,0,14,1,0,0,38,172,2,0,103,28,0,0,14,1,0,0,240,174,2,0,115,28,0,0,14,1,0,0,130,176,2,0,144,28,0,0,14,1,0,0,226,177,2,0,161,28,0,0,14,1,0,0,19,179,2,0,176,28,0,0,14,1,0,0,50,180,2,0,190,28,0,0,14,1,0,0,126,180,2,0,212,28,0,0,14,1,0,0,95, 181,2,0,223,28,0,0,14,1,0,0,68,186,2,0,237,28,0,0,14,1,0,0,107,187,2,0,249,28,0,0,14,1,0,0,141,187,2,0,11,29,0,0,14,1,0,0,18,188,2,0,28,29,0,0,14,1,0,0,170,189,2,0,45,29,0,0,14,1,0,0,216,191,2,0,58,29,0,0,14,1,0,0,24,192,2,0,72,29,0,0,14,1,0,0,231,192, 2,0,93,29,0,0,14,1,0,0,63,194,2,0,109,29,0,0,14,1,0,0,255,216,2,0,136,29,0,0,14,1,0,0,141,221,2,0,147,29,0,0,14,1,0,0,28,223,2,0,160,29,0,0,14,1,0,0,224,223,2,0,173,29,0,0,14,1,0,0,164,224,2,0,201,29,0,0,14,1,0,0,205,225,2,0,225,29,0,0,14,1,0,0,152,226, 2,0,250,29,0,0,14,1,0,0,199,226,2,0,15,30,0,0,14,1,0,0,12,227,2,0,36,30,0,0,14,1,0,0,35,229,2,0,53,30,0,0,14,1,0,0,217,231,2,0,75,30,0,0,14,1,0,0,45,234,2,0,93,30,0,0,14,1,0,0,156,235,2,0,116,30,0,0,14,1,0,0,208,235,2,0,135,30,0,0,14,1,0,0,219,236,2, 0,151,30,0,0,14,1,0,0,156,240,2,0,170,30,0,0,14,1,0,0,39,242,2,0,189,30,0,0,14,1,0,0,219,242,2,0,201,30,0,0,14,1,0,0,164,243,2,0,214,30,0,0,14,1,0,0,231,254,2,0,239,30,0,0,14,1,0,0,65,3,3,0,2,31,0,0,14,1,0,0,118,24,3,0,19,31,0,0,14,1,0,0,218,27,3,0,45, 31,0,0,14,1,0,0,163,37,3,0,57,31,0,0,14,1,0,0,47,42,3,0,74,31,0,0,14,1,0,0,124,45,3,0,91,31,0,0,14,1,0,0,34,46,3,0,106,31,0,0,14,1,0,0,221,47,3,0,119,31,0,0,14,1,0,0,189,48,3,0,138,31,0,0,14,1,0,0,53,49,3,0,158,31,0,0,14,1,0,0,118,49,3,0,177,31,0,0,14, 1,0,0,115,53,3,0,192,31,0,0,14,1,0,0,233,54,3,0,205,31,0,0,14,1,0,0,163,55,3,0,223,31,0,0,14,1,0,0,185,56,3,0,239,31,0,0,14,1,0,0,160,58,3,0,251,31,0,0,14,1,0,0,0,60,3,0,17,32,0,0,14,1,0,0,98,60,3,0,33,32,0,0,14,1,0,0,194,61,3,0,47,32,0,0,14,1,0,0,73, 62,3,0,65,32,0,0,14,1,0,0,69,63,3,0,83,32,0,0,14,1,0,0,254,63,3,0,100,32,0,0,14,1,0,0,66,68,3,0,113,32,0,0,14,1,0,0,163,74,3,0,132,32,0,0,14,1,0,0,132,76,3,0,147,32,0,0,14,1,0,0,69,78,3,0,160,32,0,0,14,1,0,0,168,79,3,0,177,32,0,0,14,1,0,0,110,93,3,0, 195,32,0,0,14,1,0,0,203,93,3,0,208,32,0,0,14,1,0,0,240,94,3,0,222,32,0,0,14,1,0,0,138,103,3,0,236,32,0,0,14,1,0,0,44,104,3,0,250,32,0,0,14,1,0,0,96,104,3,0,8,33,0,0,14,1,0,0,148,104,3,0,22,33,0,0,14,1,0,0,89,105,3,0,36,33,0,0,14,1,0,0,177,116,3,0,47, 33,0,0,14,1,0,0,205,132,3,0,64,33,0,0,14,1,0,0,61,133,3,0,79,33,0,0,14,1,0,0,101,135,3,0,95,33,0,0,14,1,0,0,7,136,3,0,109,33,0,0,14,1,0,0,26,137,3,0,125,33,0,0,14,1,0,0,99,137,3,0,139,33,0,0,14,1,0,0,185,137,3,0,153,33,0,0,14,1,0,0,21,140,3,0,166,33, 0,0,14,1,0,0,193,144,3,0,183,33,0,0,14,1,0,0,0,145,3,0,200,33,0,0,14,1,0,0,160,145,3,0,221,33,0,0,14,1,0,0,213,145,3,0,241,33,0,0,14,1,0,0,103,159,3,0,1,34,0,0,14,1,0,0,216,159,3,0,14,34,0,0,14,1,0,0,190,161,3,0,33,34,0,0,14,1,0,0,27,164,3,0,48,34,0, 0,14,1,0,0,233,165,3,0,60,34,0,0,14,1,0,0,203,166,3,0,73,34,0,0,14,1,0,0,72,169,3,0,86,34,0,0,14,1,0,0,134,172,3,0,100,34,0,0,14,1,0,0,2,176,3,0,114,34,0,0,14,1,0,0,93,176,3,0,131,34,0,0,14,1,0,0,190,176,3,0,148,34,0,0,14,1,0,0,250,176,3,0,163,34,0,0, 14,1,0,0,198,177,3,0,176,34,0,0,14,1,0,0,22,178,3,0,190,34,0,0,14,1,0,0,69,178,3,0,202,34,0,0,14,1,0,0,116,178,3,0,216,34,0,0,14,1,0,0,163,178,3,0,229,34,0,0,14,1,0,0,196,178,3,0,245,34,0,0,14,1,0,0,229,178,3,0,3,35,0,0,14,1,0,0,6,179,3,0,21,35,0,0,14, 1,0,0,53,179,3,0,40,35,0,0,14,1,0,0,100,179,3,0,53,35,0,0,14,1,0,0,169,179,3,0,75,35,0,0,14,1,0,0,190,179,3,0,97,35,0,0,14,1,0,0,211,179,3,0,111,35,0,0,14,1,0,0,39,188,3,0,132,35,0,0,14,1,0,0,74,188,3,0,144,35,0,0,14,1,0,0,115,188,3,0,155,35,0,0,14,1, 0,0,156,188,3,0,166,35,0,0,14,1,0,0,10,200,3,0,187,35,0,0,14,1,0,0,94,201,3,0,205,35,0,0,14,1,0,0,253,203,3,0,224,35,0,0,14,1,0,0,247,205,3,0,244,35,0,0,14,1,0,0,214,206,3,0,9,36,0,0,14,1,0,0,247,207,3,0,26,36,0,0,14,1,0,0,152,209,3,0,47,36,0,0,14,1, 0,0,67,211,3,0,64,36,0,0,14,1,0,0,172,211,3,0,78,36,0,0,14,1,0,0,215,216,3,0,98,36,0,0,14,1,0,0,103,219,3,0,111,36,0,0,14,1,0,0,35,221,3,0,125,36,0,0,14,1,0,0,108,222,3,0,141,36,0,0,14,1,0,0,81,224,3,0,157,36,0,0,14,1,0,0,6,226,3,0,172,36,0,0,14,1,0, 0,49,227,3,0,190,36,0,0,14,1,0,0,202,227,3,0,204,36,0,0,14,1,0,0,61,228,3,0,219,36,0,0,14,1,0,0,108,228,3,0,232,36,0,0,14,1,0,0,155,228,3,0,247,36,0,0,14,1,0,0,8,229,3,0,6,37,0,0,14,1,0,0,55,229,3,0,20,37,0,0,14,1,0,0,88,229,3,0,37,37,0,0,14,1,0,0,121, 229,3,0,52,37,0,0,14,1,0,0,154,229,3,0,71,37,0,0,14,1,0,0,201,229,3,0,91,37,0,0,14,1,0,0,248,229,3,0,104,37,0,0,14,1,0,0,58,230,3,0,117,37,0,0,14,1,0,0,139,230,3,0,131,37,0,0,14,1,0,0,208,230,3,0,147,37,0,0,14,1,0,0,0,231,3,0,162,37,0,0,14,1,0,0,109, 232,3,0,180,37,0,0,14,1,0,0,201,232,3,0,193,37,0,0,14,1,0,0,224,241,3,0,214,37,0,0,14,1,0,0,3,242,3,0,228,37,0,0,14,1,0,0,167,248,3,0,240,37,0,0,14,1,0,0,43,249,3,0,253,37,0,0,14,1,0,0,65,249,3,0,13,38,0,0,14,1,0,0,94,249,3,0,27,38,0,0,14,1,0,0,123,249, 3,0,42,38,0,0,14,1,0,0,152,249,3,0,55,38,0,0,14,1,0,0,195,249,3,0,72,38,0,0,14,1,0,0,238,249,3,0,85,38,0,0,14,1,0,0,222,250,3,0,97,38,0,0,14,1,0,0,20,255,3,0,118,38,0,0,14,1,0,0,62,255,3,0,133,38,0,0,14,1,0,0,64,0,4,0,147,38,0,0,14,1,0,0,227,1,4,0,160, 38,0,0,14,1,0,0,118,2,4,0,174,38,0,0,14,1,0,0,140,2,4,0,191,38,0,0,14,1,0,0,169,2,4,0,206,38,0,0,14,1,0,0,198,2,4,0,222,38,0,0,14,1,0,0,227,2,4,0,236,38,0,0,14,1,0,0,14,3,4,0,254,38,0,0,14,1,0,0,57,3,4,0,12,39,0,0,14,1,0,0,91,4,4,0,30,39,0,0,14,1,0,0, 249,4,4,0,59,39,0,0,14,1,0,0,19,6,4,0,72,39,0,0,14,1,0,0,203,9,4,0,88,39,0,0,14,1,0,0,245,10,4,0,103,39,0,0,14,1,0,0,55,18,4,0,122,39,0,0,14,1,0,0,155,18,4,0,138,39,0,0,14,1,0,0,59,20,4,0,160,39,0,0,14,1,0,0,72,22,4,0,179,39,0,0,14,1,0,0,254,22,4,0,197, 39,0,0,14,1,0,0,38,24,4,0,213,39,0,0,14,1,0,0,124,24,4,0,230,39,0,0,14,1,0,0,171,24,4,0,245,39,0,0,14,1,0,0,218,24,4,0,9,40,0,0,14,1,0,0,134,25,4,0,26,40,0,0,14,1,0,0,181,25,4,0,42,40,0,0,14,1,0,0,214,25,4,0,61,40,0,0,14,1,0,0,247,25,4,0,78,40,0,0,14, 1,0,0,24,26,4,0,99,40,0,0,14,1,0,0,71,26,4,0,121,40,0,0,14,1,0,0,118,26,4,0,136,40,0,0,14,1,0,0,194,34,4,0,157,40,0,0,14,1,0,0,229,34,4,0,171,40,0,0,14,1,0,0,137,39,4,0,193,40,0,0,14,1,0,0,235,39,4,0,214,40,0,0,14,1,0,0,118,43,4,0,237,40,0,0,14,1,0,0, 60,45,4,0,1,41,0,0,14,1,0,0,251,48,4,0,22,41,0,0,14,1,0,0,169,51,4,0,44,41,0,0,14,1,0,0,164,52,4,0,67,41,0,0,14,1,0,0,83,54,4,0,86,41,0,0,14,1,0,0,236,55,4,0,109,41,0,0,14,1,0,0,152,58,4,0,128,41,0,0,14,1,0,0,255,58,4,0,144,41,0,0,14,1,0,0,145,63,4,0, 166,41,0,0,14,1,0,0,114,66,4,0,182,41,0,0,14,1,0,0,232,66,4,0,200,41,0,0,14,1,0,0,246,68,4,0,218,41,0,0,14,1,0,0,25,70,4,0,235,41,0,0,14,1,0,0,121,70,4,0,255,41,0,0,14,1,0,0,216,71,4,0,14,42,0,0,14,1,0,0,37,72,4,0,36,42,0,0,14,1,0,0,235,72,4,0,53,42, 0,0,14,1,0,0,34,73,4,0,69,42,0,0,14,1,0,0,179,73,4,0,86,42,0,0,14,1,0,0,226,73,4,0,101,42,0,0,14,1,0,0,17,74,4,0,118,42,0,0,14,1,0,0,172,74,4,0,135,42,0,0,14,1,0,0,219,74,4,0,151,42,0,0,14,1,0,0,252,74,4,0,170,42,0,0,14,1,0,0,29,75,4,0,187,42,0,0,14, 1,0,0,62,75,4,0,208,42,0,0,14,1,0,0,109,75,4,0,230,42,0,0,14,1,0,0,47,76,4,0,245,42,0,0,14,1,0,0,159,76,4,0,4,43,0,0,14,1,0,0,180,76,4,0,20,43,0,0,14,1,0,0,249,76,4,0,40,43,0,0,14,1,0,0,84,77,4,0,55,43,0,0,14,1,0,0,140,79,4,0,76,43,0,0,14,1,0,0,175,79, 4,0,92,43,0,0,14,1,0,0,245,79,4,0,107,43,0,0,14,1,0,0,93,89,4,0,128,43,0,0,14,1,0,0,128,89,4,0,144,43,0,0,14,1,0,0,96,96,4,0,163,43,0,0,14,1,0,0,215,96,4,0,181,43,0,0,14,1,0,0,32,97,4,0,198,43,0,0,14,1,0,0,220,104,4,0,212,43,0,0,14,1,0,0,171,111,4,0, 229,43,0,0,14,1,0,0,9,112,4,0,3,44,0,0,14,1,0,0,62,113,4,0,31,44,0,0,14,1,0,0,217,116,4,0,44,44,0,0,14,1,0,0,102,118,4,0,59,44,0,0,14,1,0,0,57,125,4,0,87,44,0,0,14,1,0,0,20,126,4,0,111,44,0,0,14,1,0,0,123,128,4,0,130,44,0,0,14,1,0,0,117,129,4,0,149,44, 0,0,14,1,0,0,203,129,4,0,166,44,0,0,14,1,0,0,239,134,4,0,181,44,0,0,14,1,0,0,147,135,4,0,191,44,0,0,14,1,0,0,219,135,4,0,200,44,0,0,14,1,0,0,28,136,4,0,216,44,0,0,14,1,0,0,180,146,4,0,238,44,0,0,14,1,0,0,128,165,4,0,254,44,0,0,14,1,0,0,93,167,4,0,21, 45,0,0,14,1,0,0,140,168,4,0,36,45,0,0,14,1,0,0,98,169,4,0,53,45,0,0,14,1,0,0,1,172,4,0,70,45,0,0,14,1,0,0,9,172,4,0,85,45,0,0,14,1,0,0,17,172,4,0,97,45,0,0,14,1,0,0,244,173,4,0,114,45,0,0,14,1,0,0,73,176,4,0,128,45,0,0,14,1,0,0,224,176,4,0,141,45,0,0, 14,1,0,0,131,177,4,0,160,45,0,0,14,1,0,0,189,178,4,0,173,45,0,0,14,1,0,0,246,179,4,0,191,45,0,0,14,1,0,0,101,187,4,0,214,45,0,0,14,1,0,0,232,187,4,0,238,45,0,0,14,1,0,0,254,189,4,0,5,46,0,0,14,1,0,0,29,192,4,0,28,46,0,0,14,1,0,0,250,196,4,0,50,46,0,0, 14,1,0,0,141,198,4,0,66,46,0,0,14,1,0,0,44,199,4,0,83,46,0,0,14,1,0,0,59,201,4,0,98,46,0,0,14,1,0,0,144,201,4,0,117,46,0,0,14,1,0,0,15,202,4,0,133,46,0,0,14,1,0,0,128,203,4,0,150,46,0,0,14,1,0,0,27,204,4,0,176,46,0,0,14,1,0,0,125,204,4,0,203,46,0,0,14, 1,0,0,223,204,4,0,227,46,0,0,14,1,0,0,175,208,4,0,250,46,0,0,14,1,0,0,23,209,4,0,18,47,0,0,14,1,0,0,195,209,4,0,41,47,0,0,14,1,0,0,47,210,4,0,61,47,0,0,14,1,0,0,150,212,4,0,82,47,0,0,14,1,0,0,55,215,4,0,93,47,0,0,14,1,0,0,6,219,4,0,108,47,0,0,14,1,0, 0,226,220,4,0,124,47,0,0,14,1,0,0,234,220,4,0,138,47,0,0,14,1,0,0,242,220,4,0,154,47,0,0,14,1,0,0,250,220,4,0,166,47,0,0,14,1,0,0,57,221,4,0,181,47,0,0,14,1,0,0,76,222,4,0,192,47,0,0,14,1,0,0,136,226,4,0,206,47,0,0,14,1,0,0,196,228,4,0,219,47,0,0,14, 1,0,0,66,232,4,0,231,47,0,0,14,1,0,0,122,232,4,0,244,47,0,0,14,1,0,0,193,233,4,0,254,47,0,0,14,1,0,0,172,239,4,0,22,48,0,0,14,1,0,0,10,244,4,0,36,48,0,0,14,1,0,0,97,249,4,0,51,48,0,0,14,1,0,0,105,249,4,0,64,48,0,0,14,1,0,0,113,249,4,0,79,48,0,0,14,1, 0,0,121,249,4,0,89,48,0,0,14,1,0,0,241,10,5,0,101,48,0,0,14,1,0,0,100,12,5,0,113,48,0,0,14,1,0,0,23,13,5,0,129,48,0,0,14,1,0,0,210,16,5,0,149,48,0,0,14,1,0,0,109,17,5,0,171,48,0,0,14,1,0,0,151,17,5,0,191,48,0,0,14,1,0,0,124,20,5,0,212,48,0,0,14,1,0,0, 132,20,5,0,231,48,0,0,14,1,0,0,172,20,5,0,252,48,0,0,14,1,0,0,212,20,5,0,12,49,0,0,14,1,0,0,10,24,5,0,31,49,0,0,14,1,0,0,118,25,5,0,47,49,0,0,14,1,0,0,35,29,5,0,65,49,0,0,14,1,0,0,57,31,5,0,82,49,0,0,14,1,0,0,65,31,5,0,100,49,0,0,14,1,0,0,93,34,5,0,116, 49,0,0,14,1,0,0,47,36,5,0,134,49,0,0,14,1,0,0,5,43,5,0,154,49,0,0,14,1,0,0,27,43,5,0,175,49,0,0,14,1,0,0,56,43,5,0,197,49,0,0,14,1,0,0,85,43,5,0,217,49,0,0,14,1,0,0,128,43,5,0,241,49,0,0,14,1,0,0,171,43,5,0,255,49,0,0,14,1,0,0,219,43,5,0,14,50,0,0,14, 1,0,0,23,44,5,0,30,50,0,0,14,1,0,0,83,44,5,0,44,50,0,0,14,1,0,0,129,44,5,0,57,50,0,0,14,1,0,0,200,44,5,0,71,50,0,0,14,1,0,0,1,45,5,0,84,50,0,0,14,1,0,0,72,45,5,0,102,50,0,0,14,1,0,0,144,45,5,0,119,50,0,0,14,1,0,0,187,45,5,0,138,50,0,0,14,1,0,0,27,46, 5,0,158,50,0,0,14,1,0,0,43,47,5,0,180,50,0,0,14,1,0,0,85,47,5,0,195,50,0,0,14,1,0,0,250,47,5,0,209,50,0,0,14,1,0,0,106,48,5,0,223,50,0,0,14,1,0,0,252,50,5,0,238,50,0,0,14,1,0,0,228,51,5,0,255,50,0,0,14,1,0,0,28,52,5,0,13,51,0,0,14,1,0,0,63,52,5,0,27, 51,0,0,14,1,0,0,183,52,5,0,38,51,0,0,14,1,0,0,109,53,5,0,50,51,0,0,14,1,0,0,198,54,5,0,63,51,0,0,14,1,0,0,8,55,5,0,80,51,0,0,14,1,0,0,151,55,5,0,94,51,0,0,14,1,0,0,217,55,5,0,106,51,0,0,14,1,0,0,86,56,5,0,120,51,0,0,14,1,0,0,136,58,5,0,131,51,0,0,14, 1,0,0,167,60,5,0,144,51,0,0,14,1,0,0,3,62,5,0,157,51,0,0,14,1,0,0,169,65,5,0,178,51,0,0,14,1,0,0,222,66,5,0,194,51,0,0,14,1,0,0,75,67,5,0,205,51,0,0,14,1,0,0,244,73,5,0,217,51,0,0,14,1,0,0,61,74,5,0,235,51,0,0,14,1,0,0,116,75,5,0,249,51,0,0,14,1,0,0, 31,77,5,0,8,52,0,0,14,1,0,0,2,78,5,0,21,52,0,0,14,1,0,0,172,78,5,0,36,52,0,0,14,1,0,0,253,78,5,0,49,52,0,0,14,1,0,0,29,79,5,0,59,52,0,0,14,1,0,0,62,80,5,0,71,52,0,0,14,1,0,0,156,98,5,0,86,52,0,0,14,1,0,0,97,117,5,0,102,52,0,0,14,1,0,0,197,117,5,0,115, 52,0,0,14,1,0,0,136,119,5,0,134,52,0,0,14,1,0,0,183,121,5,0,147,52,0,0,14,1,0,0,151,122,5,0,162,52,0,0,14,1,0,0,248,123,5,0,176,52,0,0,14,1,0,0,11,124,5,0,193,52,0,0,14,1,0,0,108,124,5,0,205,52,0,0,14,1,0,0,203,124,5,0,219,52,0,0,14,1,0,0,85,125,5,0, 232,52,0,0,14,1,0,0,205,125,5,0,249,52,0,0,14,1,0,0,22,126,5,0,6,53,0,0,14,1,0,0,102,126,5,0,20,53,0,0,14,1,0,0,149,126,5,0,32,53,0,0,14,1,0,0,196,126,5,0,46,53,0,0,14,1,0,0,243,126,5,0,59,53,0,0,14,1,0,0,20,127,5,0,75,53,0,0,14,1,0,0,53,127,5,0,89,53, 0,0,14,1,0,0,86,127,5,0,108,53,0,0,14,1,0,0,133,127,5,0,126,53,0,0,14,1,0,0,180,127,5,0,139,53,0,0,14,1,0,0,249,127,5,0,155,53,0,0,14,1,0,0,39,128,5,0,167,53,0,0,14,1,0,0,2,136,5,0,188,53,0,0,14,1,0,0,37,136,5,0,199,53,0,0,14,1,0,0,41,142,5,0,210,53, 0,0,14,1,0,0,127,143,5,0,235,53,0,0,14,1,0,0,32,145,5,0,247,53,0,0,14,1,0,0,31,146,5,0,8,54,0,0,14,1,0,0,145,146,5,0,22,54,0,0,14,1,0,0,111,148,5,0,35,54,0,0,14,1,0,0,153,148,5,0,54,54,0,0,14,1,0,0,136,149,5,0,67,54,0,0,14,1,0,0,58,150,5,0,83,54,0,0, 14,1,0,0,112,150,5,0,98,54,0,0,14,1,0,0,15,151,5,0,111,54,0,0,14,1,0,0,68,151,5,0,125,54,0,0,14,1,0,0,9,153,5,0,134,54,0,0,14,1,0,0,228,153,5,0,147,54,0,0,14,1,0,0,160,155,5,0,157,54,0,0,14,1,0,0,199,155,5,0,168,54,0,0,14,1,0,0,76,156,5,0,177,54,0,0, 14,1,0,0,239,157,5,0,187,54,0,0,14,1,0,0,14,160,5,0,198,54,0,0,14,1,0,0,99,160,5,0,210,54,0,0,14,1,0,0,184,160,5,0,220,54,0,0,14,1,0,0,237,160,5,0,231,54,0,0,14,1,0,0,166,161,5,0,241,54,0,0,14,1,0,0,51,162,5,0,253,54,0,0,14,1,0,0,114,164,5,0,8,55,0,0, 14,1,0,0,150,164,5,0,20,55,0,0,14,1,0,0,35,165,5,0,33,55,0,0,14,1,0,0,127,165,5,0,50,55,0,0,14,1,0,0,36,167,5,0,65,55,0,0,14,1,0,0,173,167,5,0,78,55,0,0,14,1,0,0,21,168,5,0,93,55,0,0,14,1,0,0,250,171,5,0,107,55,0,0,14,1,0,0,16,172,5,0,122,55,0,0,14,1, 0,0,165,172,5,0,134,55,0,0,14,1,0,0,206,173,5,0,148,55,0,0,14,1,0,0,230,175,5,0,161,55,0,0,14,1,0,0,27,176,5,0,175,55,0,0,14,1,0,0,160,176,5,0,188,55,0,0,14,1,0,0,10,177,5,0,205,55,0,0,14,1,0,0,115,178,5,0,219,55,0,0,14,1,0,0,137,178,5,0,234,55,0,0,14, 1,0,0,250,191,5,0,250,55,0,0,14,1,0,0,107,192,5,0,7,56,0,0,14,1,0,0,81,194,5,0,26,56,0,0,14,1,0,0,174,196,5,0,41,56,0,0,14,1,0,0,124,198,5,0,53,56,0,0,14,1,0,0,82,199,5,0,66,56,0,0,14,1,0,0,207,201,5,0,79,56,0,0,14,1,0,0,13,205,5,0,93,56,0,0,14,1,0,0, 137,208,5,0,107,56,0,0,14,1,0,0,228,208,5,0,124,56,0,0,14,1,0,0,69,209,5,0,141,56,0,0,14,1,0,0,129,209,5,0,156,56,0,0,14,1,0,0,77,210,5,0,169,56,0,0,14,1,0,0,157,210,5,0,183,56,0,0,14,1,0,0,204,210,5,0,195,56,0,0,14,1,0,0,251,210,5,0,209,56,0,0,14,1, 0,0,42,211,5,0,222,56,0,0,14,1,0,0,75,211,5,0,238,56,0,0,14,1,0,0,108,211,5,0,252,56,0,0,14,1,0,0,141,211,5,0,14,57,0,0,14,1,0,0,188,211,5,0,33,57,0,0,14,1,0,0,235,211,5,0,46,57,0,0,14,1,0,0,48,212,5,0,68,57,0,0,14,1,0,0,69,212,5,0,90,57,0,0,14,1,0,0, 90,212,5,0,104,57,0,0,14,1,0,0,120,220,5,0,125,57,0,0,14,1,0,0,155,220,5,0,137,57,0,0,14,1,0,0,196,220,5,0,148,57,0,0,14,1,0,0,237,220,5,0,159,57,0,0,14,1,0,0,203,231,5,0,180,57,0,0,14,1,0,0,167,232,5,0,198,57,0,0,14,1,0,0,82,235,5,0,217,57,0,0,14,1, 0,0,90,237,5,0,237,57,0,0,14,1,0,0,57,238,5,0,2,58,0,0,14,1,0,0,90,239,5,0,19,58,0,0,14,1,0,0,247,240,5,0,40,58,0,0,14,1,0,0,162,242,5,0,57,58,0,0,14,1,0,0,11,243,5,0,71,58,0,0,14,1,0,0,33,248,5,0,91,58,0,0,14,1,0,0,157,250,5,0,105,58,0,0,14,1,0,0,230, 251,5,0,121,58,0,0,14,1,0,0,203,253,5,0,137,58,0,0,14,1,0,0,128,255,5,0,152,58,0,0,14,1,0,0,176,0,6,0,170,58,0,0,14,1,0,0,73,1,6,0,183,58,0,0,14,1,0,0,5,3,6,0,198,58,0,0,14,1,0,0,60,3,6,0,212,58,0,0,14,1,0,0,175,3,6,0,227,58,0,0,14,1,0,0,222,3,6,0,240, 58,0,0,14,1,0,0,13,4,6,0,255,58,0,0,14,1,0,0,122,4,6,0,14,59,0,0,14,1,0,0,169,4,6,0,28,59,0,0,14,1,0,0,202,4,6,0,45,59,0,0,14,1,0,0,235,4,6,0,60,59,0,0,14,1,0,0,12,5,6,0,79,59,0,0,14,1,0,0,59,5,6,0,99,59,0,0,14,1,0,0,106,5,6,0,112,59,0,0,14,1,0,0,172, 5,6,0,125,59,0,0,14,1,0,0,253,5,6,0,139,59,0,0,14,1,0,0,66,6,6,0,155,59,0,0,14,1,0,0,114,6,6,0,173,59,0,0,14,1,0,0,206,6,6,0,186,59,0,0,14,1,0,0,213,15,6,0,207,59,0,0,14,1,0,0,248,15,6,0,221,59,0,0,14,1,0,0,156,22,6,0,236,59,0,0,14,1,0,0,128,23,6,0,252, 59,0,0,14,1,0,0,53,25,6,0,12,60,0,0,14,1,0,0,171,25,6,0,25,60,0,0,14,1,0,0,39,32,6,0,39,60,0,0,14,1,0,0,76,36,6,0,54,60,0,0,14,1,0,0,56,38,6,0,70,60,0,0,14,1,0,0,32,41,6,0,82,60,0,0,14,1,0,0,211,43,6,0,98,60,0,0,14,1,0,0,137,46,6,0,110,60,0,0,14,1,0, 0,247,46,6,0,119,60,0,0,14,1,0,0,222,48,6,0,129,60,0,0,14,1,0,0,245,51,6,0,144,60,0,0,14,1,0,0,253,53,6,0,155,60,0,0,14,1,0,0,125,55,6,0,164,60,0,0,14,1,0,0,69,56,6,0,174,60,0,0,14,1,0,0,116,56,6,0,182,60,0,0,14,1,0,0,163,56,6,0,192,60,0,0,14,1,0,0,210, 56,6,0,204,60,0,0,14,1,0,0,243,56,6,0,214,60,0,0,14,1,0,0,20,57,6,0,228,60,0,0,14,1,0,0,67,57,6,0,243,60,0,0,14,1,0,0,114,57,6,0,253,60,0,0,14,1,0,0,167,58,6,0,5,61,0,0,14,1,0,0,220,59,6,0,14,61,0,0,14,1,0,0,134,60,6,0,22,61,0,0,14,1,0,0,231,67,6,0,43, 61,0,0,14,1,0,0,10,68,6,0,52,61,0,0,14,1,0,0,36,80,6,0,73,61,0,0,14,1,0,0,71,80,6,0,95,61,0,0,14,1,0,0,138,81,6,0,116,61,0,0,14,1,0,0,142,92,6,0,137,61,0,0,14,1,0,0,28,110,6,0,152,61,0,0,14,1,0,0,142,110,6,0,168,61,0,0,14,1,0,0,71,121,6,0,184,61,0,0, 14,1,0,0,164,184,6,0,204,61,0,0,14,1,0,0,226,184,6,0,220,61,0,0,14,1,0,0,93,185,6,0,239,61,0,0,14,1,0,0,240,185,6,0,0,62,0,0,14,1,0,0,131,186,6,0,18,62,0,0,14,1,0,0,22,187,6,0,34,62,0,0,14,1,0,0,35,197,6,0,53,62,0,0,14,1,0,0,4,198,6,0,69,62,0,0,14,1, 0,0,156,199,6,0,90,62,0,0,14,1,0,0,218,199,6,0,105,62,0,0,14,1,0,0,147,216,6,0,119,62,0,0,14,1,0,0,202,216,6,0,130,62,0,0,14,1,0,0,17,226,6,0,151,62,0,0,14,1,0,0,7,227,6,0,172,62,0,0,14,1,0,0,75,228,6,0,185,62,0,0,14,1,0,0,141,228,6,0,197,62,0,0,14,1, 0,0,66,229,6,0,212,62,0,0,14,1,0,0,17,230,6,0,225,62,0,0,14,1,0,0,4,231,6,0,239,62,0,0,14,1,0,0,211,231,6,0,251,62,0,0,14,1,0,0,13,233,6,0,11,63,0,0,14,1,0,0,249,233,6,0,33,63,0,0,14,1,0,0,214,234,6,0,51,63,0,0,14,1,0,0,128,235,6,0,71,63,0,0,14,1,0,0, 60,240,6,0,90,63,0,0,14,1,0,0,38,254,6,0,105,63,0,0,14,1,0,0,85,254,6,0,121,63,0,0,14,1,0,0,139,254,6,0,138,63,0,0,14,1,0,0,193,254,6,0,156,63,0,0,14,1,0,0,247,254,6,0,171,63,0,0,14,1,0,0,59,255,6,0,190,63,0,0,14,1,0,0,88,14,7,0,211,63,0,0,14,1,0,0,147, 18,7,0,231,63,0,0,14,1,0,0,197,22,7,0,252,63,0,0,14,1,0,0,228,24,7,0,10,64,0,0,14,1,0,0,231,26,7,0,22,64,0,0,14,1,0,0,173,29,7,0,43,64,0,0,14,1,0,0,198,40,7,0,58,64,0,0,14,1,0,0,204,41,7,0,77,64,0,0,14,1,0,0,25,56,7,0,98,64,0,0,14,1,0,0,60,56,7,0,119, 64,0,0,14,1,0,0,81,57,7,0,144,64,0,0,14,1,0,0,89,57,7,0,163,64,0,0,14,1,0,0,164,59,7,0,188,64,0,0,14,1,0,0,172,59,7,0,213,64,0,0,14,1,0,0,180,59,7,0,232,64,0,0,14,1,0,0,68,60,7,0,1,65,0,0,14,1,0,0,184,79,7,0,19,65,0,0,14,1,0,0,221,81,7,0,38,65,0,0,14, 1,0,0,29,82,7,0,50,65,0,0,14,1,0,0,135,82,7,0,67,65,0,0,14,1,0,0,239,82,7,0,85,65,0,0,14,1,0,0,46,83,7,0,101,65,0,0,14,1,0,0,192,86,7,0,124,65,0,0,14,1,0,0,201,88,7,0,147,65,0,0,14,1,0,0,223,92,7,0,171,65,0,0,14,1,0,0,215,96,7,0,187,65,0,0,14,1,0,0,194, 98,7,0,209,65,0,0,14,1,0,0,6,99,7,0,225,65,0,0,14,1,0,0,32,100,7,0,241,65,0,0,14,1,0,0,83,113,7,0,255,65,0,0,14,1,0,0,72,115,7,0,16,66,0,0,14,1,0,0,73,122,7,0,37,66,0,0,14,1,0,0,108,122,7,0,59,66,0,0,14,1,0,0,236,125,7,0,73,66,0,0,14,1,0,0,154,126,7, 0,81,66,0,0,14,1,0,0,135,132,7,0,99,66,0,0,14,1,0,0,247,132,7,0,124,66,0,0,14,1,0,0,69,153,7,0,143,66,0,0,14,1,0,0,54,159,7,0,165,66,0,0,14,1,0,0,7,160,7,0,181,66,0,0,14,1,0,0,195,161,7,0,203,66,0,0,14,1,0,0,237,161,7,0,214,66,0,0,14,1,0,0,98,163,7,0, 235,66,0,0,14,1,0,0,206,169,7,0,0,67,0,0,14,1,0,0,121,171,7,0,18,67,0,0,14,1,0,0,7,182,7,0,27,67,0,0,14,1,0,0,34,182,7,0,37,67,0,0,14,1,0,0,131,182,7,0,46,67,0,0,14,1,0,0,14,189,7,0,58,67,0,0,14,1,0,0,162,189,7,0,66,67,0,0,14,1,0,0,106,190,7,0,75,67, 0,0,14,1,0,0,106,191,7,0,86,67,0,0,14,1,0,0,130,192,7,0,93,67,0,0,14,1,0,0,193,211,7,0,103,67,0,0,14,1,0,0,1,212,7,0,115,67,0,0,14,1,0,0,38,212,7,0,125,67,0,0,14,1,0,0,102,212,7,0,137,67,0,0,14,1,0,0,139,212,7,0,150,67,0,0,14,1,0,0,203,212,7,0,165,67, 0,0,14,1,0,0,240,212,7,0,178,67,0,0,14,1,0,0,48,213,7,0,193,67,0,0,14,1,0,0,85,213,7,0,206,67,0,0,14,1,0,0,149,213,7,0,221,67,0,0,14,1,0,0,186,213,7,0,234,67,0,0,14,1,0,0,250,213,7,0,249,67,0,0,14,1,0,0,49,217,7,0,5,68,0,0,14,1,0,0,152,217,7,0,22,68, 0,0,14,1,0,0,194,217,7,0,40,68,0,0,14,1,0,0,242,217,7,0,59,68,0,0,14,1,0,0,43,218,7,0,77,68,0,0,14,1,0,0,85,218,7,0,96,68,0,0,14,1,0,0,139,218,7,0,116,68,0,0,14,1,0,0,202,218,7,0,134,68,0,0,14,1,0,0,244,218,7,0,153,68,0,0,14,1,0,0,36,219,7,0,173,68,0, 0,14,1,0,0,93,219,7,0,189,68,0,0,14,1,0,0,135,219,7,0,206,68,0,0,14,1,0,0,251,219,7,0,224,68,0,0,14,1,0,0,120,220,7,0,240,68,0,0,14,1,0,0,162,220,7,0,1,69,0,0,14,1,0,0,19,221,7,0,19,69,0,0,14,1,0,0,141,221,7,0,35,69,0,0,14,1,0,0,183,221,7,0,52,69,0,0, 14,1,0,0,11,222,7,0,70,69,0,0,14,1,0,0,104,222,7,0,86,69,0,0,14,1,0,0,146,222,7,0,103,69,0,0,14,1,0,0,230,222,7,0,121,69,0,0,14,1,0,0,67,223,7,0,133,69,0,0,14,1,0,0,170,223,7,0,148,69,0,0,14,1,0,0,212,223,7,0,164,69,0,0,14,1,0,0,57,224,7,0,181,69,0,0, 14,1,0,0,167,224,7,0,196,69,0,0,14,1,0,0,209,224,7,0,212,69,0,0,14,1,0,0,54,225,7,0,229,69,0,0,14,1,0,0,164,225,7,0,244,69,0,0,14,1,0,0,206,225,7,0,4,70,0,0,14,1,0,0,49,226,7,0,21,70,0,0,14,1,0,0,157,226,7,0,36,70,0,0,14,1,0,0,199,226,7,0,52,70,0,0,14, 1,0,0,42,227,7,0,69,70,0,0,14,1,0,0,150,227,7,0,84,70,0,0,14,1,0,0,192,227,7,0,100,70,0,0,14,1,0,0,35,228,7,0,117,70,0,0,14,1,0,0,143,228,7,0,132,70,0,0,14,1,0,0,185,228,7,0,148,70,0,0,14,1,0,0,28,229,7,0,165,70,0,0,14,1,0,0,136,229,7,0,177,70,0,0,14, 1,0,0,239,229,7,0,192,70,0,0,14,1,0,0,25,230,7,0,208,70,0,0,14,1,0,0,83,230,7,0,225,70,0,0,14,1,0,0,150,230,7,0,240,70,0,0,14,1,0,0,192,230,7,0,0,71,0,0,14,1,0,0,17,231,7,0,17,71,0,0,14,1,0,0,107,231,7,0,32,71,0,0,14,1,0,0,149,231,7,0,48,71,0,0,14,1, 0,0,207,231,7,0,65,71,0,0,14,1,0,0,18,232,7,0,80,71,0,0,14,1,0,0,60,232,7,0,96,71,0,0,14,1,0,0,141,232,7,0,113,71,0,0,14,1,0,0,231,232,7,0,128,71,0,0,14,1,0,0,17,233,7,0,144,71,0,0,14,1,0,0,77,233,7,0,161,71,0,0,14,1,0,0,146,233,7,0,176,71,0,0,14,1,0, 0,188,233,7,0,192,71,0,0,14,1,0,0,248,233,7,0,209,71,0,0,14,1,0,0,61,234,7,0,224,71,0,0,14,1,0,0,103,234,7,0,240,71,0,0,14,1,0,0,199,234,7,0,1,72,0,0,14,1,0,0,48,235,7,0,17,72,0,0,14,1,0,0,90,235,7,0,34,72,0,0,14,1,0,0,197,235,7,0,52,72,0,0,14,1,0,0, 225,235,7,0,68,72,0,0,14,1,0,0,11,236,7,0,85,72,0,0,14,1,0,0,125,236,7,0,103,72,0,0,14,1,0,0,153,236,7,0,112,72,0,0,14,1,0,0,217,236,7,0,123,72,0,0,14,1,0,0,254,236,7,0,132,72,0,0,14,1,0,0,62,237,7,0,143,72,0,0,14,1,0,0,99,237,7,0,152,72,0,0,14,1,0,0, 163,237,7,0,163,72,0,0,14,1,0,0,37,238,7,0,173,72,0,0,14,1,0,0,101,238,7,0,185,72,0,0,14,1,0,0,138,238,7,0,196,72,0,0,14,1,0,0,237,238,7,0,209,72,0,0,14,1,0,0,117,239,7,0,219,72,0,0,14,1,0,0,181,239,7,0,231,72,0,0,14,1,0,0,24,240,7,0,240,72,0,0,14,1, 0,0,88,240,7,0,251,72,0,0,14,1,0,0,191,240,7,0,4,73,0,0,14,1,0,0,255,240,7,0,15,73,0,0,14,1,0,0,83,241,7,0,24,73,0,0,14,1,0,0,147,241,7,0,35,73,0,0,14,1,0,0,203,241,7,0,45,73,0,0,14,1,0,0,11,242,7,0,57,73,0,0,14,1,0,0,81,242,7,0,67,73,0,0,14,1,0,0,205, 242,7,0,78,73,0,0,14,1,0,0,81,243,7,0,90,73,0,0,14,1,0,0,222,243,7,0,102,73,0,0,14,1,0,0,46,7,8,0,113,73,0,0,14,1,0,0,140,7,8,0,125,73,0,0,14,1,0,0,184,7,8,0,138,73,0,0,14,1,0,0,184,8,8,0,151,73,0,0,14,1,0,0,35,9,8,0,165,73,0,0,14,1,0,0,62,9,8,0,179, 73,0,0,14,1,0,0,94,9,8,0,194,73,0,0,14,1,0,0,82,10,8,0,208,73,0,0,14,1,0,0,189,10,8,0,223,73,0,0,14,1,0,0,221,10,8,0,240,73,0,0,14,1,0,0,6,11,8,0,3,74,0,0,14,1,0,0,47,11,8,0,18,74,0,0,14,1,0,0,64,12,8,0,28,74,0,0,14,1,0,0,141,12,8,0,39,74,0,0,14,1,0, 0,161,12,8,0,50,74,0,0,14,1,0,0,192,13,8,0,61,74,0,0,14,1,0,0,230,13,8,0,73,74,0,0,14,1,0,0,19,14,8,0,86,74,0,0,14,1,0,0,64,14,8,0,100,74,0,0,14,1,0,0,109,14,8,0,111,74,0,0,14,1,0,0,168,14,8,0,126,74,0,0,14,1,0,0,227,14,8,0,136,74,0,0,14,1,0,0,54,15, 8,0,148,74,0,0,14,1,0,0,105,16,8,0,162,74,0,0,14,1,0,0,127,16,8,0,177,74,0,0,14,1,0,0,156,16,8,0,193,74,0,0,14,1,0,0,185,16,8,0,210,74,0,0,14,1,0,0,214,16,8,0,224,74,0,0,14,1,0,0,1,17,8,0,242,74,0,0,14,1,0,0,44,17,8,0,255,74,0,0,14,1,0,0,131,17,8,0,13, 75,0,0,14,1,0,0,160,17,8,0,28,75,0,0,14,1,0,0,215,18,8,0,40,75,0,0,14,1,0,0,31,19,8,0,53,75,0,0,14,1,0,0,98,19,8,0,65,75,0,0,14,1,0,0,204,19,8,0,78,75,0,0,14,1,0,0,47,20,8,0,89,75,0,0,14,1,0,0,86,20,8,0,101,75,0,0,14,1,0,0,200,23,8,0,117,75,0,0,14,1, 0,0,148,24,8,0,129,75,0,0,14,1,0,0,85,27,8,0,141,75,0,0,14,1,0,0,124,27,8,0,152,75,0,0,14,1,0,0,121,29,8,0,162,75,0,0,14,1,0,0,12,32,8,0,173,75,0,0,14,1,0,0,107,33,8,0,194,75,0,0,14,1,0,0,149,33,8,0,208,75,0,0,14,1,0,0,21,34,8,0,220,75,0,0,14,1,0,0,99, 34,8,0,233,75,0,0,14,1,0,0,177,34,8,0,244,75,0,0,14,1,0,0,218,34,8,0,3,76,0,0,14,1,0,0,116,35,8,0,14,76,0,0,14,1,0,0,11,36,8,0,26,76,0,0,14,1,0,0,18,37,8,0,38,76,0,0,14,1,0,0,202,38,8,0,51,76,0,0,14,1,0,0,176,39,8,0,68,76,0,0,14,1,0,0,74,40,8,0,81,76, 0,0,14,1,0,0,113,40,8,0,95,76,0,0,14,1,0,0,16,41,8,0,108,76,0,0,14,1,0,0,111,43,8,0,122,76,0,0,14,1,0,0,209,44,8,0,140,76,0,0,14,1,0,0,107,45,8,0,154,76,0,0,14,1,0,0,150,45,8,0,171,76,0,0,14,1,0,0,205,45,8,0,186,76,0,0,14,1,0,0,4,46,8,0,202,76,0,0,14, 1,0,0,59,46,8,0,216,76,0,0,14,1,0,0,98,46,8,0,231,76,0,0,14,1,0,0,153,47,8,0,243,76,0,0,14,1,0,0,243,47,8,0,0,77,0,0,14,1,0,0,47,48,8,0,16,77,0,0,14,1,0,0,114,48,8,0,30,77,0,0,14,1,0,0,181,48,8,0,45,77,0,0,14,1,0,0,248,48,8,0,58,77,0,0,14,1,0,0,73,49, 8,0,75,77,0,0,14,1,0,0,154,49,8,0,89,77,0,0,14,1,0,0,157,50,8,0,100,77,0,0,14,1,0,0,26,51,8,0,113,77,0,0,14,1,0,0,94,51,8,0,126,77,0,0,14,1,0,0,223,51,8,0,137,77,0,0,14,1,0,0,99,52,8,0,149,77,0,0,14,1,0,0,178,52,8,0,162,77,0,0,14,1,0,0,46,53,8,0,175, 77,0,0,14,1,0,0,64,53,8,0,188,77,0,0,14,1,0,0,9,54,8,0,213,77,0,0,14,1,0,0,64,55,8,0,231,77,0,0,14,1,0,0,203,55,8,0,251,77,0,0,14,1,0,0,66,57,8,0,16,78,0,0,14,1,0,0,62,58,8,0,34,78,0,0,14,1,0,0,90,58,8,0,54,78,0,0,14,1,0,0,51,59,8,0,64,78,0,0,14,1,0, 0,190,59,8,0,75,78,0,0,14,1,0,0,246,59,8,0,87,78,0,0,14,1,0,0,221,60,8,0,99,78,0,0,14,1,0,0,38,61,8,0,112,78,0,0,14,1,0,0,70,61,8,0,126,78,0,0,14,1,0,0,129,61,8,0,138,78,0,0,14,1,0,0,9,64,8,0,149,78,0,0,14,1,0,0,101,64,8,0,161,78,0,0,14,1,0,0,135,64, 8,0,174,78,0,0,14,1,0,0,154,64,8,0,184,78,0,0,14,1,0,0,176,64,8,0,197,78,0,0,14,1,0,0,164,68,8,0,214,78,0,0,14,1,0,0,138,69,8,0,230,78,0,0,14,1,0,0,160,69,8,0,247,78,0,0,14,1,0,0,190,69,8,0,5,79,0,0,14,1,0,0,26,70,8,0,18,79,0,0,14,1,0,0,111,70,8,0,36, 79,0,0,14,1,0,0,164,70,8,0,50,79,0,0,14,1,0,0,193,70,8,0,65,79,0,0,14,1,0,0,26,72,8,0,80,79,0,0,14,1,0,0,209,72,8,0,98,79,0,0,14,1,0,0,45,73,8,0,114,79,0,0,14,1,0,0,87,73,8,0,134,79,0,0,14,1,0,0,116,73,8,0,150,79,0,0,14,1,0,0,145,73,8,0,167,79,0,0,14, 1,0,0,102,74,8,0,182,79,0,0,14,1,0,0,42,75,8,0,200,79,0,0,14,1,0,0,134,75,8,0,216,79,0,0,14,1,0,0,176,75,8,0,236,79,0,0,14,1,0,0,205,75,8,0,252,79,0,0,14,1,0,0,234,75,8,0,13,80,0,0,14,1,0,0,191,76,8,0,22,80,0,0,14,1,0,0,22,77,8,0,33,80,0,0,14,1,0,0,51, 77,8,0,43,80,0,0,14,1,0,0,93,77,8,0,54,80,0,0,14,1,0,0,180,77,8,0,67,80,0,0,14,1,0,0,209,77,8,0,79,80,0,0,14,1,0,0,251,77,8,0,92,80,0,0,14,1,0,0,121,78,8,0,106,80,0,0,14,1,0,0,219,78,8,0,120,80,0,0,14,1,0,0,5,79,8,0,131,80,0,0,14,1,0,0,254,80,8,0,142, 80,0,0,14,1,0,0,71,82,8,0,154,80,0,0,14,1,0,0,158,82,8,0,169,80,0,0,14,1,0,0,245,82,8,0,182,80,0,0,14,1,0,0,97,83,8,0,194,80,0,0,14,1,0,0,66,84,8,0,210,80,0,0,14,1,0,0,191,84,8,0,223,80,0,0,14,1,0,0,181,85,8,0,235,80,0,0,14,1,0,0,239,85,8,0,247,80,0, 0,14,1,0,0,44,86,8,0,4,81,0,0,14,1,0,0,185,86,8,0,16,81,0,0,14,1,0,0,15,88,8,0,32,81,0,0,14,1,0,0,143,89,8,0,47,81,0,0,14,1,0,0,222,89,8,0,60,81,0,0,14,1,0,0,68,91,8,0,73,81,0,0,14,1,0,0,217,91,8,0,90,81,0,0,14,1,0,0,114,92,8,0,108,81,0,0,14,1,0,0,247, 93,8,0,130,81,0,0,14,1,0,0,158,95,8,0,148,81,0,0,14,1,0,0,180,95,8,0,167,81,0,0,14,1,0,0,119,96,8,0,185,81,0,0,14,1,0,0,16,97,8,0,204,81,0,0,14,1,0,0,146,98,8,0,227,81,0,0,14,1,0,0,62,100,8,0,246,81,0,0,14,1,0,0,84,100,8,0,10,82,0,0,14,1,0,0,23,101,8, 0,26,82,0,0,14,1,0,0,189,101,8,0,43,82,0,0,14,1,0,0,129,102,8,0,64,82,0,0,14,1,0,0,143,103,8,0,82,82,0,0,14,1,0,0,78,104,8,0,97,82,0,0,14,1,0,0,144,104,8,0,113,82,0,0,14,1,0,0,9,105,8,0,133,82,0,0,14,1,0,0,52,105,8,0,150,82,0,0,14,1,0,0,235,105,8,0,167, 82,0,0,14,1,0,0,45,106,8,0,185,82,0,0,14,1,0,0,78,106,8,0,207,82,0,0,14,1,0,0,136,106,8,0,226,82,0,0,14,1,0,0,63,107,8,0,236,82,0,0,14,1,0,0,48,109,8,0,248,82,0,0,14,1,0,0,174,109,8,0,5,83,0,0,14,1,0,0,45,110,8,0,18,83,0,0,14,1,0,0,87,110,8,0,31,83,0, 0,14,1,0,0,213,110,8,0,45,83,0,0,14,1,0,0,255,110,8,0,59,83,0,0,14,1,0,0,100,113,8,0,71,83,0,0,14,1,0,0,30,114,8,0,84,83,0,0,14,1,0,0,30,115,8,0,97,83,0,0,14,1,0,0,72,115,8,0,111,83,0,0,14,1,0,0,175,116,8,0,122,83,0,0,14,1,0,0,222,117,8,0,134,83,0,0, 14,1,0,0,21,119,8,0,146,83,0,0,14,1,0,0,63,119,8,0,159,83,0,0,14,1,0,0,166,120,8,0,170,83,0,0,14,1,0,0,65,121,8,0,182,83,0,0,14,1,0,0,250,121,8,0,194,83,0,0,14,1,0,0,36,122,8,0,207,83,0,0,14,1,0,0,110,123,8,0,219,83,0,0,14,1,0,0,9,124,8,0,232,83,0,0, 14,1,0,0,194,124,8,0,245,83,0,0,14,1,0,0,236,124,8,0,3,84,0,0,14,1,0,0,51,126,8,0,16,84,0,0,14,1,0,0,206,126,8,0,30,84,0,0,14,1,0,0,135,127,8,0,44,84,0,0,14,1,0,0,177,127,8,0,59,84,0,0,14,1,0,0,248,128,8,0,76,84,0,0,14,1,0,0,178,129,8,0,94,84,0,0,14, 1,0,0,178,130,8,0,112,84,0,0,14,1,0,0,220,130,8,0,131,84,0,0,14,1,0,0,67,132,8,0,146,84,0,0,14,1,0,0,193,132,8,0,162,84,0,0,14,1,0,0,45,133,8,0,178,84,0,0,14,1,0,0,87,133,8,0,195,84,0,0,14,1,0,0,48,135,8,0,215,84,0,0,14,1,0,0,195,135,8,0,236,84,0,0,14, 1,0,0,47,136,8,0,1,85,0,0,14,1,0,0,89,136,8,0,23,85,0,0,14,1,0,0,151,137,8,0,36,85,0,0,14,1,0,0,251,137,8,0,51,85,0,0,14,1,0,0,67,138,8,0,66,85,0,0,14,1,0,0,240,138,8,0,79,85,0,0,14,1,0,0,119,139,8,0,94,85,0,0,14,1,0,0,241,139,8,0,109,85,0,0,14,1,0,0, 150,140,8,0,121,85,0,0,14,1,0,0,24,141,8,0,135,85,0,0,14,1,0,0,146,141,8,0,149,85,0,0,14,1,0,0,63,142,8,0,161,85,0,0,14,1,0,0,163,142,8,0,175,85,0,0,14,1,0,0,67,143,8,0,189,85,0,0,14,1,0,0,232,143,8,0,202,85,0,0,14,1,0,0,76,144,8,0,217,85,0,0,14,1,0, 0,193,144,8,0,232,85,0,0,14,1,0,0,102,145,8,0,246,85,0,0,14,1,0,0,202,145,8,0,6,86,0,0,14,1,0,0,50,146,8,0,22,86,0,0,14,1,0,0,215,146,8,0,40,86,0,0,14,1,0,0,94,147,8,0,60,86,0,0,14,1,0,0,216,147,8,0,80,86,0,0,14,1,0,0,125,148,8,0,94,86,0,0,14,1,0,0,42, 149,8,0,109,86,0,0,14,1,0,0,231,149,8,0,125,86,0,0,14,1,0,0,233,150,8,0,140,86,0,0,14,1,0,0,107,151,8,0,156,86,0,0,14,1,0,0,176,151,8,0,172,86,0,0,14,1,0,0,169,152,8,0,187,86,0,0,14,1,0,0,37,153,8,0,204,86,0,0,14,1,0,0,126,153,8,0,221,86,0,0,14,1,0,0, 247,153,8,0,231,86,0,0,14,1,0,0,66,155,8,0,243,86,0,0,14,1,0,0,15,159,8,0,254,86,0,0,14,1,0,0,190,159,8,0,10,87,0,0,14,1,0,0,251,159,8,0,21,87,0,0,14,1,0,0,40,160,8,0,33,87,0,0,14,1,0,0,33,161,8,0,42,87,0,0,14,1,0,0,142,161,8,0,53,87,0,0,14,1,0,0,192, 162,8,0,64,87,0,0,14,1,0,0,15,163,8,0,75,87,0,0,14,1,0,0,70,163,8,0,86,87,0,0,14,1,0,0,155,164,8,0,96,87,0,0,14,1,0,0,210,164,8,0,108,87,0,0,14,1,0,0,61,165,8,0,121,87,0,0,14,1,0,0,6,166,8,0,134,87,0,0,14,1,0,0,105,166,8,0,148,87,0,0,14,1,0,0,40,167, 8,0,162,87,0,0,14,1,0,0,104,167,8,0,181,87,0,0,14,1,0,0,151,167,8,0,197,87,0,0,14,1,0,0,44,168,8,0,213,87,0,0,14,1,0,0,140,168,8,0,230,87,0,0,14,1,0,0,187,168,8,0,248,87,0,0,14,1,0,0,38,169,8,0,6,88,0,0,14,1,0,0,252,169,8,0,18,88,0,0,14,1,0,0,81,170, 8,0,32,88,0,0,14,1,0,0,210,170,8,0,46,88,0,0,14,1,0,0,232,170,8,0,61,88,0,0,14,1,0,0,127,171,8,0,74,88,0,0,14,1,0,0,10,172,8,0,89,88,0,0,14,1,0,0,185,172,8,0,104,88,0,0,14,1,0,0,204,172,8,0,120,88,0,0,14,1,0,0,30,173,8,0,134,88,0,0,14,1,0,0,169,173,8, 0,150,88,0,0,14,1,0,0,126,174,8,0,163,88,0,0,14,1,0,0,245,174,8,0,180,88,0,0,14,1,0,0,9,177,8,0,194,88,0,0,14,1,0,0,46,177,8,0,214,88,0,0,14,1,0,0,125,177,8,0,228,88,0,0,14,1,0,0,174,179,8,0,242,88,0,0,14,1,0,0,193,179,8,0,1,89,0,0,14,1,0,0,230,180,8, 0,20,89,0,0,14,1,0,0,27,181,8,0,37,89,0,0,14,1,0,0,192,182,8,0,61,89,0,0,14,1,0,0,155,183,8,0,77,89,0,0,14,1,0,0,244,186,8,0,94,89,0,0,14,1,0,0,34,187,8,0,112,89,0,0,14,1,0,0,175,187,8,0,123,89,0,0,14,1,0,0,142,188,8,0,137,89,0,0,14,1,0,0,223,188,8,0, 151,89,0,0,14,1,0,0,182,191,8,0,163,89,0,0,14,1,0,0,249,191,8,0,175,89,0,0,14,1,0,0,39,192,8,0,187,89,0,0,14,1,0,0,103,192,8,0,198,89,0,0,14,1,0,0,186,192,8,0,210,89,0,0,14,1,0,0,224,192,8,0,223,89,0,0,14,1,0,0,1,193,8,0,234,89,0,0,14,1,0,0,52,193,8, 0,246,89,0,0,14,1,0,0,254,193,8,0,3,90,0,0,14,1,0,0,68,195,8,0,16,90,0,0,14,1,0,0,115,195,8,0,29,90,0,0,14,1,0,0,144,196,8,0,41,90,0,0,14,1,0,0,190,196,8,0,55,90,0,0,14,1,0,0,138,197,8,0,70,90,0,0,14,1,0,0,185,198,8,0,87,90,0,0,14,1,0,0,203,198,8,0,102, 90,0,0,14,1,0,0,158,204,8,0,114,90,0,0,14,1,0,0,194,204,8,0,126,90,0,0,14,1,0,0,216,204,8,0,137,90,0,0,14,1,0,0,16,205,8,0,150,90,0,0,14,1,0,0,53,205,8,0,162,90,0,0,14,1,0,0,75,205,8,0,174,90,0,0,14,1,0,0,97,205,8,0,185,90,0,0,14,1,0,0,16,206,8,0,198, 90,0,0,14,1,0,0,83,207,8,0,210,90,0,0,14,1,0,0,153,207,8,0,223,90,0,0,14,1,0,0,229,207,8,0,235,90,0,0,14,1,0,0,15,208,8,0,247,90,0,0,14,1,0,0,57,208,8,0,2,91,0,0,14,1,0,0,113,208,8,0,14,91,0,0,14,1,0,0,135,208,8,0,25,91,0,0,14,1,0,0,64,209,8,0,38,91, 0,0,14,1,0,0,83,210,8,0,49,91,0,0,14,1,0,0,168,211,8,0,61,91,0,0,14,1,0,0,149,213,8,0,71,91,0,0,14,1,0,0,180,213,8,0,82,91,0,0,14,1,0,0,214,213,8,0,92,91,0,0,14,1,0,0,1,214,8,0,103,91,0,0,14,1,0,0,23,214,8,0,113,91,0,0,14,1,0,0,30,215,8,0,125,91,0,0, 14,1,0,0,93,216,8,0,137,91,0,0,14,1,0,0,112,216,8,0,150,91,0,0,14,1,0,0,166,216,8,0,161,91,0,0,14,1,0,0,49,217,8,0,174,91,0,0,14,1,0,0,232,217,8,0,184,91,0,0,14,1,0,0,193,221,8,0,195,91,0,0,14,1,0,0,75,222,8,0,206,91,0,0,14,1,0,0,177,223,8,0,217,91,0, 0,14,1,0,0,79,226,8,0,229,91,0,0,14,1,0,0,113,226,8,0,241,91,0,0,14,1,0,0,161,226,8,0,253,91,0,0,14,1,0,0,67,233,8,0,11,92,0,0,14,1,0,0,123,233,8,0,26,92,0,0,14,1,0,0,186,233,8,0,42,92,0,0,14,1,0,0,251,233,8,0,59,92,0,0,14,1,0,0,3,234,8,0,73,92,0,0,14, 1,0,0,73,234,8,0,91,92,0,0,14,1,0,0,154,234,8,0,110,92,0,0,14,1,0,0,2,236,8,0,122,92,0,0,14,1,0,0,169,239,8,0,143,92,0,0,14,1,0,0,211,239,8,0,164,92,0,0,14,3,0,0,0,135,9,0,181,92,0,0,14,3,0,0,32,135,9,0,203,92,0,0,14,3,0,0,168,136,9,0,219,92,0,0,14,3, 0,0,172,136,9,0,235,92,0,0,30,5,0,0,74,139,9,0,249,92,0,0,14,9,0,0,152,149,9,0,13,93,0,0,14,9,0,0,156,149,9,0,34,93,0,0,14,9,0,0,160,149,9,0,46,93,0,0,14,9,0,0,216,149,9,0,69,93,0,0,14,9,0,0,88,150,9,0,91,93,0,0,14,9,0,0,128,150,9,0,109,93,0,0,14,9,0, 0,32,151,9,0,118,93,0,0,14,9,0,0,100,151,9,0,134,93,0,0,14,9,0,0,124,151,9,0,143,93,0,0,14,9,0,0,192,151,9,0,157,93,0,0,14,9,0,0,160,152,9,0,165,93,0,0,14,9,0,0,0,153,9,0,173,93,0,0,14,9,0,0,96,153,9,0,181,93,0,0,14,9,0,0,192,153,9,0,189,93,0,0,14,9, 0,0,32,154,9,0,197,93,0,0,14,9,0,0,112,154,9,0,208,93,0,0,14,9,0,0,116,154,9,0,221,93,0,0,14,9,0,0,128,159,9,0,247,93,0,0,14,9,0,0,36,160,9,0,17,94,0,0,14,9,0,0,104,160,9,0,34,94,0,0,14,9,0,0,128,160,9,0,53,94,0,0,14,9,0,0,160,160,9,0,62,94,0,0,14,9, 0,0,216,160,9,0,78,94,0,0,14,9,0,0,224,160,9,0,89,94,0,0,14,9,0,0,24,161,9,0,108,94,0,0,14,9,0,0,28,161,9,0,128,94,0,0,14,9,0,0,32,161,9,0,145,94,0,0,14,9,0,0,116,161,9,0,160,94,0,0,14,9,0,0,123,161,9,0,176,94,0,0,14,9,0,0,208,162,9,0,190,94,0,0,14,9, 0,0,212,162,9,0,205,94,0,0,14,9,0,0,216,162,9,0,216,94,0,0,14,9,0,0,220,162,9,0,228,94,0,0,14,9,0,0,224,162,9,0,242,94,0,0,14,9,0,0,132,163,9,0,8,95,0,0,14,10,0,0,192,163,9,0,20,95,0,0,14,10,0,0,196,163,9,0,38,95,0,0,14,10,0,0,200,163,9,0,51,95,0,0,14, 10,0,0,204,163,9,0,70,95,0,0,14,10,0,0,208,163,9,0,83,95,0,0,14,10,0,0,212,163,9,0,102,95,0,0,14,10,0,0,216,163,9,0,114,95,0,0,14,10,0,0,220,163,9,0,132,95,0,0,14,10,0,0,224,163,9,0,143,95,0,0,14,10,0,0,228,163,9,0,160,95,0,0,14,10,0,0,232,163,9,0,171, 95,0,0,14,10,0,0,236,163,9,0,188,95,0,0,14,10,0,0,240,163,9,0,200,95,0,0,14,10,0,0,244,163,9,0,222,95,0,0,14,10,0,0,248,163,9,0,243,95,0,0,14,10,0,0,252,163,9,0,8,96,0,0,14,10,0,0,0,164,9,0,30,96,0,0,14,10,0,0,4,164,9,0,51,96,0,0,14,10,0,0,8,164,9,0, 66,96,0,0,14,10,0,0,12,164,9,0,84,96,0,0,14,10,0,0,16,164,9,0,99,96,0,0,14,10,0,0,20,164,9,0,115,96,0,0,14,10,0,0,24,164,9,0,131,96,0,0,14,10,0,0,28,164,9,0,148,96,0,0,14,10,0,0,32,164,9,0,166,96,0,0,14,10,0,0,36,164,9,0,185,96,0,0,14,10,0,0,40,164,9, 0,207,96,0,0,14,10,0,0,44,164,9,0,230,96,0,0,14,10,0,0,48,164,9,0,253,96,0,0,14,10,0,0,52,164,9,0,8,97,0,0,14,10,0,0,56,164,9,0,19,97,0,0,14,10,0,0,60,164,9,0,33,97,0,0,14,10,0,0,64,164,9,0,52,97,0,0,14,10,0,0,68,164,9,0,70,97,0,0,14,10,0,0,72,164,9, 0,83,97,0,0,14,10,0,0,76,164,9,0,97,97,0,0,14,10,0,0,80,164,9,0,112,97,0,0,14,10,0,0,84,164,9,0,127,97,0,0,14,10,0,0,88,164,9,0,143,97,0,0,14,10,0,0,92,164,9,0,159,97,0,0,14,10,0,0,96,164,9,0,169,97,0,0,14,10,0,0,100,164,9,0,184,97,0,0,14,10,0,0,104, 164,9,0,202,97,0,0,14,10,0,0,108,164,9,0,218,97,0,0,14,10,0,0,112,164,9,0,234,97,0,0,14,10,0,0,128,164,9,0,246,97,0,0,14,10,0,0,160,164,9,0,4,98,0,0,14,10,0,0,160,168,9,0,23,98,0,0,14,10,0,0,160,184,9,0,39,98,0,0,14,10,0,0,164,184,9,0,54,98,0,0,14,10, 0,0,168,184,9,0,71,98,0,0,14,10,0,0,172,184,9,0,88,98,0,0,14,10,0,0,176,184,9,0,105,98,0,0,14,10,0,0,180,184,9,0,122,98,0,0,14,10,0,0,184,184,9,0,135,98,0,0,14,10,0,0,188,184,9,0,153,98,0,0,14,10,0,0,192,184,9,0,167,98,0,0,14,10,0,0,196,184,9,0,187,98, 0,0,14,10,0,0,200,184,9,0,198,98,0,0,14,10,0,0,204,184,9,0,209,98,0,0,14,10,0,0,208,184,9,0,226,98,0,0,14,10,0,0,212,184,9,0,239,98,0,0,14,10,0,0,216,184,9,0,1,99,0,0,14,10,0,0,220,184,9,0,15,99,0,0,14,10,0,0,224,184,9,0,30,99,0,0,14,10,0,0,0,185,9,0, 43,99,0,0,14,10,0,0,4,185,9,0,54,99,0,0,14,10,0,0,8,185,9,0,65,99,0,0,14,10,0,0,12,185,9,0,80,99,0,0,14,10,0,0,16,185,9,0,91,99,0,0,14,10,0,0,20,185,9,0,104,99,0,0,14,10,0,0,32,185,9,0,121,99,0,0,14,10,0,0,164,185,9,0,142,99,0,0,14,10,0,0,168,185,9,0, 159,99,0,0,14,10,0,0,172,185,9,0,180,99,0,0,14,10,0,0,176,185,9,0,204,99,0,0,14,10,0,0,180,185,9,0,212,99,0,0,14,10,0,0,184,185,9,0,240,99,0,0,14,10,0,0,188,185,9,0,10,100,0,0,14,10,0,0,192,185,9,0,36,100,0,0,14,10,0,0,196,185,9,0,57,100,0,0,14,10,0, 0,200,185,9,0,78,100,0,0,14,10,0,0,204,185,9,0,98,100,0,0,14,10,0,0,208,185,9,0,119,100,0,0,14,10,0,0,212,185,9,0,139,100,0,0,14,10,0,0,216,185,9,0,156,100,0,0,14,10,0,0,220,185,9,0,179,100,0,0,14,10,0,0,224,185,9,0,201,100,0,0,14,10,0,0,228,185,9,0, 224,100,0,0,14,10,0,0,232,185,9,0,245,100,0,0,14,10,0,0,236,185,9,0,9,101,0,0,14,10,0,0,240,185,9,0,31,101,0,0,14,10,0,0,244,185,9,0,53,101,0,0,14,10,0,0,248,185,9,0,73,101,0,0,14,10,0,0,252,185,9,0,94,101,0,0,14,10,0,0,0,186,9,0,105,101,0,0,14,10,0, 0,4,186,9,0,118,101,0,0,14,10,0,0,8,186,9,0,128,101,0,0,14,10,0,0,12,186,9,0,144,101,0,0,14,10,0,0,16,186,9,0,160,101,0,0,14,10,0,0,20,186,9,0,175,101,0,0,14,10,0,0,24,186,9,0,189,101,0,0,14,10,0,0,28,186,9,0,205,101,0,0,14,10,0,0,32,186,9,0,216,101, 0,0,14,10,0,0,36,186,9,0,233,101,0,0,14,10,0,0,40,186,9,0,248,101,0,0,14,10,0,0,44,186,9,0,8,102,0,0,14,10,0,0,48,186,9,0,21,102,0,0,14,10,0,0,52,186,9,0,41,102,0,0,14,10,0,0,56,186,9,0,65,102,0,0,14,10,0,0,60,186,9,0,81,102,0,0,14,10,0,0,64,186,9,0, 103,102,0,0,14,10,0,0,68,186,9,0,120,102,0,0,14,10,0,0,72,186,9,0,140,102,0,0,14,10,0,0,76,186,9,0,158,102,0,0,14,10,0,0,80,186,9,0,188,102,0,0,14,10,0,0,88,186,9,0,208,102,0,0,14,10,0,0,96,186,9,0,220,102,0,0,14,10,0,0,100,186,9,0,232,102,0,0,14,10, 0,0,104,186,9,0,252,102,0,0,14,10,0,0,108,186,9,0,16,103,0,0,14,10,0,0,112,186,9,0,39,103,0,0,14,10,0,0,116,186,9,0,55,103,0,0,14,10,0,0,120,186,9,0,68,103,0,0,14,10,0,0,124,186,9,0,82,103,0,0,14,10,0,0,128,186,9,0,101,103,0,0,14,10,0,0,132,186,9,0,122, 103,0,0,14,10,0,0,136,186,9,0,143,103,0,0,14,10,0,0,140,186,9,0,159,103,0,0,14,10,0,0,144,186,9,0,175,103,0,0,14,10,0,0,148,186,9,0,193,103,0,0,14,10,0,0,152,186,9,0,207,103,0,0,14,10,0,0,156,186,9,0,225,103,0,0,14,10,0,0,160,186,9,0,240,103,0,0,14,10, 0,0,164,186,9,0,245,103,0,0,14,10,0,0,168,186,9,0,6,104,0,0,14,10,0,0,172,186,9,0,23,104,0,0,14,10,0,0,176,186,9,0,38,104,0,0,14,10,0,0,180,186,9,0,53,104,0,0,14,10,0,0,184,186,9,0,66,104,0,0,14,10,0,0,188,186,9,0,83,104,0,0,14,10,0,0,192,186,9,0,99, 104,0,0,14,10,0,0,196,186,9,0,119,104,0,0,14,10,0,0,200,186,9,0,145,104,0,0,14,10,0,0,204,186,9,0,165,104,0,0,14,10,0,0,208,186,9,0,184,104,0,0,14,10,0,0,212,186,9,0,210,104,0,0,14,10,0,0,216,186,9,0,230,104,0,0,14,10,0,0,220,186,9,0,249,104,0,0,14,10, 0,0,224,186,9,0,13,105,0,0,14,10,0,0,228,186,9,0,34,105,0,0,14,10,0,0,232,186,9,0,54,105,0,0,14,10,0,0,236,186,9,0,71,105,0,0,14,10,0,0,240,186,9,0,94,105,0,0,14,10,0,0,244,186,9,0,117,105,0,0,14,10,0,0,0,187,9,0,148,105,0,0,14,10,0,0,4,187,9,0,173,105, 0,0,14,10,0,0,8,187,9,0,199,105,0,0,14,10,0,0,12,187,9,0,224,105,0,0,14,10,0,0,16,187,9,0,246,105,0,0,14,10,0,0,20,187,9,0,18,106,0,0,14,10,0,0,24,187,9,0,46,106,0,0,14,10,0,0,36,187,9,0,72,106,0,0,14,10,0,0,40,187,9,0,100,106,0,0,14,10,0,0,44,187,9, 0,115,106,0,0,14,10,0,0,48,187,9,0,128,106,0,0,14,10,0,0,52,187,9,0,149,106,0,0,14,10,0,0,56,187,9,0,163,106,0,0,14,10,0,0,60,187,9,0,177,106,0,0,14,10,0,0,64,187,9,0,188,106,0,0,14,10,0,0,68,187,9,0,199,106,0,0,14,10,0,0,72,187,9,0,211,106,0,0,14,10, 0,0,76,187,9,0,226,106,0,0,14,10,0,0,80,187,9,0,241,106,0,0,14,10,0,0,84,187,9,0,255,106,0,0,14,10,0,0,88,187,9,0,14,107,0,0,14,10,0,0,92,187,9,0,28,107,0,0,14,10,0,0,96,187,9,0,46,107,0,0,14,10,0,0,100,187,9,0,61,107,0,0,14,10,0,0,104,187,9,0,71,107, 0,0,14,10,0,0,128,187,9,0,86,107,0,0,14,10,0,0,160,187,9,0,95,107,0,0,14,10,0,0,160,203,9,0,110,107,0,0,14,10,0,0,164,203,9,0,120,107,0,0,14,10,0,0,168,203,9,0,132,107,0,0,14,10,0,0,172,203,9,0,145,107,0,0,14,10,0,0,176,203,9,0,165,107,0,0,14,10,0,0, 180,203,9,0,183,107,0,0,14,10,0,0,184,203,9,0,202,107,0,0,14,10,0,0,188,203,9,0,218,107,0,0,14,10,0,0,192,203,9,0,231,107,0,0,14,10,0,0,196,203,9,0,247,107,0,0,14,10,0,0,200,203,9,0,3,108,0,0,14,10,0,0,204,203,9,0,26,108,0,0,14,10,0,0,224,203,9,0,43, 108,0,0,14,10,0,0,228,203,9,0,56,108,0,0,14,10,0,0,232,203,9,0,81,108,0,0,14,10,0,0,236,203,9,0,111,108,0,0,14,10,0,0,240,203,9,0,126,108,0,0,14,10,0,0,248,203,9,0,136,108,0,0,14,10,0,0,0,204,9,0,151,108,0,0,14,10,0,0,104,205,9,0,165,108,0,0,14,10,0, 0,112,205,9,0,179,108,0,0,14,10,0,0,116,205,9,0,194,108,0,0,14,10,0,0,120,205,9,0,212,108,0,0,14,10,0,0,124,205,9,0,227,108,0,0,14,10,0,0,128,205,9,0,239,108,0,0,14,10,0,0,32,206,9,0,253,108,0,0,14,10,0,0,36,206,9,0,15,109,0,0,14,10,0,0,40,206,9,0,31, 109,0,0,14,10,0,0,44,206,9,0,49,109,0,0,14,10,0,0,48,206,9,0,68,109,0,0,14,10,0,0,52,206,9,0,84,109,0,0,14,10,0,0,56,206,9,0,101,109,0,0,14,10,0,0,64,206,9,0,126,109,0,0,14,10,0,0,72,206,9,0,154,109,0,0,14,10,0,0,80,206,9,0,168,109,0,0,14,10,0,0,84,206, 9,0,180,109,0,0,14,10,0,0,88,206,9,0,191,109,0,0,14,10,0,0,92,206,9,0,203,109,0,0,14,10,0,0,96,206,9,0,216,109,0,0,14,10,0,0,100,206,9,0,234,109,0,0,14,10,0,0,116,206,9,0,254,109,0,0,14,10,0,0,132,206,9,0,17,110,0,0,14,10,0,0,148,206,9,0,38,110,0,0,14, 10,0,0,164,206,9,0,50,110,0,0,14,10,0,0,168,206,9,0,65,110,0,0,14,10,0,0,172,206,9,0,81,110,0,0,14,10,0,0,176,206,9,0,105,110,0,0,14,10,0,0,180,206,9,0,124,110,0,0,14,10,0,0,184,206,9,0,144,110,0,0,14,10,0,0,188,206,9,0,155,110,0,0,14,10,0,0,196,206, 9,0,169,110,0,0,14,10,0,0,200,206,9,0,185,110,0,0,14,10,0,0,204,206,9,0,198,110,0,0,14,10,0,0,208,206,9,0,210,110,0,0,14,10,0,0,212,206,9,0,221,110,0,0,14,10,0,0,216,206,9,0,234,110,0,0,14,10,0,0,220,206,9,0,244,110,0,0,14,10,0,0,224,206,9,0,8,111,0, 0,14,10,0,0,228,206,9,0,26,111,0,0,14,10,0,0,232,206,9,0,38,111,0,0,14,10,0,0,236,206,9,0,54,111,0,0,14,10,0,0,240,206,9,0,70,111,0,0,14,10,0,0,244,206,9,0,86,111,0,0,14,10,0,0,248,206,9,0,106,111,0,0,14,10,0,0,252,206,9,0,130,111,0,0,14,10,0,0,0,207, 9,0,143,111,0,0,14,10,0,0,4,207,9,0,155,111,0,0,14,10,0,0,8,207,9,0,165,111,0,0,14,10,0,0,12,207,9,0,179,111,0,0,14,10,0,0,16,207,9,0,196,111,0,0,14,10,0,0,20,207,9,0,209,111,0,0,14,10,0,0,24,207,9,0,225,111,0,0,14,10,0,0,28,207,9,0,243,111,0,0,14,10, 0,0,32,207,9,0,6,112,0,0,14,10,0,0,36,207,9,0,22,112,0,0,14,10,0,0,40,207,9,0,33,112,0,0,14,10,0,0,44,207,9,0,53,112,0,0,14,10,0,0,60,207,9,0,74,112,0,0,14,10,0,0,76,207,9,0,88,112,0,0,14,10,0,0,92,207,9,0,103,112,0,0,14,10,0,0,128,207,9,0,116,112,0, 0,14,10,0,0,132,207,9,0,130,112,0,0,14,10,0,0,160,207,9,0,144,112,0,0,14,10,0,0,160,208,9,0,155,112,0,0,14,10,0,0,164,208,9,0,166,112,0,0,14,10,0,0,168,208,9,0,178,112,0,0,14,10,0,0,172,208,9,0,190,112,0,0,14,10,0,0,176,208,9,0,205,112,0,0,14,10,0,0, 180,208,9,0,220,112,0,0,14,10,0,0,184,208,9,0,235,112,0,0,14,10,0,0,188,208,9,0,250,112,0,0,14,10,0,0,192,208,9,0,13,113,0,0,14,10,0,0,196,208,9,0,33,113,0,0,14,10,0,0,200,208,9,0,53,113,0,0,14,10,0,0,204,208,9,0,71,113,0,0,14,10,0,0,208,208,9,0,89,113, 0,0,14,10,0,0,212,208,9,0,107,113,0,0,14,10,0,0,216,208,9,0,125,113,0,0,14,10,0,0,220,208,9,0,142,113,0,0,14,10,0,0,224,208,9,0,159,113,0,0,14,10,0,0,228,208,9,0,176,113,0,0,14,10,0,0,232,208,9,0,193,113,0,0,14,10,0,0,236,208,9,0,210,113,0,0,14,10,0, 0,240,208,9,0,227,113,0,0,14,10,0,0,244,208,9,0,244,113,0,0,14,10,0,0,248,208,9,0,5,114,0,0,14,10,0,0,252,208,9,0,22,114,0,0,14,10,0,0,0,209,9,0,39,114,0,0,14,10,0,0,4,209,9,0,56,114,0,0,14,10,0,0,8,209,9,0,73,114,0,0,14,10,0,0,12,209,9,0,90,114,0,0, 14,10,0,0,16,209,9,0,108,114,0,0,14,10,0,0,20,209,9,0,126,114,0,0,14,10,0,0,24,209,9,0,137,114,0,0,14,10,0,0,28,209,9,0,148,114,0,0,14,10,0,0,32,209,9,0,159,114,0,0,14,10,0,0,36,209,9,0,171,114,0,0,14,10,0,0,40,209,9,0,184,114,0,0,14,10,0,0,44,209,9, 0,196,114,0,0,14,10,0,0,48,209,9,0,207,114,0,0,14,10,0,0,52,209,9,0,218,114,0,0,14,10,0,0,56,209,9,0,229,114,0,0,14,10,0,0,60,209,9,0,241,114,0,0,14,10,0,0,64,209,9,0,253,114,0,0,14,10,0,0,68,209,9,0,10,115,0,0,14,10,0,0,72,209,9,0,25,115,0,0,14,10,0, 0,76,209,9,0,41,115,0,0,14,10,0,0,80,209,9,0,53,115,0,0,14,10,0,0,84,209,9,0,65,115,0,0,14,10,0,0,88,209,9,0,80,115,0,0,14,10,0,0,92,209,9,0,92,115,0,0,14,10,0,0,96,209,9,0,104,115,0,0,14,10,0,0,100,209,9,0,117,115,0,0,14,10,0,0,104,209,9,0,129,115,0, 0,14,10,0,0,108,209,9,0,143,115,0,0,14,10,0,0,112,209,9,0,158,115,0,0,14,10,0,0,116,209,9,0,172,115,0,0,14,10,0,0,120,209,9,0,185,115,0,0,14,10,0,0,124,209,9,0,198,115,0,0,14,10,0,0,128,209,9,0,218,115,0,0,14,10,0,0,132,209,9,0,230,115,0,0,14,10,0,0, 136,209,9,0,244,115,0,0,14,10,0,0,140,209,9,0,1,116,0,0,14,10,0,0,144,209,9,0,16,116,0,0,14,10,0,0,148,209,9,0,31,116,0,0,14,10,0,0,152,209,9,0,45,116,0,0,14,10,0,0,156,209,9,0,61,116,0,0,14,10,0,0,160,209,9,0,78,116,0,0,14,10,0,0,164,209,9,0,95,116, 0,0,14,10,0,0,168,209,9,0,104,116,0,0,14,10,0,0,172,209,9,0,115,116,0,0,14,10,0,0,176,209,9,0,128,116,0,0,14,10,0,0,180,209,9,0,139,116,0,0,14,10,0,0,184,209,9,0,152,116,0,0,14,10,0,0,188,209,9,0,167,116,0,0,14,10,0,0,192,209,9,0,180,116,0,0,14,10,0, 0,196,209,9,0,192,116,0,0,14,10,0,0,200,209,9,0,203,116,0,0,14,10,0,0,204,209,9,0,215,116,0,0,14,10,0,0,208,209,9,0,228,116,0,0,14,10,0,0,212,209,9,0,242,116,0,0,14,10,0,0,216,209,9,0,1,117,0,0,14,10,0,0,220,209,9,0,13,117,0,0,14,10,0,0,224,209,9,0,27, 117,0,0,14,10,0,0,228,209,9,0,38,117,0,0,14,10,0,0,232,209,9,0,51,117,0,0,14,10,0,0,236,209,9,0,62,117,0,0,14,10,0,0,240,209,9,0,75,117,0,0,14,10,0,0,244,209,9,0,87,117,0,0,14,10,0,0,248,209,9,0,101,117,0,0,14,10,0,0,252,209,9,0,114,117,0,0,14,10,0,0, 0,210,9,0,129,117,0,0,14,10,0,0,4,210,9,0,146,117,0,0,14,10,0,0,8,210,9,0,165,117,0,0,14,10,0,0,12,210,9,0,180,117,0,0,14,10,0,0,16,210,9,0,197,117,0,0,14,10,0,0,20,210,9,0,217,117,0,0,14,10,0,0,24,210,9,0,239,117,0,0,14,10,0,0,28,210,9,0,254,117,0,0, 14,10,0,0,32,210,9,0,13,118,0,0,14,10,0,0,36,210,9,0,27,118,0,0,14,10,0,0,40,210,9,0,41,118,0,0,14,10,0,0,44,210,9,0,56,118,0,0,14,10,0,0,48,210,9,0,72,118,0,0,14,10,0,0,52,210,9,0,92,118,0,0,14,10,0,0,56,210,9,0,108,118,0,0,14,10,0,0,60,210,9,0,125, 118,0,0,14,10,0,0,64,210,9,0,137,118,0,0,14,10,0,0,68,210,9,0,148,118,0,0,14,10,0,0,72,210,9,0,162,118,0,0,14,10,0,0,76,210,9,0,178,118,0,0,14,10,0,0,80,210,9,0,196,118,0,0,14,10,0,0,84,210,9,0,210,118,0,0,14,10,0,0,88,210,9,0,225,118,0,0,14,10,0,0,92, 210,9,0,241,118,0,0,14,10,0,0,96,210,9,0,2,119,0,0,14,10,0,0,104,210,9,0,21,119,0,0,14,10,0,0,112,210,9,0,36,119,0,0,14,10,0,0,116,210,9,0,54,119,0,0,14,10,0,0,120,210,9,0,67,119,0,0,14,10,0,0,124,210,9,0,83,119,0,0,14,10,0,0,128,210,9,0,96,119,0,0,14, 10,0,0,132,210,9,0,109,119,0,0,14,10,0,0,136,210,9,0,121,119,0,0,14,10,0,0,140,210,9,0,134,119,0,0,14,10,0,0,144,210,9,0,146,119,0,0,14,10,0,0,148,210,9,0,162,119,0,0,14,10,0,0,160,210,9,0,180,119,0,0,14,10,0,0,192,210,9,0,186,119,0,0,14,10,0,0,192,211, 9,0,192,119,0,0,14,10,0,0,196,211,9,0,198,119,0,0,15,1,0,0,112,65,1,0,217,119,0,0,15,11,0,0,0,222,9,0,230,119,0,0,15,1,0,0,104,60,2,0,245,119,0,0,15,1,0,0,210,30,2,0,1,120,0,0,15,1,0,0,118,52,2,0,22,120,0,0,15,1,0,0,253,241,4,0,39,120,0,0,15,1,0,0,145, 28,2,0,50,120,0,0,15,1,0,0,62,52,2,0,64,120,0,0,15,1,0,0,66,29,2,0,78,120,0,0,15,1,0,0,47,73,6,0,91,120,0,0,15,1,0,0,124,72,6,0,106,120,0,0,15,1,0,0,241,73,6,0,124,120,0,0,15,1,0,0,181,72,6,0,137,120,0,0,15,1,0,0,76,74,6,0,153,120,0,0,15,1,0,0,208,72, 6,0,169,120,0,0,15,1,0,0,117,74,6,0,188,120,0,0,15,1,0,0,196,74,6,0,201,120,0,0,15,1,0,0,183,12,8,0,213,120,0,0,15,1,0,0,177,92,6,0,225,120,0,0,15,1,0,0,202,94,6,0,243,120,0,0,15,1,0,0,164,97,6,0,3,121,0,0,15,1,0,0,98,93,6,0,16,121,0,0,15,1,0,0,180,81, 6,0,30,121,0,0,15,1,0,0,228,80,6,0,48,121,0,0,15,1,0,0,164,104,6,0,61,121,0,0,15,1,0,0,135,182,6,0,78,121,0,0,15,1,0,0,214,100,6,0,100,121,0,0,15,1,0,0,171,80,6,0,113,121,0,0,15,1,0,0,187,100,6,0,130,121,0,0,15,1,0,0,8,90,6,0,146,121,0,0,15,1,0,0,200, 100,6,0,161,121,0,0,15,1,0,0,42,181,6,0,175,121,0,0,15,1,0,0,116,80,6,0,187,121,0,0,15,1,0,0,14,100,6,0,201,121,0,0,15,1,0,0,12,111,6,0,214,121,0,0,15,1,0,0,107,114,6,0,238,121,0,0,15,1,0,0,146,115,6,0,4,122,0,0,15,1,0,0,13,102,6,0,27,122,0,0,15,1,0, 0,212,97,6,0,43,122,0,0,15,1,0,0,243,81,6,0,56,122,0,0,15,1,0,0,185,116,6,0,70,122,0,0,15,1,0,0,116,220,1,0,89,122,0,0,15,1,0,0,85,114,2,0,107,122,0,0,15,1,0,0,122,111,2,0,117,122,0,0,15,1,0,0,141,107,2,0,134,122,0,0,15,1,0,0,174,106,2,0,150,122,0,0, 15,1,0,0,207,108,2,0,163,122,0,0,15,1,0,0,151,104,2,0,178,122,0,0,15,1,0,0,2,102,2,0,192,122,0,0,15,1,0,0,104,110,2,0,209,122,0,0,15,1,0,0,140,101,2,0,226,122,0,0,15,11,0,0,56,212,9,0,246,122,0,0,15,1,0,0,156,198,7,0,251,122,0,0,15,1,0,0,170,195,0,0, 14,123,0,0,15,1,0,0,205,96,3,0,31,123,0,0,15,1,0,0,51,100,3,0,49,123,0,0,15,1,0,0,140,68,5,0,62,123,0,0,15,1,0,0,52,40,5,0,74,123,0,0,15,11,0,0,84,212,9,0,88,123,0,0,15,1,0,0,70,65,3,0,104,123,0,0,15,1,0,0,39,244,2,0,126,123,0,0,15,1,0,0,123,106,4,0, 149,123,0,0,15,1,0,0,156,173,2,0,172,123,0,0,15,1,0,0,60,174,2,0,197,123,0,0,15,1,0,0,146,244,2,0,220,123,0,0,15,1,0,0,73,165,2,0,234,123,0,0,15,1,0,0,225,224,2,0,253,123,0,0,15,1,0,0,63,108,4,0,19,124,0,0,15,1,0,0,160,6,3,0,35,124,0,0,15,1,0,0,146,18, 3,0,53,124,0,0,15,1,0,0,37,166,2,0,73,124,0,0,15,11,0,0,88,212,9,0,90,124,0,0,15,11,0,0,92,212,9,0,106,124,0,0,15,1,0,0,76,75,3,0,123,124,0,0,15,1,0,0,92,180,2,0,141,124,0,0,15,1,0,0,86,50,3,0,159,124,0,0,15,1,0,0,249,172,2,0,179,124,0,0,15,1,0,0,148, 73,5,0,197,124,0,0,15,1,0,0,169,170,2,0,210,124,0,0,15,1,0,0,121,140,2,0,226,124,0,0,15,1,0,0,91,189,2,0,243,124,0,0,15,1,0,0,120,139,2,0,6,125,0,0,15,1,0,0,39,141,2,0,28,125,0,0,15,1,0,0,68,141,2,0,43,125,0,0,15,1,0,0,43,140,2,0,65,125,0,0,15,1,0,0, 207,139,2,0,80,125,0,0,15,1,0,0,108,144,2,0,97,125,0,0,15,1,0,0,7,186,2,0,116,125,0,0,15,1,0,0,244,40,5,0,130,125,0,0,15,1,0,0,244,239,2,0,145,125,0,0,15,1,0,0,84,41,5,0,160,125,0,0,15,1,0,0,196,40,5,0,176,125,0,0,15,1,0,0,98,39,5,0,192,125,0,0,15,1, 0,0,114,184,2,0,214,125,0,0,15,1,0,0,44,18,3,0,234,125,0,0,15,1,0,0,139,184,2,0,250,125,0,0,15,1,0,0,35,29,3,0,6,126,0,0,15,11,0,0,96,212,9,0,19,126,0,0,15,1,0,0,196,177,2,0,36,126,0,0,15,1,0,0,250,176,2,0,63,126,0,0,15,1,0,0,11,179,2,0,80,126,0,0,15, 1,0,0,241,162,2,0,100,126,0,0,15,1,0,0,95,141,2,0,121,126,0,0,15,1,0,0,54,167,2,0,133,126,0,0,15,1,0,0,245,39,2,0,151,126,0,0,15,1,0,0,125,43,3,0,169,126,0,0,15,1,0,0,45,38,3,0,184,126,0,0,15,1,0,0,216,17,3,0,198,126,0,0,15,1,0,0,160,25,3,0,214,126,0, 0,15,1,0,0,128,48,5,0,226,126,0,0,15,1,0,0,228,41,5,0,240,126,0,0,15,1,0,0,98,149,2,0,252,126,0,0,15,1,0,0,208,222,2,0,11,127,0,0,15,1,0,0,20,42,5,0,26,127,0,0,15,1,0,0,179,37,5,0,38,127,0,0,15,1,0,0,68,42,5,0,53,127,0,0,15,1,0,0,20,197,2,0,66,127,0, 0,15,1,0,0,184,178,2,0,89,127,0,0,15,1,0,0,219,41,3,0,103,127,0,0,15,1,0,0,162,251,2,0,122,127,0,0,15,1,0,0,167,140,2,0,144,127,0,0,15,1,0,0,200,168,2,0,159,127,0,0,15,1,0,0,168,190,2,0,188,127,0,0,15,1,0,0,238,190,2,0,223,127,0,0,15,1,0,0,134,163,2, 0,244,127,0,0,15,1,0,0,247,238,2,0,3,128,0,0,15,1,0,0,136,143,2,0,18,128,0,0,15,1,0,0,122,98,3,0,39,128,0,0,15,1,0,0,209,101,3,0,61,128,0,0,15,1,0,0,97,175,2,0,77,128,0,0,15,1,0,0,250,52,3,0,104,128,0,0,15,1,0,0,130,188,2,0,123,128,0,0,15,1,0,0,146,97, 3,0,139,128,0,0,15,1,0,0,233,100,3,0,156,128,0,0,15,1,0,0,42,192,2,0,183,128,0,0,15,1,0,0,218,23,3,0,204,128,0,0,15,1,0,0,232,138,2,0,220,128,0,0,15,1,0,0,169,139,2,0,239,128,0,0,15,1,0,0,118,239,2,0,1,129,0,0,15,1,0,0,75,88,3,0,21,129,0,0,15,1,0,0,40, 249,2,0,38,129,0,0,15,1,0,0,211,221,2,0,54,129,0,0,15,1,0,0,53,185,2,0,71,129,0,0,15,1,0,0,108,41,3,0,91,129,0,0,15,1,0,0,174,50,3,0,115,129,0,0,15,1,0,0,84,188,2,0,135,129,0,0,15,1,0,0,196,73,5,0,154,129,0,0,15,1,0,0,100,40,5,0,169,129,0,0,15,1,0,0, 188,139,2,0,190,129,0,0,15,1,0,0,149,188,2,0,209,129,0,0,15,1,0,0,30,138,2,0,234,129,0,0,15,1,0,0,36,41,5,0,248,129,0,0,15,1,0,0,31,245,2,0,4,130,0,0,15,1,0,0,132,41,5,0,19,130,0,0,15,1,0,0,148,40,5,0,35,130,0,0,15,1,0,0,180,41,5,0,51,130,0,0,15,11,0, 0,100,212,9,0,69,130,0,0,15,1,0,0,193,108,4,0,89,130,0,0,15,1,0,0,207,193,0,0,95,130,0,0,15,1,0,0,146,61,8,0,109,130,0,0,15,1,0,0,143,196,6,0,128,130,0,0,15,1,0,0,58,196,6,0,143,130,0,0,15,1,0,0,203,191,6,0,161,130,0,0,15,1,0,0,126,196,6,0,176,130,0, 0,15,1,0,0,170,192,6,0,193,130,0,0,15,1,0,0,75,196,6,0,211,130,0,0,15,1,0,0,109,196,6,0,228,130,0,0,15,1,0,0,92,196,6,0,246,130,0,0,15,1,0,0,123,197,6,0,12,131,0,0,15,1,0,0,244,197,6,0,30,131,0,0,15,1,0,0,209,196,6,0,49,131,0,0,15,1,0,0,194,196,6,0,64, 131,0,0,15,1,0,0,85,198,6,0,87,131,0,0,15,1,0,0,54,198,6,0,104,131,0,0,15,1,0,0,17,197,6,0,125,131,0,0,15,1,0,0,163,188,6,0,136,131,0,0,15,1,0,0,219,197,6,0,158,131,0,0,15,1,0,0,2,197,6,0,180,131,0,0,15,1,0,0,225,196,6,0,201,131,0,0,15,1,0,0,177,196, 6,0,224,131,0,0,15,1,0,0,68,198,6,0,247,131,0,0,15,1,0,0,37,198,6,0,8,132,0,0,15,1,0,0,160,196,6,0,25,132,0,0,15,1,0,0,225,7,7,0,38,132,0,0,15,1,0,0,10,9,7,0,50,132,0,0,15,1,0,0,52,8,7,0,72,132,0,0,15,1,0,0,86,8,7,0,90,132,0,0,15,1,0,0,197,8,7,0,113, 132,0,0,15,1,0,0,120,8,7,0,133,132,0,0,15,1,0,0,7,6,7,0,144,132,0,0,15,1,0,0,225,6,7,0,155,132,0,0,15,11,0,0,120,213,9,0,170,132,0,0,15,1,0,0,89,6,7,0,183,132,0,0,15,1,0,0,83,219,0,0,196,132,0,0,15,1,0,0,185,215,6,0,207,132,0,0,15,1,0,0,221,143,0,0,219, 132,0,0,15,1,0,0,145,143,0,0,233,132,0,0,15,1,0,0,171,225,6,0,244,132,0,0,15,11,0,0,44,212,9,0,255,132,0,0,15,1,0,0,67,224,0,0,15,133,0,0,15,1,0,0,197,224,0,0,35,133,0,0,15,11,0,0,228,212,9,0,48,133,0,0,15,1,0,0,235,217,4,0,61,133,0,0,15,9,0,0,244,149, 9,0,83,133,0,0,15,1,0,0,89,66,0,0,103,133,0,0,15,1,0,0,114,105,0,0,118,133,0,0,15,1,0,0,117,139,0,0,131,133,0,0,15,1,0,0,255,146,0,0,144,133,0,0,15,1,0,0,34,160,0,0,159,133,0,0,15,1,0,0,188,176,0,0,172,133,0,0,15,1,0,0,214,17,1,0,188,133,0,0,15,1,0,0, 165,33,1,0,204,133,0,0,15,1,0,0,3,67,1,0,218,133,0,0,15,1,0,0,67,72,1,0,232,133,0,0,15,1,0,0,138,92,1,0,245,133,0,0,15,1,0,0,91,214,1,0,8,134,0,0,15,1,0,0,210,252,1,0,22,134,0,0,15,1,0,0,165,210,7,0,31,134,0,0,15,11,0,0,16,212,9,0,52,134,0,0,15,1,0,0, 188,55,1,0,73,134,0,0,15,1,0,0,51,211,7,0,82,134,0,0,15,11,0,0,20,212,9,0,103,134,0,0,15,1,0,0,70,51,1,0,124,134,0,0,15,1,0,0,99,198,6,0,134,134,0,0,15,1,0,0,171,92,1,0,158,134,0,0,15,11,0,0,232,212,9,0,176,134,0,0,15,1,0,0,169,15,5,0,194,134,0,0,15, 9,0,0,36,150,9,0,221,134,0,0,15,1,0,0,240,221,1,0,230,134,0,0,15,1,0,0,209,144,0,0,244,134,0,0,15,1,0,0,102,16,0,0,2,135,0,0,15,1,0,0,138,106,0,0,22,135,0,0,15,1,0,0,118,215,1,0,36,135,0,0,15,1,0,0,212,222,1,0,46,135,0,0,15,1,0,0,175,223,1,0,56,135,0, 0,15,1,0,0,180,56,7,0,75,135,0,0,15,1,0,0,206,56,7,0,90,135,0,0,15,1,0,0,73,57,7,0,106,135,0,0,15,1,0,0,167,56,7,0,124,135,0,0,15,1,0,0,193,56,7,0,141,135,0,0,15,1,0,0,203,195,7,0,150,135,0,0,15,11,0,0,224,211,9,0,167,135,0,0,15,1,0,0,182,133,0,0,184, 135,0,0,15,1,0,0,59,196,7,0,191,135,0,0,15,1,0,0,66,61,1,0,210,135,0,0,15,1,0,0,85,195,0,0,221,135,0,0,15,1,0,0,19,213,4,0,245,135,0,0,15,1,0,0,180,210,4,0,11,136,0,0,15,1,0,0,252,211,4,0,31,136,0,0,15,1,0,0,186,214,4,0,51,136,0,0,15,1,0,0,233,234,6, 0,67,136,0,0,15,1,0,0,49,227,6,0,78,136,0,0,15,1,0,0,200,208,7,0,84,136,0,0,15,11,0,0,24,212,9,0,102,136,0,0,15,1,0,0,26,49,1,0,120,136,0,0,15,1,0,0,23,96,2,0,135,136,0,0,15,1,0,0,171,132,2,0,149,136,0,0,15,1,0,0,82,200,2,0,165,136,0,0,15,1,0,0,215,79, 3,0,181,136,0,0,15,1,0,0,1,142,3,0,196,136,0,0,15,1,0,0,19,146,3,0,216,136,0,0,15,1,0,0,215,188,3,0,232,136,0,0,15,1,0,0,62,242,3,0,249,136,0,0,15,1,0,0,152,12,4,0,5,137,0,0,15,1,0,0,32,35,4,0,23,137,0,0,15,1,0,0,221,89,4,0,39,137,0,0,15,1,0,0,193,130, 4,0,58,137,0,0,15,1,0,0,65,179,4,0,74,137,0,0,15,1,0,0,40,32,5,0,92,137,0,0,15,1,0,0,164,98,5,0,106,137,0,0,15,1,0,0,96,136,5,0,122,137,0,0,15,1,0,0,22,179,5,0,141,137,0,0,15,1,0,0,40,221,5,0,157,137,0,0,15,1,0,0,51,16,6,0,174,137,0,0,15,1,0,0,69,68, 6,0,191,137,0,0,15,1,0,0,191,94,2,0,211,137,0,0,15,1,0,0,199,43,2,0,231,137,0,0,15,1,0,0,90,51,2,0,3,138,0,0,15,1,0,0,113,48,2,0,34,138,0,0,15,1,0,0,192,46,2,0,60,138,0,0,15,11,0,0,52,212,9,0,74,138,0,0,15,1,0,0,23,34,2,0,91,138,0,0,15,1,0,0,23,80,2, 0,113,138,0,0,15,1,0,0,102,79,2,0,135,138,0,0,15,1,0,0,153,35,2,0,151,138,0,0,15,1,0,0,108,31,2,0,164,138,0,0,15,1,0,0,47,79,2,0,180,138,0,0,15,1,0,0,157,40,2,0,199,138,0,0,15,1,0,0,102,78,2,0,214,138,0,0,15,1,0,0,167,95,2,0,229,138,0,0,15,1,0,0,224, 94,2,0,249,138,0,0,15,1,0,0,56,80,2,0,11,139,0,0,15,1,0,0,209,78,2,0,28,139,0,0,15,1,0,0,253,77,2,0,46,139,0,0,15,1,0,0,74,79,2,0,58,139,0,0,15,9,0,0,124,149,9,0,81,139,0,0,15,1,0,0,191,199,6,0,89,139,0,0,15,1,0,0,170,125,7,0,104,139,0,0,15,1,0,0,84, 125,7,0,126,139,0,0,15,1,0,0,214,125,7,0,148,139,0,0,15,1,0,0,126,125,7,0,172,139,0,0,15,1,0,0,192,125,7,0,192,139,0,0,15,1,0,0,60,125,7,0,209,139,0,0,15,1,0,0,36,125,7,0,227,139,0,0,15,1,0,0,148,125,7,0,241,139,0,0,15,1,0,0,104,125,7,0,12,140,0,0,15, 1,0,0,75,225,6,0,22,140,0,0,15,1,0,0,227,214,6,0,29,140,0,0,15,1,0,0,152,225,6,0,40,140,0,0,15,1,0,0,7,69,8,0,62,140,0,0,15,1,0,0,41,66,8,0,75,140,0,0,15,1,0,0,251,86,3,0,86,140,0,0,15,1,0,0,43,156,2,0,102,140,0,0,15,9,0,0,108,160,9,0,133,140,0,0,15, 1,0,0,77,42,2,0,152,140,0,0,15,1,0,0,77,96,3,0,167,140,0,0,15,1,0,0,163,91,3,0,180,140,0,0,15,1,0,0,144,88,3,0,194,140,0,0,15,1,0,0,98,217,2,0,210,140,0,0,15,1,0,0,158,215,2,0,230,140,0,0,15,1,0,0,60,112,3,0,246,140,0,0,15,1,0,0,154,112,3,0,6,141,0,0, 15,1,0,0,49,86,5,0,23,141,0,0,15,1,0,0,93,95,5,0,41,141,0,0,15,1,0,0,164,141,3,0,58,141,0,0,15,1,0,0,157,149,4,0,75,141,0,0,15,1,0,0,167,96,3,0,87,141,0,0,15,1,0,0,44,93,3,0,104,141,0,0,15,1,0,0,97,170,2,0,119,141,0,0,15,1,0,0,8,221,2,0,135,141,0,0,15, 1,0,0,94,79,3,0,152,141,0,0,15,1,0,0,197,159,2,0,165,141,0,0,15,1,0,0,156,92,3,0,177,141,0,0,15,1,0,0,109,148,2,0,189,141,0,0,15,1,0,0,28,161,2,0,204,141,0,0,15,1,0,0,245,215,2,0,222,141,0,0,15,1,0,0,36,170,2,0,240,141,0,0,15,1,0,0,225,169,2,0,1,142, 0,0,15,1,0,0,24,169,2,0,18,142,0,0,15,1,0,0,82,106,4,0,35,142,0,0,15,1,0,0,208,219,2,0,51,142,0,0,15,1,0,0,48,106,3,0,68,142,0,0,15,1,0,0,178,107,3,0,85,142,0,0,15,1,0,0,41,106,4,0,97,142,0,0,15,1,0,0,58,101,4,0,119,142,0,0,15,1,0,0,33,99,4,0,137,142, 0,0,15,1,0,0,2,115,3,0,151,142,0,0,15,1,0,0,67,92,3,0,165,142,0,0,15,1,0,0,253,163,4,0,179,142,0,0,15,1,0,0,71,216,2,0,193,142,0,0,15,1,0,0,50,220,2,0,210,142,0,0,15,1,0,0,63,221,2,0,232,142,0,0,15,1,0,0,237,214,2,0,250,142,0,0,15,1,0,0,174,95,3,0,6, 143,0,0,15,1,0,0,73,32,5,0,18,143,0,0,15,9,0,0,100,160,9,0,31,143,0,0,15,1,0,0,155,113,4,0,52,143,0,0,15,1,0,0,52,109,3,0,69,143,0,0,15,1,0,0,184,110,3,0,86,143,0,0,15,1,0,0,77,50,7,0,105,143,0,0,15,1,0,0,180,43,7,0,128,143,0,0,15,1,0,0,238,53,7,0,147, 143,0,0,15,1,0,0,78,12,7,0,165,143,0,0,15,1,0,0,187,188,2,0,175,143,0,0,15,1,0,0,250,183,6,0,190,143,0,0,15,1,0,0,55,198,7,0,206,143,0,0,15,1,0,0,95,56,7,0,216,143,0,0,15,1,0,0,179,217,6,0,227,143,0,0,15,1,0,0,153,127,7,0,245,143,0,0,15,1,0,0,18,75,3, 0,255,143,0,0,15,1,0,0,86,16,7,0,12,144,0,0,15,1,0,0,59,233,8,0,30,144,0,0,15,1,0,0,51,233,8,0,52,144,0,0,15,1,0,0,43,233,8,0,70,144,0,0,15,1,0,0,246,185,7,0,88,144,0,0,15,11,0,0,112,213,9,0,103,144,0,0,15,1,0,0,236,98,7,0,114,144,0,0,15,1,0,0,70,114, 7,0,125,144,0,0,15,1,0,0,144,70,7,0,147,144,0,0,15,1,0,0,84,139,2,0,165,144,0,0,15,1,0,0,70,185,7,0,189,144,0,0,15,1,0,0,98,187,7,0,216,144,0,0,15,1,0,0,22,188,7,0,237,144,0,0,15,1,0,0,186,42,3,0,254,144,0,0,15,1,0,0,122,211,2,0,13,145,0,0,15,1,0,0,119, 214,2,0,25,145,0,0,15,1,0,0,190,211,2,0,38,145,0,0,15,1,0,0,235,210,2,0,53,145,0,0,15,1,0,0,148,210,2,0,67,145,0,0,15,1,0,0,247,253,6,0,78,145,0,0,15,1,0,0,54,211,2,0,91,145,0,0,15,1,0,0,251,211,2,0,107,145,0,0,15,1,0,0,29,214,2,0,117,145,0,0,15,1,0, 0,223,142,5,0,133,145,0,0,15,1,0,0,209,143,5,0,148,145,0,0,15,1,0,0,251,144,5,0,163,145,0,0,15,1,0,0,164,144,5,0,182,145,0,0,15,1,0,0,77,144,5,0,201,145,0,0,15,1,0,0,33,144,5,0,217,145,0,0,15,1,0,0,199,36,2,0,230,145,0,0,15,9,0,0,188,149,9,0,252,145, 0,0,15,1,0,0,141,142,5,0,10,146,0,0,15,1,0,0,217,141,5,0,21,146,0,0,15,1,0,0,1,202,4,0,36,146,0,0,15,1,0,0,116,144,3,0,52,146,0,0,15,1,0,0,19,145,3,0,73,146,0,0,15,1,0,0,134,158,3,0,86,146,0,0,15,1,0,0,58,154,3,0,106,146,0,0,15,1,0,0,45,153,3,0,125,146, 0,0,15,1,0,0,225,155,3,0,141,146,0,0,15,1,0,0,215,150,3,0,159,146,0,0,15,1,0,0,148,147,3,0,176,146,0,0,15,1,0,0,122,157,3,0,196,146,0,0,15,1,0,0,194,146,3,0,216,146,0,0,15,11,0,0,104,212,9,0,239,146,0,0,15,1,0,0,232,214,3,0,5,147,0,0,15,1,0,0,216,213, 3,0,26,147,0,0,15,1,0,0,98,210,3,0,40,147,0,0,15,11,0,0,132,212,9,0,64,147,0,0,15,1,0,0,210,27,2,0,81,147,0,0,15,1,0,0,249,26,2,0,98,147,0,0,15,1,0,0,226,25,2,0,116,147,0,0,15,1,0,0,203,26,2,0,134,147,0,0,15,1,0,0,196,3,2,0,155,147,0,0,15,1,0,0,148,4, 2,0,179,147,0,0,15,1,0,0,138,6,2,0,204,147,0,0,15,1,0,0,118,1,2,0,230,147,0,0,15,1,0,0,219,6,2,0,255,147,0,0,15,1,0,0,234,2,2,0,25,148,0,0,15,1,0,0,252,252,1,0,43,148,0,0,15,1,0,0,228,252,1,0,61,148,0,0,15,1,0,0,37,15,2,0,75,148,0,0,15,9,0,0,160,154, 9,0,93,148,0,0,15,1,0,0,63,6,2,0,116,148,0,0,15,1,0,0,218,16,2,0,131,148,0,0,15,1,0,0,222,13,2,0,145,148,0,0,15,1,0,0,0,18,2,0,160,148,0,0,15,1,0,0,27,16,2,0,177,148,0,0,15,1,0,0,55,253,1,0,198,148,0,0,15,1,0,0,188,3,2,0,226,148,0,0,15,1,0,0,201,9,2, 0,240,148,0,0,15,1,0,0,146,11,2,0,3,149,0,0,15,1,0,0,180,10,2,0,21,149,0,0,15,1,0,0,20,253,1,0,42,149,0,0,15,1,0,0,116,255,1,0,64,149,0,0,15,1,0,0,98,0,2,0,85,149,0,0,15,1,0,0,144,14,2,0,97,149,0,0,15,1,0,0,171,17,2,0,116,149,0,0,15,1,0,0,25,254,1,0, 137,149,0,0,15,1,0,0,39,8,2,0,153,149,0,0,15,1,0,0,79,17,2,0,166,149,0,0,15,1,0,0,136,16,2,0,181,149,0,0,15,1,0,0,44,7,2,0,194,149,0,0,15,1,0,0,143,13,2,0,207,149,0,0,15,1,0,0,251,254,1,0,233,149,0,0,15,1,0,0,244,16,2,0,245,149,0,0,15,9,0,0,192,158,9, 0,4,150,0,0,15,9,0,0,32,155,9,0,20,150,0,0,15,9,0,0,192,148,9,0,41,150,0,0,15,1,0,0,6,224,1,0,48,150,0,0,15,1,0,0,137,233,6,0,60,150,0,0,15,1,0,0,31,252,6,0,82,150,0,0,15,1,0,0,81,227,6,0,93,150,0,0,15,1,0,0,114,128,8,0,112,150,0,0,15,1,0,0,108,112,8, 0,125,150,0,0,15,1,0,0,24,134,8,0,137,150,0,0,15,1,0,0,0,120,8,0,159,150,0,0,15,1,0,0,9,116,8,0,174,150,0,0,15,1,0,0,173,125,8,0,192,150,0,0,15,1,0,0,157,131,8,0,215,150,0,0,15,1,0,0,229,122,8,0,237,150,0,0,15,1,0,0,26,137,8,0,0,151,0,0,15,1,0,0,232, 112,8,0,14,151,0,0,15,1,0,0,228,244,8,0,31,151,0,0,15,1,0,0,52,245,8,0,49,151,0,0,15,1,0,0,102,237,8,0,75,151,0,0,15,1,0,0,36,249,8,0,93,151,0,0,15,9,0,0,176,163,9,0,115,151,0,0,15,1,0,0,36,247,8,0,127,151,0,0,15,9,0,0,140,163,9,0,143,151,0,0,15,1,0, 0,108,246,8,0,155,151,0,0,15,1,0,0,94,247,8,0,172,151,0,0,15,1,0,0,51,237,8,0,197,151,0,0,15,1,0,0,32,251,8,0,214,151,0,0,15,1,0,0,249,247,8,0,235,151,0,0,15,9,0,0,164,163,9,0,4,152,0,0,15,1,0,0,107,247,8,0,18,152,0,0,15,1,0,0,151,245,8,0,37,152,0,0, 15,1,0,0,254,245,8,0,59,152,0,0,15,1,0,0,227,246,8,0,72,152,0,0,15,9,0,0,144,163,9,0,89,152,0,0,15,1,0,0,51,251,8,0,110,152,0,0,15,1,0,0,30,236,8,0,122,152,0,0,15,1,0,0,166,237,8,0,140,152,0,0,15,9,0,0,152,163,9,0,156,152,0,0,15,9,0,0,156,163,9,0,175, 152,0,0,15,1,0,0,238,249,8,0,191,152,0,0,15,9,0,0,184,163,9,0,211,152,0,0,15,1,0,0,134,247,8,0,225,152,0,0,15,9,0,0,160,163,9,0,243,152,0,0,15,1,0,0,231,250,8,0,3,153,0,0,15,1,0,0,195,248,8,0,20,153,0,0,15,9,0,0,172,163,9,0,41,153,0,0,15,1,0,0,123,249, 8,0,63,153,0,0,15,9,0,0,180,163,9,0,89,153,0,0,15,9,0,0,136,163,9,0,106,153,0,0,15,1,0,0,40,243,8,0,128,153,0,0,15,1,0,0,169,241,8,0,149,153,0,0,15,1,0,0,74,238,8,0,168,153,0,0,15,1,0,0,253,239,8,0,189,153,0,0,15,1,0,0,108,248,8,0,210,153,0,0,15,9,0, 0,168,163,9,0,235,153,0,0,15,1,0,0,183,244,8,0,0,154,0,0,15,1,0,0,154,246,8,0,14,154,0,0,15,9,0,0,148,163,9,0,32,154,0,0,15,1,0,0,66,250,8,0,45,154,0,0,15,1,0,0,147,250,8,0,64,154,0,0,15,1,0,0,135,246,8,0,78,154,0,0,15,1,0,0,183,234,8,0,96,154,0,0,15, 1,0,0,251,234,8,0,116,154,0,0,15,1,0,0,221,144,2,0,136,154,0,0,15,1,0,0,79,148,2,0,162,154,0,0,15,1,0,0,163,144,2,0,183,154,0,0,15,11,0,0,4,222,9,0,202,154,0,0,15,11,0,0,8,222,9,0,221,154,0,0,15,11,0,0,12,222,9,0,241,154,0,0,15,11,0,0,16,222,9,0,3,155, 0,0,15,11,0,0,20,222,9,0,20,155,0,0,15,1,0,0,130,202,0,0,36,155,0,0,15,1,0,0,28,63,1,0,55,155,0,0,15,1,0,0,216,23,7,0,68,155,0,0,15,1,0,0,117,23,7,0,80,155,0,0,15,1,0,0,127,255,6,0,92,155,0,0,15,1,0,0,251,216,6,0,105,155,0,0,15,1,0,0,220,46,0,0,116,155, 0,0,15,1,0,0,76,46,0,0,129,155,0,0,15,1,0,0,110,189,0,0,140,155,0,0,15,1,0,0,216,176,0,0,151,155,0,0,15,1,0,0,245,190,0,0,163,155,0,0,15,1,0,0,124,192,0,0,178,155,0,0,15,1,0,0,62,193,0,0,194,155,0,0,15,1,0,0,174,203,6,0,205,155,0,0,15,1,0,0,73,57,0,0, 216,155,0,0,15,1,0,0,181,56,0,0,229,155,0,0,15,1,0,0,240,20,0,0,242,155,0,0,15,1,0,0,128,20,0,0,1,156,0,0,15,1,0,0,44,208,7,0,7,156,0,0,15,11,0,0,28,212,9,0,25,156,0,0,15,1,0,0,254,46,1,0,43,156,0,0,15,1,0,0,175,17,4,0,59,156,0,0,15,1,0,0,253,15,4,0, 82,156,0,0,15,1,0,0,136,15,4,0,104,156,0,0,15,1,0,0,115,14,4,0,125,156,0,0,15,1,0,0,170,12,4,0,145,156,0,0,15,1,0,0,45,17,4,0,168,156,0,0,15,11,0,0,168,212,9,0,194,156,0,0,15,1,0,0,141,40,4,0,220,156,0,0,15,1,0,0,137,61,4,0,244,156,0,0,15,1,0,0,29,40, 4,0,4,157,0,0,15,1,0,0,183,57,4,0,20,157,0,0,15,1,0,0,39,41,4,0,36,157,0,0,15,11,0,0,196,212,9,0,62,157,0,0,15,1,0,0,112,162,7,0,79,157,0,0,15,1,0,0,133,163,7,0,102,157,0,0,15,1,0,0,101,164,7,0,117,157,0,0,15,1,0,0,191,164,7,0,131,157,0,0,15,1,0,0,239, 221,0,0,142,157,0,0,15,1,0,0,79,223,0,0,155,157,0,0,15,1,0,0,8,201,6,0,169,157,0,0,15,11,0,0,100,213,9,0,177,157,0,0,15,1,0,0,219,214,6,0,185,157,0,0,15,1,0,0,30,244,6,0,198,157,0,0,15,1,0,0,50,245,6,0,214,157,0,0,15,1,0,0,104,251,6,0,236,157,0,0,15, 1,0,0,33,237,6,0,246,157,0,0,15,1,0,0,182,249,6,0,9,158,0,0,15,1,0,0,5,251,6,0,29,158,0,0,15,1,0,0,42,236,6,0,39,158,0,0,15,1,0,0,16,248,6,0,59,158,0,0,15,1,0,0,107,248,6,0,80,158,0,0,15,1,0,0,18,247,6,0,104,158,0,0,15,1,0,0,133,246,6,0,117,158,0,0,15, 1,0,0,86,246,6,0,131,158,0,0,15,1,0,0,198,248,6,0,147,158,0,0,15,1,0,0,95,250,6,0,164,158,0,0,15,1,0,0,41,249,6,0,183,158,0,0,15,1,0,0,166,250,6,0,203,158,0,0,15,1,0,0,196,246,6,0,228,158,0,0,15,1,0,0,235,110,1,0,244,158,0,0,15,1,0,0,14,112,1,0,15,159, 0,0,15,1,0,0,84,101,1,0,38,159,0,0,15,1,0,0,120,173,7,0,57,159,0,0,15,1,0,0,15,173,7,0,72,159,0,0,15,1,0,0,16,243,6,0,89,159,0,0,15,1,0,0,102,240,6,0,102,159,0,0,15,1,0,0,121,241,6,0,116,159,0,0,15,1,0,0,175,243,6,0,129,159,0,0,15,1,0,0,157,252,6,0,152, 159,0,0,15,1,0,0,161,243,6,0,170,159,0,0,15,1,0,0,127,242,6,0,183,159,0,0,15,1,0,0,195,239,6,0,195,159,0,0,15,1,0,0,226,240,6,0,211,159,0,0,15,1,0,0,140,239,6,0,231,159,0,0,15,1,0,0,252,241,6,0,246,159,0,0,15,1,0,0,193,230,8,0,10,160,0,0,15,1,0,0,69, 232,8,0,24,160,0,0,15,1,0,0,137,228,8,0,47,160,0,0,15,1,0,0,179,227,8,0,63,160,0,0,15,1,0,0,13,230,8,0,82,160,0,0,15,1,0,0,111,231,8,0,106,160,0,0,15,1,0,0,95,229,8,0,129,160,0,0,15,1,0,0,172,36,0,0,141,160,0,0,15,1,0,0,8,36,0,0,155,160,0,0,15,1,0,0, 26,5,7,0,164,160,0,0,15,1,0,0,118,0,7,0,173,160,0,0,15,11,0,0,104,213,9,0,189,160,0,0,15,1,0,0,233,247,6,0,205,160,0,0,15,9,0,0,173,161,9,0,221,160,0,0,15,9,0,0,164,161,9,0,237,160,0,0,15,1,0,0,193,4,7,0,252,160,0,0,15,1,0,0,103,197,7,0,6,161,0,0,15, 1,0,0,17,225,0,0,14,161,0,0,15,1,0,0,149,2,7,0,30,161,0,0,15,1,0,0,50,5,7,0,40,161,0,0,15,1,0,0,230,213,6,0,56,161,0,0,15,1,0,0,87,253,6,0,65,161,0,0,15,1,0,0,242,196,6,0,85,161,0,0,15,1,0,0,204,5,7,0,94,161,0,0,15,1,0,0,143,5,7,0,103,161,0,0,15,1,0, 0,245,252,6,0,111,161,0,0,15,1,0,0,212,204,6,0,122,161,0,0,15,11,0,0,108,213,9,0,138,161,0,0,15,1,0,0,81,5,7,0,150,161,0,0,15,1,0,0,59,4,7,0,161,161,0,0,15,1,0,0,200,3,7,0,173,161,0,0,15,1,0,0,106,3,7,0,199,161,0,0,15,1,0,0,112,5,7,0,210,161,0,0,15,1, 0,0,236,204,6,0,224,161,0,0,15,1,0,0,86,1,7,0,235,161,0,0,15,9,0,0,160,151,9,0,247,161,0,0,15,1,0,0,173,212,6,0,1,162,0,0,15,1,0,0,135,9,8,0,16,162,0,0,15,1,0,0,237,7,8,0,29,162,0,0,15,1,0,0,139,11,8,0,45,162,0,0,15,11,0,0,236,212,9,0,57,162,0,0,15,1, 0,0,140,238,4,0,69,162,0,0,15,9,0,0,12,150,9,0,90,162,0,0,15,1,0,0,27,13,0,0,102,162,0,0,15,1,0,0,177,12,0,0,116,162,0,0,15,1,0,0,63,234,6,0,134,162,0,0,15,1,0,0,130,193,7,0,140,162,0,0,15,1,0,0,218,194,7,0,150,162,0,0,15,1,0,0,117,195,7,0,161,162,0, 0,15,1,0,0,174,194,7,0,173,162,0,0,15,1,0,0,49,59,1,0,192,162,0,0,15,1,0,0,13,224,0,0,206,162,0,0,15,1,0,0,77,209,7,0,215,162,0,0,15,11,0,0,32,212,9,0,236,162,0,0,15,1,0,0,6,58,1,0,1,163,0,0,15,1,0,0,247,36,1,0,11,163,0,0,15,1,0,0,118,37,1,0,20,163,0, 0,15,1,0,0,49,38,1,0,28,163,0,0,15,1,0,0,254,37,1,0,35,163,0,0,15,1,0,0,228,96,1,0,49,163,0,0,15,1,0,0,29,96,1,0,64,163,0,0,15,1,0,0,178,95,1,0,79,163,0,0,15,1,0,0,201,98,1,0,97,163,0,0,15,1,0,0,147,99,1,0,113,163,0,0,15,1,0,0,59,226,6,0,126,163,0,0, 15,1,0,0,249,209,7,0,135,163,0,0,15,11,0,0,36,212,9,0,156,163,0,0,15,1,0,0,144,53,1,0,177,163,0,0,15,1,0,0,218,28,8,0,190,163,0,0,15,1,0,0,207,151,4,0,206,163,0,0,15,1,0,0,9,151,4,0,222,163,0,0,15,1,0,0,140,150,4,0,234,163,0,0,15,1,0,0,202,150,4,0,247, 163,0,0,15,1,0,0,177,133,4,0,3,164,0,0,15,1,0,0,194,134,4,0,21,164,0,0,15,1,0,0,151,134,4,0,35,164,0,0,15,1,0,0,165,134,4,0,50,164,0,0,15,1,0,0,75,150,4,0,64,164,0,0,15,1,0,0,227,152,4,0,75,164,0,0,15,1,0,0,19,158,4,0,88,164,0,0,15,1,0,0,164,132,4,0, 99,164,0,0,15,1,0,0,222,146,4,0,113,164,0,0,15,1,0,0,88,151,4,0,127,164,0,0,15,1,0,0,10,150,4,0,140,164,0,0,15,9,0,0,8,151,9,0,144,164,0,0,15,9,0,0,216,150,9,0,150,164,0,0,15,9,0,0,228,150,9,0,156,164,0,0,15,9,0,0,192,150,9,0,168,164,0,0,15,9,0,0,168, 150,9,0,176,164,0,0,15,9,0,0,144,150,9,0,185,164,0,0,15,9,0,0,180,150,9,0,193,164,0,0,15,9,0,0,132,150,9,0,204,164,0,0,15,9,0,0,204,150,9,0,214,164,0,0,15,9,0,0,156,150,9,0,224,164,0,0,15,9,0,0,240,150,9,0,229,164,0,0,15,9,0,0,252,150,9,0,234,164,0,0, 15,11,0,0,224,212,9,0,248,164,0,0,15,1,0,0,110,174,4,0,8,165,0,0,15,1,0,0,242,164,4,0,26,165,0,0,15,1,0,0,62,163,4,0,38,165,0,0,15,1,0,0,48,174,4,0,53,165,0,0,15,1,0,0,70,50,0,0,70,165,0,0,15,1,0,0,192,49,0,0,89,165,0,0,15,1,0,0,215,60,0,0,106,165,0, 0,15,1,0,0,77,60,0,0,125,165,0,0,15,1,0,0,242,22,0,0,144,165,0,0,15,1,0,0,144,22,0,0,165,165,0,0,15,1,0,0,198,40,0,0,183,165,0,0,15,1,0,0,54,40,0,0,203,165,0,0,15,1,0,0,29,15,0,0,221,165,0,0,15,1,0,0,187,14,0,0,241,165,0,0,15,1,0,0,179,30,0,0,4,166,0, 0,15,1,0,0,81,30,0,0,25,166,0,0,15,1,0,0,1,22,7,0,49,166,0,0,15,1,0,0,173,239,6,0,67,166,0,0,15,1,0,0,237,5,7,0,89,166,0,0,15,1,0,0,238,16,7,0,112,166,0,0,15,1,0,0,174,17,7,0,124,166,0,0,15,1,0,0,89,22,8,0,138,166,0,0,15,1,0,0,228,224,0,0,154,166,0,0, 15,11,0,0,228,211,9,0,171,166,0,0,15,1,0,0,235,245,0,0,188,166,0,0,15,11,0,0,232,211,9,0,201,166,0,0,15,1,0,0,39,240,0,0,214,166,0,0,15,11,0,0,236,211,9,0,230,166,0,0,15,1,0,0,85,7,1,0,246,166,0,0,15,11,0,0,240,211,9,0,6,167,0,0,15,11,0,0,244,211,9,0, 26,167,0,0,15,1,0,0,147,16,1,0,46,167,0,0,15,1,0,0,244,11,1,0,62,167,0,0,15,11,0,0,248,211,9,0,76,167,0,0,15,1,0,0,57,229,0,0,90,167,0,0,15,11,0,0,252,211,9,0,104,167,0,0,15,1,0,0,115,233,0,0,118,167,0,0,15,1,0,0,57,224,1,0,134,167,0,0,15,1,0,0,47,228, 1,0,153,167,0,0,15,1,0,0,215,224,1,0,174,167,0,0,15,1,0,0,70,226,1,0,186,167,0,0,15,1,0,0,185,227,1,0,206,167,0,0,15,1,0,0,255,227,6,0,223,167,0,0,15,11,0,0,0,212,9,0,239,167,0,0,15,1,0,0,122,252,0,0,255,167,0,0,15,1,0,0,24,40,1,0,15,168,0,0,15,11,0, 0,4,212,9,0,31,168,0,0,15,11,0,0,8,212,9,0,51,168,0,0,15,1,0,0,118,2,1,0,71,168,0,0,15,1,0,0,120,255,0,0,87,168,0,0,15,11,0,0,12,212,9,0,106,168,0,0,15,1,0,0,83,249,0,0,125,168,0,0,15,1,0,0,70,41,1,0,142,168,0,0,15,1,0,0,175,42,1,0,157,168,0,0,15,11, 0,0,48,212,9,0,171,168,0,0,15,1,0,0,187,89,1,0,185,168,0,0,15,11,0,0,40,212,9,0,200,168,0,0,15,1,0,0,206,44,1,0,215,168,0,0,15,1,0,0,152,86,7,0,236,168,0,0,15,1,0,0,15,86,7,0,0,169,0,0,15,1,0,0,62,90,7,0,21,169,0,0,15,1,0,0,146,163,1,0,41,169,0,0,15, 1,0,0,40,194,7,0,52,169,0,0,15,1,0,0,92,210,0,0,69,169,0,0,15,1,0,0,18,60,8,0,81,169,0,0,15,1,0,0,147,235,6,0,98,169,0,0,15,1,0,0,133,11,7,0,111,169,0,0,15,1,0,0,143,84,7,0,126,169,0,0,15,11,0,0,152,213,9,0,147,169,0,0,15,1,0,0,44,135,7,0,161,169,0,0, 15,9,0,0,16,161,9,0,175,169,0,0,15,9,0,0,20,161,9,0,195,169,0,0,15,1,0,0,120,113,7,0,205,169,0,0,15,1,0,0,114,159,7,0,223,169,0,0,15,9,0,0,12,161,9,0,238,169,0,0,15,1,0,0,48,9,7,0,253,169,0,0,15,1,0,0,101,173,7,0,8,170,0,0,15,1,0,0,34,36,7,0,25,170,0, 0,15,1,0,0,235,232,8,0,41,170,0,0,15,1,0,0,204,92,7,0,58,170,0,0,15,11,0,0,156,213,9,0,69,170,0,0,15,11,0,0,184,213,9,0,85,170,0,0,15,1,0,0,153,182,7,0,103,170,0,0,15,11,0,0,188,213,9,0,120,170,0,0,15,11,0,0,180,213,9,0,134,170,0,0,15,1,0,0,41,180,7, 0,147,170,0,0,15,1,0,0,202,24,7,0,157,170,0,0,15,11,0,0,192,213,9,0,179,170,0,0,15,11,0,0,224,213,9,0,205,170,0,0,15,11,0,0,232,221,9,0,221,170,0,0,15,11,0,0,200,217,9,0,237,170,0,0,15,11,0,0,224,217,9,0,3,171,0,0,15,1,0,0,66,133,7,0,20,171,0,0,15,9, 0,0,120,151,9,0,31,171,0,0,15,9,0,0,96,162,9,0,41,171,0,0,15,1,0,0,132,126,7,0,57,171,0,0,15,9,0,0,196,162,9,0,73,171,0,0,15,1,0,0,110,126,7,0,88,171,0,0,15,1,0,0,241,54,7,0,108,171,0,0,15,1,0,0,244,52,7,0,128,171,0,0,15,1,0,0,65,25,7,0,150,171,0,0,15, 1,0,0,62,40,7,0,170,171,0,0,15,1,0,0,203,232,8,0,189,171,0,0,15,1,0,0,219,232,8,0,210,171,0,0,15,1,0,0,38,40,7,0,231,171,0,0,15,1,0,0,56,153,7,0,247,171,0,0,15,1,0,0,86,40,7,0,6,172,0,0,15,1,0,0,35,79,7,0,23,172,0,0,15,1,0,0,254,39,7,0,34,172,0,0,15, 1,0,0,22,225,6,0,50,172,0,0,15,1,0,0,175,96,7,0,59,172,0,0,15,11,0,0,200,221,9,0,71,172,0,0,15,11,0,0,204,221,9,0,93,172,0,0,15,11,0,0,236,221,9,0,107,172,0,0,15,9,0,0,188,161,9,0,123,172,0,0,15,1,0,0,88,126,7,0,141,172,0,0,15,11,0,0,124,213,9,0,155, 172,0,0,15,11,0,0,160,213,9,0,171,172,0,0,15,1,0,0,251,232,8,0,190,172,0,0,15,1,0,0,216,159,7,0,210,172,0,0,15,11,0,0,208,221,9,0,222,172,0,0,15,1,0,0,186,52,7,0,236,172,0,0,15,1,0,0,211,232,8,0,254,172,0,0,15,1,0,0,253,122,7,0,12,173,0,0,15,1,0,0,76, 60,7,0,33,173,0,0,15,1,0,0,103,24,7,0,43,173,0,0,15,1,0,0,90,13,7,0,58,173,0,0,15,1,0,0,39,199,7,0,72,173,0,0,15,1,0,0,221,130,7,0,82,173,0,0,15,1,0,0,2,82,7,0,98,173,0,0,15,9,0,0,224,161,9,0,117,173,0,0,15,9,0,0,32,162,9,0,137,173,0,0,15,1,0,0,67,126, 7,0,158,173,0,0,15,9,0,0,200,161,9,0,171,173,0,0,15,9,0,0,196,161,9,0,185,173,0,0,15,11,0,0,212,221,9,0,202,173,0,0,15,11,0,0,216,221,9,0,213,173,0,0,15,11,0,0,220,221,9,0,229,173,0,0,15,9,0,0,192,161,9,0,242,173,0,0,15,11,0,0,224,221,9,0,5,174,0,0,15, 1,0,0,161,114,7,0,21,174,0,0,15,1,0,0,241,169,7,0,40,174,0,0,15,1,0,0,227,232,8,0,55,174,0,0,15,1,0,0,130,199,7,0,65,174,0,0,15,11,0,0,164,213,9,0,82,174,0,0,15,11,0,0,116,213,9,0,92,174,0,0,15,1,0,0,9,102,7,0,105,174,0,0,15,1,0,0,3,233,8,0,124,174,0, 0,15,1,0,0,149,100,7,0,145,174,0,0,15,1,0,0,190,9,7,0,160,174,0,0,15,11,0,0,248,221,9,0,175,174,0,0,15,11,0,0,252,221,9,0,194,174,0,0,15,1,0,0,251,114,7,0,213,174,0,0,15,1,0,0,184,100,7,0,227,174,0,0,15,1,0,0,111,176,7,0,239,174,0,0,15,1,0,0,150,122, 7,0,4,175,0,0,15,1,0,0,226,36,7,0,22,175,0,0,15,1,0,0,243,232,8,0,39,175,0,0,15,1,0,0,190,40,7,0,55,175,0,0,15,1,0,0,66,85,7,0,69,175,0,0,15,1,0,0,100,123,7,0,88,175,0,0,15,1,0,0,29,26,7,0,111,175,0,0,15,11,0,0,168,213,9,0,129,175,0,0,15,9,0,0,136,160, 9,0,149,175,0,0,15,11,0,0,240,221,9,0,165,175,0,0,15,1,0,0,124,38,7,0,180,175,0,0,15,1,0,0,168,53,7,0,199,175,0,0,15,1,0,0,215,29,7,0,223,175,0,0,15,1,0,0,197,54,7,0,244,175,0,0,15,1,0,0,216,184,7,0,7,176,0,0,15,1,0,0,106,184,7,0,27,176,0,0,15,1,0,0, 228,186,7,0,44,176,0,0,15,1,0,0,111,83,7,0,58,176,0,0,15,1,0,0,56,53,7,0,76,176,0,0,15,1,0,0,13,27,7,0,89,176,0,0,15,1,0,0,10,165,7,0,107,176,0,0,15,1,0,0,11,233,8,0,128,176,0,0,15,11,0,0,128,213,9,0,144,176,0,0,15,1,0,0,55,84,7,0,159,176,0,0,15,11,0, 0,172,213,9,0,172,176,0,0,15,11,0,0,176,213,9,0,186,176,0,0,15,1,0,0,69,102,7,0,200,176,0,0,15,11,0,0,244,221,9,0,216,176,0,0,15,11,0,0,136,213,9,0,226,176,0,0,15,11,0,0,144,213,9,0,249,176,0,0,15,1,0,0,169,24,7,0,6,177,0,0,15,1,0,0,11,166,7,0,24,177, 0,0,15,1,0,0,165,159,7,0,44,177,0,0,15,1,0,0,75,199,7,0,59,177,0,0,15,1,0,0,136,24,7,0,71,177,0,0,15,1,0,0,100,101,7,0,87,177,0,0,15,9,0,0,128,163,9,0,103,177,0,0,15,11,0,0,228,221,9,0,116,177,0,0,15,1,0,0,217,93,7,0,126,177,0,0,15,1,0,0,120,88,0,0,145, 177,0,0,15,1,0,0,68,73,0,0,164,177,0,0,15,1,0,0,159,82,0,0,184,177,0,0,15,1,0,0,172,77,0,0,203,177,0,0,15,1,0,0,179,104,0,0,219,177,0,0,15,1,0,0,47,68,0,0,239,177,0,0,15,1,0,0,0,193,4,0,1,178,0,0,15,1,0,0,177,182,4,0,22,178,0,0,15,1,0,0,228,195,4,0,43, 178,0,0,15,1,0,0,14,196,4,0,64,178,0,0,15,1,0,0,60,198,4,0,79,178,0,0,15,1,0,0,119,183,4,0,98,178,0,0,15,1,0,0,233,184,4,0,118,178,0,0,15,1,0,0,77,186,4,0,134,178,0,0,15,1,0,0,79,180,4,0,148,178,0,0,15,1,0,0,89,196,4,0,165,178,0,0,15,1,0,0,145,196,4, 0,191,178,0,0,15,1,0,0,62,184,4,0,210,178,0,0,15,1,0,0,161,185,4,0,230,178,0,0,15,1,0,0,160,182,4,0,245,178,0,0,15,11,0,0,240,212,9,0,1,179,0,0,15,1,0,0,93,88,5,0,18,179,0,0,15,1,0,0,14,96,5,0,36,179,0,0,15,1,0,0,220,81,5,0,47,179,0,0,15,1,0,0,111,96, 5,0,59,179,0,0,15,9,0,0,60,150,9,0,80,179,0,0,15,1,0,0,248,112,3,0,91,179,0,0,15,1,0,0,253,113,3,0,102,179,0,0,15,1,0,0,116,137,0,0,123,179,0,0,15,1,0,0,177,28,0,0,136,179,0,0,15,1,0,0,71,28,0,0,151,179,0,0,15,1,0,0,149,116,5,0,164,179,0,0,15,1,0,0,132, 112,5,0,184,179,0,0,15,1,0,0,137,111,5,0,203,179,0,0,15,1,0,0,50,114,5,0,219,179,0,0,15,1,0,0,229,108,5,0,237,179,0,0,15,1,0,0,95,105,5,0,254,179,0,0,15,1,0,0,203,115,5,0,18,180,0,0,15,1,0,0,117,104,5,0,38,180,0,0,15,11,0,0,244,212,9,0,61,180,0,0,15, 1,0,0,227,204,7,0,73,180,0,0,15,1,0,0,160,206,7,0,81,180,0,0,15,1,0,0,171,207,7,0,93,180,0,0,15,1,0,0,22,206,7,0,101,180,0,0,15,1,0,0,42,207,7,0,113,180,0,0,15,1,0,0,106,205,7,0,126,180,0,0,15,1,0,0,101,204,7,0,137,180,0,0,15,1,0,0,244,199,7,0,148,180, 0,0,15,1,0,0,226,205,7,0,159,180,0,0,15,1,0,0,25,200,7,0,169,180,0,0,15,1,0,0,50,201,7,0,180,180,0,0,15,1,0,0,229,202,7,0,194,180,0,0,15,1,0,0,60,203,7,0,208,180,0,0,15,1,0,0,60,204,7,0,226,180,0,0,15,1,0,0,214,229,1,0,236,180,0,0,15,1,0,0,197,230,1, 0,250,180,0,0,15,1,0,0,226,239,1,0,11,181,0,0,15,1,0,0,14,251,1,0,26,181,0,0,15,1,0,0,57,229,1,0,42,181,0,0,15,1,0,0,194,228,1,0,54,181,0,0,15,1,0,0,79,229,1,0,72,181,0,0,15,1,0,0,111,228,1,0,83,181,0,0,15,1,0,0,21,93,1,0,105,181,0,0,15,1,0,0,175,93, 1,0,130,181,0,0,15,1,0,0,70,94,1,0,157,181,0,0,15,1,0,0,107,62,8,0,168,181,0,0,15,1,0,0,105,63,8,0,184,181,0,0,15,1,0,0,240,62,8,0,199,181,0,0,15,1,0,0,186,63,8,0,215,181,0,0,15,1,0,0,198,196,7,0,224,181,0,0,15,11,0,0,160,212,9,0,238,181,0,0,15,1,0,0, 99,251,3,0,255,181,0,0,15,1,0,0,40,252,3,0,17,182,0,0,15,1,0,0,28,250,3,0,31,182,0,0,15,1,0,0,86,250,3,0,48,182,0,0,15,1,0,0,108,250,3,0,64,182,0,0,15,11,0,0,164,212,9,0,79,182,0,0,15,1,0,0,192,6,4,0,98,182,0,0,15,1,0,0,124,5,4,0,117,182,0,0,15,1,0,0, 103,3,4,0,132,182,0,0,15,1,0,0,161,3,4,0,150,182,0,0,15,1,0,0,183,3,4,0,167,182,0,0,15,1,0,0,25,191,5,0,180,182,0,0,15,1,0,0,181,186,5,0,200,182,0,0,15,1,0,0,168,185,5,0,219,182,0,0,15,1,0,0,92,188,5,0,235,182,0,0,15,1,0,0,100,183,5,0,253,182,0,0,15, 1,0,0,24,180,5,0,14,183,0,0,15,1,0,0,13,190,5,0,34,183,0,0,15,1,0,0,70,179,5,0,54,183,0,0,15,11,0,0,16,213,9,0,77,183,0,0,15,1,0,0,55,245,5,0,99,183,0,0,15,1,0,0,50,246,5,0,121,183,0,0,15,1,0,0,193,241,5,0,135,183,0,0,15,11,0,0,44,213,9,0,159,183,0,0, 15,1,0,0,135,48,6,0,176,183,0,0,15,1,0,0,218,45,6,0,185,183,0,0,15,11,0,0,72,213,9,0,204,183,0,0,15,1,0,0,214,162,4,0,215,183,0,0,15,1,0,0,53,161,4,0,226,183,0,0,15,1,0,0,4,162,4,0,240,183,0,0,15,1,0,0,31,214,7,0,3,184,0,0,15,1,0,0,129,244,7,0,23,184, 0,0,15,1,0,0,199,65,8,0,43,184,0,0,15,1,0,0,226,80,8,0,56,184,0,0,15,1,0,0,168,85,8,0,75,184,0,0,15,1,0,0,213,108,8,0,89,184,0,0,15,1,0,0,47,164,8,0,103,184,0,0,15,1,0,0,88,174,8,0,117,184,0,0,15,1,0,0,157,187,8,0,130,184,0,0,15,1,0,0,225,198,8,0,145, 184,0,0,15,1,0,0,146,227,8,0,159,184,0,0,15,1,0,0,184,214,1,0,171,184,0,0,15,1,0,0,114,214,1,0,185,184,0,0,15,1,0,0,105,215,6,0,193,184,0,0,15,1,0,0,141,2,7,0,197,184,0,0,1,0,0,1,0,0,0,0,217,184,0,0,1,0,1,1,0,0,0,0,226,184,0,0,1,0,1,1,0,0,0,0,238,184, 0,0,1,0,1,1,0,0,0,0,252,184,0,0,1,0,1,1,0,0,0,0,11,185,0,0,1,0,1,1,0,0,0,0,25,185,0,0,1,0,1,1,0,0,0,0,41,185,0,0,1,0,1,1,0,0,0,0,56,185,0,0,1,0,1,1,0,0,0,0,74,185,0,0,1,0,0,1,0,0,0,0,93,185,0,0,1,0,0,1,0,0,0,0,104,185,0,0,1,0,1,1,0,0,0,0,118,185,0,0, 1,0,1,1,0,0,0,0,132,185,0,0,1,0,1,1,0,0,0,0,147,185,0,0,1,0,1,1,0,0,0,0,162,185,0,0,1,0,1,1,0,0,0,0,179,185,0,0,1,0,1,1,0,0,0,0,186,185,0,0,1,0,1,1,0,0,0,0,203,185,0,0,1,0,1,1,0,0,0,0,210,185,0,0,1,0,1,1,0,0,0,0,218,185,0,0,1,0,1,1,0,0,0,0,225,185,0, 0,1,0,1,1,0,0,0,0,231,185,0,0,1,0,1,1,0,0,0,0,237,185,0,0,1,0,1,1,0,0,0,0,243,185,0,0,1,0,1,1,0,0,0,0,2,186,0,0,1,0,1,1,0,0,0,0,9,186,0,0,1,0,1,1,0,0,0,0,17,186,0,0,1,0,1,1,0,0,0,0,33,186,0,0,1,0,1,1,0,0,0,0,51,186,0,0,1,0,1,1,0,0,0,0,56,186,0,0,1,0, 1,1,0,0,0,0,62,186,0,0,1,0,1,1,0,0,0,0,71,186,0,0,1,0,1,1,0,0,0,0,79,186,0,0,1,0,1,1,0,0,0,0,86,186,0,0,1,0,1,1,0,0,0,0,93,186,0,0,1,0,1,1,0,0,0,0,99,186,0,0,1,0,1,1,0,0,0,0,104,186,0,0,1,0,1,1,0,0,0,0,110,186,0,0,1,0,1,1,0,0,0,0,118,186,0,0,1,0,1,1, 0,0,0,0,135,186,0,0,1,0,1,1,0,0,0,0,142,186,0,0,1,0,1,1,0,0,0,0,158,186,0,0,1,0,1,1,0,0,0,0,164,186,0,0,1,0,1,1,0,0,0,0,173,186,0,0,1,0,1,1,0,0,0,0,180,186,0,0,1,0,1,1,0,0,0,0,196,186,0,0,1,0,1,1,0,0,0,0,203,186,0,0,1,0,1,1,0,0,0,0,209,186,0,0,1,0,1, 1,0,0,0,0,217,186,0,0,1,0,1,1,0,0,0,0,232,186,0,0,1,0,1,1,0,0,0,0,249,186,0,0,1,0,1,1,0,0,0,0,1,187,0,0,1,0,1,1,0,0,0,0,9,187,0,0,1,0,1,1,0,0,0,0,24,187,0,0,1,0,1,1,0,0,0,0,38,187,0,0,1,0,1,1,0,0,0,0,46,187,0,0,1,0,1,1,0,0,0,0,60,187,0,0,1,0,1,1,0,0, 0,0,77,187,0,0,1,0,1,1,0,0,0,0,82,187,0,0,1,0,1,1,0,0,0,0,89,187,0,0,1,0,1,1,0,0,0,0,95,187,0,0,1,0,1,1,0,0,0,0,102,187,0,0,1,0,1,1,0,0,0,0,110,187,0,0,1,0,1,1,0,0,0,0,118,187,0,0,1,0,1,1,0,0,0,0,126,187,0,0,1,0,1,1,0,0,0,0,141,187,0,0,1,0,1,1,0,0,0, 0,149,187,0,0,1,0,1,1,0,0,0,0,157,187,0,0,1,0,1,1,0,0,0,0,173,187,0,0,1,0,1,1,0,0,0,0,178,187,0,0,1,0,1,1,0,0,0,0,184,187,0,0,1,0,1,1,0,0,0,0,206,187,0,0,1,0,1,1,0,0,0,0,234,187,0,0,1,0,1,1,0,0,0,0,255,187,0,0,1,0,1,1,0,0,0,0,27,188,0,0,1,0,1,1,0,0,0, 0,43,188,0,0,1,0,1,1,0,0,0,0,66,188,0,0,1,0,1,1,0,0,0,0,89,188,0,0,1,0,1,1,0,0,0,0,109,188,0,0,1,0,1,1,0,0,0,0,129,188,0,0,1,0,1,1,0,0,0,0,152,188,0,0,1,0,1,1,0,0,0,0,174,188,0,0,1,0,1,1,0,0,0,0,188,188,0,0,1,0,1,1,0,0,0,0,211,188,0,0,1,0,1,1,0,0,0,0, 226,188,0,0,1,0,1,1,0,0,0,0,235,188,0,0,1,0,1,1,0,0,0,0,250,188,0,0,1,0,1,1,0,0,0,0,11,189,0,0,1,0,1,1,0,0,0,0,26,189,0,0,1,0,1,1,0,0,0,0,37,189,0,0,1,0,1,1,0,0,0,0,49,189,0,0,1,0,1,1,0,0,0,0,57,189,0,0,1,0,1,1,0,0,0,0,68,189,0,0,1,0,1,1,0,0,0,0,76,189, 0,0,1,0,1,1,0,0,0,0,81,189,0,0,1,0,1,1,0,0,0,0,87,189,0,0,1,0,1,1,0,0,0,0,103,189,0,0,1,0,1,1,0,0,0,0,113,189,0,0,1,0,1,1,0,0,0,0,121,189,0,0,1,0,1,1,0,0,0,0,129,189,0,0,1,0,1,1,0,0,0,0,143,189,0,0,1,0,1,1,0,0,0,0,151,189,0,0,1,0,1,1,0,0,0,0,159,189, 0,0,1,0,1,1,0,0,0,0,178,189,0,0,1,0,1,1,0,0,0,0,186,189,0,0,1,0,1,1,0,0,0,0,195,189,0,0,1,0,1,1,0,0,0,0,204,189,0,0,1,0,1,1,0,0,0,0,213,189,0,0,1,0,1,1,0,0,0,0,221,189,0,0,1,0,1,1,0,0,0,0,229,189,0,0,1,0,1,1,0,0,0,0,246,189,0,0,1,0,1,1,0,0,0,0,253,189, 0,0,1,0,1,1,0,0,0,0,8,190,0,0,1,0,1,1,0,0,0,0,24,190,0,0,1,0,0,1,0,0,0,0,86,52,0,0,87,52,0,0,88,52,0,0,89,52,0,0,90,52,0,0,91,52,0,0,92,52,0,0,93,52,0,0,96,52,0,0,97,52,0,0,98,52,0,0,99,52,0,0,100,52,0,0,101,52,0,0,102,52,0,0,103,52,0,0,104,52,0,0,105, 52,0,0,106,52,0,0,107,52,0,0,108,52,0,0,109,52,0,0,110,52,0,0,111,52,0,0,112,52,0,0,113,52,0,0,114,52,0,0,115,52,0,0,116,52,0,0,117,52,0,0,118,52,0,0,119,52,0,0,120,52,0,0,121,52,0,0,122,52,0,0,123,52,0,0,124,52,0,0,125,52,0,0,126,52,0,0,127,52,0,0,128, 52,0,0,129,52,0,0,130,52,0,0,131,52,0,0,132,52,0,0,133,52,0,0,134,52,0,0,135,52,0,0,136,52,0,0,137,52,0,0,138,52,0,0,139,52,0,0,140,52,0,0,141,52,0,0,142,52,0,0,143,52,0,0,144,52,0,0,145,52,0,0,146,52,0,0,147,52,0,0,148,52,0,0,149,52,0,0,150,52,0,0,151, 52,0,0,152,52,0,0,153,52,0,0,154,52,0,0,155,52,0,0,156,52,0,0,157,52,0,0,158,52,0,0,159,52,0,0,160,52,0,0,161,52,0,0,162,52,0,0,163,52,0,0,164,52,0,0,165,52,0,0,166,52,0,0,167,52,0,0,168,52,0,0,169,52,0,0,170,52,0,0,171,52,0,0,172,52,0,0,173,52,0,0,174, 52,0,0,175,52,0,0,176,52,0,0,177,52,0,0,178,52,0,0,179,52,0,0,180,52,0,0,181,52,0,0,182,52,0,0,183,52,0,0,184,52,0,0,185,52,0,0,186,52,0,0,187,52,0,0,188,52,0,0,189,52,0,0,190,52,0,0,191,52,0,0,192,52,0,0,193,52,0,0,194,52,0,0,195,52,0,0,196,52,0,0,197, 52,0,0,198,52,0,0,0,0,0,64,0,0,0,64,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,95,52,0,0,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0, 0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,94,52,0,0,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0, 0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0, 0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0, 0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0, 0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0, 0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,85,52,0,0,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0, 0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,0,0,0,128,86,52,0,0,87,52,0,0,88,52,0,0,89,52,0,0,90,52,0,0,91,52,0,0,92,52,0,0,93,52,0,0,96,52,0,0,97,52,0,0,98,52,0,0,99,52,0,0,100, 52,0,0,101,52,0,0,102,52,0,0,103,52,0,0,104,52,0,0,105,52,0,0,106,52,0,0,107,52,0,0,108,52,0,0,109,52,0,0,110,52,0,0,111,52,0,0,112,52,0,0,113,52,0,0,114,52,0,0,115,52,0,0,116,52,0,0,117,52,0,0,118,52,0,0,119,52,0,0,120,52,0,0,121,52,0,0,122,52,0,0,123, 52,0,0,124,52,0,0,125,52,0,0,126,52,0,0,127,52,0,0,128,52,0,0,129,52,0,0,130,52,0,0,131,52,0,0,132,52,0,0,133,52,0,0,134,52,0,0,135,52,0,0,136,52,0,0,137,52,0,0,138,52,0,0,139,52,0,0,140,52,0,0,141,52,0,0,142,52,0,0,143,52,0,0,144,52,0,0,145,52,0,0,146, 52,0,0,147,52,0,0,148,52,0,0,149,52,0,0,150,52,0,0,151,52,0,0,152,52,0,0,153,52,0,0,154,52,0,0,155,52,0,0,156,52,0,0,157,52,0,0,158,52,0,0,159,52,0,0,160,52,0,0,161,52,0,0,162,52,0,0,163,52,0,0,164,52,0,0,165,52,0,0,166,52,0,0,167,52,0,0,168,52,0,0,169, 52,0,0,170,52,0,0,171,52,0,0,172,52,0,0,173,52,0,0,174,52,0,0,175,52,0,0,176,52,0,0,177,52,0,0,178,52,0,0,179,52,0,0,180,52,0,0,181,52,0,0,182,52,0,0,183,52,0,0,184,52,0,0,185,52,0,0,186,52,0,0,187,52,0,0,188,52,0,0,189,52,0,0,190,52,0,0,191,52,0,0,192, 52,0,0,193,52,0,0,194,52,0,0,195,52,0,0,196,52,0,0,197,52,0,0,198,52,0,0,32,0,95,95,109,104,95,100,121,108,105,98,95,104,101,97,100,101,114,0,95,112,108,117,115,95,110,101,119,0,95,112,108,117,115,95,100,115,112,0,95,115,99,97,108,97,114,112,108,117, 115,95,100,115,112,0,95,112,108,117,115,95,115,101,116,117,112,0,95,109,105,110,117,115,95,110,101,119,0,95,109,105,110,117,115,95,100,115,112,0,95,115,99,97,108,97,114,109,105,110,117,115,95,100,115,112,0,95,109,105,110,117,115,95,115,101,116,117,112, 0,95,116,105,109,101,115,95,110,101,119,0,95,116,105,109,101,115,95,100,115,112,0,95,115,99,97,108,97,114,116,105,109,101,115,95,100,115,112,0,95,116,105,109,101,115,95,115,101,116,117,112,0,95,111,118,101,114,95,110,101,119,0,95,111,118,101,114,95,100, 115,112,0,95,115,99,97,108,97,114,111,118,101,114,95,100,115,112,0,95,111,118,101,114,95,115,101,116,117,112,0,95,109,97,120,95,110,101,119,0,95,109,97,120,95,100,115,112,0,95,115,99,97,108,97,114,109,97,120,95,100,115,112,0,95,109,97,120,95,115,101, 116,117,112,0,95,109,105,110,95,110,101,119,0,95,109,105,110,95,100,115,112,0,95,115,99,97,108,97,114,109,105,110,95,100,115,112,0,95,109,105,110,95,115,101,116,117,112,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,110,101,119,0,95,116, 97,98,119,114,105,116,101,95,116,105,108,100,101,95,114,101,100,114,97,119,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98, 119,114,105,116,101,95,116,105,108,100,101,95,98,97,110,103,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,116,97,114,116,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,116,111,112,0,95,116,97,98,119,114,105,116,101, 95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101, 95,100,115,112,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,108,105,115,116,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,115,116,111,112,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,116,105,99,107,0,95,116,97,98,112,108, 97,121,95,116,105,108,100,101,95,102,114,101,101,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,112, 101,114,102,111,114,109,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,102,114,101,101,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97, 98,114,101,97,100,52,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,114,101,97,100,52, 95,116,105,108,100,101,95,102,114,101,101,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,112,101, 114,102,111,114,109,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,102,116,49,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,115,101, 110,100,95,110,101,119,0,95,116,97,98,115,101,110,100,95,112,101,114,102,111,114,109,0,95,116,97,98,115,101,110,100,95,100,115,112,0,95,116,97,98,115,101,110,100,95,115,101,116,117,112,0,95,116,97,98,114,101,99,101,105,118,101,95,112,101,114,102,111, 114,109,0,95,116,97,98,114,101,99,101,105,118,101,95,100,115,112,0,95,116,97,98,114,101,99,101,105,118,101,95,110,101,119,0,95,116,97,98,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,95,102,108,111,97,116,0,95,116,97, 98,114,101,97,100,95,115,101,116,0,95,116,97,98,114,101,97,100,95,110,101,119,0,95,116,97,98,114,101,97,100,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,52,95,102,108,111,97,116,0,95,116,97,98,114,101,97,100,52,95,115,101,116,0,95,116,97,98,114, 101,97,100,52,95,110,101,119,0,95,116,97,98,114,101,97,100,52,95,115,101,116,117,112,0,95,116,97,98,119,114,105,116,101,95,102,108,111,97,116,0,95,116,97,98,119,114,105,116,101,95,115,101,116,0,95,116,97,98,119,114,105,116,101,95,110,101,119,0,95,115, 105,103,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,115,105,103,95,116,105,108,100,101,95,112,101,114,102,56,0,95,115,105,103,95,116,105,108,100,101,95,102,108,111,97,116,0,95,115,105,103,95,116,105,108,100,101,95,100,115,112,0,95,115, 105,103,95,116,105,108,100,101,95,110,101,119,0,95,115,105,103,95,116,105,108,100,101,95,115,101,116,117,112,0,95,108,105,110,101,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,108,105,110,101,95,116,105,108,100,101,95,112,101,114,102,56, 0,95,108,105,110,101,95,116,105,108,100,101,95,102,108,111,97,116,0,95,108,105,110,101,95,116,105,108,100,101,95,115,116,111,112,0,95,108,105,110,101,95,116,105,108,100,101,95,100,115,112,0,95,108,105,110,101,95,116,105,108,100,101,95,110,101,119,0,95, 108,105,110,101,95,116,105,108,100,101,95,115,101,116,117,112,0,95,118,108,105,110,101,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,118,108,105,110,101,95,116,105,108,100,101,95,115,116,111,112,0,95,118,108,105,110,101,95,116,105,108,100, 101,95,102,108,111,97,116,0,95,118,108,105,110,101,95,116,105,108,100,101,95,100,115,112,0,95,118,108,105,110,101,95,116,105,108,100,101,95,110,101,119,0,95,118,108,105,110,101,95,116,105,108,100,101,95,115,101,116,117,112,0,95,115,110,97,112,115,104, 111,116,95,116,105,108,100,101,95,110,101,119,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,100,115,112,0,95,115,110,97,112,115,104,111,116,95,116, 105,108,100,101,95,98,97,110,103,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101,116,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101,116,117,112,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101, 95,110,101,119,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,100,115,112,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101, 95,98,97,110,103,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,102,102,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101,116,117,112,0,95,101,110,118,95,116,105,108,100,101,95,110,101,119,0,95,101,110,118,95, 116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,101,110,118,95,116,105,108,100,101,95,100,115,112,0,95,101,110,118,95,116,105,108,100,101,95,116,105,99,107,0,95,101,110,118,95,116,105,108,100,101,95,102,102,0,95,116,104,114,101,115,104,111,108, 100,95,116,105,108,100,101,95,110,101,119,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,115,101,116,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,102,116,49,0,95,116,104,114,101,115,104,111,108,100,95,116,105, 108,100,101,95,116,105,99,107,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,102,102,0,95,116,104,114,101,115,104,111,108,100,95,116,105, 108,100,101,95,115,101,116,117,112,0,95,100,97,99,95,110,101,119,0,95,100,97,99,95,100,115,112,0,95,100,97,99,95,102,114,101,101,0,95,100,97,99,95,115,101,116,117,112,0,95,97,100,99,95,110,101,119,0,95,97,100,99,95,100,115,112,0,95,97,100,99,95,102,114, 101,101,0,95,97,100,99,95,115,101,116,117,112,0,95,115,105,103,100,101,108,119,114,105,116,101,95,117,112,100,97,116,101,115,114,0,95,115,105,103,100,101,108,119,114,105,116,101,95,99,104,101,99,107,118,101,99,115,105,122,101,0,95,115,105,103,100,101, 108,119,114,105,116,101,95,110,101,119,0,95,115,105,103,100,101,108,119,114,105,116,101,95,112,101,114,102,111,114,109,0,95,115,105,103,100,101,108,119,114,105,116,101,95,100,115,112,0,95,115,105,103,100,101,108,119,114,105,116,101,95,102,114,101,101, 0,95,115,105,103,100,101,108,119,114,105,116,101,95,115,101,116,117,112,0,95,115,105,103,100,101,108,114,101,97,100,95,110,101,119,0,95,115,105,103,100,101,108,114,101,97,100,95,102,108,111,97,116,0,95,115,105,103,100,101,108,114,101,97,100,95,112,101, 114,102,111,114,109,0,95,115,105,103,100,101,108,114,101,97,100,95,100,115,112,0,95,115,105,103,100,101,108,114,101,97,100,95,115,101,116,117,112,0,95,115,105,103,118,100,95,110,101,119,0,95,115,105,103,118,100,95,112,101,114,102,111,114,109,0,95,115, 105,103,118,100,95,100,115,112,0,95,115,105,103,118,100,95,115,101,116,117,112,0,95,115,105,103,102,102,116,95,115,119,97,112,0,95,115,105,103,114,102,102,116,95,102,108,105,112,0,95,115,105,103,102,102,116,95,110,101,119,0,95,115,105,103,105,102,102, 116,95,110,101,119,0,95,115,105,103,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,105,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,102,102,116,95,100,115,112,120,0,95,115,105,103,102,102,116,95,100,115,112,0,95,115,105,103, 105,102,102,116,95,100,115,112,0,95,115,105,103,102,102,116,95,115,101,116,117,112,0,95,115,105,103,114,102,102,116,95,110,101,119,0,95,115,105,103,114,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,114,102,102,116,95,100,115,112,0,95,115, 105,103,114,102,102,116,95,115,101,116,117,112,0,95,115,105,103,114,105,102,102,116,95,110,101,119,0,95,115,105,103,114,105,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,114,105,102,102,116,95,100,115,112,0,95,115,105,103,114,105,102,102, 116,95,115,101,116,117,112,0,95,115,105,103,102,114,97,109,112,95,110,101,119,0,95,115,105,103,102,114,97,109,112,95,112,101,114,102,111,114,109,0,95,115,105,103,102,114,97,109,112,95,100,115,112,0,95,115,105,103,102,114,97,109,112,95,115,101,116,117, 112,0,95,115,105,103,104,105,112,95,110,101,119,0,95,115,105,103,104,105,112,95,102,116,49,0,95,115,105,103,104,105,112,95,112,101,114,102,111,114,109,0,95,115,105,103,104,105,112,95,100,115,112,0,95,115,105,103,104,105,112,95,99,108,101,97,114,0,95, 115,105,103,108,111,112,95,110,101,119,0,95,115,105,103,108,111,112,95,102,116,49,0,95,115,105,103,108,111,112,95,99,108,101,97,114,0,95,115,105,103,108,111,112,95,112,101,114,102,111,114,109,0,95,115,105,103,108,111,112,95,100,115,112,0,95,115,105,103, 98,112,95,110,101,119,0,95,115,105,103,98,112,95,113,99,111,115,0,95,115,105,103,98,112,95,100,111,99,111,101,102,0,95,115,105,103,98,112,95,102,116,49,0,95,115,105,103,98,112,95,102,116,50,0,95,115,105,103,98,112,95,99,108,101,97,114,0,95,115,105,103, 98,112,95,112,101,114,102,111,114,109,0,95,115,105,103,98,112,95,100,115,112,0,95,115,105,103,98,105,113,117,97,100,95,110,101,119,0,95,115,105,103,98,105,113,117,97,100,95,112,101,114,102,111,114,109,0,95,115,105,103,98,105,113,117,97,100,95,108,105, 115,116,0,95,115,105,103,98,105,113,117,97,100,95,115,101,116,0,95,115,105,103,98,105,113,117,97,100,95,100,115,112,0,95,115,105,103,115,97,109,112,104,111,108,100,95,110,101,119,0,95,115,105,103,115,97,109,112,104,111,108,100,95,112,101,114,102,111, 114,109,0,95,115,105,103,115,97,109,112,104,111,108,100,95,100,115,112,0,95,115,105,103,115,97,109,112,104,111,108,100,95,114,101,115,101,116,0,95,115,105,103,115,97,109,112,104,111,108,100,95,115,101,116,0,95,115,105,103,114,112,111,108,101,95,110,101, 119,0,95,115,105,103,114,112,111,108,101,95,112,101,114,102,111,114,109,0,95,115,105,103,114,112,111,108,101,95,100,115,112,0,95,115,105,103,114,112,111,108,101,95,99,108,101,97,114,0,95,115,105,103,114,112,111,108,101,95,115,101,116,0,95,115,105,103, 114,122,101,114,111,95,110,101,119,0,95,115,105,103,114,122,101,114,111,95,112,101,114,102,111,114,109,0,95,115,105,103,114,122,101,114,111,95,100,115,112,0,95,115,105,103,114,122,101,114,111,95,99,108,101,97,114,0,95,115,105,103,114,122,101,114,111, 95,115,101,116,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,110,101,119,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,112,101,114,102,111,114,109,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,100,115,112,0,95,115,105,103,114, 122,101,114,111,95,114,101,118,95,99,108,101,97,114,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,115,101,116,0,95,115,105,103,99,112,111,108,101,95,110,101,119,0,95,115,105,103,99,112,111,108,101,95,112,101,114,102,111,114,109,0,95,115,105, 103,99,112,111,108,101,95,100,115,112,0,95,115,105,103,99,112,111,108,101,95,99,108,101,97,114,0,95,115,105,103,99,112,111,108,101,95,115,101,116,0,95,115,105,103,99,122,101,114,111,95,110,101,119,0,95,115,105,103,99,122,101,114,111,95,112,101,114,102, 111,114,109,0,95,115,105,103,99,122,101,114,111,95,100,115,112,0,95,115,105,103,99,122,101,114,111,95,99,108,101,97,114,0,95,115,105,103,99,122,101,114,111,95,115,101,116,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,110,101,119,0,95,115,105, 103,99,122,101,114,111,95,114,101,118,95,112,101,114,102,111,114,109,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,100,115,112,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,99,108,101,97,114,0,95,115,105,103,99,122,101,114,111,95,114, 101,118,95,115,101,116,0,95,115,105,103,115,101,110,100,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,115,105,103,115,101,110,100,95,112,101,114,102,111,114,109,0,95,115,105,103,115,101,110,100,95,100, 115,112,0,95,115,105,103,115,101,110,100,95,102,114,101,101,0,95,115,105,103,115,101,110,100,95,115,101,116,117,112,0,95,115,105,103,114,101,99,101,105,118,101,95,110,101,119,0,95,115,105,103,114,101,99,101,105,118,101,95,112,101,114,102,111,114,109, 0,95,115,105,103,114,101,99,101,105,118,101,95,112,101,114,102,56,0,95,115,105,103,114,101,99,101,105,118,101,95,115,101,116,0,95,115,105,103,114,101,99,101,105,118,101,95,100,115,112,0,95,115,105,103,114,101,99,101,105,118,101,95,115,101,116,117,112, 0,95,115,105,103,99,97,116,99,104,95,110,101,119,0,95,115,105,103,99,97,116,99,104,95,112,101,114,102,111,114,109,0,95,115,105,103,99,97,116,99,104,95,112,101,114,102,56,0,95,115,105,103,99,97,116,99,104,95,100,115,112,0,95,115,105,103,99,97,116,99,104, 95,102,114,101,101,0,95,115,105,103,99,97,116,99,104,95,115,101,116,117,112,0,95,115,105,103,116,104,114,111,119,95,110,101,119,0,95,115,105,103,116,104,114,111,119,95,112,101,114,102,111,114,109,0,95,115,105,103,116,104,114,111,119,95,115,101,116,0, 95,115,105,103,116,104,114,111,119,95,100,115,112,0,95,115,105,103,116,104,114,111,119,95,115,101,116,117,112,0,95,99,108,105,112,95,110,101,119,0,95,99,108,105,112,95,112,101,114,102,111,114,109,0,95,99,108,105,112,95,100,115,112,0,95,99,108,105,112, 95,115,101,116,117,112,0,95,105,110,105,116,95,114,115,113,114,116,0,95,115,105,103,114,115,113,114,116,95,110,101,119,0,95,115,105,103,114,115,113,114,116,95,112,101,114,102,111,114,109,0,95,115,105,103,114,115,113,114,116,95,100,115,112,0,95,115,105, 103,115,113,114,116,95,110,101,119,0,95,115,105,103,115,113,114,116,95,100,115,112,0,95,115,105,103,119,114,97,112,95,110,101,119,0,95,115,105,103,119,114,97,112,95,112,101,114,102,111,114,109,0,95,115,105,103,119,114,97,112,95,100,115,112,0,95,109,116, 111,102,95,116,105,108,100,101,95,110,101,119,0,95,109,116,111,102,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,109,116,111,102,95,116,105,108,100,101,95,100,115,112,0,95,102,116,111,109,95,116,105,108,100,101,95,110,101,119,0,95,102,116, 111,109,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,102,116,111,109,95,116,105,108,100,101,95,100,115,112,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,110,101,119,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,112, 101,114,102,111,114,109,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,100,115,112,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,110,101,119,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,112,101,114,102,111,114,109, 0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,100,115,112,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,110,101,119,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,100,98,116,111,112, 111,119,95,116,105,108,100,101,95,100,115,112,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,110,101,119,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,112,111,119,116,111,100,98,95,116,105,108,100, 101,95,100,115,112,0,95,112,111,119,95,116,105,108,100,101,95,110,101,119,0,95,112,111,119,95,116,105,108,100,101,95,100,115,112,0,95,112,111,119,95,116,105,108,100,101,95,115,101,116,117,112,0,95,101,120,112,95,116,105,108,100,101,95,110,101,119,0,95, 101,120,112,95,116,105,108,100,101,95,100,115,112,0,95,101,120,112,95,116,105,108,100,101,95,115,101,116,117,112,0,95,108,111,103,95,116,105,108,100,101,95,110,101,119,0,95,108,111,103,95,116,105,108,100,101,95,100,115,112,0,95,108,111,103,95,116,105, 108,100,101,95,115,101,116,117,112,0,95,97,98,115,95,116,105,108,100,101,95,110,101,119,0,95,97,98,115,95,116,105,108,100,101,95,100,115,112,0,95,97,98,115,95,116,105,108,100,101,95,115,101,116,117,112,0,95,112,114,105,110,116,95,112,101,114,102,111, 114,109,0,95,112,114,105,110,116,95,100,115,112,0,95,112,114,105,110,116,95,102,108,111,97,116,0,95,112,114,105,110,116,95,98,97,110,103,0,95,112,114,105,110,116,95,110,101,119,0,95,112,114,105,110,116,95,115,101,116,117,112,0,95,98,97,110,103,95,116, 105,108,100,101,95,112,101,114,102,111,114,109,0,95,98,97,110,103,95,116,105,108,100,101,95,100,115,112,0,95,98,97,110,103,95,116,105,108,100,101,95,116,105,99,107,0,95,98,97,110,103,95,116,105,108,100,101,95,102,114,101,101,0,95,98,97,110,103,95,116, 105,108,100,101,95,110,101,119,0,95,98,97,110,103,95,116,105,108,100,101,95,115,101,116,117,112,0,95,112,104,97,115,111,114,95,110,101,119,0,95,112,104,97,115,111,114,95,112,101,114,102,111,114,109,0,95,112,104,97,115,111,114,95,100,115,112,0,95,112, 104,97,115,111,114,95,102,116,49,0,95,112,104,97,115,111,114,95,115,101,116,117,112,0,95,99,111,115,95,110,101,119,0,95,99,111,115,95,112,101,114,102,111,114,109,0,95,99,111,115,95,100,115,112,0,95,99,111,115,95,109,97,107,101,116,97,98,108,101,0,95, 99,111,115,95,115,101,116,117,112,0,95,111,115,99,95,110,101,119,0,95,111,115,99,95,112,101,114,102,111,114,109,0,95,111,115,99,95,100,115,112,0,95,111,115,99,95,102,116,49,0,95,111,115,99,95,115,101,116,117,112,0,95,115,105,103,118,99,102,95,110,101, 119,0,95,115,105,103,118,99,102,95,102,116,49,0,95,115,105,103,118,99,102,95,112,101,114,102,111,114,109,0,95,115,105,103,118,99,102,95,100,115,112,0,95,110,111,105,115,101,95,110,101,119,0,95,110,111,105,115,101,95,112,101,114,102,111,114,109,0,95,110, 111,105,115,101,95,100,115,112,0,95,110,111,105,115,101,95,115,101,116,117,112,0,95,115,119,97,112,52,0,95,115,119,97,112,50,0,95,115,119,97,112,115,116,114,105,110,103,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,105,110,95,115,97,109, 112,108,101,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,105,110,95,102,108,111,97,116,0,95,115,111,117,110,100,102,105,108,101,114,95,119,114,105,116,101,97,114,103,112,97,114,115,101,0,95,99,114,101,97,116,101,95,115,111,117,110,100, 102,105,108,101,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,95, 95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,115,111,117,110,100,102,105,108,101,95,102,105,110,105,115,104,119,114,105,116,101,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,111,117,116,95,115,97,109,112,108, 101,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,111,117,116,95,102,108,111,97,116,0,95,115,111,117,110,100,102,105,108,101,114,95,110,101,119,0,95,115,111,117,110,100,102,105,108,101,114,95,114,101,97,100,0,95,115,111,117,110,100,102, 105,108,101,114,95,119,114,105,116,101,0,95,115,111,117,110,100,102,105,108,101,114,95,115,101,116,117,112,0,95,114,101,97,100,115,102,95,99,104,105,108,100,95,109,97,105,110,0,95,114,101,97,100,115,102,95,110,101,119,0,95,114,101,97,100,115,102,95,116, 105,99,107,0,95,114,101,97,100,115,102,95,112,101,114,102,111,114,109,0,95,114,101,97,100,115,102,95,115,116,97,114,116,0,95,114,101,97,100,115,102,95,115,116,111,112,0,95,114,101,97,100,115,102,95,102,108,111,97,116,0,95,114,101,97,100,115,102,95,111, 112,101,110,0,95,114,101,97,100,115,102,95,100,115,112,0,95,114,101,97,100,115,102,95,112,114,105,110,116,0,95,114,101,97,100,115,102,95,102,114,101,101,0,95,114,101,97,100,115,102,95,115,101,116,117,112,0,95,119,114,105,116,101,115,102,95,99,104,105, 108,100,95,109,97,105,110,0,95,119,114,105,116,101,115,102,95,110,101,119,0,95,119,114,105,116,101,115,102,95,112,101,114,102,111,114,109,0,95,119,114,105,116,101,115,102,95,115,116,97,114,116,0,95,119,114,105,116,101,115,102,95,115,116,111,112,0,95, 119,114,105,116,101,115,102,95,111,112,101,110,0,95,119,114,105,116,101,115,102,95,100,115,112,0,95,119,114,105,116,101,115,102,95,112,114,105,110,116,0,95,119,114,105,116,101,115,102,95,102,114,101,101,0,95,119,114,105,116,101,115,102,95,115,101,116, 117,112,0,95,98,108,111,99,107,95,110,101,119,0,95,98,108,111,99,107,95,115,101,116,0,95,115,119,105,116,99,104,95,110,101,119,0,95,98,108,111,99,107,95,102,108,111,97,116,0,95,98,108,111,99,107,95,98,97,110,103,0,95,98,108,111,99,107,95,112,114,111, 108,111,103,0,95,98,108,111,99,107,95,101,112,105,108,111,103,0,95,98,108,111,99,107,95,100,115,112,0,95,100,115,112,95,100,111,110,101,0,95,115,105,103,110,97,108,95,110,101,119,108,105,107,101,0,95,117,103,101,110,95,105,110,100,101,120,0,95,117,103, 101,110,95,100,111,105,116,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100,101,95,98,97,110,103,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100,101,95,110,101,119,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100, 101,95,115,101,116,117,112,0,95,105,101,109,103,117,105,95,105,110,105,116,95,115,121,109,50,100,111,108,108,97,114,97,114,103,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109, 115,101,116,95,99,104,107,0,95,115,104,97,114,112,116,111,100,111,108,108,97,114,0,95,97,114,114,97,121,95,114,101,115,105,122,101,95,97,110,100,95,114,101,100,114,97,119,0,95,103,114,97,112,104,95,115,99,97,108,97,114,0,95,103,97,114,114,97,121,95,103, 101,116,97,114,114,97,121,95,102,108,111,97,116,111,110,108,121,0,95,103,97,114,114,97,121,95,102,105,116,116,111,103,114,97,112,104,0,95,103,97,114,114,97,121,95,102,114,101,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,0,95,97,114,114,97,121, 95,100,111,99,108,105,99,107,95,101,108,101,109,101,110,116,0,95,95,95,105,110,108,105,110,101,95,109,101,109,109,111,118,101,95,99,104,107,0,95,97,114,114,97,121,95,103,101,116,114,101,99,116,0,95,103,97,114,114,97,121,95,103,101,116,114,101,99,116, 0,95,103,97,114,114,97,121,95,100,105,115,112,108,97,99,101,0,95,103,97,114,114,97,121,95,115,101,108,101,99,116,0,95,103,97,114,114,97,121,95,97,99,116,105,118,97,116,101,0,95,103,97,114,114,97,121,95,100,101,108,101,116,101,0,95,103,97,114,114,97,121, 95,118,105,115,0,95,103,97,114,114,97,121,95,99,108,105,99,107,0,95,103,97,114,114,97,121,95,115,97,118,101,0,95,103,97,114,114,97,121,95,100,111,114,101,100,114,97,119,0,95,103,97,114,114,97,121,95,99,111,110,115,116,0,95,103,97,114,114,97,121,95,100, 111,102,111,0,95,103,97,114,114,97,121,95,115,105,110,101,115,117,109,0,95,103,97,114,114,97,121,95,99,111,115,105,110,101,115,117,109,0,95,103,97,114,114,97,121,95,110,111,114,109,97,108,105,122,101,0,95,103,97,114,114,97,121,95,108,105,115,116,0,95, 103,97,114,114,97,121,95,98,111,117,110,100,115,0,95,103,97,114,114,97,121,95,120,116,105,99,107,115,0,95,103,97,114,114,97,121,95,121,116,105,99,107,115,0,95,103,97,114,114,97,121,95,120,108,97,98,101,108,0,95,103,97,114,114,97,121,95,121,108,97,98, 101,108,0,95,103,97,114,114,97,121,95,114,101,110,97,109,101,0,95,103,97,114,114,97,121,95,114,101,97,100,0,95,103,97,114,114,97,121,95,119,114,105,116,101,0,95,103,97,114,114,97,121,95,112,114,105,110,116,0,95,98,110,103,95,103,101,116,114,101,99,116, 0,95,98,110,103,95,115,97,118,101,0,95,98,110,103,95,112,114,111,112,101,114,116,105,101,115,0,95,98,110,103,95,115,101,116,0,95,98,110,103,95,98,111,117,116,49,0,95,98,110,103,95,98,111,117,116,50,0,95,98,110,103,95,98,97,110,103,0,95,98,110,103,95, 98,97,110,103,50,0,95,98,110,103,95,100,105,97,108,111,103,0,95,98,110,103,95,99,108,105,99,107,0,95,98,110,103,95,110,101,119,99,108,105,99,107,0,95,98,110,103,95,102,108,111,97,116,0,95,98,110,103,95,115,121,109,98,111,108,0,95,98,110,103,95,112,111, 105,110,116,101,114,0,95,98,110,103,95,108,105,115,116,0,95,98,110,103,95,97,110,121,116,104,105,110,103,0,95,98,110,103,95,108,111,97,100,98,97,110,103,0,95,98,110,103,95,115,105,122,101,0,95,98,110,103,95,100,101,108,116,97,0,95,98,110,103,95,112,111, 115,0,95,98,110,103,95,102,108,97,115,104,116,105,109,101,0,95,98,110,103,95,99,111,108,111,114,0,95,98,110,103,95,115,101,110,100,0,95,98,110,103,95,114,101,99,101,105,118,101,0,95,98,110,103,95,108,97,98,101,108,0,95,98,110,103,95,108,97,98,101,108, 95,112,111,115,0,95,98,110,103,95,108,97,98,101,108,95,102,111,110,116,0,95,98,110,103,95,105,110,105,116,0,95,98,110,103,95,116,105,99,107,95,104,108,100,0,95,98,110,103,95,116,105,99,107,95,98,114,107,0,95,98,110,103,95,116,105,99,107,95,108,99,107, 0,95,98,110,103,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,98,110,103,95,102,102,0,95,99,97,110,118,97,115,95,97,100,100,116,111,108,105,115,116,0,95,99,97,110,118,97,115,95,116,97,107,101,111,102,102, 108,105,115,116,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,97,116,95,99,104,107,0,95, 95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,99,97,110,118,97,115,95,99,111,111,114,100,115,0,95,99,97,110,118,97,115,95,115,101,116,98,111,117,110,100,115,0,95,99,97,110,118,97,115,95,100,111,115,101,116,98,111,117,110, 100,115,0,95,99,97,110,118,97,115,95,100,114,97,119,108,105,110,101,115,0,95,99,97,110,118,97,115,95,112,111,112,0,95,99,97,110,118,97,115,95,108,111,97,100,98,97,110,103,97,98,115,116,114,97,99,116,105,111,110,115,0,95,99,97,110,118,97,115,95,114,101, 108,111,99,97,116,101,0,95,115,117,98,99,97,110,118,97,115,95,110,101,119,0,95,99,97,110,118,97,115,95,99,108,105,99,107,0,95,99,97,110,118,97,115,95,114,101,110,97,109,101,95,109,101,116,104,111,100,0,95,116,97,98,108,101,95,110,101,119,0,95,99,97,110, 118,97,115,95,100,111,100,115,112,0,95,99,97,110,118,97,115,95,100,115,112,0,95,99,97,110,118,97,115,95,115,116,97,114,116,95,100,115,112,0,95,99,97,110,118,97,115,95,115,116,111,112,95,100,115,112,0,95,103,108,105,115,116,95,114,101,100,114,97,119,97, 108,108,0,95,100,101,99,108,97,114,101,95,110,101,119,0,95,100,101,99,108,97,114,101,95,102,114,101,101,0,95,99,97,110,118,97,115,95,99,111,109,112,108,101,116,101,112,97,116,104,0,95,99,97,110,118,97,115,95,100,101,99,108,97,114,101,0,95,103,108,105, 115,116,95,99,104,101,99,107,97,110,100,100,101,115,101,108,101,99,116,97,108,108,0,95,103,108,105,115,116,95,110,116,104,0,95,99,97,110,118,97,115,95,117,110,100,111,0,95,99,97,110,118,97,115,95,114,101,100,111,0,95,99,97,110,118,97,115,95,117,110,100, 111,95,115,101,116,95,100,105,115,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,100,105,115,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,99,111,110,110,101,99,116,0,95,99,97,110, 118,97,115,95,117,110,100,111,95,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,99,117,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,99,117,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116, 95,109,111,118,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,109,111,118,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,112,97,115,116,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,112,97,115,116,101,0,95,103,108,105,115, 116,95,100,111,114,101,108,111,97,100,0,95,99,97,110,118,97,115,95,102,105,110,100,104,105,116,98,111,120,0,95,99,97,110,118,97,115,95,114,105,103,104,116,99,108,105,99,107,0,95,101,100,105,116,111,114,95,110,101,119,0,95,101,100,105,116,111,114,95,102, 114,101,101,0,95,99,97,110,118,97,115,95,100,111,110,101,99,97,110,118,97,115,100,105,97,108,111,103,0,95,99,97,110,118,97,115,95,100,111,110,101,95,112,111,112,117,112,0,95,99,97,110,118,97,115,95,100,111,114,101,103,105,111,110,0,95,99,97,110,118,97, 115,95,100,105,115,112,108,97,99,101,115,101,108,101,99,116,105,111,110,0,95,100,101,108,97,121,95,109,111,118,101,0,95,103,108,105,115,116,95,102,105,110,100,100,105,114,116,121,0,95,99,97,110,118,97,115,95,109,101,110,117,102,111,110,116,0,95,99,97, 110,118,97,115,95,100,111,102,105,110,100,0,95,99,97,110,118,97,115,95,102,105,110,100,0,95,99,97,110,118,97,115,95,102,105,110,100,95,97,103,97,105,110,0,95,99,97,110,118,97,115,95,102,105,110,100,95,112,97,114,101,110,116,0,95,103,108,105,115,116,95, 100,111,102,105,110,100,101,114,114,111,114,0,95,99,97,110,118,97,115,95,100,111,99,111,112,121,0,95,99,97,110,118,97,115,95,99,111,112,121,0,95,99,97,110,118,97,115,95,99,108,101,97,114,108,105,110,101,0,95,99,97,110,118,97,115,95,100,111,99,108,101, 97,114,0,95,99,97,110,118,97,115,95,99,117,116,0,95,103,108,105,115,116,95,100,111,110,101,119,108,111,97,100,98,97,110,103,115,0,95,99,97,110,118,97,115,95,100,111,112,97,115,116,101,0,95,99,97,110,118,97,115,95,112,97,115,116,101,0,95,99,97,110,118, 97,115,95,100,117,112,108,105,99,97,116,101,0,95,99,97,110,118,97,115,95,115,101,108,101,99,116,97,108,108,0,95,99,97,110,118,97,115,95,114,101,115,101,108,101,99,116,0,95,99,97,110,118,97,115,95,116,105,100,121,0,95,99,97,110,118,97,115,95,116,101,120, 116,101,100,105,116,111,114,0,95,99,97,110,118,97,115,95,100,111,102,111,110,116,0,95,99,97,110,118,97,115,95,102,111,110,116,0,95,103,108,105,115,116,95,115,101,116,108,97,115,116,120,121,0,95,103,111,98,106,95,103,101,116,120,102,111,114,115,111,114, 116,0,95,103,108,105,115,116,95,109,101,114,103,101,0,95,103,108,105,115,116,95,100,111,115,111,114,116,0,95,103,114,97,112,104,95,98,111,117,110,100,115,0,95,103,114,97,112,104,95,120,116,105,99,107,115,0,95,103,114,97,112,104,95,121,116,105,99,107, 115,0,95,103,114,97,112,104,95,120,108,97,98,101,108,0,95,103,114,97,112,104,95,121,108,97,98,101,108,0,95,103,114,97,112,104,95,118,105,115,0,95,103,114,97,112,104,95,103,114,97,112,104,114,101,99,116,0,95,103,114,97,112,104,95,103,101,116,114,101,99, 116,0,95,103,114,97,112,104,95,100,105,115,112,108,97,99,101,0,95,103,114,97,112,104,95,115,101,108,101,99,116,0,95,103,114,97,112,104,95,97,99,116,105,118,97,116,101,0,95,103,114,97,112,104,95,100,101,108,101,116,101,0,95,103,114,97,112,104,95,109,111, 116,105,111,110,0,95,103,114,97,112,104,95,99,108,105,99,107,0,95,103,117,105,99,111,110,110,101,99,116,95,102,114,101,101,0,95,103,117,105,99,111,110,110,101,99,116,95,116,105,99,107,0,95,103,117,105,99,111,110,110,101,99,116,95,97,110,121,116,104,105, 110,103,0,95,103,117,105,99,111,110,110,101,99,116,95,115,105,103,110,111,102,102,0,95,104,114,97,100,105,111,95,103,101,116,114,101,99,116,0,95,104,114,97,100,105,111,95,115,97,118,101,0,95,104,114,97,100,105,111,95,112,114,111,112,101,114,116,105,101, 115,0,95,104,114,97,100,105,111,95,100,105,97,108,111,103,0,95,104,114,97,100,105,111,95,115,101,116,0,95,104,114,97,100,105,111,95,98,97,110,103,0,95,104,114,97,100,105,111,95,102,111,117,116,0,95,104,114,97,100,105,111,95,102,108,111,97,116,0,95,104, 114,97,100,105,111,95,99,108,105,99,107,0,95,104,114,97,100,105,111,95,110,101,119,99,108,105,99,107,0,95,104,114,97,100,105,111,95,108,111,97,100,98,97,110,103,0,95,104,114,97,100,105,111,95,110,117,109,98,101,114,0,95,104,114,97,100,105,111,95,115, 105,122,101,0,95,104,114,97,100,105,111,95,100,101,108,116,97,0,95,104,114,97,100,105,111,95,112,111,115,0,95,104,114,97,100,105,111,95,99,111,108,111,114,0,95,104,114,97,100,105,111,95,115,101,110,100,0,95,104,114,97,100,105,111,95,114,101,99,101,105, 118,101,0,95,104,114,97,100,105,111,95,108,97,98,101,108,0,95,104,114,97,100,105,111,95,108,97,98,101,108,95,112,111,115,0,95,104,114,97,100,105,111,95,108,97,98,101,108,95,102,111,110,116,0,95,104,114,97,100,105,111,95,105,110,105,116,0,95,104,114,97, 100,105,111,95,100,111,117,98,108,101,95,99,104,97,110,103,101,0,95,104,114,97,100,105,111,95,115,105,110,103,108,101,95,99,104,97,110,103,101,0,95,104,114,97,100,105,111,95,100,111,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112, 121,95,99,104,107,0,95,104,114,97,100,105,111,95,110,101,119,0,95,104,100,105,97,108,95,110,101,119,0,95,104,114,97,100,105,111,95,102,102,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,117,112,100,97,116,101,0,95,104,115,108,105,100,101,114,95, 100,114,97,119,95,110,101,119,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,109,111,118,101,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,101,114,97,115,101,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,99,111,110,102,105,103, 0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,105,111,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,115,101,108,101,99,116,0,95,104,115,108,105,100,101,114,95,103,101,116,114,101,99,116,0,95,104,115,108,105,100,101,114,95,115,97,118,101, 0,95,104,115,108,105,100,101,114,95,112,114,111,112,101,114,116,105,101,115,0,95,104,115,108,105,100,101,114,95,115,101,116,0,95,104,115,108,105,100,101,114,95,98,97,110,103,0,95,104,115,108,105,100,101,114,95,100,105,97,108,111,103,0,95,104,115,108, 105,100,101,114,95,109,111,116,105,111,110,0,95,104,115,108,105,100,101,114,95,99,108,105,99,107,0,95,104,115,108,105,100,101,114,95,110,101,119,99,108,105,99,107,0,95,104,115,108,105,100,101,114,95,115,105,122,101,0,95,104,115,108,105,100,101,114,95, 100,101,108,116,97,0,95,104,115,108,105,100,101,114,95,112,111,115,0,95,104,115,108,105,100,101,114,95,114,97,110,103,101,0,95,104,115,108,105,100,101,114,95,99,111,108,111,114,0,95,104,115,108,105,100,101,114,95,115,101,110,100,0,95,104,115,108,105, 100,101,114,95,114,101,99,101,105,118,101,0,95,104,115,108,105,100,101,114,95,108,97,98,101,108,0,95,104,115,108,105,100,101,114,95,108,97,98,101,108,95,112,111,115,0,95,104,115,108,105,100,101,114,95,108,97,98,101,108,95,102,111,110,116,0,95,104,115, 108,105,100,101,114,95,108,111,103,0,95,104,115,108,105,100,101,114,95,108,105,110,0,95,104,115,108,105,100,101,114,95,105,110,105,116,0,95,104,115,108,105,100,101,114,95,115,116,101,97,100,121,0,95,104,115,108,105,100,101,114,95,102,108,111,97,116,0, 95,104,115,108,105,100,101,114,95,108,111,97,100,98,97,110,103,0,95,104,115,108,105,100,101,114,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,104,115,108,105,100,101,114,95,102,114,101,101,0,95,118,105, 110,108,101,116,95,110,101,119,0,95,118,105,110,108,101,116,95,98,97,110,103,0,95,118,105,110,108,101,116,95,112,111,105,110,116,101,114,0,95,118,105,110,108,101,116,95,102,108,111,97,116,0,95,118,105,110,108,101,116,95,115,121,109,98,111,108,0,95,118, 105,110,108,101,116,95,108,105,115,116,0,95,118,105,110,108,101,116,95,97,110,121,116,104,105,110,103,0,95,118,105,110,108,101,116,95,102,114,101,101,0,95,118,105,110,108,101,116,95,100,115,112,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101, 116,95,99,104,107,0,95,118,105,110,108,101,116,95,110,101,119,115,105,103,0,95,118,105,110,108,101,116,95,115,101,116,117,112,0,95,118,111,117,116,108,101,116,95,110,101,119,0,95,118,111,117,116,108,101,116,95,98,97,110,103,0,95,118,111,117,116,108,101, 116,95,112,111,105,110,116,101,114,0,95,118,111,117,116,108,101,116,95,102,108,111,97,116,0,95,118,111,117,116,108,101,116,95,115,121,109,98,111,108,0,95,118,111,117,116,108,101,116,95,108,105,115,116,0,95,118,111,117,116,108,101,116,95,97,110,121,116, 104,105,110,103,0,95,118,111,117,116,108,101,116,95,102,114,101,101,0,95,118,111,117,116,108,101,116,95,100,111,101,112,105,108,111,103,0,95,118,111,117,116,108,101,116,95,100,111,101,112,105,108,111,103,95,114,101,115,97,109,112,108,105,110,103,0,95, 118,111,117,116,108,101,116,95,100,115,112,0,95,118,111,117,116,108,101,116,95,110,101,119,115,105,103,0,95,118,111,117,116,108,101,116,95,115,101,116,117,112,0,95,109,121,95,99,97,110,118,97,115,95,103,101,116,114,101,99,116,0,95,109,121,95,99,97,110, 118,97,115,95,115,97,118,101,0,95,109,121,95,99,97,110,118,97,115,95,112,114,111,112,101,114,116,105,101,115,0,95,109,121,95,99,97,110,118,97,115,95,103,101,116,95,112,111,115,0,95,109,121,95,99,97,110,118,97,115,95,100,105,97,108,111,103,0,95,109,121, 95,99,97,110,118,97,115,95,115,105,122,101,0,95,109,121,95,99,97,110,118,97,115,95,100,101,108,116,97,0,95,109,121,95,99,97,110,118,97,115,95,112,111,115,0,95,109,121,95,99,97,110,118,97,115,95,118,105,115,95,115,105,122,101,0,95,109,121,95,99,97,110, 118,97,115,95,99,111,108,111,114,0,95,109,121,95,99,97,110,118,97,115,95,115,101,110,100,0,95,109,121,95,99,97,110,118,97,115,95,114,101,99,101,105,118,101,0,95,109,121,95,99,97,110,118,97,115,95,108,97,98,101,108,0,95,109,121,95,99,97,110,118,97,115, 95,108,97,98,101,108,95,112,111,115,0,95,109,121,95,99,97,110,118,97,115,95,108,97,98,101,108,95,102,111,110,116,0,95,109,121,95,99,97,110,118,97,115,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,109,121, 95,99,97,110,118,97,115,95,102,102,0,95,109,121,95,110,117,109,98,111,120,95,116,105,99,107,95,114,101,115,101,116,0,95,109,121,95,110,117,109,98,111,120,95,116,105,99,107,95,119,97,105,116,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95, 117,112,100,97,116,101,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,110,101,119,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,109,111,118,101,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,101,114,97,115,101, 0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,99,111,110,102,105,103,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,105,111,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,115,101,108,101,99,116,0,95,109,121,95, 110,117,109,98,111,120,95,103,101,116,114,101,99,116,0,95,109,121,95,110,117,109,98,111,120,95,115,97,118,101,0,95,109,121,95,110,117,109,98,111,120,95,112,114,111,112,101,114,116,105,101,115,0,95,109,121,95,110,117,109,98,111,120,95,98,97,110,103,0, 95,109,121,95,110,117,109,98,111,120,95,100,105,97,108,111,103,0,95,109,121,95,110,117,109,98,111,120,95,109,111,116,105,111,110,0,95,109,121,95,110,117,109,98,111,120,95,99,108,105,99,107,0,95,109,121,95,110,117,109,98,111,120,95,110,101,119,99,108, 105,99,107,0,95,109,121,95,110,117,109,98,111,120,95,115,101,116,0,95,109,121,95,110,117,109,98,111,120,95,108,111,103,95,104,101,105,103,104,116,0,95,109,121,95,110,117,109,98,111,120,95,102,108,111,97,116,0,95,109,121,95,110,117,109,98,111,120,95,115, 105,122,101,0,95,109,121,95,110,117,109,98,111,120,95,100,101,108,116,97,0,95,109,121,95,110,117,109,98,111,120,95,112,111,115,0,95,109,121,95,110,117,109,98,111,120,95,114,97,110,103,101,0,95,109,121,95,110,117,109,98,111,120,95,99,111,108,111,114,0, 95,109,121,95,110,117,109,98,111,120,95,115,101,110,100,0,95,109,121,95,110,117,109,98,111,120,95,114,101,99,101,105,118,101,0,95,109,121,95,110,117,109,98,111,120,95,108,97,98,101,108,0,95,109,121,95,110,117,109,98,111,120,95,108,97,98,101,108,95,112, 111,115,0,95,109,121,95,110,117,109,98,111,120,95,108,97,98,101,108,95,102,111,110,116,0,95,109,121,95,110,117,109,98,111,120,95,108,111,103,0,95,109,121,95,110,117,109,98,111,120,95,108,105,110,0,95,109,121,95,110,117,109,98,111,120,95,105,110,105,116, 0,95,109,121,95,110,117,109,98,111,120,95,108,111,97,100,98,97,110,103,0,95,109,121,95,110,117,109,98,111,120,95,107,101,121,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,109,121,95,110,117,109,98,111,120,95,108,105,115, 116,0,95,109,121,95,110,117,109,98,111,120,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,109,121,95,110,117,109,98,111,120,95,102,114,101,101,0,95,99,97,110,118,97,115,95,115,99,97,110,98,105,110,98,117, 102,0,95,99,97,110,118,97,115,95,114,101,97,100,101,114,114,111,114,0,95,103,108,105,115,116,95,114,101,97,100,97,116,111,109,115,0,95,103,108,105,115,116,95,100,111,114,101,97,100,0,95,103,108,105,115,116,95,119,114,105,116,101,108,105,115,116,0,95, 99,97,110,118,97,115,95,97,100,100,116,101,109,112,108,97,116,101,115,102,111,114,115,99,97,108,97,114,0,95,99,97,110,118,97,115,95,97,100,100,116,101,109,112,108,97,116,101,115,102,111,114,108,105,115,116,0,95,103,108,105,115,116,95,119,114,105,116, 101,0,95,99,97,110,118,97,115,95,115,97,118,101,116,111,0,95,99,97,110,118,97,115,95,99,111,108,108,101,99,116,116,101,109,112,108,97,116,101,115,102,111,114,0,95,99,97,110,118,97,115,95,115,97,118,101,116,101,109,112,108,97,116,101,115,116,111,0,95, 99,97,110,118,97,115,95,115,97,118,101,116,111,102,105,108,101,0,95,99,97,110,118,97,115,95,109,101,110,117,115,97,118,101,97,115,0,95,99,97,110,118,97,115,95,109,101,110,117,115,97,118,101,0,95,114,116,101,120,116,95,103,101,116,116,121,112,101,0,95, 102,105,114,115,116,111,110,101,0,95,108,97,115,116,111,110,101,0,95,114,116,101,120,116,95,115,101,110,100,105,116,117,112,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,115,99,97,108,97,114,95,103,101,116,114,101, 99,116,0,95,115,99,97,108,97,114,95,100,114,97,119,115,101,108,101,99,116,114,101,99,116,0,95,115,99,97,108,97,114,95,115,101,108,101,99,116,0,95,115,99,97,108,97,114,95,100,105,115,112,108,97,99,101,0,95,115,99,97,108,97,114,95,97,99,116,105,118,97, 116,101,0,95,115,99,97,108,97,114,95,100,101,108,101,116,101,0,95,115,99,97,108,97,114,95,118,105,115,0,95,115,99,97,108,97,114,95,100,111,114,101,100,114,97,119,0,95,115,99,97,108,97,114,95,99,108,105,99,107,0,95,115,99,97,108,97,114,95,115,97,118,101, 0,95,115,99,97,108,97,114,95,112,114,111,112,101,114,116,105,101,115,0,95,115,99,97,108,97,114,95,102,114,101,101,0,95,100,97,116,97,115,108,111,116,95,109,97,116,99,104,101,115,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,119,111, 114,100,115,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,115,99,97,108,97,114,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,97,114,114,97,121,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,103, 108,105,115,116,0,95,116,101,109,112,108,97,116,101,95,117,115,101,116,101,109,112,108,97,116,101,0,95,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,103,116,101,109,112,108,97,116,101,95,100,111,110,101,119,0,95,103,116,101,109,112,108,97, 116,101,95,110,101,119,0,95,103,116,101,109,112,108,97,116,101,95,110,101,119,95,111,108,100,0,95,103,116,101,109,112,108,97,116,101,95,102,114,101,101,0,95,103,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,102,105,101,108,100,100,101,115, 99,95,115,101,116,102,108,111,97,116,95,99,111,110,115,116,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,115,121,109,98,111,108,95,99,111,110,115,116,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,102,108,111,97,116,95,118,97,114,0,95, 102,105,101,108,100,100,101,115,99,95,115,101,116,102,108,111,97,116,97,114,103,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,115,121,109,98,111,108,97,114,103,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,97,114,114,97,121,97,114,103, 0,95,102,105,101,108,100,100,101,115,99,95,103,101,116,102,108,111,97,116,0,95,102,105,101,108,100,100,101,115,99,95,103,101,116,115,121,109,98,111,108,0,95,99,117,114,118,101,95,110,101,119,0,95,99,117,114,118,101,95,103,101,116,114,101,99,116,0,95, 99,117,114,118,101,95,100,105,115,112,108,97,99,101,0,95,99,117,114,118,101,95,115,101,108,101,99,116,0,95,99,117,114,118,101,95,97,99,116,105,118,97,116,101,0,95,114,97,110,103,101,99,111,108,111,114,0,95,110,117,109,98,101,114,116,111,99,111,108,111, 114,0,95,99,117,114,118,101,95,118,105,115,0,95,99,117,114,118,101,95,109,111,116,105,111,110,0,95,99,117,114,118,101,95,99,108,105,99,107,0,95,99,117,114,118,101,95,102,114,101,101,0,95,99,117,114,118,101,95,115,101,116,117,112,0,95,112,108,111,116, 95,110,101,119,0,95,112,108,111,116,95,114,101,97,100,111,119,110,101,114,116,101,109,112,108,97,116,101,0,95,112,108,111,116,95,103,101,116,114,101,99,116,0,95,112,108,111,116,95,100,105,115,112,108,97,99,101,0,95,112,108,111,116,95,115,101,108,101, 99,116,0,95,112,108,111,116,95,97,99,116,105,118,97,116,101,0,95,112,108,111,116,95,118,105,115,0,95,112,108,111,116,95,99,108,105,99,107,0,95,112,108,111,116,95,115,101,116,117,112,0,95,100,114,97,119,110,117,109,98,101,114,95,110,101,119,0,95,100,114, 97,119,110,117,109,98,101,114,95,115,112,114,105,110,116,102,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,100,114,97,119,110,117,109,98,101,114,95,103,101,116,114,101,99,116,0,95,100,114,97,119,110,117,109,98,101, 114,95,100,105,115,112,108,97,99,101,0,95,100,114,97,119,110,117,109,98,101,114,95,115,101,108,101,99,116,0,95,100,114,97,119,110,117,109,98,101,114,95,97,99,116,105,118,97,116,101,0,95,100,114,97,119,110,117,109,98,101,114,95,118,105,115,0,95,100,114, 97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,0,95,100,114,97,119,110,117,109,98,101,114,95,107,101,121,0,95,100,114,97,119,110,117,109,98,101,114,95,99,108,105,99,107,0,95,100,114,97,119,110,117,109,98,101,114,95,102,114,101,101,0,95,100, 114,97,119,110,117,109,98,101,114,95,115,101,116,117,112,0,95,99,97,110,118,97,115,95,111,98,106,116,101,120,116,0,95,99,97,110,118,97,115,95,104,111,119,112,117,116,110,101,119,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,98,97,110,103, 0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,102,108,111,97,116,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,115,121,109,98,111,108,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,108,105,115,116,0,95,109,101, 115,115,114,101,115,112,111,110,100,101,114,95,97,110,121,116,104,105,110,103,0,95,109,101,115,115,97,103,101,95,98,97,110,103,0,95,109,101,115,115,97,103,101,95,102,108,111,97,116,0,95,109,101,115,115,97,103,101,95,115,121,109,98,111,108,0,95,109,101, 115,115,97,103,101,95,108,105,115,116,0,95,109,101,115,115,97,103,101,95,115,101,116,0,95,109,101,115,115,97,103,101,95,97,100,100,50,0,95,109,101,115,115,97,103,101,95,97,100,100,0,95,109,101,115,115,97,103,101,95,97,100,100,99,111,109,109,97,0,95,109, 101,115,115,97,103,101,95,97,100,100,115,101,109,105,0,95,109,101,115,115,97,103,101,95,97,100,100,100,111,108,108,97,114,0,95,109,101,115,115,97,103,101,95,97,100,100,100,111,108,108,115,121,109,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110, 99,112,121,95,99,104,107,0,95,109,101,115,115,97,103,101,95,99,108,105,99,107,0,95,109,101,115,115,97,103,101,95,116,105,99,107,0,95,109,101,115,115,97,103,101,95,102,114,101,101,0,95,103,97,116,111,109,95,101,115,99,97,112,105,116,0,95,103,97,116,111, 109,95,117,110,101,115,99,97,112,105,116,0,95,103,97,116,111,109,95,114,101,100,114,97,119,0,95,103,97,116,111,109,95,114,101,116,101,120,116,0,95,103,97,116,111,109,95,115,101,116,0,95,103,97,116,111,109,95,98,97,110,103,0,95,103,97,116,111,109,95,102, 108,111,97,116,0,95,103,97,116,111,109,95,99,108,105,112,102,108,111,97,116,0,95,103,97,116,111,109,95,115,121,109,98,111,108,0,95,103,97,116,111,109,95,108,105,115,116,0,95,103,97,116,111,109,95,109,111,116,105,111,110,0,95,103,97,116,111,109,95,107, 101,121,0,95,103,97,116,111,109,95,99,108,105,99,107,0,95,103,97,116,111,109,95,112,97,114,97,109,0,95,103,97,116,111,109,95,103,101,116,119,104,101,114,101,108,97,98,101,108,0,95,103,97,116,111,109,95,100,105,115,112,108,97,99,101,0,95,103,97,116,111, 109,95,118,105,115,0,95,103,97,116,111,109,95,102,114,101,101,0,95,103,97,116,111,109,95,112,114,111,112,101,114,116,105,101,115,0,95,116,101,120,116,95,103,101,116,114,101,99,116,0,95,116,101,120,116,95,100,105,115,112,108,97,99,101,0,95,116,101,120, 116,95,115,101,108,101,99,116,0,95,116,101,120,116,95,97,99,116,105,118,97,116,101,0,95,116,101,120,116,95,100,101,108,101,116,101,0,95,116,101,120,116,95,118,105,115,0,95,116,101,120,116,95,99,108,105,99,107,0,95,116,101,120,116,95,97,110,121,116,104, 105,110,103,0,95,116,111,103,103,108,101,95,103,101,116,114,101,99,116,0,95,116,111,103,103,108,101,95,115,97,118,101,0,95,116,111,103,103,108,101,95,112,114,111,112,101,114,116,105,101,115,0,95,116,111,103,103,108,101,95,98,97,110,103,0,95,116,111,103, 103,108,101,95,100,105,97,108,111,103,0,95,116,111,103,103,108,101,95,99,108,105,99,107,0,95,116,111,103,103,108,101,95,110,101,119,99,108,105,99,107,0,95,116,111,103,103,108,101,95,115,101,116,0,95,116,111,103,103,108,101,95,102,108,111,97,116,0,95, 116,111,103,103,108,101,95,102,111,117,116,0,95,116,111,103,103,108,101,95,108,111,97,100,98,97,110,103,0,95,116,111,103,103,108,101,95,115,105,122,101,0,95,116,111,103,103,108,101,95,100,101,108,116,97,0,95,116,111,103,103,108,101,95,112,111,115,0,95, 116,111,103,103,108,101,95,99,111,108,111,114,0,95,116,111,103,103,108,101,95,115,101,110,100,0,95,116,111,103,103,108,101,95,114,101,99,101,105,118,101,0,95,116,111,103,103,108,101,95,108,97,98,101,108,0,95,116,111,103,103,108,101,95,108,97,98,101,108, 95,102,111,110,116,0,95,116,111,103,103,108,101,95,108,97,98,101,108,95,112,111,115,0,95,116,111,103,103,108,101,95,105,110,105,116,0,95,116,111,103,103,108,101,95,110,111,110,122,101,114,111,0,95,116,111,103,103,108,101,95,110,101,119,0,95,95,95,105, 110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,116,111,103,103,108,101,95,102,102,0,95,103,115,116,117,98,95,100,105,115,0,95,103,112,111,105,110,116,101,114,95,103,101,116,116,101,109,112,108,97,116,101,115,121,109,0,95,112,116,114, 111,98,106,95,110,101,119,0,95,112,116,114,111,98,106,95,116,114,97,118,101,114,115,101,0,95,112,116,114,111,98,106,95,118,110,101,120,116,0,95,112,116,114,111,98,106,95,110,101,120,116,0,95,112,116,114,111,98,106,95,115,101,110,100,119,105,110,100,111, 119,0,95,112,116,114,111,98,106,95,98,97,110,103,0,95,112,116,114,111,98,106,95,112,111,105,110,116,101,114,0,95,112,116,114,111,98,106,95,114,101,119,105,110,100,0,95,112,116,114,111,98,106,95,102,114,101,101,0,95,112,116,114,111,98,106,95,115,101,116, 117,112,0,95,103,101,116,95,110,101,119,0,95,103,101,116,95,112,111,105,110,116,101,114,0,95,103,101,116,95,102,114,101,101,0,95,103,101,116,95,115,101,116,117,112,0,95,115,101,116,95,110,101,119,0,95,115,101,116,95,98,97,110,103,0,95,115,101,116,95, 102,108,111,97,116,0,95,115,101,116,95,115,121,109,98,111,108,0,95,115,101,116,95,102,114,101,101,0,95,115,101,116,95,115,101,116,117,112,0,95,101,108,101,109,95,110,101,119,0,95,101,108,101,109,95,102,108,111,97,116,0,95,101,108,101,109,95,102,114,101, 101,0,95,101,108,101,109,95,115,101,116,117,112,0,95,103,101,116,115,105,122,101,95,110,101,119,0,95,103,101,116,115,105,122,101,95,112,111,105,110,116,101,114,0,95,103,101,116,115,105,122,101,95,115,101,116,117,112,0,95,115,101,116,115,105,122,101,95, 110,101,119,0,95,115,101,116,115,105,122,101,95,102,108,111,97,116,0,95,115,101,116,115,105,122,101,95,102,114,101,101,0,95,115,101,116,115,105,122,101,95,115,101,116,117,112,0,95,97,112,112,101,110,100,95,110,101,119,0,95,97,112,112,101,110,100,95,102, 108,111,97,116,0,95,97,112,112,101,110,100,95,102,114,101,101,0,95,97,112,112,101,110,100,95,115,101,116,117,112,0,95,115,117,98,108,105,115,116,95,110,101,119,0,95,115,117,98,108,105,115,116,95,112,111,105,110,116,101,114,0,95,115,117,98,108,105,115, 116,95,102,114,101,101,0,95,115,117,98,108,105,115,116,95,115,101,116,117,112,0,95,118,114,97,100,105,111,95,103,101,116,114,101,99,116,0,95,118,114,97,100,105,111,95,115,97,118,101,0,95,118,114,97,100,105,111,95,112,114,111,112,101,114,116,105,101,115, 0,95,118,114,97,100,105,111,95,100,105,97,108,111,103,0,95,118,114,97,100,105,111,95,115,101,116,0,95,118,114,97,100,105,111,95,98,97,110,103,0,95,118,114,97,100,105,111,95,102,111,117,116,0,95,118,114,97,100,105,111,95,102,108,111,97,116,0,95,118,114, 97,100,105,111,95,99,108,105,99,107,0,95,118,114,97,100,105,111,95,110,101,119,99,108,105,99,107,0,95,118,114,97,100,105,111,95,108,111,97,100,98,97,110,103,0,95,118,114,97,100,105,111,95,110,117,109,98,101,114,0,95,118,114,97,100,105,111,95,115,105, 122,101,0,95,118,114,97,100,105,111,95,100,101,108,116,97,0,95,118,114,97,100,105,111,95,112,111,115,0,95,118,114,97,100,105,111,95,99,111,108,111,114,0,95,118,114,97,100,105,111,95,115,101,110,100,0,95,118,114,97,100,105,111,95,114,101,99,101,105,118, 101,0,95,118,114,97,100,105,111,95,108,97,98,101,108,0,95,118,114,97,100,105,111,95,108,97,98,101,108,95,112,111,115,0,95,118,114,97,100,105,111,95,108,97,98,101,108,95,102,111,110,116,0,95,118,114,97,100,105,111,95,105,110,105,116,0,95,118,114,97,100, 105,111,95,100,111,117,98,108,101,95,99,104,97,110,103,101,0,95,118,114,97,100,105,111,95,115,105,110,103,108,101,95,99,104,97,110,103,101,0,95,118,114,97,100,105,111,95,100,111,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121, 95,99,104,107,0,95,118,114,97,100,105,111,95,110,101,119,0,95,118,100,105,97,108,95,110,101,119,0,95,118,114,97,100,105,111,95,102,102,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,115,108,105,100,101,114,95,100, 114,97,119,95,110,101,119,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,109,111,118,101,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,101,114,97,115,101,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,99,111,110,102,105,103,0,95, 118,115,108,105,100,101,114,95,100,114,97,119,95,105,111,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,115,108,105,100,101,114,95,103,101,116,114,101,99,116,0,95,118,115,108,105,100,101,114,95,115,97,118,101,0, 95,118,115,108,105,100,101,114,95,112,114,111,112,101,114,116,105,101,115,0,95,118,115,108,105,100,101,114,95,98,97,110,103,0,95,118,115,108,105,100,101,114,95,100,105,97,108,111,103,0,95,118,115,108,105,100,101,114,95,109,111,116,105,111,110,0,95,118, 115,108,105,100,101,114,95,99,108,105,99,107,0,95,118,115,108,105,100,101,114,95,110,101,119,99,108,105,99,107,0,95,118,115,108,105,100,101,114,95,115,101,116,0,95,118,115,108,105,100,101,114,95,102,108,111,97,116,0,95,118,115,108,105,100,101,114,95, 115,105,122,101,0,95,118,115,108,105,100,101,114,95,100,101,108,116,97,0,95,118,115,108,105,100,101,114,95,112,111,115,0,95,118,115,108,105,100,101,114,95,114,97,110,103,101,0,95,118,115,108,105,100,101,114,95,99,111,108,111,114,0,95,118,115,108,105, 100,101,114,95,115,101,110,100,0,95,118,115,108,105,100,101,114,95,114,101,99,101,105,118,101,0,95,118,115,108,105,100,101,114,95,108,97,98,101,108,0,95,118,115,108,105,100,101,114,95,108,97,98,101,108,95,112,111,115,0,95,118,115,108,105,100,101,114, 95,108,97,98,101,108,95,102,111,110,116,0,95,118,115,108,105,100,101,114,95,108,111,103,0,95,118,115,108,105,100,101,114,95,108,105,110,0,95,118,115,108,105,100,101,114,95,105,110,105,116,0,95,118,115,108,105,100,101,114,95,115,116,101,97,100,121,0,95, 118,115,108,105,100,101,114,95,108,111,97,100,98,97,110,103,0,95,118,115,108,105,100,101,114,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,118,115,108,105,100,101,114,95,102,114,101,101,0,95,118,117,95, 117,112,100,97,116,101,95,114,109,115,0,95,118,117,95,117,112,100,97,116,101,95,112,101,97,107,0,95,118,117,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,117,95,100,114,97,119,95,110,101,119,0,95,118,117,95,100,114,97,119,95,109,111,118,101,0, 95,118,117,95,100,114,97,119,95,101,114,97,115,101,0,95,118,117,95,100,114,97,119,95,99,111,110,102,105,103,0,95,118,117,95,100,114,97,119,95,105,111,0,95,118,117,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,117,95,103,101,116,114,101,99,116, 0,95,118,117,95,115,97,118,101,0,95,118,117,95,115,99,97,108,101,0,95,118,117,95,112,114,111,112,101,114,116,105,101,115,0,95,118,117,95,100,105,97,108,111,103,0,95,118,117,95,115,105,122,101,0,95,118,117,95,100,101,108,116,97,0,95,118,117,95,112,111, 115,0,95,118,117,95,99,111,108,111,114,0,95,118,117,95,114,101,99,101,105,118,101,0,95,118,117,95,108,97,98,101,108,0,95,118,117,95,108,97,98,101,108,95,112,111,115,0,95,118,117,95,108,97,98,101,108,95,102,111,110,116,0,95,118,117,95,102,108,111,97,116, 0,95,118,117,95,102,116,49,0,95,118,117,95,98,97,110,103,0,95,118,117,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,118,117,95,102,114,101,101,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121, 95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,98, 105,110,98,117,102,95,100,111,111,112,101,110,0,95,98,105,110,98,117,102,95,100,111,102,111,112,101,110,0,95,98,105,110,98,117,102,95,99,111,110,118,101,114,116,0,95,112,100,95,100,101,102,97,117,108,116,97,110,121,116,104,105,110,103,0,95,112,100,95, 100,101,102,97,117,108,116,98,97,110,103,0,95,112,100,95,100,101,102,97,117,108,116,112,111,105,110,116,101,114,0,95,112,100,95,100,101,102,97,117,108,116,102,108,111,97,116,0,95,112,100,95,100,101,102,97,117,108,116,115,121,109,98,111,108,0,95,112,100, 95,100,101,102,97,117,108,116,108,105,115,116,0,95,112,100,95,102,108,111,97,116,102,111,114,115,105,103,110,97,108,0,95,99,108,97,115,115,95,110,111,115,97,118,101,102,110,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0, 95,97,100,100,102,105,108,101,101,120,116,101,110,116,0,95,103,108,111,98,95,118,101,114,115,105,111,110,0,95,103,108,111,98,95,112,101,114,102,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110, 101,95,109,101,109,115,101,116,95,99,104,107,0,95,105,110,108,101,116,95,119,114,111,110,103,0,95,105,110,108,101,116,95,98,97,110,103,0,95,105,110,108,101,116,95,112,111,105,110,116,101,114,0,95,105,110,108,101,116,95,102,108,111,97,116,0,95,105,110, 108,101,116,95,115,121,109,98,111,108,0,95,105,110,108,101,116,95,108,105,115,116,0,95,105,110,108,101,116,95,97,110,121,116,104,105,110,103,0,95,112,111,105,110,116,101,114,105,110,108,101,116,95,112,111,105,110,116,101,114,0,95,102,108,111,97,116,105, 110,108,101,116,95,102,108,111,97,116,0,95,115,121,109,98,111,108,105,110,108,101,116,95,115,121,109,98,111,108,0,95,111,117,116,108,101,116,95,115,116,97,99,107,101,114,114,111,114,0,95,98,105,110,100,108,105,115,116,95,98,97,110,103,0,95,98,105,110, 100,108,105,115,116,95,102,108,111,97,116,0,95,98,105,110,100,108,105,115,116,95,115,121,109,98,111,108,0,95,98,105,110,100,108,105,115,116,95,112,111,105,110,116,101,114,0,95,98,105,110,100,108,105,115,116,95,108,105,115,116,0,95,98,105,110,100,108, 105,115,116,95,97,110,121,116,104,105,110,103,0,95,115,99,104,101,100,95,112,111,108,108,102,111,114,109,101,116,101,114,115,0,95,109,95,112,111,108,108,105,110,103,115,99,104,101,100,117,108,101,114,0,95,109,95,99,97,108,108,98,97,99,107,115,99,104, 101,100,117,108,101,114,0,95,97,117,100,105,111,95,105,115,111,112,101,110,0,95,97,117,100,105,111,95,105,110,105,116,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,97,117,100,105,111,95,103,101,116,100,101,118,115,0, 95,115,121,115,95,108,105,115,116,97,117,100,105,111,100,101,118,115,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,115,121,115,95,105,110,105, 116,108,111,97,100,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,103,101,116,112,114,101,102,101,114,101,110,99,101,0,95,115,121,115,95,100,111,110,101,108,111,97,100,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,105, 110,105,116,115,97,118,101,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,112,117,116,112,114,101,102,101,114,101,110,99,101,0,95,115,121,115,95,100,111,110,101,115,97,118,101,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115, 95,100,111,109,105,99,114,111,115,108,101,101,112,0,95,95,95,100,97,114,119,105,110,95,102,100,95,105,115,115,101,116,0,95,115,121,115,95,115,105,103,110,97,108,0,95,115,121,115,95,101,120,105,116,104,97,110,100,108,101,114,0,95,115,121,115,95,97,108, 97,114,109,104,97,110,100,108,101,114,0,95,115,121,115,95,104,117,112,104,97,110,100,108,101,114,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,100,111,114,101,97,100,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,103,101, 116,117,100,112,0,95,115,121,115,95,116,114,121,116,111,103,101,116,109,111,114,101,103,117,105,98,117,102,0,95,115,121,115,95,102,108,117,115,104,116,111,103,117,105,0,95,95,95,105,110,108,105,110,101,95,109,101,109,109,111,118,101,95,99,104,107,0,95, 115,121,115,95,102,108,117,115,104,113,117,101,117,101,0,95,115,121,115,95,112,111,108,108,95,116,111,103,117,105,0,95,95,79,83,83,119,97,112,73,110,116,49,54,0,95,115,121,115,95,100,111,95,108,111,97,100,95,108,105,98,0,95,95,95,105,110,108,105,110, 101,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,109,111,118,101,95,99,104,107,0,95,115,121,115,95,102,105,110,100,102,111,110,116,0,95,111,112,101,110,105,116,0,95,115,121,115,95,112,97,114,115,101,100,101, 118,108,105,115,116,0,95,115,121,115,95,103,101,116,109,117,108,116,105,100,101,118,99,104,97,110,110,101,108,115,0,95,115,121,115,95,97,102,116,101,114,97,114,103,112,97,114,115,101,0,95,115,121,115,95,97,100,100,114,101,102,101,114,101,110,99,101,112, 97,116,104,0,95,115,121,115,95,101,120,112,97,110,100,112,97,116,104,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,115,116,114,116,111,107,99,112,121,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95, 99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,100,111,95,111,112,101,110,95,118,105,97,95,112,97,116,104,0,95,105,115,115,112,97,99,101,0,95,95,95,105,115,116,121,112,101,0,95,105,115,97,115,99,105,105,0,95, 115,116,114,110,101,115,99,97,112,101,0,95,100,111,112,111,115,116,0,95,100,111,101,114,114,111,114,0,95,100,111,118,101,114,98,111,115,101,0,95,100,111,98,117,103,0,95,109,116,111,102,95,110,101,119,0,95,109,116,111,102,95,102,108,111,97,116,0,95,102, 116,111,109,95,110,101,119,0,95,102,116,111,109,95,102,108,111,97,116,0,95,114,109,115,116,111,100,98,95,110,101,119,0,95,114,109,115,116,111,100,98,95,102,108,111,97,116,0,95,112,111,119,116,111,100,98,95,110,101,119,0,95,112,111,119,116,111,100,98, 95,102,108,111,97,116,0,95,100,98,116,111,112,111,119,95,110,101,119,0,95,100,98,116,111,112,111,119,95,102,108,111,97,116,0,95,100,98,116,111,114,109,115,95,110,101,119,0,95,100,98,116,111,114,109,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49, 95,110,101,119,0,95,98,105,110,111,112,49,95,112,108,117,115,95,110,101,119,0,95,98,105,110,111,112,49,95,112,108,117,115,95,98,97,110,103,0,95,98,105,110,111,112,49,95,112,108,117,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,109,105,110,117, 115,95,110,101,119,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,98,97,110,103,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,110,101,119,0,95,98,105,110,111,112,49, 95,116,105,109,101,115,95,98,97,110,103,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,100,105,118,95,110,101,119,0,95,98,105,110,111,112,49,95,100,105,118,95,98,97,110,103,0,95,98,105,110,111,112, 49,95,100,105,118,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,112,111,119,95,110,101,119,0,95,98,105,110,111,112,49,95,112,111,119,95,98,97,110,103,0,95,98,105,110,111,112,49,95,112,111,119,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95, 109,97,120,95,110,101,119,0,95,98,105,110,111,112,49,95,109,97,120,95,98,97,110,103,0,95,98,105,110,111,112,49,95,109,97,120,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,109,105,110,95,110,101,119,0,95,98,105,110,111,112,49,95,109,105,110,95,98, 97,110,103,0,95,98,105,110,111,112,49,95,109,105,110,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,110,101,119,0,95,98,105,110,111,112,50,95,101,101,95,110,101,119,0,95,98,105,110,111,112,50,95,101,101,95,98,97,110,103,0,95,98,105,110,111,112,50, 95,101,101,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,110,101,95,110,101,119,0,95,98,105,110,111,112,50,95,110,101,95,98,97,110,103,0,95,98,105,110,111,112,50,95,110,101,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,103,116,95,110,101, 119,0,95,98,105,110,111,112,50,95,103,116,95,98,97,110,103,0,95,98,105,110,111,112,50,95,103,116,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,108,116,95,110,101,119,0,95,98,105,110,111,112,50,95,108,116,95,98,97,110,103,0,95,98,105,110,111,112, 50,95,108,116,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,103,101,95,110,101,119,0,95,98,105,110,111,112,50,95,103,101,95,98,97,110,103,0,95,98,105,110,111,112,50,95,103,101,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,108,101,95,110,101, 119,0,95,98,105,110,111,112,50,95,108,101,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,101,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,110,101,119,0,95,98,105,110,111,112,51,95,98,97,95,110,101,119,0,95,98,105,110,111,112,50,95,98,97,95, 98,97,110,103,0,95,98,105,110,111,112,50,95,98,97,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,108,97,95,110,101,119,0,95,98,105,110,111,112,50,95,108,97,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,97,95,102,108,111,97,116,0,95,98,105,110, 111,112,51,95,98,111,95,110,101,119,0,95,98,105,110,111,112,50,95,98,111,95,98,97,110,103,0,95,98,105,110,111,112,50,95,98,111,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,108,111,95,110,101,119,0,95,98,105,110,111,112,50,95,108,111,95,98,97,110, 103,0,95,98,105,110,111,112,50,95,108,111,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,108,115,95,110,101,119,0,95,98,105,110,111,112,50,95,108,115,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,115,95,102,108,111,97,116,0,95,98,105,110,111, 112,51,95,114,115,95,110,101,119,0,95,98,105,110,111,112,50,95,114,115,95,98,97,110,103,0,95,98,105,110,111,112,50,95,114,115,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,112,99,95,110,101,119,0,95,98,105,110,111,112,50,95,112,99,95,98,97,110, 103,0,95,98,105,110,111,112,50,95,112,99,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,109,111,100,95,110,101,119,0,95,98,105,110,111,112,51,95,109,111,100,95,98,97,110,103,0,95,98,105,110,111,112,51,95,109,111,100,95,102,108,111,97,116,0,95,98, 105,110,111,112,51,95,100,105,118,95,110,101,119,0,95,98,105,110,111,112,51,95,100,105,118,95,98,97,110,103,0,95,98,105,110,111,112,51,95,100,105,118,95,102,108,111,97,116,0,95,115,105,110,95,110,101,119,0,95,115,105,110,95,102,108,111,97,116,0,95,99, 111,115,95,110,101,119,0,95,99,111,115,95,102,108,111,97,116,0,95,116,97,110,95,110,101,119,0,95,116,97,110,95,102,108,111,97,116,0,95,97,116,97,110,95,110,101,119,0,95,97,116,97,110,95,102,108,111,97,116,0,95,97,116,97,110,50,95,110,101,119,0,95,97, 116,97,110,50,95,102,108,111,97,116,0,95,115,113,114,116,95,110,101,119,0,95,115,113,114,116,95,102,108,111,97,116,0,95,108,111,103,95,110,101,119,0,95,108,111,103,95,102,108,111,97,116,0,95,101,120,112,95,110,101,119,0,95,101,120,112,95,102,108,111, 97,116,0,95,97,98,115,95,110,101,119,0,95,97,98,115,95,102,108,111,97,116,0,95,119,114,97,112,95,110,101,119,0,95,119,114,97,112,95,102,108,111,97,116,0,95,99,108,105,112,95,110,101,119,0,95,99,108,105,112,95,98,97,110,103,0,95,99,108,105,112,95,102, 108,111,97,116,0,95,99,108,105,112,95,115,101,116,117,112,0,95,112,100,105,110,116,95,110,101,119,0,95,112,100,105,110,116,95,98,97,110,103,0,95,112,100,105,110,116,95,102,108,111,97,116,0,95,112,100,102,108,111,97,116,95,110,101,119,0,95,112,100,102, 108,111,97,116,95,110,101,119,50,0,95,112,100,102,108,111,97,116,95,98,97,110,103,0,95,112,100,102,108,111,97,116,95,102,108,111,97,116,0,95,112,100,115,121,109,98,111,108,95,110,101,119,0,95,112,100,115,121,109,98,111,108,95,98,97,110,103,0,95,112,100, 115,121,109,98,111,108,95,115,121,109,98,111,108,0,95,112,100,115,121,109,98,111,108,95,97,110,121,116,104,105,110,103,0,95,112,100,115,121,109,98,111,108,95,108,105,115,116,0,95,98,97,110,103,95,110,101,119,0,95,98,97,110,103,95,110,101,119,50,0,95, 98,97,110,103,95,98,97,110,103,0,95,115,101,110,100,95,98,97,110,103,0,95,115,101,110,100,95,102,108,111,97,116,0,95,115,101,110,100,95,115,121,109,98,111,108,0,95,115,101,110,100,95,112,111,105,110,116,101,114,0,95,115,101,110,100,95,108,105,115,116, 0,95,115,101,110,100,95,97,110,121,116,104,105,110,103,0,95,115,101,110,100,95,110,101,119,0,95,115,101,110,100,95,115,101,116,117,112,0,95,114,101,99,101,105,118,101,95,98,97,110,103,0,95,114,101,99,101,105,118,101,95,102,108,111,97,116,0,95,114,101, 99,101,105,118,101,95,115,121,109,98,111,108,0,95,114,101,99,101,105,118,101,95,112,111,105,110,116,101,114,0,95,114,101,99,101,105,118,101,95,108,105,115,116,0,95,114,101,99,101,105,118,101,95,97,110,121,116,104,105,110,103,0,95,114,101,99,101,105,118, 101,95,110,101,119,0,95,114,101,99,101,105,118,101,95,102,114,101,101,0,95,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,115,101,108,49,95,102,108,111,97,116,0,95,115,101,108,49,95,115,121,109,98,111,108,0,95,115,101,108,50,95,102,108,111,97, 116,0,95,115,101,108,50,95,115,121,109,98,111,108,0,95,115,101,108,50,95,102,114,101,101,0,95,115,101,108,101,99,116,95,110,101,119,0,95,114,111,117,116,101,95,97,110,121,116,104,105,110,103,0,95,114,111,117,116,101,95,108,105,115,116,0,95,114,111,117, 116,101,95,102,114,101,101,0,95,114,111,117,116,101,95,110,101,119,0,95,112,97,99,107,95,110,101,119,0,95,112,97,99,107,95,98,97,110,103,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,112,97,99,107,95,112,111,105,110, 116,101,114,0,95,112,97,99,107,95,102,108,111,97,116,0,95,112,97,99,107,95,115,121,109,98,111,108,0,95,112,97,99,107,95,108,105,115,116,0,95,112,97,99,107,95,97,110,121,116,104,105,110,103,0,95,112,97,99,107,95,102,114,101,101,0,95,112,97,99,107,95,115, 101,116,117,112,0,95,117,110,112,97,99,107,95,110,101,119,0,95,117,110,112,97,99,107,95,108,105,115,116,0,95,117,110,112,97,99,107,95,97,110,121,116,104,105,110,103,0,95,117,110,112,97,99,107,95,102,114,101,101,0,95,117,110,112,97,99,107,95,115,101,116, 117,112,0,95,116,114,105,103,103,101,114,95,110,101,119,0,95,116,114,105,103,103,101,114,95,108,105,115,116,0,95,116,114,105,103,103,101,114,95,97,110,121,116,104,105,110,103,0,95,116,114,105,103,103,101,114,95,98,97,110,103,0,95,116,114,105,103,103, 101,114,95,112,111,105,110,116,101,114,0,95,116,114,105,103,103,101,114,95,102,108,111,97,116,0,95,116,114,105,103,103,101,114,95,115,121,109,98,111,108,0,95,116,114,105,103,103,101,114,95,102,114,101,101,0,95,116,114,105,103,103,101,114,95,115,101,116, 117,112,0,95,115,112,105,103,111,116,95,110,101,119,0,95,115,112,105,103,111,116,95,98,97,110,103,0,95,115,112,105,103,111,116,95,112,111,105,110,116,101,114,0,95,115,112,105,103,111,116,95,102,108,111,97,116,0,95,115,112,105,103,111,116,95,115,121,109, 98,111,108,0,95,115,112,105,103,111,116,95,108,105,115,116,0,95,115,112,105,103,111,116,95,97,110,121,116,104,105,110,103,0,95,115,112,105,103,111,116,95,115,101,116,117,112,0,95,109,111,115,101,115,95,110,101,119,0,95,109,111,115,101,115,95,102,108, 111,97,116,0,95,109,111,115,101,115,95,115,101,116,117,112,0,95,117,110,116,105,108,95,110,101,119,0,95,117,110,116,105,108,95,98,97,110,103,0,95,117,110,116,105,108,95,102,108,111,97,116,0,95,117,110,116,105,108,95,98,97,110,103,50,0,95,117,110,116, 105,108,95,115,101,116,117,112,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,99,97,110,102,111,114,109,97,116,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,110,101,119,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,102,108, 111,97,116,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,121,109,98,111,108,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,101,116,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,101,116,117,112,0,95,115,119,97,112,95, 110,101,119,0,95,115,119,97,112,95,98,97,110,103,0,95,115,119,97,112,95,102,108,111,97,116,0,95,99,104,97,110,103,101,95,110,101,119,0,95,99,104,97,110,103,101,95,98,97,110,103,0,95,99,104,97,110,103,101,95,102,108,111,97,116,0,95,99,104,97,110,103,101, 95,115,101,116,0,95,118,97,108,117,101,95,110,101,119,0,95,118,97,108,117,101,95,98,97,110,103,0,95,118,97,108,117,101,95,102,108,111,97,116,0,95,118,97,108,117,101,95,102,102,0,95,118,97,108,117,101,95,115,101,116,117,112,0,95,103,102,120,115,116,117, 98,95,111,102,102,108,105,115,116,0,95,103,102,120,115,116,117,98,95,99,97,110,99,101,108,0,95,103,102,120,115,116,117,98,95,115,105,103,110,111,102,102,0,95,103,102,120,115,116,117,98,95,100,97,116,97,0,95,103,102,120,115,116,117,98,95,101,110,100,0, 95,103,102,120,115,116,117,98,95,97,110,121,116,104,105,110,103,0,95,103,102,120,115,116,117,98,95,102,114,101,101,0,95,103,102,120,115,116,117,98,95,115,101,116,117,112,0,95,111,112,101,110,112,97,110,101,108,95,110,101,119,0,95,111,112,101,110,112, 97,110,101,108,95,115,121,109,98,111,108,0,95,111,112,101,110,112,97,110,101,108,95,98,97,110,103,0,95,111,112,101,110,112,97,110,101,108,95,99,97,108,108,98,97,99,107,0,95,111,112,101,110,112,97,110,101,108,95,102,114,101,101,0,95,111,112,101,110,112, 97,110,101,108,95,115,101,116,117,112,0,95,115,97,118,101,112,97,110,101,108,95,110,101,119,0,95,115,97,118,101,112,97,110,101,108,95,115,121,109,98,111,108,0,95,115,97,118,101,112,97,110,101,108,95,98,97,110,103,0,95,115,97,118,101,112,97,110,101,108, 95,99,97,108,108,98,97,99,107,0,95,115,97,118,101,112,97,110,101,108,95,102,114,101,101,0,95,115,97,118,101,112,97,110,101,108,95,115,101,116,117,112,0,95,107,101,121,95,110,101,119,0,95,107,101,121,95,102,108,111,97,116,0,95,107,101,121,95,102,114,101, 101,0,95,107,101,121,117,112,95,110,101,119,0,95,107,101,121,117,112,95,102,108,111,97,116,0,95,107,101,121,117,112,95,102,114,101,101,0,95,107,101,121,110,97,109,101,95,110,101,119,0,95,107,101,121,110,97,109,101,95,108,105,115,116,0,95,107,101,121, 110,97,109,101,95,102,114,101,101,0,95,107,101,121,95,115,101,116,117,112,0,95,112,114,105,110,116,95,110,101,119,0,95,112,114,105,110,116,95,98,97,110,103,0,95,112,114,105,110,116,95,112,111,105,110,116,101,114,0,95,112,114,105,110,116,95,102,108,111, 97,116,0,95,112,114,105,110,116,95,108,105,115,116,0,95,112,114,105,110,116,95,97,110,121,116,104,105,110,103,0,95,112,114,105,110,116,95,115,101,116,117,112,0,95,97,116,111,109,115,95,99,111,112,121,0,95,97,108,105,115,116,95,105,110,105,116,0,95,97, 108,105,115,116,95,99,108,101,97,114,0,95,97,108,105,115,116,95,108,105,115,116,0,95,97,108,105,115,116,95,97,110,121,116,104,105,110,103,0,95,97,108,105,115,116,95,116,111,97,116,111,109,115,0,95,97,108,105,115,116,95,99,108,111,110,101,0,95,97,108, 105,115,116,95,115,101,116,117,112,0,95,108,105,115,116,95,97,112,112,101,110,100,95,110,101,119,0,95,108,105,115,116,95,97,112,112,101,110,100,95,108,105,115,116,0,95,108,105,115,116,95,97,112,112,101,110,100,95,97,110,121,116,104,105,110,103,0,95,108, 105,115,116,95,97,112,112,101,110,100,95,102,114,101,101,0,95,108,105,115,116,95,97,112,112,101,110,100,95,115,101,116,117,112,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,110,101,119,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,108, 105,115,116,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,102,114,101,101,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,115,101,116,117,112,0,95,108, 105,115,116,95,115,112,108,105,116,95,110,101,119,0,95,108,105,115,116,95,115,112,108,105,116,95,108,105,115,116,0,95,108,105,115,116,95,115,112,108,105,116,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,115,112,108,105,116,95,115,101,116, 117,112,0,95,108,105,115,116,95,116,114,105,109,95,110,101,119,0,95,108,105,115,116,95,116,114,105,109,95,108,105,115,116,0,95,108,105,115,116,95,116,114,105,109,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,116,114,105,109,95,115,101,116, 117,112,0,95,108,105,115,116,95,108,101,110,103,116,104,95,110,101,119,0,95,108,105,115,116,95,108,101,110,103,116,104,95,108,105,115,116,0,95,108,105,115,116,95,108,101,110,103,116,104,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,108,101, 110,103,116,104,95,115,101,116,117,112,0,95,108,105,115,116,95,110,101,119,0,95,109,105,100,105,105,110,95,110,101,119,0,95,109,105,100,105,105,110,95,108,105,115,116,0,95,109,105,100,105,105,110,95,102,114,101,101,0,95,115,121,115,101,120,105,110,95, 110,101,119,0,95,115,121,115,101,120,105,110,95,102,114,101,101,0,95,109,105,100,105,105,110,95,115,101,116,117,112,0,95,110,111,116,101,105,110,95,110,101,119,0,95,110,111,116,101,105,110,95,108,105,115,116,0,95,110,111,116,101,105,110,95,102,114,101, 101,0,95,110,111,116,101,105,110,95,115,101,116,117,112,0,95,99,116,108,105,110,95,110,101,119,0,95,99,116,108,105,110,95,108,105,115,116,0,95,99,116,108,105,110,95,102,114,101,101,0,95,99,116,108,105,110,95,115,101,116,117,112,0,95,112,103,109,105,110, 95,110,101,119,0,95,112,103,109,105,110,95,108,105,115,116,0,95,112,103,109,105,110,95,102,114,101,101,0,95,112,103,109,105,110,95,115,101,116,117,112,0,95,98,101,110,100,105,110,95,110,101,119,0,95,98,101,110,100,105,110,95,108,105,115,116,0,95,98,101, 110,100,105,110,95,102,114,101,101,0,95,98,101,110,100,105,110,95,115,101,116,117,112,0,95,116,111,117,99,104,105,110,95,110,101,119,0,95,116,111,117,99,104,105,110,95,108,105,115,116,0,95,116,111,117,99,104,105,110,95,102,114,101,101,0,95,116,111,117, 99,104,105,110,95,115,101,116,117,112,0,95,112,111,108,121,116,111,117,99,104,105,110,95,110,101,119,0,95,112,111,108,121,116,111,117,99,104,105,110,95,108,105,115,116,0,95,112,111,108,121,116,111,117,99,104,105,110,95,102,114,101,101,0,95,112,111,108, 121,116,111,117,99,104,105,110,95,115,101,116,117,112,0,95,109,105,100,105,99,108,107,105,110,95,110,101,119,0,95,109,105,100,105,99,108,107,105,110,95,108,105,115,116,0,95,109,105,100,105,99,108,107,105,110,95,102,114,101,101,0,95,109,105,100,105,99, 108,107,105,110,95,115,101,116,117,112,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,110,101,119,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,108,105,115,116,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110, 95,102,114,101,101,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,115,101,116,117,112,0,95,109,105,100,105,111,117,116,95,110,101,119,0,95,109,105,100,105,111,117,116,95,102,108,111,97,116,0,95,109,105,100,105,111,117,116,95,115,101,116, 117,112,0,95,110,111,116,101,111,117,116,95,110,101,119,0,95,110,111,116,101,111,117,116,95,102,108,111,97,116,0,95,110,111,116,101,111,117,116,95,115,101,116,117,112,0,95,99,116,108,111,117,116,95,110,101,119,0,95,99,116,108,111,117,116,95,102,108,111, 97,116,0,95,99,116,108,111,117,116,95,115,101,116,117,112,0,95,112,103,109,111,117,116,95,110,101,119,0,95,112,103,109,111,117,116,95,102,108,111,97,116,0,95,112,103,109,111,117,116,95,115,101,116,117,112,0,95,98,101,110,100,111,117,116,95,110,101,119, 0,95,98,101,110,100,111,117,116,95,102,108,111,97,116,0,95,98,101,110,100,111,117,116,95,115,101,116,117,112,0,95,116,111,117,99,104,111,117,116,95,110,101,119,0,95,116,111,117,99,104,111,117,116,95,102,108,111,97,116,0,95,116,111,117,99,104,111,117, 116,95,115,101,116,117,112,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,110,101,119,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,102,108,111,97,116,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,115,101,116,117,112,0,95,109, 97,107,101,110,111,116,101,95,110,101,119,0,95,109,97,107,101,110,111,116,101,95,116,105,99,107,0,95,109,97,107,101,110,111,116,101,95,102,108,111,97,116,0,95,109,97,107,101,110,111,116,101,95,115,116,111,112,0,95,109,97,107,101,110,111,116,101,95,99, 108,101,97,114,0,95,109,97,107,101,110,111,116,101,95,115,101,116,117,112,0,95,115,116,114,105,112,110,111,116,101,95,110,101,119,0,95,115,116,114,105,112,110,111,116,101,95,102,108,111,97,116,0,95,115,116,114,105,112,110,111,116,101,95,115,101,116,117, 112,0,95,112,111,108,121,95,110,101,119,0,95,112,111,108,121,95,102,108,111,97,116,0,95,112,111,108,121,95,115,116,111,112,0,95,112,111,108,121,95,99,108,101,97,114,0,95,112,111,108,121,95,102,114,101,101,0,95,112,111,108,121,95,115,101,116,117,112,0, 95,98,97,103,95,110,101,119,0,95,98,97,103,95,102,108,111,97,116,0,95,98,97,103,95,102,108,117,115,104,0,95,98,97,103,95,99,108,101,97,114,0,95,98,97,103,95,115,101,116,117,112,0,95,109,97,107,101,115,101,101,100,0,95,114,97,110,100,111,109,95,110,101, 119,0,95,114,97,110,100,111,109,95,98,97,110,103,0,95,114,97,110,100,111,109,95,115,101,101,100,0,95,114,97,110,100,111,109,95,115,101,116,117,112,0,95,108,111,97,100,98,97,110,103,95,110,101,119,0,95,108,111,97,100,98,97,110,103,95,108,111,97,100,98, 97,110,103,0,95,108,111,97,100,98,97,110,103,95,115,101,116,117,112,0,95,110,97,109,101,99,97,110,118,97,115,95,110,101,119,0,95,110,97,109,101,99,97,110,118,97,115,95,102,114,101,101,0,95,110,97,109,101,99,97,110,118,97,115,95,115,101,116,117,112,0, 95,115,101,114,105,97,108,95,102,108,111,97,116,0,95,115,101,114,105,97,108,95,110,101,119,0,95,115,101,114,105,97,108,95,115,101,116,117,112,0,95,99,112,117,116,105,109,101,95,98,97,110,103,0,95,99,112,117,116,105,109,101,95,98,97,110,103,50,0,95,99, 112,117,116,105,109,101,95,110,101,119,0,95,99,112,117,116,105,109,101,95,115,101,116,117,112,0,95,114,101,97,108,116,105,109,101,95,98,97,110,103,0,95,114,101,97,108,116,105,109,101,95,98,97,110,103,50,0,95,114,101,97,108,116,105,109,101,95,110,101, 119,0,95,114,101,97,108,116,105,109,101,95,115,101,116,117,112,0,95,110,101,116,115,101,110,100,95,110,101,119,0,95,110,101,116,115,101,110,100,95,99,111,110,110,101,99,116,0,95,95,79,83,83,119,97,112,73,110,116,49,54,0,95,110,101,116,115,101,110,100, 95,100,105,115,99,111,110,110,101,99,116,0,95,110,101,116,115,101,110,100,95,115,101,110,100,0,95,110,101,116,115,101,110,100,95,102,114,101,101,0,95,110,101,116,115,101,110,100,95,115,101,116,117,112,0,95,110,101,116,114,101,99,101,105,118,101,95,110, 111,116,105,102,121,0,95,110,101,116,114,101,99,101,105,118,101,95,100,111,105,116,0,95,110,101,116,114,101,99,101,105,118,101,95,99,111,110,110,101,99,116,112,111,108,108,0,95,110,101,116,114,101,99,101,105,118,101,95,110,101,119,0,95,110,101,116,114, 101,99,101,105,118,101,95,102,114,101,101,0,95,110,101,116,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,113,108,105,115,116,95,110,101,119,0,95,113,108,105,115,116,95,114,101,119,105,110,100,0,95,113,108,105,115,116,95,100,111,110,101,120,116, 0,95,113,108,105,115,116,95,110,101,120,116,0,95,113,108,105,115,116,95,98,97,110,103,0,95,113,108,105,115,116,95,116,105,99,107,0,95,113,108,105,115,116,95,97,100,100,0,95,113,108,105,115,116,95,97,100,100,50,0,95,113,108,105,115,116,95,99,108,101,97, 114,0,95,113,108,105,115,116,95,115,101,116,0,95,113,108,105,115,116,95,114,101,97,100,0,95,113,108,105,115,116,95,119,114,105,116,101,0,95,113,108,105,115,116,95,112,114,105,110,116,0,95,113,108,105,115,116,95,116,101,109,112,111,0,95,113,108,105,115, 116,95,102,114,101,101,0,95,116,101,120,116,102,105,108,101,95,110,101,119,0,95,116,101,120,116,102,105,108,101,95,98,97,110,103,0,95,116,101,120,116,102,105,108,101,95,114,101,119,105,110,100,0,95,116,101,120,116,102,105,108,101,95,102,114,101,101,0, 95,100,101,108,97,121,95,98,97,110,103,0,95,100,101,108,97,121,95,115,116,111,112,0,95,100,101,108,97,121,95,102,116,49,0,95,100,101,108,97,121,95,102,108,111,97,116,0,95,100,101,108,97,121,95,116,105,99,107,0,95,100,101,108,97,121,95,102,114,101,101, 0,95,100,101,108,97,121,95,110,101,119,0,95,100,101,108,97,121,95,115,101,116,117,112,0,95,109,101,116,114,111,95,116,105,99,107,0,95,109,101,116,114,111,95,102,108,111,97,116,0,95,109,101,116,114,111,95,98,97,110,103,0,95,109,101,116,114,111,95,115, 116,111,112,0,95,109,101,116,114,111,95,102,116,49,0,95,109,101,116,114,111,95,102,114,101,101,0,95,109,101,116,114,111,95,110,101,119,0,95,109,101,116,114,111,95,115,101,116,117,112,0,95,108,105,110,101,95,116,105,99,107,0,95,108,105,110,101,95,102, 108,111,97,116,0,95,108,105,110,101,95,102,116,49,0,95,108,105,110,101,95,115,116,111,112,0,95,108,105,110,101,95,115,101,116,0,95,108,105,110,101,95,102,114,101,101,0,95,108,105,110,101,95,110,101,119,0,95,108,105,110,101,95,115,101,116,117,112,0,95, 116,105,109,101,114,95,98,97,110,103,0,95,116,105,109,101,114,95,98,97,110,103,50,0,95,116,105,109,101,114,95,110,101,119,0,95,116,105,109,101,114,95,115,101,116,117,112,0,95,112,105,112,101,95,110,101,119,0,95,104,97,110,103,95,102,114,101,101,0,95, 104,97,110,103,95,116,105,99,107,0,95,112,105,112,101,95,108,105,115,116,0,95,112,105,112,101,95,102,108,117,115,104,0,95,112,105,112,101,95,99,108,101,97,114,0,95,112,105,112,101,95,115,101,116,117,112,0,95,108,105,98,112,100,114,101,99,98,97,110,103, 0,95,108,105,98,112,100,114,101,99,102,108,111,97,116,0,95,108,105,98,112,100,114,101,99,115,121,109,98,111,108,0,95,108,105,98,112,100,114,101,99,112,111,105,110,116,101,114,0,95,108,105,98,112,100,114,101,99,108,105,115,116,0,95,108,105,98,112,100, 114,101,99,97,110,121,116,104,105,110,103,0,95,108,105,98,112,100,114,101,99,101,105,118,101,95,102,114,101,101,0,95,103,101,116,95,111,98,106,101,99,116,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,95,95,105,110,108, 105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,111,102,102,115,101,116,115,70,114,111,109,85,84,70,56,0,95,116,114,97,105,108,105,110,103,66,121,116,101,115,70,111,114,85,84,70,56,0,95,102,108,111,97,116,95,116,111,95,115,104,111,114,116,0, 95,115,104,111,114,116,95,116,111,95,102,108,111,97,116,0,32,115,116,117,98,32,104,101,108,112,101,114,115,0,95,99,97,110,118,97,115,95,110,101,119,102,105,108,101,110,97,109,101,0,95,99,97,110,118,97,115,95,110,101,119,100,105,114,101,99,116,111,114, 121,0,95,99,117,114,115,111,114,108,105,115,116,0,95,115,99,97,108,97,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,103,97,116,111,109,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,99,108,97,115,115,95,101,120,116, 101,114,110,95,100,105,114,0,95,115,121,109,108,105,115,116,0,95,111,115,115,95,101,114,114,111,114,110,97,109,101,115,0,95,108,111,97,100,101,114,115,0,95,117,115,97,103,101,109,101,115,115,97,103,101,0,95,104,97,108,115,101,99,0,95,99,111,115,116,97, 98,0,95,115,105,110,116,97,98,0,95,99,111,115,119,114,107,0,95,115,105,110,119,114,107,0,95,105,110,105,116,46,51,57,50,55,0,95,100,111,103,100,111,111,46,53,51,49,50,0,95,103,97,114,114,97,121,95,97,114,114,97,121,116,101,109,112,108,97,116,101,102, 105,108,101,0,95,103,97,114,114,97,121,95,102,108,111,97,116,116,101,109,112,108,97,116,101,102,105,108,101,0,95,100,111,108,108,97,114,122,101,114,111,46,54,51,49,53,0,95,115,121,115,95,116,105,109,101,95,112,101,114,95,109,115,101,99,0,95,115,121,115, 95,98,105,110,0,95,115,99,104,101,100,95,117,115,101,97,117,100,105,111,0,95,115,121,115,95,109,117,116,101,120,0,95,97,117,100,105,111,95,110,97,117,100,105,111,105,110,100,101,118,0,95,97,117,100,105,111,95,110,97,117,100,105,111,111,117,116,100,101, 118,0,95,100,101,102,97,117,108,116,102,111,110,116,115,104,105,116,0,95,115,121,115,95,100,108,108,101,120,116,101,110,116,0,95,115,121,115,95,100,108,108,101,120,116,101,110,116,50,0,95,115,121,115,95,110,115,111,117,110,100,105,110,0,95,115,121,115, 95,110,115,111,117,110,100,111,117,116,0,95,115,121,115,95,110,99,104,105,110,0,95,115,121,115,95,110,99,104,111,117,116,0,95,115,121,115,95,102,111,110,116,108,105,115,116,0,95,114,97,110,100,111,109,95,110,101,120,116,115,101,101,100,46,53,51,56,48, 0,95,112,108,117,115,95,99,108,97,115,115,0,95,115,99,97,108,97,114,112,108,117,115,95,99,108,97,115,115,0,95,109,105,110,117,115,95,99,108,97,115,115,0,95,115,99,97,108,97,114,109,105,110,117,115,95,99,108,97,115,115,0,95,116,105,109,101,115,95,99,108, 97,115,115,0,95,115,99,97,108,97,114,116,105,109,101,115,95,99,108,97,115,115,0,95,111,118,101,114,95,99,108,97,115,115,0,95,115,99,97,108,97,114,111,118,101,114,95,99,108,97,115,115,0,95,109,97,120,95,99,108,97,115,115,0,95,115,99,97,108,97,114,109, 97,120,95,99,108,97,115,115,0,95,109,105,110,95,99,108,97,115,115,0,95,115,99,97,108,97,114,109,105,110,95,99,108,97,115,115,0,95,99,111,117,110,116,46,51,48,57,49,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116, 97,98,112,108,97,121,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,111,115,99,52,95,116, 105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,115,101,110,100,95,99,108,97,115,115,0,95,116,97,98,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,52,95,99,108,97,115, 115,0,95,116,97,98,119,114,105,116,101,95,99,108,97,115,115,0,95,115,105,103,95,116,105,108,100,101,95,99,108,97,115,115,0,95,108,105,110,101,95,116,105,108,100,101,95,99,108,97,115,115,0,95,118,108,105,110,101,95,116,105,108,100,101,95,99,108,97,115, 115,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,99,108,97,115,115,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,99,108,97,115,115, 0,95,100,97,99,95,99,108,97,115,115,0,95,97,100,99,95,99,108,97,115,115,0,95,100,101,108,114,101,97,100,95,122,101,114,111,0,95,115,105,103,100,101,108,119,114,105,116,101,95,99,108,97,115,115,0,95,115,105,103,100,101,108,114,101,97,100,95,99,108,97, 115,115,0,95,115,105,103,118,100,95,99,108,97,115,115,0,95,115,105,103,102,102,116,95,99,108,97,115,115,0,95,115,105,103,105,102,102,116,95,99,108,97,115,115,0,95,115,105,103,114,102,102,116,95,99,108,97,115,115,0,95,115,105,103,114,105,102,102,116,95, 99,108,97,115,115,0,95,115,105,103,102,114,97,109,112,95,99,108,97,115,115,0,95,102,105,114,115,116,110,101,116,0,95,115,105,103,115,101,110,100,95,99,108,97,115,115,0,95,115,105,103,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,115,105,103,99, 97,116,99,104,95,99,108,97,115,115,0,95,115,105,103,116,104,114,111,119,95,99,108,97,115,115,0,95,99,108,105,112,95,99,108,97,115,115,0,95,114,115,113,114,116,95,101,120,112,116,97,98,0,95,114,115,113,114,116,95,109,97,110,116,105,115,115,97,116,97,98, 0,95,115,105,103,114,115,113,114,116,95,99,108,97,115,115,0,95,115,105,103,115,113,114,116,95,99,108,97,115,115,0,95,112,111,119,95,116,105,108,100,101,95,99,108,97,115,115,0,95,101,120,112,95,116,105,108,100,101,95,99,108,97,115,115,0,95,108,111,103, 95,116,105,108,100,101,95,99,108,97,115,115,0,95,97,98,115,95,116,105,108,100,101,95,99,108,97,115,115,0,95,112,114,105,110,116,95,99,108,97,115,115,0,95,98,97,110,103,95,116,105,108,100,101,95,99,108,97,115,115,0,95,112,104,97,115,111,114,95,99,108, 97,115,115,0,95,115,99,97,108,97,114,112,104,97,115,111,114,95,99,108,97,115,115,0,95,99,111,115,95,99,108,97,115,115,0,95,111,115,99,95,99,108,97,115,115,0,95,115,99,97,108,97,114,111,115,99,95,99,108,97,115,115,0,95,110,111,105,115,101,95,99,108,97, 115,115,0,95,115,111,117,110,100,102,105,108,101,114,95,99,108,97,115,115,0,95,114,101,97,100,115,102,95,99,108,97,115,115,0,95,119,114,105,116,101,115,102,95,99,108,97,115,115,0,95,117,103,101,110,95,115,111,114,116,110,111,0,95,117,103,101,110,95,108, 111,117,100,0,95,100,115,112,95,99,104,97,105,110,0,95,100,115,112,95,99,104,97,105,110,115,105,122,101,0,95,100,115,112,95,112,104,97,115,101,0,95,98,108,111,99,107,95,99,108,97,115,115,0,95,115,105,103,110,97,108,95,102,114,101,101,108,105,115,116, 0,95,115,105,103,110,97,108,95,102,114,101,101,98,111,114,114,111,119,101,100,0,95,115,105,103,110,97,108,95,117,115,101,100,108,105,115,116,0,95,117,103,101,110,95,99,117,114,114,101,110,116,99,111,110,116,101,120,116,0,95,115,97,109,112,108,101,114, 97,116,101,95,116,105,108,100,101,95,99,108,97,115,115,0,95,103,99,111,117,110,116,0,95,103,97,114,114,97,121,95,97,114,114,97,121,116,101,109,112,108,97,116,101,99,97,110,118,97,115,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,120,99,117,109, 117,108,97,116,105,118,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,121,99,117,109,117,108,97,116,105,118,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,120,102,105,101,108,100,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95, 121,102,105,101,108,100,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,103,108,105,115,116,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,115,99,97,108,97,114,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,97,114,114,97,121,0,95,97, 114,114,97,121,95,109,111,116,105,111,110,95,119,112,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,116,101,109,112,108,97,116,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,110,112,111,105,110,116,115,0,95,97,114,114,97,121,95,109,111, 116,105,111,110,95,101,108,101,109,115,105,122,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,97,108,116,107,101,121,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,105,110,105,116,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110, 95,120,112,101,114,112,105,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,121,112,101,114,112,105,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,108,97,115,116,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,102,97,116,116, 101,110,0,95,98,110,103,95,99,108,97,115,115,0,95,103,99,111,117,110,116,46,54,52,53,57,0,95,116,97,98,99,111,117,110,116,0,95,99,97,110,118,97,115,95,110,101,119,97,114,103,99,0,95,99,97,110,118,97,115,95,110,101,119,97,114,103,118,0,95,100,101,99,108, 97,114,101,95,99,108,97,115,115,0,95,114,101,101,110,116,101,114,46,53,57,51,56,0,95,99,117,114,115,111,114,119,97,115,46,54,54,55,52,0,95,120,119,97,115,46,54,54,55,51,0,95,107,101,121,110,97,109,101,115,121,109,46,55,57,48,57,0,95,107,101,121,117,112, 115,121,109,46,55,57,48,56,0,95,107,101,121,110,117,109,115,121,109,46,55,57,48,55,0,95,99,111,112,121,95,98,105,110,98,117,102,0,95,99,97,110,118,97,115,95,116,101,120,116,99,111,112,121,98,117,102,0,95,99,97,110,118,97,115,95,116,101,120,116,99,111, 112,121,98,117,102,115,105,122,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,102,110,0,95,99,97,110,118,97,115,95,117,110,100,111,95,119,104,97,116,110,101,120,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,98,117,102,0,95,99,97,110,118,97, 115,95,117,110,100,111,95,99,97,110,118,97,115,0,95,99,97,110,118,97,115,95,117,110,100,111,95,110,97,109,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,97,108,114,101,97,100,121,95,115,101,116,95,109,111,118,101,0,95,99,97,110,118,97,115,95,117, 112,99,108,105,99,107,116,105,109,101,0,95,99,97,110,118,97,115,95,117,112,120,0,95,99,97,110,118,97,115,95,117,112,121,0,95,99,97,110,118,97,115,95,102,105,110,100,95,105,110,100,101,120,49,0,95,99,97,110,118,97,115,95,102,105,110,100,95,105,110,100, 101,120,50,0,95,99,97,110,118,97,115,95,102,105,110,100,95,119,104,111,108,101,119,111,114,100,0,95,99,97,110,118,97,115,95,102,105,110,100,98,117,102,0,95,112,97,115,116,101,95,111,110,115,101,116,0,95,112,97,115,116,101,95,99,97,110,118,97,115,0,95, 99,97,110,118,97,115,95,108,97,115,116,95,103,108,105,115,116,0,95,99,97,110,118,97,115,95,108,97,115,116,95,103,108,105,115,116,95,120,0,95,99,97,110,118,97,115,95,108,97,115,116,95,103,108,105,115,116,95,121,0,95,103,114,97,112,104,95,108,97,115,116, 120,112,105,120,0,95,103,114,97,112,104,95,108,97,115,116,121,112,105,120,0,95,103,117,105,99,111,110,110,101,99,116,95,99,108,97,115,115,0,95,104,114,97,100,105,111,95,99,108,97,115,115,0,95,104,114,97,100,105,111,95,111,108,100,95,99,108,97,115,115, 0,95,104,115,108,105,100,101,114,95,99,108,97,115,115,0,95,116,111,116,0,95,109,121,95,99,97,110,118,97,115,95,99,108,97,115,115,0,95,109,121,95,110,117,109,98,111,120,95,99,108,97,115,115,0,95,100,101,99,108,97,114,101,95,99,108,97,115,115,0,95,114, 116,101,120,116,95,101,110,116,101,114,101,100,0,95,119,97,114,110,101,100,46,54,51,53,56,0,95,103,116,101,109,112,108,97,116,101,95,99,108,97,115,115,0,95,116,101,109,112,108,97,116,101,95,99,108,97,115,115,0,95,99,117,114,118,101,95,109,111,116,105, 111,110,95,102,105,101,108,100,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,120,99,117,109,117,108,97,116,105,118,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,120,98,97,115,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110, 95,120,112,101,114,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,121,99,117,109,117,108,97,116,105,118,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,121,98,97,115,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,121,112,101, 114,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,103,108,105,115,116,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,115,99,97,108,97,114,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,97,114,114,97,121,0,95,99,117,114,118,101,95, 109,111,116,105,111,110,95,119,112,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,116,101,109,112,108,97,116,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,103,112,111,105,110,116,101,114,0,95,100,114,97,119,110,117,109,98,101,114,95, 109,111,116,105,111,110,95,121,99,117,109,117,108,97,116,105,118,101,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,103,108,105,115,116,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,115,99,97,108,97, 114,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,97,114,114,97,121,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,119,112,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,116, 101,109,112,108,97,116,101,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,103,112,111,105,110,116,101,114,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,115,121,109,98,111,108,0,95,100,114,97,119,110, 117,109,98,101,114,95,109,111,116,105,111,110,95,102,105,114,115,116,107,101,121,0,95,109,101,115,115,97,103,101,95,99,108,97,115,115,0,95,103,97,116,111,109,95,99,108,97,115,115,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,99,108,97,115, 115,0,95,116,111,103,103,108,101,95,99,108,97,115,115,0,95,112,116,114,111,98,106,95,99,108,97,115,115,0,95,103,101,116,95,99,108,97,115,115,0,95,115,101,116,95,99,108,97,115,115,0,95,101,108,101,109,95,99,108,97,115,115,0,95,103,101,116,115,105,122, 101,95,99,108,97,115,115,0,95,115,101,116,115,105,122,101,95,99,108,97,115,115,0,95,97,112,112,101,110,100,95,99,108,97,115,115,0,95,115,117,98,108,105,115,116,95,99,108,97,115,115,0,95,118,114,97,100,105,111,95,99,108,97,115,115,0,95,118,114,97,100, 105,111,95,111,108,100,95,99,108,97,115,115,0,95,118,115,108,105,100,101,114,95,99,108,97,115,115,0,95,118,117,95,99,108,97,115,115,0,95,99,108,97,115,115,95,108,111,97,100,115,121,109,0,95,115,121,109,104,97,115,104,0,95,116,114,121,105,110,103,97,108, 114,101,97,100,121,0,95,109,97,120,99,108,97,115,115,0,95,115,116,97,99,107,99,111,117,110,116,0,95,105,110,108,101,116,95,99,108,97,115,115,0,95,112,111,105,110,116,101,114,105,110,108,101,116,95,99,108,97,115,115,0,95,102,108,111,97,116,105,110,108, 101,116,95,99,108,97,115,115,0,95,115,121,109,98,111,108,105,110,108,101,116,95,99,108,97,115,115,0,95,111,117,116,108,101,116,95,101,118,101,110,116,110,111,0,95,103,115,116,97,99,107,95,104,101,97,100,0,95,98,105,110,100,108,105,115,116,95,99,108,97, 115,115,0,95,108,97,115,116,112,111,112,112,101,100,0,95,112,100,95,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,0,95,111,115,115,95,114,101,115,121,110,99,112,104,97,115,101,0,95,111,115,115,95,110,114,101,115,121,110,99,0,95,115, 99,104,101,100,95,110,101,120,116,112,105,110,103,116,105,109,101,46,52,52,56,48,0,95,115,99,104,101,100,95,110,101,120,116,109,101,116,101,114,112,111,108,108,116,105,109,101,46,52,52,55,57,0,95,105,100,108,101,116,105,109,101,46,52,54,48,51,0,95,115, 121,115,95,113,117,105,116,0,95,115,121,115,95,104,105,115,116,111,103,114,97,109,0,95,115,121,115,95,104,105,115,116,116,105,109,101,0,95,115,99,104,101,100,95,100,105,100,100,115,112,0,95,115,99,104,101,100,95,100,105,100,112,111,108,108,0,95,115,99, 104,101,100,95,100,105,100,110,111,116,104,105,110,103,0,95,115,121,115,95,104,105,115,116,112,104,97,115,101,0,95,111,115,115,95,114,101,115,121,110,99,0,95,115,99,104,101,100,95,100,105,111,114,101,100,0,95,115,99,104,101,100,95,100,105,111,114,101, 100,116,105,109,101,0,95,115,99,104,101,100,95,109,101,116,101,114,115,111,110,0,95,115,99,104,101,100,95,108,97,115,116,105,110,99,108,105,112,0,95,115,99,104,101,100,95,108,97,115,116,111,117,116,99,108,105,112,0,95,115,99,104,101,100,95,108,97,115, 116,105,110,100,98,0,95,115,99,104,101,100,95,108,97,115,116,111,117,116,100,98,0,95,115,99,104,101,100,95,114,101,102,101,114,101,110,99,101,114,101,97,108,116,105,109,101,0,95,115,99,104,101,100,95,114,101,102,101,114,101,110,99,101,108,111,103,105, 99,97,108,116,105,109,101,0,95,105,110,105,116,116,101,100,46,53,51,49,53,0,95,115,121,115,95,109,101,116,101,114,115,0,95,115,121,115,95,105,110,109,97,120,0,95,115,121,115,95,111,117,116,109,97,120,0,95,97,117,100,105,111,95,115,116,97,116,101,0,95, 97,117,100,105,111,95,97,117,100,105,111,105,110,100,101,118,0,95,97,117,100,105,111,95,97,117,100,105,111,99,104,105,110,100,101,118,0,95,97,117,100,105,111,95,97,117,100,105,111,111,117,116,100,101,118,0,95,97,117,100,105,111,95,97,117,100,105,111, 99,104,111,117,116,100,101,118,0,95,97,117,100,105,111,95,114,97,116,101,0,95,97,117,100,105,111,95,97,100,118,97,110,99,101,0,95,97,117,100,105,111,95,99,97,108,108,98,97,99,107,0,95,97,117,100,105,111,95,99,97,108,108,98,97,99,107,95,105,115,95,111, 112,101,110,0,95,97,117,100,105,111,95,110,101,120,116,105,110,99,104,97,110,115,0,95,97,117,100,105,111,95,110,101,120,116,111,117,116,99,104,97,110,115,0,95,116,104,101,110,46,55,51,53,48,0,95,116,114,111,117,98,108,101,46,55,52,53,50,0,95,114,101, 101,110,116,101,114,101,100,46,56,50,55,49,0,95,115,121,115,95,110,102,100,112,111,108,108,0,95,115,121,115,95,102,100,112,111,108,108,0,95,115,121,115,95,109,97,120,102,100,0,95,115,121,115,95,103,117,105,115,111,99,107,0,95,105,110,98,105,110,98,117, 102,0,95,115,121,115,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,0,95,115,121,115,95,103,117,105,113,117,101,117,101,104,101,97,100,0,95,115,121,115,95,103,117,105,98,117,102,0,95,115,121,115,95,103,117,105,98,117,102,104,101,97,100,0,95, 115,121,115,95,103,117,105,98,117,102,116,97,105,108,0,95,115,121,115,95,103,117,105,98,117,102,115,105,122,101,0,95,115,121,115,95,119,97,105,116,105,110,103,102,111,114,112,105,110,103,0,95,115,121,115,95,98,121,116,101,115,115,105,110,99,101,108,97, 115,116,112,105,110,103,0,95,115,121,115,95,119,97,116,99,104,102,100,0,95,115,121,115,95,108,111,97,100,101,100,0,95,115,121,115,95,109,109,105,111,0,95,115,121,115,95,111,112,101,110,108,105,115,116,0,95,115,121,115,95,109,101,115,115,97,103,101,108, 105,115,116,0,95,115,121,115,95,118,101,114,115,105,111,110,0,95,115,121,115,95,109,97,105,110,95,115,114,97,116,101,0,95,115,121,115,95,109,97,105,110,95,97,100,118,97,110,99,101,0,95,115,121,115,95,109,97,105,110,95,99,97,108,108,98,97,99,107,0,95, 115,121,115,95,108,105,115,116,112,108,101,97,115,101,0,95,115,121,115,95,98,97,116,99,104,0,95,115,121,115,95,115,111,117,110,100,105,110,100,101,118,108,105,115,116,0,95,115,121,115,95,115,111,117,110,100,111,117,116,100,101,118,108,105,115,116,0,95, 115,121,115,95,99,104,105,110,108,105,115,116,0,95,115,121,115,95,99,104,111,117,116,108,105,115,116,0,95,115,97,105,100,105,116,46,52,55,54,50,0,95,101,114,114,111,114,95,111,98,106,101,99,116,0,95,101,114,114,111,114,95,115,116,114,105,110,103,0,95, 101,114,114,111,98,106,101,99,116,0,95,101,114,114,115,116,114,105,110,103,0,95,109,116,111,102,95,99,108,97,115,115,0,95,102,116,111,109,95,99,108,97,115,115,0,95,114,109,115,116,111,100,98,95,99,108,97,115,115,0,95,112,111,119,116,111,100,98,95,99, 108,97,115,115,0,95,100,98,116,111,112,111,119,95,99,108,97,115,115,0,95,100,98,116,111,114,109,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,112,108,117,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,99,108,97, 115,115,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,100,105,118,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,112,111,119,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,109,97,120,95,99, 108,97,115,115,0,95,98,105,110,111,112,49,95,109,105,110,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,101,101,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,110,101,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,103,116,95,99,108,97,115, 115,0,95,98,105,110,111,112,50,95,108,116,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,103,101,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,108,101,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,98,97,95,99,108,97,115,115,0,95,98,105, 110,111,112,51,95,108,97,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,98,111,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,108,111,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,108,115,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95, 114,115,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,112,99,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,109,111,100,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,100,105,118,95,99,108,97,115,115,0,95,115,105,110,95,99,108,97,115,115, 0,95,99,111,115,95,99,108,97,115,115,0,95,116,97,110,95,99,108,97,115,115,0,95,97,116,97,110,95,99,108,97,115,115,0,95,97,116,97,110,50,95,99,108,97,115,115,0,95,115,113,114,116,95,99,108,97,115,115,0,95,108,111,103,95,99,108,97,115,115,0,95,101,120, 112,95,99,108,97,115,115,0,95,97,98,115,95,99,108,97,115,115,0,95,119,114,97,112,95,99,108,97,115,115,0,95,99,108,105,112,95,99,108,97,115,115,0,95,112,100,105,110,116,95,99,108,97,115,115,0,95,112,100,102,108,111,97,116,95,99,108,97,115,115,0,95,112, 100,115,121,109,98,111,108,95,99,108,97,115,115,0,95,98,97,110,103,95,99,108,97,115,115,0,95,115,101,110,100,95,99,108,97,115,115,0,95,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,115,101,108,49,95,99,108,97,115,115,0,95,115,101,108,50,95,99, 108,97,115,115,0,95,114,111,117,116,101,95,99,108,97,115,115,0,95,112,97,99,107,95,99,108,97,115,115,0,95,117,110,112,97,99,107,95,99,108,97,115,115,0,95,116,114,105,103,103,101,114,95,99,108,97,115,115,0,95,115,112,105,103,111,116,95,99,108,97,115,115, 0,95,109,111,115,101,115,95,99,108,97,115,115,0,95,117,110,116,105,108,95,99,108,97,115,115,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,99,108,97,115,115,0,95,115,119,97,112,95,99,108,97,115,115,0,95,99,104,97,110,103,101,95,99,108,97,115,115, 0,95,118,97,108,117,101,95,99,108,97,115,115,0,95,118,99,111,109,109,111,110,95,99,108,97,115,115,0,95,103,102,120,115,116,117,98,95,99,108,97,115,115,0,95,103,102,120,115,116,117,98,95,108,105,115,116,0,95,103,102,120,115,116,117,98,95,98,105,110,98, 117,102,0,95,111,112,101,110,112,97,110,101,108,95,99,108,97,115,115,0,95,115,97,118,101,112,97,110,101,108,95,99,108,97,115,115,0,95,107,101,121,95,115,121,109,0,95,107,101,121,117,112,95,115,121,109,0,95,107,101,121,110,97,109,101,95,115,121,109,0, 95,107,101,121,95,99,108,97,115,115,0,95,107,101,121,117,112,95,99,108,97,115,115,0,95,107,101,121,110,97,109,101,95,99,108,97,115,115,0,95,112,114,105,110,116,95,99,108,97,115,115,0,95,99,111,117,110,116,46,51,51,55,51,0,95,112,114,101,118,46,51,51, 55,50,0,95,109,105,100,105,105,110,95,115,121,109,0,95,115,121,115,101,120,105,110,95,115,121,109,0,95,109,105,100,105,105,110,95,99,108,97,115,115,0,95,115,121,115,101,120,105,110,95,99,108,97,115,115,0,95,110,111,116,101,105,110,95,115,121,109,0,95, 110,111,116,101,105,110,95,99,108,97,115,115,0,95,99,116,108,105,110,95,115,121,109,0,95,99,116,108,105,110,95,99,108,97,115,115,0,95,112,103,109,105,110,95,115,121,109,0,95,112,103,109,105,110,95,99,108,97,115,115,0,95,98,101,110,100,105,110,95,115, 121,109,0,95,98,101,110,100,105,110,95,99,108,97,115,115,0,95,116,111,117,99,104,105,110,95,115,121,109,0,95,116,111,117,99,104,105,110,95,99,108,97,115,115,0,95,112,111,108,121,116,111,117,99,104,105,110,95,115,121,109,0,95,112,111,108,121,116,111,117, 99,104,105,110,95,99,108,97,115,115,0,95,109,105,100,105,99,108,107,105,110,95,115,121,109,0,95,109,105,100,105,99,108,107,105,110,95,99,108,97,115,115,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,115,121,109,0,95,109,105,100,105,114, 101,97,108,116,105,109,101,105,110,95,99,108,97,115,115,0,95,109,105,100,105,111,117,116,95,99,108,97,115,115,0,95,110,111,116,101,111,117,116,95,99,108,97,115,115,0,95,99,116,108,111,117,116,95,99,108,97,115,115,0,95,112,103,109,111,117,116,95,99,108, 97,115,115,0,95,98,101,110,100,111,117,116,95,99,108,97,115,115,0,95,116,111,117,99,104,111,117,116,95,99,108,97,115,115,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,99,108,97,115,115,0,95,109,97,107,101,110,111,116,101,95,99,108,97,115,115, 0,95,115,116,114,105,112,110,111,116,101,95,99,108,97,115,115,0,95,112,111,108,121,95,99,108,97,115,115,0,95,98,97,103,95,99,108,97,115,115,0,95,114,97,110,100,111,109,95,99,108,97,115,115,0,95,108,111,97,100,98,97,110,103,95,99,108,97,115,115,0,95,110, 97,109,101,99,97,110,118,97,115,95,99,108,97,115,115,0,95,115,101,114,105,97,108,95,99,108,97,115,115,0,95,99,112,117,116,105,109,101,95,99,108,97,115,115,0,95,114,101,97,108,116,105,109,101,95,99,108,97,115,115,0,95,112,108,101,97,115,101,119,97,114, 110,46,52,52,50,57,0,95,108,97,115,116,119,97,114,110,116,105,109,101,46,52,52,50,56,0,95,110,101,116,115,101,110,100,95,99,108,97,115,115,0,95,110,101,116,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,113,108,105,115,116,95,99,108,97,115,115, 0,95,116,101,120,116,102,105,108,101,95,99,108,97,115,115,0,95,100,101,108,97,121,95,99,108,97,115,115,0,95,109,101,116,114,111,95,99,108,97,115,115,0,95,108,105,110,101,95,99,108,97,115,115,0,95,116,105,109,101,114,95,99,108,97,115,115,0,95,112,105, 112,101,95,99,108,97,115,115,0,95,108,105,98,112,100,114,101,99,95,99,108,97,115,115,0,95,116,105,99,107,115,95,112,101,114,95,98,117,102,102,101,114,0,95,97,114,103,118,0,95,99,117,114,114,0,95,97,114,103,99,0,95,97,98,115,95,116,105,108,100,101,95, 112,101,114,102,111,114,109,0,95,97,108,105,115,116,95,99,108,97,115,115,0,95,97,114,114,97,121,95,100,111,99,108,105,99,107,0,95,97,114,114,97,121,95,102,114,101,101,0,95,97,114,114,97,121,95,103,101,116,99,111,111,114,100,105,110,97,116,101,0,95,97, 114,114,97,121,95,103,101,116,102,105,101,108,100,115,0,95,97,114,114,97,121,95,110,101,119,0,95,97,114,114,97,121,95,114,101,100,114,97,119,0,95,97,114,114,97,121,95,114,101,115,105,122,101,0,95,97,116,111,109,95,103,101,110,115,121,109,0,95,97,116, 111,109,95,103,101,116,102,108,111,97,116,0,95,97,116,111,109,95,103,101,116,102,108,111,97,116,97,114,103,0,95,97,116,111,109,95,103,101,116,105,110,116,0,95,97,116,111,109,95,103,101,116,105,110,116,97,114,103,0,95,97,116,111,109,95,103,101,116,115, 121,109,98,111,108,0,95,97,116,111,109,95,103,101,116,115,121,109,98,111,108,97,114,103,0,95,97,116,111,109,95,115,116,114,105,110,103,0,95,98,97,110,103,95,115,101,116,117,112,0,95,98,105,110,98,117,102,95,97,100,100,0,95,98,105,110,98,117,102,95,97, 100,100,98,105,110,98,117,102,0,95,98,105,110,98,117,102,95,97,100,100,115,101,109,105,0,95,98,105,110,98,117,102,95,97,100,100,118,0,95,98,105,110,98,117,102,95,99,108,101,97,114,0,95,98,105,110,98,117,102,95,100,117,112,108,105,99,97,116,101,0,95,98, 105,110,98,117,102,95,101,118,97,108,0,95,98,105,110,98,117,102,95,101,118,97,108,102,105,108,101,0,95,98,105,110,98,117,102,95,101,120,112,97,110,100,100,111,108,108,115,121,109,0,95,98,105,110,98,117,102,95,102,114,101,101,0,95,98,105,110,98,117,102, 95,103,101,116,110,97,116,111,109,0,95,98,105,110,98,117,102,95,103,101,116,116,101,120,116,0,95,98,105,110,98,117,102,95,103,101,116,118,101,99,0,95,98,105,110,98,117,102,95,109,97,116,99,104,0,95,98,105,110,98,117,102,95,110,101,119,0,95,98,105,110, 98,117,102,95,112,114,105,110,116,0,95,98,105,110,98,117,102,95,114,101,97,100,0,95,98,105,110,98,117,102,95,114,101,97,100,95,118,105,97,95,99,97,110,118,97,115,0,95,98,105,110,98,117,102,95,114,101,97,100,95,118,105,97,95,112,97,116,104,0,95,98,105, 110,98,117,102,95,114,101,97,108,105,122,101,100,111,108,108,115,121,109,0,95,98,105,110,98,117,102,95,114,101,115,116,111,114,101,0,95,98,105,110,98,117,102,95,116,101,120,116,0,95,98,105,110,98,117,102,95,119,114,105,116,101,0,95,98,108,111,99,107, 95,116,105,108,100,101,95,115,101,116,117,112,0,95,98,110,103,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,98,110,103,95,100,114,97,119,0,95,98,110,103,95,100,114,97,119,95,99,111,110,102,105,103,0,95,98,110,103,95,100,114,97,119,95,101,114,97, 115,101,0,95,98,110,103,95,100,114,97,119,95,105,111,0,95,98,110,103,95,100,114,97,119,95,109,111,118,101,0,95,98,110,103,95,100,114,97,119,95,110,101,119,0,95,98,110,103,95,100,114,97,119,95,115,101,108,101,99,116,0,95,98,110,103,95,100,114,97,119,95, 117,112,100,97,116,101,0,95,98,110,103,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,98,117,103,0,95,98,117,105,108,100,95,102,102,116,95,110,101,116,119,111,114,107,0,95,99,97,110,118,97,115,95,97,100,100,105,110,108,101,116,0,95,99, 97,110,118,97,115,95,97,100,100,111,117,116,108,101,116,0,95,99,97,110,118,97,115,95,97,116,111,109,0,95,99,97,110,118,97,115,95,98,110,103,0,95,99,97,110,118,97,115,95,99,108,97,115,115,0,95,99,97,110,118,97,115,95,99,111,110,110,101,99,116,0,95,99, 97,110,118,97,115,95,99,114,101,97,116,101,95,101,100,105,116,111,114,0,95,99,97,110,118,97,115,95,100,97,116,97,112,114,111,112,101,114,116,105,101,115,0,95,99,97,110,118,97,115,95,100,101,108,101,116,101,108,105,110,101,115,102,111,114,0,95,99,97,110, 118,97,115,95,100,101,108,101,116,101,108,105,110,101,115,102,111,114,105,111,0,95,99,97,110,118,97,115,95,100,101,115,116,114,111,121,95,101,100,105,116,111,114,0,95,99,97,110,118,97,115,95,100,105,114,116,121,0,95,99,97,110,118,97,115,95,100,105,115, 99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,100,111,97,100,100,116,101,109,112,108,97,116,101,0,95,99,97,110,118,97,115,95,100,111,99,108,105,99,107,0,95,99,97,110,118,97,115,95,100,111,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95, 100,114,97,119,114,101,100,114,101,99,116,0,95,99,97,110,118,97,115,95,100,115,112,115,116,97,116,101,0,95,99,97,110,118,97,115,95,101,100,105,116,105,110,103,0,95,99,97,110,118,97,115,95,101,100,105,116,109,111,100,101,0,95,99,97,110,118,97,115,95,102, 97,116,116,101,110,115,117,98,0,95,99,97,110,118,97,115,95,102,105,110,100,101,114,114,111,114,0,95,99,97,110,118,97,115,95,102,105,120,108,105,110,101,115,102,111,114,0,95,99,97,110,118,97,115,95,102,108,111,97,116,97,116,111,109,0,95,99,97,110,118, 97,115,95,102,114,101,101,0,95,99,97,110,118,97,115,95,103,101,116,97,114,103,115,0,95,99,97,110,118,97,115,95,103,101,116,98,108,111,99,107,0,95,99,97,110,118,97,115,95,103,101,116,99,117,114,114,101,110,116,0,95,99,97,110,118,97,115,95,103,101,116, 99,117,114,114,101,110,116,100,105,114,0,95,99,97,110,118,97,115,95,103,101,116,100,105,114,0,95,99,97,110,118,97,115,95,103,101,116,100,111,108,108,97,114,122,101,114,111,0,95,99,97,110,118,97,115,95,103,101,116,101,110,118,0,95,99,97,110,118,97,115, 95,103,101,116,105,110,100,101,120,0,95,99,97,110,118,97,115,95,103,101,116,114,111,111,116,102,111,114,0,95,99,97,110,118,97,115,95,104,100,105,97,108,0,95,99,97,110,118,97,115,95,104,105,116,98,111,120,0,95,99,97,110,118,97,115,95,104,114,97,100,105, 111,0,95,99,97,110,118,97,115,95,104,115,108,105,100,101,114,0,95,99,97,110,118,97,115,95,105,101,109,103,117,105,115,0,95,99,97,110,118,97,115,95,105,115,97,98,115,116,114,97,99,116,105,111,110,0,95,99,97,110,118,97,115,95,105,115,99,111,110,110,101, 99,116,101,100,0,95,99,97,110,118,97,115,95,105,115,116,97,98,108,101,0,95,99,97,110,118,97,115,95,107,101,121,0,95,99,97,110,118,97,115,95,108,105,115,116,0,95,99,97,110,118,97,115,95,108,111,97,100,98,97,110,103,0,95,99,97,110,118,97,115,95,108,111, 97,100,98,97,110,103,115,117,98,112,97,116,99,104,101,115,0,95,99,97,110,118,97,115,95,108,111,103,101,114,114,111,114,0,95,99,97,110,118,97,115,95,109,97,107,101,98,105,110,100,115,121,109,0,95,99,97,110,118,97,115,95,109,97,107,101,102,105,108,101, 110,97,109,101,0,95,99,97,110,118,97,115,95,109,97,112,0,95,99,97,110,118,97,115,95,109,101,110,117,97,114,114,97,121,0,95,99,97,110,118,97,115,95,109,101,110,117,99,108,111,115,101,0,95,99,97,110,118,97,115,95,109,111,116,105,111,110,0,95,99,97,110, 118,97,115,95,109,111,117,115,101,0,95,99,97,110,118,97,115,95,109,111,117,115,101,117,112,0,95,99,97,110,118,97,115,95,109,115,103,0,95,99,97,110,118,97,115,95,109,121,99,110,118,0,95,99,97,110,118,97,115,95,110,101,119,0,95,99,97,110,118,97,115,95, 110,111,117,110,100,111,0,95,99,97,110,118,97,115,95,110,117,109,98,111,120,0,95,99,97,110,118,97,115,95,111,98,106,0,95,99,97,110,118,97,115,95,111,98,106,102,111,114,0,95,99,97,110,118,97,115,95,111,112,101,110,0,95,99,97,110,118,97,115,95,112,111, 112,97,98,115,116,114,97,99,116,105,111,110,0,95,99,97,110,118,97,115,95,112,114,105,110,116,0,95,99,97,110,118,97,115,95,112,114,111,112,101,114,116,105,101,115,0,95,99,97,110,118,97,115,95,114,101,97,108,105,122,101,100,111,108,108,97,114,0,95,99,97, 110,118,97,115,95,114,101,100,114,97,119,0,95,99,97,110,118,97,115,95,114,101,100,114,97,119,97,108,108,102,111,114,116,101,109,112,108,97,116,101,0,95,99,97,110,118,97,115,95,114,101,100,114,97,119,97,108,108,102,111,114,116,101,109,112,108,97,116,101, 99,97,110,118,97,115,0,95,99,97,110,118,97,115,95,114,101,102,108,101,99,116,116,105,116,108,101,0,95,99,97,110,118,97,115,95,114,101,108,111,97,100,0,95,99,97,110,118,97,115,95,114,101,110,97,109,101,0,95,99,97,110,118,97,115,95,114,101,115,111,114, 116,105,110,108,101,116,115,0,95,99,97,110,118,97,115,95,114,101,115,111,114,116,111,117,116,108,101,116,115,0,95,99,97,110,118,97,115,95,114,101,115,116,111,114,101,0,95,99,97,110,118,97,115,95,114,101,115,116,111,114,101,99,111,110,110,101,99,116,105, 111,110,115,0,95,99,97,110,118,97,115,95,114,101,115,117,109,101,95,100,115,112,0,95,99,97,110,118,97,115,95,114,109,105,110,108,101,116,0,95,99,97,110,118,97,115,95,114,109,111,117,116,108,101,116,0,95,99,97,110,118,97,115,95,115,97,118,101,100,101, 99,108,97,114,97,116,105,111,110,115,116,111,0,95,99,97,110,118,97,115,95,115,101,108,101,99,116,105,110,114,101,99,116,0,95,99,97,110,118,97,115,95,115,101,116,97,114,103,115,0,95,99,97,110,118,97,115,95,115,101,116,99,117,114,114,101,110,116,0,95,99, 97,110,118,97,115,95,115,101,116,99,117,114,115,111,114,0,95,99,97,110,118,97,115,95,115,101,116,100,101,108,101,116,105,110,103,0,95,99,97,110,118,97,115,95,115,101,116,103,114,97,112,104,0,95,99,97,110,118,97,115,95,115,101,116,117,110,100,111,0,95, 99,97,110,118,97,115,95,115,104,111,119,116,101,120,116,0,95,99,97,110,118,97,115,95,115,116,97,114,116,109,111,116,105,111,110,0,95,99,97,110,118,97,115,95,115,116,111,119,99,111,110,110,101,99,116,105,111,110,115,0,95,99,97,110,118,97,115,95,115,117, 115,112,101,110,100,95,100,115,112,0,95,99,97,110,118,97,115,95,115,121,109,98,111,108,97,116,111,109,0,95,99,97,110,118,97,115,95,116,111,103,103,108,101,0,95,99,97,110,118,97,115,95,117,110,115,101,116,99,117,114,114,101,110,116,0,95,99,97,110,118, 97,115,95,117,112,100,97,116,101,95,100,115,112,0,95,99,97,110,118,97,115,95,117,112,100,97,116,101,119,105,110,100,111,119,108,105,115,116,0,95,99,97,110,118,97,115,95,118,100,105,97,108,0,95,99,97,110,118,97,115,95,118,105,115,0,95,99,97,110,118,97, 115,95,118,114,97,100,105,111,0,95,99,97,110,118,97,115,95,118,115,108,105,100,101,114,0,95,99,97,110,118,97,115,95,118,117,109,101,116,101,114,0,95,99,97,110,118,97,115,95,119,104,105,99,104,102,105,110,100,0,95,99,97,110,118,97,115,95,119,114,105,116, 101,115,99,97,108,97,114,0,95,99,102,102,116,0,95,99,104,97,110,103,101,95,115,101,116,117,112,0,95,99,108,97,115,115,95,97,100,100,97,110,121,116,104,105,110,103,0,95,99,108,97,115,115,95,97,100,100,98,97,110,103,0,95,99,108,97,115,115,95,97,100,100, 99,114,101,97,116,111,114,0,95,99,108,97,115,115,95,97,100,100,108,105,115,116,0,95,99,108,97,115,115,95,97,100,100,109,101,116,104,111,100,0,95,99,108,97,115,115,95,97,100,100,112,111,105,110,116,101,114,0,95,99,108,97,115,115,95,97,100,100,115,121, 109,98,111,108,0,95,99,108,97,115,115,95,100,111,97,100,100,102,108,111,97,116,0,95,99,108,97,115,115,95,100,111,109,97,105,110,115,105,103,110,97,108,105,110,0,95,99,108,97,115,115,95,103,101,116,104,101,108,112,100,105,114,0,95,99,108,97,115,115,95, 103,101,116,104,101,108,112,110,97,109,101,0,95,99,108,97,115,115,95,103,101,116,110,97,109,101,0,95,99,108,97,115,115,95,103,101,116,112,114,111,112,101,114,116,105,101,115,102,110,0,95,99,108,97,115,115,95,103,101,116,115,97,118,101,102,110,0,95,99, 108,97,115,115,95,105,115,100,114,97,119,99,111,109,109,97,110,100,0,95,99,108,97,115,115,95,110,101,119,0,95,99,108,97,115,115,95,115,101,116,95,101,120,116,101,114,110,95,100,105,114,0,95,99,108,97,115,115,95,115,101,116,100,114,97,119,99,111,109,109, 97,110,100,0,95,99,108,97,115,115,95,115,101,116,104,101,108,112,115,121,109,98,111,108,0,95,99,108,97,115,115,95,115,101,116,112,97,114,101,110,116,119,105,100,103,101,116,0,95,99,108,97,115,115,95,115,101,116,112,114,111,112,101,114,116,105,101,115, 102,110,0,95,99,108,97,115,115,95,115,101,116,115,97,118,101,102,110,0,95,99,108,97,115,115,95,115,101,116,119,105,100,103,101,116,0,95,99,108,111,99,107,95,100,101,108,97,121,0,95,99,108,111,99,107,95,102,114,101,101,0,95,99,108,111,99,107,95,103,101, 116,108,111,103,105,99,97,108,116,105,109,101,0,95,99,108,111,99,107,95,103,101,116,115,121,115,116,105,109,101,0,95,99,108,111,99,107,95,103,101,116,115,121,115,116,105,109,101,97,102,116,101,114,0,95,99,108,111,99,107,95,103,101,116,116,105,109,101, 115,105,110,99,101,0,95,99,108,111,99,107,95,110,101,119,0,95,99,108,111,99,107,95,115,101,116,0,95,99,108,111,99,107,95,115,101,116,108,105,115,116,0,95,99,108,111,99,107,95,117,110,115,101,116,0,95,99,111,109,112,117,116,101,95,102,102,116,0,95,99, 111,110,102,95,105,110,105,116,0,95,99,111,112,121,95,112,101,114,102,56,0,95,99,111,112,121,95,112,101,114,102,111,114,109,0,95,99,111,112,121,98,121,116,101,115,0,95,99,111,115,95,116,97,98,108,101,0,95,99,114,101,97,116,101,95,104,97,110,110,105,110, 103,0,95,99,114,101,97,116,101,95,114,101,99,116,97,110,103,117,108,97,114,0,95,99,117,114,118,101,95,99,108,97,115,115,0,95,99,117,114,118,101,95,102,108,111,97,116,0,95,99,117,114,118,101,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95, 100,95,97,114,105,116,104,109,101,116,105,99,95,115,101,116,117,112,0,95,100,95,97,114,114,97,121,95,115,101,116,117,112,0,95,100,95,99,116,108,95,115,101,116,117,112,0,95,100,95,100,97,99,95,115,101,116,117,112,0,95,100,95,100,101,108,97,121,95,115, 101,116,117,112,0,95,100,95,102,102,116,95,115,101,116,117,112,0,95,100,95,102,105,108,116,101,114,95,115,101,116,117,112,0,95,100,95,103,108,111,98,97,108,95,115,101,116,117,112,0,95,100,95,109,97,116,104,95,115,101,116,117,112,0,95,100,95,109,105,115, 99,95,115,101,116,117,112,0,95,100,95,111,115,99,95,115,101,116,117,112,0,95,100,95,115,111,117,110,100,102,105,108,101,95,115,101,116,117,112,0,95,100,95,117,103,101,110,95,115,101,116,117,112,0,95,100,98,116,111,112,111,119,0,95,100,98,116,111,112, 111,119,95,116,105,108,100,101,95,99,108,97,115,115,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,98,116,111,114,109,115,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,99,108,97,115,115,0,95,100,98, 116,111,114,109,115,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,111,103,101,110,115,121,109,0,95,100,111,119,110,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,48,0,95,100,114,97,119,110,117,109,98,101,114,95,99,108,97,115, 115,0,95,100,114,97,119,110,117,109,98,101,114,95,102,108,111,97,116,0,95,100,114,97,119,110,117,109,98,101,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,100,115,112,95,97,100,100,0,95,100,115,112,95,97,100,100,95,99,111,112,121,0, 95,100,115,112,95,97,100,100,95,112,108,117,115,0,95,100,115,112,95,97,100,100,95,115,99,97,108,97,114,99,111,112,121,0,95,100,115,112,95,97,100,100,95,122,101,114,111,0,95,100,115,112,95,97,100,100,118,0,95,100,115,112,95,116,105,99,107,0,95,100,117, 109,109,121,95,99,108,111,115,101,95,97,117,100,105,111,0,95,100,117,109,109,121,95,103,101,116,100,101,118,115,0,95,100,117,109,109,121,95,108,105,115,116,100,101,118,115,0,95,100,117,109,109,121,95,111,112,101,110,95,97,117,100,105,111,0,95,100,117, 109,109,121,95,115,101,110,100,95,100,97,99,115,0,95,101,110,100,112,111,115,116,0,95,101,110,118,95,116,105,108,100,101,95,99,108,97,115,115,0,95,101,110,118,95,116,105,108,100,101,95,115,101,116,117,112,0,95,101,114,114,111,114,0,95,101,120,112,95, 116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,102,102,116,95,99,108,101,97,114,0,95,102,105,101,108,100,100,101,115,99,95,99,118,116,102,114,111,109,99,111,111,114,100,0,95,102,105,101,108,100,100,101,115,99,95,99,118,116,116,111,99,111,111, 114,100,0,95,102,105,101,108,100,100,101,115,99,95,103,101,116,99,111,111,114,100,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,99,111,111,114,100,0,95,102,108,111,97,116,105,110,108,101,116,95,110,101,119,0,95,102,114,101,101,98,121,116,101, 115,0,95,102,116,111,109,0,95,102,116,111,109,95,116,105,108,100,101,95,99,108,97,115,115,0,95,102,116,111,109,95,116,105,108,100,101,95,115,101,116,117,112,0,95,103,95,97,114,114,97,121,95,115,101,116,117,112,0,95,103,95,98,97,110,103,95,115,101,116, 117,112,0,95,103,95,99,97,110,118,97,115,95,115,101,116,117,112,0,95,103,95,101,100,105,116,111,114,95,115,101,116,117,112,0,95,103,95,103,114,97,112,104,95,115,101,116,117,112,0,95,103,95,103,117,105,99,111,110,110,101,99,116,95,115,101,116,117,112, 0,95,103,95,104,114,97,100,105,111,95,115,101,116,117,112,0,95,103,95,104,115,108,105,100,101,114,95,115,101,116,117,112,0,95,103,95,105,111,95,115,101,116,117,112,0,95,103,95,109,121,99,97,110,118,97,115,95,115,101,116,117,112,0,95,103,95,110,117,109, 98,111,120,95,115,101,116,117,112,0,95,103,95,114,101,97,100,119,114,105,116,101,95,115,101,116,117,112,0,95,103,95,115,99,97,108,97,114,95,115,101,116,117,112,0,95,103,95,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,103,95,116,101,120, 116,95,115,101,116,117,112,0,95,103,95,116,111,103,103,108,101,95,115,101,116,117,112,0,95,103,95,116,114,97,118,101,114,115,97,108,95,115,101,116,117,112,0,95,103,95,118,114,97,100,105,111,95,115,101,116,117,112,0,95,103,95,118,115,108,105,100,101,114, 95,115,101,116,117,112,0,95,103,95,118,117,109,101,116,101,114,95,115,101,116,117,112,0,95,103,97,114,114,97,121,95,97,109,98,105,103,101,110,100,105,97,110,0,95,103,97,114,114,97,121,95,97,114,114,97,121,100,105,97,108,111,103,0,95,103,97,114,114,97, 121,95,97,114,114,97,121,118,105,101,119,108,105,115,116,95,99,108,111,115,101,0,95,103,97,114,114,97,121,95,97,114,114,97,121,118,105,101,119,108,105,115,116,95,102,105,108,108,112,97,103,101,0,95,103,97,114,114,97,121,95,97,114,114,97,121,118,105,101, 119,108,105,115,116,95,110,101,119,0,95,103,97,114,114,97,121,95,99,108,97,115,115,0,95,103,97,114,114,97,121,95,103,101,116,97,114,114,97,121,0,95,103,97,114,114,97,121,95,103,101,116,102,108,111,97,116,97,114,114,97,121,0,95,103,97,114,114,97,121,95, 103,101,116,102,108,111,97,116,119,111,114,100,115,0,95,103,97,114,114,97,121,95,103,101,116,110,97,109,101,0,95,103,97,114,114,97,121,95,105,110,105,116,0,95,103,97,114,114,97,121,95,110,112,111,105,110,116,115,0,95,103,97,114,114,97,121,95,112,114, 111,112,101,114,116,105,101,115,0,95,103,97,114,114,97,121,95,114,101,100,114,97,119,0,95,103,97,114,114,97,121,95,114,101,115,105,122,101,0,95,103,97,114,114,97,121,95,114,101,115,105,122,101,95,108,111,110,103,0,95,103,97,114,114,97,121,95,115,101, 116,115,97,118,101,105,116,0,95,103,97,114,114,97,121,95,116,101,109,112,108,97,116,101,0,95,103,97,114,114,97,121,95,117,115,101,100,105,110,100,115,112,0,95,103,97,114,114,97,121,95,118,101,99,0,95,103,97,114,114,97,121,95,119,105,100,103,101,116,98, 101,104,97,118,105,111,114,0,95,103,101,110,115,121,109,0,95,103,101,116,95,115,121,115,95,100,97,99,115,114,0,95,103,101,116,95,115,121,115,95,109,97,105,110,95,97,100,118,97,110,99,101,0,95,103,101,116,95,115,121,115,95,115,99,104,101,100,97,100,118, 97,110,99,101,0,95,103,101,116,95,115,121,115,95,115,99,104,101,100,98,108,111,99,107,115,105,122,101,0,95,103,101,116,95,115,121,115,95,115,108,101,101,112,103,114,97,105,110,0,95,103,101,116,95,115,121,115,95,115,111,117,110,100,105,110,0,95,103,101, 116,95,115,121,115,95,115,111,117,110,100,111,117,116,0,95,103,101,116,95,115,121,115,95,116,105,109,101,0,95,103,101,116,95,115,121,115,95,116,105,109,101,95,112,101,114,95,100,115,112,95,116,105,99,107,0,95,103,101,116,98,121,116,101,115,0,95,103,101, 116,102,110,0,95,103,101,116,122,98,121,116,101,115,0,95,103,102,120,115,116,117,98,95,100,101,108,101,116,101,102,111,114,107,101,121,0,95,103,102,120,115,116,117,98,95,110,101,119,0,95,103,108,105,115,116,95,97,100,100,0,95,103,108,105,115,116,95,97, 100,100,103,108,105,115,116,0,95,103,108,105,115,116,95,97,109,114,101,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,115,0,95,103,108,105,115,116,95,97,114,114,97,121,100,105,97,108,111,103,0,95,103,108,105,115,116,95,99,108,101, 97,110,117,112,0,95,103,108,105,115,116,95,99,108,101,97,114,0,95,103,108,105,115,116,95,100,101,108,101,116,101,0,95,103,108,105,115,116,95,100,101,115,101,108,101,99,116,0,95,103,108,105,115,116,95,100,101,115,101,108,101,99,116,108,105,110,101,0,95, 103,108,105,115,116,95,100,112,105,120,116,111,100,120,0,95,103,108,105,115,116,95,100,112,105,120,116,111,100,121,0,95,103,108,105,115,116,95,100,114,97,119,105,111,102,111,114,0,95,103,108,105,115,116,95,101,114,97,115,101,105,111,102,111,114,0,95, 103,108,105,115,116,95,102,105,110,100,103,114,97,112,104,0,95,103,108,105,115,116,95,102,105,110,100,114,116,101,120,116,0,95,103,108,105,115,116,95,102,114,101,101,0,95,103,108,105,115,116,95,103,101,116,99,97,110,118,97,115,0,95,103,108,105,115,116, 95,103,101,116,102,111,110,116,0,95,103,108,105,115,116,95,103,101,116,105,110,100,101,120,0,95,103,108,105,115,116,95,103,101,116,110,101,120,116,120,121,0,95,103,108,105,115,116,95,103,108,105,115,116,0,95,103,108,105,115,116,95,103,114,97,98,0,95, 103,108,105,115,116,95,105,110,105,116,0,95,103,108,105,115,116,95,105,115,103,114,97,112,104,0,95,103,108,105,115,116,95,105,115,115,101,108,101,99,116,101,100,0,95,103,108,105,115,116,95,105,115,116,111,112,108,101,118,101,108,0,95,103,108,105,115, 116,95,105,115,118,105,115,105,98,108,101,0,95,103,108,105,115,116,95,109,101,110,117,95,111,112,101,110,0,95,103,108,105,115,116,95,109,101,114,103,101,102,105,108,101,0,95,103,108,105,115,116,95,110,111,115,101,108,101,99,116,0,95,103,108,105,115,116, 95,112,105,120,101,108,115,116,111,120,0,95,103,108,105,115,116,95,112,105,120,101,108,115,116,111,121,0,95,103,108,105,115,116,95,114,101,97,100,0,95,103,108,105,115,116,95,114,101,97,100,102,114,111,109,98,105,110,98,117,102,0,95,103,108,105,115,116, 95,114,101,97,100,115,99,97,108,97,114,0,95,103,108,105,115,116,95,114,101,100,114,97,119,0,95,103,108,105,115,116,95,114,101,116,101,120,116,0,95,103,108,105,115,116,95,115,99,97,108,97,114,0,95,103,108,105,115,116,95,115,101,108,101,99,116,0,95,103, 108,105,115,116,95,115,101,108,101,99,116,97,108,108,0,95,103,108,105,115,116,95,115,101,108,101,99,116,105,111,110,105,110,100,101,120,0,95,103,108,105,115,116,95,115,101,108,101,99,116,108,105,110,101,0,95,103,108,105,115,116,95,115,111,114,116,0,95, 103,108,105,115,116,95,116,101,120,116,0,95,103,108,105,115,116,95,118,97,108,105,100,0,95,103,108,105,115,116,95,119,114,105,116,101,116,111,98,105,110,98,117,102,0,95,103,108,105,115,116,95,120,116,111,112,105,120,101,108,115,0,95,103,108,105,115,116, 95,121,116,111,112,105,120,101,108,115,0,95,103,108,111,98,95,97,117,100,105,111,95,100,105,97,108,111,103,0,95,103,108,111,98,95,97,117,100,105,111,95,112,114,111,112,101,114,116,105,101,115,0,95,103,108,111,98,95,97,117,100,105,111,95,115,101,116,97, 112,105,0,95,103,108,111,98,95,97,117,100,105,111,115,116,97,116,117,115,0,95,103,108,111,98,95,100,115,112,0,95,103,108,111,98,95,101,118,97,108,102,105,108,101,0,95,103,108,111,98,95,102,105,110,100,101,114,114,111,114,0,95,103,108,111,98,95,102,111, 111,0,95,103,108,111,98,95,105,110,105,116,0,95,103,108,111,98,95,105,110,105,116,102,114,111,109,103,117,105,0,95,103,108,111,98,95,107,101,121,0,95,103,108,111,98,95,109,101,116,101,114,115,0,95,103,108,111,98,95,109,105,100,105,95,100,105,97,108,111, 103,0,95,103,108,111,98,95,109,105,100,105,95,112,114,111,112,101,114,116,105,101,115,0,95,103,108,111,98,95,109,105,100,105,95,115,101,116,97,112,105,0,95,103,108,111,98,95,112,97,116,104,95,100,105,97,108,111,103,0,95,103,108,111,98,95,112,100,111, 98,106,101,99,116,0,95,103,108,111,98,95,112,105,110,103,0,95,103,108,111,98,95,113,117,105,116,0,95,103,108,111,98,95,115,97,118,101,112,114,101,102,101,114,101,110,99,101,115,0,95,103,108,111,98,95,115,101,116,102,105,108,101,110,97,109,101,0,95,103, 108,111,98,95,115,116,97,114,116,95,112,97,116,104,95,100,105,97,108,111,103,0,95,103,108,111,98,95,115,116,97,114,116,95,115,116,97,114,116,117,112,95,100,105,97,108,111,103,0,95,103,108,111,98,95,115,116,97,114,116,117,112,95,100,105,97,108,111,103, 0,95,103,108,111,98,95,118,101,114,105,102,121,113,117,105,116,0,95,103,111,98,106,95,97,99,116,105,118,97,116,101,0,95,103,111,98,106,95,99,108,105,99,107,0,95,103,111,98,106,95,100,101,108,101,116,101,0,95,103,111,98,106,95,100,105,115,112,108,97,99, 101,0,95,103,111,98,106,95,103,101,116,114,101,99,116,0,95,103,111,98,106,95,115,97,118,101,0,95,103,111,98,106,95,115,101,108,101,99,116,0,95,103,111,98,106,95,115,104,111,117,108,100,118,105,115,0,95,103,111,98,106,95,118,105,115,0,95,103,112,111,105, 110,116,101,114,95,99,104,101,99,107,0,95,103,112,111,105,110,116,101,114,95,99,111,112,121,0,95,103,112,111,105,110,116,101,114,95,105,110,105,116,0,95,103,112,111,105,110,116,101,114,95,115,101,116,97,114,114,97,121,0,95,103,112,111,105,110,116,101, 114,95,115,101,116,103,108,105,115,116,0,95,103,112,111,105,110,116,101,114,95,117,110,115,101,116,0,95,103,114,97,112,104,95,97,114,114,97,121,0,95,103,114,97,112,104,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,103,115,116,117,98,95, 99,117,116,111,102,102,0,95,103,115,116,117,98,95,110,101,119,0,95,103,116,101,109,112,108,97,116,101,95,103,101,116,0,95,103,117,105,99,111,110,110,101,99,116,95,110,101,119,0,95,103,117,105,99,111,110,110,101,99,116,95,110,111,116,97,114,103,101,116, 0,95,104,114,97,100,105,111,95,100,114,97,119,0,95,104,114,97,100,105,111,95,100,114,97,119,95,99,111,110,102,105,103,0,95,104,114,97,100,105,111,95,100,114,97,119,95,101,114,97,115,101,0,95,104,114,97,100,105,111,95,100,114,97,119,95,105,111,0,95,104, 114,97,100,105,111,95,100,114,97,119,95,109,111,118,101,0,95,104,114,97,100,105,111,95,100,114,97,119,95,110,101,119,0,95,104,114,97,100,105,111,95,100,114,97,119,95,115,101,108,101,99,116,0,95,104,114,97,100,105,111,95,100,114,97,119,95,117,112,100, 97,116,101,0,95,104,114,97,100,105,111,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,104,115,108,105,100,101,114,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,104,115,108,105,100,101,114,95,99,104,101,99,107,95,119,105,100,116,104, 0,95,104,115,108,105,100,101,114,95,100,114,97,119,0,95,104,115,108,105,100,101,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,105,101,109,95,102,115,116,121,108,101,116,111,105,110,116,0,95,105,101,109,95,105,110,116,116,111,102,115, 116,121,108,101,0,95,105,101,109,95,105,110,116,116,111,115,121,109,97,114,103,115,0,95,105,101,109,95,115,121,109,97,114,103,115,116,111,105,110,116,0,95,105,101,109,103,117,105,95,97,108,108,95,99,111,108,50,115,97,118,101,0,95,105,101,109,103,117, 105,95,97,108,108,95,99,111,108,102,114,111,109,108,111,97,100,0,95,105,101,109,103,117,105,95,97,108,108,95,100,111,108,108,97,114,50,114,97,117,116,101,0,95,105,101,109,103,117,105,95,97,108,108,95,100,111,108,108,97,114,97,114,103,50,115,121,109,0, 95,105,101,109,103,117,105,95,97,108,108,95,114,97,117,116,101,50,100,111,108,108,97,114,0,95,105,101,109,103,117,105,95,97,108,108,95,115,121,109,50,100,111,108,108,97,114,97,114,103,0,95,105,101,109,103,117,105,95,99,108,105,112,95,102,111,110,116, 0,95,105,101,109,103,117,105,95,99,108,105,112,95,115,105,122,101,0,95,105,101,109,103,117,105,95,99,111,108,111,114,0,95,105,101,109,103,117,105,95,99,111,108,111,114,95,104,101,120,0,95,105,101,109,103,117,105,95,99,111,109,112,97,116,105,98,108,101, 95,99,111,108,0,95,105,101,109,103,117,105,95,100,101,108,101,116,101,0,95,105,101,109,103,117,105,95,100,101,108,116,97,0,95,105,101,109,103,117,105,95,100,105,97,108,111,103,0,95,105,101,109,103,117,105,95,100,105,115,112,108,97,99,101,0,95,105,101, 109,103,117,105,95,100,111,108,108,97,114,50,114,97,117,116,101,0,95,105,101,109,103,117,105,95,102,105,114,115,116,95,100,111,108,108,97,114,97,114,103,50,115,121,109,0,95,105,101,109,103,117,105,95,108,97,98,101,108,0,95,105,101,109,103,117,105,95, 108,97,98,101,108,95,102,111,110,116,0,95,105,101,109,103,117,105,95,108,97,98,101,108,95,112,111,115,0,95,105,101,109,103,117,105,95,109,111,100,117,108,111,95,99,111,108,111,114,0,95,105,101,109,103,117,105,95,110,101,119,95,100,111,103,101,116,110, 97,109,101,0,95,105,101,109,103,117,105,95,110,101,119,95,103,101,116,110,97,109,101,115,0,95,105,101,109,103,117,105,95,112,111,115,0,95,105,101,109,103,117,105,95,112,114,111,112,101,114,116,105,101,115,0,95,105,101,109,103,117,105,95,114,97,117,116, 101,50,100,111,108,108,97,114,0,95,105,101,109,103,117,105,95,114,101,99,101,105,118,101,0,95,105,101,109,103,117,105,95,115,97,118,101,0,95,105,101,109,103,117,105,95,115,101,108,101,99,116,0,95,105,101,109,103,117,105,95,115,101,110,100,0,95,105,101, 109,103,117,105,95,115,105,122,101,0,95,105,101,109,103,117,105,95,118,101,114,105,102,121,95,115,110,100,95,110,101,95,114,99,118,0,95,105,101,109,103,117,105,95,118,105,115,0,95,105,101,109,103,117,105,95,118,117,95,99,111,108,0,95,105,101,109,103, 117,105,95,118,117,95,100,98,50,105,0,95,105,101,109,103,117,105,95,118,117,95,115,99,97,108,101,95,115,116,114,0,95,105,108,111,103,50,0,95,105,110,108,101,116,95,102,114,101,101,0,95,105,110,108,101,116,95,103,101,116,115,105,103,110,97,108,105,110, 100,101,120,0,95,105,110,108,101,116,95,110,101,119,0,95,105,110,109,105,100,105,95,97,102,116,101,114,116,111,117,99,104,0,95,105,110,109,105,100,105,95,98,121,116,101,0,95,105,110,109,105,100,105,95,99,108,107,0,95,105,110,109,105,100,105,95,99,111, 110,116,114,111,108,99,104,97,110,103,101,0,95,105,110,109,105,100,105,95,110,111,116,101,111,110,0,95,105,110,109,105,100,105,95,112,105,116,99,104,98,101,110,100,0,95,105,110,109,105,100,105,95,112,111,108,121,97,102,116,101,114,116,111,117,99,104, 0,95,105,110,109,105,100,105,95,112,114,111,103,114,97,109,99,104,97,110,103,101,0,95,105,110,109,105,100,105,95,114,101,97,108,116,105,109,101,105,110,0,95,105,110,109,105,100,105,95,115,121,115,101,120,0,95,108,105,98,112,100,95,97,100,100,95,102,108, 111,97,116,0,95,108,105,98,112,100,95,97,100,100,95,115,121,109,98,111,108,0,95,108,105,98,112,100,95,97,100,100,95,116,111,95,115,101,97,114,99,104,95,112,97,116,104,0,95,108,105,98,112,100,95,97,102,116,101,114,116,111,117,99,104,0,95,108,105,98,112, 100,95,97,102,116,101,114,116,111,117,99,104,104,111,111,107,0,95,108,105,98,112,100,95,98,97,110,103,0,95,108,105,98,112,100,95,98,97,110,103,104,111,111,107,0,95,108,105,98,112,100,95,98,105,110,100,0,95,108,105,98,112,100,95,98,108,111,99,107,115, 105,122,101,0,95,108,105,98,112,100,95,99,108,101,97,114,95,115,101,97,114,99,104,95,112,97,116,104,0,95,108,105,98,112,100,95,99,108,111,115,101,102,105,108,101,0,95,108,105,98,112,100,95,99,111,110,116,114,111,108,99,104,97,110,103,101,0,95,108,105, 98,112,100,95,99,111,110,116,114,111,108,99,104,97,110,103,101,104,111,111,107,0,95,108,105,98,112,100,95,101,120,105,115,116,115,0,95,108,105,98,112,100,95,102,105,110,105,115,104,95,108,105,115,116,0,95,108,105,98,112,100,95,102,105,110,105,115,104, 95,109,101,115,115,97,103,101,0,95,108,105,98,112,100,95,102,108,111,97,116,0,95,108,105,98,112,100,95,102,108,111,97,116,104,111,111,107,0,95,108,105,98,112,100,95,103,101,116,100,111,108,108,97,114,122,101,114,111,0,95,108,105,98,112,100,95,105,110, 105,116,0,95,108,105,98,112,100,95,105,110,105,116,95,97,117,100,105,111,0,95,108,105,98,112,100,95,108,105,115,116,104,111,111,107,0,95,108,105,98,112,100,95,109,101,115,115,97,103,101,104,111,111,107,0,95,108,105,98,112,100,95,109,105,100,105,98,121, 116,101,0,95,108,105,98,112,100,95,109,105,100,105,98,121,116,101,104,111,111,107,0,95,108,105,98,112,100,95,110,111,116,101,111,110,0,95,108,105,98,112,100,95,110,111,116,101,111,110,104,111,111,107,0,95,108,105,98,112,100,95,111,112,101,110,102,105, 108,101,0,95,108,105,98,112,100,95,112,105,116,99,104,98,101,110,100,0,95,108,105,98,112,100,95,112,105,116,99,104,98,101,110,100,104,111,111,107,0,95,108,105,98,112,100,95,112,111,108,121,97,102,116,101,114,116,111,117,99,104,0,95,108,105,98,112,100, 95,112,111,108,121,97,102,116,101,114,116,111,117,99,104,104,111,111,107,0,95,108,105,98,112,100,95,112,114,105,110,116,104,111,111,107,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,100,111,117,98,108,101,0,95,108,105,98,112,100,95,112,114, 111,99,101,115,115,95,102,108,111,97,116,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,114,97,119,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,115,104,111,114,116,0,95,108,105,98,112,100,95,112,114,111,103,114,97,109,99,104,97, 110,103,101,0,95,108,105,98,112,100,95,112,114,111,103,114,97,109,99,104,97,110,103,101,104,111,111,107,0,95,108,105,98,112,100,95,115,116,97,114,116,95,109,101,115,115,97,103,101,0,95,108,105,98,112,100,95,115,121,109,98,111,108,0,95,108,105,98,112, 100,95,115,121,109,98,111,108,104,111,111,107,0,95,108,105,98,112,100,95,115,121,115,101,120,0,95,108,105,98,112,100,95,115,121,115,114,101,97,108,116,105,109,101,0,95,108,105,98,112,100,95,117,110,98,105,110,100,0,95,108,105,98,112,100,114,101,99,101, 105,118,101,95,110,101,119,0,95,108,105,98,112,100,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,108,105,110,101,116,114,97,118,101,114,115,101,114,95,110,101,120,116,0,95,108,105,110,101,116,114,97,118,101,114,115,101,114,95,115,107,105,112, 111,98,106,101,99,116,0,95,108,105,110,101,116,114,97,118,101,114,115,101,114,95,115,116,97,114,116,0,95,108,105,115,116,95,97,112,112,101,110,100,95,99,108,97,115,115,0,95,108,105,115,116,95,108,101,110,103,116,104,95,99,108,97,115,115,0,95,108,105, 115,116,95,112,114,101,112,101,110,100,95,99,108,97,115,115,0,95,108,105,115,116,95,115,112,108,105,116,95,99,108,97,115,115,0,95,108,105,115,116,95,116,114,105,109,95,99,108,97,115,115,0,95,108,111,97,100,95,114,101,103,105,115,116,101,114,115,0,95, 108,111,103,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,109,95,98,97,116,99,104,109,97,105,110,0,95,109,95,109,97,105,110,108,111,111,112,0,95,109,95,112,100,95,115,101,116,117,112,0,95,109,97,120,95,100,101,102,97,117,108,116,0,95,109, 97,120,95,112,101,114,102,56,0,95,109,97,120,95,112,101,114,102,111,114,109,0,95,109,97,121,101,114,95,102,102,116,0,95,109,97,121,101,114,95,102,104,116,0,95,109,97,121,101,114,95,105,102,102,116,0,95,109,97,121,101,114,95,114,101,97,108,102,102,116, 0,95,109,97,121,101,114,95,114,101,97,108,105,102,102,116,0,95,109,101,115,115,95,105,110,105,116,0,95,109,105,110,95,112,101,114,102,56,0,95,109,105,110,95,112,101,114,102,111,114,109,0,95,109,105,110,117,115,95,112,101,114,102,56,0,95,109,105,110,117, 115,95,112,101,114,102,111,114,109,0,95,109,116,111,102,0,95,109,116,111,102,95,116,105,108,100,101,95,99,108,97,115,115,0,95,109,116,111,102,95,116,105,108,100,101,95,115,101,116,117,112,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,0,95,109, 121,95,99,97,110,118,97,115,95,100,114,97,119,95,99,111,110,102,105,103,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,101,114,97,115,101,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,109,111,118,101,0,95,109,121,95,99,97,110,118, 97,115,95,100,114,97,119,95,110,101,119,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,115,101,108,101,99,116,0,95,109,121,95,99,97,110,118,97,115,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,109,121,95,110,117,109,98,111, 120,95,99,97,108,99,95,102,111,110,116,119,105,100,116,104,0,95,109,121,95,110,117,109,98,111,120,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,109,121,95,110,117,109,98,111,120,95,99,108,105,112,0,95,109,121,95,110,117,109,98,111,120,95,100,114, 97,119,0,95,109,121,95,110,117,109,98,111,120,95,102,116,111,97,0,95,109,121,95,110,117,109,98,111,120,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,110,97,109,101,108,105,115,116,95,97,112,112,101,110,100,0,95,110,97,109,101,108,105, 115,116,95,97,112,112,101,110,100,95,102,105,108,101,115,0,95,110,97,109,101,108,105,115,116,95,102,114,101,101,0,95,110,97,109,101,108,105,115,116,95,103,101,116,0,95,110,101,116,95,97,108,108,111,99,0,95,110,101,116,95,100,101,97,108,108,111,99,0,95, 110,101,119,95,97,110,121,116,104,105,110,103,0,95,110,101,119,101,115,116,0,95,110,117,108,108,102,110,0,95,111,98,106,95,99,111,110,110,101,99,116,0,95,111,98,106,95,100,105,115,99,111,110,110,101,99,116,0,95,111,98,106,95,102,105,110,100,115,105,103, 110,97,108,115,99,97,108,97,114,0,95,111,98,106,95,105,110,105,116,0,95,111,98,106,95,105,115,115,105,103,110,97,108,105,110,108,101,116,0,95,111,98,106,95,105,115,115,105,103,110,97,108,111,117,116,108,101,116,0,95,111,98,106,95,108,105,115,116,0,95, 111,98,106,95,109,111,118,101,105,110,108,101,116,102,105,114,115,116,0,95,111,98,106,95,109,111,118,101,111,117,116,108,101,116,102,105,114,115,116,0,95,111,98,106,95,110,101,120,116,116,114,97,118,101,114,115,101,111,117,116,108,101,116,0,95,111,98, 106,95,110,105,110,108,101,116,115,0,95,111,98,106,95,110,111,117,116,108,101,116,115,0,95,111,98,106,95,110,115,105,103,105,110,108,101,116,115,0,95,111,98,106,95,110,115,105,103,111,117,116,108,101,116,115,0,95,111,98,106,95,115,105,103,105,110,108, 101,116,105,110,100,101,120,0,95,111,98,106,95,115,105,103,111,117,116,108,101,116,105,110,100,101,120,0,95,111,98,106,95,115,116,97,114,116,116,114,97,118,101,114,115,101,111,117,116,108,101,116,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108, 101,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108,101,95,118,105,97,95,99,97,110,118,97,115,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108,101,95,118,105,97,95,102,100,0,95,111,112,101,110,95,118,105,97,95,104,101,108,112,112,97,116, 104,0,95,111,112,101,110,95,118,105,97,95,112,97,116,104,0,95,111,117,116,108,101,116,95,97,110,121,116,104,105,110,103,0,95,111,117,116,108,101,116,95,98,97,110,103,0,95,111,117,116,108,101,116,95,102,108,111,97,116,0,95,111,117,116,108,101,116,95,102, 114,101,101,0,95,111,117,116,108,101,116,95,103,101,116,115,105,103,110,97,108,105,110,100,101,120,0,95,111,117,116,108,101,116,95,103,101,116,115,121,109,98,111,108,0,95,111,117,116,108,101,116,95,108,105,115,116,0,95,111,117,116,108,101,116,95,110, 101,119,0,95,111,117,116,108,101,116,95,112,111,105,110,116,101,114,0,95,111,117,116,108,101,116,95,115,101,116,115,116,97,99,107,108,105,109,0,95,111,117,116,108,101,116,95,115,121,109,98,111,108,0,95,111,117,116,109,105,100,105,95,97,102,116,101,114, 116,111,117,99,104,0,95,111,117,116,109,105,100,105,95,98,121,116,101,0,95,111,117,116,109,105,100,105,95,99,111,110,116,114,111,108,99,104,97,110,103,101,0,95,111,117,116,109,105,100,105,95,110,111,116,101,111,110,0,95,111,117,116,109,105,100,105,95, 112,105,116,99,104,98,101,110,100,0,95,111,117,116,109,105,100,105,95,112,111,108,121,97,102,116,101,114,116,111,117,99,104,0,95,111,117,116,109,105,100,105,95,112,114,111,103,114,97,109,99,104,97,110,103,101,0,95,111,118,101,114,95,112,101,114,102,56, 0,95,111,118,101,114,95,112,101,114,102,111,114,109,0,95,112,100,95,98,97,110,103,0,95,112,100,95,98,105,110,100,0,95,112,100,95,99,97,110,118,97,115,109,97,107,101,114,0,95,112,100,95,99,104,101,99,107,111,98,106,101,99,116,0,95,112,100,95,99,111,109, 112,105,108,101,100,97,116,101,0,95,112,100,95,99,111,109,112,105,108,101,116,105,109,101,0,95,112,100,95,100,111,108,111,97,100,98,97,110,103,0,95,112,100,95,101,114,114,111,114,0,95,112,100,95,102,102,116,0,95,112,100,95,102,105,110,100,98,121,99,108, 97,115,115,0,95,112,100,95,102,108,111,97,116,0,95,112,100,95,102,111,114,119,97,114,100,109,101,115,115,0,95,112,100,95,102,114,101,101,0,95,112,100,95,103,101,116,112,97,114,101,110,116,119,105,100,103,101,116,0,95,112,100,95,105,110,105,116,0,95,112, 100,95,108,105,115,116,0,95,112,100,95,110,101,119,0,95,112,100,95,110,101,119,101,115,116,0,95,112,100,95,111,98,106,101,99,116,109,97,107,101,114,0,95,112,100,95,112,111,105,110,116,101,114,0,95,112,100,95,112,111,112,115,121,109,0,95,112,100,95,112, 117,115,104,115,121,109,0,95,112,100,95,115,101,116,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,0,95,112,100,95,115,121,109,98,111,108,0,95,112,100,95,116,121,112,101,100,109,101,115,115,0,95,112,100,95,117,110,98,105,110,100,0, 95,112,100,95,118,101,114,115,105,111,110,0,95,112,100,95,118,109,101,115,115,0,95,112,100,102,108,111,97,116,95,115,101,116,117,112,0,95,112,100,105,110,116,95,115,101,116,117,112,0,95,112,100,115,121,109,98,111,108,95,115,101,116,117,112,0,95,112,108, 111,116,95,99,108,97,115,115,0,95,112,108,111,116,95,102,108,111,97,116,0,95,112,108,111,116,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,112,108,117,115,95,112,101,114,102,56,0,95,112,108,117,115,95,112,101,114,102,111,114,109,0,95, 112,111,105,110,116,101,114,105,110,108,101,116,95,110,101,119,0,95,112,111,115,116,0,95,112,111,115,116,97,116,111,109,0,95,112,111,115,116,102,108,111,97,116,0,95,112,111,115,116,115,116,114,105,110,103,0,95,112,111,119,95,116,105,108,100,101,95,112, 101,114,102,111,114,109,0,95,112,111,119,101,114,95,111,102,95,116,119,111,0,95,112,111,119,116,111,100,98,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,99,108,97,115,115,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,115,101,116, 117,112,0,95,113,56,95,114,115,113,114,116,0,95,113,56,95,115,113,114,116,0,95,113,114,115,113,114,116,0,95,113,115,113,114,116,0,95,114,101,115,97,109,112,108,101,95,100,115,112,0,95,114,101,115,97,109,112,108,101,95,102,114,101,101,0,95,114,101,115, 97,109,112,108,101,95,105,110,105,116,0,95,114,101,115,97,109,112,108,101,102,114,111,109,95,100,115,112,0,95,114,101,115,97,109,112,108,101,116,111,95,100,115,112,0,95,114,101,115,105,122,101,98,121,116,101,115,0,95,114,109,115,116,111,100,98,0,95,114, 109,115,116,111,100,98,95,116,105,108,100,101,95,99,108,97,115,115,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,115,101,116,117,112,0,95,114,111,117,116,101,95,115,101,116,117,112,0,95,114,116,101,120,116,95,97,99,116,105,118,97,116,101, 0,95,114,116,101,120,116,95,100,105,115,112,108,97,99,101,0,95,114,116,101,120,116,95,100,114,97,119,0,95,114,116,101,120,116,95,101,114,97,115,101,0,95,114,116,101,120,116,95,102,114,101,101,0,95,114,116,101,120,116,95,103,101,116,115,101,108,116,101, 120,116,0,95,114,116,101,120,116,95,103,101,116,116,97,103,0,95,114,116,101,120,116,95,103,101,116,116,101,120,116,0,95,114,116,101,120,116,95,104,101,105,103,104,116,0,95,114,116,101,120,116,95,107,101,121,0,95,114,116,101,120,116,95,109,111,117,115, 101,0,95,114,116,101,120,116,95,110,101,119,0,95,114,116,101,120,116,95,114,101,116,101,120,116,0,95,114,116,101,120,116,95,115,101,108,101,99,116,0,95,114,116,101,120,116,95,119,105,100,116,104,0,95,115,95,0,95,115,95,95,78,0,95,115,95,95,88,0,95,115, 95,97,110,121,116,104,105,110,103,0,95,115,95,98,97,110,103,0,95,115,95,102,108,111,97,116,0,95,115,95,108,105,115,116,0,95,115,95,112,111,105,110,116,101,114,0,95,115,95,115,105,103,110,97,108,0,95,115,95,115,121,109,98,111,108,0,95,115,95,120,0,95, 115,95,121,0,95,115,99,97,108,97,114,95,99,108,97,115,115,0,95,115,99,97,108,97,114,95,100,111,99,108,105,99,107,0,95,115,99,97,108,97,114,95,103,101,116,98,97,115,101,120,121,0,95,115,99,97,108,97,114,95,110,101,119,0,95,115,99,97,108,97,114,95,114, 101,100,114,97,119,0,95,115,99,97,108,97,114,109,97,120,95,112,101,114,102,56,0,95,115,99,97,108,97,114,109,97,120,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,109,105,110,95,112,101,114,102,56,0,95,115,99,97,108,97,114,109,105,110,95,112, 101,114,102,111,114,109,0,95,115,99,97,108,97,114,109,105,110,117,115,95,112,101,114,102,56,0,95,115,99,97,108,97,114,109,105,110,117,115,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,111,118,101,114,95,112,101,114,102,56,0,95,115,99,97,108, 97,114,111,118,101,114,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,112,108,117,115,95,112,101,114,102,56,0,95,115,99,97,108,97,114,112,108,117,115,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,116,105,109,101,115,95,112,101,114, 102,56,0,95,115,99,97,108,97,114,116,105,109,101,115,95,112,101,114,102,111,114,109,0,95,115,99,104,101,100,95,97,117,100,105,111,95,99,97,108,108,98,97,99,107,102,110,0,95,115,99,104,101,100,95,103,101,116,101,118,101,110,116,110,111,0,95,115,99,104, 101,100,95,114,101,111,112,101,110,109,101,112,108,101,97,115,101,0,95,115,99,104,101,100,95,115,101,116,95,117,115,105,110,103,95,97,117,100,105,111,0,95,115,99,104,101,100,95,116,105,99,107,0,95,115,101,108,101,99,116,95,115,101,116,117,112,0,95,115, 104,111,114,116,95,116,111,95,102,108,111,97,116,0,95,115,105,103,98,105,113,117,97,100,95,99,108,97,115,115,0,95,115,105,103,98,105,113,117,97,100,95,115,101,116,117,112,0,95,115,105,103,98,112,95,99,108,97,115,115,0,95,115,105,103,98,112,95,115,101, 116,117,112,0,95,115,105,103,99,112,111,108,101,95,99,108,97,115,115,0,95,115,105,103,99,112,111,108,101,95,115,101,116,117,112,0,95,115,105,103,99,122,101,114,111,95,99,108,97,115,115,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,99,108,97,115, 115,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,115,101,116,117,112,0,95,115,105,103,99,122,101,114,111,95,115,101,116,117,112,0,95,115,105,103,104,105,112,95,99,108,97,115,115,0,95,115,105,103,104,105,112,95,115,101,116,117,112,0,95,115,105, 103,108,111,112,95,99,108,97,115,115,0,95,115,105,103,108,111,112,95,115,101,116,117,112,0,95,115,105,103,110,97,108,95,99,108,101,97,110,117,112,0,95,115,105,103,110,97,108,95,99,111,109,112,97,116,105,98,108,101,0,95,115,105,103,110,97,108,95,109,97, 107,101,114,101,117,115,97,98,108,101,0,95,115,105,103,110,97,108,95,110,101,119,0,95,115,105,103,110,97,108,95,115,101,116,98,111,114,114,111,119,101,100,0,95,115,105,103,110,97,108,105,110,108,101,116,95,110,101,119,0,95,115,105,103,114,112,111,108, 101,95,99,108,97,115,115,0,95,115,105,103,114,112,111,108,101,95,115,101,116,117,112,0,95,115,105,103,114,115,113,114,116,95,115,101,116,117,112,0,95,115,105,103,114,122,101,114,111,95,99,108,97,115,115,0,95,115,105,103,114,122,101,114,111,95,114,101, 118,95,99,108,97,115,115,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,115,101,116,117,112,0,95,115,105,103,114,122,101,114,111,95,115,101,116,117,112,0,95,115,105,103,115,97,109,112,104,111,108,100,95,99,108,97,115,115,0,95,115,105,103,115, 97,109,112,104,111,108,100,95,115,101,116,117,112,0,95,115,105,103,115,113,114,116,95,112,101,114,102,111,114,109,0,95,115,105,103,115,113,114,116,95,115,101,116,117,112,0,95,115,105,103,118,99,102,95,99,108,97,115,115,0,95,115,105,103,118,99,102,95, 115,101,116,117,112,0,95,115,105,103,119,114,97,112,95,99,108,97,115,115,0,95,115,105,103,119,114,97,112,95,115,101,116,117,112,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,102,114,101,101,0,95,115,111,99,107,101,116,114,101,99,101,105, 118,101,114,95,110,101,119,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,114,101,97,100,0,95,115,111,117,110,100,102,105,108,101,114,95,100,111,119,114,105,116,101,0,95,115,116,97,114,116,112,111,115,116,0,95,115,116,111,114,101,95,114, 101,103,105,115,116,101,114,115,0,95,115,119,97,112,95,115,101,116,117,112,0,95,115,121,109,98,111,108,105,110,108,101,116,95,110,101,119,0,95,115,121,115,95,97,100,100,104,105,115,116,0,95,115,121,115,95,97,100,100,112,111,108,108,102,110,0,95,115,121, 115,95,97,100,118,97,110,99,101,95,115,97,109,112,108,101,115,0,95,115,121,115,95,97,114,103,112,97,114,115,101,0,95,115,121,115,95,97,117,100,105,111,97,112,105,0,95,115,121,115,95,97,117,100,105,111,97,112,105,111,112,101,110,101,100,0,95,115,121,115, 95,98,97,105,108,0,95,115,121,115,95,98,97,115,104,102,105,108,101,110,97,109,101,0,95,115,121,115,95,98,108,111,99,107,115,105,122,101,0,95,115,121,115,95,99,108,101,97,114,104,105,115,116,0,95,115,121,115,95,99,108,111,115,101,0,95,115,121,115,95,99, 108,111,115,101,95,97,117,100,105,111,0,95,115,121,115,95,99,108,111,115,101,95,109,105,100,105,0,95,115,121,115,95,99,108,111,115,101,115,111,99,107,101,116,0,95,115,121,115,95,100,97,99,115,114,0,95,115,121,115,95,100,101,98,117,103,108,101,118,101, 108,0,95,115,121,115,95,100,101,99,111,100,101,100,105,97,108,111,103,0,95,115,121,115,95,100,101,102,97,117,108,116,102,111,110,116,0,95,115,121,115,95,100,101,102,101,97,116,114,116,0,95,115,121,115,95,100,111,102,108,97,103,115,0,95,115,121,115,95, 101,120,105,116,0,95,115,121,115,95,101,120,116,101,114,110,97,108,115,99,104,101,100,108,105,98,0,95,115,121,115,95,101,120,116,101,114,110,97,108,115,99,104,101,100,108,105,98,110,97,109,101,0,95,115,121,115,95,101,120,116,101,114,110,108,105,115,116, 0,95,115,121,115,95,101,120,116,114,97,102,108,97,103,115,0,95,115,121,115,95,101,120,116,114,97,102,108,97,103,115,115,116,114,105,110,103,0,95,115,121,115,95,102,105,110,100,112,114,111,103,100,105,114,0,95,115,121,115,95,102,108,97,103,115,0,95,115, 121,115,95,102,111,110,116,0,95,115,121,115,95,102,111,110,116,104,101,105,103,104,116,0,95,115,121,115,95,102,111,110,116,119,101,105,103,104,116,0,95,115,121,115,95,102,111,110,116,119,105,100,116,104,0,95,115,121,115,95,103,101,116,95,97,117,100,105, 111,95,97,112,105,115,0,95,115,121,115,95,103,101,116,95,97,117,100,105,111,95,100,101,118,115,0,95,115,121,115,95,103,101,116,95,97,117,100,105,111,95,112,97,114,97,109,115,0,95,115,121,115,95,103,101,116,95,105,110,99,104,97,110,110,101,108,115,0,95, 115,121,115,95,103,101,116,95,109,105,100,105,95,97,112,105,115,0,95,115,121,115,95,103,101,116,95,109,105,100,105,95,112,97,114,97,109,115,0,95,115,121,115,95,103,101,116,95,111,117,116,99,104,97,110,110,101,108,115,0,95,115,121,115,95,103,101,116,98, 108,107,115,105,122,101,0,95,115,121,115,95,103,101,116,109,101,116,101,114,115,0,95,115,121,115,95,103,101,116,114,101,97,108,116,105,109,101,0,95,115,121,115,95,103,101,116,115,114,0,95,115,121,115,95,103,101,116,118,101,114,115,105,111,110,0,95,115, 121,115,95,103,117,105,0,95,115,121,115,95,103,117,105,99,109,100,0,95,115,121,115,95,103,117,105,115,101,116,112,111,114,116,110,117,109,98,101,114,0,95,115,121,115,95,104,101,108,112,112,97,116,104,0,95,115,121,115,95,104,105,112,114,105,111,114,105, 116,121,0,95,115,121,115,95,104,111,115,116,102,111,110,116,115,105,122,101,0,95,115,121,115,95,105,100,108,101,104,111,111,107,0,95,115,121,115,95,105,110,99,104,97,110,110,101,108,115,0,95,115,121,115,95,105,110,105,116,109,105,100,105,113,117,101, 117,101,0,95,115,121,115,95,105,115,97,98,115,111,108,117,116,101,112,97,116,104,0,95,115,121,115,95,108,105,98,100,105,114,0,95,115,121,115,95,108,105,115,116,100,101,118,115,0,95,115,121,115,95,108,105,115,116,109,105,100,105,100,101,118,115,0,95,115, 121,115,95,108,111,97,100,95,108,105,98,0,95,115,121,115,95,108,111,97,100,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,108,111,99,107,0,95,115,121,115,95,108,111,103,95,101,114,114,111,114,0,95,115,121,115,95,108,111,103,101,114,114, 111,114,0,95,115,121,115,95,109,97,105,110,0,95,115,121,115,95,109,105,99,114,111,115,108,101,101,112,0,95,115,121,115,95,109,105,100,105,105,110,100,101,118,108,105,115,116,0,95,115,121,115,95,109,105,100,105,111,117,116,100,101,118,108,105,115,116, 0,95,115,121,115,95,110,101,97,114,101,115,116,102,111,110,116,115,105,122,101,0,95,115,121,115,95,110,109,105,100,105,105,110,0,95,115,121,115,95,110,109,105,100,105,111,117,116,0,95,115,121,115,95,110,111,97,117,116,111,112,97,116,99,104,0,95,115,121, 115,95,110,111,103,117,105,0,95,115,121,115,95,110,111,108,111,97,100,98,97,110,103,0,95,115,121,115,95,110,111,115,108,101,101,112,0,95,115,121,115,95,111,108,100,116,99,108,118,101,114,115,105,111,110,0,95,115,121,115,95,111,110,108,111,97,100,108, 105,115,116,0,95,115,121,115,95,111,112,101,110,95,97,98,115,111,108,117,116,101,0,95,115,121,115,95,111,112,101,110,95,109,105,100,105,0,95,115,121,115,95,111,117,99,104,0,95,115,121,115,95,111,117,116,99,104,97,110,110,101,108,115,0,95,115,121,115, 95,112,101,114,102,0,95,115,121,115,95,112,111,108,108,103,117,105,0,95,115,121,115,95,112,111,108,108,109,105,100,105,113,117,101,117,101,0,95,115,121,115,95,112,114,101,116,101,110,100,103,117,105,98,121,116,101,115,0,95,115,121,115,95,112,114,105, 110,116,104,105,115,116,0,95,115,121,115,95,112,114,105,110,116,104,111,111,107,0,95,115,121,115,95,112,114,105,110,116,116,111,115,116,100,101,114,114,0,95,115,121,115,95,112,117,116,111,110,108,111,97,100,108,105,115,116,0,95,115,121,115,95,113,117, 101,117,101,103,117,105,0,95,115,121,115,95,114,99,102,105,108,101,0,95,115,121,115,95,114,101,103,105,115,116,101,114,95,108,111,97,100,101,114,0,95,115,121,115,95,114,101,111,112,101,110,95,97,117,100,105,111,0,95,115,121,115,95,114,101,111,112,101, 110,95,109,105,100,105,0,95,115,121,115,95,114,101,112,111,114,116,105,100,108,101,0,95,115,121,115,95,114,109,112,111,108,108,102,110,0,95,115,121,115,95,114,117,110,95,115,99,104,101,100,117,108,101,114,0,95,115,121,115,95,115,97,118,101,95,97,117, 100,105,111,95,112,97,114,97,109,115,0,95,115,121,115,95,115,99,104,101,100,97,100,118,97,110,99,101,0,95,115,121,115,95,115,99,104,101,100,98,108,111,99,107,115,105,122,101,0,95,115,121,115,95,115,101,97,114,99,104,112,97,116,104,0,95,115,121,115,95, 115,101,110,100,95,100,97,99,115,0,95,115,121,115,95,115,101,116,95,97,117,100,105,111,95,97,112,105,0,95,115,121,115,95,115,101,116,95,97,117,100,105,111,95,115,101,116,116,105,110,103,115,0,95,115,121,115,95,115,101,116,95,97,117,100,105,111,95,115, 116,97,116,101,0,95,115,121,115,95,115,101,116,95,101,120,116,114,97,112,97,116,104,0,95,115,121,115,95,115,101,116,95,115,101,97,114,99,104,112,97,116,104,0,95,115,121,115,95,115,101,116,95,115,116,97,114,116,117,112,0,95,115,121,115,95,115,101,116, 97,108,97,114,109,0,95,115,121,115,95,115,101,116,98,108,111,99,107,115,105,122,101,0,95,115,121,115,95,115,101,116,99,104,115,114,0,95,115,121,115,95,115,101,116,101,120,116,114,97,112,97,116,104,0,95,115,121,115,95,115,101,116,109,105,100,105,116,105, 109,101,100,105,102,102,0,95,115,121,115,95,115,108,101,101,112,103,114,97,105,110,0,95,115,121,115,95,115,111,99,107,101,114,114,111,114,0,95,115,121,115,95,115,111,117,110,100,105,110,0,95,115,121,115,95,115,111,117,110,100,111,117,116,0,95,115,121, 115,95,115,116,97,114,116,103,117,105,0,95,115,121,115,95,115,116,97,116,105,99,112,97,116,104,0,95,115,121,115,95,116,105,109,101,0,95,115,121,115,95,116,105,109,101,95,112,101,114,95,100,115,112,95,116,105,99,107,0,95,115,121,115,95,116,114,121,108, 111,99,107,0,95,115,121,115,95,116,114,121,116,111,111,112,101,110,111,110,101,0,95,115,121,115,95,117,110,98,97,115,104,102,105,108,101,110,97,109,101,0,95,115,121,115,95,117,110,105,120,101,114,114,111,114,0,95,115,121,115,95,117,110,108,111,99,107, 0,95,115,121,115,95,117,110,113,117,101,117,101,103,117,105,0,95,115,121,115,95,117,115,101,115,116,100,112,97,116,104,0,95,115,121,115,95,118,101,114,98,111,115,101,0,95,115,121,115,95,118,103,117,105,0,95,116,97,98,111,115,99,52,95,116,105,108,100, 101,95,115,101,116,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,119,114,105, 116,101,95,115,101,116,117,112,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,101,116,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,0,95,116,101,109,112,108,97,116,101,95,102,105,110,100,95,102,105,101,108,100,0, 95,116,101,109,112,108,97,116,101,95,102,105,110,100,98,121,110,97,109,101,0,95,116,101,109,112,108,97,116,101,95,102,105,110,100,99,97,110,118,97,115,0,95,116,101,109,112,108,97,116,101,95,102,114,101,101,0,95,116,101,109,112,108,97,116,101,95,103,101, 116,102,108,111,97,116,0,95,116,101,109,112,108,97,116,101,95,103,101,116,115,121,109,98,111,108,0,95,116,101,109,112,108,97,116,101,95,109,97,116,99,104,0,95,116,101,109,112,108,97,116,101,95,110,101,119,0,95,116,101,109,112,108,97,116,101,95,110,111, 116,105,102,121,0,95,116,101,109,112,108,97,116,101,95,110,111,116,105,102,121,102,111,114,115,99,97,108,97,114,0,95,116,101,109,112,108,97,116,101,95,115,101,116,102,108,111,97,116,0,95,116,101,109,112,108,97,116,101,95,115,101,116,115,121,109,98,111, 108,0,95,116,101,109,112,108,97,116,101,95,115,105,122,101,0,95,116,101,120,116,95,99,108,97,115,115,0,95,116,101,120,116,95,100,114,97,119,98,111,114,100,101,114,0,95,116,101,120,116,95,101,114,97,115,101,98,111,114,100,101,114,0,95,116,101,120,116, 95,115,97,118,101,0,95,116,101,120,116,95,115,101,116,116,111,0,95,116,101,120,116,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,116,101,120,116,95,120,112,105,120,0,95,116,101,120,116,95,121,112,105,120,0,95,116,104,114,101,115,104,111, 108,100,95,116,105,108,100,101,95,100,115,112,0,95,116,105,109,101,115,95,112,101,114,102,56,0,95,116,105,109,101,115,95,112,101,114,102,111,114,109,0,95,116,111,103,103,108,101,95,100,114,97,119,0,95,116,111,103,103,108,101,95,100,114,97,119,95,99,111, 110,102,105,103,0,95,116,111,103,103,108,101,95,100,114,97,119,95,101,114,97,115,101,0,95,116,111,103,103,108,101,95,100,114,97,119,95,105,111,0,95,116,111,103,103,108,101,95,100,114,97,119,95,109,111,118,101,0,95,116,111,103,103,108,101,95,100,114,97, 119,95,110,101,119,0,95,116,111,103,103,108,101,95,100,114,97,119,95,115,101,108,101,99,116,0,95,116,111,103,103,108,101,95,100,114,97,119,95,117,112,100,97,116,101,0,95,116,111,103,103,108,101,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114, 0,95,117,56,95,99,104,97,114,110,117,109,0,95,117,56,95,100,101,99,0,95,117,56,95,100,101,99,95,112,116,114,0,95,117,56,95,105,110,99,0,95,117,56,95,105,110,99,95,112,116,114,0,95,117,56,95,110,101,120,116,99,104,97,114,0,95,117,56,95,111,102,102,115, 101,116,0,95,117,56,95,115,101,113,108,101,110,0,95,117,56,95,115,116,114,108,101,110,0,95,117,56,95,116,111,117,99,115,0,95,117,56,95,116,111,117,116,102,56,0,95,117,56,95,119,99,95,110,98,121,116,101,115,0,95,117,56,95,119,99,95,116,111,117,116,102, 56,0,95,117,56,95,119,99,95,116,111,117,116,102,56,95,110,117,108,0,95,117,103,101,110,95,97,100,100,0,95,117,103,101,110,95,99,111,110,110,101,99,116,0,95,117,103,101,110,95,100,111,110,101,95,103,114,97,112,104,0,95,117,103,101,110,95,103,101,116,105, 111,115,105,103,0,95,117,103,101,110,95,103,101,116,115,111,114,116,110,111,0,95,117,103,101,110,95,115,116,97,114,116,0,95,117,103,101,110,95,115,116,97,114,116,95,103,114,97,112,104,0,95,117,103,101,110,95,115,116,111,112,0,95,117,112,115,97,109,112, 108,105,110,103,95,112,101,114,102,111,114,109,95,48,0,95,117,112,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,104,111,108,100,0,95,117,112,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,108,105,110,101,97,114,0, 95,118,97,108,117,101,95,103,101,116,0,95,118,97,108,117,101,95,103,101,116,102,108,111,97,116,0,95,118,97,108,117,101,95,114,101,108,101,97,115,101,0,95,118,97,108,117,101,95,115,101,116,102,108,111,97,116,0,95,118,101,114,98,111,115,101,0,95,118,105, 110,108,101,116,95,99,108,97,115,115,0,95,118,105,110,108,101,116,95,100,111,112,114,111,108,111,103,0,95,118,105,110,108,101,116,95,100,115,112,112,114,111,108,111,103,0,95,118,105,110,108,101,116,95,103,101,116,105,116,0,95,118,105,110,108,101,116, 95,105,115,115,105,103,110,97,108,0,95,118,105,110,108,101,116,95,112,101,114,102,111,114,109,0,95,118,111,117,116,108,101,116,95,99,108,97,115,115,0,95,118,111,117,116,108,101,116,95,100,115,112,101,112,105,108,111,103,0,95,118,111,117,116,108,101,116, 95,100,115,112,112,114,111,108,111,103,0,95,118,111,117,116,108,101,116,95,103,101,116,105,116,0,95,118,111,117,116,108,101,116,95,105,115,115,105,103,110,97,108,0,95,118,111,117,116,108,101,116,95,112,101,114,102,111,114,109,0,95,118,114,97,100,105, 111,95,100,114,97,119,0,95,118,114,97,100,105,111,95,100,114,97,119,95,99,111,110,102,105,103,0,95,118,114,97,100,105,111,95,100,114,97,119,95,101,114,97,115,101,0,95,118,114,97,100,105,111,95,100,114,97,119,95,105,111,0,95,118,114,97,100,105,111,95, 100,114,97,119,95,109,111,118,101,0,95,118,114,97,100,105,111,95,100,114,97,119,95,110,101,119,0,95,118,114,97,100,105,111,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,114,97,100,105,111,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,114, 97,100,105,111,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,118,115,108,105,100,101,114,95,99,104,101,99,107,95,104,101,105,103,104,116,0,95,118,115,108,105,100,101,114,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,118,115,108, 105,100,101,114,95,100,114,97,119,0,95,118,115,108,105,100,101,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,118,117,95,99,104,101,99,107,95,104,101,105,103,104,116,0,95,118,117,95,100,114,97,119,0,95,118,117,95,119,105,100,103,101, 116,98,101,104,97,118,105,111,114,0,95,119,111,114,100,95,102,114,101,101,0,95,119,111,114,100,95,105,110,105,116,0,95,119,111,114,100,95,114,101,115,116,111,114,101,0,95,120,95,97,99,111,117,115,116,105,99,115,95,115,101,116,117,112,0,95,120,95,97,114, 105,116,104,109,101,116,105,99,95,115,101,116,117,112,0,95,120,95,99,111,110,110,101,99,116,105,118,101,95,115,101,116,117,112,0,95,120,95,103,117,105,95,115,101,116,117,112,0,95,120,95,105,110,116,101,114,102,97,99,101,95,115,101,116,117,112,0,95,120, 95,108,105,115,116,95,115,101,116,117,112,0,95,120,95,109,105,100,105,95,115,101,116,117,112,0,95,120,95,109,105,115,99,95,115,101,116,117,112,0,95,120,95,110,101,116,95,115,101,116,117,112,0,95,120,95,113,108,105,115,116,95,115,101,116,117,112,0,95, 120,95,116,105,109,101,95,115,101,116,117,112,0,95,122,101,114,111,95,112,101,114,102,56,0,95,122,101,114,111,95,112,101,114,102,111,114,109,0,95,122,103,101,116,102,110,0,95,122,122,0,95,95,68,101,102,97,117,108,116,82,117,110,101,76,111,99,97,108,101, 0,95,95,95,101,114,114,111,114,0,95,95,95,109,97,115,107,114,117,110,101,0,95,95,95,109,101,109,99,112,121,95,99,104,107,0,95,95,95,109,101,109,109,111,118,101,95,99,104,107,0,95,95,95,109,101,109,115,101,116,95,99,104,107,0,95,95,95,115,110,112,114, 105,110,116,102,95,99,104,107,0,95,95,95,115,112,114,105,110,116,102,95,99,104,107,0,95,95,95,115,116,97,99,107,95,99,104,107,95,102,97,105,108,0,95,95,95,115,116,97,99,107,95,99,104,107,95,103,117,97,114,100,0,95,95,95,115,116,100,101,114,114,112,0, 95,95,95,115,116,114,99,97,116,95,99,104,107,0,95,95,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,115,116,114,110,99,97,116,95,99,104,107,0,95,95,95,115,116,114,110,99,112,121,95,99,104,107,0,95,95,95,118,115,110,112,114,105,110,116,102,95,99,104, 107,0,95,95,101,120,105,116,0,95,97,99,99,101,112,116,36,85,78,73,88,50,48,48,51,0,95,97,116,97,110,50,0,95,97,116,97,110,50,102,0,95,97,116,97,110,102,0,95,97,116,111,102,0,95,97,116,111,105,0,95,97,116,111,108,0,95,98,105,110,100,36,85,78,73,88,50, 48,48,51,0,95,98,122,101,114,111,0,95,99,97,108,108,111,99,0,95,99,108,111,115,101,36,85,78,73,88,50,48,48,51,0,95,99,111,110,110,101,99,116,36,85,78,73,88,50,48,48,51,0,95,99,111,115,0,95,99,111,115,102,0,95,100,108,101,114,114,111,114,0,95,100,108, 111,112,101,110,0,95,100,108,115,121,109,0,95,101,120,101,99,108,0,95,101,120,105,116,0,95,101,120,112,0,95,101,120,112,102,0,95,102,99,108,111,115,101,0,95,102,100,111,112,101,110,36,85,78,73,88,50,48,48,51,0,95,102,108,111,111,114,0,95,102,111,112, 101,110,36,85,78,73,88,50,48,48,51,0,95,102,111,114,107,0,95,102,112,114,105,110,116,102,0,95,102,112,117,116,99,0,95,102,112,117,116,115,36,85,78,73,88,50,48,48,51,0,95,102,114,101,97,100,0,95,102,114,101,101,0,95,102,115,99,97,110,102,0,95,102,115, 116,97,116,36,73,78,79,68,69,54,52,0,95,102,119,114,105,116,101,36,85,78,73,88,50,48,48,51,0,95,103,101,116,99,119,100,0,95,103,101,116,101,110,118,0,95,103,101,116,104,111,115,116,98,121,110,97,109,101,0,95,103,101,116,116,105,109,101,111,102,100,97, 121,0,95,103,101,116,117,105,100,0,95,103,108,111,98,36,73,78,79,68,69,54,52,0,95,108,105,115,116,101,110,36,85,78,73,88,50,48,48,51,0,95,108,111,103,0,95,108,111,103,49,48,0,95,108,111,103,102,0,95,108,115,101,101,107,0,95,109,97,108,108,111,99,0,95, 109,101,109,99,112,121,0,95,109,101,109,115,101,116,0,95,111,112,101,110,36,85,78,73,88,50,48,48,51,0,95,112,99,108,111,115,101,0,95,112,101,114,114,111,114,0,95,112,111,112,101,110,36,85,78,73,88,50,48,48,51,0,95,112,111,119,0,95,112,111,119,102,0,95, 112,116,104,114,101,97,100,95,99,111,110,100,95,100,101,115,116,114,111,121,0,95,112,116,104,114,101,97,100,95,99,111,110,100,95,105,110,105,116,36,85,78,73,88,50,48,48,51,0,95,112,116,104,114,101,97,100,95,99,111,110,100,95,115,105,103,110,97,108,0, 95,112,116,104,114,101,97,100,95,99,111,110,100,95,119,97,105,116,36,85,78,73,88,50,48,48,51,0,95,112,116,104,114,101,97,100,95,99,114,101,97,116,101,0,95,112,116,104,114,101,97,100,95,106,111,105,110,36,85,78,73,88,50,48,48,51,0,95,112,116,104,114,101, 97,100,95,109,117,116,101,120,95,100,101,115,116,114,111,121,0,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,105,110,105,116,0,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,108,111,99,107,0,95,112,116,104,114,101,97,100,95,109,117, 116,101,120,95,116,114,121,108,111,99,107,0,95,112,116,104,114,101,97,100,95,109,117,116,101,120,95,117,110,108,111,99,107,0,95,112,116,104,114,101,97,100,95,115,101,108,102,0,95,112,116,104,114,101,97,100,95,115,101,116,115,99,104,101,100,112,97,114, 97,109,0,95,114,101,97,100,36,85,78,73,88,50,48,48,51,0,95,114,101,97,108,108,111,99,0,95,114,101,99,118,36,85,78,73,88,50,48,48,51,0,95,115,101,108,101,99,116,36,85,78,73,88,50,48,48,51,0,95,115,101,110,100,36,85,78,73,88,50,48,48,51,0,95,115,101,116, 105,116,105,109,101,114,0,95,115,101,116,115,111,99,107,111,112,116,0,95,115,101,116,117,105,100,0,95,115,105,103,97,99,116,105,111,110,0,95,115,105,103,110,97,108,0,95,115,105,110,0,95,115,105,110,102,0,95,115,108,101,101,112,36,85,78,73,88,50,48,48, 51,0,95,115,110,112,114,105,110,116,102,0,95,115,111,99,107,101,116,0,95,115,115,99,97,110,102,0,95,115,116,97,116,36,73,78,79,68,69,54,52,0,95,115,116,114,99,104,114,0,95,115,116,114,99,109,112,0,95,115,116,114,101,114,114,111,114,36,85,78,73,88,50, 48,48,51,0,95,115,116,114,108,101,110,0,95,115,116,114,110,99,109,112,0,95,115,116,114,110,99,112,121,0,95,115,116,114,114,99,104,114,0,95,115,116,114,115,116,114,0,95,115,116,114,116,111,108,0,95,115,121,115,116,101,109,36,85,78,73,88,50,48,48,51,0, 95,116,105,109,101,115,0,95,118,115,110,112,114,105,110,116,102,0,95,119,114,105,116,101,36,85,78,73,88,50,48,48,51,0,100,121,108,100,95,115,116,117,98,95,98,105,110,100,101,114,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111, 106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,97,114,105,116,104,109,101,116,105,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111, 106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,97,114,105,116,104,109,101,116,105,99,46,111,0,95,112,108,117,115,95,110,101,119,0,95,112,108,117,115,95,112,101,114,102, 111,114,109,0,95,112,108,117,115,95,112,101,114,102,56,0,95,115,99,97,108,97,114,112,108,117,115,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,112,108,117,115,95,112,101,114,102,56,0,95,100,115,112,95,97,100,100,95,112,108,117,115,0,95,112, 108,117,115,95,100,115,112,0,95,115,99,97,108,97,114,112,108,117,115,95,100,115,112,0,95,112,108,117,115,95,115,101,116,117,112,0,95,109,105,110,117,115,95,110,101,119,0,95,109,105,110,117,115,95,112,101,114,102,111,114,109,0,95,109,105,110,117,115,95, 112,101,114,102,56,0,95,115,99,97,108,97,114,109,105,110,117,115,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,109,105,110,117,115,95,112,101,114,102,56,0,95,109,105,110,117,115,95,100,115,112,0,95,115,99,97,108,97,114,109,105,110,117,115, 95,100,115,112,0,95,109,105,110,117,115,95,115,101,116,117,112,0,95,116,105,109,101,115,95,110,101,119,0,95,116,105,109,101,115,95,112,101,114,102,111,114,109,0,95,116,105,109,101,115,95,112,101,114,102,56,0,95,115,99,97,108,97,114,116,105,109,101,115, 95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,116,105,109,101,115,95,112,101,114,102,56,0,95,116,105,109,101,115,95,100,115,112,0,95,115,99,97,108,97,114,116,105,109,101,115,95,100,115,112,0,95,116,105,109,101,115,95,115,101,116,117,112,0, 95,111,118,101,114,95,110,101,119,0,95,111,118,101,114,95,112,101,114,102,111,114,109,0,95,111,118,101,114,95,112,101,114,102,56,0,95,115,99,97,108,97,114,111,118,101,114,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,111,118,101,114,95,112, 101,114,102,56,0,95,111,118,101,114,95,100,115,112,0,95,115,99,97,108,97,114,111,118,101,114,95,100,115,112,0,95,111,118,101,114,95,115,101,116,117,112,0,95,109,97,120,95,110,101,119,0,95,109,97,120,95,112,101,114,102,111,114,109,0,95,109,97,120,95,112, 101,114,102,56,0,95,115,99,97,108,97,114,109,97,120,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,109,97,120,95,112,101,114,102,56,0,95,109,97,120,95,100,115,112,0,95,115,99,97,108,97,114,109,97,120,95,100,115,112,0,95,109,97,120,95,115,101, 116,117,112,0,95,109,105,110,95,110,101,119,0,95,109,105,110,95,112,101,114,102,111,114,109,0,95,109,105,110,95,112,101,114,102,56,0,95,115,99,97,108,97,114,109,105,110,95,112,101,114,102,111,114,109,0,95,115,99,97,108,97,114,109,105,110,95,112,101,114, 102,56,0,95,109,105,110,95,100,115,112,0,95,115,99,97,108,97,114,109,105,110,95,100,115,112,0,95,109,105,110,95,115,101,116,117,112,0,95,100,95,97,114,105,116,104,109,101,116,105,99,95,115,101,116,117,112,0,95,112,108,117,115,95,99,108,97,115,115,0,95, 115,99,97,108,97,114,112,108,117,115,95,99,108,97,115,115,0,95,109,105,110,117,115,95,99,108,97,115,115,0,95,115,99,97,108,97,114,109,105,110,117,115,95,99,108,97,115,115,0,95,116,105,109,101,115,95,99,108,97,115,115,0,95,115,99,97,108,97,114,116,105, 109,101,115,95,99,108,97,115,115,0,95,111,118,101,114,95,99,108,97,115,115,0,95,115,99,97,108,97,114,111,118,101,114,95,99,108,97,115,115,0,95,109,97,120,95,99,108,97,115,115,0,95,115,99,97,108,97,114,109,97,120,95,99,108,97,115,115,0,95,109,105,110, 95,99,108,97,115,115,0,95,115,99,97,108,97,114,109,105,110,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,97,114,114,97,121,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112, 114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,97,114,114,97,121,46,111,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,119,114,105,116,101,95, 116,105,108,100,101,95,114,101,100,114,97,119,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,119,114,105,116,101,95,116, 105,108,100,101,95,100,115,112,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,98,97,110,103,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,116,97,114,116,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115, 116,111,112,0,95,116,97,98,119,114,105,116,101,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95, 116,97,98,112,108,97,121,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,108,105,115,116,0,95,116,97,98,112,108,97,121,95,116,105,108,100, 101,95,115,116,111,112,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,116,105,99,107,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,102,114,101,101,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116, 97,98,114,101,97,100,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,114,101,97,100,95,116,105, 108,100,101,95,100,115,112,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,102,114,101,101,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,110,101,119,0,95, 116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,114,101,97, 100,52,95,116,105,108,100,101,95,102,114,101,101,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,110,101,119,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95, 112,101,114,102,111,114,109,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,115,101,116,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,102,116,49,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,100,115,112,0,95,116,97,98,111,115, 99,52,95,116,105,108,100,101,95,115,101,116,117,112,0,95,116,97,98,115,101,110,100,95,110,101,119,0,95,116,97,98,115,101,110,100,95,112,101,114,102,111,114,109,0,95,116,97,98,115,101,110,100,95,100,115,112,0,95,116,97,98,115,101,110,100,95,115,101,116, 117,112,0,95,116,97,98,114,101,99,101,105,118,101,95,112,101,114,102,111,114,109,0,95,116,97,98,114,101,99,101,105,118,101,95,100,115,112,0,95,116,97,98,114,101,99,101,105,118,101,95,110,101,119,0,95,116,97,98,114,101,99,101,105,118,101,95,115,101,116, 117,112,0,95,116,97,98,114,101,97,100,95,102,108,111,97,116,0,95,116,97,98,114,101,97,100,95,115,101,116,0,95,116,97,98,114,101,97,100,95,110,101,119,0,95,116,97,98,114,101,97,100,95,115,101,116,117,112,0,95,116,97,98,114,101,97,100,52,95,102,108,111, 97,116,0,95,116,97,98,114,101,97,100,52,95,115,101,116,0,95,116,97,98,114,101,97,100,52,95,110,101,119,0,95,116,97,98,114,101,97,100,52,95,115,101,116,117,112,0,95,116,97,98,119,114,105,116,101,95,102,108,111,97,116,0,95,116,97,98,119,114,105,116,101, 95,115,101,116,0,95,116,97,98,119,114,105,116,101,95,110,101,119,0,95,116,97,98,119,114,105,116,101,95,115,101,116,117,112,0,95,100,95,97,114,114,97,121,95,115,101,116,117,112,0,95,99,111,117,110,116,46,51,48,57,49,0,95,116,97,98,119,114,105,116,101, 95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,112,108,97,121,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,52,95,116,105,108,100,101,95, 99,108,97,115,115,0,95,116,97,98,111,115,99,52,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,97,98,115,101,110,100,95,99,108,97,115,115,0,95,116,97,98,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,116,97,98,114,101,97,100,95,99,108,97,115, 115,0,95,116,97,98,114,101,97,100,52,95,99,108,97,115,115,0,95,116,97,98,119,114,105,116,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,99,116,108,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47, 112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,99,116,108,46,111,0,95,115,105,103,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,115,105,103,95, 116,105,108,100,101,95,112,101,114,102,56,0,95,100,115,112,95,97,100,100,95,115,99,97,108,97,114,99,111,112,121,0,95,115,105,103,95,116,105,108,100,101,95,102,108,111,97,116,0,95,115,105,103,95,116,105,108,100,101,95,100,115,112,0,95,115,105,103,95,116, 105,108,100,101,95,110,101,119,0,95,115,105,103,95,116,105,108,100,101,95,115,101,116,117,112,0,95,108,105,110,101,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,108,105,110,101,95,116,105,108,100,101,95,112,101,114,102,56,0,95,108,105,110, 101,95,116,105,108,100,101,95,102,108,111,97,116,0,95,108,105,110,101,95,116,105,108,100,101,95,115,116,111,112,0,95,108,105,110,101,95,116,105,108,100,101,95,100,115,112,0,95,108,105,110,101,95,116,105,108,100,101,95,110,101,119,0,95,108,105,110,101, 95,116,105,108,100,101,95,115,101,116,117,112,0,95,118,108,105,110,101,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,118,108,105,110,101,95,116,105,108,100,101,95,115,116,111,112,0,95,118,108,105,110,101,95,116,105,108,100,101,95,102,108, 111,97,116,0,95,118,108,105,110,101,95,116,105,108,100,101,95,100,115,112,0,95,118,108,105,110,101,95,116,105,108,100,101,95,110,101,119,0,95,118,108,105,110,101,95,116,105,108,100,101,95,115,101,116,117,112,0,95,115,110,97,112,115,104,111,116,95,116, 105,108,100,101,95,110,101,119,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,100,115,112,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100, 101,95,98,97,110,103,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101,116,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101,116,117,112,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,110,101, 119,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,100,115,112,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,98,97,110, 103,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,102,102,0,95,118,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,115,101,116,117,112,0,95,101,110,118,95,116,105,108,100,101,95,110,101,119,0,95,101,110,118,95,116,105,108, 100,101,95,112,101,114,102,111,114,109,0,95,101,110,118,95,116,105,108,100,101,95,100,115,112,0,95,101,110,118,95,116,105,108,100,101,95,116,105,99,107,0,95,101,110,118,95,116,105,108,100,101,95,102,102,0,95,101,110,118,95,116,105,108,100,101,95,115, 101,116,117,112,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,110,101,119,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,115,101,116,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,102,116,49, 0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,116,105,99,107,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,100,115, 112,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,102,102,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,95,99,116,108,95,115,101,116,117,112,0,95,115,105,103,95,116,105,108,100,101, 95,99,108,97,115,115,0,95,108,105,110,101,95,116,105,108,100,101,95,99,108,97,115,115,0,95,118,108,105,110,101,95,116,105,108,100,101,95,99,108,97,115,115,0,95,115,110,97,112,115,104,111,116,95,116,105,108,100,101,95,99,108,97,115,115,0,95,118,115,110, 97,112,115,104,111,116,95,116,105,108,100,101,95,99,108,97,115,115,0,95,116,104,114,101,115,104,111,108,100,95,116,105,108,100,101,95,99,108,97,115,115,0,95,101,110,118,95,116,105,108,100,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47, 115,114,99,47,100,95,100,97,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,100,97,99, 46,111,0,95,100,97,99,95,110,101,119,0,95,100,97,99,95,100,115,112,0,95,100,97,99,95,102,114,101,101,0,95,100,97,99,95,115,101,116,117,112,0,95,97,100,99,95,110,101,119,0,95,99,111,112,121,95,112,101,114,102,111,114,109,0,95,99,111,112,121,95,112,101, 114,102,56,0,95,100,115,112,95,97,100,100,95,99,111,112,121,0,95,97,100,99,95,100,115,112,0,95,97,100,99,95,102,114,101,101,0,95,97,100,99,95,115,101,116,117,112,0,95,100,95,100,97,99,95,115,101,116,117,112,0,95,100,97,99,95,99,108,97,115,115,0,95,97, 100,99,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,100,101,108,97,121,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112, 100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,100,101,108,97,121,46,111,0,95,115,105,103,100,101,108,119,114,105,116,101,95,117,112,100,97,116,101,115,114,0,95,115,105,103,100,101,108,119,114,105,116,101,95,99,104,101,99,107,118,101, 99,115,105,122,101,0,95,115,105,103,100,101,108,119,114,105,116,101,95,110,101,119,0,95,115,105,103,100,101,108,119,114,105,116,101,95,112,101,114,102,111,114,109,0,95,115,105,103,100,101,108,119,114,105,116,101,95,100,115,112,0,95,115,105,103,100,101, 108,119,114,105,116,101,95,102,114,101,101,0,95,115,105,103,100,101,108,119,114,105,116,101,95,115,101,116,117,112,0,95,115,105,103,100,101,108,114,101,97,100,95,110,101,119,0,95,115,105,103,100,101,108,114,101,97,100,95,102,108,111,97,116,0,95,115,105, 103,100,101,108,114,101,97,100,95,112,101,114,102,111,114,109,0,95,115,105,103,100,101,108,114,101,97,100,95,100,115,112,0,95,115,105,103,100,101,108,114,101,97,100,95,115,101,116,117,112,0,95,115,105,103,118,100,95,110,101,119,0,95,115,105,103,118,100, 95,112,101,114,102,111,114,109,0,95,115,105,103,118,100,95,100,115,112,0,95,115,105,103,118,100,95,115,101,116,117,112,0,95,100,95,100,101,108,97,121,95,115,101,116,117,112,0,95,100,101,108,114,101,97,100,95,122,101,114,111,0,95,115,105,103,100,101,108, 119,114,105,116,101,95,99,108,97,115,115,0,95,115,105,103,100,101,108,114,101,97,100,95,99,108,97,115,115,0,95,115,105,103,118,100,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,102,116,46,99,0,47,85,115,101,114,115, 47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,102,116,46,111,0,95,115,105,103,102,102,116,95,115,119,97,112,0,95, 115,105,103,114,102,102,116,95,102,108,105,112,0,95,115,105,103,102,102,116,95,110,101,119,0,95,115,105,103,105,102,102,116,95,110,101,119,0,95,115,105,103,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,105,102,102,116,95,112,101,114,102, 111,114,109,0,95,115,105,103,102,102,116,95,100,115,112,120,0,95,115,105,103,102,102,116,95,100,115,112,0,95,115,105,103,105,102,102,116,95,100,115,112,0,95,115,105,103,102,102,116,95,115,101,116,117,112,0,95,115,105,103,114,102,102,116,95,110,101,119, 0,95,115,105,103,114,102,102,116,95,112,101,114,102,111,114,109,0,95,115,105,103,114,102,102,116,95,100,115,112,0,95,115,105,103,114,102,102,116,95,115,101,116,117,112,0,95,115,105,103,114,105,102,102,116,95,110,101,119,0,95,115,105,103,114,105,102,102, 116,95,112,101,114,102,111,114,109,0,95,115,105,103,114,105,102,102,116,95,100,115,112,0,95,115,105,103,114,105,102,102,116,95,115,101,116,117,112,0,95,115,105,103,102,114,97,109,112,95,110,101,119,0,95,115,105,103,102,114,97,109,112,95,112,101,114,102, 111,114,109,0,95,115,105,103,102,114,97,109,112,95,100,115,112,0,95,115,105,103,102,114,97,109,112,95,115,101,116,117,112,0,95,100,95,102,102,116,95,115,101,116,117,112,0,95,115,105,103,102,102,116,95,99,108,97,115,115,0,95,115,105,103,105,102,102,116, 95,99,108,97,115,115,0,95,115,105,103,114,102,102,116,95,99,108,97,115,115,0,95,115,105,103,114,105,102,102,116,95,99,108,97,115,115,0,95,115,105,103,102,114,97,109,112,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102, 102,116,95,109,97,121,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,102,116, 95,109,97,121,101,114,46,111,0,95,109,97,121,101,114,95,102,104,116,0,95,109,97,121,101,114,95,102,102,116,0,95,109,97,121,101,114,95,105,102,102,116,0,95,109,97,121,101,114,95,114,101,97,108,102,102,116,0,95,109,97,121,101,114,95,114,101,97,108,105, 102,102,116,0,95,104,97,108,115,101,99,0,95,99,111,115,116,97,98,0,95,115,105,110,116,97,98,0,95,99,111,115,119,114,107,0,95,115,105,110,119,114,107,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,102,116,114,111,117,116,105,110,101,46, 99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,102,116,114,111,117,116,105,110,101,46, 111,0,95,99,102,102,116,0,95,102,102,116,95,99,108,101,97,114,0,95,98,117,105,108,100,95,102,102,116,95,110,101,116,119,111,114,107,0,95,108,111,97,100,95,114,101,103,105,115,116,101,114,115,0,95,115,116,111,114,101,95,114,101,103,105,115,116,101,114, 115,0,95,99,111,109,112,117,116,101,95,102,102,116,0,95,110,101,116,95,97,108,108,111,99,0,95,110,101,116,95,100,101,97,108,108,111,99,0,95,112,111,119,101,114,95,111,102,95,116,119,111,0,95,99,114,101,97,116,101,95,104,97,110,110,105,110,103,0,95,99, 114,101,97,116,101,95,114,101,99,116,97,110,103,117,108,97,114,0,95,115,104,111,114,116,95,116,111,95,102,108,111,97,116,0,95,112,100,95,102,102,116,0,95,102,105,114,115,116,110,101,116,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,105, 108,116,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,102,105,108,116,101,114, 46,111,0,95,115,105,103,104,105,112,95,110,101,119,0,95,115,105,103,104,105,112,95,102,116,49,0,95,115,105,103,104,105,112,95,112,101,114,102,111,114,109,0,95,115,105,103,104,105,112,95,100,115,112,0,95,115,105,103,104,105,112,95,99,108,101,97,114,0, 95,115,105,103,104,105,112,95,115,101,116,117,112,0,95,115,105,103,108,111,112,95,110,101,119,0,95,115,105,103,108,111,112,95,102,116,49,0,95,115,105,103,108,111,112,95,99,108,101,97,114,0,95,115,105,103,108,111,112,95,112,101,114,102,111,114,109,0,95, 115,105,103,108,111,112,95,100,115,112,0,95,115,105,103,108,111,112,95,115,101,116,117,112,0,95,115,105,103,98,112,95,110,101,119,0,95,115,105,103,98,112,95,113,99,111,115,0,95,115,105,103,98,112,95,100,111,99,111,101,102,0,95,115,105,103,98,112,95,102, 116,49,0,95,115,105,103,98,112,95,102,116,50,0,95,115,105,103,98,112,95,99,108,101,97,114,0,95,115,105,103,98,112,95,112,101,114,102,111,114,109,0,95,115,105,103,98,112,95,100,115,112,0,95,115,105,103,98,112,95,115,101,116,117,112,0,95,115,105,103,98, 105,113,117,97,100,95,110,101,119,0,95,115,105,103,98,105,113,117,97,100,95,112,101,114,102,111,114,109,0,95,115,105,103,98,105,113,117,97,100,95,108,105,115,116,0,95,115,105,103,98,105,113,117,97,100,95,115,101,116,0,95,115,105,103,98,105,113,117,97, 100,95,100,115,112,0,95,115,105,103,98,105,113,117,97,100,95,115,101,116,117,112,0,95,115,105,103,115,97,109,112,104,111,108,100,95,110,101,119,0,95,115,105,103,115,97,109,112,104,111,108,100,95,112,101,114,102,111,114,109,0,95,115,105,103,115,97,109, 112,104,111,108,100,95,100,115,112,0,95,115,105,103,115,97,109,112,104,111,108,100,95,114,101,115,101,116,0,95,115,105,103,115,97,109,112,104,111,108,100,95,115,101,116,0,95,115,105,103,115,97,109,112,104,111,108,100,95,115,101,116,117,112,0,95,115,105, 103,114,112,111,108,101,95,110,101,119,0,95,115,105,103,114,112,111,108,101,95,112,101,114,102,111,114,109,0,95,115,105,103,114,112,111,108,101,95,100,115,112,0,95,115,105,103,114,112,111,108,101,95,99,108,101,97,114,0,95,115,105,103,114,112,111,108, 101,95,115,101,116,0,95,115,105,103,114,112,111,108,101,95,115,101,116,117,112,0,95,115,105,103,114,122,101,114,111,95,110,101,119,0,95,115,105,103,114,122,101,114,111,95,112,101,114,102,111,114,109,0,95,115,105,103,114,122,101,114,111,95,100,115,112, 0,95,115,105,103,114,122,101,114,111,95,99,108,101,97,114,0,95,115,105,103,114,122,101,114,111,95,115,101,116,0,95,115,105,103,114,122,101,114,111,95,115,101,116,117,112,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,110,101,119,0,95,115,105, 103,114,122,101,114,111,95,114,101,118,95,112,101,114,102,111,114,109,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,100,115,112,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,99,108,101,97,114,0,95,115,105,103,114,122,101,114,111,95, 114,101,118,95,115,101,116,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,115,101,116,117,112,0,95,115,105,103,99,112,111,108,101,95,110,101,119,0,95,115,105,103,99,112,111,108,101,95,112,101,114,102,111,114,109,0,95,115,105,103,99,112,111,108, 101,95,100,115,112,0,95,115,105,103,99,112,111,108,101,95,99,108,101,97,114,0,95,115,105,103,99,112,111,108,101,95,115,101,116,0,95,115,105,103,99,112,111,108,101,95,115,101,116,117,112,0,95,115,105,103,99,122,101,114,111,95,110,101,119,0,95,115,105, 103,99,122,101,114,111,95,112,101,114,102,111,114,109,0,95,115,105,103,99,122,101,114,111,95,100,115,112,0,95,115,105,103,99,122,101,114,111,95,99,108,101,97,114,0,95,115,105,103,99,122,101,114,111,95,115,101,116,0,95,115,105,103,99,122,101,114,111,95, 115,101,116,117,112,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,110,101,119,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,112,101,114,102,111,114,109,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,100,115,112,0,95,115,105,103, 99,122,101,114,111,95,114,101,118,95,99,108,101,97,114,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,115,101,116,0,95,115,105,103,99,122,101,114,111,95,114,101,118,95,115,101,116,117,112,0,95,100,95,102,105,108,116,101,114,95,115,101,116,117, 112,0,95,115,105,103,98,105,113,117,97,100,95,99,108,97,115,115,0,95,115,105,103,98,112,95,99,108,97,115,115,0,95,115,105,103,99,112,111,108,101,95,99,108,97,115,115,0,95,115,105,103,99,122,101,114,111,95,99,108,97,115,115,0,95,115,105,103,99,122,101, 114,111,95,114,101,118,95,99,108,97,115,115,0,95,115,105,103,104,105,112,95,99,108,97,115,115,0,95,115,105,103,108,111,112,95,99,108,97,115,115,0,95,115,105,103,114,112,111,108,101,95,99,108,97,115,115,0,95,115,105,103,114,122,101,114,111,95,99,108,97, 115,115,0,95,115,105,103,114,122,101,114,111,95,114,101,118,95,99,108,97,115,115,0,95,115,105,103,115,97,109,112,104,111,108,100,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,103,108,111,98,97,108,46,99,0,47,85,115,101, 114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,103,108,111,98,97,108,46,111,0,95,115,105,103,115,101,110,100, 95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,47,117,115,114,47,105,110,99,108,117,100,101,47,115,101,99,117,114,101,47,95,115,116,114,105,110,103,46,104,0,95,115,105,103,115,101,110,100,95,112,101,114,102, 111,114,109,0,95,115,105,103,115,101,110,100,95,100,115,112,0,95,115,105,103,115,101,110,100,95,102,114,101,101,0,95,115,105,103,115,101,110,100,95,115,101,116,117,112,0,95,115,105,103,114,101,99,101,105,118,101,95,110,101,119,0,95,115,105,103,114,101, 99,101,105,118,101,95,112,101,114,102,111,114,109,0,95,115,105,103,114,101,99,101,105,118,101,95,112,101,114,102,56,0,95,115,105,103,114,101,99,101,105,118,101,95,115,101,116,0,95,115,105,103,114,101,99,101,105,118,101,95,100,115,112,0,95,115,105,103, 114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,115,105,103,99,97,116,99,104,95,110,101,119,0,95,115,105,103,99,97,116,99,104,95,112,101,114,102,111,114,109,0,95,115,105,103,99,97,116,99,104,95,112,101,114,102,56,0,95,115,105,103,99,97,116,99, 104,95,100,115,112,0,95,115,105,103,99,97,116,99,104,95,102,114,101,101,0,95,115,105,103,99,97,116,99,104,95,115,101,116,117,112,0,95,115,105,103,116,104,114,111,119,95,110,101,119,0,95,115,105,103,116,104,114,111,119,95,112,101,114,102,111,114,109,0, 95,115,105,103,116,104,114,111,119,95,115,101,116,0,95,115,105,103,116,104,114,111,119,95,100,115,112,0,95,115,105,103,116,104,114,111,119,95,115,101,116,117,112,0,95,100,95,103,108,111,98,97,108,95,115,101,116,117,112,0,95,115,105,103,115,101,110,100, 95,99,108,97,115,115,0,95,115,105,103,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,115,105,103,99,97,116,99,104,95,99,108,97,115,115,0,95,115,105,103,116,104,114,111,119,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47, 100,95,109,97,116,104,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,109,97,116,104,46, 111,0,95,99,108,105,112,95,110,101,119,0,95,99,108,105,112,95,112,101,114,102,111,114,109,0,95,99,108,105,112,95,100,115,112,0,95,99,108,105,112,95,115,101,116,117,112,0,95,105,110,105,116,95,114,115,113,114,116,0,95,113,56,95,114,115,113,114,116,0,95, 113,56,95,115,113,114,116,0,95,113,115,113,114,116,0,95,113,114,115,113,114,116,0,95,115,105,103,114,115,113,114,116,95,110,101,119,0,95,115,105,103,114,115,113,114,116,95,112,101,114,102,111,114,109,0,95,115,105,103,114,115,113,114,116,95,100,115,112, 0,95,115,105,103,114,115,113,114,116,95,115,101,116,117,112,0,95,115,105,103,115,113,114,116,95,110,101,119,0,95,115,105,103,115,113,114,116,95,112,101,114,102,111,114,109,0,95,115,105,103,115,113,114,116,95,100,115,112,0,95,115,105,103,115,113,114,116, 95,115,101,116,117,112,0,95,115,105,103,119,114,97,112,95,110,101,119,0,95,115,105,103,119,114,97,112,95,112,101,114,102,111,114,109,0,95,115,105,103,119,114,97,112,95,100,115,112,0,95,115,105,103,119,114,97,112,95,115,101,116,117,112,0,95,109,116,111, 102,95,116,105,108,100,101,95,110,101,119,0,95,109,116,111,102,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,109,116,111,102,95,116,105,108,100,101,95,100,115,112,0,95,109,116,111,102,95,116,105,108,100,101,95,115,101,116,117,112,0,95,102, 116,111,109,95,116,105,108,100,101,95,110,101,119,0,95,102,116,111,109,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,102,116,111,109,95,116,105,108,100,101,95,100,115,112,0,95,102,116,111,109,95,116,105,108,100,101,95,115,101,116,117,112, 0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,110,101,119,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,100,115,112,0,95,100,98,116,111,114, 109,115,95,116,105,108,100,101,95,115,101,116,117,112,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,110,101,119,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,114,109,115,116,111,100,98,95,116,105, 108,100,101,95,100,115,112,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,110,101,119,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,112,101,114,102,111, 114,109,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,100,115,112,0,95,100,98,116,111,112,111,119,95,116,105,108,100,101,95,115,101,116,117,112,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,110,101,119,0,95,112,111,119,116,111, 100,98,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,100,115,112,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,115,101,116,117,112,0,95,112,111,119,95,116,105,108,100,101,95, 110,101,119,0,95,112,111,119,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,112,111,119,95,116,105,108,100,101,95,100,115,112,0,95,112,111,119,95,116,105,108,100,101,95,115,101,116,117,112,0,95,101,120,112,95,116,105,108,100,101,95,110,101, 119,0,95,101,120,112,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,101,120,112,95,116,105,108,100,101,95,100,115,112,0,95,101,120,112,95,116,105,108,100,101,95,115,101,116,117,112,0,95,108,111,103,95,116,105,108,100,101,95,110,101,119,0, 95,108,111,103,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,108,111,103,95,116,105,108,100,101,95,100,115,112,0,95,108,111,103,95,116,105,108,100,101,95,115,101,116,117,112,0,95,97,98,115,95,116,105,108,100,101,95,110,101,119,0,95,97,98, 115,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,97,98,115,95,116,105,108,100,101,95,100,115,112,0,95,97,98,115,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,95,109,97,116,104,95,115,101,116,117,112,0,95,99,108,105,112,95,99,108, 97,115,115,0,95,114,115,113,114,116,95,101,120,112,116,97,98,0,95,114,115,113,114,116,95,109,97,110,116,105,115,115,97,116,97,98,0,95,115,105,103,114,115,113,114,116,95,99,108,97,115,115,0,95,115,105,103,115,113,114,116,95,99,108,97,115,115,0,95,112, 111,119,95,116,105,108,100,101,95,99,108,97,115,115,0,95,101,120,112,95,116,105,108,100,101,95,99,108,97,115,115,0,95,108,111,103,95,116,105,108,100,101,95,99,108,97,115,115,0,95,97,98,115,95,116,105,108,100,101,95,99,108,97,115,115,0,95,100,98,116,111, 112,111,119,95,116,105,108,100,101,95,99,108,97,115,115,0,95,100,98,116,111,114,109,115,95,116,105,108,100,101,95,99,108,97,115,115,0,95,102,116,111,109,95,116,105,108,100,101,95,99,108,97,115,115,0,95,109,116,111,102,95,116,105,108,100,101,95,99,108, 97,115,115,0,95,112,111,119,116,111,100,98,95,116,105,108,100,101,95,99,108,97,115,115,0,95,114,109,115,116,111,100,98,95,116,105,108,100,101,95,99,108,97,115,115,0,95,115,105,103,119,114,97,112,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97, 47,115,114,99,47,100,95,109,105,115,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95, 109,105,115,99,46,111,0,95,112,114,105,110,116,95,112,101,114,102,111,114,109,0,95,112,114,105,110,116,95,100,115,112,0,95,112,114,105,110,116,95,102,108,111,97,116,0,95,112,114,105,110,116,95,98,97,110,103,0,95,112,114,105,110,116,95,110,101,119,0,95, 112,114,105,110,116,95,115,101,116,117,112,0,95,98,97,110,103,95,116,105,108,100,101,95,112,101,114,102,111,114,109,0,95,98,97,110,103,95,116,105,108,100,101,95,100,115,112,0,95,98,97,110,103,95,116,105,108,100,101,95,116,105,99,107,0,95,98,97,110,103, 95,116,105,108,100,101,95,102,114,101,101,0,95,98,97,110,103,95,116,105,108,100,101,95,110,101,119,0,95,98,97,110,103,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,95,109,105,115,99,95,115,101,116,117,112,0,95,112,114,105,110,116,95,99,108,97, 115,115,0,95,98,97,110,103,95,116,105,108,100,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,111,115,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47, 108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,111,115,99,46,111,0,95,112,104,97,115,111,114,95,110,101,119,0,95,112,104,97,115,111,114,95,112,101,114,102,111,114,109,0,95,112,104,97,115,111,114,95, 100,115,112,0,95,112,104,97,115,111,114,95,102,116,49,0,95,112,104,97,115,111,114,95,115,101,116,117,112,0,95,99,111,115,95,110,101,119,0,95,99,111,115,95,112,101,114,102,111,114,109,0,95,99,111,115,95,100,115,112,0,95,99,111,115,95,109,97,107,101,116, 97,98,108,101,0,95,99,111,115,95,115,101,116,117,112,0,95,111,115,99,95,110,101,119,0,95,111,115,99,95,112,101,114,102,111,114,109,0,95,111,115,99,95,100,115,112,0,95,111,115,99,95,102,116,49,0,95,111,115,99,95,115,101,116,117,112,0,95,115,105,103,118, 99,102,95,110,101,119,0,95,115,105,103,118,99,102,95,102,116,49,0,95,115,105,103,118,99,102,95,112,101,114,102,111,114,109,0,95,115,105,103,118,99,102,95,100,115,112,0,95,115,105,103,118,99,102,95,115,101,116,117,112,0,95,110,111,105,115,101,95,110,101, 119,0,95,110,111,105,115,101,95,112,101,114,102,111,114,109,0,95,110,111,105,115,101,95,100,115,112,0,95,110,111,105,115,101,95,115,101,116,117,112,0,95,100,95,111,115,99,95,115,101,116,117,112,0,95,105,110,105,116,46,51,57,50,55,0,95,112,104,97,115, 111,114,95,99,108,97,115,115,0,95,115,99,97,108,97,114,112,104,97,115,111,114,95,99,108,97,115,115,0,95,99,111,115,95,99,108,97,115,115,0,95,111,115,99,95,99,108,97,115,115,0,95,115,99,97,108,97,114,111,115,99,95,99,108,97,115,115,0,95,110,111,105,115, 101,95,99,108,97,115,115,0,95,99,111,115,95,116,97,98,108,101,0,95,115,105,103,118,99,102,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,114,101,115,97,109,112,108,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115, 114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,114,101,115,97,109,112,108,101,46,111,0,95,100,111,119,110,115,97,109,112,108,105,110,103, 95,112,101,114,102,111,114,109,95,48,0,95,117,112,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,48,0,95,117,112,115,97,109,112,108,105,110,103,95,112,101,114,102,111,114,109,95,104,111,108,100,0,95,117,112,115,97,109,112,108,105,110, 103,95,112,101,114,102,111,114,109,95,108,105,110,101,97,114,0,95,114,101,115,97,109,112,108,101,95,105,110,105,116,0,95,114,101,115,97,109,112,108,101,95,102,114,101,101,0,95,114,101,115,97,109,112,108,101,95,100,115,112,0,95,114,101,115,97,109,112, 108,101,102,114,111,109,95,100,115,112,0,95,114,101,115,97,109,112,108,101,116,111,95,100,115,112,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,115,111,117,110,100,102,105,108,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117, 115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100,95,115,111,117,110,100,102,105,108,101,46,111,0,95,115,119,97,112,52,0,95,115,119,97,112,50,0,95,115, 119,97,112,115,116,114,105,110,103,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108,101,95,118,105,97,95,102,100,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108,101,0,95,111,112,101,110,95,115,111,117,110,100,102,105,108,101,95,118,105, 97,95,99,97,110,118,97,115,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,105,110,95,115,97,109,112,108,101,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,105,110,95,102,108,111,97,116,0,95,115,111,117,110,100,102,105,108,101, 114,95,119,114,105,116,101,97,114,103,112,97,114,115,101,0,95,99,114,101,97,116,101,95,115,111,117,110,100,102,105,108,101,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99, 112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,115,111,117,110,100,102,105,108,101,95,102,105,110,105,115,104,119,114, 105,116,101,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,111,117,116,95,115,97,109,112,108,101,0,95,115,111,117,110,100,102,105,108,101,95,120,102,101,114,111,117,116,95,102,108,111,97,116,0,95,115,111,117,110,100,102,105,108,101,114,95, 110,101,119,0,95,115,111,117,110,100,102,105,108,101,114,95,114,101,97,100,0,95,115,111,117,110,100,102,105,108,101,114,95,100,111,119,114,105,116,101,0,95,115,111,117,110,100,102,105,108,101,114,95,119,114,105,116,101,0,95,115,111,117,110,100,102,105, 108,101,114,95,115,101,116,117,112,0,95,114,101,97,100,115,102,95,99,104,105,108,100,95,109,97,105,110,0,95,114,101,97,100,115,102,95,110,101,119,0,95,114,101,97,100,115,102,95,116,105,99,107,0,95,114,101,97,100,115,102,95,112,101,114,102,111,114,109, 0,95,114,101,97,100,115,102,95,115,116,97,114,116,0,95,114,101,97,100,115,102,95,115,116,111,112,0,95,114,101,97,100,115,102,95,102,108,111,97,116,0,95,114,101,97,100,115,102,95,111,112,101,110,0,95,114,101,97,100,115,102,95,100,115,112,0,95,114,101, 97,100,115,102,95,112,114,105,110,116,0,95,114,101,97,100,115,102,95,102,114,101,101,0,95,114,101,97,100,115,102,95,115,101,116,117,112,0,95,119,114,105,116,101,115,102,95,99,104,105,108,100,95,109,97,105,110,0,95,119,114,105,116,101,115,102,95,110,101, 119,0,95,119,114,105,116,101,115,102,95,112,101,114,102,111,114,109,0,95,119,114,105,116,101,115,102,95,115,116,97,114,116,0,95,119,114,105,116,101,115,102,95,115,116,111,112,0,95,119,114,105,116,101,115,102,95,111,112,101,110,0,95,119,114,105,116,101, 115,102,95,100,115,112,0,95,119,114,105,116,101,115,102,95,112,114,105,110,116,0,95,119,114,105,116,101,115,102,95,102,114,101,101,0,95,119,114,105,116,101,115,102,95,115,101,116,117,112,0,95,100,95,115,111,117,110,100,102,105,108,101,95,115,101,116, 117,112,0,95,100,111,103,100,111,111,46,53,51,49,50,0,95,115,111,117,110,100,102,105,108,101,114,95,99,108,97,115,115,0,95,114,101,97,100,115,102,95,99,108,97,115,115,0,95,119,114,105,116,101,115,102,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116, 97,47,115,114,99,47,100,95,117,103,101,110,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,100, 95,117,103,101,110,46,111,0,95,122,101,114,111,95,112,101,114,102,111,114,109,0,95,122,101,114,111,95,112,101,114,102,56,0,95,100,115,112,95,97,100,100,95,122,101,114,111,0,95,98,108,111,99,107,95,110,101,119,0,95,98,108,111,99,107,95,115,101,116,0,95, 115,119,105,116,99,104,95,110,101,119,0,95,98,108,111,99,107,95,102,108,111,97,116,0,95,98,108,111,99,107,95,98,97,110,103,0,95,98,108,111,99,107,95,112,114,111,108,111,103,0,95,98,108,111,99,107,95,101,112,105,108,111,103,0,95,98,108,111,99,107,95,100, 115,112,0,95,98,108,111,99,107,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,115,112,95,100,111,110,101,0,95,100,115,112,95,97,100,100,0,95,100,115,112,95,97,100,100,118,0,95,100,115,112,95,116,105,99,107,0,95,105,108,111,103,50,0,95,115,105, 103,110,97,108,95,99,108,101,97,110,117,112,0,95,115,105,103,110,97,108,95,109,97,107,101,114,101,117,115,97,98,108,101,0,95,115,105,103,110,97,108,95,110,101,119,0,95,115,105,103,110,97,108,95,110,101,119,108,105,107,101,0,95,115,105,103,110,97,108, 95,115,101,116,98,111,114,114,111,119,101,100,0,95,115,105,103,110,97,108,95,99,111,109,112,97,116,105,98,108,101,0,95,117,103,101,110,95,115,116,111,112,0,95,117,103,101,110,95,115,116,97,114,116,0,95,117,103,101,110,95,103,101,116,115,111,114,116,110, 111,0,95,117,103,101,110,95,115,116,97,114,116,95,103,114,97,112,104,0,95,117,103,101,110,95,97,100,100,0,95,117,103,101,110,95,99,111,110,110,101,99,116,0,95,117,103,101,110,95,105,110,100,101,120,0,95,117,103,101,110,95,100,111,105,116,0,95,117,103, 101,110,95,100,111,110,101,95,103,114,97,112,104,0,95,117,103,101,110,95,103,101,116,105,111,115,105,103,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100,101,95,98,97,110,103,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100, 101,95,110,101,119,0,95,115,97,109,112,108,101,114,97,116,101,95,116,105,108,100,101,95,115,101,116,117,112,0,95,100,95,117,103,101,110,95,115,101,116,117,112,0,95,117,103,101,110,95,115,111,114,116,110,111,0,95,117,103,101,110,95,108,111,117,100,0,95, 100,115,112,95,99,104,97,105,110,0,95,100,115,112,95,99,104,97,105,110,115,105,122,101,0,95,100,115,112,95,112,104,97,115,101,0,95,98,108,111,99,107,95,99,108,97,115,115,0,95,115,105,103,110,97,108,95,102,114,101,101,108,105,115,116,0,95,115,105,103, 110,97,108,95,102,114,101,101,98,111,114,114,111,119,101,100,0,95,115,105,103,110,97,108,95,117,115,101,100,108,105,115,116,0,95,117,103,101,110,95,99,117,114,114,101,110,116,99,111,110,116,101,120,116,0,95,115,97,109,112,108,101,114,97,116,101,95,116, 105,108,100,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,97,108,108,95,103,117,105,115,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112, 100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,97,108,108,95,103,117,105,115,46,111,0,95,105,101,109,103,117,105,95,99,108,105,112,95,115,105,122,101,0,95,105,101,109,103,117,105,95,99,108,105,112,95,102,111,110, 116,0,95,105,101,109,103,117,105,95,109,111,100,117,108,111,95,99,111,108,111,114,0,95,105,101,109,103,117,105,95,100,111,108,108,97,114,50,114,97,117,116,101,0,95,105,101,109,103,117,105,95,114,97,117,116,101,50,100,111,108,108,97,114,0,95,105,101,109, 103,117,105,95,118,101,114,105,102,121,95,115,110,100,95,110,101,95,114,99,118,0,95,105,101,109,103,117,105,95,110,101,119,95,100,111,103,101,116,110,97,109,101,0,95,105,101,109,103,117,105,95,110,101,119,95,103,101,116,110,97,109,101,115,0,95,105,101, 109,103,117,105,95,97,108,108,95,100,111,108,108,97,114,97,114,103,50,115,121,109,0,95,105,101,109,103,117,105,95,105,110,105,116,95,115,121,109,50,100,111,108,108,97,114,97,114,103,0,95,105,101,109,103,117,105,95,97,108,108,95,115,121,109,50,100,111, 108,108,97,114,97,114,103,0,95,105,101,109,103,117,105,95,102,105,114,115,116,95,100,111,108,108,97,114,97,114,103,50,115,121,109,0,95,105,101,109,103,117,105,95,97,108,108,95,99,111,108,50,115,97,118,101,0,95,105,101,109,103,117,105,95,97,108,108,95, 99,111,108,102,114,111,109,108,111,97,100,0,95,105,101,109,103,117,105,95,99,111,109,112,97,116,105,98,108,101,95,99,111,108,0,95,105,101,109,103,117,105,95,97,108,108,95,100,111,108,108,97,114,50,114,97,117,116,101,0,95,105,101,109,103,117,105,95,97, 108,108,95,114,97,117,116,101,50,100,111,108,108,97,114,0,95,105,101,109,103,117,105,95,115,101,110,100,0,95,105,101,109,103,117,105,95,114,101,99,101,105,118,101,0,95,105,101,109,103,117,105,95,108,97,98,101,108,0,95,105,101,109,103,117,105,95,108,97, 98,101,108,95,112,111,115,0,95,105,101,109,103,117,105,95,108,97,98,101,108,95,102,111,110,116,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,105,101,109,103,117,105,95,115,105,122,101,0,95,105,101,109,103,117,105,95, 100,101,108,116,97,0,95,105,101,109,103,117,105,95,112,111,115,0,95,105,101,109,103,117,105,95,99,111,108,111,114,0,95,105,101,109,103,117,105,95,100,105,115,112,108,97,99,101,0,95,105,101,109,103,117,105,95,115,101,108,101,99,116,0,95,105,101,109,103, 117,105,95,100,101,108,101,116,101,0,95,105,101,109,103,117,105,95,118,105,115,0,95,105,101,109,103,117,105,95,115,97,118,101,0,95,105,101,109,103,117,105,95,112,114,111,112,101,114,116,105,101,115,0,95,105,101,109,103,117,105,95,100,105,97,108,111,103, 0,95,105,101,109,95,105,110,116,116,111,115,121,109,97,114,103,115,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,105,101,109,95,115,121,109,97,114,103,115,116,111,105,110,116,0,95,105,101,109,95,105,110,116,116,111, 102,115,116,121,108,101,0,95,105,101,109,95,102,115,116,121,108,101,116,111,105,110,116,0,95,105,101,109,103,117,105,95,118,117,95,115,99,97,108,101,95,115,116,114,0,95,105,101,109,103,117,105,95,99,111,108,111,114,95,104,101,120,0,95,105,101,109,103, 117,105,95,118,117,95,100,98,50,105,0,95,105,101,109,103,117,105,95,118,117,95,99,111,108,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,97,114,114,97,121,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106, 47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,97,114,114,97,121,46,111,0,95,115,104,97,114,112,116,111,100,111,108,108,97,114,0,95,97,114,114,97,121,95,110,101,119,0,95, 97,114,114,97,121,95,114,101,115,105,122,101,0,95,97,114,114,97,121,95,114,101,115,105,122,101,95,97,110,100,95,114,101,100,114,97,119,0,95,97,114,114,97,121,95,102,114,101,101,0,95,103,97,114,114,97,121,95,105,110,105,116,0,95,103,114,97,112,104,95, 115,99,97,108,97,114,0,95,103,97,114,114,97,121,95,103,101,116,97,114,114,97,121,0,95,103,97,114,114,97,121,95,103,101,116,97,114,114,97,121,95,102,108,111,97,116,111,110,108,121,0,95,103,97,114,114,97,121,95,103,101,116,110,97,109,101,0,95,103,97,114, 114,97,121,95,102,105,116,116,111,103,114,97,112,104,0,95,103,114,97,112,104,95,97,114,114,97,121,0,95,99,97,110,118,97,115,95,109,101,110,117,97,114,114,97,121,0,95,103,97,114,114,97,121,95,112,114,111,112,101,114,116,105,101,115,0,95,103,108,105,115, 116,95,97,114,114,97,121,100,105,97,108,111,103,0,95,103,97,114,114,97,121,95,97,114,114,97,121,100,105,97,108,111,103,0,95,103,97,114,114,97,121,95,97,114,114,97,121,118,105,101,119,108,105,115,116,95,110,101,119,0,95,103,97,114,114,97,121,95,97,114, 114,97,121,118,105,101,119,108,105,115,116,95,102,105,108,108,112,97,103,101,0,95,103,97,114,114,97,121,95,97,114,114,97,121,118,105,101,119,108,105,115,116,95,99,108,111,115,101,0,95,103,97,114,114,97,121,95,102,114,101,101,0,95,97,114,114,97,121,95, 114,101,100,114,97,119,0,95,97,114,114,97,121,95,103,101,116,99,111,111,114,100,105,110,97,116,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,0,95,97,114,114,97,121,95,100,111,99,108,105,99,107,95,101,108,101,109,101,110,116,0,95,97,114,114,97, 121,95,100,111,99,108,105,99,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,109,111,118,101,95,99,104,107,0,95,97,114,114,97,121,95,103,101,116,114,101,99,116,0,95,103,97,114,114,97,121,95,103,101,116,114,101,99,116,0,95,103,97,114,114,97,121, 95,100,105,115,112,108,97,99,101,0,95,103,97,114,114,97,121,95,115,101,108,101,99,116,0,95,103,97,114,114,97,121,95,97,99,116,105,118,97,116,101,0,95,103,97,114,114,97,121,95,100,101,108,101,116,101,0,95,103,97,114,114,97,121,95,118,105,115,0,95,103, 97,114,114,97,121,95,99,108,105,99,107,0,95,103,97,114,114,97,121,95,115,97,118,101,0,95,103,97,114,114,97,121,95,117,115,101,100,105,110,100,115,112,0,95,103,97,114,114,97,121,95,100,111,114,101,100,114,97,119,0,95,103,97,114,114,97,121,95,114,101,100, 114,97,119,0,95,103,97,114,114,97,121,95,116,101,109,112,108,97,116,101,0,95,103,97,114,114,97,121,95,110,112,111,105,110,116,115,0,95,103,97,114,114,97,121,95,118,101,99,0,95,103,97,114,114,97,121,95,103,101,116,102,108,111,97,116,119,111,114,100,115, 0,95,103,97,114,114,97,121,95,103,101,116,102,108,111,97,116,97,114,114,97,121,0,95,103,97,114,114,97,121,95,115,101,116,115,97,118,101,105,116,0,95,103,97,114,114,97,121,95,99,111,110,115,116,0,95,103,97,114,114,97,121,95,100,111,102,111,0,95,103,97, 114,114,97,121,95,115,105,110,101,115,117,109,0,95,103,97,114,114,97,121,95,99,111,115,105,110,101,115,117,109,0,95,103,97,114,114,97,121,95,110,111,114,109,97,108,105,122,101,0,95,103,97,114,114,97,121,95,108,105,115,116,0,95,103,97,114,114,97,121,95, 98,111,117,110,100,115,0,95,103,97,114,114,97,121,95,120,116,105,99,107,115,0,95,103,97,114,114,97,121,95,121,116,105,99,107,115,0,95,103,97,114,114,97,121,95,120,108,97,98,101,108,0,95,103,97,114,114,97,121,95,121,108,97,98,101,108,0,95,103,97,114,114, 97,121,95,114,101,110,97,109,101,0,95,103,97,114,114,97,121,95,114,101,97,100,0,95,103,97,114,114,97,121,95,119,114,105,116,101,0,95,103,97,114,114,97,121,95,97,109,98,105,103,101,110,100,105,97,110,0,95,103,97,114,114,97,121,95,114,101,115,105,122,101, 95,108,111,110,103,0,95,103,97,114,114,97,121,95,114,101,115,105,122,101,0,95,103,97,114,114,97,121,95,112,114,105,110,116,0,95,103,95,97,114,114,97,121,95,115,101,116,117,112,0,95,103,97,114,114,97,121,95,119,105,100,103,101,116,98,101,104,97,118,105, 111,114,0,95,103,97,114,114,97,121,95,97,114,114,97,121,116,101,109,112,108,97,116,101,102,105,108,101,0,95,103,97,114,114,97,121,95,102,108,111,97,116,116,101,109,112,108,97,116,101,102,105,108,101,0,95,103,99,111,117,110,116,0,95,103,97,114,114,97, 121,95,97,114,114,97,121,116,101,109,112,108,97,116,101,99,97,110,118,97,115,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,120,99,117,109,117,108,97,116,105,118,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,121,99,117,109,117,108,97, 116,105,118,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,120,102,105,101,108,100,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,121,102,105,101,108,100,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,103,108,105,115,116,0,95,97, 114,114,97,121,95,109,111,116,105,111,110,95,115,99,97,108,97,114,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,97,114,114,97,121,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,119,112,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95, 116,101,109,112,108,97,116,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,110,112,111,105,110,116,115,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,101,108,101,109,115,105,122,101,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95, 97,108,116,107,101,121,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,105,110,105,116,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,120,112,101,114,112,105,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,121,112,101,114,112, 105,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,108,97,115,116,120,0,95,97,114,114,97,121,95,109,111,116,105,111,110,95,102,97,116,116,101,110,0,95,103,97,114,114,97,121,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114, 99,47,103,95,98,97,110,103,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,98,97,110,103, 46,111,0,95,98,110,103,95,100,114,97,119,95,117,112,100,97,116,101,0,95,98,110,103,95,100,114,97,119,95,110,101,119,0,95,98,110,103,95,100,114,97,119,95,109,111,118,101,0,95,98,110,103,95,100,114,97,119,95,101,114,97,115,101,0,95,98,110,103,95,100,114, 97,119,95,99,111,110,102,105,103,0,95,98,110,103,95,100,114,97,119,95,105,111,0,95,98,110,103,95,100,114,97,119,95,115,101,108,101,99,116,0,95,98,110,103,95,100,114,97,119,0,95,98,110,103,95,103,101,116,114,101,99,116,0,95,98,110,103,95,115,97,118,101, 0,95,98,110,103,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,98,110,103,95,112,114,111,112,101,114,116,105,101,115,0,95,98,110,103,95,115,101,116,0,95,98,110,103,95,98,111,117,116,49,0,95,98,110,103,95,98,111,117,116,50,0,95,98,110,103,95,98,97, 110,103,0,95,98,110,103,95,98,97,110,103,50,0,95,98,110,103,95,100,105,97,108,111,103,0,95,98,110,103,95,99,108,105,99,107,0,95,98,110,103,95,110,101,119,99,108,105,99,107,0,95,98,110,103,95,102,108,111,97,116,0,95,98,110,103,95,115,121,109,98,111,108, 0,95,98,110,103,95,112,111,105,110,116,101,114,0,95,98,110,103,95,108,105,115,116,0,95,98,110,103,95,97,110,121,116,104,105,110,103,0,95,98,110,103,95,108,111,97,100,98,97,110,103,0,95,98,110,103,95,115,105,122,101,0,95,98,110,103,95,100,101,108,116, 97,0,95,98,110,103,95,112,111,115,0,95,98,110,103,95,102,108,97,115,104,116,105,109,101,0,95,98,110,103,95,99,111,108,111,114,0,95,98,110,103,95,115,101,110,100,0,95,98,110,103,95,114,101,99,101,105,118,101,0,95,98,110,103,95,108,97,98,101,108,0,95,98, 110,103,95,108,97,98,101,108,95,112,111,115,0,95,98,110,103,95,108,97,98,101,108,95,102,111,110,116,0,95,98,110,103,95,105,110,105,116,0,95,98,110,103,95,116,105,99,107,95,104,108,100,0,95,98,110,103,95,116,105,99,107,95,98,114,107,0,95,98,110,103,95, 116,105,99,107,95,108,99,107,0,95,98,110,103,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,98,110,103,95,102,102,0,95,103,95,98,97,110,103,95,115,101,116,117,112,0,95,98,110,103,95,99,108,97,115,115,0, 95,98,110,103,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,99,97,110,118,97,115,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114, 111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,99,97,110,118,97,115,46,111,0,95,99,97,110,118,97,115,95,117,112,100,97,116,101,119,105,110,100,111,119,108,105,115,116,0,95,99,97,110,118, 97,115,95,97,100,100,116,111,108,105,115,116,0,95,99,97,110,118,97,115,95,116,97,107,101,111,102,102,108,105,115,116,0,95,99,97,110,118,97,115,95,115,101,116,97,114,103,115,0,95,103,108,111,98,95,115,101,116,102,105,108,101,110,97,109,101,0,95,99,97, 110,118,97,115,95,103,101,116,99,117,114,114,101,110,116,0,95,99,97,110,118,97,115,95,115,101,116,99,117,114,114,101,110,116,0,95,99,97,110,118,97,115,95,117,110,115,101,116,99,117,114,114,101,110,116,0,95,99,97,110,118,97,115,95,103,101,116,101,110, 118,0,95,99,97,110,118,97,115,95,103,101,116,100,111,108,108,97,114,122,101,114,111,0,95,99,97,110,118,97,115,95,103,101,116,97,114,103,115,0,95,99,97,110,118,97,115,95,114,101,97,108,105,122,101,100,111,108,108,97,114,0,95,99,97,110,118,97,115,95,103, 101,116,99,117,114,114,101,110,116,100,105,114,0,95,99,97,110,118,97,115,95,103,101,116,100,105,114,0,95,99,97,110,118,97,115,95,109,97,107,101,102,105,108,101,110,97,109,101,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104, 107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,97,116,95,99,104,107,0,95,99,97,110,118,97,115,95,114,101,110,97,109,101,0,95,99,97,110,118,97,115,95,103,101,116,105, 110,100,101,120,0,95,108,105,110,101,116,114,97,118,101,114,115,101,114,95,115,116,97,114,116,0,95,108,105,110,101,116,114,97,118,101,114,115,101,114,95,110,101,120,116,0,95,108,105,110,101,116,114,97,118,101,114,115,101,114,95,115,107,105,112,111,98, 106,101,99,116,0,95,103,108,105,115,116,95,105,110,105,116,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,99,97,110,118,97,115,95,110,101,119,0,95,99,97,110,118,97,115,95,99,111,111,114,100,115,0,95,103,108,105,115,116, 95,97,100,100,103,108,105,115,116,0,95,103,108,105,115,116,95,103,108,105,115,116,0,95,103,108,105,115,116,95,105,115,103,114,97,112,104,0,95,99,97,110,118,97,115,95,115,101,116,98,111,117,110,100,115,0,95,99,97,110,118,97,115,95,100,111,115,101,116, 98,111,117,110,100,115,0,95,99,97,110,118,97,115,95,109,97,107,101,98,105,110,100,115,121,109,0,95,99,97,110,118,97,115,95,114,101,102,108,101,99,116,116,105,116,108,101,0,95,99,97,110,118,97,115,95,100,105,114,116,121,0,95,99,97,110,118,97,115,95,100, 114,97,119,114,101,100,114,101,99,116,0,95,99,97,110,118,97,115,95,109,97,112,0,95,99,97,110,118,97,115,95,114,101,100,114,97,119,0,95,103,108,105,115,116,95,109,101,110,117,95,111,112,101,110,0,95,103,108,105,115,116,95,105,115,118,105,115,105,98,108, 101,0,95,103,108,105,115,116,95,105,115,116,111,112,108,101,118,101,108,0,95,103,108,105,115,116,95,103,101,116,102,111,110,116,0,95,99,97,110,118,97,115,95,102,114,101,101,0,95,99,97,110,118,97,115,95,100,114,97,119,108,105,110,101,115,0,95,99,97,110, 118,97,115,95,102,105,120,108,105,110,101,115,102,111,114,0,95,99,97,110,118,97,115,95,100,101,108,101,116,101,108,105,110,101,115,102,111,114,0,95,99,97,110,118,97,115,95,100,101,108,101,116,101,108,105,110,101,115,102,111,114,105,111,0,95,99,97,110, 118,97,115,95,112,111,112,0,95,99,97,110,118,97,115,95,114,101,115,116,111,114,101,0,95,99,97,110,118,97,115,95,108,111,97,100,98,97,110,103,97,98,115,116,114,97,99,116,105,111,110,115,0,95,99,97,110,118,97,115,95,108,111,97,100,98,97,110,103,115,117, 98,112,97,116,99,104,101,115,0,95,99,97,110,118,97,115,95,108,111,97,100,98,97,110,103,0,95,99,97,110,118,97,115,95,114,101,108,111,99,97,116,101,0,95,99,97,110,118,97,115,95,112,111,112,97,98,115,116,114,97,99,116,105,111,110,0,95,99,97,110,118,97,115, 95,108,111,103,101,114,114,111,114,0,95,115,117,98,99,97,110,118,97,115,95,110,101,119,0,95,99,97,110,118,97,115,95,99,108,105,99,107,0,95,99,97,110,118,97,115,95,102,97,116,116,101,110,115,117,98,0,95,99,97,110,118,97,115,95,114,101,110,97,109,101,95, 109,101,116,104,111,100,0,95,116,97,98,108,101,95,110,101,119,0,95,99,97,110,118,97,115,95,105,115,97,98,115,116,114,97,99,116,105,111,110,0,95,99,97,110,118,97,115,95,105,115,116,97,98,108,101,0,95,99,97,110,118,97,115,95,115,104,111,119,116,101,120, 116,0,95,99,97,110,118,97,115,95,103,101,116,114,111,111,116,102,111,114,0,95,99,97,110,118,97,115,95,100,111,100,115,112,0,95,99,97,110,118,97,115,95,100,115,112,0,95,99,97,110,118,97,115,95,115,116,97,114,116,95,100,115,112,0,95,99,97,110,118,97,115, 95,115,116,111,112,95,100,115,112,0,95,99,97,110,118,97,115,95,115,117,115,112,101,110,100,95,100,115,112,0,95,99,97,110,118,97,115,95,114,101,115,117,109,101,95,100,115,112,0,95,99,97,110,118,97,115,95,117,112,100,97,116,101,95,100,115,112,0,95,103, 108,111,98,95,100,115,112,0,95,99,97,110,118,97,115,95,103,101,116,98,108,111,99,107,0,95,103,108,105,115,116,95,114,101,100,114,97,119,97,108,108,0,95,99,97,110,118,97,115,95,114,101,100,114,97,119,97,108,108,102,111,114,116,101,109,112,108,97,116,101, 0,95,99,97,110,118,97,115,95,114,101,100,114,97,119,97,108,108,102,111,114,116,101,109,112,108,97,116,101,99,97,110,118,97,115,0,95,100,101,99,108,97,114,101,95,110,101,119,0,95,100,101,99,108,97,114,101,95,102,114,101,101,0,95,99,97,110,118,97,115,95, 115,97,118,101,100,101,99,108,97,114,97,116,105,111,110,115,116,111,0,95,99,97,110,118,97,115,95,99,111,109,112,108,101,116,101,112,97,116,104,0,95,99,97,110,118,97,115,95,100,101,99,108,97,114,101,0,95,99,97,110,118,97,115,95,111,112,101,110,0,95,103, 95,99,97,110,118,97,115,95,115,101,116,117,112,0,95,99,97,110,118,97,115,95,110,101,119,102,105,108,101,110,97,109,101,0,95,99,97,110,118,97,115,95,110,101,119,100,105,114,101,99,116,111,114,121,0,95,103,108,105,115,116,95,118,97,108,105,100,0,95,100, 111,108,108,97,114,122,101,114,111,46,54,51,49,53,0,95,103,99,111,117,110,116,46,54,52,53,57,0,95,116,97,98,99,111,117,110,116,0,95,99,97,110,118,97,115,95,110,101,119,97,114,103,99,0,95,99,97,110,118,97,115,95,110,101,119,97,114,103,118,0,95,100,101, 99,108,97,114,101,95,99,108,97,115,115,0,95,99,97,110,118,97,115,95,99,108,97,115,115,0,95,99,97,110,118,97,115,95,100,115,112,115,116,97,116,101,0,95,99,97,110,118,97,115,95,101,100,105,116,105,110,103,0,95,99,97,110,118,97,115,95,108,105,115,116,0, 95,99,97,110,118,97,115,95,119,104,105,99,104,102,105,110,100,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,101,100,105,116,111,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103, 47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,101,100,105,116,111,114,46,111,0,95,103,111,98,106,95,103,101,116,114,101,99,116,0,95,103,111,98,106,95,100,105,115,112,108,97,99,101,0,95,103,111, 98,106,95,115,101,108,101,99,116,0,95,103,111,98,106,95,97,99,116,105,118,97,116,101,0,95,103,111,98,106,95,100,101,108,101,116,101,0,95,103,111,98,106,95,115,104,111,117,108,100,118,105,115,0,95,103,111,98,106,95,118,105,115,0,95,103,111,98,106,95,99, 108,105,99,107,0,95,103,108,105,115,116,95,115,101,108,101,99,116,108,105,110,101,0,95,103,108,105,115,116,95,100,101,115,101,108,101,99,116,108,105,110,101,0,95,103,108,105,115,116,95,105,115,115,101,108,101,99,116,101,100,0,95,103,108,105,115,116,95, 115,101,108,101,99,116,0,95,103,108,105,115,116,95,99,104,101,99,107,97,110,100,100,101,115,101,108,101,99,116,97,108,108,0,95,103,108,105,115,116,95,100,101,115,101,108,101,99,116,0,95,103,108,105,115,116,95,110,111,115,101,108,101,99,116,0,95,103,108, 105,115,116,95,115,101,108,101,99,116,97,108,108,0,95,103,108,105,115,116,95,103,101,116,105,110,100,101,120,0,95,103,108,105,115,116,95,115,101,108,101,99,116,105,111,110,105,110,100,101,120,0,95,103,108,105,115,116,95,110,116,104,0,95,99,97,110,118, 97,115,95,115,101,116,117,110,100,111,0,95,99,97,110,118,97,115,95,110,111,117,110,100,111,0,95,99,97,110,118,97,115,95,117,110,100,111,0,95,99,97,110,118,97,115,95,114,101,100,111,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,100,105, 115,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,100,105,115,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,100,105,115,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,99,111, 110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,99,117,116,0,95,99,97,110,118,97,115,95,117,110,100,111,95,99,117,116,0,95,99,97,110,118,97,115, 95,117,110,100,111,95,115,101,116,95,109,111,118,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,109,111,118,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,115,101,116,95,112,97,115,116,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,112, 97,115,116,101,0,95,103,108,105,115,116,95,100,111,114,101,108,111,97,100,0,95,99,97,110,118,97,115,95,114,101,108,111,97,100,0,95,99,97,110,118,97,115,95,115,101,116,99,117,114,115,111,114,0,95,99,97,110,118,97,115,95,104,105,116,98,111,120,0,95,99, 97,110,118,97,115,95,102,105,110,100,104,105,116,98,111,120,0,95,99,97,110,118,97,115,95,114,105,103,104,116,99,108,105,99,107,0,95,101,100,105,116,111,114,95,110,101,119,0,95,101,100,105,116,111,114,95,102,114,101,101,0,95,99,97,110,118,97,115,95,99, 114,101,97,116,101,95,101,100,105,116,111,114,0,95,99,97,110,118,97,115,95,100,101,115,116,114,111,121,95,101,100,105,116,111,114,0,95,99,97,110,118,97,115,95,118,105,115,0,95,99,97,110,118,97,115,95,115,101,116,103,114,97,112,104,0,95,99,97,110,118, 97,115,95,112,114,111,112,101,114,116,105,101,115,0,95,99,97,110,118,97,115,95,100,111,110,101,99,97,110,118,97,115,100,105,97,108,111,103,0,95,99,97,110,118,97,115,95,100,111,110,101,95,112,111,112,117,112,0,95,99,97,110,118,97,115,95,100,111,99,108, 105,99,107,0,95,99,97,110,118,97,115,95,109,111,117,115,101,0,95,99,97,110,118,97,115,95,105,115,99,111,110,110,101,99,116,101,100,0,95,99,97,110,118,97,115,95,100,111,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,115,101,108,101,99,116,105, 110,114,101,99,116,0,95,99,97,110,118,97,115,95,100,111,114,101,103,105,111,110,0,95,99,97,110,118,97,115,95,109,111,117,115,101,117,112,0,95,99,97,110,118,97,115,95,100,105,115,112,108,97,99,101,115,101,108,101,99,116,105,111,110,0,95,99,97,110,118, 97,115,95,107,101,121,0,95,100,101,108,97,121,95,109,111,118,101,0,95,99,97,110,118,97,115,95,109,111,116,105,111,110,0,95,99,97,110,118,97,115,95,115,116,97,114,116,109,111,116,105,111,110,0,95,99,97,110,118,97,115,95,112,114,105,110,116,0,95,103,108, 105,115,116,95,102,105,110,100,100,105,114,116,121,0,95,103,108,111,98,95,118,101,114,105,102,121,113,117,105,116,0,95,99,97,110,118,97,115,95,109,101,110,117,99,108,111,115,101,0,95,99,97,110,118,97,115,95,109,101,110,117,102,111,110,116,0,95,99,97, 110,118,97,115,95,100,111,102,105,110,100,0,95,99,97,110,118,97,115,95,102,105,110,100,0,95,99,97,110,118,97,115,95,102,105,110,100,95,97,103,97,105,110,0,95,99,97,110,118,97,115,95,102,105,110,100,95,112,97,114,101,110,116,0,95,103,108,105,115,116,95, 100,111,102,105,110,100,101,114,114,111,114,0,95,99,97,110,118,97,115,95,102,105,110,100,101,114,114,111,114,0,95,99,97,110,118,97,115,95,115,116,111,119,99,111,110,110,101,99,116,105,111,110,115,0,95,99,97,110,118,97,115,95,114,101,115,116,111,114,101, 99,111,110,110,101,99,116,105,111,110,115,0,95,99,97,110,118,97,115,95,100,111,99,111,112,121,0,95,99,97,110,118,97,115,95,99,111,112,121,0,95,99,97,110,118,97,115,95,99,108,101,97,114,108,105,110,101,0,95,99,97,110,118,97,115,95,100,111,99,108,101,97, 114,0,95,99,97,110,118,97,115,95,99,117,116,0,95,103,108,105,115,116,95,100,111,110,101,119,108,111,97,100,98,97,110,103,115,0,95,99,97,110,118,97,115,95,100,111,112,97,115,116,101,0,95,99,97,110,118,97,115,95,112,97,115,116,101,0,95,99,97,110,118,97, 115,95,100,117,112,108,105,99,97,116,101,0,95,99,97,110,118,97,115,95,115,101,108,101,99,116,97,108,108,0,95,99,97,110,118,97,115,95,114,101,115,101,108,101,99,116,0,95,99,97,110,118,97,115,95,99,111,110,110,101,99,116,0,95,99,97,110,118,97,115,95,116, 105,100,121,0,95,99,97,110,118,97,115,95,116,101,120,116,101,100,105,116,111,114,0,95,103,108,111,98,95,107,101,121,0,95,99,97,110,118,97,115,95,101,100,105,116,109,111,100,101,0,95,99,97,110,118,97,115,95,100,111,102,111,110,116,0,95,99,97,110,118,97, 115,95,102,111,110,116,0,95,103,108,105,115,116,95,103,101,116,110,101,120,116,120,121,0,95,103,108,105,115,116,95,115,101,116,108,97,115,116,120,121,0,95,103,95,101,100,105,116,111,114,95,115,101,116,117,112,0,95,99,117,114,115,111,114,108,105,115,116, 0,95,103,108,105,115,116,95,97,109,114,101,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,115,0,95,114,101,101,110,116,101,114,46,53,57,51,56,0,95,99,117,114,115,111,114,119,97,115,46,54,54,55,52,0,95,120,119,97,115,46,54,54,55,51, 0,95,107,101,121,110,97,109,101,115,121,109,46,55,57,48,57,0,95,107,101,121,117,112,115,121,109,46,55,57,48,56,0,95,107,101,121,110,117,109,115,121,109,46,55,57,48,55,0,95,99,111,112,121,95,98,105,110,98,117,102,0,95,99,97,110,118,97,115,95,116,101,120, 116,99,111,112,121,98,117,102,0,95,99,97,110,118,97,115,95,116,101,120,116,99,111,112,121,98,117,102,115,105,122,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,102,110,0,95,99,97,110,118,97,115,95,117,110,100,111,95,119,104,97,116,110,101,120,116, 0,95,99,97,110,118,97,115,95,117,110,100,111,95,98,117,102,0,95,99,97,110,118,97,115,95,117,110,100,111,95,99,97,110,118,97,115,0,95,99,97,110,118,97,115,95,117,110,100,111,95,110,97,109,101,0,95,99,97,110,118,97,115,95,117,110,100,111,95,97,108,114, 101,97,100,121,95,115,101,116,95,109,111,118,101,0,95,99,97,110,118,97,115,95,117,112,99,108,105,99,107,116,105,109,101,0,95,99,97,110,118,97,115,95,117,112,120,0,95,99,97,110,118,97,115,95,117,112,121,0,95,99,97,110,118,97,115,95,102,105,110,100,95, 105,110,100,101,120,49,0,95,99,97,110,118,97,115,95,102,105,110,100,95,105,110,100,101,120,50,0,95,99,97,110,118,97,115,95,102,105,110,100,95,119,104,111,108,101,119,111,114,100,0,95,99,97,110,118,97,115,95,102,105,110,100,98,117,102,0,95,112,97,115, 116,101,95,111,110,115,101,116,0,95,112,97,115,116,101,95,99,97,110,118,97,115,0,95,99,97,110,118,97,115,95,108,97,115,116,95,103,108,105,115,116,0,95,99,97,110,118,97,115,95,108,97,115,116,95,103,108,105,115,116,95,120,0,95,99,97,110,118,97,115,95,108, 97,115,116,95,103,108,105,115,116,95,121,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,103,114,97,112,104,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47, 108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,103,114,97,112,104,46,111,0,95,103,108,105,115,116,95,97,100,100,0,95,99,97,110,118,97,115,95,115,101,116,100,101,108,101,116,105,110,103,0,95,103,108,105,115,116,95,100,101, 108,101,116,101,0,95,103,108,105,115,116,95,99,108,101,97,114,0,95,103,108,105,115,116,95,114,101,116,101,120,116,0,95,103,108,105,115,116,95,103,114,97,98,0,95,103,108,105,115,116,95,103,101,116,99,97,110,118,97,115,0,95,103,111,98,106,95,103,101,116, 120,102,111,114,115,111,114,116,0,95,103,108,105,115,116,95,109,101,114,103,101,0,95,103,108,105,115,116,95,100,111,115,111,114,116,0,95,103,108,105,115,116,95,115,111,114,116,0,95,103,108,105,115,116,95,99,108,101,97,110,117,112,0,95,103,108,105,115, 116,95,102,114,101,101,0,95,99,97,110,118,97,115,95,97,100,100,105,110,108,101,116,0,95,99,97,110,118,97,115,95,114,109,105,110,108,101,116,0,95,99,97,110,118,97,115,95,114,101,115,111,114,116,105,110,108,101,116,115,0,95,99,97,110,118,97,115,95,97,100, 100,111,117,116,108,101,116,0,95,99,97,110,118,97,115,95,114,109,111,117,116,108,101,116,0,95,99,97,110,118,97,115,95,114,101,115,111,114,116,111,117,116,108,101,116,115,0,95,103,114,97,112,104,95,98,111,117,110,100,115,0,95,103,114,97,112,104,95,120, 116,105,99,107,115,0,95,103,114,97,112,104,95,121,116,105,99,107,115,0,95,103,114,97,112,104,95,120,108,97,98,101,108,0,95,103,114,97,112,104,95,121,108,97,98,101,108,0,95,103,108,105,115,116,95,112,105,120,101,108,115,116,111,120,0,95,103,108,105,115, 116,95,112,105,120,101,108,115,116,111,121,0,95,103,108,105,115,116,95,120,116,111,112,105,120,101,108,115,0,95,103,108,105,115,116,95,121,116,111,112,105,120,101,108,115,0,95,103,108,105,115,116,95,100,112,105,120,116,111,100,120,0,95,103,108,105,115, 116,95,100,112,105,120,116,111,100,121,0,95,116,101,120,116,95,120,112,105,120,0,95,116,101,120,116,95,121,112,105,120,0,95,103,108,105,115,116,95,114,101,100,114,97,119,0,95,103,114,97,112,104,95,118,105,115,0,95,103,114,97,112,104,95,103,114,97,112, 104,114,101,99,116,0,95,103,114,97,112,104,95,103,101,116,114,101,99,116,0,95,103,114,97,112,104,95,100,105,115,112,108,97,99,101,0,95,103,114,97,112,104,95,115,101,108,101,99,116,0,95,103,114,97,112,104,95,97,99,116,105,118,97,116,101,0,95,103,114,97, 112,104,95,100,101,108,101,116,101,0,95,103,114,97,112,104,95,109,111,116,105,111,110,0,95,103,114,97,112,104,95,99,108,105,99,107,0,95,103,108,105,115,116,95,102,105,110,100,103,114,97,112,104,0,95,103,95,103,114,97,112,104,95,115,101,116,117,112,0, 95,103,114,97,112,104,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,103,114,97,112,104,95,108,97,115,116,120,112,105,120,0,95,103,114,97,112,104,95,108,97,115,116,121,112,105,120,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103, 95,103,117,105,99,111,110,110,101,99,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95, 103,117,105,99,111,110,110,101,99,116,46,111,0,95,103,117,105,99,111,110,110,101,99,116,95,110,101,119,0,95,103,117,105,99,111,110,110,101,99,116,95,102,114,101,101,0,95,103,117,105,99,111,110,110,101,99,116,95,116,105,99,107,0,95,103,117,105,99,111, 110,110,101,99,116,95,110,111,116,97,114,103,101,116,0,95,103,117,105,99,111,110,110,101,99,116,95,97,110,121,116,104,105,110,103,0,95,103,117,105,99,111,110,110,101,99,116,95,115,105,103,110,111,102,102,0,95,103,95,103,117,105,99,111,110,110,101,99, 116,95,115,101,116,117,112,0,95,103,117,105,99,111,110,110,101,99,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,104,100,105,97,108,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106, 47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,104,100,105,97,108,46,111,0,95,104,114,97,100,105,111,95,100,114,97,119,95,117,112,100,97,116,101,0,95,104,114,97,100,105,111, 95,100,114,97,119,95,110,101,119,0,95,104,114,97,100,105,111,95,100,114,97,119,95,109,111,118,101,0,95,104,114,97,100,105,111,95,100,114,97,119,95,101,114,97,115,101,0,95,104,114,97,100,105,111,95,100,114,97,119,95,99,111,110,102,105,103,0,95,104,114, 97,100,105,111,95,100,114,97,119,95,105,111,0,95,104,114,97,100,105,111,95,100,114,97,119,95,115,101,108,101,99,116,0,95,104,114,97,100,105,111,95,100,114,97,119,0,95,104,114,97,100,105,111,95,103,101,116,114,101,99,116,0,95,104,114,97,100,105,111,95, 115,97,118,101,0,95,104,114,97,100,105,111,95,112,114,111,112,101,114,116,105,101,115,0,95,104,114,97,100,105,111,95,100,105,97,108,111,103,0,95,104,114,97,100,105,111,95,115,101,116,0,95,104,114,97,100,105,111,95,98,97,110,103,0,95,104,114,97,100,105, 111,95,102,111,117,116,0,95,104,114,97,100,105,111,95,102,108,111,97,116,0,95,104,114,97,100,105,111,95,99,108,105,99,107,0,95,104,114,97,100,105,111,95,110,101,119,99,108,105,99,107,0,95,104,114,97,100,105,111,95,108,111,97,100,98,97,110,103,0,95,104, 114,97,100,105,111,95,110,117,109,98,101,114,0,95,104,114,97,100,105,111,95,115,105,122,101,0,95,104,114,97,100,105,111,95,100,101,108,116,97,0,95,104,114,97,100,105,111,95,112,111,115,0,95,104,114,97,100,105,111,95,99,111,108,111,114,0,95,104,114,97, 100,105,111,95,115,101,110,100,0,95,104,114,97,100,105,111,95,114,101,99,101,105,118,101,0,95,104,114,97,100,105,111,95,108,97,98,101,108,0,95,104,114,97,100,105,111,95,108,97,98,101,108,95,112,111,115,0,95,104,114,97,100,105,111,95,108,97,98,101,108, 95,102,111,110,116,0,95,104,114,97,100,105,111,95,105,110,105,116,0,95,104,114,97,100,105,111,95,100,111,117,98,108,101,95,99,104,97,110,103,101,0,95,104,114,97,100,105,111,95,115,105,110,103,108,101,95,99,104,97,110,103,101,0,95,104,114,97,100,105,111, 95,100,111,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,104,114,97,100,105,111,95,110,101,119,0,95,104,100,105,97,108,95,110,101,119,0,95,104,114,97,100,105,111,95,102,102,0,95,103,95,104,114,97,100,105, 111,95,115,101,116,117,112,0,95,104,114,97,100,105,111,95,99,108,97,115,115,0,95,104,114,97,100,105,111,95,111,108,100,95,99,108,97,115,115,0,95,104,114,97,100,105,111,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100, 97,116,97,47,115,114,99,47,103,95,104,115,108,105,100,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47, 115,114,99,47,103,95,104,115,108,105,100,101,114,46,111,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,117,112,100,97,116,101,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,110,101,119,0,95,104,115,108,105,100,101,114,95,100,114,97,119, 95,109,111,118,101,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,101,114,97,115,101,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,99,111,110,102,105,103,0,95,104,115,108,105,100,101,114,95,100,114,97,119,95,105,111,0,95,104,115,108,105, 100,101,114,95,100,114,97,119,95,115,101,108,101,99,116,0,95,104,115,108,105,100,101,114,95,100,114,97,119,0,95,104,115,108,105,100,101,114,95,103,101,116,114,101,99,116,0,95,104,115,108,105,100,101,114,95,115,97,118,101,0,95,104,115,108,105,100,101, 114,95,99,104,101,99,107,95,119,105,100,116,104,0,95,104,115,108,105,100,101,114,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,104,115,108,105,100,101,114,95,112,114,111,112,101,114,116,105,101,115,0,95,104,115,108,105,100,101,114,95,115,101,116, 0,95,104,115,108,105,100,101,114,95,98,97,110,103,0,95,104,115,108,105,100,101,114,95,100,105,97,108,111,103,0,95,104,115,108,105,100,101,114,95,109,111,116,105,111,110,0,95,104,115,108,105,100,101,114,95,99,108,105,99,107,0,95,104,115,108,105,100,101, 114,95,110,101,119,99,108,105,99,107,0,95,104,115,108,105,100,101,114,95,115,105,122,101,0,95,104,115,108,105,100,101,114,95,100,101,108,116,97,0,95,104,115,108,105,100,101,114,95,112,111,115,0,95,104,115,108,105,100,101,114,95,114,97,110,103,101,0,95, 104,115,108,105,100,101,114,95,99,111,108,111,114,0,95,104,115,108,105,100,101,114,95,115,101,110,100,0,95,104,115,108,105,100,101,114,95,114,101,99,101,105,118,101,0,95,104,115,108,105,100,101,114,95,108,97,98,101,108,0,95,104,115,108,105,100,101,114, 95,108,97,98,101,108,95,112,111,115,0,95,104,115,108,105,100,101,114,95,108,97,98,101,108,95,102,111,110,116,0,95,104,115,108,105,100,101,114,95,108,111,103,0,95,104,115,108,105,100,101,114,95,108,105,110,0,95,104,115,108,105,100,101,114,95,105,110,105, 116,0,95,104,115,108,105,100,101,114,95,115,116,101,97,100,121,0,95,104,115,108,105,100,101,114,95,102,108,111,97,116,0,95,104,115,108,105,100,101,114,95,108,111,97,100,98,97,110,103,0,95,104,115,108,105,100,101,114,95,110,101,119,0,95,95,95,105,110, 108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,104,115,108,105,100,101,114,95,102,114,101,101,0,95,103,95,104,115,108,105,100,101,114,95,115,101,116,117,112,0,95,104,115,108,105,100,101,114,95,99,108,97,115,115,0,95,104,115,108,105,100, 101,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,105,111,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105, 98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,105,111,46,111,0,95,118,105,110,108,101,116,95,110,101,119,0,95,118,105,110,108,101,116,95,98,97,110,103,0,95,118,105,110,108,101,116,95,112,111,105,110,116, 101,114,0,95,118,105,110,108,101,116,95,102,108,111,97,116,0,95,118,105,110,108,101,116,95,115,121,109,98,111,108,0,95,118,105,110,108,101,116,95,108,105,115,116,0,95,118,105,110,108,101,116,95,97,110,121,116,104,105,110,103,0,95,118,105,110,108,101, 116,95,102,114,101,101,0,95,118,105,110,108,101,116,95,103,101,116,105,116,0,95,118,105,110,108,101,116,95,105,115,115,105,103,110,97,108,0,95,118,105,110,108,101,116,95,112,101,114,102,111,114,109,0,95,118,105,110,108,101,116,95,100,115,112,0,95,118, 105,110,108,101,116,95,100,111,112,114,111,108,111,103,0,95,118,105,110,108,101,116,95,100,115,112,112,114,111,108,111,103,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,118,105,110,108,101,116,95,110,101,119,115,105, 103,0,95,118,105,110,108,101,116,95,115,101,116,117,112,0,95,118,111,117,116,108,101,116,95,110,101,119,0,95,118,111,117,116,108,101,116,95,98,97,110,103,0,95,118,111,117,116,108,101,116,95,112,111,105,110,116,101,114,0,95,118,111,117,116,108,101,116, 95,102,108,111,97,116,0,95,118,111,117,116,108,101,116,95,115,121,109,98,111,108,0,95,118,111,117,116,108,101,116,95,108,105,115,116,0,95,118,111,117,116,108,101,116,95,97,110,121,116,104,105,110,103,0,95,118,111,117,116,108,101,116,95,102,114,101,101, 0,95,118,111,117,116,108,101,116,95,103,101,116,105,116,0,95,118,111,117,116,108,101,116,95,105,115,115,105,103,110,97,108,0,95,118,111,117,116,108,101,116,95,112,101,114,102,111,114,109,0,95,118,111,117,116,108,101,116,95,100,111,101,112,105,108,111, 103,0,95,118,111,117,116,108,101,116,95,100,111,101,112,105,108,111,103,95,114,101,115,97,109,112,108,105,110,103,0,95,118,111,117,116,108,101,116,95,100,115,112,112,114,111,108,111,103,0,95,118,111,117,116,108,101,116,95,100,115,112,0,95,118,111,117, 116,108,101,116,95,100,115,112,101,112,105,108,111,103,0,95,118,111,117,116,108,101,116,95,110,101,119,115,105,103,0,95,118,111,117,116,108,101,116,95,115,101,116,117,112,0,95,103,95,105,111,95,115,101,116,117,112,0,95,116,111,116,0,95,118,105,110,108, 101,116,95,99,108,97,115,115,0,95,118,111,117,116,108,101,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,109,121,99,97,110,118,97,115,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111, 106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,109,121,99,97,110,118,97,115,46,111,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,110,101,119,0,95,109,121, 95,99,97,110,118,97,115,95,100,114,97,119,95,109,111,118,101,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,101,114,97,115,101,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,95,99,111,110,102,105,103,0,95,109,121,95,99,97,110,118,97, 115,95,100,114,97,119,95,115,101,108,101,99,116,0,95,109,121,95,99,97,110,118,97,115,95,100,114,97,119,0,95,109,121,95,99,97,110,118,97,115,95,103,101,116,114,101,99,116,0,95,109,121,95,99,97,110,118,97,115,95,115,97,118,101,0,95,109,121,95,99,97,110, 118,97,115,95,112,114,111,112,101,114,116,105,101,115,0,95,109,121,95,99,97,110,118,97,115,95,103,101,116,95,112,111,115,0,95,109,121,95,99,97,110,118,97,115,95,100,105,97,108,111,103,0,95,109,121,95,99,97,110,118,97,115,95,115,105,122,101,0,95,109,121, 95,99,97,110,118,97,115,95,100,101,108,116,97,0,95,109,121,95,99,97,110,118,97,115,95,112,111,115,0,95,109,121,95,99,97,110,118,97,115,95,118,105,115,95,115,105,122,101,0,95,109,121,95,99,97,110,118,97,115,95,99,111,108,111,114,0,95,109,121,95,99,97, 110,118,97,115,95,115,101,110,100,0,95,109,121,95,99,97,110,118,97,115,95,114,101,99,101,105,118,101,0,95,109,121,95,99,97,110,118,97,115,95,108,97,98,101,108,0,95,109,121,95,99,97,110,118,97,115,95,108,97,98,101,108,95,112,111,115,0,95,109,121,95,99, 97,110,118,97,115,95,108,97,98,101,108,95,102,111,110,116,0,95,109,121,95,99,97,110,118,97,115,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,109,121,95,99,97,110,118,97,115,95,102,102,0,95,103,95,109,121, 99,97,110,118,97,115,95,115,101,116,117,112,0,95,109,121,95,99,97,110,118,97,115,95,99,108,97,115,115,0,95,109,121,95,99,97,110,118,97,115,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103, 95,110,117,109,98,111,120,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,110,117,109,98, 111,120,46,111,0,95,109,121,95,110,117,109,98,111,120,95,116,105,99,107,95,114,101,115,101,116,0,95,109,121,95,110,117,109,98,111,120,95,116,105,99,107,95,119,97,105,116,0,95,109,121,95,110,117,109,98,111,120,95,99,108,105,112,0,95,109,121,95,110,117, 109,98,111,120,95,99,97,108,99,95,102,111,110,116,119,105,100,116,104,0,95,109,121,95,110,117,109,98,111,120,95,102,116,111,97,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,117,112,100,97,116,101,0,95,109,121,95,110,117,109,98,111,120,95, 100,114,97,119,95,110,101,119,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,109,111,118,101,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,101,114,97,115,101,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,99,111, 110,102,105,103,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,105,111,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,95,115,101,108,101,99,116,0,95,109,121,95,110,117,109,98,111,120,95,100,114,97,119,0,95,109,121,95,110,117,109, 98,111,120,95,103,101,116,114,101,99,116,0,95,109,121,95,110,117,109,98,111,120,95,115,97,118,101,0,95,109,121,95,110,117,109,98,111,120,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,109,121,95,110,117,109,98,111,120,95,112,114,111,112,101,114, 116,105,101,115,0,95,109,121,95,110,117,109,98,111,120,95,98,97,110,103,0,95,109,121,95,110,117,109,98,111,120,95,100,105,97,108,111,103,0,95,109,121,95,110,117,109,98,111,120,95,109,111,116,105,111,110,0,95,109,121,95,110,117,109,98,111,120,95,99,108, 105,99,107,0,95,109,121,95,110,117,109,98,111,120,95,110,101,119,99,108,105,99,107,0,95,109,121,95,110,117,109,98,111,120,95,115,101,116,0,95,109,121,95,110,117,109,98,111,120,95,108,111,103,95,104,101,105,103,104,116,0,95,109,121,95,110,117,109,98,111, 120,95,102,108,111,97,116,0,95,109,121,95,110,117,109,98,111,120,95,115,105,122,101,0,95,109,121,95,110,117,109,98,111,120,95,100,101,108,116,97,0,95,109,121,95,110,117,109,98,111,120,95,112,111,115,0,95,109,121,95,110,117,109,98,111,120,95,114,97,110, 103,101,0,95,109,121,95,110,117,109,98,111,120,95,99,111,108,111,114,0,95,109,121,95,110,117,109,98,111,120,95,115,101,110,100,0,95,109,121,95,110,117,109,98,111,120,95,114,101,99,101,105,118,101,0,95,109,121,95,110,117,109,98,111,120,95,108,97,98,101, 108,0,95,109,121,95,110,117,109,98,111,120,95,108,97,98,101,108,95,112,111,115,0,95,109,121,95,110,117,109,98,111,120,95,108,97,98,101,108,95,102,111,110,116,0,95,109,121,95,110,117,109,98,111,120,95,108,111,103,0,95,109,121,95,110,117,109,98,111,120, 95,108,105,110,0,95,109,121,95,110,117,109,98,111,120,95,105,110,105,116,0,95,109,121,95,110,117,109,98,111,120,95,108,111,97,100,98,97,110,103,0,95,109,121,95,110,117,109,98,111,120,95,107,101,121,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99, 97,116,95,99,104,107,0,95,109,121,95,110,117,109,98,111,120,95,108,105,115,116,0,95,109,121,95,110,117,109,98,111,120,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,109,121,95,110,117,109,98,111,120,95, 102,114,101,101,0,95,103,95,110,117,109,98,111,120,95,115,101,116,117,112,0,95,109,121,95,110,117,109,98,111,120,95,99,108,97,115,115,0,95,109,121,95,110,117,109,98,111,120,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45, 100,97,116,97,47,115,114,99,47,103,95,114,101,97,100,119,114,105,116,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100, 97,116,97,47,115,114,99,47,103,95,114,101,97,100,119,114,105,116,101,46,111,0,95,99,97,110,118,97,115,95,115,99,97,110,98,105,110,98,117,102,0,95,99,97,110,118,97,115,95,114,101,97,100,101,114,114,111,114,0,95,103,108,105,115,116,95,114,101,97,100,97, 116,111,109,115,0,95,103,108,105,115,116,95,114,101,97,100,115,99,97,108,97,114,0,95,103,108,105,115,116,95,114,101,97,100,102,114,111,109,98,105,110,98,117,102,0,95,103,108,105,115,116,95,100,111,114,101,97,100,0,95,103,108,105,115,116,95,114,101,97, 100,0,95,103,108,105,115,116,95,109,101,114,103,101,102,105,108,101,0,95,99,97,110,118,97,115,95,100,97,116,97,112,114,111,112,101,114,116,105,101,115,0,95,99,97,110,118,97,115,95,100,111,97,100,100,116,101,109,112,108,97,116,101,0,95,99,97,110,118,97, 115,95,119,114,105,116,101,115,99,97,108,97,114,0,95,103,108,105,115,116,95,119,114,105,116,101,108,105,115,116,0,95,99,97,110,118,97,115,95,97,100,100,116,101,109,112,108,97,116,101,115,102,111,114,115,99,97,108,97,114,0,95,99,97,110,118,97,115,95,97, 100,100,116,101,109,112,108,97,116,101,115,102,111,114,108,105,115,116,0,95,103,108,105,115,116,95,119,114,105,116,101,116,111,98,105,110,98,117,102,0,95,103,108,105,115,116,95,119,114,105,116,101,0,95,99,97,110,118,97,115,95,115,97,118,101,116,111,0, 95,99,97,110,118,97,115,95,99,111,108,108,101,99,116,116,101,109,112,108,97,116,101,115,102,111,114,0,95,99,97,110,118,97,115,95,115,97,118,101,116,101,109,112,108,97,116,101,115,116,111,0,95,99,97,110,118,97,115,95,115,97,118,101,116,111,102,105,108, 101,0,95,99,97,110,118,97,115,95,109,101,110,117,115,97,118,101,97,115,0,95,99,97,110,118,97,115,95,109,101,110,117,115,97,118,101,0,95,103,95,114,101,97,100,119,114,105,116,101,95,115,101,116,117,112,0,95,100,101,99,108,97,114,101,95,99,108,97,115,115, 0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,114,116,101,120,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45, 100,97,116,97,47,115,114,99,47,103,95,114,116,101,120,116,46,111,0,95,114,116,101,120,116,95,110,101,119,0,95,114,116,101,120,116,95,102,114,101,101,0,95,114,116,101,120,116,95,103,101,116,116,97,103,0,95,114,116,101,120,116,95,103,101,116,116,101,120, 116,0,95,114,116,101,120,116,95,103,101,116,115,101,108,116,101,120,116,0,95,114,116,101,120,116,95,103,101,116,116,121,112,101,0,95,102,105,114,115,116,111,110,101,0,95,108,97,115,116,111,110,101,0,95,114,116,101,120,116,95,115,101,110,100,105,116,117, 112,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,114,116,101,120,116,95,114,101,116,101,120,116,0,95,103,108,105,115,116,95,102,105,110,100,114,116,101,120,116,0,95,114,116,101,120,116,95,119,105,100,116,104,0,95, 114,116,101,120,116,95,104,101,105,103,104,116,0,95,114,116,101,120,116,95,100,114,97,119,0,95,114,116,101,120,116,95,101,114,97,115,101,0,95,114,116,101,120,116,95,100,105,115,112,108,97,99,101,0,95,114,116,101,120,116,95,115,101,108,101,99,116,0,95, 114,116,101,120,116,95,97,99,116,105,118,97,116,101,0,95,114,116,101,120,116,95,107,101,121,0,95,114,116,101,120,116,95,109,111,117,115,101,0,95,114,116,101,120,116,95,101,110,116,101,114,101,100,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103, 95,115,99,97,108,97,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,115,99,97,108,97, 114,46,111,0,95,119,111,114,100,95,105,110,105,116,0,95,119,111,114,100,95,114,101,115,116,111,114,101,0,95,119,111,114,100,95,102,114,101,101,0,95,115,99,97,108,97,114,95,110,101,119,0,95,103,108,105,115,116,95,115,99,97,108,97,114,0,95,115,99,97,108, 97,114,95,103,101,116,98,97,115,101,120,121,0,95,115,99,97,108,97,114,95,103,101,116,114,101,99,116,0,95,115,99,97,108,97,114,95,100,114,97,119,115,101,108,101,99,116,114,101,99,116,0,95,115,99,97,108,97,114,95,115,101,108,101,99,116,0,95,115,99,97,108, 97,114,95,100,105,115,112,108,97,99,101,0,95,115,99,97,108,97,114,95,97,99,116,105,118,97,116,101,0,95,115,99,97,108,97,114,95,100,101,108,101,116,101,0,95,115,99,97,108,97,114,95,118,105,115,0,95,115,99,97,108,97,114,95,100,111,114,101,100,114,97,119, 0,95,115,99,97,108,97,114,95,114,101,100,114,97,119,0,95,115,99,97,108,97,114,95,100,111,99,108,105,99,107,0,95,115,99,97,108,97,114,95,99,108,105,99,107,0,95,115,99,97,108,97,114,95,115,97,118,101,0,95,115,99,97,108,97,114,95,112,114,111,112,101,114, 116,105,101,115,0,95,115,99,97,108,97,114,95,102,114,101,101,0,95,103,95,115,99,97,108,97,114,95,115,101,116,117,112,0,95,115,99,97,108,97,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,115,99,97,108,97,114,95,99,108,97,115,115,0,112, 117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,116,101,109,112,108,97,116,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114, 101,45,100,97,116,97,47,115,114,99,47,103,95,116,101,109,112,108,97,116,101,46,111,0,95,100,97,116,97,115,108,111,116,95,109,97,116,99,104,101,115,0,95,116,101,109,112,108,97,116,101,95,110,101,119,0,95,116,101,109,112,108,97,116,101,95,115,105,122,101, 0,95,116,101,109,112,108,97,116,101,95,102,105,110,100,95,102,105,101,108,100,0,95,116,101,109,112,108,97,116,101,95,103,101,116,102,108,111,97,116,0,95,116,101,109,112,108,97,116,101,95,115,101,116,102,108,111,97,116,0,95,116,101,109,112,108,97,116, 101,95,103,101,116,115,121,109,98,111,108,0,95,116,101,109,112,108,97,116,101,95,115,101,116,115,121,109,98,111,108,0,95,116,101,109,112,108,97,116,101,95,109,97,116,99,104,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,119,111,114, 100,115,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,115,99,97,108,97,114,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,97,114,114,97,121,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,103,108, 105,115,116,0,95,116,101,109,112,108,97,116,101,95,99,111,110,102,111,114,109,0,95,116,101,109,112,108,97,116,101,95,102,105,110,100,98,121,110,97,109,101,0,95,116,101,109,112,108,97,116,101,95,102,105,110,100,99,97,110,118,97,115,0,95,116,101,109,112, 108,97,116,101,95,110,111,116,105,102,121,0,95,116,101,109,112,108,97,116,101,95,110,111,116,105,102,121,102,111,114,115,99,97,108,97,114,0,95,116,101,109,112,108,97,116,101,95,117,115,101,116,101,109,112,108,97,116,101,0,95,116,101,109,112,108,97,116, 101,95,102,114,101,101,0,95,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,103,116,101,109,112,108,97,116,101,95,100,111,110,101,119,0,95,103,116,101,109,112,108,97,116,101,95,110,101,119,0,95,103,116,101,109,112,108,97,116,101,95,110,101, 119,95,111,108,100,0,95,103,116,101,109,112,108,97,116,101,95,103,101,116,0,95,103,116,101,109,112,108,97,116,101,95,102,114,101,101,0,95,103,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116, 102,108,111,97,116,95,99,111,110,115,116,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,115,121,109,98,111,108,95,99,111,110,115,116,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,102,108,111,97,116,95,118,97,114,0,95,102,105,101,108, 100,100,101,115,99,95,115,101,116,102,108,111,97,116,97,114,103,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,115,121,109,98,111,108,97,114,103,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,97,114,114,97,121,97,114,103,0,95,102,105, 101,108,100,100,101,115,99,95,103,101,116,102,108,111,97,116,0,95,102,105,101,108,100,100,101,115,99,95,99,118,116,116,111,99,111,111,114,100,0,95,102,105,101,108,100,100,101,115,99,95,103,101,116,99,111,111,114,100,0,95,102,105,101,108,100,100,101,115, 99,95,103,101,116,115,121,109,98,111,108,0,95,102,105,101,108,100,100,101,115,99,95,99,118,116,102,114,111,109,99,111,111,114,100,0,95,102,105,101,108,100,100,101,115,99,95,115,101,116,99,111,111,114,100,0,95,99,117,114,118,101,95,110,101,119,0,95,99, 117,114,118,101,95,102,108,111,97,116,0,95,99,117,114,118,101,95,103,101,116,114,101,99,116,0,95,99,117,114,118,101,95,100,105,115,112,108,97,99,101,0,95,99,117,114,118,101,95,115,101,108,101,99,116,0,95,99,117,114,118,101,95,97,99,116,105,118,97,116, 101,0,95,114,97,110,103,101,99,111,108,111,114,0,95,110,117,109,98,101,114,116,111,99,111,108,111,114,0,95,99,117,114,118,101,95,118,105,115,0,95,99,117,114,118,101,95,109,111,116,105,111,110,0,95,99,117,114,118,101,95,99,108,105,99,107,0,95,99,117,114, 118,101,95,102,114,101,101,0,95,99,117,114,118,101,95,115,101,116,117,112,0,95,112,108,111,116,95,110,101,119,0,95,112,108,111,116,95,102,108,111,97,116,0,95,112,108,111,116,95,114,101,97,100,111,119,110,101,114,116,101,109,112,108,97,116,101,0,95,97, 114,114,97,121,95,103,101,116,102,105,101,108,100,115,0,95,112,108,111,116,95,103,101,116,114,101,99,116,0,95,112,108,111,116,95,100,105,115,112,108,97,99,101,0,95,112,108,111,116,95,115,101,108,101,99,116,0,95,112,108,111,116,95,97,99,116,105,118,97, 116,101,0,95,112,108,111,116,95,118,105,115,0,95,112,108,111,116,95,99,108,105,99,107,0,95,112,108,111,116,95,115,101,116,117,112,0,95,100,114,97,119,110,117,109,98,101,114,95,110,101,119,0,95,100,114,97,119,110,117,109,98,101,114,95,102,108,111,97,116, 0,95,100,114,97,119,110,117,109,98,101,114,95,115,112,114,105,110,116,102,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,100,114,97,119,110,117,109,98,101,114,95,103,101,116,114,101,99,116,0,95,100,114,97,119,110, 117,109,98,101,114,95,100,105,115,112,108,97,99,101,0,95,100,114,97,119,110,117,109,98,101,114,95,115,101,108,101,99,116,0,95,100,114,97,119,110,117,109,98,101,114,95,97,99,116,105,118,97,116,101,0,95,100,114,97,119,110,117,109,98,101,114,95,118,105, 115,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,0,95,100,114,97,119,110,117,109,98,101,114,95,107,101,121,0,95,100,114,97,119,110,117,109,98,101,114,95,99,108,105,99,107,0,95,100,114,97,119,110,117,109,98,101,114,95,102,114, 101,101,0,95,100,114,97,119,110,117,109,98,101,114,95,115,101,116,117,112,0,95,103,95,116,101,109,112,108,97,116,101,95,115,101,116,117,112,0,95,99,117,114,118,101,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,112,108,111,116,95,119,105, 100,103,101,116,98,101,104,97,118,105,111,114,0,95,100,114,97,119,110,117,109,98,101,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,119,97,114,110,101,100,46,54,51,53,56,0,95,103,116,101,109,112,108,97,116,101,95,99,108,97,115,115, 0,95,116,101,109,112,108,97,116,101,95,99,108,97,115,115,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,102,105,101,108,100,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,120,99,117,109,117,108,97,116,105,118,101,0,95,99,117,114,118,101, 95,109,111,116,105,111,110,95,120,98,97,115,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,120,112,101,114,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,121,99,117,109,117,108,97,116,105,118,101,0,95,99,117,114,118,101,95,109,111,116, 105,111,110,95,121,98,97,115,101,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,121,112,101,114,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,103,108,105,115,116,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,115,99,97,108,97,114, 0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,97,114,114,97,121,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,119,112,0,95,99,117,114,118,101,95,109,111,116,105,111,110,95,116,101,109,112,108,97,116,101,0,95,99,117,114,118,101,95,109, 111,116,105,111,110,95,103,112,111,105,110,116,101,114,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,121,99,117,109,117,108,97,116,105,118,101,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,103,108, 105,115,116,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,115,99,97,108,97,114,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,97,114,114,97,121,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111, 116,105,111,110,95,119,112,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,116,101,109,112,108,97,116,101,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,103,112,111,105,110,116,101,114,0,95,100,114,97, 119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,115,121,109,98,111,108,0,95,100,114,97,119,110,117,109,98,101,114,95,109,111,116,105,111,110,95,102,105,114,115,116,107,101,121,0,95,99,117,114,118,101,95,99,108,97,115,115,0,95,100,114,97,119, 110,117,109,98,101,114,95,99,108,97,115,115,0,95,112,108,111,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,116,101,120,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109, 112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,116,101,120,116,46,111,0,95,103,108,105,115,116,95,116,101,120,116,0,95,99,97,110,118,97,115,95,111,98,106,116,101,120,116,0,95,99, 97,110,118,97,115,95,104,111,119,112,117,116,110,101,119,0,95,99,97,110,118,97,115,95,111,98,106,0,95,99,97,110,118,97,115,95,105,101,109,103,117,105,115,0,95,99,97,110,118,97,115,95,98,110,103,0,95,99,97,110,118,97,115,95,116,111,103,103,108,101,0,95, 99,97,110,118,97,115,95,118,115,108,105,100,101,114,0,95,99,97,110,118,97,115,95,104,115,108,105,100,101,114,0,95,99,97,110,118,97,115,95,104,100,105,97,108,0,95,99,97,110,118,97,115,95,118,100,105,97,108,0,95,99,97,110,118,97,115,95,104,114,97,100,105, 111,0,95,99,97,110,118,97,115,95,118,114,97,100,105,111,0,95,99,97,110,118,97,115,95,118,117,109,101,116,101,114,0,95,99,97,110,118,97,115,95,109,121,99,110,118,0,95,99,97,110,118,97,115,95,110,117,109,98,111,120,0,95,99,97,110,118,97,115,95,111,98,106, 102,111,114,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,98,97,110,103,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,102,108,111,97,116,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,115,121,109,98,111,108,0, 95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,108,105,115,116,0,95,109,101,115,115,114,101,115,112,111,110,100,101,114,95,97,110,121,116,104,105,110,103,0,95,109,101,115,115,97,103,101,95,98,97,110,103,0,95,109,101,115,115,97,103,101,95,102, 108,111,97,116,0,95,109,101,115,115,97,103,101,95,115,121,109,98,111,108,0,95,109,101,115,115,97,103,101,95,108,105,115,116,0,95,109,101,115,115,97,103,101,95,115,101,116,0,95,109,101,115,115,97,103,101,95,97,100,100,50,0,95,109,101,115,115,97,103,101, 95,97,100,100,0,95,109,101,115,115,97,103,101,95,97,100,100,99,111,109,109,97,0,95,109,101,115,115,97,103,101,95,97,100,100,115,101,109,105,0,95,109,101,115,115,97,103,101,95,97,100,100,100,111,108,108,97,114,0,95,109,101,115,115,97,103,101,95,97,100, 100,100,111,108,108,115,121,109,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,109,101,115,115,97,103,101,95,99,108,105,99,107,0,95,109,101,115,115,97,103,101,95,116,105,99,107,0,95,109,101,115,115,97,103,101,95,102, 114,101,101,0,95,99,97,110,118,97,115,95,109,115,103,0,95,103,97,116,111,109,95,101,115,99,97,112,105,116,0,95,103,97,116,111,109,95,117,110,101,115,99,97,112,105,116,0,95,103,97,116,111,109,95,114,101,100,114,97,119,0,95,103,97,116,111,109,95,114,101, 116,101,120,116,0,95,103,97,116,111,109,95,115,101,116,0,95,103,97,116,111,109,95,98,97,110,103,0,95,103,97,116,111,109,95,102,108,111,97,116,0,95,103,97,116,111,109,95,99,108,105,112,102,108,111,97,116,0,95,103,97,116,111,109,95,115,121,109,98,111,108, 0,95,103,97,116,111,109,95,108,105,115,116,0,95,103,97,116,111,109,95,109,111,116,105,111,110,0,95,103,97,116,111,109,95,107,101,121,0,95,103,97,116,111,109,95,99,108,105,99,107,0,95,103,97,116,111,109,95,112,97,114,97,109,0,95,103,97,116,111,109,95, 103,101,116,119,104,101,114,101,108,97,98,101,108,0,95,103,97,116,111,109,95,100,105,115,112,108,97,99,101,0,95,103,97,116,111,109,95,118,105,115,0,95,99,97,110,118,97,115,95,97,116,111,109,0,95,99,97,110,118,97,115,95,102,108,111,97,116,97,116,111,109, 0,95,99,97,110,118,97,115,95,115,121,109,98,111,108,97,116,111,109,0,95,103,97,116,111,109,95,102,114,101,101,0,95,103,97,116,111,109,95,112,114,111,112,101,114,116,105,101,115,0,95,116,101,120,116,95,103,101,116,114,101,99,116,0,95,116,101,120,116,95, 100,105,115,112,108,97,99,101,0,95,116,101,120,116,95,115,101,108,101,99,116,0,95,116,101,120,116,95,97,99,116,105,118,97,116,101,0,95,116,101,120,116,95,100,101,108,101,116,101,0,95,116,101,120,116,95,118,105,115,0,95,116,101,120,116,95,99,108,105,99, 107,0,95,116,101,120,116,95,115,97,118,101,0,95,103,108,105,115,116,95,100,114,97,119,105,111,102,111,114,0,95,116,101,120,116,95,100,114,97,119,98,111,114,100,101,114,0,95,103,108,105,115,116,95,101,114,97,115,101,105,111,102,111,114,0,95,116,101,120, 116,95,101,114,97,115,101,98,111,114,100,101,114,0,95,116,101,120,116,95,115,101,116,116,111,0,95,116,101,120,116,95,97,110,121,116,104,105,110,103,0,95,103,95,116,101,120,116,95,115,101,116,117,112,0,95,116,101,120,116,95,119,105,100,103,101,116,98, 101,104,97,118,105,111,114,0,95,103,97,116,111,109,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,95,109,101,115,115,97,103,101,95,99,108,97,115,115,0,95,103,97,116,111,109,95,99,108,97,115,115,0,95,109,101,115,115,114,101,115,112,111,110, 100,101,114,95,99,108,97,115,115,0,95,116,101,120,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,116,111,103,103,108,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112, 114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,116,111,103,103,108,101,46,111,0,95,116,111,103,103,108,101,95,100,114,97,119,95,117,112,100,97,116,101,0,95,116,111,103,103,108,101,95, 100,114,97,119,95,110,101,119,0,95,116,111,103,103,108,101,95,100,114,97,119,95,109,111,118,101,0,95,116,111,103,103,108,101,95,100,114,97,119,95,101,114,97,115,101,0,95,116,111,103,103,108,101,95,100,114,97,119,95,99,111,110,102,105,103,0,95,116,111, 103,103,108,101,95,100,114,97,119,95,105,111,0,95,116,111,103,103,108,101,95,100,114,97,119,95,115,101,108,101,99,116,0,95,116,111,103,103,108,101,95,100,114,97,119,0,95,116,111,103,103,108,101,95,103,101,116,114,101,99,116,0,95,116,111,103,103,108,101, 95,115,97,118,101,0,95,116,111,103,103,108,101,95,112,114,111,112,101,114,116,105,101,115,0,95,116,111,103,103,108,101,95,98,97,110,103,0,95,116,111,103,103,108,101,95,100,105,97,108,111,103,0,95,116,111,103,103,108,101,95,99,108,105,99,107,0,95,116, 111,103,103,108,101,95,110,101,119,99,108,105,99,107,0,95,116,111,103,103,108,101,95,115,101,116,0,95,116,111,103,103,108,101,95,102,108,111,97,116,0,95,116,111,103,103,108,101,95,102,111,117,116,0,95,116,111,103,103,108,101,95,108,111,97,100,98,97,110, 103,0,95,116,111,103,103,108,101,95,115,105,122,101,0,95,116,111,103,103,108,101,95,100,101,108,116,97,0,95,116,111,103,103,108,101,95,112,111,115,0,95,116,111,103,103,108,101,95,99,111,108,111,114,0,95,116,111,103,103,108,101,95,115,101,110,100,0,95, 116,111,103,103,108,101,95,114,101,99,101,105,118,101,0,95,116,111,103,103,108,101,95,108,97,98,101,108,0,95,116,111,103,103,108,101,95,108,97,98,101,108,95,102,111,110,116,0,95,116,111,103,103,108,101,95,108,97,98,101,108,95,112,111,115,0,95,116,111, 103,103,108,101,95,105,110,105,116,0,95,116,111,103,103,108,101,95,110,111,110,122,101,114,111,0,95,116,111,103,103,108,101,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,116,111,103,103,108,101,95,102, 102,0,95,103,95,116,111,103,103,108,101,95,115,101,116,117,112,0,95,116,111,103,103,108,101,95,99,108,97,115,115,0,95,116,111,103,103,108,101,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47, 103,95,116,114,97,118,101,114,115,97,108,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95, 116,114,97,118,101,114,115,97,108,46,111,0,95,103,115,116,117,98,95,110,101,119,0,95,103,115,116,117,98,95,100,105,115,0,95,103,115,116,117,98,95,99,117,116,111,102,102,0,95,103,112,111,105,110,116,101,114,95,99,104,101,99,107,0,95,103,112,111,105,110, 116,101,114,95,103,101,116,116,101,109,112,108,97,116,101,115,121,109,0,95,103,112,111,105,110,116,101,114,95,99,111,112,121,0,95,103,112,111,105,110,116,101,114,95,117,110,115,101,116,0,95,103,112,111,105,110,116,101,114,95,115,101,116,103,108,105,115, 116,0,95,103,112,111,105,110,116,101,114,95,115,101,116,97,114,114,97,121,0,95,103,112,111,105,110,116,101,114,95,105,110,105,116,0,95,112,116,114,111,98,106,95,110,101,119,0,95,112,116,114,111,98,106,95,116,114,97,118,101,114,115,101,0,95,112,116,114, 111,98,106,95,118,110,101,120,116,0,95,112,116,114,111,98,106,95,110,101,120,116,0,95,112,116,114,111,98,106,95,115,101,110,100,119,105,110,100,111,119,0,95,112,116,114,111,98,106,95,98,97,110,103,0,95,112,116,114,111,98,106,95,112,111,105,110,116,101, 114,0,95,112,116,114,111,98,106,95,114,101,119,105,110,100,0,95,112,116,114,111,98,106,95,102,114,101,101,0,95,112,116,114,111,98,106,95,115,101,116,117,112,0,95,103,101,116,95,110,101,119,0,95,103,101,116,95,112,111,105,110,116,101,114,0,95,103,101, 116,95,102,114,101,101,0,95,103,101,116,95,115,101,116,117,112,0,95,115,101,116,95,110,101,119,0,95,115,101,116,95,98,97,110,103,0,95,115,101,116,95,102,108,111,97,116,0,95,115,101,116,95,115,121,109,98,111,108,0,95,115,101,116,95,102,114,101,101,0,95, 115,101,116,95,115,101,116,117,112,0,95,101,108,101,109,95,110,101,119,0,95,101,108,101,109,95,102,108,111,97,116,0,95,101,108,101,109,95,102,114,101,101,0,95,101,108,101,109,95,115,101,116,117,112,0,95,103,101,116,115,105,122,101,95,110,101,119,0,95, 103,101,116,115,105,122,101,95,112,111,105,110,116,101,114,0,95,103,101,116,115,105,122,101,95,115,101,116,117,112,0,95,115,101,116,115,105,122,101,95,110,101,119,0,95,115,101,116,115,105,122,101,95,102,108,111,97,116,0,95,115,101,116,115,105,122,101, 95,102,114,101,101,0,95,115,101,116,115,105,122,101,95,115,101,116,117,112,0,95,97,112,112,101,110,100,95,110,101,119,0,95,97,112,112,101,110,100,95,102,108,111,97,116,0,95,97,112,112,101,110,100,95,102,114,101,101,0,95,97,112,112,101,110,100,95,115, 101,116,117,112,0,95,115,117,98,108,105,115,116,95,110,101,119,0,95,115,117,98,108,105,115,116,95,112,111,105,110,116,101,114,0,95,115,117,98,108,105,115,116,95,102,114,101,101,0,95,115,117,98,108,105,115,116,95,115,101,116,117,112,0,95,103,95,116,114, 97,118,101,114,115,97,108,95,115,101,116,117,112,0,95,112,116,114,111,98,106,95,99,108,97,115,115,0,95,103,101,116,95,99,108,97,115,115,0,95,115,101,116,95,99,108,97,115,115,0,95,101,108,101,109,95,99,108,97,115,115,0,95,103,101,116,115,105,122,101,95, 99,108,97,115,115,0,95,115,101,116,115,105,122,101,95,99,108,97,115,115,0,95,97,112,112,101,110,100,95,99,108,97,115,115,0,95,115,117,98,108,105,115,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,100,105,97,108, 46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,100,105,97,108,46,111,0,95,118,114, 97,100,105,111,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,114,97,100,105,111,95,100,114,97,119,95,110,101,119,0,95,118,114,97,100,105,111,95,100,114,97,119,95,109,111,118,101,0,95,118,114,97,100,105,111,95,100,114,97,119,95,101,114,97,115,101, 0,95,118,114,97,100,105,111,95,100,114,97,119,95,99,111,110,102,105,103,0,95,118,114,97,100,105,111,95,100,114,97,119,95,105,111,0,95,118,114,97,100,105,111,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,114,97,100,105,111,95,100,114,97,119,0,95, 118,114,97,100,105,111,95,103,101,116,114,101,99,116,0,95,118,114,97,100,105,111,95,115,97,118,101,0,95,118,114,97,100,105,111,95,112,114,111,112,101,114,116,105,101,115,0,95,118,114,97,100,105,111,95,100,105,97,108,111,103,0,95,118,114,97,100,105,111, 95,115,101,116,0,95,118,114,97,100,105,111,95,98,97,110,103,0,95,118,114,97,100,105,111,95,102,111,117,116,0,95,118,114,97,100,105,111,95,102,108,111,97,116,0,95,118,114,97,100,105,111,95,99,108,105,99,107,0,95,118,114,97,100,105,111,95,110,101,119,99, 108,105,99,107,0,95,118,114,97,100,105,111,95,108,111,97,100,98,97,110,103,0,95,118,114,97,100,105,111,95,110,117,109,98,101,114,0,95,118,114,97,100,105,111,95,115,105,122,101,0,95,118,114,97,100,105,111,95,100,101,108,116,97,0,95,118,114,97,100,105, 111,95,112,111,115,0,95,118,114,97,100,105,111,95,99,111,108,111,114,0,95,118,114,97,100,105,111,95,115,101,110,100,0,95,118,114,97,100,105,111,95,114,101,99,101,105,118,101,0,95,118,114,97,100,105,111,95,108,97,98,101,108,0,95,118,114,97,100,105,111, 95,108,97,98,101,108,95,112,111,115,0,95,118,114,97,100,105,111,95,108,97,98,101,108,95,102,111,110,116,0,95,118,114,97,100,105,111,95,105,110,105,116,0,95,118,114,97,100,105,111,95,100,111,117,98,108,101,95,99,104,97,110,103,101,0,95,118,114,97,100, 105,111,95,115,105,110,103,108,101,95,99,104,97,110,103,101,0,95,118,114,97,100,105,111,95,100,111,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,118,114,97,100,105,111,95,110,101,119,0,95,118,100,105,97,108, 95,110,101,119,0,95,118,114,97,100,105,111,95,102,102,0,95,103,95,118,114,97,100,105,111,95,115,101,116,117,112,0,95,118,114,97,100,105,111,95,99,108,97,115,115,0,95,118,114,97,100,105,111,95,111,108,100,95,99,108,97,115,115,0,95,118,114,97,100,105,111, 95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,115,108,105,100,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103, 47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,115,108,105,100,101,114,46,111,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,115,108,105,100,101,114,95, 100,114,97,119,95,110,101,119,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,109,111,118,101,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,101,114,97,115,101,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,99,111,110,102,105,103, 0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,105,111,0,95,118,115,108,105,100,101,114,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,115,108,105,100,101,114,95,100,114,97,119,0,95,118,115,108,105,100,101,114,95,103,101,116,114,101,99,116, 0,95,118,115,108,105,100,101,114,95,115,97,118,101,0,95,118,115,108,105,100,101,114,95,99,104,101,99,107,95,104,101,105,103,104,116,0,95,118,115,108,105,100,101,114,95,99,104,101,99,107,95,109,105,110,109,97,120,0,95,118,115,108,105,100,101,114,95,112, 114,111,112,101,114,116,105,101,115,0,95,118,115,108,105,100,101,114,95,98,97,110,103,0,95,118,115,108,105,100,101,114,95,100,105,97,108,111,103,0,95,118,115,108,105,100,101,114,95,109,111,116,105,111,110,0,95,118,115,108,105,100,101,114,95,99,108,105, 99,107,0,95,118,115,108,105,100,101,114,95,110,101,119,99,108,105,99,107,0,95,118,115,108,105,100,101,114,95,115,101,116,0,95,118,115,108,105,100,101,114,95,102,108,111,97,116,0,95,118,115,108,105,100,101,114,95,115,105,122,101,0,95,118,115,108,105,100, 101,114,95,100,101,108,116,97,0,95,118,115,108,105,100,101,114,95,112,111,115,0,95,118,115,108,105,100,101,114,95,114,97,110,103,101,0,95,118,115,108,105,100,101,114,95,99,111,108,111,114,0,95,118,115,108,105,100,101,114,95,115,101,110,100,0,95,118,115, 108,105,100,101,114,95,114,101,99,101,105,118,101,0,95,118,115,108,105,100,101,114,95,108,97,98,101,108,0,95,118,115,108,105,100,101,114,95,108,97,98,101,108,95,112,111,115,0,95,118,115,108,105,100,101,114,95,108,97,98,101,108,95,102,111,110,116,0,95, 118,115,108,105,100,101,114,95,108,111,103,0,95,118,115,108,105,100,101,114,95,108,105,110,0,95,118,115,108,105,100,101,114,95,105,110,105,116,0,95,118,115,108,105,100,101,114,95,115,116,101,97,100,121,0,95,118,115,108,105,100,101,114,95,108,111,97,100, 98,97,110,103,0,95,118,115,108,105,100,101,114,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,118,115,108,105,100,101,114,95,102,114,101,101,0,95,103,95,118,115,108,105,100,101,114,95,115,101,116,117,112, 0,95,118,115,108,105,100,101,114,95,99,108,97,115,115,0,95,118,115,108,105,100,101,114,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,117,109,101,116,101,114,46,99,0,47,85,115,101, 114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,103,95,118,117,109,101,116,101,114,46,111,0,95,118,117,95,117,112,100, 97,116,101,95,114,109,115,0,95,118,117,95,117,112,100,97,116,101,95,112,101,97,107,0,95,118,117,95,100,114,97,119,95,117,112,100,97,116,101,0,95,118,117,95,100,114,97,119,95,110,101,119,0,95,118,117,95,100,114,97,119,95,109,111,118,101,0,95,118,117,95, 100,114,97,119,95,101,114,97,115,101,0,95,118,117,95,100,114,97,119,95,99,111,110,102,105,103,0,95,118,117,95,100,114,97,119,95,105,111,0,95,118,117,95,100,114,97,119,95,115,101,108,101,99,116,0,95,118,117,95,100,114,97,119,0,95,118,117,95,103,101,116, 114,101,99,116,0,95,118,117,95,115,97,118,101,0,95,118,117,95,99,104,101,99,107,95,104,101,105,103,104,116,0,95,118,117,95,115,99,97,108,101,0,95,118,117,95,112,114,111,112,101,114,116,105,101,115,0,95,118,117,95,100,105,97,108,111,103,0,95,118,117,95, 115,105,122,101,0,95,118,117,95,100,101,108,116,97,0,95,118,117,95,112,111,115,0,95,118,117,95,99,111,108,111,114,0,95,118,117,95,114,101,99,101,105,118,101,0,95,118,117,95,108,97,98,101,108,0,95,118,117,95,108,97,98,101,108,95,112,111,115,0,95,118,117, 95,108,97,98,101,108,95,102,111,110,116,0,95,118,117,95,102,108,111,97,116,0,95,118,117,95,102,116,49,0,95,118,117,95,98,97,110,103,0,95,118,117,95,110,101,119,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,118,117,95, 102,114,101,101,0,95,103,95,118,117,109,101,116,101,114,95,115,101,116,117,112,0,95,118,117,95,99,108,97,115,115,0,95,118,117,95,119,105,100,103,101,116,98,101,104,97,118,105,111,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,97,116,111, 109,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,97,116,111,109,46,111,0,95,97,116,111, 109,95,103,101,116,102,108,111,97,116,0,95,97,116,111,109,95,103,101,116,105,110,116,0,95,97,116,111,109,95,103,101,116,115,121,109,98,111,108,0,95,97,116,111,109,95,103,101,110,115,121,109,0,95,97,116,111,109,95,103,101,116,102,108,111,97,116,97,114, 103,0,95,97,116,111,109,95,103,101,116,105,110,116,97,114,103,0,95,97,116,111,109,95,103,101,116,115,121,109,98,111,108,97,114,103,0,95,97,116,111,109,95,115,116,114,105,110,103,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107, 0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,98,105,110,98,117,102,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109, 112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,98,105,110,98,117,102,46,111,0,95,98,105,110,98,117,102,95,110,101,119,0,95,98,105,110,98,117,102,95,102,114,101,101,0,95,98,105,110, 98,117,102,95,100,117,112,108,105,99,97,116,101,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,98,105,110,98,117,102,95,99,108,101,97,114,0,95,98,105,110,98,117,102,95,116,101,120,116,0,95,98,105,110,98,117,102,95,103, 101,116,116,101,120,116,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,98,105,110,98,117,102,95,97,100,100,0,95,98,105,110,98,117,102,95,97,100,100,118,0,95,98,105,110,98,117,102,95,97,100,100,98,105,110,98,117,102,0, 95,98,105,110,98,117,102,95,97,100,100,115,101,109,105,0,95,98,105,110,98,117,102,95,114,101,115,116,111,114,101,0,95,98,105,110,98,117,102,95,112,114,105,110,116,0,95,98,105,110,98,117,102,95,103,101,116,110,97,116,111,109,0,95,98,105,110,98,117,102, 95,103,101,116,118,101,99,0,95,98,105,110,98,117,102,95,101,120,112,97,110,100,100,111,108,108,115,121,109,0,95,98,105,110,98,117,102,95,114,101,97,108,105,122,101,100,111,108,108,115,121,109,0,95,98,105,110,98,117,102,95,101,118,97,108,0,95,98,105,110, 98,117,102,95,100,111,111,112,101,110,0,95,98,105,110,98,117,102,95,100,111,102,111,112,101,110,0,95,98,105,110,98,117,102,95,114,101,97,100,0,95,98,105,110,98,117,102,95,114,101,97,100,95,118,105,97,95,99,97,110,118,97,115,0,95,98,105,110,98,117,102, 95,114,101,97,100,95,118,105,97,95,112,97,116,104,0,95,98,105,110,98,117,102,95,119,114,105,116,101,0,95,98,105,110,98,117,102,95,99,111,110,118,101,114,116,0,95,98,105,110,98,117,102,95,109,97,116,99,104,0,95,98,105,110,98,117,102,95,101,118,97,108, 102,105,108,101,0,95,103,108,111,98,95,101,118,97,108,102,105,108,101,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,99,108,97,115,115,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111, 103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,99,108,97,115,115,46,111,0,95,112,100,95,100,101,102,97,117,108,116,97,110,121,116,104,105,110,103,0,95,112,100,95,100,101,102,97,117,108,116, 98,97,110,103,0,95,112,100,95,100,101,102,97,117,108,116,112,111,105,110,116,101,114,0,95,112,100,95,100,101,102,97,117,108,116,102,108,111,97,116,0,95,112,100,95,100,101,102,97,117,108,116,115,121,109,98,111,108,0,95,112,100,95,100,101,102,97,117,108, 116,108,105,115,116,0,95,99,108,97,115,115,95,110,101,119,0,95,99,108,97,115,115,95,97,100,100,99,114,101,97,116,111,114,0,95,99,108,97,115,115,95,97,100,100,109,101,116,104,111,100,0,95,99,108,97,115,115,95,97,100,100,98,97,110,103,0,95,99,108,97,115, 115,95,97,100,100,112,111,105,110,116,101,114,0,95,99,108,97,115,115,95,100,111,97,100,100,102,108,111,97,116,0,95,99,108,97,115,115,95,97,100,100,115,121,109,98,111,108,0,95,99,108,97,115,115,95,97,100,100,108,105,115,116,0,95,99,108,97,115,115,95,97, 100,100,97,110,121,116,104,105,110,103,0,95,99,108,97,115,115,95,115,101,116,119,105,100,103,101,116,0,95,99,108,97,115,115,95,115,101,116,112,97,114,101,110,116,119,105,100,103,101,116,0,95,99,108,97,115,115,95,103,101,116,110,97,109,101,0,95,99,108, 97,115,115,95,103,101,116,104,101,108,112,110,97,109,101,0,95,99,108,97,115,115,95,115,101,116,104,101,108,112,115,121,109,98,111,108,0,95,112,100,95,103,101,116,112,97,114,101,110,116,119,105,100,103,101,116,0,95,99,108,97,115,115,95,115,101,116,100, 114,97,119,99,111,109,109,97,110,100,0,95,99,108,97,115,115,95,105,115,100,114,97,119,99,111,109,109,97,110,100,0,95,112,100,95,102,108,111,97,116,102,111,114,115,105,103,110,97,108,0,95,99,108,97,115,115,95,100,111,109,97,105,110,115,105,103,110,97, 108,105,110,0,95,99,108,97,115,115,95,115,101,116,95,101,120,116,101,114,110,95,100,105,114,0,95,99,108,97,115,115,95,103,101,116,104,101,108,112,100,105,114,0,95,99,108,97,115,115,95,110,111,115,97,118,101,102,110,0,95,99,108,97,115,115,95,115,101,116, 115,97,118,101,102,110,0,95,99,108,97,115,115,95,103,101,116,115,97,118,101,102,110,0,95,99,108,97,115,115,95,115,101,116,112,114,111,112,101,114,116,105,101,115,102,110,0,95,99,108,97,115,115,95,103,101,116,112,114,111,112,101,114,116,105,101,115,102, 110,0,95,100,111,103,101,110,115,121,109,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,103,101,110,115,121,109,0,95,97,100,100,102,105,108,101,101,120,116,101,110,116,0,95,110,101,119,95,97,110,121,116,104,105,110,103, 0,95,109,101,115,115,95,105,110,105,116,0,95,112,100,95,110,101,119,101,115,116,0,95,112,100,95,116,121,112,101,100,109,101,115,115,0,95,112,100,95,118,109,101,115,115,0,95,112,100,95,102,111,114,119,97,114,100,109,101,115,115,0,95,110,117,108,108,102, 110,0,95,103,101,116,102,110,0,95,122,103,101,116,102,110,0,95,99,108,97,115,115,95,101,120,116,101,114,110,95,100,105,114,0,95,115,95,112,111,105,110,116,101,114,0,95,115,95,102,108,111,97,116,0,95,115,95,115,121,109,98,111,108,0,95,115,95,98,97,110, 103,0,95,115,95,108,105,115,116,0,95,115,95,97,110,121,116,104,105,110,103,0,95,115,95,115,105,103,110,97,108,0,95,115,95,95,78,0,95,115,95,95,88,0,95,115,95,120,0,95,115,95,121,0,95,115,95,0,95,115,121,109,108,105,115,116,0,95,99,108,97,115,115,95,108, 111,97,100,115,121,109,0,95,115,121,109,104,97,115,104,0,95,116,114,121,105,110,103,97,108,114,101,97,100,121,0,95,110,101,119,101,115,116,0,95,112,100,95,99,97,110,118,97,115,109,97,107,101,114,0,95,112,100,95,111,98,106,101,99,116,109,97,107,101,114, 0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,99,111,110,102,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100, 97,116,97,47,115,114,99,47,109,95,99,111,110,102,46,111,0,95,99,111,110,102,95,105,110,105,116,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,103,108,111,98,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106, 47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,103,108,111,98,46,111,0,95,103,108,111,98,95,118,101,114,115,105,111,110,0,95,103,108,111,98,95,112,101,114,102,0,95,109,97, 120,95,100,101,102,97,117,108,116,0,95,103,108,111,98,95,105,110,105,116,0,95,115,121,115,95,103,101,116,118,101,114,115,105,111,110,0,95,109,97,120,99,108,97,115,115,0,95,103,108,111,98,95,112,100,111,98,106,101,99,116,0,95,115,121,115,95,112,101,114, 102,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,109,101,109,111,114,121,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114, 101,45,100,97,116,97,47,115,114,99,47,109,95,109,101,109,111,114,121,46,111,0,95,103,101,116,98,121,116,101,115,0,95,103,101,116,122,98,121,116,101,115,0,95,99,111,112,121,98,121,116,101,115,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121, 95,99,104,107,0,95,114,101,115,105,122,101,98,121,116,101,115,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,102,114,101,101,98,121,116,101,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,111,98,106,46, 99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,111,98,106,46,111,0,95,105,110,108,101,116, 95,110,101,119,0,95,115,105,103,110,97,108,105,110,108,101,116,95,110,101,119,0,95,105,110,108,101,116,95,119,114,111,110,103,0,95,105,110,108,101,116,95,98,97,110,103,0,95,105,110,108,101,116,95,112,111,105,110,116,101,114,0,95,105,110,108,101,116,95, 102,108,111,97,116,0,95,105,110,108,101,116,95,115,121,109,98,111,108,0,95,105,110,108,101,116,95,108,105,115,116,0,95,105,110,108,101,116,95,97,110,121,116,104,105,110,103,0,95,105,110,108,101,116,95,102,114,101,101,0,95,112,111,105,110,116,101,114, 105,110,108,101,116,95,112,111,105,110,116,101,114,0,95,112,111,105,110,116,101,114,105,110,108,101,116,95,110,101,119,0,95,102,108,111,97,116,105,110,108,101,116,95,102,108,111,97,116,0,95,102,108,111,97,116,105,110,108,101,116,95,110,101,119,0,95,115, 121,109,98,111,108,105,110,108,101,116,95,115,121,109,98,111,108,0,95,115,121,109,98,111,108,105,110,108,101,116,95,110,101,119,0,95,111,98,106,95,108,105,115,116,0,95,111,98,106,95,105,110,105,116,0,95,111,117,116,108,101,116,95,115,101,116,115,116, 97,99,107,108,105,109,0,95,115,99,104,101,100,95,103,101,116,101,118,101,110,116,110,111,0,95,111,117,116,108,101,116,95,110,101,119,0,95,111,117,116,108,101,116,95,115,116,97,99,107,101,114,114,111,114,0,95,111,117,116,108,101,116,95,98,97,110,103,0, 95,111,117,116,108,101,116,95,112,111,105,110,116,101,114,0,95,111,117,116,108,101,116,95,102,108,111,97,116,0,95,111,117,116,108,101,116,95,115,121,109,98,111,108,0,95,111,117,116,108,101,116,95,108,105,115,116,0,95,111,117,116,108,101,116,95,97,110, 121,116,104,105,110,103,0,95,111,117,116,108,101,116,95,103,101,116,115,121,109,98,111,108,0,95,111,117,116,108,101,116,95,102,114,101,101,0,95,111,98,106,95,99,111,110,110,101,99,116,0,95,111,98,106,95,100,105,115,99,111,110,110,101,99,116,0,95,111, 98,106,95,110,111,117,116,108,101,116,115,0,95,111,98,106,95,110,105,110,108,101,116,115,0,95,111,98,106,95,115,116,97,114,116,116,114,97,118,101,114,115,101,111,117,116,108,101,116,0,95,111,98,106,95,110,101,120,116,116,114,97,118,101,114,115,101,111, 117,116,108,101,116,0,95,112,100,95,99,104,101,99,107,111,98,106,101,99,116,0,95,111,98,106,95,109,111,118,101,105,110,108,101,116,102,105,114,115,116,0,95,111,98,106,95,109,111,118,101,111,117,116,108,101,116,102,105,114,115,116,0,95,111,98,106,95,110, 115,105,103,105,110,108,101,116,115,0,95,111,98,106,95,115,105,103,105,110,108,101,116,105,110,100,101,120,0,95,111,98,106,95,105,115,115,105,103,110,97,108,105,110,108,101,116,0,95,111,98,106,95,110,115,105,103,111,117,116,108,101,116,115,0,95,111,98, 106,95,115,105,103,111,117,116,108,101,116,105,110,100,101,120,0,95,111,98,106,95,105,115,115,105,103,110,97,108,111,117,116,108,101,116,0,95,111,98,106,95,102,105,110,100,115,105,103,110,97,108,115,99,97,108,97,114,0,95,105,110,108,101,116,95,103,101, 116,115,105,103,110,97,108,105,110,100,101,120,0,95,111,117,116,108,101,116,95,103,101,116,115,105,103,110,97,108,105,110,100,101,120,0,95,115,116,97,99,107,99,111,117,110,116,0,95,105,110,108,101,116,95,99,108,97,115,115,0,95,112,111,105,110,116,101, 114,105,110,108,101,116,95,99,108,97,115,115,0,95,102,108,111,97,116,105,110,108,101,116,95,99,108,97,115,115,0,95,115,121,109,98,111,108,105,110,108,101,116,95,99,108,97,115,115,0,95,111,117,116,108,101,116,95,101,118,101,110,116,110,111,0,112,117,114, 101,45,100,97,116,97,47,115,114,99,47,109,95,112,100,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114, 99,47,109,95,112,100,46,111,0,95,112,100,95,110,101,119,0,95,112,100,95,102,114,101,101,0,95,103,111,98,106,95,115,97,118,101,0,95,98,105,110,100,108,105,115,116,95,98,97,110,103,0,95,98,105,110,100,108,105,115,116,95,102,108,111,97,116,0,95,98,105,110, 100,108,105,115,116,95,115,121,109,98,111,108,0,95,98,105,110,100,108,105,115,116,95,112,111,105,110,116,101,114,0,95,98,105,110,100,108,105,115,116,95,108,105,115,116,0,95,98,105,110,100,108,105,115,116,95,97,110,121,116,104,105,110,103,0,95,109,95, 112,100,95,115,101,116,117,112,0,95,112,100,95,98,105,110,100,0,95,112,100,95,117,110,98,105,110,100,0,95,122,122,0,95,112,100,95,102,105,110,100,98,121,99,108,97,115,115,0,95,112,100,95,115,101,116,108,111,97,100,105,110,103,97,98,115,116,114,97,99, 116,105,111,110,0,95,112,100,95,112,117,115,104,115,121,109,0,95,112,100,95,112,111,112,115,121,109,0,95,112,100,95,100,111,108,111,97,100,98,97,110,103,0,95,112,100,95,98,97,110,103,0,95,112,100,95,102,108,111,97,116,0,95,112,100,95,112,111,105,110, 116,101,114,0,95,112,100,95,115,121,109,98,111,108,0,95,112,100,95,108,105,115,116,0,95,112,100,95,105,110,105,116,0,95,103,115,116,97,99,107,95,104,101,97,100,0,95,98,105,110,100,108,105,115,116,95,99,108,97,115,115,0,95,108,97,115,116,112,111,112,112, 101,100,0,95,112,100,95,108,111,97,100,105,110,103,97,98,115,116,114,97,99,116,105,111,110,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,115,99,104,101,100,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106, 47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,109,95,115,99,104,101,100,46,111,0,95,115,99,104,101,100,95,114,101,111,112,101,110,109,101,112,108,101,97,115,101,0,95,99,108,111, 99,107,95,110,101,119,0,95,99,108,111,99,107,95,117,110,115,101,116,0,95,99,108,111,99,107,95,115,101,116,0,95,99,108,111,99,107,95,100,101,108,97,121,0,95,99,108,111,99,107,95,103,101,116,108,111,103,105,99,97,108,116,105,109,101,0,95,99,108,111,99, 107,95,103,101,116,115,121,115,116,105,109,101,0,95,99,108,111,99,107,95,103,101,116,116,105,109,101,115,105,110,99,101,0,95,99,108,111,99,107,95,103,101,116,115,121,115,116,105,109,101,97,102,116,101,114,0,95,99,108,111,99,107,95,102,114,101,101,0,95, 115,121,115,95,99,108,101,97,114,104,105,115,116,0,95,115,121,115,95,112,114,105,110,116,104,105,115,116,0,95,115,121,115,95,97,100,100,104,105,115,116,0,95,103,108,111,98,95,97,117,100,105,111,115,116,97,116,117,115,0,95,115,121,115,95,108,111,103,95, 101,114,114,111,114,0,95,115,99,104,101,100,95,112,111,108,108,102,111,114,109,101,116,101,114,115,0,95,103,108,111,98,95,109,101,116,101,114,115,0,95,115,99,104,101,100,95,115,101,116,95,117,115,105,110,103,95,97,117,100,105,111,0,95,115,99,104,101, 100,95,116,105,99,107,0,95,109,95,112,111,108,108,105,110,103,115,99,104,101,100,117,108,101,114,0,95,115,99,104,101,100,95,97,117,100,105,111,95,99,97,108,108,98,97,99,107,102,110,0,95,109,95,99,97,108,108,98,97,99,107,115,99,104,101,100,117,108,101, 114,0,95,109,95,109,97,105,110,108,111,111,112,0,95,109,95,98,97,116,99,104,109,97,105,110,0,95,115,121,115,95,108,111,99,107,0,95,115,121,115,95,117,110,108,111,99,107,0,95,115,121,115,95,116,114,121,108,111,99,107,0,95,115,121,115,95,101,120,105,116, 0,95,111,115,115,95,101,114,114,111,114,110,97,109,101,115,0,95,115,121,115,95,116,105,109,101,95,112,101,114,95,109,115,101,99,0,95,115,121,115,95,115,99,104,101,100,98,108,111,99,107,115,105,122,101,0,95,115,121,115,95,98,105,110,0,95,115,99,104,101, 100,95,117,115,101,97,117,100,105,111,0,95,115,121,115,95,109,117,116,101,120,0,95,111,115,115,95,114,101,115,121,110,99,112,104,97,115,101,0,95,111,115,115,95,110,114,101,115,121,110,99,0,95,115,99,104,101,100,95,110,101,120,116,112,105,110,103,116, 105,109,101,46,52,52,56,48,0,95,115,99,104,101,100,95,110,101,120,116,109,101,116,101,114,112,111,108,108,116,105,109,101,46,52,52,55,57,0,95,105,100,108,101,116,105,109,101,46,52,54,48,51,0,95,115,121,115,95,113,117,105,116,0,95,115,121,115,95,104,105, 115,116,111,103,114,97,109,0,95,115,121,115,95,104,105,115,116,116,105,109,101,0,95,115,99,104,101,100,95,100,105,100,100,115,112,0,95,115,99,104,101,100,95,100,105,100,112,111,108,108,0,95,115,99,104,101,100,95,100,105,100,110,111,116,104,105,110,103, 0,95,115,121,115,95,104,105,115,116,112,104,97,115,101,0,95,111,115,115,95,114,101,115,121,110,99,0,95,115,99,104,101,100,95,100,105,111,114,101,100,0,95,115,99,104,101,100,95,100,105,111,114,101,100,116,105,109,101,0,95,115,99,104,101,100,95,109,101, 116,101,114,115,111,110,0,95,115,99,104,101,100,95,108,97,115,116,105,110,99,108,105,112,0,95,115,99,104,101,100,95,108,97,115,116,111,117,116,99,108,105,112,0,95,115,99,104,101,100,95,108,97,115,116,105,110,100,98,0,95,115,99,104,101,100,95,108,97,115, 116,111,117,116,100,98,0,95,115,99,104,101,100,95,114,101,102,101,114,101,110,99,101,114,101,97,108,116,105,109,101,0,95,115,99,104,101,100,95,114,101,102,101,114,101,110,99,101,108,111,103,105,99,97,108,116,105,109,101,0,95,99,108,111,99,107,95,115, 101,116,108,105,115,116,0,95,115,121,115,95,105,100,108,101,104,111,111,107,0,95,115,121,115,95,115,108,101,101,112,103,114,97,105,110,0,95,115,121,115,95,116,105,109,101,0,95,115,121,115,95,116,105,109,101,95,112,101,114,95,100,115,112,95,116,105,99, 107,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,97,117,100,105,111,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101, 45,100,97,116,97,47,115,114,99,47,115,95,97,117,100,105,111,46,111,0,95,97,117,100,105,111,95,105,115,111,112,101,110,0,95,115,121,115,95,103,101,116,95,97,117,100,105,111,95,112,97,114,97,109,115,0,95,115,121,115,95,115,97,118,101,95,97,117,100,105, 111,95,112,97,114,97,109,115,0,95,97,117,100,105,111,95,105,110,105,116,0,95,115,121,115,95,115,101,116,99,104,115,114,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,115,121,115,95,115,101,116,95,97,117,100,105,111,95, 115,101,116,116,105,110,103,115,0,95,115,121,115,95,99,108,111,115,101,95,97,117,100,105,111,0,95,115,121,115,95,114,101,111,112,101,110,95,97,117,100,105,111,0,95,115,121,115,95,115,101,110,100,95,100,97,99,115,0,95,115,121,115,95,103,101,116,115,114, 0,95,115,121,115,95,103,101,116,95,111,117,116,99,104,97,110,110,101,108,115,0,95,115,121,115,95,103,101,116,95,105,110,99,104,97,110,110,101,108,115,0,95,115,121,115,95,103,101,116,109,101,116,101,114,115,0,95,115,121,115,95,114,101,112,111,114,116, 105,100,108,101,0,95,97,117,100,105,111,95,103,101,116,100,101,118,115,0,95,115,121,115,95,108,105,115,116,97,117,100,105,111,100,101,118,115,0,95,103,108,111,98,95,97,117,100,105,111,95,112,114,111,112,101,114,116,105,101,115,0,95,103,108,111,98,95, 97,117,100,105,111,95,100,105,97,108,111,103,0,95,115,121,115,95,108,105,115,116,100,101,118,115,0,95,115,121,115,95,103,101,116,95,97,117,100,105,111,95,100,101,118,115,0,95,115,121,115,95,115,101,116,98,108,111,99,107,115,105,122,101,0,95,115,121,115, 95,115,101,116,95,97,117,100,105,111,95,97,112,105,0,95,103,108,111,98,95,97,117,100,105,111,95,115,101,116,97,112,105,0,95,115,121,115,95,115,101,116,95,97,117,100,105,111,95,115,116,97,116,101,0,95,115,121,115,95,103,101,116,95,97,117,100,105,111,95, 97,112,105,115,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,103,108,111,98,95,102,111,111,0,95,115,121,115,95,98,108,111,99,107,115,105,122,101, 0,95,115,121,115,95,97,117,100,105,111,97,112,105,0,95,115,121,115,95,97,117,100,105,111,97,112,105,111,112,101,110,101,100,0,95,97,117,100,105,111,95,110,97,117,100,105,111,105,110,100,101,118,0,95,97,117,100,105,111,95,110,97,117,100,105,111,111,117, 116,100,101,118,0,95,105,110,105,116,116,101,100,46,53,51,49,53,0,95,115,121,115,95,109,101,116,101,114,115,0,95,115,121,115,95,105,110,109,97,120,0,95,115,121,115,95,111,117,116,109,97,120,0,95,97,117,100,105,111,95,115,116,97,116,101,0,95,97,117,100, 105,111,95,97,117,100,105,111,105,110,100,101,118,0,95,97,117,100,105,111,95,97,117,100,105,111,99,104,105,110,100,101,118,0,95,97,117,100,105,111,95,97,117,100,105,111,111,117,116,100,101,118,0,95,97,117,100,105,111,95,97,117,100,105,111,99,104,111, 117,116,100,101,118,0,95,97,117,100,105,111,95,114,97,116,101,0,95,97,117,100,105,111,95,97,100,118,97,110,99,101,0,95,97,117,100,105,111,95,99,97,108,108,98,97,99,107,0,95,97,117,100,105,111,95,99,97,108,108,98,97,99,107,95,105,115,95,111,112,101,110, 0,95,97,117,100,105,111,95,110,101,120,116,105,110,99,104,97,110,115,0,95,97,117,100,105,111,95,110,101,120,116,111,117,116,99,104,97,110,115,0,95,115,121,115,95,97,100,118,97,110,99,101,95,115,97,109,112,108,101,115,0,95,115,121,115,95,100,97,99,115, 114,0,95,115,121,115,95,105,110,99,104,97,110,110,101,108,115,0,95,115,121,115,95,111,117,116,99,104,97,110,110,101,108,115,0,95,115,121,115,95,115,99,104,101,100,97,100,118,97,110,99,101,0,95,115,121,115,95,115,111,117,110,100,105,110,0,95,115,121,115, 95,115,111,117,110,100,111,117,116,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,97,117,100,105,111,95,100,117,109,109,121,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108, 105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,97,117,100,105,111,95,100,117,109,109,121,46,111,0,95,100,117,109,109,121,95,111,112,101,110,95,97,117,100,105,111,0,95,100,117,109,109,121,95,99,108,111, 115,101,95,97,117,100,105,111,0,95,100,117,109,109,121,95,115,101,110,100,95,100,97,99,115,0,95,100,117,109,109,121,95,103,101,116,100,101,118,115,0,95,100,117,109,109,121,95,108,105,115,116,100,101,118,115,0,112,117,114,101,45,100,97,116,97,47,115,114, 99,47,115,95,102,105,108,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,102,105,108, 101,46,111,0,95,115,121,115,95,105,110,105,116,108,111,97,100,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,103,101,116,112,114,101,102,101,114,101,110,99,101,0,95,115,121,115,95,100,111,110,101,108,111,97,100,112,114,101,102,101,114, 101,110,99,101,115,0,95,115,121,115,95,105,110,105,116,115,97,118,101,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,112,117,116,112,114,101,102,101,114,101,110,99,101,0,95,115,121,115,95,100,111,110,101,115,97,118,101,112,114,101,102, 101,114,101,110,99,101,115,0,95,115,121,115,95,108,111,97,100,112,114,101,102,101,114,101,110,99,101,115,0,95,103,108,111,98,95,115,97,118,101,112,114,101,102,101,114,101,110,99,101,115,0,95,115,121,115,95,102,108,97,103,115,0,95,115,121,115,95,100,101, 102,101,97,116,114,116,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,105,110,116,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100, 47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,105,110,116,101,114,46,111,0,95,115,121,115,95,103,101,116,114,101,97,108,116,105,109,101,0,95,115,121,115,95,100,111,109,105,99,114,111,115,108,101,101,112,0,95,95,95,100,97,114,119,105,110, 95,102,100,95,105,115,115,101,116,0,47,117,115,114,47,105,110,99,108,117,100,101,47,115,121,115,47,95,115,116,114,117,99,116,115,46,104,0,95,115,121,115,95,109,105,99,114,111,115,108,101,101,112,0,95,115,121,115,95,115,105,103,110,97,108,0,95,115,121, 115,95,101,120,105,116,104,97,110,100,108,101,114,0,95,115,121,115,95,97,108,97,114,109,104,97,110,100,108,101,114,0,95,115,121,115,95,104,117,112,104,97,110,100,108,101,114,0,95,115,121,115,95,115,101,116,97,108,97,114,109,0,95,115,121,115,95,115,111, 99,107,101,114,114,111,114,0,95,115,121,115,95,97,100,100,112,111,108,108,102,110,0,95,115,121,115,95,114,109,112,111,108,108,102,110,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,110,101,119,0,95,115,111,99,107,101,116,114,101,99,101, 105,118,101,114,95,102,114,101,101,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,100,111,114,101,97,100,0,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,95,103,101,116,117,100,112,0,95,115,111,99,107,101,116,114,101,99,101,105, 118,101,114,95,114,101,97,100,0,95,115,121,115,95,99,108,111,115,101,115,111,99,107,101,116,0,95,115,121,115,95,116,114,121,116,111,103,101,116,109,111,114,101,103,117,105,98,117,102,0,95,115,121,115,95,118,103,117,105,0,95,115,121,115,95,103,117,105, 0,95,115,121,115,95,102,108,117,115,104,116,111,103,117,105,0,95,95,95,105,110,108,105,110,101,95,109,101,109,109,111,118,101,95,99,104,107,0,95,103,108,111,98,95,112,105,110,103,0,95,115,121,115,95,102,108,117,115,104,113,117,101,117,101,0,95,115,121, 115,95,112,111,108,108,95,116,111,103,117,105,0,95,115,121,115,95,112,114,101,116,101,110,100,103,117,105,98,121,116,101,115,0,95,115,121,115,95,113,117,101,117,101,103,117,105,0,95,115,121,115,95,117,110,113,117,101,117,101,103,117,105,0,95,115,121, 115,95,112,111,108,108,103,117,105,0,95,115,121,115,95,115,116,97,114,116,103,117,105,0,95,95,79,83,83,119,97,112,73,110,116,49,54,0,47,117,115,114,47,105,110,99,108,117,100,101,47,108,105,98,107,101,114,110,47,105,51,56,54,47,95,79,83,66,121,116,101, 79,114,100,101,114,46,104,0,95,115,121,115,95,98,97,105,108,0,95,103,108,111,98,95,113,117,105,116,0,95,100,101,102,97,117,108,116,102,111,110,116,115,104,105,116,0,95,116,104,101,110,46,55,51,53,48,0,95,116,114,111,117,98,108,101,46,55,52,53,50,0,95, 114,101,101,110,116,101,114,101,100,46,56,50,55,49,0,95,115,121,115,95,110,102,100,112,111,108,108,0,95,115,121,115,95,102,100,112,111,108,108,0,95,115,121,115,95,109,97,120,102,100,0,95,115,121,115,95,103,117,105,115,111,99,107,0,95,105,110,98,105,110, 98,117,102,0,95,115,121,115,95,115,111,99,107,101,116,114,101,99,101,105,118,101,114,0,95,115,121,115,95,103,117,105,113,117,101,117,101,104,101,97,100,0,95,115,121,115,95,103,117,105,98,117,102,0,95,115,121,115,95,103,117,105,98,117,102,104,101,97,100, 0,95,115,121,115,95,103,117,105,98,117,102,116,97,105,108,0,95,115,121,115,95,103,117,105,98,117,102,115,105,122,101,0,95,115,121,115,95,119,97,105,116,105,110,103,102,111,114,112,105,110,103,0,95,115,121,115,95,98,121,116,101,115,115,105,110,99,101, 108,97,115,116,112,105,110,103,0,95,115,121,115,95,119,97,116,99,104,102,100,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,108,111,97,100,101,114,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109, 112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,108,111,97,100,101,114,46,111,0,95,115,121,115,95,111,110,108,111,97,100,108,105,115,116,0,95,115,121,115,95,112,117,116,111,110,108, 111,97,100,108,105,115,116,0,95,115,121,115,95,100,111,95,108,111,97,100,95,108,105,98,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,109,111,118,101,95,99,104,107,0,95,115, 121,115,95,114,101,103,105,115,116,101,114,95,108,111,97,100,101,114,0,95,115,121,115,95,108,111,97,100,95,108,105,98,0,95,115,121,115,95,114,117,110,95,115,99,104,101,100,117,108,101,114,0,95,108,111,97,100,101,114,115,0,95,115,121,115,95,100,108,108, 101,120,116,101,110,116,0,95,115,121,115,95,100,108,108,101,120,116,101,110,116,50,0,95,115,121,115,95,108,111,97,100,101,100,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,109,97,105,110,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114, 117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,109,97,105,110,46,111,0,95,103,101,116,95,115,121,115,95,115,111,117,110,100,111,117,116,0,95, 103,101,116,95,115,121,115,95,115,111,117,110,100,105,110,0,95,103,101,116,95,115,121,115,95,109,97,105,110,95,97,100,118,97,110,99,101,0,95,103,101,116,95,115,121,115,95,116,105,109,101,95,112,101,114,95,100,115,112,95,116,105,99,107,0,95,103,101,116, 95,115,121,115,95,115,99,104,101,100,98,108,111,99,107,115,105,122,101,0,95,103,101,116,95,115,121,115,95,116,105,109,101,0,95,103,101,116,95,115,121,115,95,100,97,99,115,114,0,95,103,101,116,95,115,121,115,95,115,108,101,101,112,103,114,97,105,110,0, 95,103,101,116,95,115,121,115,95,115,99,104,101,100,97,100,118,97,110,99,101,0,95,115,121,115,95,102,105,110,100,102,111,110,116,0,95,115,121,115,95,110,101,97,114,101,115,116,102,111,110,116,115,105,122,101,0,95,115,121,115,95,104,111,115,116,102,111, 110,116,115,105,122,101,0,95,115,121,115,95,102,111,110,116,119,105,100,116,104,0,95,115,121,115,95,102,111,110,116,104,101,105,103,104,116,0,95,111,112,101,110,105,116,0,95,103,108,111,98,95,105,110,105,116,102,114,111,109,103,117,105,0,95,115,121,115, 95,109,97,105,110,0,95,115,121,115,95,112,97,114,115,101,100,101,118,108,105,115,116,0,95,115,121,115,95,103,101,116,109,117,108,116,105,100,101,118,99,104,97,110,110,101,108,115,0,95,115,121,115,95,102,105,110,100,112,114,111,103,100,105,114,0,95,115, 121,115,95,97,114,103,112,97,114,115,101,0,95,115,121,115,95,103,101,116,98,108,107,115,105,122,101,0,95,115,121,115,95,97,102,116,101,114,97,114,103,112,97,114,115,101,0,95,115,121,115,95,97,100,100,114,101,102,101,114,101,110,99,101,112,97,116,104, 0,95,112,100,95,118,101,114,115,105,111,110,0,95,117,115,97,103,101,109,101,115,115,97,103,101,0,95,112,100,95,99,111,109,112,105,108,101,116,105,109,101,0,95,112,100,95,99,111,109,112,105,108,101,100,97,116,101,0,95,115,121,115,95,104,105,112,114,105, 111,114,105,116,121,0,95,115,121,115,95,110,111,115,108,101,101,112,0,95,115,121,115,95,110,109,105,100,105,111,117,116,0,95,115,121,115,95,110,109,105,100,105,105,110,0,95,115,121,115,95,109,105,100,105,105,110,100,101,118,108,105,115,116,0,95,115,121, 115,95,109,105,100,105,111,117,116,100,101,118,108,105,115,116,0,95,115,121,115,95,102,111,110,116,0,95,115,121,115,95,102,111,110,116,119,101,105,103,104,116,0,95,115,121,115,95,110,115,111,117,110,100,105,110,0,95,115,121,115,95,110,115,111,117,110, 100,111,117,116,0,95,115,121,115,95,110,99,104,105,110,0,95,115,121,115,95,110,99,104,111,117,116,0,95,115,121,115,95,102,111,110,116,108,105,115,116,0,95,115,121,115,95,109,109,105,111,0,95,115,121,115,95,111,112,101,110,108,105,115,116,0,95,115,121, 115,95,109,101,115,115,97,103,101,108,105,115,116,0,95,115,121,115,95,118,101,114,115,105,111,110,0,95,115,121,115,95,109,97,105,110,95,115,114,97,116,101,0,95,115,121,115,95,109,97,105,110,95,97,100,118,97,110,99,101,0,95,115,121,115,95,109,97,105,110, 95,99,97,108,108,98,97,99,107,0,95,115,121,115,95,108,105,115,116,112,108,101,97,115,101,0,95,115,121,115,95,98,97,116,99,104,0,95,115,121,115,95,115,111,117,110,100,105,110,100,101,118,108,105,115,116,0,95,115,121,115,95,115,111,117,110,100,111,117, 116,100,101,118,108,105,115,116,0,95,115,121,115,95,99,104,105,110,108,105,115,116,0,95,115,121,115,95,99,104,111,117,116,108,105,115,116,0,95,115,121,115,95,100,101,98,117,103,108,101,118,101,108,0,95,115,121,115,95,100,101,102,97,117,108,116,102,111, 110,116,0,95,115,121,115,95,101,120,116,101,114,110,97,108,115,99,104,101,100,108,105,98,0,95,115,121,115,95,101,120,116,101,114,110,97,108,115,99,104,101,100,108,105,98,110,97,109,101,0,95,115,121,115,95,101,120,116,114,97,102,108,97,103,115,0,95,115, 121,115,95,101,120,116,114,97,102,108,97,103,115,115,116,114,105,110,103,0,95,115,121,115,95,103,117,105,99,109,100,0,95,115,121,115,95,103,117,105,115,101,116,112,111,114,116,110,117,109,98,101,114,0,95,115,121,115,95,108,105,98,100,105,114,0,95,115, 121,115,95,110,111,97,117,116,111,112,97,116,99,104,0,95,115,121,115,95,110,111,103,117,105,0,95,115,121,115,95,110,111,108,111,97,100,98,97,110,103,0,95,115,121,115,95,111,108,100,116,99,108,118,101,114,115,105,111,110,0,95,115,121,115,95,118,101,114, 98,111,115,101,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,112,97,116,104,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117, 114,101,45,100,97,116,97,47,115,114,99,47,115,95,112,97,116,104,46,111,0,95,115,121,115,95,98,97,115,104,102,105,108,101,110,97,109,101,0,95,115,121,115,95,117,110,98,97,115,104,102,105,108,101,110,97,109,101,0,95,115,121,115,95,105,115,97,98,115,111, 108,117,116,101,112,97,116,104,0,95,115,121,115,95,101,120,112,97,110,100,112,97,116,104,0,95,95,95,105,110,108,105,110,101,95,115,116,114,110,99,112,121,95,99,104,107,0,95,115,116,114,116,111,107,99,112,121,0,95,110,97,109,101,108,105,115,116,95,97, 112,112,101,110,100,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,112,121,95,99,104,107,0,95,110,97,109,101,108,105,115,116,95,97,112,112,101,110,100,95,102,105,108,101,115,0,95,110,97,109,101,108,105,115,116,95,102,114,101,101,0,95,110,97,109, 101,108,105,115,116,95,103,101,116,0,95,115,121,115,95,115,101,116,101,120,116,114,97,112,97,116,104,0,95,115,121,115,95,116,114,121,116,111,111,112,101,110,111,110,101,0,95,95,95,105,110,108,105,110,101,95,115,116,114,99,97,116,95,99,104,107,0,95,115, 121,115,95,111,112,101,110,95,97,98,115,111,108,117,116,101,0,95,100,111,95,111,112,101,110,95,118,105,97,95,112,97,116,104,0,95,111,112,101,110,95,118,105,97,95,112,97,116,104,0,95,115,121,115,95,99,108,111,115,101,0,95,111,112,101,110,95,118,105,97, 95,104,101,108,112,112,97,116,104,0,95,115,121,115,95,114,99,102,105,108,101,0,95,115,121,115,95,100,111,102,108,97,103,115,0,95,105,115,115,112,97,99,101,0,47,117,115,114,47,105,110,99,108,117,100,101,47,99,116,121,112,101,46,104,0,95,95,95,105,115, 116,121,112,101,0,95,105,115,97,115,99,105,105,0,95,115,121,115,95,100,101,99,111,100,101,100,105,97,108,111,103,0,95,115,121,115,95,115,101,116,95,115,101,97,114,99,104,112,97,116,104,0,95,115,121,115,95,115,101,116,95,101,120,116,114,97,112,97,116, 104,0,95,103,108,111,98,95,115,116,97,114,116,95,112,97,116,104,95,100,105,97,108,111,103,0,95,103,108,111,98,95,112,97,116,104,95,100,105,97,108,111,103,0,95,115,121,115,95,115,101,116,95,115,116,97,114,116,117,112,0,95,103,108,111,98,95,115,116,97, 114,116,95,115,116,97,114,116,117,112,95,100,105,97,108,111,103,0,95,103,108,111,98,95,115,116,97,114,116,117,112,95,100,105,97,108,111,103,0,95,115,121,115,95,117,115,101,115,116,100,112,97,116,104,0,95,115,121,115,95,101,120,116,101,114,110,108,105, 115,116,0,95,115,121,115,95,104,101,108,112,112,97,116,104,0,95,115,121,115,95,115,101,97,114,99,104,112,97,116,104,0,95,115,121,115,95,115,116,97,116,105,99,112,97,116,104,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,112,114,105,110,116, 46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,112,114,105,110,116,46,111,0,95,115,116, 114,110,101,115,99,97,112,101,0,95,100,111,112,111,115,116,0,95,100,111,101,114,114,111,114,0,95,100,111,118,101,114,98,111,115,101,0,95,100,111,98,117,103,0,95,112,111,115,116,0,95,115,116,97,114,116,112,111,115,116,0,95,112,111,115,116,115,116,114, 105,110,103,0,95,112,111,115,116,97,116,111,109,0,95,112,111,115,116,102,108,111,97,116,0,95,101,110,100,112,111,115,116,0,95,101,114,114,111,114,0,95,118,101,114,98,111,115,101,0,95,112,100,95,101,114,114,111,114,0,95,103,108,111,98,95,102,105,110,100, 101,114,114,111,114,0,95,98,117,103,0,95,115,121,115,95,108,111,103,101,114,114,111,114,0,95,115,121,115,95,117,110,105,120,101,114,114,111,114,0,95,115,121,115,95,111,117,99,104,0,95,115,97,105,100,105,116,46,52,55,54,50,0,95,101,114,114,111,114,95, 111,98,106,101,99,116,0,95,101,114,114,111,114,95,115,116,114,105,110,103,0,95,101,114,114,111,98,106,101,99,116,0,95,101,114,114,115,116,114,105,110,103,0,95,115,121,115,95,112,114,105,110,116,104,111,111,107,0,95,115,121,115,95,112,114,105,110,116, 116,111,115,116,100,101,114,114,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,117,116,102,56,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112, 100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,115,95,117,116,102,56,46,111,0,95,117,56,95,115,101,113,108,101,110,0,95,117,56,95,116,111,117,99,115,0,95,117,56,95,116,111,117,116,102,56,0,95,117,56,95,119,99,95,110,98,121,116,101,115,0,95, 117,56,95,119,99,95,116,111,117,116,102,56,0,95,117,56,95,119,99,95,116,111,117,116,102,56,95,110,117,108,0,95,117,56,95,111,102,102,115,101,116,0,95,117,56,95,99,104,97,114,110,117,109,0,95,117,56,95,110,101,120,116,99,104,97,114,0,95,117,56,95,115, 116,114,108,101,110,0,95,117,56,95,105,110,99,0,95,117,56,95,100,101,99,0,95,117,56,95,105,110,99,95,112,116,114,0,95,117,56,95,100,101,99,95,112,116,114,0,95,111,102,102,115,101,116,115,70,114,111,109,85,84,70,56,0,95,116,114,97,105,108,105,110,103, 66,121,116,101,115,70,111,114,85,84,70,56,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,97,99,111,117,115,116,105,99,115,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105, 98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,97,99,111,117,115,116,105,99,115,46,111,0,95,109,116,111,102,0,95,102,116,111,109,0,95,112,111,119,116,111,100,98,0,95,114,109,115,116,111,100,98,0,95,100,98, 116,111,112,111,119,0,95,100,98,116,111,114,109,115,0,95,109,116,111,102,95,110,101,119,0,95,109,116,111,102,95,102,108,111,97,116,0,95,102,116,111,109,95,110,101,119,0,95,102,116,111,109,95,102,108,111,97,116,0,95,114,109,115,116,111,100,98,95,110,101, 119,0,95,114,109,115,116,111,100,98,95,102,108,111,97,116,0,95,112,111,119,116,111,100,98,95,110,101,119,0,95,112,111,119,116,111,100,98,95,102,108,111,97,116,0,95,100,98,116,111,112,111,119,95,110,101,119,0,95,100,98,116,111,112,111,119,95,102,108,111, 97,116,0,95,100,98,116,111,114,109,115,95,110,101,119,0,95,100,98,116,111,114,109,115,95,102,108,111,97,116,0,95,120,95,97,99,111,117,115,116,105,99,115,95,115,101,116,117,112,0,95,109,116,111,102,95,99,108,97,115,115,0,95,102,116,111,109,95,99,108,97, 115,115,0,95,114,109,115,116,111,100,98,95,99,108,97,115,115,0,95,112,111,119,116,111,100,98,95,99,108,97,115,115,0,95,100,98,116,111,112,111,119,95,99,108,97,115,115,0,95,100,98,116,111,114,109,115,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116, 97,47,115,114,99,47,120,95,97,114,105,116,104,109,101,116,105,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97, 47,115,114,99,47,120,95,97,114,105,116,104,109,101,116,105,99,46,111,0,95,98,105,110,111,112,49,95,110,101,119,0,95,98,105,110,111,112,49,95,112,108,117,115,95,110,101,119,0,95,98,105,110,111,112,49,95,112,108,117,115,95,98,97,110,103,0,95,98,105,110, 111,112,49,95,112,108,117,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,110,101,119,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,98,97,110,103,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,102,108,111,97, 116,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,110,101,119,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,98,97,110,103,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,100,105,118, 95,110,101,119,0,95,98,105,110,111,112,49,95,100,105,118,95,98,97,110,103,0,95,98,105,110,111,112,49,95,100,105,118,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,112,111,119,95,110,101,119,0,95,98,105,110,111,112,49,95,112,111,119,95,98,97,110, 103,0,95,98,105,110,111,112,49,95,112,111,119,95,102,108,111,97,116,0,95,98,105,110,111,112,49,95,109,97,120,95,110,101,119,0,95,98,105,110,111,112,49,95,109,97,120,95,98,97,110,103,0,95,98,105,110,111,112,49,95,109,97,120,95,102,108,111,97,116,0,95, 98,105,110,111,112,49,95,109,105,110,95,110,101,119,0,95,98,105,110,111,112,49,95,109,105,110,95,98,97,110,103,0,95,98,105,110,111,112,49,95,109,105,110,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,110,101,119,0,95,98,105,110,111,112,50,95,101, 101,95,110,101,119,0,95,98,105,110,111,112,50,95,101,101,95,98,97,110,103,0,95,98,105,110,111,112,50,95,101,101,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,110,101,95,110,101,119,0,95,98,105,110,111,112,50,95,110,101,95,98,97,110,103,0,95,98, 105,110,111,112,50,95,110,101,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,103,116,95,110,101,119,0,95,98,105,110,111,112,50,95,103,116,95,98,97,110,103,0,95,98,105,110,111,112,50,95,103,116,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95, 108,116,95,110,101,119,0,95,98,105,110,111,112,50,95,108,116,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,116,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,103,101,95,110,101,119,0,95,98,105,110,111,112,50,95,103,101,95,98,97,110,103,0,95, 98,105,110,111,112,50,95,103,101,95,102,108,111,97,116,0,95,98,105,110,111,112,50,95,108,101,95,110,101,119,0,95,98,105,110,111,112,50,95,108,101,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,101,95,102,108,111,97,116,0,95,98,105,110,111,112,51, 95,110,101,119,0,95,98,105,110,111,112,51,95,98,97,95,110,101,119,0,95,98,105,110,111,112,50,95,98,97,95,98,97,110,103,0,95,98,105,110,111,112,50,95,98,97,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,108,97,95,110,101,119,0,95,98,105,110,111,112, 50,95,108,97,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,97,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,98,111,95,110,101,119,0,95,98,105,110,111,112,50,95,98,111,95,98,97,110,103,0,95,98,105,110,111,112,50,95,98,111,95,102,108,111,97, 116,0,95,98,105,110,111,112,51,95,108,111,95,110,101,119,0,95,98,105,110,111,112,50,95,108,111,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,111,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,108,115,95,110,101,119,0,95,98,105,110,111,112,50, 95,108,115,95,98,97,110,103,0,95,98,105,110,111,112,50,95,108,115,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,114,115,95,110,101,119,0,95,98,105,110,111,112,50,95,114,115,95,98,97,110,103,0,95,98,105,110,111,112,50,95,114,115,95,102,108,111,97, 116,0,95,98,105,110,111,112,51,95,112,99,95,110,101,119,0,95,98,105,110,111,112,50,95,112,99,95,98,97,110,103,0,95,98,105,110,111,112,50,95,112,99,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,109,111,100,95,110,101,119,0,95,98,105,110,111,112, 51,95,109,111,100,95,98,97,110,103,0,95,98,105,110,111,112,51,95,109,111,100,95,102,108,111,97,116,0,95,98,105,110,111,112,51,95,100,105,118,95,110,101,119,0,95,98,105,110,111,112,51,95,100,105,118,95,98,97,110,103,0,95,98,105,110,111,112,51,95,100,105, 118,95,102,108,111,97,116,0,95,115,105,110,95,110,101,119,0,95,115,105,110,95,102,108,111,97,116,0,95,99,111,115,95,110,101,119,0,95,99,111,115,95,102,108,111,97,116,0,95,116,97,110,95,110,101,119,0,95,116,97,110,95,102,108,111,97,116,0,95,97,116,97, 110,95,110,101,119,0,95,97,116,97,110,95,102,108,111,97,116,0,95,97,116,97,110,50,95,110,101,119,0,95,97,116,97,110,50,95,102,108,111,97,116,0,95,115,113,114,116,95,110,101,119,0,95,115,113,114,116,95,102,108,111,97,116,0,95,108,111,103,95,110,101,119, 0,95,108,111,103,95,102,108,111,97,116,0,95,101,120,112,95,110,101,119,0,95,101,120,112,95,102,108,111,97,116,0,95,97,98,115,95,110,101,119,0,95,97,98,115,95,102,108,111,97,116,0,95,119,114,97,112,95,110,101,119,0,95,119,114,97,112,95,102,108,111,97, 116,0,95,99,108,105,112,95,110,101,119,0,95,99,108,105,112,95,98,97,110,103,0,95,99,108,105,112,95,102,108,111,97,116,0,95,99,108,105,112,95,115,101,116,117,112,0,95,120,95,97,114,105,116,104,109,101,116,105,99,95,115,101,116,117,112,0,95,98,105,110, 111,112,49,95,112,108,117,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,109,105,110,117,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,116,105,109,101,115,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,100,105,118,95,99,108,97,115, 115,0,95,98,105,110,111,112,49,95,112,111,119,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,109,97,120,95,99,108,97,115,115,0,95,98,105,110,111,112,49,95,109,105,110,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,101,101,95,99,108,97,115,115, 0,95,98,105,110,111,112,50,95,110,101,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,103,116,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,108,116,95,99,108,97,115,115,0,95,98,105,110,111,112,50,95,103,101,95,99,108,97,115,115,0,95,98,105,110, 111,112,50,95,108,101,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,98,97,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,108,97,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,98,111,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,108, 111,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,108,115,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,114,115,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,112,99,95,99,108,97,115,115,0,95,98,105,110,111,112,51,95,109,111,100,95,99,108, 97,115,115,0,95,98,105,110,111,112,51,95,100,105,118,95,99,108,97,115,115,0,95,115,105,110,95,99,108,97,115,115,0,95,99,111,115,95,99,108,97,115,115,0,95,116,97,110,95,99,108,97,115,115,0,95,97,116,97,110,95,99,108,97,115,115,0,95,97,116,97,110,50,95, 99,108,97,115,115,0,95,115,113,114,116,95,99,108,97,115,115,0,95,108,111,103,95,99,108,97,115,115,0,95,101,120,112,95,99,108,97,115,115,0,95,97,98,115,95,99,108,97,115,115,0,95,119,114,97,112,95,99,108,97,115,115,0,95,99,108,105,112,95,99,108,97,115, 115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,99,111,110,110,101,99,116,105,118,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100, 47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,99,111,110,110,101,99,116,105,118,101,46,111,0,95,112,100,105,110,116,95,110,101,119,0,95,112,100,105,110,116,95,98,97,110,103,0,95,112,100,105,110,116,95,102,108,111,97,116,0,95,112,100,105, 110,116,95,115,101,116,117,112,0,95,112,100,102,108,111,97,116,95,110,101,119,0,95,112,100,102,108,111,97,116,95,110,101,119,50,0,95,112,100,102,108,111,97,116,95,98,97,110,103,0,95,112,100,102,108,111,97,116,95,102,108,111,97,116,0,95,112,100,102,108, 111,97,116,95,115,101,116,117,112,0,95,112,100,115,121,109,98,111,108,95,110,101,119,0,95,112,100,115,121,109,98,111,108,95,98,97,110,103,0,95,112,100,115,121,109,98,111,108,95,115,121,109,98,111,108,0,95,112,100,115,121,109,98,111,108,95,97,110,121, 116,104,105,110,103,0,95,112,100,115,121,109,98,111,108,95,108,105,115,116,0,95,112,100,115,121,109,98,111,108,95,115,101,116,117,112,0,95,98,97,110,103,95,110,101,119,0,95,98,97,110,103,95,110,101,119,50,0,95,98,97,110,103,95,98,97,110,103,0,95,98,97, 110,103,95,115,101,116,117,112,0,95,115,101,110,100,95,98,97,110,103,0,95,115,101,110,100,95,102,108,111,97,116,0,95,115,101,110,100,95,115,121,109,98,111,108,0,95,115,101,110,100,95,112,111,105,110,116,101,114,0,95,115,101,110,100,95,108,105,115,116, 0,95,115,101,110,100,95,97,110,121,116,104,105,110,103,0,95,115,101,110,100,95,110,101,119,0,95,115,101,110,100,95,115,101,116,117,112,0,95,114,101,99,101,105,118,101,95,98,97,110,103,0,95,114,101,99,101,105,118,101,95,102,108,111,97,116,0,95,114,101, 99,101,105,118,101,95,115,121,109,98,111,108,0,95,114,101,99,101,105,118,101,95,112,111,105,110,116,101,114,0,95,114,101,99,101,105,118,101,95,108,105,115,116,0,95,114,101,99,101,105,118,101,95,97,110,121,116,104,105,110,103,0,95,114,101,99,101,105,118, 101,95,110,101,119,0,95,114,101,99,101,105,118,101,95,102,114,101,101,0,95,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,115,101,108,49,95,102,108,111,97,116,0,95,115,101,108,49,95,115,121,109,98,111,108,0,95,115,101,108,50,95,102,108,111,97, 116,0,95,115,101,108,50,95,115,121,109,98,111,108,0,95,115,101,108,50,95,102,114,101,101,0,95,115,101,108,101,99,116,95,110,101,119,0,95,115,101,108,101,99,116,95,115,101,116,117,112,0,95,114,111,117,116,101,95,97,110,121,116,104,105,110,103,0,95,114, 111,117,116,101,95,108,105,115,116,0,95,114,111,117,116,101,95,102,114,101,101,0,95,114,111,117,116,101,95,110,101,119,0,95,114,111,117,116,101,95,115,101,116,117,112,0,95,112,97,99,107,95,110,101,119,0,95,112,97,99,107,95,98,97,110,103,0,95,95,95,105, 110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,112,97,99,107,95,112,111,105,110,116,101,114,0,95,112,97,99,107,95,102,108,111,97,116,0,95,112,97,99,107,95,115,121,109,98,111,108,0,95,112,97,99,107,95,108,105,115,116,0,95,112,97,99,107, 95,97,110,121,116,104,105,110,103,0,95,112,97,99,107,95,102,114,101,101,0,95,112,97,99,107,95,115,101,116,117,112,0,95,117,110,112,97,99,107,95,110,101,119,0,95,117,110,112,97,99,107,95,108,105,115,116,0,95,117,110,112,97,99,107,95,97,110,121,116,104, 105,110,103,0,95,117,110,112,97,99,107,95,102,114,101,101,0,95,117,110,112,97,99,107,95,115,101,116,117,112,0,95,116,114,105,103,103,101,114,95,110,101,119,0,95,116,114,105,103,103,101,114,95,108,105,115,116,0,95,116,114,105,103,103,101,114,95,97,110, 121,116,104,105,110,103,0,95,116,114,105,103,103,101,114,95,98,97,110,103,0,95,116,114,105,103,103,101,114,95,112,111,105,110,116,101,114,0,95,116,114,105,103,103,101,114,95,102,108,111,97,116,0,95,116,114,105,103,103,101,114,95,115,121,109,98,111,108, 0,95,116,114,105,103,103,101,114,95,102,114,101,101,0,95,116,114,105,103,103,101,114,95,115,101,116,117,112,0,95,115,112,105,103,111,116,95,110,101,119,0,95,115,112,105,103,111,116,95,98,97,110,103,0,95,115,112,105,103,111,116,95,112,111,105,110,116, 101,114,0,95,115,112,105,103,111,116,95,102,108,111,97,116,0,95,115,112,105,103,111,116,95,115,121,109,98,111,108,0,95,115,112,105,103,111,116,95,108,105,115,116,0,95,115,112,105,103,111,116,95,97,110,121,116,104,105,110,103,0,95,115,112,105,103,111, 116,95,115,101,116,117,112,0,95,109,111,115,101,115,95,110,101,119,0,95,109,111,115,101,115,95,102,108,111,97,116,0,95,109,111,115,101,115,95,115,101,116,117,112,0,95,117,110,116,105,108,95,110,101,119,0,95,117,110,116,105,108,95,98,97,110,103,0,95,117, 110,116,105,108,95,102,108,111,97,116,0,95,117,110,116,105,108,95,98,97,110,103,50,0,95,117,110,116,105,108,95,115,101,116,117,112,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,99,97,110,102,111,114,109,97,116,0,95,109,97,107,101,102,105, 108,101,110,97,109,101,95,110,101,119,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,102,108,111,97,116,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,121,109,98,111,108,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,101, 116,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,115,101,116,117,112,0,95,115,119,97,112,95,110,101,119,0,95,115,119,97,112,95,98,97,110,103,0,95,115,119,97,112,95,102,108,111,97,116,0,95,115,119,97,112,95,115,101,116,117,112,0,95,99,104,97, 110,103,101,95,110,101,119,0,95,99,104,97,110,103,101,95,98,97,110,103,0,95,99,104,97,110,103,101,95,102,108,111,97,116,0,95,99,104,97,110,103,101,95,115,101,116,0,95,99,104,97,110,103,101,95,115,101,116,117,112,0,95,118,97,108,117,101,95,103,101,116, 0,95,118,97,108,117,101,95,114,101,108,101,97,115,101,0,95,118,97,108,117,101,95,103,101,116,102,108,111,97,116,0,95,118,97,108,117,101,95,115,101,116,102,108,111,97,116,0,95,118,97,108,117,101,95,110,101,119,0,95,118,97,108,117,101,95,98,97,110,103, 0,95,118,97,108,117,101,95,102,108,111,97,116,0,95,118,97,108,117,101,95,102,102,0,95,118,97,108,117,101,95,115,101,116,117,112,0,95,120,95,99,111,110,110,101,99,116,105,118,101,95,115,101,116,117,112,0,95,112,100,105,110,116,95,99,108,97,115,115,0,95, 112,100,102,108,111,97,116,95,99,108,97,115,115,0,95,112,100,115,121,109,98,111,108,95,99,108,97,115,115,0,95,98,97,110,103,95,99,108,97,115,115,0,95,115,101,110,100,95,99,108,97,115,115,0,95,114,101,99,101,105,118,101,95,99,108,97,115,115,0,95,115,101, 108,49,95,99,108,97,115,115,0,95,115,101,108,50,95,99,108,97,115,115,0,95,114,111,117,116,101,95,99,108,97,115,115,0,95,112,97,99,107,95,99,108,97,115,115,0,95,117,110,112,97,99,107,95,99,108,97,115,115,0,95,116,114,105,103,103,101,114,95,99,108,97,115, 115,0,95,115,112,105,103,111,116,95,99,108,97,115,115,0,95,109,111,115,101,115,95,99,108,97,115,115,0,95,117,110,116,105,108,95,99,108,97,115,115,0,95,109,97,107,101,102,105,108,101,110,97,109,101,95,99,108,97,115,115,0,95,115,119,97,112,95,99,108,97, 115,115,0,95,99,104,97,110,103,101,95,99,108,97,115,115,0,95,118,97,108,117,101,95,99,108,97,115,115,0,95,118,99,111,109,109,111,110,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,103,117,105,46,99,0,47,85,115,101,114, 115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,103,117,105,46,111,0,95,103,102,120,115,116,117,98,95,110,101,119, 0,95,103,102,120,115,116,117,98,95,111,102,102,108,105,115,116,0,95,103,102,120,115,116,117,98,95,100,101,108,101,116,101,102,111,114,107,101,121,0,95,103,102,120,115,116,117,98,95,99,97,110,99,101,108,0,95,103,102,120,115,116,117,98,95,115,105,103,110, 111,102,102,0,95,103,102,120,115,116,117,98,95,100,97,116,97,0,95,103,102,120,115,116,117,98,95,101,110,100,0,95,103,102,120,115,116,117,98,95,97,110,121,116,104,105,110,103,0,95,103,102,120,115,116,117,98,95,102,114,101,101,0,95,103,102,120,115,116, 117,98,95,115,101,116,117,112,0,95,111,112,101,110,112,97,110,101,108,95,110,101,119,0,95,111,112,101,110,112,97,110,101,108,95,115,121,109,98,111,108,0,95,111,112,101,110,112,97,110,101,108,95,98,97,110,103,0,95,111,112,101,110,112,97,110,101,108,95, 99,97,108,108,98,97,99,107,0,95,111,112,101,110,112,97,110,101,108,95,102,114,101,101,0,95,111,112,101,110,112,97,110,101,108,95,115,101,116,117,112,0,95,115,97,118,101,112,97,110,101,108,95,110,101,119,0,95,115,97,118,101,112,97,110,101,108,95,115,121, 109,98,111,108,0,95,115,97,118,101,112,97,110,101,108,95,98,97,110,103,0,95,115,97,118,101,112,97,110,101,108,95,99,97,108,108,98,97,99,107,0,95,115,97,118,101,112,97,110,101,108,95,102,114,101,101,0,95,115,97,118,101,112,97,110,101,108,95,115,101,116, 117,112,0,95,107,101,121,95,110,101,119,0,95,107,101,121,95,102,108,111,97,116,0,95,107,101,121,95,102,114,101,101,0,95,107,101,121,117,112,95,110,101,119,0,95,107,101,121,117,112,95,102,108,111,97,116,0,95,107,101,121,117,112,95,102,114,101,101,0,95, 107,101,121,110,97,109,101,95,110,101,119,0,95,107,101,121,110,97,109,101,95,108,105,115,116,0,95,107,101,121,110,97,109,101,95,102,114,101,101,0,95,107,101,121,95,115,101,116,117,112,0,95,120,95,103,117,105,95,115,101,116,117,112,0,95,103,102,120,115, 116,117,98,95,99,108,97,115,115,0,95,103,102,120,115,116,117,98,95,108,105,115,116,0,95,103,102,120,115,116,117,98,95,98,105,110,98,117,102,0,95,111,112,101,110,112,97,110,101,108,95,99,108,97,115,115,0,95,115,97,118,101,112,97,110,101,108,95,99,108, 97,115,115,0,95,107,101,121,95,115,121,109,0,95,107,101,121,117,112,95,115,121,109,0,95,107,101,121,110,97,109,101,95,115,121,109,0,95,107,101,121,95,99,108,97,115,115,0,95,107,101,121,117,112,95,99,108,97,115,115,0,95,107,101,121,110,97,109,101,95,99, 108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,105,110,116,101,114,102,97,99,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98, 112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,105,110,116,101,114,102,97,99,101,46,111,0,95,112,114,105,110,116,95,110,101,119,0,95,112,114,105,110,116,95,98,97,110,103,0,95,112,114,105,110,116,95,112,111,105,110,116,101,114,0,95, 112,114,105,110,116,95,102,108,111,97,116,0,95,112,114,105,110,116,95,108,105,115,116,0,95,112,114,105,110,116,95,97,110,121,116,104,105,110,103,0,95,112,114,105,110,116,95,115,101,116,117,112,0,95,120,95,105,110,116,101,114,102,97,99,101,95,115,101, 116,117,112,0,95,112,114,105,110,116,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,108,105,115,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105, 98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,108,105,115,116,46,111,0,95,97,116,111,109,115,95,99,111,112,121,0,95,97,108,105,115,116,95,105,110,105,116,0,95,97,108,105,115,116,95,99,108,101,97,114,0,95, 97,108,105,115,116,95,108,105,115,116,0,95,97,108,105,115,116,95,97,110,121,116,104,105,110,103,0,95,97,108,105,115,116,95,116,111,97,116,111,109,115,0,95,97,108,105,115,116,95,99,108,111,110,101,0,95,97,108,105,115,116,95,115,101,116,117,112,0,95,108, 105,115,116,95,97,112,112,101,110,100,95,110,101,119,0,95,108,105,115,116,95,97,112,112,101,110,100,95,108,105,115,116,0,95,108,105,115,116,95,97,112,112,101,110,100,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,97,112,112,101,110,100,95, 102,114,101,101,0,95,108,105,115,116,95,97,112,112,101,110,100,95,115,101,116,117,112,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,110,101,119,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,108,105,115,116,0,95,108,105,115,116,95,112, 114,101,112,101,110,100,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,102,114,101,101,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,115,101,116,117,112,0,95,108,105,115,116,95,115,112,108,105,116,95, 110,101,119,0,95,108,105,115,116,95,115,112,108,105,116,95,108,105,115,116,0,95,108,105,115,116,95,115,112,108,105,116,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,115,112,108,105,116,95,115,101,116,117,112,0,95,108,105,115,116,95,116,114, 105,109,95,110,101,119,0,95,108,105,115,116,95,116,114,105,109,95,108,105,115,116,0,95,108,105,115,116,95,116,114,105,109,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,116,114,105,109,95,115,101,116,117,112,0,95,108,105,115,116,95,108,101, 110,103,116,104,95,110,101,119,0,95,108,105,115,116,95,108,101,110,103,116,104,95,108,105,115,116,0,95,108,105,115,116,95,108,101,110,103,116,104,95,97,110,121,116,104,105,110,103,0,95,108,105,115,116,95,108,101,110,103,116,104,95,115,101,116,117,112, 0,95,108,105,115,116,95,110,101,119,0,95,120,95,108,105,115,116,95,115,101,116,117,112,0,95,97,108,105,115,116,95,99,108,97,115,115,0,95,108,105,115,116,95,97,112,112,101,110,100,95,99,108,97,115,115,0,95,108,105,115,116,95,108,101,110,103,116,104,95, 99,108,97,115,115,0,95,108,105,115,116,95,112,114,101,112,101,110,100,95,99,108,97,115,115,0,95,108,105,115,116,95,115,112,108,105,116,95,99,108,97,115,115,0,95,108,105,115,116,95,116,114,105,109,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97, 47,115,114,99,47,120,95,109,105,100,105,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95, 109,105,100,105,46,111,0,95,109,105,100,105,105,110,95,110,101,119,0,95,109,105,100,105,105,110,95,108,105,115,116,0,95,109,105,100,105,105,110,95,102,114,101,101,0,95,115,121,115,101,120,105,110,95,110,101,119,0,95,115,121,115,101,120,105,110,95,102, 114,101,101,0,95,109,105,100,105,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,98,121,116,101,0,95,105,110,109,105,100,105,95,115,121,115,101,120,0,95,110,111,116,101,105,110,95,110,101,119,0,95,110,111,116,101,105,110,95,108,105,115, 116,0,95,110,111,116,101,105,110,95,102,114,101,101,0,95,110,111,116,101,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,110,111,116,101,111,110,0,95,99,116,108,105,110,95,110,101,119,0,95,99,116,108,105,110,95,108,105,115,116,0,95,99, 116,108,105,110,95,102,114,101,101,0,95,99,116,108,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,99,111,110,116,114,111,108,99,104,97,110,103,101,0,95,112,103,109,105,110,95,110,101,119,0,95,112,103,109,105,110,95,108,105,115,116,0,95, 112,103,109,105,110,95,102,114,101,101,0,95,112,103,109,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,112,114,111,103,114,97,109,99,104,97,110,103,101,0,95,98,101,110,100,105,110,95,110,101,119,0,95,98,101,110,100,105,110,95,108,105, 115,116,0,95,98,101,110,100,105,110,95,102,114,101,101,0,95,98,101,110,100,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,112,105,116,99,104,98,101,110,100,0,95,116,111,117,99,104,105,110,95,110,101,119,0,95,116,111,117,99,104,105,110, 95,108,105,115,116,0,95,116,111,117,99,104,105,110,95,102,114,101,101,0,95,116,111,117,99,104,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,97,102,116,101,114,116,111,117,99,104,0,95,112,111,108,121,116,111,117,99,104,105,110,95,110, 101,119,0,95,112,111,108,121,116,111,117,99,104,105,110,95,108,105,115,116,0,95,112,111,108,121,116,111,117,99,104,105,110,95,102,114,101,101,0,95,112,111,108,121,116,111,117,99,104,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,112,111, 108,121,97,102,116,101,114,116,111,117,99,104,0,95,109,105,100,105,99,108,107,105,110,95,110,101,119,0,95,109,105,100,105,99,108,107,105,110,95,108,105,115,116,0,95,109,105,100,105,99,108,107,105,110,95,102,114,101,101,0,95,109,105,100,105,99,108,107, 105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,99,108,107,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,110,101,119,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,108,105,115,116,0,95,109,105,100,105,114, 101,97,108,116,105,109,101,105,110,95,102,114,101,101,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,115,101,116,117,112,0,95,105,110,109,105,100,105,95,114,101,97,108,116,105,109,101,105,110,0,95,109,105,100,105,111,117,116,95,110,101, 119,0,95,109,105,100,105,111,117,116,95,102,108,111,97,116,0,95,109,105,100,105,111,117,116,95,115,101,116,117,112,0,95,110,111,116,101,111,117,116,95,110,101,119,0,95,110,111,116,101,111,117,116,95,102,108,111,97,116,0,95,110,111,116,101,111,117,116, 95,115,101,116,117,112,0,95,99,116,108,111,117,116,95,110,101,119,0,95,99,116,108,111,117,116,95,102,108,111,97,116,0,95,99,116,108,111,117,116,95,115,101,116,117,112,0,95,112,103,109,111,117,116,95,110,101,119,0,95,112,103,109,111,117,116,95,102,108, 111,97,116,0,95,112,103,109,111,117,116,95,115,101,116,117,112,0,95,98,101,110,100,111,117,116,95,110,101,119,0,95,98,101,110,100,111,117,116,95,102,108,111,97,116,0,95,98,101,110,100,111,117,116,95,115,101,116,117,112,0,95,116,111,117,99,104,111,117, 116,95,110,101,119,0,95,116,111,117,99,104,111,117,116,95,102,108,111,97,116,0,95,116,111,117,99,104,111,117,116,95,115,101,116,117,112,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,110,101,119,0,95,112,111,108,121,116,111,117,99,104,111,117, 116,95,102,108,111,97,116,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,115,101,116,117,112,0,95,109,97,107,101,110,111,116,101,95,110,101,119,0,95,109,97,107,101,110,111,116,101,95,116,105,99,107,0,95,109,97,107,101,110,111,116,101,95,102,108, 111,97,116,0,95,109,97,107,101,110,111,116,101,95,115,116,111,112,0,95,109,97,107,101,110,111,116,101,95,99,108,101,97,114,0,95,109,97,107,101,110,111,116,101,95,115,101,116,117,112,0,95,115,116,114,105,112,110,111,116,101,95,110,101,119,0,95,115,116, 114,105,112,110,111,116,101,95,102,108,111,97,116,0,95,115,116,114,105,112,110,111,116,101,95,115,101,116,117,112,0,95,112,111,108,121,95,110,101,119,0,95,112,111,108,121,95,102,108,111,97,116,0,95,112,111,108,121,95,115,116,111,112,0,95,112,111,108, 121,95,99,108,101,97,114,0,95,112,111,108,121,95,102,114,101,101,0,95,112,111,108,121,95,115,101,116,117,112,0,95,98,97,103,95,110,101,119,0,95,98,97,103,95,102,108,111,97,116,0,95,98,97,103,95,102,108,117,115,104,0,95,98,97,103,95,99,108,101,97,114, 0,95,98,97,103,95,115,101,116,117,112,0,95,120,95,109,105,100,105,95,115,101,116,117,112,0,95,99,111,117,110,116,46,51,51,55,51,0,95,112,114,101,118,46,51,51,55,50,0,95,109,105,100,105,105,110,95,115,121,109,0,95,115,121,115,101,120,105,110,95,115,121, 109,0,95,109,105,100,105,105,110,95,99,108,97,115,115,0,95,115,121,115,101,120,105,110,95,99,108,97,115,115,0,95,110,111,116,101,105,110,95,115,121,109,0,95,110,111,116,101,105,110,95,99,108,97,115,115,0,95,99,116,108,105,110,95,115,121,109,0,95,99,116, 108,105,110,95,99,108,97,115,115,0,95,112,103,109,105,110,95,115,121,109,0,95,112,103,109,105,110,95,99,108,97,115,115,0,95,98,101,110,100,105,110,95,115,121,109,0,95,98,101,110,100,105,110,95,99,108,97,115,115,0,95,116,111,117,99,104,105,110,95,115, 121,109,0,95,116,111,117,99,104,105,110,95,99,108,97,115,115,0,95,112,111,108,121,116,111,117,99,104,105,110,95,115,121,109,0,95,112,111,108,121,116,111,117,99,104,105,110,95,99,108,97,115,115,0,95,109,105,100,105,99,108,107,105,110,95,115,121,109,0, 95,109,105,100,105,99,108,107,105,110,95,99,108,97,115,115,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,115,121,109,0,95,109,105,100,105,114,101,97,108,116,105,109,101,105,110,95,99,108,97,115,115,0,95,109,105,100,105,111,117,116,95, 99,108,97,115,115,0,95,110,111,116,101,111,117,116,95,99,108,97,115,115,0,95,99,116,108,111,117,116,95,99,108,97,115,115,0,95,112,103,109,111,117,116,95,99,108,97,115,115,0,95,98,101,110,100,111,117,116,95,99,108,97,115,115,0,95,116,111,117,99,104,111, 117,116,95,99,108,97,115,115,0,95,112,111,108,121,116,111,117,99,104,111,117,116,95,99,108,97,115,115,0,95,109,97,107,101,110,111,116,101,95,99,108,97,115,115,0,95,115,116,114,105,112,110,111,116,101,95,99,108,97,115,115,0,95,112,111,108,121,95,99,108, 97,115,115,0,95,98,97,103,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,109,105,115,99,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100, 47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,109,105,115,99,46,111,0,95,109,97,107,101,115,101,101,100,0,95,114,97,110,100,111,109,95,110,101,119,0,95,114,97,110,100,111,109,95,98,97,110,103,0,95,114,97,110,100,111, 109,95,115,101,101,100,0,95,114,97,110,100,111,109,95,115,101,116,117,112,0,95,108,111,97,100,98,97,110,103,95,110,101,119,0,95,108,111,97,100,98,97,110,103,95,108,111,97,100,98,97,110,103,0,95,108,111,97,100,98,97,110,103,95,115,101,116,117,112,0,95, 110,97,109,101,99,97,110,118,97,115,95,110,101,119,0,95,110,97,109,101,99,97,110,118,97,115,95,102,114,101,101,0,95,110,97,109,101,99,97,110,118,97,115,95,115,101,116,117,112,0,95,115,101,114,105,97,108,95,102,108,111,97,116,0,95,115,101,114,105,97,108, 95,110,101,119,0,95,115,101,114,105,97,108,95,115,101,116,117,112,0,95,99,112,117,116,105,109,101,95,98,97,110,103,0,95,99,112,117,116,105,109,101,95,98,97,110,103,50,0,95,99,112,117,116,105,109,101,95,110,101,119,0,95,99,112,117,116,105,109,101,95,115, 101,116,117,112,0,95,114,101,97,108,116,105,109,101,95,98,97,110,103,0,95,114,101,97,108,116,105,109,101,95,98,97,110,103,50,0,95,114,101,97,108,116,105,109,101,95,110,101,119,0,95,114,101,97,108,116,105,109,101,95,115,101,116,117,112,0,95,120,95,109, 105,115,99,95,115,101,116,117,112,0,95,114,97,110,100,111,109,95,110,101,120,116,115,101,101,100,46,53,51,56,48,0,95,114,97,110,100,111,109,95,99,108,97,115,115,0,95,108,111,97,100,98,97,110,103,95,99,108,97,115,115,0,95,110,97,109,101,99,97,110,118, 97,115,95,99,108,97,115,115,0,95,115,101,114,105,97,108,95,99,108,97,115,115,0,95,99,112,117,116,105,109,101,95,99,108,97,115,115,0,95,114,101,97,108,116,105,109,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,110, 101,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,110,101,116,46,111,0,95,110,101, 116,115,101,110,100,95,110,101,119,0,95,110,101,116,115,101,110,100,95,99,111,110,110,101,99,116,0,95,95,79,83,83,119,97,112,73,110,116,49,54,0,95,110,101,116,115,101,110,100,95,100,105,115,99,111,110,110,101,99,116,0,95,110,101,116,115,101,110,100,95, 115,101,110,100,0,95,110,101,116,115,101,110,100,95,102,114,101,101,0,95,110,101,116,115,101,110,100,95,115,101,116,117,112,0,95,110,101,116,114,101,99,101,105,118,101,95,110,111,116,105,102,121,0,95,110,101,116,114,101,99,101,105,118,101,95,100,111, 105,116,0,95,110,101,116,114,101,99,101,105,118,101,95,99,111,110,110,101,99,116,112,111,108,108,0,95,110,101,116,114,101,99,101,105,118,101,95,110,101,119,0,95,110,101,116,114,101,99,101,105,118,101,95,102,114,101,101,0,95,110,101,116,114,101,99,101, 105,118,101,95,115,101,116,117,112,0,95,120,95,110,101,116,95,115,101,116,117,112,0,95,112,108,101,97,115,101,119,97,114,110,46,52,52,50,57,0,95,108,97,115,116,119,97,114,110,116,105,109,101,46,52,52,50,56,0,95,110,101,116,115,101,110,100,95,99,108,97, 115,115,0,95,110,101,116,114,101,99,101,105,118,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,113,108,105,115,116,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114, 111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,113,108,105,115,116,46,111,0,95,113,108,105,115,116,95,110,101,119,0,95,113,108,105,115,116,95,114,101,119,105,110,100,0,95,113,108,105,115, 116,95,100,111,110,101,120,116,0,95,113,108,105,115,116,95,110,101,120,116,0,95,113,108,105,115,116,95,98,97,110,103,0,95,113,108,105,115,116,95,116,105,99,107,0,95,113,108,105,115,116,95,97,100,100,0,95,113,108,105,115,116,95,97,100,100,50,0,95,113, 108,105,115,116,95,99,108,101,97,114,0,95,113,108,105,115,116,95,115,101,116,0,95,113,108,105,115,116,95,114,101,97,100,0,95,113,108,105,115,116,95,119,114,105,116,101,0,95,113,108,105,115,116,95,112,114,105,110,116,0,95,113,108,105,115,116,95,116,101, 109,112,111,0,95,113,108,105,115,116,95,102,114,101,101,0,95,116,101,120,116,102,105,108,101,95,110,101,119,0,95,116,101,120,116,102,105,108,101,95,98,97,110,103,0,95,116,101,120,116,102,105,108,101,95,114,101,119,105,110,100,0,95,116,101,120,116,102, 105,108,101,95,102,114,101,101,0,95,120,95,113,108,105,115,116,95,115,101,116,117,112,0,95,113,108,105,115,116,95,99,108,97,115,115,0,95,116,101,120,116,102,105,108,101,95,99,108,97,115,115,0,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,116, 105,109,101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,112,117,114,101,45,100,97,116,97,47,115,114,99,47,120,95,116,105,109,101,46,111,0,95, 100,101,108,97,121,95,98,97,110,103,0,95,100,101,108,97,121,95,115,116,111,112,0,95,100,101,108,97,121,95,102,116,49,0,95,100,101,108,97,121,95,102,108,111,97,116,0,95,100,101,108,97,121,95,116,105,99,107,0,95,100,101,108,97,121,95,102,114,101,101,0, 95,100,101,108,97,121,95,110,101,119,0,95,100,101,108,97,121,95,115,101,116,117,112,0,95,109,101,116,114,111,95,116,105,99,107,0,95,109,101,116,114,111,95,102,108,111,97,116,0,95,109,101,116,114,111,95,98,97,110,103,0,95,109,101,116,114,111,95,115,116, 111,112,0,95,109,101,116,114,111,95,102,116,49,0,95,109,101,116,114,111,95,102,114,101,101,0,95,109,101,116,114,111,95,110,101,119,0,95,109,101,116,114,111,95,115,101,116,117,112,0,95,108,105,110,101,95,116,105,99,107,0,95,108,105,110,101,95,102,108, 111,97,116,0,95,108,105,110,101,95,102,116,49,0,95,108,105,110,101,95,115,116,111,112,0,95,108,105,110,101,95,115,101,116,0,95,108,105,110,101,95,102,114,101,101,0,95,108,105,110,101,95,110,101,119,0,95,108,105,110,101,95,115,101,116,117,112,0,95,116, 105,109,101,114,95,98,97,110,103,0,95,116,105,109,101,114,95,98,97,110,103,50,0,95,116,105,109,101,114,95,110,101,119,0,95,116,105,109,101,114,95,115,101,116,117,112,0,95,112,105,112,101,95,110,101,119,0,95,104,97,110,103,95,102,114,101,101,0,95,104, 97,110,103,95,116,105,99,107,0,95,112,105,112,101,95,108,105,115,116,0,95,112,105,112,101,95,102,108,117,115,104,0,95,112,105,112,101,95,99,108,101,97,114,0,95,112,105,112,101,95,115,101,116,117,112,0,95,120,95,116,105,109,101,95,115,101,116,117,112, 0,95,100,101,108,97,121,95,99,108,97,115,115,0,95,109,101,116,114,111,95,99,108,97,115,115,0,95,108,105,110,101,95,99,108,97,115,115,0,95,116,105,109,101,114,95,99,108,97,115,115,0,95,112,105,112,101,95,99,108,97,115,115,0,108,105,98,112,100,95,119,114, 97,112,112,101,114,47,115,95,108,105,98,112,100,109,105,100,105,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,108,105,98,112,100,95,119,114,97, 112,112,101,114,47,115,95,108,105,98,112,100,109,105,100,105,46,111,0,95,111,117,116,109,105,100,105,95,110,111,116,101,111,110,0,95,111,117,116,109,105,100,105,95,99,111,110,116,114,111,108,99,104,97,110,103,101,0,95,111,117,116,109,105,100,105,95,112, 114,111,103,114,97,109,99,104,97,110,103,101,0,95,111,117,116,109,105,100,105,95,112,105,116,99,104,98,101,110,100,0,95,111,117,116,109,105,100,105,95,97,102,116,101,114,116,111,117,99,104,0,95,111,117,116,109,105,100,105,95,112,111,108,121,97,102,116, 101,114,116,111,117,99,104,0,95,111,117,116,109,105,100,105,95,98,121,116,101,0,95,115,121,115,95,103,101,116,95,109,105,100,105,95,97,112,105,115,0,95,115,121,115,95,108,105,115,116,109,105,100,105,100,101,118,115,0,95,115,121,115,95,103,101,116,95, 109,105,100,105,95,112,97,114,97,109,115,0,95,115,121,115,95,111,112,101,110,95,109,105,100,105,0,95,115,121,115,95,99,108,111,115,101,95,109,105,100,105,0,95,115,121,115,95,114,101,111,112,101,110,95,109,105,100,105,0,95,115,121,115,95,105,110,105,116, 109,105,100,105,113,117,101,117,101,0,95,115,121,115,95,112,111,108,108,109,105,100,105,113,117,101,117,101,0,95,115,121,115,95,115,101,116,109,105,100,105,116,105,109,101,100,105,102,102,0,95,103,108,111,98,95,109,105,100,105,95,115,101,116,97,112,105, 0,95,103,108,111,98,95,109,105,100,105,95,112,114,111,112,101,114,116,105,101,115,0,95,103,108,111,98,95,109,105,100,105,95,100,105,97,108,111,103,0,108,105,98,112,100,95,119,114,97,112,112,101,114,47,120,95,108,105,98,112,100,114,101,99,101,105,118, 101,46,99,0,47,85,115,101,114,115,47,114,117,115,115,114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,108,105,98,112,100,95,119,114,97,112,112,101,114,47,120,95,108,105,98,112,100,114,101,99,101, 105,118,101,46,111,0,95,108,105,98,112,100,114,101,99,98,97,110,103,0,95,108,105,98,112,100,114,101,99,102,108,111,97,116,0,95,108,105,98,112,100,114,101,99,115,121,109,98,111,108,0,95,108,105,98,112,100,114,101,99,112,111,105,110,116,101,114,0,95,108, 105,98,112,100,114,101,99,108,105,115,116,0,95,108,105,98,112,100,114,101,99,97,110,121,116,104,105,110,103,0,95,108,105,98,112,100,114,101,99,101,105,118,101,95,102,114,101,101,0,95,108,105,98,112,100,114,101,99,101,105,118,101,95,110,101,119,0,95,108, 105,98,112,100,114,101,99,101,105,118,101,95,115,101,116,117,112,0,95,108,105,98,112,100,114,101,99,95,99,108,97,115,115,0,108,105,98,112,100,95,119,114,97,112,112,101,114,47,122,95,108,105,98,112,100,46,99,0,47,85,115,101,114,115,47,114,117,115,115, 114,117,115,115,47,112,114,111,106,47,109,112,114,111,103,47,108,105,98,112,100,47,108,105,98,112,100,47,108,105,98,112,100,95,119,114,97,112,112,101,114,47,122,95,108,105,98,112,100,46,111,0,95,103,101,116,95,111,98,106,101,99,116,0,95,108,105,98,112, 100,95,105,110,105,116,0,95,108,105,98,112,100,95,99,108,101,97,114,95,115,101,97,114,99,104,95,112,97,116,104,0,95,108,105,98,112,100,95,97,100,100,95,116,111,95,115,101,97,114,99,104,95,112,97,116,104,0,95,108,105,98,112,100,95,105,110,105,116,95,97, 117,100,105,111,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,114,97,119,0,95,95,95,105,110,108,105,110,101,95,109,101,109,115,101,116,95,99,104,107,0,95,95,95,105,110,108,105,110,101,95,109,101,109,99,112,121,95,99,104,107,0,95,108,105,98, 112,100,95,112,114,111,99,101,115,115,95,115,104,111,114,116,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,102,108,111,97,116,0,95,108,105,98,112,100,95,112,114,111,99,101,115,115,95,100,111,117,98,108,101,0,95,108,105,98,112,100,95,115,116, 97,114,116,95,109,101,115,115,97,103,101,0,95,108,105,98,112,100,95,97,100,100,95,102,108,111,97,116,0,95,108,105,98,112,100,95,97,100,100,95,115,121,109,98,111,108,0,95,108,105,98,112,100,95,102,105,110,105,115,104,95,108,105,115,116,0,95,108,105,98, 112,100,95,102,105,110,105,115,104,95,109,101,115,115,97,103,101,0,95,108,105,98,112,100,95,98,105,110,100,0,95,108,105,98,112,100,95,117,110,98,105,110,100,0,95,108,105,98,112,100,95,115,121,109,98,111,108,0,95,108,105,98,112,100,95,102,108,111,97,116, 0,95,108,105,98,112,100,95,98,97,110,103,0,95,108,105,98,112,100,95,98,108,111,99,107,115,105,122,101,0,95,108,105,98,112,100,95,101,120,105,115,116,115,0,95,108,105,98,112,100,95,110,111,116,101,111,110,0,95,108,105,98,112,100,95,99,111,110,116,114, 111,108,99,104,97,110,103,101,0,95,108,105,98,112,100,95,112,114,111,103,114,97,109,99,104,97,110,103,101,0,95,108,105,98,112,100,95,112,105,116,99,104,98,101,110,100,0,95,108,105,98,112,100,95,97,102,116,101,114,116,111,117,99,104,0,95,108,105,98,112, 100,95,112,111,108,121,97,102,116,101,114,116,111,117,99,104,0,95,108,105,98,112,100,95,109,105,100,105,98,121,116,101,0,95,108,105,98,112,100,95,115,121,115,101,120,0,95,108,105,98,112,100,95,115,121,115,114,101,97,108,116,105,109,101,0,95,108,105,98, 112,100,95,111,112,101,110,102,105,108,101,0,95,108,105,98,112,100,95,99,108,111,115,101,102,105,108,101,0,95,108,105,98,112,100,95,103,101,116,100,111,108,108,97,114,122,101,114,111,0,95,102,108,111,97,116,95,116,111,95,115,104,111,114,116,0,95,115, 104,111,114,116,95,116,111,95,102,108,111,97,116,0,95,108,105,98,112,100,95,112,114,105,110,116,104,111,111,107,0,95,108,105,98,112,100,95,98,97,110,103,104,111,111,107,0,95,108,105,98,112,100,95,102,108,111,97,116,104,111,111,107,0,95,108,105,98,112, 100,95,115,121,109,98,111,108,104,111,111,107,0,95,108,105,98,112,100,95,108,105,115,116,104,111,111,107,0,95,108,105,98,112,100,95,109,101,115,115,97,103,101,104,111,111,107,0,95,108,105,98,112,100,95,110,111,116,101,111,110,104,111,111,107,0,95,108, 105,98,112,100,95,99,111,110,116,114,111,108,99,104,97,110,103,101,104,111,111,107,0,95,108,105,98,112,100,95,112,114,111,103,114,97,109,99,104,97,110,103,101,104,111,111,107,0,95,108,105,98,112,100,95,112,105,116,99,104,98,101,110,100,104,111,111,107, 0,95,108,105,98,112,100,95,97,102,116,101,114,116,111,117,99,104,104,111,111,107,0,95,108,105,98,112,100,95,112,111,108,121,97,102,116,101,114,116,111,117,99,104,104,111,111,107,0,95,108,105,98,112,100,95,109,105,100,105,98,121,116,101,104,111,111,107, 0,95,116,105,99,107,115,95,112,101,114,95,98,117,102,102,101,114,0,95,97,114,103,118,0,95,99,117,114,114,0,95,97,114,103,99,0,0,0,0,0 }; const char* BinaryData::libpd_dylib = (const char*) temp_3bcf81c2;
[ [ [ 1, 24853 ] ] ]
41446dde10662ec847fb4243f2f222ef029b93f1
5ac13fa1746046451f1989b5b8734f40d6445322
/minimangalore/Nebula2/code/contrib/nspatialdb/src/spatialdb/nvisiblefrustumvisitor.cc
8a18472917ce7bf67a63b48ed8005d6e859b6e06
[]
no_license
moltenguy1/minimangalore
9f2edf7901e7392490cc22486a7cf13c1790008d
4d849672a6f25d8e441245d374b6bde4b59cbd48
refs/heads/master
2020-04-23T08:57:16.492734
2009-08-01T09:13:33
2009-08-01T09:13:33
35,933,330
0
0
null
null
null
null
UTF-8
C++
false
false
2,786
cc
//-------------------------------------------------- // nvisiblefrustumvisitor.cc // (C) 2004 Gary Haussmann //-------------------------------------------------- #include "spatialdb/nvisiblefrustumvisitor.h" #include "gfx2/ngfxserver2.h" nVisibleFrustumVisitor::nVisibleFrustumVisitor(const nCamera2 &cameraprojection, const matrix44 &cameratransform) : nVisibilityVisitor(cameratransform.pos_component()), m_cameraprojection(cameraprojection) { // initialize the view frustum, matrix, etc. m_viewertransformstack.PushBack(cameratransform); nFrustumClipper clipper(m_cameraprojection, cameratransform); m_viewfrustumstack.PushBack(clipper); } nVisibleFrustumVisitor::~nVisibleFrustumVisitor() { } void nVisibleFrustumVisitor::Reset() { // the stacks should be size 1 at this point n_assert(m_viewertransformstack.Size() == 1); n_assert(m_viewfrustumstack.Size() == 1); nVisibilityVisitor::Reset(); } void nVisibleFrustumVisitor::Reset(const nCamera2 &newcamera, const matrix44 &newxform) { m_cameraprojection = newcamera; nVisibilityVisitor::Reset(newxform.pos_component()); m_viewertransformstack.Clear(); m_viewfrustumstack.Clear(); m_viewertransformstack.PushBack(newxform); nFrustumClipper clipper(m_cameraprojection, newxform); m_viewfrustumstack.PushBack(clipper); } void nVisibleFrustumVisitor::StartVisualizeDebug(nGfxServer2 *gfx2) { nVisibilityVisitor::StartVisualizeDebug(gfx2); m_viewfrustumstack.Back().VisualizeFrustum(gfx2, vector4(1.0,0.0,1.0,0.5)); } void nVisibleFrustumVisitor::Visit(nSpatialElement *visitee) { } VisitorFlags nVisibleFrustumVisitor::VisibilityTest(const bbox3 &testbox, VisitorFlags flags) { nFrustumClipper &clipper = GetFrustumClipper(); return clipper.TestBBox(testbox, flags); } VisitorFlags nVisibleFrustumVisitor::VisibilityTest(const sphere &testsphere, VisitorFlags flags) { // test against the current frustum clipper nFrustumClipper &clipper = GetFrustumClipper(); return clipper.TestSphere(testsphere, flags); } void nVisibleFrustumVisitor::EnterLocalSpace(matrix44 &warp) { // transform the camera and generate a new frustum for the local space matrix44 newtransform = warp * GetCameraTransform(); m_viewertransformstack.PushBack(newtransform); nFrustumClipper newfrustum(m_cameraprojection, newtransform); m_viewfrustumstack.PushBack(newfrustum); nVisibilityVisitor::EnterLocalSpace(warp); } void nVisibleFrustumVisitor::LeaveLocalSpace() { m_viewertransformstack.Erase(m_viewertransformstack.End()-1); m_viewfrustumstack.Erase(m_viewfrustumstack.End()-1); nVisibilityVisitor::LeaveLocalSpace(); }
[ "BawooiT@d1c0eb94-fc07-11dd-a7be-4b3ef3b0700c" ]
[ [ [ 1, 89 ] ] ]
cc5ac3f7415b74200f0e7b1365b958e5f617cae9
36bf908bb8423598bda91bd63c4bcbc02db67a9d
/Include/CPaintLib.h
12371931de4b91215b0ef83d8351b8a048d16b7c
[]
no_license
code4bones/crawlpaper
edbae18a8b099814a1eed5453607a2d66142b496
f218be1947a9791b2438b438362bc66c0a505f99
refs/heads/master
2021-01-10T13:11:23.176481
2011-04-14T11:04:17
2011-04-14T11:04:17
44,686,513
0
1
null
null
null
null
UTF-8
C++
false
false
2,358
h
/* CPaintLib.h Classe derivata per interfaccia con paintlib. Luca Piergentili, 01/09/00 [email protected] Ad memoriam - Nemo me impune lacessit. */ #ifndef _CPAINTLIB_H #define _CPAINTLIB_H 1 #include "window.h" #include "ImageConfig.h" #ifdef HAVE_PAINTLIB_LIBRARY #include "ImageLibraryName.h" #include "CImage.h" #include "CImageParams.h" #include "paintlib.h" /* CPaintLib */ class CPaintLib : public CImage { public: CPaintLib(); virtual ~CPaintLib() {} LPCSTR GetLibraryName (void); UINT GetWidth (void); UINT GetHeight (void); float GetXRes (void); float GetYRes (void); void SetXRes (float nXRes); void SetYRes (float nYRes); int GetURes (void); void SetURes (UINT); void GetDPI (float&,float&); int GetCompression (void); void SetCompression (int); UINT GetNumColors (void); UINT GetBPP (void); UINT ConvertToBPP (UINT nBitsPerPixel,UINT nFlags,RGBQUAD *pPalette,UINT nColors); COLORREF GetPixel (UINT x,UINT y); void SetPixel (UINT x,UINT y,COLORREF colorref); void* GetPixels (void); LPBITMAPINFO GetBMI (void); HBITMAP GetBitmap (void); UINT GetMemUsed (void); HDIB GetDIB (DIBINFO* pDibInfo = NULL); BOOL SetDIB (HDIB hDib,DIBINFO* pDibInfo = NULL); int GetDIBOrder (void); BOOL SetPalette (UINT nIndex,UINT nColors,RGBQUAD* pPalette); BOOL Create (BITMAPINFO* pBitmapInfo,void *pData = NULL); BOOL Load (LPCSTR lpcszFileName); BOOL Save (void); BOOL Save (LPCSTR lpcszFileName,LPCSTR lpcszFormat,DWORD dwFlags); BOOL Stretch (RECT& drawRect,BOOL bAspectRatio = TRUE); BOOL SetImageParamsDefaultValues(CImageParams*); BOOL SetImageParamsMinMax(CImageParams*); UINT Grayscale (CImageParams*); UINT Halftone (CImageParams*); UINT Invert (CImageParams*); UINT Rotate90Left (CImageParams*); UINT Rotate90Right (CImageParams*); UINT Rotate180 (CImageParams*); UINT Size (CImageParams*); protected: BOOL _Load (LPCSTR lpcszFileName); BOOL _Save (LPCSTR lpcszFileName,LPCSTR lpcszFormat,DWORD dwFlags); void Rotate (double); BOOL ConvertToBPP (UINT nBPP); CWinBmp m_Image; }; #endif // HAVE_PAINTLIB_LIBRARY #endif // _CPAINTLIB_H
[ [ [ 1, 90 ] ] ]
82f258510b206bf898f8f269d96aaa897840d40b
6a2f859a41525c5512f9bf650db68bcd7d95748d
/TP2/ex3/R0/inc/lexer.hpp
930f52d69490d1586e6a8665b8be34eb880b932c
[]
no_license
Bengrunt/mif12-2009
21df06941a6a1e844372eb01f4911b1ef232b306
d4f02f1aab82065c8184facf859fe80233bc46b5
refs/heads/master
2021-01-23T13:48:47.238211
2009-12-04T22:52:25
2009-12-04T22:52:25
32,153,296
0
0
null
null
null
null
ISO-8859-1
C++
false
false
426
hpp
#ifndef LEXER_INCLUDED #define LEXER_INCLUDED /* Inclusion des bibliothèques C++ standard */ #include <iostream> #include <vector> /* Inclusion des bibliothèques du projet. */ #include "TableDesIdentificateurs.hpp" #include "ListeIdentificateurs.hpp" #include "Type.hpp" #include "TypeArray.hpp" #include "TypeInterval.hpp" #include "TypePointer.hpp" #include "parser.hpp" int yyerror(char* m); #endif
[ [ [ 1, 12 ], [ 14, 19 ] ], [ [ 13, 13 ] ] ]
22470c091798e23b82ee062d41f0c176902deb76
dda0d7bb4153bcd98ad5e32e4eac22dc974b8c9d
/udt_server/udt_server.h
9a84c00d952a53529f2ab884996d3405b0a61516
[ "BSD-3-Clause" ]
permissive
systembugtj/crash-report
abd45ceedc08419a3465414ad9b3b6a5d6c6729a
205b087e79eb8ed7a9b6a7c9f4ac580707e9cb7e
refs/heads/master
2021-01-19T07:08:04.878028
2011-04-05T04:03:54
2011-04-05T04:03:54
35,228,814
1
0
null
null
null
null
UTF-8
C++
false
false
514
h
#ifndef UDT_SERVER_H_ #define UDT_SERVER_H_ #include <iostream> #include <string> #include <winsock2.h> #include <ws2tcpip.h> #include <wspiapi.h> #include "udt/udt.h" class CrashReportUdtServer { public: CrashReportUdtServer(const std::string& port, const std::string& save_dir); ~CrashReportUdtServer(); bool Listen(); void Run(); static DWORD WINAPI ReceiveCrashReport(LPVOID usocket); private: UDTSOCKET listen_sock_; std::string save_dir_; std::string port_; }; #endif // UDT_SERVER_H_
[ "[email protected]@9307afbf-8b4c-5d34-949b-c69a0924eb0b" ]
[ [ [ 1, 25 ] ] ]
6d424a64df1d6089ae330a2e4bc76050abbf5664
81488d2175ab16c6c942054fa3dcdc7cdce8d8df
/ofxMagnetic/src/ofxMagneticBlobs.h
a5b3acadfcc536a73c93c4a38e31c661f6aa4ebb
[]
no_license
devert/ofxmagnetic
fbaabd0389c9ac4c23683d353b47bfda25c6f33f
b6f1d9ccf744b6c45009ddafa9aa0af02ddddd9c
refs/heads/master
2020-04-04T05:00:16.008427
2010-11-03T23:42:57
2010-11-03T23:42:57
32,811,146
1
0
null
null
null
null
UTF-8
C++
false
false
728
h
#ifndef _MAGNETIC_BLOBS #define _MAGNETIC_BLOBS #include "ofxMagneticPeak.h" #include "ofxMagneticBlob.h" #include "ofTypes.h" #include <vector> // Blob manager class ofxMagneticBlobs { public: // Next ID int ID; int peakID; // Radius of peak points int peakRadius; // Peaks and blobs vector<ofxMagneticBlob> BlobList; vector<ofxMagneticPeak> PeakList; // Functions void set(ofxMagneticBlob blob); void update(int &frame); bool intersect(ofxMagneticBlob* blobA, ofxMagneticBlob* blobB); bool intersect(ofxMagneticPeak* peakA, ofxMagneticPeak* peakB); private: // Functions void append(ofxMagneticBlob blob); }; #endif
[ "[email protected]@70826fe1-adc8-3e30-cfb8-25ad2d9f667f" ]
[ [ [ 1, 39 ] ] ]
916f261060919769c0c8613d1a42e918714e1bcb
b6c9433cefda8cfe76c8cb6550bf92dde38e68a8
/epoc32/include/tools/stlport/stl/_bitset.h
cafeb4f8cb126bbdb5477ddbdd5469dcec110919
[]
no_license
fedor4ever/public-headers
667f8b9d0dc70aa3d52d553fd4cbd5b0a532835f
3666a83565a8de1b070f5ac0b22cc0cbd59117a4
refs/heads/master
2021-01-01T05:51:44.592006
2010-03-31T11:33:34
2010-03-31T11:33:34
33,378,397
0
0
null
null
null
null
UTF-8
C++
false
false
24,193
h
/* * Copyright (c) 1998 * Silicon Graphics Computer Systems, Inc. * * Copyright (c) 1999 * Boris Fomitchev * * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was * modified is included with the above copyright notice. * */ #ifndef _STLP_BITSET_H #define _STLP_BITSET_H // A bitset of size N has N % (sizeof(unsigned long) * CHAR_BIT) unused // bits. (They are the high- order bits in the highest word.) It is // a class invariant of class bitset<> that those unused bits are // always zero. // Most of the actual code isn't contained in bitset<> itself, but in the // base class _Base_bitset. The base class works with whole words, not with // individual bits. This allows us to specialize _Base_bitset for the // important special case where the bitset is only a single word. // The C++ standard does not define the precise semantics of operator[]. // In this implementation the const version of operator[] is equivalent // to test(), except that it does no range checking. The non-const version // returns a reference to a bit, again without doing any range checking. #ifndef _STLP_INTERNAL_ALGOBASE_H # include <stl/_algobase.h> #endif #ifndef _STLP_INTERNAL_ALLOC_H # include <stl/_alloc.h> #endif #ifndef _STLP_INTERNAL_ITERATOR_H # include <stl/_iterator.h> #endif #ifndef _STLP_INTERNAL_UNINITIALIZED_H # include <stl/_uninitialized.h> #endif #ifndef _STLP_RANGE_ERRORS_H # include <stl/_range_errors.h> #endif #ifndef _STLP_INTERNAL_STRING_H # include <stl/_string.h> #endif #define __BITS_PER_WORD (CHAR_BIT*sizeof(unsigned long)) #define __BITSET_WORDS(__n) ((__n + __BITS_PER_WORD - 1)/__BITS_PER_WORD) _STLP_BEGIN_NAMESPACE _STLP_MOVE_TO_PRIV_NAMESPACE // structure to aid in counting bits class _STLP_CLASS_DECLSPEC _Bs_G { public: //returns the number of bit set within the buffer between __beg and __end. static size_t _S_count(const unsigned char *__beg, const unsigned char *__end) #if defined (_STLP_USE_NO_IOSTREAMS) { size_t __result = 0; for (; __beg != __end; ++__beg) { for (size_t i = 0; i < (sizeof(unsigned char) * 8); ++i) { if ((*__beg & (1 << i)) != 0) { ++__result; } } } return __result; } #else ; #endif // Mapping from 8 bit unsigned integers to the index of the first one bit set: static unsigned char _S_first_one(unsigned char __x) #if defined (_STLP_USE_NO_IOSTREAMS) { for (unsigned char i = 0; i < (sizeof(unsigned char) * 8); ++i) { if ((__x & (1 << i)) != 0) { return i; } } return 0; } #else ; #endif }; // // Base class: general case. // template<size_t _Nw> struct _Base_bitset { typedef unsigned long _WordT; _WordT _M_w[_Nw]; // 0 is the least significant word. _Base_bitset() { _M_do_reset(); } _Base_bitset(unsigned long __val) { _M_do_reset(); _M_w[0] = __val; } static size_t _STLP_CALL _S_whichword( size_t __pos ) { return __pos / __BITS_PER_WORD; } static size_t _STLP_CALL _S_whichbyte( size_t __pos ) { return (__pos % __BITS_PER_WORD) / CHAR_BIT; } static size_t _STLP_CALL _S_whichbit( size_t __pos ) { return __pos % __BITS_PER_WORD; } static _WordT _STLP_CALL _S_maskbit( size_t __pos ) { return __STATIC_CAST(_WordT,1) << _S_whichbit(__pos); } _WordT& _M_getword(size_t __pos) { return _M_w[_S_whichword(__pos)]; } _WordT _M_getword(size_t __pos) const { return _M_w[_S_whichword(__pos)]; } _WordT& _M_hiword() { return _M_w[_Nw - 1]; } _WordT _M_hiword() const { return _M_w[_Nw - 1]; } void _M_do_and(const _Base_bitset<_Nw>& __x) { for ( size_t __i = 0; __i < _Nw; __i++ ) { _M_w[__i] &= __x._M_w[__i]; } } void _M_do_or(const _Base_bitset<_Nw>& __x) { for ( size_t __i = 0; __i < _Nw; __i++ ) { _M_w[__i] |= __x._M_w[__i]; } } void _M_do_xor(const _Base_bitset<_Nw>& __x) { for ( size_t __i = 0; __i < _Nw; __i++ ) { _M_w[__i] ^= __x._M_w[__i]; } } void _M_do_left_shift(size_t __shift); void _M_do_right_shift(size_t __shift); void _M_do_flip() { for ( size_t __i = 0; __i < _Nw; __i++ ) { _M_w[__i] = ~_M_w[__i]; } } void _M_do_set() { for ( size_t __i = 0; __i < _Nw; __i++ ) { _M_w[__i] = ~__STATIC_CAST(_WordT,0); } } void _M_do_reset() { memset(_M_w, 0, _Nw * sizeof(_WordT)); } bool _M_is_equal(const _Base_bitset<_Nw>& __x) const { for (size_t __i = 0; __i < _Nw; ++__i) { if (_M_w[__i] != __x._M_w[__i]) return false; } return true; } bool _M_is_any() const { for ( size_t __i = 0; __i < _Nw ; __i++ ) { if ( _M_w[__i] != __STATIC_CAST(_WordT,0) ) return true; } return false; } size_t _M_do_count() const { const unsigned char* __byte_ptr = (const unsigned char*)_M_w; const unsigned char* __end_ptr = (const unsigned char*)(_M_w+_Nw); return _Bs_G::_S_count(__byte_ptr, __end_ptr); } unsigned long _M_do_to_ulong() const; // find first "on" bit size_t _M_do_find_first(size_t __not_found) const; // find the next "on" bit that follows "prev" size_t _M_do_find_next(size_t __prev, size_t __not_found) const; }; // // Base class: specialization for a single word. // _STLP_TEMPLATE_NULL struct _Base_bitset<1UL> { typedef unsigned long _WordT; typedef _Base_bitset<1UL> _Self; _WordT _M_w; _Base_bitset( void ) : _M_w(0) {} _Base_bitset(unsigned long __val) : _M_w(__val) {} static size_t _STLP_CALL _S_whichword( size_t __pos ) { return __pos / __BITS_PER_WORD ; } static size_t _STLP_CALL _S_whichbyte( size_t __pos ) { return (__pos % __BITS_PER_WORD) / CHAR_BIT; } static size_t _STLP_CALL _S_whichbit( size_t __pos ) { return __pos % __BITS_PER_WORD; } static _WordT _STLP_CALL _S_maskbit( size_t __pos ) { return (__STATIC_CAST(_WordT,1)) << _S_whichbit(__pos); } _WordT& _M_getword(size_t) { return _M_w; } _WordT _M_getword(size_t) const { return _M_w; } _WordT& _M_hiword() { return _M_w; } _WordT _M_hiword() const { return _M_w; } void _M_do_and(const _Self& __x) { _M_w &= __x._M_w; } void _M_do_or(const _Self& __x) { _M_w |= __x._M_w; } void _M_do_xor(const _Self& __x) { _M_w ^= __x._M_w; } void _M_do_left_shift(size_t __shift) { _M_w <<= __shift; } void _M_do_right_shift(size_t __shift) { _M_w >>= __shift; } void _M_do_flip() { _M_w = ~_M_w; } void _M_do_set() { _M_w = ~__STATIC_CAST(_WordT,0); } void _M_do_reset() { _M_w = 0; } bool _M_is_equal(const _Self& __x) const { return _M_w == __x._M_w; } bool _M_is_any() const { return _M_w != 0; } size_t _M_do_count() const { const unsigned char* __byte_ptr = (const unsigned char*)&_M_w; const unsigned char* __end_ptr = ((const unsigned char*)&_M_w)+sizeof(_M_w); return _Bs_G::_S_count(__byte_ptr, __end_ptr); } unsigned long _M_do_to_ulong() const { return _M_w; } inline size_t _M_do_find_first(size_t __not_found) const; // find the next "on" bit that follows "prev" inline size_t _M_do_find_next(size_t __prev, size_t __not_found) const; }; // ------------------------------------------------------------ // // Definitions of should-be-non-inline functions from the single-word version of // _Base_bitset. // inline size_t _Base_bitset<1UL>::_M_do_find_first(size_t __not_found) const { // typedef unsigned long _WordT; _WordT __thisword = _M_w; if ( __thisword != __STATIC_CAST(_WordT,0) ) { // find byte within word for ( size_t __j = 0; __j < sizeof(_WordT); __j++ ) { unsigned char __this_byte = __STATIC_CAST(unsigned char,(__thisword & (~(unsigned char)0))); if ( __this_byte ) return __j*CHAR_BIT + _Bs_G::_S_first_one(__this_byte); __thisword >>= CHAR_BIT; } } // not found, so return a value that indicates failure. return __not_found; } inline size_t _Base_bitset<1UL>::_M_do_find_next(size_t __prev, size_t __not_found ) const { // make bound inclusive ++__prev; // check out of bounds if ( __prev >= __BITS_PER_WORD ) return __not_found; // search first (and only) word _WordT __thisword = _M_w; // mask off bits below bound __thisword &= (~__STATIC_CAST(_WordT,0)) << _S_whichbit(__prev); if ( __thisword != __STATIC_CAST(_WordT,0) ) { // find byte within word // get first byte into place __thisword >>= _S_whichbyte(__prev) * CHAR_BIT; for ( size_t __j = _S_whichbyte(__prev); __j < sizeof(_WordT); __j++ ) { unsigned char __this_byte = __STATIC_CAST(unsigned char,(__thisword & (~(unsigned char)0))); if ( __this_byte ) return __j*CHAR_BIT + _Bs_G::_S_first_one(__this_byte); __thisword >>= CHAR_BIT; } } // not found, so return a value that indicates failure. return __not_found; } // end _M_do_find_next // ------------------------------------------------------------ // Helper class to zero out the unused high-order bits in the highest word. template <size_t _Extrabits> struct _Sanitize { static void _STLP_CALL _M_do_sanitize(unsigned long& __val) { __val &= ~((~__STATIC_CAST(unsigned long,0)) << _Extrabits); } }; _STLP_TEMPLATE_NULL struct _Sanitize<0UL> { static void _STLP_CALL _M_do_sanitize(unsigned long) {} }; _STLP_MOVE_TO_STD_NAMESPACE // ------------------------------------------------------------ // Class bitset. // _Nb may be any nonzero number of type size_t. template<size_t _Nb> class bitset : public _STLP_PRIV _Base_bitset<__BITSET_WORDS(_Nb) > { public: enum { _Words = __BITSET_WORDS(_Nb) } ; private: typedef _STLP_PRIV _Base_bitset< _Words > _Base; void _M_do_sanitize() { _STLP_PRIV _Sanitize<_Nb%__BITS_PER_WORD >::_M_do_sanitize(this->_M_hiword()); } public: typedef unsigned long _WordT; struct reference; friend struct reference; // bit reference: struct reference { typedef _STLP_PRIV _Base_bitset<_Words > _Bitset_base; typedef bitset<_Nb> _Bitset; // friend _Bitset; _WordT *_M_wp; size_t _M_bpos; // should be left undefined reference() {} reference( _Bitset& __b, size_t __pos ) { _M_wp = &__b._M_getword(__pos); _M_bpos = _Bitset_base::_S_whichbit(__pos); } public: ~reference() {} // for b[i] = __x; reference& operator=(bool __x) { if ( __x ) *_M_wp |= _Bitset_base::_S_maskbit(_M_bpos); else *_M_wp &= ~_Bitset_base::_S_maskbit(_M_bpos); return *this; } // for b[i] = b[__j]; reference& operator=(const reference& __j) { if ( (*(__j._M_wp) & _Bitset_base::_S_maskbit(__j._M_bpos)) ) *_M_wp |= _Bitset_base::_S_maskbit(_M_bpos); else *_M_wp &= ~_Bitset_base::_S_maskbit(_M_bpos); return *this; } // flips the bit bool operator~() const { return (*(_M_wp) & _Bitset_base::_S_maskbit(_M_bpos)) == 0; } // for __x = b[i]; operator bool() const { return (*(_M_wp) & _Bitset_base::_S_maskbit(_M_bpos)) != 0; } // for b[i].flip(); reference& flip() { *_M_wp ^= _Bitset_base::_S_maskbit(_M_bpos); return *this; } }; // 23.3.5.1 constructors: bitset() {} bitset(unsigned long __val) : _STLP_PRIV _Base_bitset<_Words>(__val) { _M_do_sanitize(); } #if defined (_STLP_MEMBER_TEMPLATES) template<class _CharT, class _Traits, class _Alloc> explicit bitset(const basic_string<_CharT,_Traits,_Alloc>& __s, size_t __pos = 0) : _STLP_PRIV _Base_bitset<_Words >() { if (__pos > __s.size()) __stl_throw_out_of_range("bitset"); _M_copy_from_string(__s, __pos, basic_string<_CharT, _Traits, _Alloc>::npos); } template<class _CharT, class _Traits, class _Alloc> bitset(const basic_string<_CharT, _Traits, _Alloc>& __s, size_t __pos, size_t __n) : _STLP_PRIV _Base_bitset<_Words >() { if (__pos > __s.size()) __stl_throw_out_of_range("bitset"); _M_copy_from_string(__s, __pos, __n); } #else /* _STLP_MEMBER_TEMPLATES */ explicit bitset(const string& __s, size_t __pos = 0, size_t __n = (size_t)-1) : _STLP_PRIV _Base_bitset<_Words >() { if (__pos > __s.size()) __stl_throw_out_of_range("bitset"); _M_copy_from_string(__s, __pos, __n); } #endif /* _STLP_MEMBER_TEMPLATES */ // 23.3.5.2 bitset operations: bitset<_Nb>& operator&=(const bitset<_Nb>& __rhs) { this->_M_do_and(__rhs); return *this; } bitset<_Nb>& operator|=(const bitset<_Nb>& __rhs) { this->_M_do_or(__rhs); return *this; } bitset<_Nb>& operator^=(const bitset<_Nb>& __rhs) { this->_M_do_xor(__rhs); return *this; } bitset<_Nb>& operator<<=(size_t __pos) { this->_M_do_left_shift(__pos); this->_M_do_sanitize(); return *this; } bitset<_Nb>& operator>>=(size_t __pos) { this->_M_do_right_shift(__pos); this->_M_do_sanitize(); return *this; } // // Extension: // Versions of single-bit set, reset, flip, test with no range checking. // bitset<_Nb>& _Unchecked_set(size_t __pos) { this->_M_getword(__pos) |= _STLP_PRIV _Base_bitset<_Words > ::_S_maskbit(__pos); return *this; } bitset<_Nb>& _Unchecked_set(size_t __pos, int __val) { if (__val) this->_M_getword(__pos) |= this->_S_maskbit(__pos); else this->_M_getword(__pos) &= ~ this->_S_maskbit(__pos); return *this; } bitset<_Nb>& _Unchecked_reset(size_t __pos) { this->_M_getword(__pos) &= ~ this->_S_maskbit(__pos); return *this; } bitset<_Nb>& _Unchecked_flip(size_t __pos) { this->_M_getword(__pos) ^= this->_S_maskbit(__pos); return *this; } bool _Unchecked_test(size_t __pos) const { return (this->_M_getword(__pos) & this->_S_maskbit(__pos)) != __STATIC_CAST(_WordT,0); } // Set, reset, and flip. bitset<_Nb>& set() { this->_M_do_set(); this->_M_do_sanitize(); return *this; } bitset<_Nb>& set(size_t __pos) { if (__pos >= _Nb) __stl_throw_out_of_range("bitset"); return _Unchecked_set(__pos); } bitset<_Nb>& set(size_t __pos, int __val) { if (__pos >= _Nb) __stl_throw_out_of_range("bitset"); return _Unchecked_set(__pos, __val); } bitset<_Nb>& reset() { this->_M_do_reset(); return *this; } bitset<_Nb>& reset(size_t __pos) { if (__pos >= _Nb) __stl_throw_out_of_range("bitset"); return _Unchecked_reset(__pos); } bitset<_Nb>& flip() { this->_M_do_flip(); this->_M_do_sanitize(); return *this; } bitset<_Nb>& flip(size_t __pos) { if (__pos >= _Nb) __stl_throw_out_of_range("bitset"); return _Unchecked_flip(__pos); } bitset<_Nb> operator~() const { return bitset<_Nb>(*this).flip(); } // element access: //for b[i]; reference operator[](size_t __pos) { return reference(*this,__pos); } bool operator[](size_t __pos) const { return _Unchecked_test(__pos); } unsigned long to_ulong() const { return this->_M_do_to_ulong(); } #if defined (_STLP_MEMBER_TEMPLATES) && !defined (_STLP_NO_EXPLICIT_FUNCTION_TMPL_ARGS) template <class _CharT, class _Traits, class _Alloc> basic_string<_CharT, _Traits, _Alloc> to_string() const { basic_string<_CharT, _Traits, _Alloc> __result; _M_copy_to_string(__result); return __result; } #else string to_string() const { string __result; _M_copy_to_string(__result); return __result; } #endif /* _STLP_EXPLICIT_FUNCTION_TMPL_ARGS */ size_t count() const { return this->_M_do_count(); } size_t size() const { return _Nb; } bool operator==(const bitset<_Nb>& __rhs) const { return this->_M_is_equal(__rhs); } bool operator!=(const bitset<_Nb>& __rhs) const { return !this->_M_is_equal(__rhs); } bool test(size_t __pos) const { if (__pos >= _Nb) __stl_throw_out_of_range("bitset"); return _Unchecked_test(__pos); } bool any() const { return this->_M_is_any(); } bool none() const { return !this->_M_is_any(); } bitset<_Nb> operator<<(size_t __pos) const { bitset<_Nb> __result(*this); __result <<= __pos ; return __result; } bitset<_Nb> operator>>(size_t __pos) const { bitset<_Nb> __result(*this); __result >>= __pos ; return __result; } #if !defined (_STLP_NO_EXTENSIONS) // // EXTENSIONS: bit-find operations. These operations are // experimental, and are subject to change or removal in future // versions. // // find the index of the first "on" bit size_t _Find_first() const { return this->_M_do_find_first(_Nb); } // find the index of the next "on" bit after prev size_t _Find_next( size_t __prev ) const { return this->_M_do_find_next(__prev, _Nb); } #endif // // Definitions of should-be non-inline member functions. // #if defined (_STLP_MEMBER_TEMPLATES) template<class _CharT, class _Traits, class _Alloc> void _M_copy_from_string(const basic_string<_CharT,_Traits,_Alloc>& __s, size_t __pos, size_t __n) { #else void _M_copy_from_string(const string& __s, size_t __pos, size_t __n) { typedef typename string::traits_type _Traits; #endif reset(); size_t __tmp = _Nb; const size_t __Nbits = (min) (__tmp, (min) (__n, __s.size() - __pos)); for ( size_t __i= 0; __i < __Nbits; ++__i) { typename _Traits::int_type __k = _Traits::to_int_type(__s[__pos + __Nbits - __i - 1]); // boris : widen() ? if (__k == '1') set(__i); else if (__k != '0') __stl_throw_invalid_argument("bitset"); } } #if defined (_STLP_MEMBER_TEMPLATES) template <class _CharT, class _Traits, class _Alloc> void _M_copy_to_string(basic_string<_CharT, _Traits, _Alloc>& __s) const #else void _M_copy_to_string(string& __s) const #endif { __s.assign(_Nb, '0'); for (size_t __i = 0; __i < _Nb; ++__i) { if (_Unchecked_test(__i)) __s[_Nb - 1 - __i] = '1'; } } #if defined (_STLP_NON_TYPE_TMPL_PARAM_BUG) bitset<_Nb> operator&(const bitset<_Nb>& __y) const { bitset<_Nb> __result(*this); __result &= __y; return __result; } bitset<_Nb> operator|(const bitset<_Nb>& __y) const { bitset<_Nb> __result(*this); __result |= __y; return __result; } bitset<_Nb> operator^(const bitset<_Nb>& __y) const { bitset<_Nb> __result(*this); __result ^= __y; return __result; } #endif }; // ------------------------------------------------------------ // // 23.3.5.3 bitset operations: // #if ! defined (_STLP_NON_TYPE_TMPL_PARAM_BUG) template <size_t _Nb> inline bitset<_Nb> _STLP_CALL operator&(const bitset<_Nb>& __x, const bitset<_Nb>& __y) { bitset<_Nb> __result(__x); __result &= __y; return __result; } template <size_t _Nb> inline bitset<_Nb> _STLP_CALL operator|(const bitset<_Nb>& __x, const bitset<_Nb>& __y) { bitset<_Nb> __result(__x); __result |= __y; return __result; } template <size_t _Nb> inline bitset<_Nb> _STLP_CALL operator^(const bitset<_Nb>& __x, const bitset<_Nb>& __y) { bitset<_Nb> __result(__x); __result ^= __y; return __result; } #if !defined (_STLP_USE_NO_IOSTREAMS) _STLP_END_NAMESPACE # if !(defined (_STLP_MSVC) || (_STLP_MSVC < 1300)) && \ !(defined(__SUNPRO_CC) || (__SUNPRO_CC < 0x500)) #ifndef _STLP_INTERNAL_IOSFWD # include <stl/_iosfwd.h> #endif _STLP_BEGIN_NAMESPACE template <class _CharT, class _Traits, size_t _Nb> basic_istream<_CharT, _Traits>& _STLP_CALL operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x); template <class _CharT, class _Traits, size_t _Nb> basic_ostream<_CharT, _Traits>& _STLP_CALL operator<<(basic_ostream<_CharT, _Traits>& __os, const bitset<_Nb>& __x); # else #ifndef _STLP_STRING_IO_H # include <stl/_string_io.h> //includes _istream.h and _ostream.h #endif _STLP_BEGIN_NAMESPACE template <size_t _Nb> istream& _STLP_CALL operator>>(istream& __is, bitset<_Nb>& __x) { typedef typename string::traits_type _Traits; string __tmp; __tmp.reserve(_Nb); // Skip whitespace typename istream::sentry __sentry(__is); if (__sentry) { streambuf* __buf = __is.rdbuf(); for (size_t __i = 0; __i < _Nb; ++__i) { static typename _Traits::int_type __eof = _Traits::eof(); typename _Traits::int_type __c1 = __buf->sbumpc(); if (_Traits::eq_int_type(__c1, __eof)) { __is.setstate(ios_base::eofbit); break; } else { typename _Traits::char_type __c2 = _Traits::to_char_type(__c1); char __c = __is.narrow(__c2, '*'); if (__c == '0' || __c == '1') __tmp.push_back(__c); else if (_Traits::eq_int_type(__buf->sputbackc(__c2), __eof)) { __is.setstate(ios_base::failbit); break; } } } if (__tmp.empty()) __is.setstate(ios_base::failbit); else __x._M_copy_from_string(__tmp, __STATIC_CAST(size_t,0), _Nb); } return __is; } template <size_t _Nb> ostream& _STLP_CALL operator<<(ostream& __os, const bitset<_Nb>& __x) { string __tmp; __x._M_copy_to_string(__tmp); return __os << __tmp; } # if !defined (_STLP_NO_WCHAR_T) template <size_t _Nb> wistream& _STLP_CALL operator>>(wistream& __is, bitset<_Nb>& __x) { typedef typename wstring::traits_type _Traits; wstring __tmp; __tmp.reserve(_Nb); // Skip whitespace typename wistream::sentry __sentry(__is); if (__sentry) { wstreambuf* __buf = __is.rdbuf(); for (size_t __i = 0; __i < _Nb; ++__i) { static typename _Traits::int_type __eof = _Traits::eof(); typename _Traits::int_type __c1 = __buf->sbumpc(); if (_Traits::eq_int_type(__c1, __eof)) { __is.setstate(ios_base::eofbit); break; } else { typename _Traits::char_type __c2 = _Traits::to_char_type(__c1); char __c = __is.narrow(__c2, '*'); if (__c == '0' || __c == '1') __tmp.push_back(__c); else if (_Traits::eq_int_type(__buf->sputbackc(__c2), __eof)) { __is.setstate(ios_base::failbit); break; } } } if (__tmp.empty()) __is.setstate(ios_base::failbit); else __x._M_copy_from_string(__tmp, __STATIC_CAST(size_t,0), _Nb); } return __is; } template <size_t _Nb> wostream& _STLP_CALL operator<<(wostream& __os, const bitset<_Nb>& __x) { wstring __tmp; __x._M_copy_to_string(__tmp); return __os << __tmp; } # endif /* _STLP_NO_WCHAR_T */ # endif #endif #endif /* _STLP_NON_TYPE_TMPL_PARAM_BUG */ #undef bitset _STLP_END_NAMESPACE #undef __BITS_PER_WORD #undef __BITSET_WORDS #if !defined (_STLP_LINK_TIME_INSTANTIATION) # include <stl/_bitset.c> #endif #endif /* _STLP_BITSET_H */ // Local Variables: // mode:C++ // End:
[ [ [ 1, 869 ] ] ]
61d89fc8d1086dcc7e8f2c0bc68d0a06c6d5f67e
42b627fb70598ae9e51ee625caaec09faa8f64b3
/lcd_spi.cpp
e71fd8544d6917e85b5fe272312accc69c223012
[ "MIT" ]
permissive
hlipka/mbed_lcdwindow
fbb18adb0396599b08889673a47c05d2be87bba1
e1487dce8482f7c2be142b6b2f53a6f90ba63eec
refs/heads/master
2020-03-30T22:51:14.566994
2010-11-27T21:08:46
2010-11-27T21:08:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,129
cpp
/* * mbed LCDWindow library * Copyright (c) 2010 Hendrik Lipka * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include "lcd_spi.h" #include "SPI.h" #include "DigitalOut.h" #include "wait_api.h" SPILCDBase::SPILCDBase (unsigned int columns, unsigned int rows, SPI *spi, PinName enable, PinName rs) :TextLCDBase(columns,rows) { _spi=spi; _enable=new DigitalOut(enable); _rs=new DigitalOut(rs); _enable->write(1); _spi->format(8,3); // 8 bits, cpol=1, cpha=1 (should be mode 2, but phase seems inverted) // set SPI frequency at 0.1 MHz _spi->frequency(100000); } void SPILCDBase::sendByte(const unsigned char byte) { _enable->write(0); // enable transfer wait_us(1); _spi->write(byte); // send byte over wire wait_us(20); _enable->write(1); } void SPILCDBase::sendCmd(const unsigned char cmd) { _rs->write(0); wait_us(1); sendByte(cmd); wait_us(1); _rs->write(1); } void SPILCDBase::sendData(const unsigned char cmd) { _rs->write(1); wait_us(1); sendByte(cmd); }
[ [ [ 1, 66 ] ] ]
fe30450f8e6c1c553fda21d7aff39d7d39fee001
971b000b9e6c4bf91d28f3723923a678520f5bcf
/modules/zip/ziphandle.h
5c453ba62f12ba652fa0369e2109cd6b68cdd12b
[ "Zlib" ]
permissive
google-code-export/fop-miniscribus
14ce53d21893ce1821386a94d42485ee0465121f
966a9ca7097268c18e690aa0ea4b24b308475af9
refs/heads/master
2020-12-24T17:08:51.551987
2011-09-02T07:55:05
2011-09-02T07:55:05
32,133,292
2
0
null
null
null
null
UTF-8
C++
false
false
6,007
h
#ifndef ZIPHANDLE_H #define ZIPHANDLE_H /* zip libs ###### start ###################################################################*/ #include "zlib.h" #include "bestqtidy.h" /* open xml and check on tidy */ #include <stdio.h> #include "quazip.h" #include "quazipfile.h" #include <QTextCodec> #include <QtCore> #include <QMessageBox> #ifdef STDC # include <string.h> # include <stdlib.h> #endif #ifdef USE_MMAP # include <sys/types.h> # include <sys/mman.h> # include <sys/stat.h> #endif #if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(__CYGWIN__) # include <fcntl.h> # include <io.h> # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY) #else # define SET_BINARY_MODE(file) #endif #ifdef VMS # define unlink delete # define GZ_SUFFIX "-gz" #endif #ifdef RISCOS # define unlink remove # define GZ_SUFFIX "-gz" # define fileno(file) file->__file #endif #if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os # include <unix.h> /* for fileno */ #endif #ifndef GZ_SUFFIX # define GZ_SUFFIX ".gz" #endif #define SUFFIX_LEN (sizeof(GZ_SUFFIX)-1) #define BUFLEN 16384 #define MAX_NAME_LEN 1024 #ifdef MAXSEG_64K # define local static /* Needed for systems with limitation on stack size. */ #else # define local #endif #include <iostream> #include <stdio.h> using namespace std; /* simple mkdir */ static inline bool Zmkdir( const QString dirpath ) { QDir dira(dirpath); if ( dira.mkpath(dirpath) ) { return true; } else { return false; } } extern inline void gz_compress( FILE *in , gzFile out ) { local char buf[BUFLEN]; int len; int err; for (;;) { len = (int)fread(buf, 1, sizeof(buf), in); if (ferror(in)) { perror("fread"); exit(1); } if (len == 0) break; if (gzwrite(out, buf, (unsigned)len) != len) { return; } } fclose(in); if (gzclose(out) != Z_OK) { return; } } static inline bool OpenZip( const QString zipfile, const QString outputdir ) { ///////////// const QString cartella = QDir::currentPath(); /////////qDebug() << "### from unzzip function path " << QDir::currentPath(); /////////// qDebug() << "### outputdir " << outputdir; //////////qDebug() << "### zipfile " << zipfile; QDir sdir(outputdir); Zmkdir(sdir.absolutePath()+"/"); char* suk; QuaZip zip(zipfile); bool extractsuccess = false; zip.open(QuaZip::mdUnzip); QuaZipFile file(&zip); for(bool more=zip.goToFirstFile(); more; more=zip.goToNextFile()) { file.open(QIODevice::ReadOnly); QString name = zip.getCurrentFileName(); name.prepend(sdir.absolutePath()+"/"); /* extract to path ....... */ QFile meminfo(name); QFileInfo infofile(meminfo); QDir dira(infofile.absolutePath()); if ( dira.mkpath(infofile.absolutePath()) ) { /* dir is exist*/ /////////qDebug() << "### name " << name; /////qDebug() << "### namedir yes " << infofile.absolutePath(); QString fileqinfo = zip.getCurrentFileName(); QByteArray fe = fileqinfo.toAscii(); suk = fe.data(); //////////////////cout << "Processing..... " << suk << "\n"; if ( meminfo.open(QIODevice::ReadWrite) ) { meminfo.write(file.readAll()); /* write */ meminfo.close(); extractsuccess = true; //////////RegisterImage(name); } } else { file.close(); return false; } file.close(); // do not forget to close! } zip.close(); return extractsuccess; } extern inline bool MakeGzipOneFile( QString filelocation ) { local char outfile[MAX_NAME_LEN]; FILE *in; gzFile out; QByteArray cgofile = filelocation.toAscii(); char* file = cgofile.data(); QString const busgo = filelocation.append(GZ_SUFFIX); strcpy(outfile, file); strcat(outfile, GZ_SUFFIX); /* attach suffix */ in = fopen(file, "rb"); if (in == NULL) { return false; } out = gzopen(outfile,"wb6"); if (out == NULL) { fclose( in ); return false; } gz_compress(in, out); QFile f( busgo ); return f.exists(busgo); } extern inline QString OpenGzipOneFile( QString fileName ) { QString inside = ""; gzFile file; file = gzopen (fileName.toUtf8().data(), "rb"); if(!file) { QMessageBox::critical(0, "Error",QString("Can't open file %1").arg(fileName)); return inside; } QByteArray input; char buffer[1024]; QByteArray inputData; while(int readBytes = gzread (file, buffer, 1024)) { input.append(QByteArray(buffer, readBytes)); } gzclose(file); inside = QString::fromUtf8(input.data()); return inside; } extern inline QByteArray OpenGzipFileByte( QString fileName ) { gzFile file; file = gzopen (fileName.toUtf8().data(), "rb"); if(!file) { QMessageBox::critical(0, "Error",QString("Can't open file %1").arg(fileName)); return QByteArray(); } QByteArray input; char buffer[1024]; QByteArray inputData; while(int readBytes = gzread (file, buffer, 1024)) { input.append(QByteArray(buffer, readBytes)); } gzclose(file); return input; } #endif // ZIPHANDLE_H
[ "ppkciz@9af58faf-7e3e-0410-b956-55d145112073" ]
[ [ [ 1, 255 ] ] ]
455aacad710a75ed255ed93109ac7053814e58b6
b90f7dce513fd3d13bab0b8769960dea901d4f3b
/game_client/game_client/Thread.h
057d97dd6b1c955e352d2ee5b51a6481b5603d81
[]
no_license
lasti15/easygametools
f447052cd4c42609955abd76b4c8571422816b11
0b819c957077a4eeaf9a2492772040dafdfca4c3
refs/heads/master
2021-01-10T09:14:52.182154
2011-03-09T01:51:51
2011-03-09T01:51:51
55,684,684
0
0
null
null
null
null
UTF-8
C++
false
false
1,447
h
#ifndef __THREAD_H #define __THREAD_H #include <process.h> #include "Reference.h" #include "Logger.h" #include "ThreadEventListener.h" #include "Runnable.h" namespace ROG { #define AVL_CHUNK_SIZE_THR 32 class Thread : public Reference { private: HANDLE _thread; unsigned int _thrid; static AVLTreeT<unsigned long, Object<Thread>, AVL_CHUNK_SIZE_THR> runningThreads; static Semaphore runningSem; static unsigned long engine_threadid_master; static Semaphore eventListenerSem; static OCArray<Object<ThreadEventListener>> threadEventListeners; static void fireThreadEvent(Object<ThreadEvent> evt); const static Logger* logger; unsigned long engine_threadid; int signalFlag; Object<Runnable> runnable; public: Thread(); Thread(Object<Runnable> runnable); ~Thread(); void start(); void run(); static void CollectRemainingThreads(); static Object<Thread> getCurrentThread(); static void addThreadEventListener(Object<ThreadEventListener> listener); static void removeThreadEventListener(Object<ThreadEventListener> listener); void cleanup(); void signal(int signalcode); inline int getSignalled(); inline Object<Runnable> getRunnable(); void waitfor(); }; inline int Thread::getSignalled() { return signalFlag; } inline Object<Runnable> Thread::getRunnable() { return runnable; } } #endif
[ [ [ 1, 73 ] ] ]
96753562ff813204315dee76e6839a5accecea57
de02718048503811a0a406103e7e059048af6755
/test/interpreter/missingMethodBuilderTest.cpp
8826bcdc49a9585a734b5873d2e0904881eb1376
[]
no_license
tonyg/Strongtalk
37543cdd99fc721d6d89534e2c4f908dbb2e8737
759be33d68de2f07e5a4610c9e732b4395d7a361
refs/heads/master
2021-01-17T10:40:05.916154
2010-11-26T15:28:32
2010-11-26T15:28:32
1,114,847
0
0
null
null
null
null
UTF-8
C++
false
false
15,918
cpp
# include "incls/_precompiled.incl" # include "incls/_missingMethodBuilder.cpp.incl" # include "stubRoutines.hpp" #include "test.h" using namespace easyunit; DECLARE(missingMethodBuilderTests) HeapResourceMark *rm; char msg[200]; #define CHECK_OOPS(expectedOops, oops, index)\ oop expected = expectedOops[index];\ oop actual = oops->obj_at(index + 1);\ sprintf(msg, "Incorrect oop at %d. Expected: 0x%x, but was: 0x%x",\ index, expected, actual);\ ASSERT_EQUALS_M(int(expected), int(actual), msg) int instVarIndex(klassOop targetClass, char* instVarName) { symbolOop varNameSymbol = oopFactory::new_symbol(instVarName); return targetClass->klass_part()->lookup_inst_var(varNameSymbol); } END_DECLARE SETUP(missingMethodBuilderTests) { rm = new HeapResourceMark(); } TEARDOWN(missingMethodBuilderTests) { delete rm; rm = NULL; } TESTF(missingMethodBuilderTests, buildWithNoArgSelectorShouldBuildCorrectBytes) { BlockScavenge bs; char msg[200]; symbolOop selector = oopFactory::new_symbol("value"); unsigned char expectedBytes[52] = { Bytecodes::push_global, 0xFF, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::push_self, Bytecodes::push_literal, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::push_literal, 0xFF, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::interpreted_send_n, 3, 0xFF, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::interpreted_send_self, 0xFF, 0xFF, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::return_tos_pop_0, 0xFF, 0xFF, 0xFF }; MissingMethodBuilder builder(selector); builder.build(); byteArrayOop bytes = builder.bytes(); ASSERT_EQUALS_M(52, bytes->length(), "wrong length"); for (int index = 0; index < 52; index++) { unsigned char expected = expectedBytes[index]; unsigned char actual = bytes->byte_at(index + 1); sprintf(msg, "Incorrect byte at %d. Expected: %d, but was: %d", index, expected, actual); ASSERT_EQUALS_M(expected, actual, msg); } } TESTF(missingMethodBuilderTests, buildWithNoArgSelectorShouldBuildCorrectOops) { BlockScavenge bs; char msg[200]; symbolOop selector = oopFactory::new_symbol("value"); MissingMethodBuilder builder(selector); builder.build(); objArrayOop oops = builder.oops(); oop expectedOops[13] = { as_smiOop(0), Universe::find_global_association("Message"), as_smiOop(0), selector, as_smiOop(0), as_smiOop(0), as_smiOop(0), oopFactory::new_symbol("receiver:selector:arguments:"), as_smiOop(0), as_smiOop(0), oopFactory::new_symbol("doesNotUnderstand:"), as_smiOop(0), as_smiOop(0) }; for (int index = 0; index < 5; index++) { CHECK_OOPS(expectedOops, oops, index); } oop obj = oops->obj_at(6); ASSERT_TRUE_M(obj->is_objArray(), "Wrong type"); objArrayOop array = objArrayOop(obj); ASSERT_EQUALS_M(0, array->length(), "Wrong length"); for (int index = 6; index < 13; index++) { CHECK_OOPS(expectedOops, oops, index); } } typedef oop (call_delta_func)(void* method, oop receiver, int nofArgs, oop* args); TESTF(missingMethodBuilderTests, buildWithNoArgSelectorShouldBuildCorrectMethod) { call_delta_func* _call_delta = (call_delta_func*)StubRoutines::call_delta(); BlockScavenge bs; symbolOop selector = oopFactory::new_symbol("value"); MissingMethodBuilder builder(selector); builder.build(); methodOop method = builder.method(); klassOop objectClass = klassOop(Universe::find_global("DoesNotUnderstandFixture")); klassOop messageClass = klassOop(Universe::find_global("Message")); oop fixture = objectClass->klass_part()->allocateObject(); memOop result = memOop(_call_delta(method, fixture, 0, NULL)); ASSERT_TRUE_M(result->is_mem(), "Wrong type"); ASSERT_TRUE_M(result->klass() == messageClass, "Wrong class"); int receiverIndex = instVarIndex(messageClass, "receiver"); int selectorIndex = instVarIndex(messageClass, "selector"); int argumentsIndex = instVarIndex(messageClass, "arguments"); ASSERT_TRUE_M(fixture == result->instVarAt(receiverIndex), "Wrong receiver"); ASSERT_TRUE_M(selector == result->instVarAt(selectorIndex), "Wrong selector"); objArrayOop arguments = objArrayOop(result->instVarAt(argumentsIndex)); ASSERT_TRUE_M(arguments->is_objArray(), "Wrong type"); ASSERT_TRUE_M(0 == arguments->length(), "Wrong length"); } TESTF(missingMethodBuilderTests, buildWithOneArgSelectorShouldBuildCorrectMethod) { call_delta_func* _call_delta = (call_delta_func*)StubRoutines::call_delta(); BlockScavenge bs; symbolOop selector = oopFactory::new_symbol("value:"); MissingMethodBuilder builder(selector); builder.build(); methodOop method = builder.method(); klassOop objectClass = klassOop(Universe::find_global("DoesNotUnderstandFixture")); klassOop messageClass = klassOop(Universe::find_global("Message")); oop fixture = objectClass->klass_part()->allocateObject(); oop arg1in = as_smiOop(53); memOop result = memOop(_call_delta(method, fixture, 1, &arg1in)); ASSERT_TRUE_M(result->is_mem(), "Wrong type"); ASSERT_TRUE_M(result->klass() == messageClass, "Wrong class"); int receiverIndex = instVarIndex(messageClass, "receiver"); int selectorIndex = instVarIndex(messageClass, "selector"); int argumentsIndex = instVarIndex(messageClass, "arguments"); ASSERT_TRUE_M(fixture == result->instVarAt(receiverIndex), "Wrong receiver"); ASSERT_TRUE_M(selector == result->instVarAt(selectorIndex), "Wrong selector"); objArrayOop arguments = objArrayOop(result->instVarAt(argumentsIndex)); ASSERT_TRUE_M(arguments->is_objArray(), "Arguments has wrong type"); ASSERT_TRUE_M(1 == arguments->length(), "Wrong argument count"); smiOop arg1 = smiOop(arguments->obj_at(1)); ASSERT_TRUE_M(arg1->is_smi(), "Argument 1 has wrong type"); ASSERT_EQUALS_M(53, arg1->value(), "Argument 1 has wrong value"); } TESTF(missingMethodBuilderTests, buildWithTwoArgSelectorShouldBuildCorrectMethod) { call_delta_func* _call_delta = (call_delta_func*)StubRoutines::call_delta(); BlockScavenge bs; symbolOop selector = oopFactory::new_symbol("value:value:"); MissingMethodBuilder builder(selector); builder.build(); methodOop method = builder.method(); klassOop objectClass = klassOop(Universe::find_global("DoesNotUnderstandFixture")); klassOop messageClass = klassOop(Universe::find_global("Message")); oop fixture = objectClass->klass_part()->allocateObject(); oop args[] = { as_smiOop(42), as_smiOop(53) }; memOop result = memOop(_call_delta(method, fixture, 2, args)); ASSERT_TRUE_M(result->is_mem(), "Wrong type"); ASSERT_TRUE_M(result->klass() == messageClass, "Wrong class"); int receiverIndex = instVarIndex(messageClass, "receiver"); int selectorIndex = instVarIndex(messageClass, "selector"); int argumentsIndex = instVarIndex(messageClass, "arguments"); ASSERT_TRUE_M(fixture == result->instVarAt(receiverIndex), "Wrong receiver"); ASSERT_TRUE_M(selector == result->instVarAt(selectorIndex), "Wrong selector"); objArrayOop arguments = objArrayOop(result->instVarAt(argumentsIndex)); ASSERT_TRUE_M(arguments->is_objArray(), "Arguments has wrong type"); ASSERT_TRUE_M(2 == arguments->length(), "Wrong argument count"); smiOop arg1 = smiOop(arguments->obj_at(1)); ASSERT_TRUE_M(arg1->is_smi(), "Argument 1 has wrong type"); ASSERT_EQUALS_M(42, arg1->value(), "Argument 1 has wrong value"); smiOop arg2 = smiOop(arguments->obj_at(2)); ASSERT_TRUE_M(arg2->is_smi(), "Argument 2 has wrong type"); ASSERT_EQUALS_M(53, arg2->value(), "Argument 2 has wrong value"); } TESTF(missingMethodBuilderTests, buildWithThreeArgSelectorShouldBuildCorrectMethod) { call_delta_func* _call_delta = (call_delta_func*)StubRoutines::call_delta(); BlockScavenge bs; symbolOop selector = oopFactory::new_symbol("value:value:value:"); MissingMethodBuilder builder(selector); builder.build(); methodOop method = builder.method(); klassOop objectClass = klassOop(Universe::find_global("DoesNotUnderstandFixture")); klassOop messageClass = klassOop(Universe::find_global("Message")); oop fixture = objectClass->klass_part()->allocateObject(); oop args[] = { as_smiOop(11), as_smiOop(42), as_smiOop(53) }; memOop result = memOop(_call_delta(method, fixture, 3, args)); ASSERT_TRUE_M(result->is_mem(), "Wrong type"); ASSERT_TRUE_M(result->klass() == messageClass, "Wrong class"); int receiverIndex = instVarIndex(messageClass, "receiver"); int selectorIndex = instVarIndex(messageClass, "selector"); int argumentsIndex = instVarIndex(messageClass, "arguments"); ASSERT_TRUE_M(fixture == result->instVarAt(receiverIndex), "Wrong receiver"); ASSERT_TRUE_M(selector == result->instVarAt(selectorIndex), "Wrong selector"); objArrayOop arguments = objArrayOop(result->instVarAt(argumentsIndex)); ASSERT_TRUE_M(arguments->is_objArray(), "Arguments has wrong type"); ASSERT_TRUE_M(3 == arguments->length(), "Wrong argument count"); smiOop arg1 = smiOop(arguments->obj_at(1)); ASSERT_TRUE_M(arg1->is_smi(), "Argument 1 has wrong type"); ASSERT_EQUALS_M(11, arg1->value(), "Argument 1 has wrong value"); smiOop arg2 = smiOop(arguments->obj_at(2)); ASSERT_TRUE_M(arg2->is_smi(), "Argument 2 has wrong type"); ASSERT_EQUALS_M(42, arg2->value(), "Argument 2 has wrong value"); smiOop arg3 = smiOop(arguments->obj_at(3)); ASSERT_TRUE_M(arg3->is_smi(), "Argument 3 has wrong type"); ASSERT_EQUALS_M(53, arg3->value(), "Argument 3 has wrong value"); } TESTF(missingMethodBuilderTests, buildWithOneArgSelectorShouldBuildCorrectBytes) { BlockScavenge bs; char msg[200]; symbolOop selector = oopFactory::new_symbol("value:"); unsigned char expectedBytes[80] = { Bytecodes::allocate_temp_1, Bytecodes::push_global, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::push_self, Bytecodes::push_literal, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::push_global, 0xFF, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::push_succ_n, 0, Bytecodes::interpreted_send_1, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::store_temp_n, 0xFF, Bytecodes::push_succ_n, 0, Bytecodes::push_arg_n, 0, Bytecodes::interpreted_send_2_pop, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::push_temp_0, Bytecodes::interpreted_send_n, 3, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::interpreted_send_self, 0xFF, 0xFF, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::return_tos_pop_1, 0xff, 0xff, 0xff }; MissingMethodBuilder builder(selector); builder.build(); byteArrayOop bytes = builder.bytes(); sprintf(msg, "Wrong length. Expected: %d, but was: %d", 65, bytes->length()); ASSERT_EQUALS_M(80, bytes->length(), msg); for (int index = 0; index < 80; index++) { unsigned char expected = expectedBytes[index]; unsigned char actual = bytes->byte_at(index + 1); sprintf(msg, "Incorrect byte at %d. Expected: %d, but was: %d", index, expected, actual); ASSERT_EQUALS_M(expected, actual, msg); } } TESTF(missingMethodBuilderTests, buildWithOneArgSelectorShouldBuildCorrectOops) { BlockScavenge bs; char msg[200]; symbolOop selector = oopFactory::new_symbol("value:"); oop expectedOops[20] = { as_smiOop(0), Universe::find_global_association("Message"), as_smiOop(0), selector, as_smiOop(0), Universe::find_global_association("Array"), as_smiOop(0), oopFactory::new_symbol("new:"), as_smiOop(0), as_smiOop(0), as_smiOop(0), oopFactory::new_symbol("at:put:"), as_smiOop(0), as_smiOop(0), oopFactory::new_symbol("receiver:selector:arguments:"), as_smiOop(0), as_smiOop(0), oopFactory::new_symbol("doesNotUnderstand:"), as_smiOop(0), as_smiOop(0) }; MissingMethodBuilder builder(selector); builder.build(); objArrayOop oops = builder.oops(); for (int index = 0; index < 20; index++) { CHECK_OOPS(expectedOops, oops, index); } } TESTF(missingMethodBuilderTests, buildWithTwoArgSelectorShouldBuildCorrectBytes) { BlockScavenge bs; char msg[200]; symbolOop selector = oopFactory::new_symbol("value:value:"); unsigned char expectedBytes[96] = { Bytecodes::allocate_temp_1, Bytecodes::push_global, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::push_self, Bytecodes::push_literal, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::push_global, 0xFF, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::push_succ_n, 1, Bytecodes::interpreted_send_1, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::store_temp_n, 0xFF, Bytecodes::push_succ_n, 0, Bytecodes::push_arg_n, 1, Bytecodes::interpreted_send_2_pop, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::push_temp_0, Bytecodes::push_succ_n, 1, Bytecodes::push_arg_n, 0, Bytecodes::interpreted_send_2_pop, 0xFF, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::push_temp_0, Bytecodes::interpreted_send_n, 3, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::interpreted_send_self, 0xFF, 0xFF, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::return_tos_pop_2, 0xff, 0xff, 0xff }; MissingMethodBuilder builder(selector); builder.build(); byteArrayOop bytes = builder.bytes(); sprintf(msg, "Wrong length. Expected: %d, but was: %d", 93, bytes->length()); ASSERT_EQUALS_M(96, bytes->length(), msg); for (int index = 0; index < 96; index++) { unsigned char expected = expectedBytes[index]; unsigned char actual = bytes->byte_at(index + 1); sprintf(msg, "Incorrect byte at %d. Expected: %d, but was: %d", index, expected, actual); ASSERT_EQUALS_M(expected, actual, msg); } } TESTF(missingMethodBuilderTests, buildWithThreeArgSelectorShouldBuildCorrectBytes) { BlockScavenge bs; char msg[200]; symbolOop selector = oopFactory::new_symbol("value:value:value:"); unsigned char expectedBytes[112] = { Bytecodes::allocate_temp_1, Bytecodes::push_global, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::push_self, Bytecodes::push_literal, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::push_global, 0xFF, 0xFF, 0xFF, 0, 0, 0, 0, Bytecodes::push_succ_n, 2, Bytecodes::interpreted_send_1, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::store_temp_n, 0xFF, Bytecodes::push_succ_n, 0, Bytecodes::push_arg_n, 2, Bytecodes::interpreted_send_2_pop, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::push_temp_0, Bytecodes::push_succ_n, 1, Bytecodes::push_arg_n, 1, Bytecodes::interpreted_send_2_pop, 0xFF, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::push_temp_0, Bytecodes::push_succ_n, 2, Bytecodes::push_arg_n, 0, Bytecodes::interpreted_send_2_pop, 0xFF, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::push_temp_0, Bytecodes::interpreted_send_n, 3, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::interpreted_send_self, 0xFF, 0xFF, 0xFF, 0, 0, 0, 0, 0, 0, 0, 0, Bytecodes::return_tos_pop_n, 3, 0xff, 0xff }; MissingMethodBuilder builder(selector); builder.build(); byteArrayOop bytes = builder.bytes(); sprintf(msg, "Wrong length. Expected: %d, but was: %d", 110, bytes->length()); ASSERT_EQUALS_M(112, bytes->length(), msg); for (int index = 0; index < 112; index++) { unsigned char expected = expectedBytes[index]; unsigned char actual = bytes->byte_at(index + 1); sprintf(msg, "Incorrect byte at %d. Expected: %d, but was: %d", index, expected, actual); ASSERT_EQUALS_M(expected, actual, msg); } }
[ [ [ 1, 451 ] ] ]
30597686963e918b3582543fd628f9a112b9e81a
698f3c3f0e590424f194a4c138ed9706eb28b34f
/Classes/SoundManager.h
004c251d9be0cbe56b34194d80f8ff14201bbec8
[]
no_license
nghepop/super-fashion-puzzle-cocos2d-x
16b3a86072a6758fc2547b9e177bbfeebed82681
5e8d8637e3cf70b4ec45256347ccf7b350c11bce
refs/heads/master
2021-01-10T06:28:10.028735
2011-12-03T23:49:16
2011-12-03T23:49:16
44,685,435
0
0
null
null
null
null
UTF-8
C++
false
false
860
h
#ifndef CCRadioMenu_h__ #define SoundManager_h__ class SoundManager : public cocos2d::CCObject { public: SoundManager(void){}; ~SoundManager(void){}; // Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone virtual bool init(void); void showVersion(void); // effects //void playSoundFxCorrectMatching; //void playSoundFxCorrectMatchingWithWildcard; //void playSoundFxChipWasUnselected; void playSoundFxGameOver(void); //void playSoundFxIncorrectMatching; ///void playSoundFxNewGirl; //void playSoundFxRegeneration; //void playSoundFxSelectedChip; void playSoundFxTap(void); // void playSoundFxReady; // music void playSoundMusicGame(void); void playSoundMusicMenu(void); void stopBackgroundMusic(void); static SoundManager* sharedSoundManager(void); }; #endif
[ [ [ 1, 35 ] ] ]
657a5ffacfe662aa9d10baea37086d9148796bf1
cd387cba6088f351af4869c02b2cabbb678be6ae
/src/experimental/petesimulator/include/Robot.h
c8910d7ae63164c6bfed5d9a49676191986f5ede
[]
no_license
pedromartins/mew-dev
e8a9cd10f73fbc9c0c7b5bacddd0e7453edd097e
e6384775b00f76ab13eb046509da21d7f395909b
refs/heads/master
2016-09-06T14:57:00.937033
2009-04-13T15:16:15
2009-04-13T15:16:15
32,332,332
0
0
null
null
null
null
UTF-8
C++
false
false
645
h
#pragma once #include "Common.h" #include "Board.h" #include "Cylinder.h" class Robot{ public: Point *CentreOfRotation; Point *FrontLeft; Point *FrontRight; Point *RearLeft; Point *RearRight; double direction; //stores size in mm Point *realSize; //stores position of robot, according to it's centre of rotation Point *pos; //Velocities double xVel, yVel; //Holds cylinders carried Cylinder cylinders[5]; //Boolean to see if it holds a lentil bool lentil; SDL_Surface *pic; void handle_input(SDL_Event *event); void move(Board *field); void rotate(double angle); Robot(); ~Robot(); };
[ "fushunpoon@1fd432d8-e285-11dd-b2d9-215335d0b316" ]
[ [ [ 1, 33 ] ] ]
081d3210a4db12f52facc401ce81a9336bed49c3
bdb1e38df8bf74ac0df4209a77ddea841045349e
/CapsuleSortor/Version 1.0 -2.0/CapsuleSortor-10-11-14/Valve/Valve.cpp
2e93c91f91169ab87953219c8c3a04dab2fe18f1
[]
no_license
Strongc/my001project
e0754f23c7818df964289dc07890e29144393432
07d6e31b9d4708d2ef691d9bedccbb818ea6b121
refs/heads/master
2021-01-19T07:02:29.673281
2010-12-17T03:10:52
2010-12-17T03:10:52
49,062,858
0
1
null
2016-01-05T11:53:07
2016-01-05T11:53:07
null
GB18030
C++
false
false
3,774
cpp
#include "Valve.h" #include "TLocker.h" #include "CtrlCardComm.h" Valve::Valve() : m_resultInterval(0), m_pushedIndex(eFirst), m_enable(true) { memset(m_resultStack, 0, sizeof(m_resultStack)); memset(m_finalResult, 0, sizeof(m_finalResult)); memset(m_preResullt, 0, sizeof(m_preResullt)); } Valve::~Valve() { } Valve& Valve::TheValve() { static Valve theValve; return theValve; } bool Valve::IsEnable( ) { return m_enable; } void Valve::Enable(bool enable) { m_enable = enable; Control(eFirst, 0x1); } /******************************************************************************* * 函数名称: Control * * 参数 : result 处理结果 * delayTime 延迟时间 * period 单幅图像需要的时间 * * 输出 : 成功 true * 失败 false * * * 功能 :将处理结果换算成为相应的延迟时间 * * ********************************************************************************/ bool Valve::Control(ETIndex testIndex, unsigned int result) { if(!m_enable) return false; for(int i=0; i<4; i++) { if((result>>i) & 0x01) { CtrlCardComm::TheComm().SendBadInfo(1, 4-i); } } return true; } Valve::ETIndex Valve::TheOtherTest (ETIndex testIndex) { return (eFirst == testIndex) ? eSecond : eFirst; } /******************************************************************************* * 函数名称: PushResult * * 参数 : testIndex 相机序列 * result 处理结果 * * 输出 : 成功 true 失败 false * * * 功能 :将处理的结果压入队列 * * ********************************************************************************/ bool Valve::PushResult(ETIndex testIndex) { if (eSecond == testIndex) { for(int i = m_resultInterval; i >0; i--) { m_resultStack[i] = m_resultStack[i-1]; } m_resultStack[0] = m_finalResult[testIndex]&0xf; m_finalResult[testIndex] = 0; m_pushedIndex = eSecond; } return true; } /******************************************************************************* * 函数名称: CtrlResult * * 参数 : testIndex 相机序列 * resultIndex 处理结果 * delayTime 延迟时间 * period 相机触发周期 * * 输出 : 废品胶囊数 * * * 功能 :执行定时操作 * * ********************************************************************************/ unsigned int Valve::CtrlResult(ETIndex testIndex) { unsigned int badSum = 0; unsigned int finalResult = 0; unsigned int resultValue = m_finalResult[testIndex]&0xf; unsigned int mutipInter = m_resultInterval/4; unsigned int detailInter = m_resultInterval%4; unsigned int stackValue = m_resultStack[mutipInter]&0xf; unsigned int preValue = m_resultStack[mutipInter - 1]; finalResult = resultValue|((stackValue<<detailInter)&0xf); finalResult = finalResult|((preValue>>(4 - detailInter))&0xf); Control(testIndex, finalResult); for( int i = 0; i < 4; ++i) { badSum +=((finalResult>>i)&0x1); } m_pushedIndex = eFirst; return badSum; } void Valve::SetParam(const ValveParam& param) { m_resultInterval = param.ResultInterval; } ValveParam Valve::GetParam () const { ValveParam param; param.IOBoard = m_enable ? 1 : 0; param.ResultInterval= m_resultInterval; return param; } void Valve::ShortInterval(ETIndex testIndex, unsigned int tempResult) { m_finalResult[testIndex] = (((m_preResullt[testIndex]<<1)&0xf)| (tempResult&0xf))&0xf; } void Valve::LongInterval(ETIndex testIndex, unsigned int tempResult) { m_finalResult[testIndex] = ((m_finalResult[testIndex]|((tempResult&0xf)>>3))&0xf); m_preResullt[testIndex] = (tempResult&0xf); }
[ "vincen.cn@66f52ff4-a261-11de-b161-9f508301ba8e" ]
[ [ [ 1, 165 ] ] ]
8fa4cc552974de73c67cc2d1902f376c4f025218
3c4f5bd6d7ac3878c181fb05ab41c1d755ddf343
/FontList.cpp
fa728b0de1274ce39bb09b85910ec0e192ddd16a
[]
no_license
imcooder/public
1078df18c1459e67afd1200346dd971ea3b71933
be947923c6e2fbd9c993a41115ace3e32dad74bf
refs/heads/master
2021-05-28T08:43:00.027020
2010-07-24T07:39:51
2010-07-24T07:39:51
32,301,120
2
1
null
null
null
null
UTF-8
C++
false
false
2,581
cpp
#include "stdafx.h" #include "FontList.h" #include <algorithm> BOOL LogfontCmp (LPLOGFONT pFontA, LPLOGFONT pFontB ) { if (!pFontA || !pFontB) { return FALSE; } return 0 >= _tcsicmp(pFontA->lfFaceName, pFontB->lfFaceName); } FontList::FontList() { } FontList::~FontList() { FreeFonts(); } BOOL CALLBACK FontList::EnumFontFamExProc(ENUMLOGFONTEX* pelf,NEWTEXTMETRICEX* lpntm, DWORD dwFontType, LPARAM lParam) { FontList* pFontEnum = (FontList*)lParam; if (pFontEnum) { if (pFontEnum->AddFont(&pelf->elfLogFont, dwFontType)) { } } return TRUE; } void FontList::Create(BYTE nCharSet) { FreeFonts(); LOGFONT logfont; logfont.lfFaceName[0] = 0; logfont.lfCharSet = nCharSet; HDC hDC = GetDC(NULL); ::EnumFontFamiliesEx(hDC, &logfont, (FONTENUMPROC)EnumFontFamExProc, (LPARAM)this, 0); ReleaseDC(NULL, hDC); hDC = NULL; m_listpFonts.sort(LogfontCmp); //std::sort(m_listpFonts.begin(), m_listpFonts.end()/*, LogfontCmp*/); } BOOL FontList::AddFont(const LOGFONT* pLF, DWORD dwType) { if (!pLF) { return FALSE; } if (DoesFontExist(pLF->lfFaceName)) { return FALSE; } LPLOGFONT pLogfont = new LOGFONT; if (pLogfont) { memcpy(pLogfont, pLF, sizeof(*pLF)); } m_listpFonts.push_back(pLogfont); return TRUE; } BOOL FontList::DoesFontExist(LPCTSTR pszFaceName) { if (!pszFaceName) { return FALSE; } LPLOGFONT pLogfont = GetLogFont(pszFaceName); return !!pLogfont; } LPLOGFONT FontList::GetLogFont(LPCTSTR pszFaceName) { std::list<LPLOGFONT>::iterator itlstTravel = m_listpFonts.begin(); while(itlstTravel != m_listpFonts.end()) { if (0 == _tcsicmp(pszFaceName, (*itlstTravel)->lfFaceName)) { break; } itlstTravel ++; } if (itlstTravel != m_listpFonts.end()) { return *itlstTravel; } return NULL; } void FontList::FreeFonts() { std::list<LPLOGFONT>::iterator itlstTravel = m_listpFonts.begin(); while (itlstTravel != m_listpFonts.end()) { SAFE_DELETE(*itlstTravel); itlstTravel ++; } m_listpFonts.clear(); } UINT FontList::GetCount() const { return m_listpFonts.size(); } LPLOGFONT FontList::GetFontByIndex( UINT nIdx) { std::list<LPLOGFONT>::iterator itlstTravel = m_listpFonts.begin(); while (itlstTravel != m_listpFonts.end()) { if (nIdx <= 0) { break; } itlstTravel ++; nIdx --; } if (itlstTravel != m_listpFonts.end()) { return *itlstTravel; } return NULL; }
[ "[email protected]@716a2f10-c84c-11dd-bf7c-81814f527a11" ]
[ [ [ 1, 138 ] ] ]
6338c2a142084e737cf15809b233019a53077106
fbd2deaa66c52fc8c38baa90dd8f662aabf1f0dd
/totalFirePower/ta demo/code/Lesson2.cpp
2601817957ef23f4bfd48582999069e374d771e4
[]
no_license
arlukin/dev
ea4f62f3a2f95e1bd451fb446409ab33e5c0d6e1
b71fa9e9d8953e33f25c2ae7e5b3c8e0defd18e0
refs/heads/master
2021-01-15T11:29:03.247836
2011-02-24T23:27:03
2011-02-24T23:27:03
1,408,455
2
1
null
null
null
null
UTF-8
C++
false
false
16,569
cpp
/* * This Code Was Created By Jeff Molofee 2000 * A HUGE Thanks To Fredric Echols For Cleaning Up * And Optimizing The Base Code, Making It More Flexible! * If You've Found This Code Useful, Please Let Me Know. * Visit My Site At nehe.gamedev.net */ #include <winsock2.h> #include <windows.h> // Header File For Windows #include "mygl.h" #include <gl\glu.h> // Header File For The GLu32 Library #include <gl\glaux.h> // Header File For The Glaux Library #include <time.h> #include <string> #include <math.h> #include "game.h" #include "reghandler.h" #include "float.h" #include "glfont.h" #include "mousehandler.h" #include "irenderer.h" #include "timeprofiler.h" #include "camera.h" HDC hDC=NULL; // Private GDI Device Context HGLRC hRC=NULL; // Permanent Rendering Context HWND hWnd=NULL; // Holds Our Window Handle HINSTANCE hInstance; // Holds The Instance Of The Application bool keys[256]; // Array Used For The Keyboard Routine bool active=TRUE; // Window Active Flag Set To TRUE By Default bool fullscreen=TRUE; // Fullscreen Flag Set To Fullscreen Mode By Default bool quit=false; //time_t fpstimer,starttime; CGame* game=0; LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); // Declaration For WndProc GLvoid ReSizeGLScene(GLsizei width, GLsizei height) // Resize And Initialize The GL Window { if (height==0) // Prevent A Divide By Zero By { height=1; // Making Height Equal One } g.screenx=width; g.screeny=height-(!fullscreen&&!game)*26; glViewport(0,0,g.screenx,g.screeny); // Reset The Current Viewport glMatrixMode(GL_PROJECTION); // Select The Projection Matrix glLoadIdentity(); // Reset The Projection Matrix // Calculate The Aspect Ratio Of The Window gluPerspective(45.0f,(GLfloat)g.screenx/(GLfloat)g.screeny,2,g.viewRange); glMatrixMode(GL_MODELVIEW); // Select The Modelview Matrix glLoadIdentity(); // Reset The Modelview Matrix } int InitGL(GLvoid) // All Setup For OpenGL Goes Here { glShadeModel(GL_SMOOTH); // Enable Smooth Shading glClearColor(0.0f, 0.0f, 0.0f, 0.1f); // Black Background glClearDepth(1.0f); // Depth Buffer Setup glEnable(GL_DEPTH_TEST); // Enables Depth Testing glDepthFunc(GL_LEQUAL); // The Type Of Depth Testing To Do glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST); // Really Nice Perspective Calculations return TRUE; // Initialization Went OK } static int lastUpdate=0; int DrawGLScene(GLvoid) // Here's Where We Do All The Drawing { if(game->Update()==0) return 0; if(g.shared->updated || lastUpdate>4){ bool ret=game->Draw(); lastUpdate=0; SwapBuffers(hDC); // Swap Buffers (Double Buffering) g.shared->updated=false; return ret; } else { lastUpdate++; return true; } } GLvoid KillGLWindow(GLvoid) // Properly Kill The Window { if (fullscreen) // Are We In Fullscreen Mode? { ChangeDisplaySettings(NULL,0); // If So Switch Back To The Desktop } ShowCursor(TRUE); // Show Mouse Pointer if (hRC) // Do We Have A Rendering Context? { if (!wglMakeCurrent(NULL,NULL)) // Are We Able To Release The DC And RC Contexts? { MessageBox(NULL,"Release Of DC And RC Failed.","SHUTDOWN ERROR",MB_OK | MB_ICONINFORMATION); } if (!wglDeleteContext(hRC)) // Are We Able To Delete The RC? { MessageBox(NULL,"Release Rendering Context Failed.","SHUTDOWN ERROR",MB_OK | MB_ICONINFORMATION); } hRC=NULL; // Set RC To NULL } if (hDC && !ReleaseDC(hWnd,hDC)) // Are We Able To Release The DC { MessageBox(NULL,"Release Device Context Failed.","SHUTDOWN ERROR",MB_OK | MB_ICONINFORMATION); hDC=NULL; // Set DC To NULL } if (hWnd && !DestroyWindow(hWnd)) // Are We Able To Destroy The Window? { MessageBox(NULL,"Could Not Release hWnd.","SHUTDOWN ERROR",MB_OK | MB_ICONINFORMATION); hWnd=NULL; // Set hWnd To NULL } } /* This Code Creates Our OpenGL Window. Parameters Are: * * title - Title To Appear At The Top Of The Window * * width - Width Of The GL Window Or Fullscreen Mode * * height - Height Of The GL Window Or Fullscreen Mode * * bits - Number Of Bits To Use For Color (8/16/24/32) * * fullscreenflag - Use Fullscreen Mode (TRUE) Or Windowed Mode (FALSE) */ BOOL CreateGLWindow(char* title, int width, int height, int bits, bool fullscreenflag) { GLuint PixelFormat; // Holds The Results After Searching For A Match WNDCLASS wc; // Windows Class Structure DWORD dwExStyle; // Window Extended Style DWORD dwStyle; // Window Style fullscreen=fullscreenflag; // Set The Global Fullscreen Flag // hInstance = GetModuleHandle(NULL); // Grab An Instance For Our Window wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; // Redraw On Size, And Own DC For Window. wc.lpfnWndProc = (WNDPROC) WndProc; // WndProc Handles Messages wc.cbClsExtra = 0; // No Extra Window Data wc.cbWndExtra = 0; // No Extra Window Data wc.hInstance = hInstance; // Set The Instance wc.hIcon = LoadIcon(NULL, IDI_WINLOGO); // Load The Default Icon wc.hCursor = LoadCursor(NULL, IDC_ARROW); // Load The Arrow Pointer wc.hbrBackground = NULL; // No Background Required For GL wc.lpszMenuName = NULL; // We Don't Want A Menu wc.lpszClassName = "OpenGL"; // Set The Class Name if (!RegisterClass(&wc)) // Attempt To Register The Window Class { MessageBox(NULL,"Failed To Register The Window Class.","ERROR",MB_OK|MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (fullscreen) // Attempt Fullscreen Mode? { DEVMODE dmScreenSettings; // Device Mode memset(&dmScreenSettings,0,sizeof(dmScreenSettings)); // Makes Sure Memory's Cleared dmScreenSettings.dmSize=sizeof(dmScreenSettings); // Size Of The Devmode Structure dmScreenSettings.dmPelsWidth = width; // Selected Screen Width dmScreenSettings.dmPelsHeight = height; // Selected Screen Height dmScreenSettings.dmBitsPerPel = bits; // Selected Bits Per Pixel dmScreenSettings.dmFields=DM_BITSPERPEL|DM_PELSWIDTH|DM_PELSHEIGHT; // Try To Set Selected Mode And Get Results. NOTE: CDS_FULLSCREEN Gets Rid Of Start Bar. if (ChangeDisplaySettings(&dmScreenSettings,CDS_FULLSCREEN)!=DISP_CHANGE_SUCCESSFUL) { // If The Mode Fails, Offer Two Options. Quit Or Use Windowed Mode. if (MessageBox(NULL,"The Requested Fullscreen Mode Is Not Supported By\nYour Video Card. Use Windowed Mode Instead?","NeHe GL",MB_YESNO|MB_ICONEXCLAMATION)==IDYES) { fullscreen=FALSE; // Windowed Mode Selected. Fullscreen = FALSE } else { // Pop Up A Message Box Letting User Know The Program Is Closing. MessageBox(NULL,"Program Will Now Close.","ERROR",MB_OK|MB_ICONSTOP); return FALSE; // Return FALSE } } } if (fullscreen) // Are We Still In Fullscreen Mode? { dwExStyle=WS_EX_APPWINDOW; // Window Extended Style dwStyle=WS_POPUP; // Windows Style // HideMouse(); // Hide Mouse Pointer } else { dwExStyle=WS_EX_APPWINDOW | WS_EX_WINDOWEDGE; // Window Extended Style dwStyle=WS_OVERLAPPEDWINDOW; // Windows Style } // Create The Window if (!(hWnd=CreateWindowEx( dwExStyle, // Extended Style For The Window "OpenGL", // Class Name title, // Window Title dwStyle | // Defined Window Style WS_CLIPSIBLINGS | // Required Window Style WS_CLIPCHILDREN, // Required Window Style 0, 0, // Window Position width, height, // Selected Width And Height NULL, // No Parent Window NULL, // No Menu hInstance, // Instance NULL))) // Dont Pass Anything To WM_CREATE { KillGLWindow(); // Reset The Display MessageBox(NULL,"Window Creation Error.","ERROR",MB_OK|MB_ICONEXCLAMATION); return FALSE; // Return FALSE } static PIXELFORMATDESCRIPTOR pfd= // pfd Tells Windows How We Want Things To Be { sizeof(PIXELFORMATDESCRIPTOR), // Size Of This Pixel Format Descriptor 1, // Version Number PFD_DRAW_TO_WINDOW | // Format Must Support Window PFD_SUPPORT_OPENGL | // Format Must Support OpenGL PFD_DOUBLEBUFFER, // Must Support Double Buffering PFD_TYPE_RGBA, // Request An RGBA Format bits, // Select Our Color Depth 0, 0, 0, 0, 0, 0, // Color Bits Ignored 0, // No Alpha Buffer 0, // Shift Bit Ignored 0, // No Accumulation Buffer 0, 0, 0, 0, // Accumulation Bits Ignored 24, // 16Bit Z-Buffer (Depth Buffer) 0, // No Stencil Buffer 0, // No Auxiliary Buffer PFD_MAIN_PLANE, // Main Drawing Layer 0, // Reserved 0, 0, 0 // Layer Masks Ignored }; if (!(hDC=GetDC(hWnd))) // Did We Get A Device Context? { KillGLWindow(); // Reset The Display char t[500]; sprintf(t,"Can't Create A GL Device Context. %d",GetLastError()); MessageBox(NULL,t,"ERROR",MB_OK|MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (!(PixelFormat=ChoosePixelFormat(hDC,&pfd))) // Did Windows Find A Matching Pixel Format? { KillGLWindow(); // Reset The Display MessageBox(NULL,"Can't Find A Suitable PixelFormat.","ERROR",MB_OK|MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if(!SetPixelFormat(hDC,PixelFormat,&pfd)) // Are We Able To Set The Pixel Format? { KillGLWindow(); // Reset The Display MessageBox(NULL,"Can't Set The PixelFormat.","ERROR",MB_OK|MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if (!(hRC=wglCreateContext(hDC))) // Are We Able To Get A Rendering Context? { KillGLWindow(); // Reset The Display char t[500]; sprintf(t,"Can't Create A GL Rendering Context. %d",GetLastError()); MessageBox(NULL,t,"ERROR",MB_OK|MB_ICONEXCLAMATION); return FALSE; // Return FALSE } if(!wglMakeCurrent(hDC,hRC)) // Try To Activate The Rendering Context { KillGLWindow(); // Reset The Display MessageBox(NULL,"Can't Activate The GL Rendering Context.","ERROR",MB_OK|MB_ICONEXCLAMATION); return FALSE; // Return FALSE } ShowWindow(hWnd,SW_SHOW); // Show The Window SetForegroundWindow(hWnd); // Slightly Higher Priority SetFocus(hWnd); // Sets Keyboard Focus To The Window ReSizeGLScene(width, height); // Set Up Our Perspective GL Screen if (!InitGL()) // Initialize Our Newly Created GL Window { KillGLWindow(); // Reset The Display MessageBox(NULL,"Initialization Failed.","ERROR",MB_OK|MB_ICONEXCLAMATION); return FALSE; // Return FALSE } return TRUE; // Success } LRESULT CALLBACK WndProc( HWND hWnd, // Handle For This Window UINT uMsg, // Message For This Window WPARAM wParam, // Additional Message Information LPARAM lParam) // Additional Message Information { switch (uMsg) // Check For Windows Messages { case WM_ACTIVATE: // Watch For Window Activate Message { if (!HIWORD(wParam)) // Check Minimization State { active=TRUE; // Program Is Active } else { active=FALSE; // Program Is No Longer Active } return 0; // Return To The Message Loop } case WM_SYSCOMMAND: // Intercept System Commands { switch (wParam) // Check System Calls { case SC_SCREENSAVE: // Screensaver Trying To Start? case SC_MONITORPOWER: // Monitor Trying To Enter Powersave? return 0; // Prevent From Happening } break; // Exit } case WM_CLOSE: // Did We Receive A Close Message? { PostQuitMessage(0); // Send A Quit Message return 0; // Jump Back } case WM_KEYDOWN: // Is A Key Being Held Down? { game->KeyPressed(wParam); keys[wParam]=true; return 0; } case WM_CHAR: // Is A Key Being Held Down? { if(game->userWriting && (wParam>31)) if(game->ignoreNextChar) game->ignoreNextChar=false; else game->userInput+=char(wParam); return 0; } case WM_KEYUP: // Has A Key Been Released? { game->KeyReleased(wParam); keys[wParam]=false; return 0; } case WM_SIZE: // Resize The OpenGL Window { ReSizeGLScene(LOWORD(lParam),HIWORD(lParam)); // LoWord=Width, HiWord=Height return 0; // Jump Back } case WM_MOUSEMOVE: { mouse->MouseMove(LOWORD(lParam),HIWORD(lParam)); return 0; } case WM_RBUTTONDOWN: { mouse->MousePress(LOWORD(lParam),HIWORD(lParam),1); return 0; } case WM_LBUTTONDOWN: { mouse->MousePress(LOWORD(lParam),HIWORD(lParam),0); return 0; } case WM_LBUTTONUP: { mouse->MouseRelease(LOWORD(lParam),HIWORD(lParam),0); return 0; } case WM_RBUTTONUP: { mouse->MouseRelease(LOWORD(lParam),HIWORD(lParam),1); return 0; } case 522: //WM_MOUSEWHEEL: { viewCam.pos+=viewCam.forward*((short) HIWORD(wParam))*mouse->moveSpeed*0.3f; // move.y=((short) HIWORD(wParam))*0.1f; // wheel rotation // mouse->Move(move); return 0; } } // Pass All Unhandled Messages To DefWindowProc return DefWindowProc(hWnd,uMsg,wParam,lParam); } BOOL CALLBACK DlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { // Place message cases here. case WM_INITDIALOG: return true; default: return FALSE; } } int WINAPI WinMain( HINSTANCE hInstanceIn, // Instance HINSTANCE hPrevInstance, // Previous Instance LPSTR lpCmdLine, // Command Line Parameters int nCmdShow) // Window Show State { MSG msg; // Windows Message Structure BOOL done=FALSE; // Bool Variable To Exit Loop hInstance=hInstanceIn; fullscreen=!!regHandler.GetInt("FullScreen",1); // Windowed Mode //#ifdef _DEBUG fullscreen=false; //#endif; int xres=regHandler.GetInt("ScreenX",640); int yres=regHandler.GetInt("ScreenY",480); // Create Our OpenGL Window if (!CreateGLWindow("3DTA",xres,yres,32,fullscreen)) { return 0; // Quit If Window Was Not Created } font=new CglFont(hDC,32,223); LoadExtensions(); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Clear Screen And Depth Buffer SwapBuffers(hDC); // Swap Buffers (Double Buffering) game=new CGame(true); while(!done) // Loop That Runs While done=FALSE { if (PeekMessage(&msg,NULL,0,0,PM_REMOVE)) // Is There A Message Waiting? { if (msg.message==WM_QUIT) // Have We Received A Quit Message? { done=TRUE; // If So done=TRUE } else // If Not, Deal With Window Messages { TranslateMessage(&msg); // Translate The Message DispatchMessage(&msg); // Dispatch The Message } } else // If There Are No Messages { #ifdef PROFILE_TIME LARGE_INTEGER start; QueryPerformanceCounter(&start); #endif Sleep(10); #ifdef PROFILE_TIME LARGE_INTEGER stop; QueryPerformanceCounter(&stop); profiler.AddTime("Waiting",stop.QuadPart - start.QuadPart); #endif // Draw The Scene. Watch For ESC Key And Quit Messages From DrawGLScene() if ((active && !DrawGLScene()) || quit) // Active? Was There A Quit Received? { done=TRUE; // ESC or DrawGLScene Signalled A Quit } else // Not Time To Quit, Update Screen { } if (keys[VK_F1]) // Is F1 Being Pressed? { keys[VK_F1]=FALSE; // If So Make Key FALSE KillGLWindow(); // Kill Our Current Window fullscreen=!fullscreen; // Toggle Fullscreen / Windowed Mode // Recreate Our OpenGL Window if (!CreateGLWindow("3DTA",xres,yres,32,fullscreen)) { return 0; // Quit If Window Was Not Created } } } } // Shutdown KillGLWindow(); // Kill The Window delete game; UnloadExtensions(); return (msg.wParam); // Exit The Program }
[ [ [ 1, 494 ] ] ]
a94eca4310c55641d1e42bb5c5ad74ec9d5e8387
91b964984762870246a2a71cb32187eb9e85d74e
/SRC/OFFI SRC!/_Common/MoverActEvent.cpp
89f9c5ed5e60ea3e7d8f5b3ee24250c8971d421f
[]
no_license
willrebuild/flyffsf
e5911fb412221e00a20a6867fd00c55afca593c7
d38cc11790480d617b38bb5fc50729d676aef80d
refs/heads/master
2021-01-19T20:27:35.200154
2011-02-10T12:34:43
2011-02-10T12:34:43
32,710,780
3
0
null
null
null
null
UHC
C++
false
false
83,276
cpp
#include "stdafx.h" #include "defineText.h" #include "defineObj.h" #include "defineSkill.h" #include "Ship.h" #include "ModelObject.h" #include "CreateObj.h" //#include "ModelGlobal.h" #ifdef __CLIENT #include "AppDefine.h" #include "defineSound.h" #include "Sfx.h" #include "DPClient.h" #include "..\_Common\ParticleMng.h" #else // __CLIENT #include "User.h" #include "WorldMng.h" #include "DPSrvr.h" #include "DPCoreClient.h" #include "dpdatabaseclient.h" #include "..\_AIInterface\AIInterface.h" #include "Party.h" #endif // not __CLIENT #ifdef __EVENT_MONSTER #include "EventMonster.h" #endif // __EVENT_MONSTER #ifdef __CLIENT extern CDPClient g_DPlay; #else // __CLIENT extern CUserMng g_UserMng; extern CWorldMng g_WorldMng; extern CDPSrvr g_DPSrvr; extern CDPDatabaseClient g_dpDBClient; extern CDPCoreClient g_DPCoreClient; extern CPartyMng g_PartyMng; #endif // not __CLIENT BOOL IsLootSendText( ItemProp* pItemProp ) { if( pItemProp == NULL ) return FALSE; if( pItemProp->dwItemKind1 == IK1_GOLD || pItemProp->dwItemKind1 == IK1_GENERAL || pItemProp->dwItemKind1 == IK1_SYSTEM || pItemProp->dwItemKind1 == IK1_RIDE ) return FALSE; return TRUE; } /*-------------------------------------------------------------------------------------------------------- Action Event Handler ---------------------- CActionMover내에서 동작에 관련된 이벤트가 발생하면 호출되는 함수군 ----------------------------------------------------------------------------------------------------------*/ // // 스킬 모션이 작동하다 타격 프레임이 되면 이 함수를 호출함 // 근접전 스킬. // BOOL CMover::OnMeleeSkill( int nType, int nCount ) { if( m_oaAct != OBJACT_USESKILL ) return FALSE; // 스킬사용후 타점이 되기전에 다른 명령으로 바뀐경우. 이런상황이 와선 안된다. int nSkill = GetActParam( 0 ); OBJID idTarget = GetActParam( 1 ); DWORD dwLevel = GetActParam( 3 ); #if __VER >= 8 // __S8_PK BOOL bControl = GetActParam( 4 ); #endif // __VER >= 8 // __S8_PK ItemProp* pSkillProp; AddSkillProp* pAddSkillProp; // 스킬프로퍼티 가져옴. GetSkillProp( &pSkillProp, &pAddSkillProp, nSkill, dwLevel, "OnMeleeSkill" ); // .타겟에게 스킬효과(데미지같은..)를 준다. CMover* pFocusObj = prj.GetMover( idTarget ); // 타겟무버포인터를 얻어냄. if( IsInvalidObj( pFocusObj ) ) return FALSE; #if defined(__CLIENT) CModelObject* pModel =(CModelObject*)m_pModel; if( pModel ) { pModel->m_SparkInfo.m_bUsed = TRUE; pModel->m_SparkInfo.m_v3Color.x = 2.0f; pModel->m_SparkInfo.m_v3Color.y = 2.0f; pModel->m_SparkInfo.m_v3Color.z = 2.0f; pModel->m_SparkInfo.m_nCnt = 0; pModel->m_SparkInfo.m_fLerp= 1.0f; D3DXVECTOR3 vDir; if( pFocusObj == this ) vDir = D3DXVECTOR3( 0.0f, 1.0f, 0.0f ); else vDir = GetPos() - pFocusObj->GetPos(); D3DXVec3Normalize( &pModel->m_SparkInfo.m_v3SparkDir, &vDir ); } #endif //defined(__CLIENT) int nDamage = 0; // 쏘는 형태만 sfx발생. if( pSkillProp->dwExeTarget == EXT_MAGICATKSHOT || pSkillProp->dwExeTarget == EXT_MAGICSHOT ) { #ifdef __WORLDSERVER int nMaxDmgCnt = 1; if( pSkillProp->tmContinuousPain != NULL_ID ) nMaxDmgCnt = ( pAddSkillProp->dwSkillTime / pAddSkillProp->dwPainTime ) + 1; float fDmgPower = 0; if( pSkillProp->dwDmgShift != NULL_ID ) fDmgPower = (int)pSkillProp->dwDmgShift * 0.2f; // for( int nDmgCnt = 0; nDmgCnt < nMaxDmgCnt; nDmgCnt++ ) #if __VER >= 8 // __S8_PK OnAttackSFX( pFocusObj->GetId(), pAddSkillProp->dwSkillLvl, pSkillProp->dwID, 0, GetAngle(), fDmgPower, ( pSkillProp->dwSkillType == KT_SKILL? AF_MELEESKILL: AF_MAGICSKILL ), bControl ); #else // __VER >= 8 // __S8_PK OnAttackSFX( pFocusObj->GetId(), pAddSkillProp->dwSkillLvl, pSkillProp->dwID, 0, GetAngle(), fDmgPower, ( pSkillProp->dwSkillType == KT_SKILL? AF_MELEESKILL: AF_MAGICSKILL ) ); #endif // __VER >= 8 // __S8_PK #endif // __WORLDSERVER nDamage = ShootSkill( pFocusObj, pSkillProp, pAddSkillProp ); // 서버에선 이부분은 실행안된다. } else { // 적용범위 처리. 내부에서 ApplySkill()을 호출. #if __VER >= 8 // __S8_PK nDamage = DoApplySkill( pFocusObj, pSkillProp, pAddSkillProp, false, 0, FALSE, bControl ); #else // __VER >= 8 // __S8_PK nDamage = DoApplySkill( pFocusObj, pSkillProp, pAddSkillProp ); #endif // __VER >= 8 // __S8_PK } TRACE( "OnMeleeSkill%s, ", pSkillProp->szName ); if( nDamage && nCount == 0 ) // 연속타점일경우 첫번째 타점에만 적용 { // 쿨타임 시간 적용 - 클라 서버 동시에 돌아간다 #ifdef __CLIENT if( IsActiveMover() ) #endif { #if __VER >= 9 // __SKILL_0706 if( pAddSkillProp->dwCooldown != 0xFFFFFFFF ) // 쿨타임이 있는 스킬의 경우 SetCoolTime( pAddSkillProp, "OnMeleeSkill" ); #else // __SKILL_0706 if( pSkillProp->dwSkillReady != 0xffffffff ) // 쿨타임이 있는 스킬의 경우 SetCoolTime( pSkillProp, "OnMeleeSkill" ); #endif // __SKILL_0706 } } return TRUE; } // RT_TIME을 쓰는 스킬들의 스킬 시간을 계산. void CMover::SubReferTime( DWORD *pTime1, DWORD *pTime2, ItemProp *pSkillProp, AddSkillProp *pAddSkillProp ) { DWORD dwTime1 = 0, dwTime2 = 0; if( pSkillProp->dwReferTarget1 == RT_TIME ) { switch( pSkillProp->dwReferStat1 ) { case DST_STA: dwTime1 = GetSta(); break; case DST_DEX: dwTime1 = GetDex(); break; case DST_INT: dwTime1 = GetInt(); break; } dwTime1 = (DWORD)( ((pSkillProp->dwReferValue1/10.0f)*dwTime1) + (pAddSkillProp->dwSkillLvl * FLOAT(dwTime1/50.0f)) ); } if( pSkillProp->dwReferTarget2 == RT_TIME ) { switch( pSkillProp->dwReferStat2 ) { case DST_STA: dwTime2 = GetSta(); break; case DST_DEX: dwTime2 = GetDex(); break; case DST_INT: dwTime2 = GetInt(); break; } dwTime2 = (DWORD)( ((pSkillProp->dwReferValue2/10.0f)*dwTime2) + (pAddSkillProp->dwSkillLvl * FLOAT(dwTime2/50.0f)) ); } *pTime1 = dwTime1; *pTime2 = dwTime2; } // // this에게 파라메터를 적용한다. // SetDestParam을 일괄적으로 하는 부분. // m_SkillState.Serialize()후에도 이게 수행된다. // pSrc는 시전자. BOOL CMover::ApplyParam( CCtrl *pSrc, ItemProp *pSkillProp, AddSkillProp *pAddSkillProp, BOOL bSend, int nDamage ) { int i; CMover *pTarget = (CMover *)this; DWORD dwDestParam, dwSkillTime, dwPainTime, dwAbilityMin; int nAdjParam, nChgParam; int nDestData[3]; #if __VER >= 9 // __SKILL_0706 BOOL bPVP = pSrc->GetType() == OT_MOVER && ( (CMover*)pSrc )->IsPlayer() && IsPlayer(); #endif // __SKILL_0706 for( i = 0; i < 2; i ++ ) { if( pAddSkillProp ) { dwDestParam = pAddSkillProp->dwDestParam[i]; dwSkillTime = pAddSkillProp->dwSkillTime; dwPainTime = pAddSkillProp->dwPainTime; #if __VER >= 9 // __SKILL_0706 dwAbilityMin = bPVP? pAddSkillProp->dwAbilityMinPVP: pAddSkillProp->dwAbilityMin; #else // __SKILL_0706 dwAbilityMin = pAddSkillProp->dwAbilityMin; #endif // __SKILL_0706 nAdjParam = pAddSkillProp->nAdjParamVal[i]; nChgParam = (int)pAddSkillProp->dwChgParamVal[i]; nDestData[0] = pAddSkillProp->nDestData1[0]; nDestData[1] = pAddSkillProp->nDestData1[1]; nDestData[2] = pAddSkillProp->nDestData1[2]; } else { dwDestParam = pSkillProp->dwDestParam[i]; dwSkillTime = pSkillProp->dwSkillTime; dwPainTime = pSkillProp->tmContinuousPain; dwAbilityMin = pSkillProp->dwAbilityMin; nAdjParam = pSkillProp->nAdjParamVal[i]; nChgParam = (int)pSkillProp->dwChgParamVal[i]; nDestData[0] = pSkillProp->nDestData1[0]; nDestData[1] = pSkillProp->nDestData1[1]; nDestData[2] = pSkillProp->nDestData1[2]; } // destParam 1 switch( dwDestParam ) { case NULL_ID: break; case DST_CHRSTATE: // 상태 변경 if( nAdjParam & CHS_INVISIBILITY ) // 다크일루션상태로... { if( pTarget->SetDarkCover( TRUE, dwSkillTime ) == FALSE ) return FALSE; pTarget->m_wDarkCover = 0; } else if( nAdjParam & CHS_STUN ) // 스턴상태로... { if( pTarget->SetStun( TRUE, dwSkillTime ) == FALSE ) return FALSE; // 일단 땜빵. // 스턴이 걸리는건 두가지 루트가 있는데 // 1. 스킬에 맞았을때. // 2. 스턴아이템에 맞았을때 // 3. 기타 상황(트랩같은..) // 스킬을 사용해서 스턴이 걸린건 SkillInflu에서 처리해서 // 해제까지 시켜주기땜에 m_wStunCnt에 값이 들어가면 두군데서 해제를 시키게 된다. // 아이템에 의해 스턴이 걸린건 SkillInflu에서 처리를 안하므로 m_wStunCnt가 필요하다. // 이곳은 스킬에 의해서 들어오는 곳이기 때문. // 구조가 잘못설계됐다. 스킬중심이 아니고 상태중심으로 처리가 됐어야 했다. pTarget->m_wStunCnt = 0; } else if( nAdjParam & CHS_POISON ) // 독상태로.. { if( pTarget->SetPoison( TRUE, pSrc->GetId(), dwSkillTime, dwPainTime, nDestData[0] ) == FALSE ) // nDestData[0] 틱당 들어가는 데미지 return FALSE; pTarget->m_wPoisonCnt = 0; // 스턴이랑 같은 이유 } else if( nAdjParam & CHS_DARK ) // 암흑상태 { if( pTarget->SetDark( TRUE, dwSkillTime, nDestData[1] ) == FALSE ) // nDestData1[1] : 명중률 수정치. return FALSE; pTarget->m_wDarkCnt = 0; // 스턴이랑 같은 이유 } else if( nAdjParam & CHS_BLEEDING ) // 출혈상태로.. { if( nDestData[0] < 0 ) nDestData[0] = nDamage / 10; if( pTarget->SetBleeding( TRUE, pSrc->GetId(), dwSkillTime, dwPainTime, nDestData[0] ) == FALSE ) return FALSE; pTarget->m_wBleedingCnt = 0; // 스턴이랑 같은 이유 } else { // 다른 상태들은 걍 세팅함. BOOL bAble = TRUE; if( (nAdjParam & CHS_SLOW) && pTarget->GetProp()->dwClass == RANK_MIDBOSS ) // 슬로우상태를 중간보스에게 걸려고 했다면. bAble = FALSE; // 면역. if( bAble ) pTarget->SetDestParam( dwDestParam, nAdjParam, NULL_CHGPARAM, TRUE ); } break; case DST_CHR_STEALHP: // HP흡수. 흡혈은 DST_로 하기가 좀 안좋다. { int nStealHP = (int)( nDamage * (nAdjParam / 100.0f) ); // 실제가격한 데미지에서 흡수할양을 정함. if( pSrc->GetType() == OT_MOVER ) ((CMover *)pSrc)->SetDestParam( DST_HP, nStealHP, NULL_CHGPARAM ); // 시전자 HP로 흡수. } break; case DST_CHR_STEALHP_IMM: // 지정된양의 HP흡수. { if( GetType() == OT_MOVER ) { int nHP = GetHitPoint(); // 방어자의 hp int nStealHP = nAdjParam; // 흡수해야할 hp if( nHP < nStealHP ) // 피를 뽑아와야하는데 남은피가 더 적으면. nStealHP = nHP; // 남은피만큼 뽑아옴 //SetDestParam( DST_HP, -nStealHP, 0 ); // 피를 뺏김. if( pSrc->GetType() == OT_MOVER ) { // ((CMover*)this)->m_pActMover->SendDamage( AF_FORCE, // 타겟은 데미지입고 // GetId(), // nStealHP ); // chipi_080303 버그 수정 - 몬스터가 자기 자신을 타겟으로 설정하는 문제 ((CMover*)this)->m_pActMover->SendDamage( AF_FORCE, // 타겟은 데미지입고 ((CMover*)pSrc)->GetId(), nStealHP ); ((CMover *)pSrc)->SetDestParam( DST_HP, nStealHP, NULL_CHGPARAM, TRUE ); // 공격자 HP로 흡수. } } } break; case DST_CURECHR: // 상태 해제 pTarget->RemoveDebuff( nAdjParam ); break; case DST_CLEARBUFF: // 대상의 버프를 파괴. if( nAdjParam == NULL_ID ) { pTarget->RemoveBuffAll(); } else { int i; for( i = 0; i < nAdjParam; i ++ ) pTarget->RemoveBuffOne(); } break; case DST_CHR_CHANCESTUN: // adj:확률 data1:스킬 case DST_CHR_CHANCEPOISON: // adj:확률 data1:스킬 case DST_CHR_CHANCEDARK: // adj:확률 data1:스킬 case DST_CHR_CHANCEBLEEDING:// adj:확률 data1:스킬 case DST_CHR_CHANCESTEALHP: // adj:확률 data1:스킬 pTarget->SetDestParam( dwDestParam, nAdjParam, nChgParam, TRUE ); break; #ifdef __WORLDSERVER case DST_HP: // 힐링. if( pAddSkillProp ) { if( pSkillProp->dwReferTarget1 == RT_HEAL || pSkillProp->dwReferTarget2 == RT_HEAL ) { DWORD dwHp1 = 0, dwHp2 = 0; if( pSrc->GetType() == OT_MOVER ) // 시전자가 사람일때만 스탯에 의한 영향 { if( pSkillProp->dwReferTarget1 == RT_HEAL ) { switch( pSkillProp->dwReferStat1 ) { case DST_STA: dwHp1 = ((CMover *)pSrc)->GetSta(); break; case DST_DEX: dwHp1 = ((CMover *)pSrc)->GetDex(); break; case DST_INT: dwHp1 = ((CMover *)pSrc)->GetInt(); break; } dwHp1 = (DWORD)( ((pSkillProp->dwReferValue1 / 10.0f) * dwHp1) + (pAddSkillProp->dwSkillLvl * FLOAT(dwHp1 / 50.0f)) ); } if( pSkillProp->dwReferTarget2 == RT_HEAL ) { switch( pSkillProp->dwReferStat2 ) { case DST_STA: dwHp2 = ((CMover *)pSrc)->GetSta(); break; case DST_DEX: dwHp2 = ((CMover *)pSrc)->GetDex(); break; case DST_INT: dwHp2 = ((CMover *)pSrc)->GetInt(); break; } dwHp2 = (DWORD)( ((pSkillProp->dwReferValue2 / 10.0f) * dwHp2) + (pAddSkillProp->dwSkillLvl * FLOAT(dwHp2 / 50.0f)) ); } } // 증가될 HP량. int nIncHP = pAddSkillProp->nAdjParamVal1 + dwHp1 + dwHp2; // 힐링계열 스킬을 썼냐? if( (pAddSkillProp->dwDestParam1 == DST_HP || pAddSkillProp->dwDestParam2 == DST_HP) && nIncHP > 0 ) { if( pSrc->GetType() == OT_MOVER ) if( ((CMover *)pSrc)->IsPlayer() ) // 시전자가 플레이어일때 if( pTarget->GetMaxHitPoint() > pTarget->GetHitPoint() + nIncHP ) // 타겟이 오버힐 됐냐? ((CUser *)pSrc)->m_nOverHeal = PROCESS_COUNT * 30; // 시전자는 30초간 오버힐 상태. } // 힐시작. pTarget->SetDestParam( pAddSkillProp->dwDestParam1, nIncHP, pAddSkillProp->dwChgParamVal1, TRUE ); } } break; #endif // WorldServer case DST_SPEED: { MoverProp *pMoverProp = pTarget->GetProp(); if( pMoverProp ) { if( pMoverProp->dwClass != RANK_MIDBOSS // MIDBOSS만 아니면 다 걸림. #if __VER >= 12 // __SECRET_ROOM && pMoverProp->dwClass != RANK_SUPER // 12차 부터는 SUPER도 안걸린다. #endif // __SECRET_ROOM ) pTarget->SetDestParam( dwDestParam, nAdjParam, nChgParam, bSend ); } } break; default: // 그외 DST_는 일반적인 루틴을 탄다. // 일반 DST_처리 pTarget->SetDestParam( dwDestParam, nAdjParam, nChgParam, bSend ); break; } } return TRUE; } BOOL CMover::GetSkillProp( ItemProp **ppSkillProp, AddSkillProp **ppAddSkillProp, int nSkill, DWORD dwLevel, LPCTSTR szErr ) { char szStr[256] = {0, }; sprintf( szStr, "%s-%s", m_szName, szErr ); return CCtrl::GetSkillProp( ppSkillProp, ppAddSkillProp, nSkill, dwLevel, szStr ); } // 쿨타임 시작! #if __VER >= 9 // __SKILL_0706 void CMover::SetCoolTime( AddSkillProp* pAddSkillProp, LPCTSTR szCall ) { int nIdx = GetSkillIdx( pAddSkillProp->dwName ); // 스킬리스트 인덱스를 찾음. if( nIdx < 0 || nIdx >= MAX_SKILL_JOB ) Error( "szCall SetCoolTime : %d %d스킬을 찾을 수 없음 %s", nIdx, pAddSkillProp->dwName, GetName() ); else m_tmReUseDelay[ nIdx ] = pAddSkillProp->dwCooldown + timeGetTime(); // 1/1000단위 } #else // __SKILL_0706 void CMover::SetCoolTime( ItemProp *pSkillProp, LPCTSTR szCall ) { int nIdx = GetSkillIdx( pSkillProp->dwID ); // 스킬리스트 인덱스를 찾음. if( nIdx < 0 || nIdx >= MAX_SKILL_JOB ) Error( "szCall SetCoolTime : %d %d스킬을 찾을 수 없음 %s", nIdx, pSkillProp->dwID, GetName() ); else m_tmReUseDelay[ nIdx ] = pSkillProp->dwSkillReady + timeGetTime(); // 1/1000단위 } #endif // __SKILL_0706 // // 마법 스킬의 타점때 호출. // nCount 워터볼의 경우 여러번 호출이 되기때문에 nCount==0 의 경우만 경험치가 올라간다. // BOOL CMover::OnMagicSkill( int nType, int nCount ) { if( m_oaAct != OBJACT_USESKILL ) return FALSE; // 스킬사용후 타점이 되기전에 다른 명령으로 바뀐경우. 이런상황이 와선 안된다. int nSkill = GetActParam(0); OBJID idTarget = GetActParam(1); DWORD dwLevel = GetActParam( 3 ); #if __VER >= 8 // __S8_PK BOOL bControl = GetActParam( 4 ); #endif // __VER >= 8 // __S8_PK ItemProp* pSkillProp = NULL; AddSkillProp* pAddSkillProp = NULL; LPSKILL pSkill = NULL; BOOL bRet = GetSkillProp( &pSkillProp, &pAddSkillProp, nSkill, dwLevel, "CMover::OnMagicSkill" ); if( bRet == FALSE ) { Error( "OnMagicSkill : 스킬프롭읽기 실패함. 현재진행중인 Motion=%d %d", m_dwMotion, dwLevel ); return FALSE; } CMover* pFocusObj = prj.GetMover( idTarget ); // 타겟무버포인터를 얻어냄. if( IsInvalidObj( pFocusObj ) ) return FALSE; if( pSkillProp->dwID == SI_ASS_HEAL_HEALING ) // 힐링 상대가 죽었으면 취소 { if( pFocusObj->IsDie() ) return FALSE; } BOOL bSuccess = FALSE; BOOL bShoot = pSkillProp->dwExeTarget == EXT_MAGICATKSHOT || pSkillProp->dwExeTarget == EXT_MAGICSHOT; if( bShoot ) // 쏘는 형태만 sfx발생. { #ifdef __WORLDSERVER int nMaxDmgCnt = 1; if( pSkillProp->tmContinuousPain != NULL_ID ) nMaxDmgCnt = ( pAddSkillProp->dwSkillTime / pAddSkillProp->dwPainTime ) + 1; float fDmgPower = 0; if( pSkillProp->dwDmgShift != NULL_ID ) fDmgPower = (int)pSkillProp->dwDmgShift * 0.2f; // for( int nDmgCnt = 0; nDmgCnt < nMaxDmgCnt; nDmgCnt++ ) #if __VER >= 8 // __S8_PK OnAttackSFX( pFocusObj->GetId(), pAddSkillProp->dwSkillLvl, pSkillProp->dwID, 0, GetAngle(), fDmgPower, ( pSkillProp->dwSkillType == KT_SKILL? AF_MELEESKILL: AF_MAGICSKILL ), bControl ); #else // __VER >= 8 // __S8_PK OnAttackSFX( pFocusObj->GetId(), pAddSkillProp->dwSkillLvl, pSkillProp->dwID, 0, GetAngle(), fDmgPower, ( pSkillProp->dwSkillType == KT_SKILL? AF_MELEESKILL: AF_MAGICSKILL ) ); #endif // __VER >= 8 // __S8_PK #endif // __WORLDSERVER bSuccess = ShootSkill( pFocusObj, pSkillProp, pAddSkillProp ); // 서버에선 이부분은 실행안된다. } else { // 적용범위 처리. 내부에서 ApplySkill()을 호출. #if __VER >= 8 // __S8_PK int nDamage = DoApplySkill( pFocusObj, pSkillProp, pAddSkillProp, false, 0, FALSE, bControl ); #else // __VER >= 8 // __S8_PK int nDamage = DoApplySkill( pFocusObj, pSkillProp, pAddSkillProp ); #endif // __VER >= 8 // __S8_PK if( nDamage == 0 ) return FALSE; bSuccess = (BOOL)nDamage; #ifdef __CLIENT if( pSkillProp->dwID == SI_MAG_MAG_BLINKPOOL ) { CWndWorld* pWndWorld = (CWndWorld*)g_WndMng.GetWndBase( APP_WORLD ); if( IsActiveMover() ) { D3DXVECTOR3 vStart; D3DXVECTOR3 vEnd; vStart = GetPos(); vStart.y += 1.0f; vEnd = pWndWorld->m_vTelePos; CWorld *pWorld = GetWorld(); if( pWorld->IntersectObjLine( NULL, vStart, vEnd, FALSE, FALSE ) ) { g_WndMng.m_pWndWorld->SetNextSkill( NEXTSKILL_NONE ); g_WndMng.PutString( prj.GetText( TID_GAME_BLOCKTARGETING ), NULL, prj.GetTextColor( TID_GAME_BLOCKTARGETING ) ); return FALSE; } g_DPlay.SendTeleSkill( GetId(), pWndWorld->m_vTelePos ); } } #endif // Client } if( bSuccess ) // 스킬사용 실패하면 마나안깎임. / 경험치 안오름. { #ifdef __WORLDSERVER // 발사한 순간에 마나등을 깍는다. int nReqMp = GetReqMp( pAddSkillProp->nReqMp ); #if __VER >= 10 // __LEGEND // 10차 전승시스템 Neuz, World, Trans if(nReqMp != 9999999) #endif //__LEGEND // 10차 전승시스템 Neuz, World, Trans { if( pAddSkillProp->nSkillCount > 1 ) nReqMp /= pAddSkillProp->nSkillCount; IncManaPoint( -nReqMp ); if( pAddSkillProp->nReqFp != NULL_ID ) IncFatiguePoint( -GetReqFp( pAddSkillProp->nReqFp ) ); } #if __VER >= 10 // __LEGEND // 10차 전승시스템 Neuz, World, Trans if( pSkillProp->dwID == SI_RIG_HERO_RETURN ) { REPLACE_TYPE type = REPLACE_NORMAL; PRegionElem pRgnElem = NULL; CWorld* pWorld = GetWorld(); if( !pWorld ) return FALSE; if( IsChaotic() ) { #if __VER >= 8 // __S8_PK if( pWorld->GetID() != pWorld->m_dwIdWorldRevival && pWorld->m_dwIdWorldRevival != 0 ) pRgnElem = g_WorldMng.GetRevivalPosChao( pWorld->m_dwIdWorldRevival, pWorld->m_szKeyRevival ); if( NULL == pRgnElem ) // Find near revival pos pRgnElem = g_WorldMng.GetNearRevivalPosChao( pWorld->GetID(), GetPos() ); #else // __VER >= 8 // __S8_PK pRgnElem = g_WorldMng.GetNearRevivalPosChao( pWorld->GetID(), GetPos() ); #endif // __VER >= 8 // __S8_PK } else { if( pWorld->GetID() != pWorld->m_dwIdWorldRevival && pWorld->m_dwIdWorldRevival != 0 ) pRgnElem = g_WorldMng.GetRevivalPos( pWorld->m_dwIdWorldRevival, pWorld->m_szKeyRevival ); if( NULL == pRgnElem ) // Find near revival pos pRgnElem = g_WorldMng.GetNearRevivalPos( pWorld->GetID(), GetPos() ); } if( NULL != pRgnElem ) REPLACE( g_uIdofMulti, pRgnElem->m_dwWorldId, pRgnElem->m_vPos, type, nRevivalLayer ); else REPLACE( g_uIdofMulti, pWorld->GetID(), GetPos(), type, nDefaultLayer ); } if( pSkillProp->dwID == SI_KNT_HERO_DRAWING ) { D3DXVECTOR3 vSrc = GetPos(); FLOAT fAngle = GetDegree( pFocusObj->GetPos(), GetPos() ); // 시전자와 타겟의 각도를 구함 //vSrc.x -= 1.0f; //vSrc.z -= 1.0f; pFocusObj->SetPos(vSrc); g_UserMng.AddSetPos( pFocusObj, vSrc ); g_UserMng.AddPushPower( pFocusObj, pFocusObj->GetPos(), pFocusObj->GetAngle(), fAngle, 0.2f ); pFocusObj->ClearDestObj(); // pFocusObj->SetPosChanged( TRUE ); } #endif //__LEGEND // 10차 전승시스템 Neuz, World, Trans #endif // WORLDSERVER // 쿨타임 시간 적용 - 클라 서버 동시에 돌아간다 #ifdef __CLIENT if( IsActiveMover() && nCount == 0 ) // 연속타점일경우 첫번째 타점에만 적용 #endif // __CLIENT #if __VER >= 9 // __SKILL_0706 if( pAddSkillProp->dwCooldown != 0xFFFFFFFF ) SetCoolTime( pAddSkillProp, "OnMagicSkill" ); #else // __SKILL_0706 if( pSkillProp->dwSkillReady != 0xffffffff ) // 쿨타임이 있는 스킬의 경우 SetCoolTime( pSkillProp, "OnMagicSkill" ); #endif // __SKILL_0706 } // bSuccess #if defined(__CLIENT) CModelObject* pModel = (CModelObject*)m_pModel; if( pModel ) { pModel->m_SparkInfo.m_bUsed = TRUE; pModel->m_SparkInfo.m_v3Color.x = 2.0f; pModel->m_SparkInfo.m_v3Color.y = 2.0f; pModel->m_SparkInfo.m_v3Color.z = 2.0f; pModel->m_SparkInfo.m_nCnt = 0; pModel->m_SparkInfo.m_fLerp= 1.0f; AngleToVectorXZ( &pModel->m_SparkInfo.m_v3SparkDir, GetAngle(), -1.0f ); } #endif //defined(__CLIENT) return TRUE; } // OnMagicSkill // // 장거리무기가 발사되는 시점에 발생하는 이벤트 // BOOL CMover::OnAttackRange() { int idTarget = GetActParam( 0 ); DWORD dwItemID = GetActParam( 1 ); // 사용할 아이템 아이디 (player이면 충전레벨) int idSfxHit = GetActParam( 2 ); // 몬스터가 사용한것이면 여기에 서버로부터 받은값이 들어있다. #if __VER >= 8 // __S8_PK BOOL bControl = FALSE; #endif // __VER >= 8 // __S8_PK CMover* pHit = prj.GetMover( idTarget ); // 타겟의 포인터를 얻어냄. if( IsInvalidObj(pHit) ) return FALSE; // 클릭했을당시는 있었으나 발사되기전에 삭제되었다. ItemProp *pItemProp = NULL; if( IsPlayer() ) pItemProp = GetActiveHandItemProp(); // 이런경우는 걍 손에 든 무기(혹은 기본아이템) else { if( dwItemID == NULL_ID || dwItemID == 0 ) pItemProp = GetActiveHandItemProp(); // 이런경우는 걍 손에 든 무기(혹은 기본아이템) else pItemProp = prj.GetItemProp( dwItemID ); // 직접 아이템을 지정한 경우는 그걸로 공격함(몬스터가 주로 사용함) } if( pItemProp == NULL ) return FALSE; #ifdef __WORLDSERVER #if __VER >= 12 // __MONSTER_SKILL if( IsNPC() ) CMonsterSkill::GetInstance()->ApplySkill( this, pHit, ATK_RANGE ); #endif // __MONSTER_SKILL #endif // __WORLDSERVER DWORD dwSfxObj = pItemProp->dwSfxObj2; D3DXVECTOR3 vPosDest = pHit->GetPos() + D3DXVECTOR3( 0.0f, 1.0f, 0.0f ); // 발사 지점을 임의로 올려준다. 땜빵 D3DXVECTOR3 vPosSrc = GetPos() + D3DXVECTOR3( 0.0f, 1.0f, 0.0f ); // 발사 지점을 임의로 올려준다. 땜빵 #ifdef __CLIENT CSfx* pSfx = NULL; #endif // 아크로뱃은 이펙트 출력이 항상 왼손에... if( IsPlayer() ) { ItemProp *pItemElem = GetActiveHandItemProp( PARTS_BULLET ); // 화살아이템을 참조로 화살이펙트 생성 if( pItemElem && pItemElem->dwSfxObj2 != NULL_ID ) { #ifdef __CLIENT if( IsActiveMover() ) pSfx = CreateSfxArrow( pItemElem->dwSfxObj2, pItemProp->dwSfxObj3, vPosDest, idTarget ); #endif //__CLIENT #ifdef __WORLDSERVER g_UserMng.AddCreateSfxAllow( this, pItemElem->dwSfxObj2, pItemProp->dwSfxObj3, vPosDest, idTarget ); #endif //__WORLDSERVER } } else { if( dwSfxObj == NULL_ID ) return FALSE; #ifdef __CLIENT pSfx = CreateSfx( D3DDEVICE, dwSfxObj, vPosSrc,GetId(), vPosDest ,idTarget ); #endif } DWORD dwAtkFlags = AF_GENERIC; if( IsPlayer() ) dwAtkFlags |= AF_RANGE; #ifdef __WORLDSERVER #if __VER >= 8 // __S8_PK OnAttackSFX( pHit->GetId(), ( IsPlayer()? dwItemID: 0 ), NULL_ID, 0, 0, 0, dwAtkFlags, bControl ); #else // __VER >= 8 // __S8_PK OnAttackSFX( pHit->GetId(), ( IsPlayer()? dwItemID: 0 ), NULL_ID, 0, 0, 0, dwAtkFlags ); #endif // __VER >= 8 // __S8_PK #endif // __WORLDSERVER #ifdef __CLIENT if( pSfx ) { if( IsActiveMover() ) { idSfxHit = ++m_idSfxHit; // 클라에서 발사체가 생성된 즉시 ID를 만들고 그것을 서버로 보냄. g_DPlay.SendSfxID( idTarget, idSfxHit, dwAtkFlags ); pSfx->m_idSfxHit = idSfxHit; pSfx->m_nMagicPower = IsPlayer() ? dwItemID : 0; // 충전레벨도 넣어준다. } // 쏜놈이 g_pPlayer거나 / 쏜놈은 몹이고 맞는놈이 g_pPlayer면 if( IsActiveMover() || (IsNPC() && pHit->IsActiveMover()) ) pSfx->m_idSfxHit = idSfxHit; // id를 등록함 } #endif //__CLIENT return TRUE; } // // 완드(매직)어택이 발사되는 시점에 발생하는 이벤트. // BOOL CMover::OnAttackMagic() { int idTarget = GetActParam( 0 ); int nMagicPower = GetActParam( 1 ); #if __VER >= 8 // __S8_PK BOOL bControl = GetActParam( 4 ); #endif // __VER >= 8 // __S8_PK CMover* pHit = prj.GetMover( idTarget ); // 타겟의 포인터를 얻어냄. if( IsInvalidObj(pHit) ) return FALSE; // 클릭했을당시는 있었으나 발사되기전에 삭제되었다. #ifdef __WORLDSERVER #if __VER >= 8 // __S8_PK OnAttackSFX( pHit->GetId(), nMagicPower, NULL_ID, 0, 0, 0, AF_MAGIC, bControl ); #else // __VER >= 8 // __S8_PK OnAttackSFX( pHit->GetId(), nMagicPower, NULL_ID, 0, 0, 0, AF_MAGIC ); #endif // __VER >= 8 // __S8_PK #else // __WORLDSERVER DWORD dwWeaponId; if( IsActiveMover() ) { CItemElem* pWeapon = GetWeaponItem(); if( pWeapon == NULL ) return FALSE; dwWeaponId = pWeapon->m_dwItemId; } else { dwWeaponId = m_aEquipInfo[PARTS_RWEAPON].dwId; if( dwWeaponId == NULL ) return FALSE; } #if __VER < 11 // __REMOVE_ENDURANCE if( IsActiveMover() ) { CItemElem* pWeapon = GetWeaponItem(); ItemProp* pItemProp = pWeapon->GetProp(); if( pItemProp ) if( ( ( pWeapon->m_nHitPoint * 100 ) / pItemProp->dwEndurance ) == 0 ) g_WndMng.PutString( prj.GetText( TID_GAME_WASTEENDURANCE ), NULL, prj.GetTextColor( TID_GAME_WASTEENDURANCE ) ); } #endif // __REMOVE_ENDURANCE D3DXVECTOR3 vPosDest = pHit->GetPos(); // 발사 목표지점은 상대의 중앙. float fHeight = fabs(pHit->m_pModel->m_vMax.y) / 2.0f; // 아이바트같은넘은 공중에 떠있기땜에 순수 높이인 Max값만 취했다. fHeight *= pHit->GetScale().x; vPosDest.y += fHeight; D3DXVECTOR3 vPosSrc = GetPos() + D3DXVECTOR3( 0.0f, 1.0f, 0.0f ); // 발사 지점을 임의로 올려준다. 땜빵 ItemProp *pHandItemProp = GetActiveHandItemProp( PARTS_RWEAPON ); CSfx* pSfx = NULL; if( m_pActMover->IsFly() ) { pSfx = CreateSfx( D3DDEVICE, XI_FIR_WAND02, vPosSrc, GetId(), vPosDest, idTarget ); if( pSfx ) pSfx->ShootSfx( GetAngle(), -GetAngleX(), 0.75f ); } else { DWORD dwSfxObj2 = XI_FIR_WAND01; if( pHandItemProp ) dwSfxObj2 = pHandItemProp->dwSfxObj2; pSfx = CreateSfx( D3DDEVICE, dwSfxObj2, vPosSrc,GetId(), vPosDest ,idTarget ); if( pSfx ) { switch(nMagicPower) { case 1: pSfx->SetScale( D3DXVECTOR3( 1.2f, 1.2f, 1.2f ) ); break; case 2: pSfx->SetScale( D3DXVECTOR3( 1.7f, 1.7f, 1.7f ) ); break; case 3: case 4: pSfx->SetScale( D3DXVECTOR3( 2.5f, 2.5f, 2.5f ) ); break; } ((CSfxItemWandAtk1 *)pSfx)->m_fCenter = fHeight; } } if( pSfx ) { if( IsActiveMover() ) // g_pPlayer만 아래짓을 하게 한다. { int idSfxHit = ++m_idSfxHit; // 클라에서 발사체가 생성된 즉시 ID를 만들고 그것을 서버로 보냄. g_DPlay.SendSfxID( idTarget, idSfxHit, AF_MAGIC ); pSfx->m_idSfxHit = idSfxHit; pSfx->m_nMagicPower = nMagicPower; // 충전레벨도 넣어준다. } } CModelObject* pModel = (CModelObject*)m_pModel; if( pModel ) { pModel->m_SparkInfo.m_bUsed = TRUE; pModel->m_SparkInfo.m_v3Color.x = 2.0f; pModel->m_SparkInfo.m_v3Color.y = 2.0f; pModel->m_SparkInfo.m_v3Color.z = 2.0f; pModel->m_SparkInfo.m_nCnt = 0; pModel->m_SparkInfo.m_fLerp= 1.0f; AngleToVectorXZ( &pModel->m_SparkInfo.m_v3SparkDir, GetAngle(), -1.0f ); } #endif // __WORLDSERVER return TRUE; } void CMover::OnAttackMelee_ClockWorks( DWORD dwState, CMover *pHitObj ) { int nItemID = GetActParam( 1 ); // 사용할 아이템 아이디 #ifdef __WORLDSERVER UpdateMatrix(); // 몸체의 특정부위에서 나는 데미지를 처리하기 위해선 서버에서도 매트릭스를 갱신해야한다. CModelObject *pModel = (CModelObject *)m_pModel; pModel->UpdateMatrixBone(); // 서버에서는 본애니메이션을 하지 않으므로 GetEventPos()를 사용할 일이 있을땐 업데이트를 해줘야 한다. #endif // WorldServer switch( dwState ) { case OBJSTA_ATK1: // 칼로 내려치기 { D3DXVECTOR3 vPos; CModelObject *pModel = (CModelObject *)m_pModel; pModel->GetEventPos( &vPos, 0 ); D3DXVec3TransformCoord( &vPos, &vPos, GetMatrixWorldPtr() ); OnDamage( nItemID, dwState, NULL, &vPos ); // 이펙트가 발생하는 위치에 데미지를 주고 #ifdef __CLIENT GetWorld()->m_pCamera->SetQuake( 15, 0.5f ); CSfx *pSfx = CreateSfx( D3DDEVICE, XI_NPCSP1DIRFIRESP, vPos ); // 이펙트를 발생 - 서버에선 생성 안됨. if( pSfx ) pSfx->SetAngle( -GetAngle() ); #endif } break; case OBJSTA_ATK2: // 포쏘기 { D3DXVECTOR3 vPos; CModelObject *pModel = (CModelObject *)m_pModel; pModel->GetEventPos( &vPos, 1 ); // 왼손 집게발 위치. D3DXVec3TransformCoord( &vPos, &vPos, GetMatrixWorldPtr() ); #ifdef __CLIENT CSfx *pSfx = CreateSfx( D3DDEVICE, XI_NPCSP1DIRCANNON, vPos, GetId() ); // 발사이펙트. if( pSfx ) { pSfx->SetAngle( -GetAngle() ); pSfx->SetScale( D3DXVECTOR3(4.0f, 4.0f, 4.0f) ); } #endif CMover *pTarget = pHitObj; if( IsValidObj(pTarget) ) { OnDamage( nItemID, dwState, NULL, &pTarget->GetPos() ); // 타겟의 좌표를 중심으로 데미지를 줌. #ifdef __CLIENT pSfx = CreateSfx( D3DDEVICE, XI_NPCSP1RANBALL, vPos, GetId(), pTarget->GetPos(), pTarget->GetId(), -1 ); // 포탄 if( pSfx ) { pSfx->SetScale( D3DXVECTOR3(4.0f, 4.0f, 4.0f) ); { FLOAT fAngXZ, fAngH; D3DXVECTOR3 vDist = pTarget->GetPos() - vPos; xGetDegree( &fAngXZ, &fAngH, vDist ); // 목표와의 각도구함. ((CSfxAtkStraight *)pSfx)->ShootSfx( fAngXZ, -fAngH, 2.0f, XI_NPCSP1RANBOOM ); // 날아가는 방향 설정. } } #endif } } break; case OBJSTA_ATK3: #ifdef __CLIENT GetWorld()->m_pCamera->SetQuake( 30, 0.7f ); #endif break; case OBJSTA_ATK4: // 발로 밟기. { D3DXVECTOR3 vPos; vPos = GetPos(); DWORD dwFlag = AF_GENERIC; if( xRandom(100) < 15 ) dwFlag |= AF_FLYING; OnDamage( nItemID, dwState, NULL, &vPos, dwFlag ); // 데미지는 몸중심을 기준으로 한다. CModelObject *pModel = (CModelObject *)m_pModel; pModel->GetEventPos( &vPos, 3 ); D3DXVec3TransformCoord( &vPos, &vPos, GetMatrixWorldPtr() ); #ifdef __CLIENT GetWorld()->m_pCamera->SetQuake( 60, 1.5f ); CSfx *pSfx = CreateSfx( D3DDEVICE, XI_NPCSP1DIRCIRCLE, vPos ); if( pSfx ) pSfx->SetScale( D3DXVECTOR3(2.0f, 2.0f, 2.0f) ); pModel->GetEventPos( &vPos, 4 ); D3DXVec3TransformCoord( &vPos, &vPos, GetMatrixWorldPtr() ); pSfx = CreateSfx( D3DDEVICE, XI_NPCSP1DIRCIRCLE, vPos ); if( pSfx ) pSfx->SetScale( D3DXVECTOR3(2.0f, 2.0f, 2.0f) ); #endif } break; } } void CMover::OnAttackMelee_BigMuscle( DWORD dwState, CMover *pHitObj ) { int nItemID = GetActParam( 1 ); // 사용할 아이템 아이디 CModelObject *pModel = (CModelObject *)m_pModel; #ifdef __WORLDSERVER UpdateMatrix(); // 몸체의 특정부위에서 나는 데미지를 처리하기 위해선 서버에서도 매트릭스를 갱신해야한다. pModel->UpdateMatrixBone(); // 서버에서는 본애니메이션을 하지 않으므로 GetEventPos()를 사용할 일이 있을땐 업데이트를 해줘야 한다. #endif // WorldServer switch( dwState ) { case OBJSTA_ATK1: case OBJSTA_ATK2: { if( IsValidObj(pHitObj) ) { OnDamage( nItemID, dwState, pHitObj ); } } break; case OBJSTA_ATK3: // 땅치기 스킬 - 두손 { D3DXMATRIX mMatrix; D3DXMatrixMultiply( &mMatrix, (pModel->GetMatrixBone(12)), &(GetMatrixWorld()) ); D3DXVECTOR3 v2; v2.x = mMatrix._41; v2.y = mMatrix._42; v2.z = mMatrix._43; v2.y -= 5.0f; #ifdef __CLIENT // 땅치고 끝날때 이펙트 왼손 CSfx *pSfx = CreateSfx( D3DDEVICE, XI_SKILL_CIRCLE_DUST, v2 ); if( pSfx ) pSfx->SetScale( D3DXVECTOR3( 12.0f, 12.0f, 12.0f ) ); PLAYSND( SND_PC_SKILLD_HITOFPENYA );//, &v2 ); #endif //__CLIENT D3DXMatrixMultiply( &mMatrix, (pModel->GetMatrixBone(16)), &(GetMatrixWorld()) ); D3DXVECTOR3 v3; v3.x = mMatrix._41; v3.y = mMatrix._42; v3.z = mMatrix._43; v3.y -= 5.0f; #ifdef __CLIENT // 땅치고 끝날때 이펙트 오른손 pSfx = CreateSfx( D3DDEVICE, XI_SKILL_CIRCLE_DUST, v3 ); if( pSfx ) pSfx->SetScale( D3DXVECTOR3( 12.0f, 12.0f, 12.0f ) ); #endif //__CLIENT if( m_pActMover->m_nMotionHitCount == 1 ) { #ifdef __WORLDSERVER GetWorld()->SendDamageAround( &GetPos(), (AF_GENERIC | AF_CRITICAL) , this, OBJTYPE_PLAYER, II_WEA_MOB_MONSTER4_ATK2 , 16.0f ); ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_GEN_BLEEDING, 10, "OnAttackMelee_BigMuscle" ); if( bSuccess ) ApplySkillAround( this, OBJTYPE_PLAYER, pSkillProp, pAddSkillProp , false ); #endif //__WORLDSERVER } else { #ifdef __CLIENT PLAYSND( SND_PC_BOSS_STUN ); #endif //__CLIENT #ifdef __WORLDSERVER ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_BIGMUSCLE_STUNGROUP, 1, "OnAttackMelee_BigMuscle" ); if( bSuccess ) ApplySkillAround( this, OBJTYPE_PLAYER, pSkillProp, pAddSkillProp , false ); #endif //__WORLDSERVER } } break; case OBJSTA_ATK4: // 땅치기 스킬 - 한손 { static D3DXVECTOR3 v3OldPos; if( m_pActMover->m_nMotionHitCount == 0 ) { v3OldPos = pHitObj->GetPos(); } else if( m_pActMover->m_nMotionHitCount == 1 ) { D3DXMATRIX mMatrix; D3DXMatrixMultiply( &mMatrix, (pModel->GetMatrixBone(12)), &(GetMatrixWorld()) ); D3DXVECTOR3 v2; v2.x = mMatrix._41; v2.y = mMatrix._42; v2.z = mMatrix._43; v2.y -= 5.0f; #ifdef __CLIENT // 땅치고 끝날때 이펙트 왼손 CSfx *pSfx = CreateSfx( D3DDEVICE, XI_SKILL_CIRCLE_DUST, v2 ); if( pSfx ) pSfx->SetScale( D3DXVECTOR3( 9.0f, 9.0f, 9.0f ) ); pSfx = CreateSfx( D3DDEVICE, XI_SKILL_MAG_EARTH_ROCKCRASH01, v3OldPos ); if( pSfx ) pSfx->SetScale( D3DXVECTOR3( 2.0f, 2.0f, 2.0f ) ); PLAYSND( SND_PC_SKILLD_HITOFPENYA ); #endif //__CLIENT #ifdef __WORLDSERVER ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_GEN_BLEEDING, 10, "OnAttackMelee_BigMuscle" ); if( bSuccess ) DoApplySkill( pHitObj, pSkillProp, pAddSkillProp ); GetWorld()->SendDamageAround( &(v3OldPos), AF_GENERIC | AF_CRITICAL , this, OBJTYPE_PLAYER, II_WEA_MOB_MONSTER4_ATK2 , 4.0f ); #endif //__WORLDSERVER } } break; } } void CMover::OnAttackMelee_Krrr( DWORD dwState, CMover *pHitObj ) { int nItemID = GetActParam( 1 ); // 사용할 아이템 아이디 CModelObject *pModel = (CModelObject *)m_pModel; #ifdef __WORLDSERVER UpdateMatrix(); // 몸체의 특정부위에서 나는 데미지를 처리하기 위해선 서버에서도 매트릭스를 갱신해야한다. pModel->UpdateMatrixBone(); // 서버에서는 본애니메이션을 하지 않으므로 GetEventPos()를 사용할 일이 있을땐 업데이트를 해줘야 한다. #endif // WorldServer switch( dwState ) { case OBJSTA_ATK1: { #ifdef __WORLDSERVER OnDamage( nItemID, dwState, pHitObj ); #endif //__WORLDSERVER } break; case OBJSTA_ATK2: { #ifdef __WORLDSERVER int nRandom = xRandom(100); if( nRandom <= 50 ) { ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_KRRR_POISON, 1, "OnSfxHit" ); if( bSuccess ) { pHitObj->ApplySkill( this, pSkillProp, pAddSkillProp ); } } else { OnDamage( nItemID, dwState, pHitObj ); } #endif // WorldServer } break; case OBJSTA_ATK3: // 두손으로 도끼 내려치기 { #ifdef __CLIENT CSfx *pSfx = CreateSfx( D3DDEVICE, XI_NPCSP1DIRFIRESP, pHitObj->GetPos() ); // 이펙트를 발생 - 서버에선 생성 안됨. if( pSfx ) pSfx->SetAngle( -GetAngle() ); PLAYSND( SND_PC_BOSS_CRASH, &pHitObj->GetPos() ); #endif //__CLIENT #ifdef __WORLDSERVER ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_GEN_KNOCK_BACK, 4, "OnAttackMelee_BigMuscle" ); if( bSuccess ) ApplySkillAround( this, OBJTYPE_PLAYER, pSkillProp, pAddSkillProp , false ); GetWorld()->SendDamageAround( &(pHitObj->GetPos()), AF_GENERIC, this, OBJTYPE_PLAYER, II_WEA_MOB_MONSTER4_ATK1 , 7.0f ); #endif //__WORLDSERVER } break; case OBJSTA_ATK4: // 주문을 외우고 플레이어들 한곳에 모인후 광역데미지 줌 { static D3DXVECTOR3 vLocal; if( m_pActMover->m_nMotionHitCount == 0 ) { #ifdef __CLIENT PLAYSND( SND_PC_BOSS_SUMMONS ); #endif //__CLIENT AngleToVectorXZ( &vLocal, GetAngle(), 5.0f ); // 때리는방향 5미터앞. vLocal += GetPos(); FLOAT fHeight = GetWorld()->GetLandHeight( vLocal.x, vLocal.z ); vLocal.y = fHeight; #ifdef __WORLDSERVER CPartyQuestProcessor* pProc = CPartyQuestProcessor::GetInstance(); CWorld* pWorld = GetWorld(); if( pWorld ) { int nId = pProc->PtInQuestRect( pWorld->GetID(), GetPos() ); if( nId > -1 ) { PPARTYQUESTELEM pElem = pProc->GetPartyQuest( nId ); PPARTYQUESTRECT pRect = pProc->GetPartyQuestRect( nId ); if( pElem && pRect ) #ifdef __LAYER_1015 g_UserMng.ReplaceWorldArea( pElem->idParty, pRect->dwWorldId, pRect->dwWorldId, vLocal.x, vLocal.z, 0.5f, TRUE, GetLayer() ); #else // __LAYER_1015 g_UserMng.ReplaceWorldArea( pElem->idParty, pRect->dwWorldId, pRect->dwWorldId, vLocal.x, vLocal.z, 0.5f, TRUE ); #endif // __LAYER_1015 } } #endif //__WORLDSERVER } else if( m_pActMover->m_nMotionHitCount == 1 ) // 약 5초후에 스턴 { #ifdef __CLIENT PLAYSND( SND_PC_BOSS_STUN ); #endif //__CLIENT #ifdef __WORLDSERVER ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_KRRR_STUNGROUP, 1, "OnAttackMelee_Krrr" ); if( bSuccess ) ApplySkillAround( this, OBJTYPE_PLAYER, pSkillProp, pAddSkillProp , false ); #endif //__WORLDSERVER } else if( m_pActMover->m_nMotionHitCount == 2 ) { #ifdef __CLIENT D3DXVECTOR3 v3Pos = vLocal; CSfx *pSfx = CreateSfx( D3DDEVICE, XI_SKILL_ELE_MULTI_METEOSHOWER02, v3Pos ); // 이펙트를 발생 - 서버에선 생성 안됨. if( pSfx ) pSfx->SetScale( D3DXVECTOR3( 0.8f, 0.8f, 0.8f ) ); v3Pos.x += ( xRandomF( 12.0f ) + -6.0f ); pSfx = CreateSfx( D3DDEVICE, XI_SKILL_ELE_MULTI_METEOSHOWER02, v3Pos ); // 이펙트를 발생 - 서버에선 생성 안됨. if( pSfx ) pSfx->SetScale( D3DXVECTOR3( 0.8f, 0.8f, 0.8f ) ); v3Pos = vLocal; v3Pos.z += ( xRandomF( 12.0f ) + -6.0f ); pSfx = CreateSfx( D3DDEVICE, XI_SKILL_ELE_MULTI_METEOSHOWER02, v3Pos ); // 이펙트를 발생 - 서버에선 생성 안됨. if( pSfx ) pSfx->SetScale( D3DXVECTOR3( 0.8f, 0.8f, 0.8f ) ); #endif //__CLIENT } else if( m_pActMover->m_nMotionHitCount == 3 ) { #ifdef __WORLDSERVER GetWorld()->SendDamageAround( &(pHitObj->GetPos()), AF_GENERIC, this, OBJTYPE_PLAYER, II_WEA_MOB_MONSTER4_ATK2 , 5.0f ); #endif //__WORLDSERVER } } break; } } #if __VER >= 10 // __Y_DRAGON_FIRE void CMover::OnAttackMelee_Meteonyker( DWORD dwState, CMover *pHitObj ) { int nItemID = GetActParam( 1 ); // 사용할 아이템 아이디 CModelObject *pModel = (CModelObject *)m_pModel; #ifdef __WORLDSERVER UpdateMatrix(); // 몸체의 특정부위에서 나는 데미지를 처리하기 위해선 서버에서도 매트릭스를 갱신해야한다. pModel->UpdateMatrixBone(); // 서버에서는 본애니메이션을 하지 않으므로 GetEventPos()를 사용할 일이 있을땐 업데이트를 해줘야 한다. #endif // WorldServer switch( dwState ) { case OBJSTA_ATK1: { if( IsValidObj(pHitObj) ) { OnDamage( nItemID, dwState, pHitObj ); } } break; case OBJSTA_ATK3: // 파이어볼 발사 { if( m_pActMover->m_nMotionHitCount == 0 ) { CMover *pTarget = pHitObj; D3DXVECTOR3 vPos; CModelObject *pModel = (CModelObject *)m_pModel; pModel->GetEventPos( &vPos, 0 ); // 용의 입 좌표. D3DXVec3TransformCoord( &vPos, &vPos, GetMatrixWorldPtr() ); if( IsValidObj(pTarget) ) { OnDamage( nItemID, dwState, pTarget, &pTarget->GetPos() ); // 타겟의 좌표를 중심으로 데미지를 줌. ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bFind = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_GEN_STUNSINGLE, 5, "SI_GEN_STUNSINGLE" ); if( bFind ) { if( xRand() % 2 ) DoApplySkill( pTarget, pSkillProp, pAddSkillProp , false ); } #ifdef __CLIENT CSfx *pSfx = CreateSfx( D3DDEVICE, XI_NPCSP1RANBALL, vPos, GetId(), pTarget->GetPos(), pTarget->GetId(), -1 ); // 포탄 if( pSfx ) { pSfx->SetScale( D3DXVECTOR3(4.0f, 4.0f, 4.0f) ); { FLOAT fAngXZ, fAngH; D3DXVECTOR3 vDist = pTarget->GetPos() - vPos; xGetDegree( &fAngXZ, &fAngH, vDist ); // 목표와의 각도구함. ((CSfxAtkStraight *)pSfx)->ShootSfx( fAngXZ, -fAngH, 2.0f, XI_NPCSP1RANBOOM ); // 날아가는 방향 설정. } } #endif // __CLIENT } } } break; case OBJSTA_ATK4: // 날개 접었다가 펼치기 { if( m_pActMover->m_nMotionHitCount == 0 ) { // 광역 효과 ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_GEN_BURN, 1, "OnAttackMelee_Meteonyker" ); if( bSuccess ) { D3DXVECTOR3 vPos = GetPos(); ApplySkillAround( this, OBJTYPE_PLAYER, pSkillProp, pAddSkillProp, false, FALSE, 10.0F ); MoverProp* pProp = GetProp(); OnDamage( pProp->dwAtk4, OBJSTA_ATK4, NULL, &vPos ); #ifdef __CLIENT CSfx *pSfx = CreateSfx( D3DDEVICE, XI_NPCMETEONYKER, vPos ); #endif // __CLIENT } } } break; } } #endif //__Y_DRAGON_FIRE void CMover::OnAttackMelee_Bear( DWORD dwState, CMover *pHitObj ) { int nItemID = GetActParam( 1 ); // 사용할 아이템 아이디 CModelObject *pModel = (CModelObject *)m_pModel; #ifdef __WORLDSERVER UpdateMatrix(); // 몸체의 특정부위에서 나는 데미지를 처리하기 위해선 서버에서도 매트릭스를 갱신해야한다. pModel->UpdateMatrixBone(); // 서버에서는 본애니메이션을 하지 않으므로 GetEventPos()를 사용할 일이 있을땐 업데이트를 해줘야 한다. #endif // WorldServer switch( dwState ) { case OBJSTA_ATK1: { #ifdef __WORLDSERVER ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_GEN_ATKSPELL_RATEGROUP, 5, "OnAttackMelee_BigMuscle" ); if( bSuccess ) ApplySkillAround( this, OBJTYPE_PLAYER, pSkillProp, pAddSkillProp , false ); OnDamage( nItemID, dwState, pHitObj ); #endif // WorldServer } break; case OBJSTA_ATK2: { #ifdef __WORLDSERVER OnDamage( nItemID, dwState, pHitObj ); #endif // WorldServer } break; case OBJSTA_ATK3: { if( m_pActMover->m_nMotionHitCount == 0 ) { #ifdef __CLIENT CSfx *pSfx = CreateSfx( D3DDEVICE, XI_SKILL_CIRCLE_DUST, GetPos() ); if( pSfx ) pSfx->SetScale( D3DXVECTOR3( 12.0f, 12.0f, 12.0f ) ); PLAYSND( SND_PC_SKILLD_HITOFPENYA );//, &v2 ); #endif //__CLIENT #ifdef __WORLDSERVER ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_GEN_KNOCK_BACK, 4, "OnAttackMelee_BigMuscle" ); if( bSuccess ) ApplySkillAround( this, OBJTYPE_PLAYER, pSkillProp, pAddSkillProp , false ); #endif //__WORLDSERVER } else if( m_pActMover->m_nMotionHitCount == 1 ) { #ifdef __CLIENT PLAYSND( SND_PC_BOSS_STUN ); #endif //__CLIENT #ifdef __WORLDSERVER ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_GEN_STUNGROUP, 5, "OnAttackMelee_Bear" ); if( bSuccess ) ApplySkillAround( this, OBJTYPE_PLAYER, pSkillProp, pAddSkillProp , false ); #endif //__WORLDSERVER } } break; case OBJSTA_ATK4: { #ifdef __WORLDSERVER ItemProp *pSkillProp; AddSkillProp *pAddSkillProp; BOOL bSuccess; // 자신 힐링 bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_ASS_HEAL_HEALING, 1, "OnAttackMelee_BigMuscle" ); if( bSuccess ) DoApplySkill( this, pSkillProp, pAddSkillProp , false ); //버서크 bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_MUSHMOOT_BERSERK, 1, "OnAttackMelee_Bear" ); if( bSuccess ) DoApplySkill( this, pSkillProp, pAddSkillProp , false ); // 우든스킨 bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_MUSHMOOT_WOODENSKIN, 1, "OnAttackMelee_Bear" ); if( bSuccess ) DoApplySkill( this, pSkillProp, pAddSkillProp , false ); // 힘업 bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_ASS_CHEER_HEAPUP, 1, "OnAttackMelee_BigMuscle" ); if( bSuccess ) DoApplySkill( this, pSkillProp, pAddSkillProp , false ); //캐논볼 bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_ASS_CHEER_CANNONBALL, 1, "OnAttackMelee_BigMuscle" ); if( bSuccess ) DoApplySkill( this, pSkillProp, pAddSkillProp , false ); //멘탈사인 bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_ASS_CHEER_MENTALSIGN, 1, "OnAttackMelee_BigMuscle" ); if( bSuccess ) DoApplySkill( this, pSkillProp, pAddSkillProp , false ); //비프업 bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_ASS_CHEER_BEEFUP, 1, "OnAttackMelee_BigMuscle" ); if( bSuccess ) DoApplySkill( this, pSkillProp, pAddSkillProp , false ); //캐츠플렉스 bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_ASS_CHEER_CATSREFLEX, 1, "OnAttackMelee_BigMuscle" ); if( bSuccess ) DoApplySkill( this, pSkillProp, pAddSkillProp , false ); //어큐러시 bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_ASS_CHEER_ACCURACY, 1, "OnAttackMelee_BigMuscle" ); if( bSuccess ) DoApplySkill( this, pSkillProp, pAddSkillProp , false ); //해이스트 bSuccess = GetSkillProp( &pSkillProp, &pAddSkillProp, SI_ASS_CHEER_HASTE, 1, "OnAttackMelee_BigMuscle" ); if( bSuccess ) DoApplySkill( this, pSkillProp, pAddSkillProp , false ); // 보스몬스터가 점점 커진다. D3DXVECTOR3 vScale = GetScale(); vScale *= 1.3f; if( vScale.x < 10.0f ) { SetScale( vScale ); g_UserMng.AddSetScale( this, (vScale.x / m_pModel->m_pModelElem->m_fScale) ); } #endif //__WORLDSERVER } break; } } // 데미지를 적용하는 부분. - 공격방식에 따라서 타점한번에 어러번 호출될 수도 있다. // pHitObj : 데미지를 먹을 대상. NULL이면 vDamagePos의 좌표를 중심으로 데미지를 준다. BOOL CMover::OnDamage( int nItemID, DWORD dwState, CMover *pHitObj, const D3DXVECTOR3 *pvDamagePos, DWORD dwAtkFlag ) { int nParam = 0x01; //sun if( IsPlayer() && IsDualWeapon() ) // 쌍칼모드냐? { if( m_pActMover->m_dwAtkFlags & AF_GENERIC ) // 평타면 { switch( dwState ) { case OBJSTA_ATK1: nParam |= 0x01; break; // 오른손 case OBJSTA_ATK2: nParam |= 0x02; break; // 왼손 case OBJSTA_ATK3: nParam |= 0x01; break; // 오른손 case OBJSTA_ATK4: nParam |= 0x03; break; // 양손 } } } #if defined(__CLIENT) if( IsValidObj(pHitObj) ) { CModelObject* pHitModel = (CModelObject*)pHitObj->m_pModel; if( pHitModel ) { D3DXVECTOR3 vDir; pHitModel->m_SparkInfo.m_bUsed = TRUE; pHitModel->m_SparkInfo.m_v3Color.x = 2.0f; pHitModel->m_SparkInfo.m_v3Color.y = 2.0f; pHitModel->m_SparkInfo.m_v3Color.z = 2.0f; pHitModel->m_SparkInfo.m_nCnt = 0; pHitModel->m_SparkInfo.m_fLerp= 1.0f; vDir = pHitObj->GetPos() - GetPos(); D3DXVec3Normalize( &pHitModel->m_SparkInfo.m_v3SparkDir, &vDir ); } } #endif //defined(__CLIENT) int nDamage = 0; if( IsPlayer() ) { // 플레이어 nDamage = pHitObj->m_pActMover->SendDamage( m_pActMover->m_dwAtkFlags, GetId(), nParam ); } else { // 몬스터 ItemProp *pItemProp = prj.GetItemProp( nItemID ); if( pItemProp ) { if( pItemProp->dwSpellRegion == SRO_AROUND ) { int nType = OBJTYPE_PLAYER; // 플레이어들만 데미지. if( pHitObj ) pHitObj->SendDamageAround( dwAtkFlag, this, nType, nItemID, (float)pItemProp->_dwSkillRange, 1.0f, 1.0f ); else GetWorld()->SendDamageAround( pvDamagePos, dwAtkFlag, this, nType, nItemID, (float)pItemProp->_dwSkillRange ); } else { if( pHitObj ) nDamage = pHitObj->m_pActMover->SendDamage( m_pActMover->m_dwAtkFlags, GetId(), 1 ); } } else { if( pHitObj ) nDamage = pHitObj->m_pActMover->SendDamage( m_pActMover->m_dwAtkFlags, GetId(), 1 ); } } #ifdef __WORLDSERVER if( nDamage > 0 ) // THIS가 공격했는데 데미지 먹이는데 성공했다 { if( pHitObj->m_pActMover->GetState() & OBJSTA_ATK_MELEESKILL ) // 맞는놈이 스킬 모션중이었다. { DWORD dwSkill = pHitObj->GetActParam(0); // 현재 사용하고 있는 스킬. dwSkill if( dwSkill == SI_MER_ONE_REFLEXHIT ) // 리플렉히트 스킬을 쓰고 있는 중에 맞았다. { pHitObj->m_nReflexDmg += nDamage; // 리플렉데미지는 쌓임. } } } #endif return nDamage > 0; } // // 일반 공격의 타점때 호출되는 핸들러. BOOL CMover::OnAttackMelee( DWORD dwState, CMover *pHitObj ) { CModelObject *pModel = (CModelObject *)m_pModel; int nItemID = GetActParam( 1 ); // 사용할 아이템 아이디 #ifdef __WORLDSERVER PostAIMsg( AIMSG_ATTACK_MELEE ); #endif if( m_dwIndex == MI_CLOCKWORK1 ) // 클락워크의 경우 때릴때 이펙트. { OnAttackMelee_ClockWorks( dwState, pHitObj ); return TRUE; } if( m_dwIndex == MI_BIGMUSCLE ) // 빅머슬의 경우 때릴때 이펙트. { OnAttackMelee_BigMuscle( dwState, pHitObj ); m_pActMover->m_nMotionHitCount++; return TRUE; } if( m_dwIndex == MI_KRRR ) // 크르릉의 경우 때릴때 이펙트. { OnAttackMelee_Krrr( dwState, pHitObj ); m_pActMover->m_nMotionHitCount++; return TRUE; } if( m_dwIndex == MI_MUSHMOOT ) // 크르릉의 경우 때릴때 이펙트. { OnAttackMelee_Bear( dwState, pHitObj ); m_pActMover->m_nMotionHitCount++; return TRUE; } #if __VER >= 10 // __Y_DRAGON_FIRE if( m_dwIndex == MI_DU_METEONYKER || m_dwIndex == MI_DU_METEONYKER2 || m_dwIndex == MI_DU_METEONYKER3 || m_dwIndex == MI_DU_METEONYKER4 ) { OnAttackMelee_Meteonyker( dwState, pHitObj ); m_pActMover->m_nMotionHitCount++; return TRUE; } #endif //__Y_DRAGON_FIRE #ifdef __WORLDSERVER #if __VER >= 12 // __MONSTER_SKILL if( IsNPC() && CMonsterSkill::GetInstance()->ApplySkill( this, pHitObj, ATK_MELEE ) ) { //m_pActMover->m_nMotionHitCount++; return TRUE; } #endif // __MONSTER_SKILL #endif // __WORLDSERVER BOOL bSuccess = FALSE; BOOL bDamage = TRUE; #ifdef __WORLDSERVER if( IsNPC() && pHitObj->IsPlayer() && pHitObj->IsRangeObj( this, 10.0f ) == FALSE ) // 두번죽는 경우땜에 넣어봤다. 몹->유저 10미터 이상 떨어져있을때는 안맞게. bDamage = FALSE; #endif if( bDamage ) { bSuccess = OnDamage( nItemID, dwState, pHitObj ); // 데미지를 준다. } #ifdef __WORLDSERVER if( bSuccess ) { if( IsPlayer() ) { if( dwState == OBJSTA_ATK1 && ((CUser*)this)->m_playTaskBar.m_nActionPoint < 100 ) // 2타째 치는건 액션포인트 올라감. ((CUser*)this)->m_playTaskBar.m_nActionPoint ++; } } #endif // worldserver #ifdef __CLIENT if( bSuccess ) // 타격에 성공했다면 타격음을 플레이. { if( CMover::GetActiveMover() == this ) { if( dwState == OBJSTA_ATK1 && g_WndMng.m_pWndTaskBar->m_nActionPoint < 100 ) // 2타째 치는건 액션포인트 올라감. g_WndMng.m_pWndTaskBar->m_nActionPoint ++; } // 플레이어는 들고 있는 무기에 따라 타격 음이 다르다. ItemProp* pItemProp = GetActiveHandItemProp(); if( pItemProp ) { /* #ifndef __Y_DRAGON_FIRE if( pItemProp->dwSfxObj2 != NULL_ID ) { CSfx *pSfx = CreateSfx( D3DDEVICE, pItemProp->dwSfxObj2, GetPos(), GetId(), this->GetPos(), this->GetId(), 0 ); } #endif //__Y_DRAGON_FIRE */ PLAYSND( pItemProp->dwSndAttack1, &GetPos() ); } if( IsPlayer() ) { pModel->m_nPause = 5; // frame 멈춤 } else { pModel->m_nPause = 0; // 몬스터는 멈추지 않음 pHitObj->m_pModel->m_nPause = 0; } #if defined(__CLIENT) { if( IsValidObj( pHitObj ) ) { pModel->m_SparkInfo.m_bUsed = TRUE; pModel->m_SparkInfo.m_v3Color.x = 2.0f; pModel->m_SparkInfo.m_v3Color.y = 2.0f; pModel->m_SparkInfo.m_v3Color.z = 2.0f; pModel->m_SparkInfo.m_nCnt = 0; pModel->m_SparkInfo.m_fLerp= 1.0f; D3DXVECTOR3 vDir = GetPos() - pHitObj->GetPos(); D3DXVec3Normalize( &pModel->m_SparkInfo.m_v3SparkDir, &vDir ); } } #endif //defined(__CLIENT) } #endif // client return TRUE; } // // // 타점 이후부터 끝날때까지 계속 호출. BOOL CMover::OnAttackMeleeContinue( DWORD dwState ) { int nItemID = GetActParam( 1 ); // 사용할 아이템 아이디 if( m_dwIndex == MI_CLOCKWORK1 ) // 클락워크의 경우 때릴때 이펙트. { #ifdef __WORLDSERVER UpdateMatrix(); // 몸체의 특정부위에서 나는 데미지를 처리하기 위해선 서버에서도 매트릭스를 갱신해야한다. CModelObject *pModel = (CModelObject *)m_pModel; pModel->UpdateMatrixBone(); // 서버에서는 본애니메이션을 하지 않으므로 GetEventPos()를 사용할 일이 있을땐 업데이트를 해줘야 한다. #endif // WorldServer switch( dwState ) { case OBJSTA_ATK3: { D3DXVECTOR3 v1, v2; CModelObject *pModel = (CModelObject *)m_pModel; pModel->GetEventPos( &v1, 2 ); // 레이저 나가는 부분. D3DXVec3TransformCoord( &v1, &v1, GetMatrixWorldPtr() ); // 월드공간으로 변환. v2 = D3DXVECTOR3( 0, 0, 40.0f ); D3DXVec3TransformCoord( &v2, &v2, pModel->GetMatrixBone(6) ); // 6이 머리. 머리에서 v2지점의 위치를 계산. D3DXVec3TransformCoord( &v2, &v2, GetMatrixWorldPtr() ); // 월드 공간으로 변환. #ifdef __CLIENT extern CPartsLaser g_Laser; g_Laser.SetPos( v1, v2, 0.5f ); #endif #ifdef __CLIENT if( (m_pActMover->m_nCount & 1) == 0 ) #else if( (m_pActMover->m_nCount & 3) == 0 ) #endif { CWorld *pWorld = GetWorld(); D3DXVECTOR3 vOut; if( pWorld->IntersectObjLine( &vOut, v1, v2, FALSE, TRUE, FALSE ) ) { OnDamage( nItemID, dwState, NULL, &vOut ); // 이펙트가 터지는 위치에 데미지를 줌. #ifdef __CLIENT CSfx *pSfx = CreateSfx( D3DDEVICE, XI_NPCSP1RANSPARK, vOut ); if( pSfx ) pSfx->SetScale( D3DXVECTOR3( 2.0f, 2.0f, 2.0f ) ); #endif // __CLIENT } } } break; } } #if __VER >= 10 // __Y_DRAGON_FIRE else if( m_dwIndex == MI_DU_METEONYKER || m_dwIndex == MI_DU_METEONYKER2 || m_dwIndex == MI_DU_METEONYKER3 || m_dwIndex == MI_DU_METEONYKER4 ) { #ifdef __WORLDSERVER UpdateMatrix(); // 몸체의 특정부위에서 나는 데미지를 처리하기 위해선 서버에서도 매트릭스를 갱신해야한다. CModelObject *pModel = (CModelObject *)m_pModel; pModel->UpdateMatrixBone(); // 서버에서는 본애니메이션을 하지 않으므로 GetEventPos()를 사용할 일이 있을땐 업데이트를 해줘야 한다. #endif // WorldServer switch( dwState ) { case OBJSTA_ATK2: { if( m_pActMover->m_nMotionHitCount == 1 ) { D3DXVECTOR3 v1, v2, v3; CModelObject *pModel = (CModelObject *)m_pModel; pModel->GetEventPos( &v1, 0 ); // 레이저 나가는 부분. pModel->GetEventPos( &v3, 1 ); // 레이저 나가는 부분. D3DXVec3TransformCoord( &v1, &v1, GetMatrixWorldPtr() ); // 월드공간으로 변환. D3DXVec3TransformCoord( &v3, &v3, GetMatrixWorldPtr() ); // 월드공간으로 변환. v2 = D3DXVECTOR3( 0, 0, 40.0f ); D3DXVec3TransformCoord( &v2, &v2, pModel->GetMatrixBone(6) ); // 6이 머리. 머리에서 v2지점의 위치를 계산. D3DXVec3TransformCoord( &v2, &v2, GetMatrixWorldPtr() ); // 월드 공간으로 변환. #ifdef __CLIENT D3DXVECTOR3 vDir = v3 - v1; D3DXVec3Normalize( &vDir, &vDir ); D3DXVECTOR3 vTemp; D3DXVECTOR3 vScal = D3DXVECTOR3( 0.3f, 0.3f, 0.3f ); D3DXVECTOR3 vModelScal = GetScale(); vScal.x *= vModelScal.x; vScal.y *= vModelScal.y; vScal.z *= vModelScal.z; int i; for( i = 0; i < 2; i ++ ) { vTemp = vDir * (xRandomF( 0.2f ) + 0.1f ); vTemp *= 0.8f; vTemp.y -= (xRandomF( 0.05f ) + 0.01f ); extern CPartsFireDragon g_FireDragon; g_FireDragon.Create( D3DDEVICE, v1, XI_NAT_FIRE01_ADV, vScal, vTemp ); } #endif #ifdef __CLIENT if( (m_pActMover->m_nCount & 1) == 0 ) #else if( (m_pActMover->m_nCount & 3) == 0 ) #endif { CWorld *pWorld = GetWorld(); D3DXVECTOR3 vOut = GetPos(); // if( pWorld->IntersectObjLine( &vOut, v1, v2, FALSE, TRUE, FALSE ) ) { OnDamage( nItemID, dwState, NULL, &vOut ); // 이펙트가 터지는 위치에 데미지를 줌. /* #ifdef __CLIENT CSfx *pSfx = CreateSfx( D3DDEVICE, XI_NPCSP1RANSPARK, vOut ); if( pSfx ) pSfx->SetScale( D3DXVECTOR3( 2.0f, 2.0f, 2.0f ) ); #endif // __CLIENT */ } } } break; } } } #endif //__Y_DRAGON_FIRE return TRUE; } // 몬스터의 특수공격 타격부분에 호출 BOOL CMover::OnAttackSP() { int idTarget = GetActParam( 0 ); int nItemID = GetActParam( 1 ); // 사용할 아이템 아이디 CMover* pHit = prj.GetMover( idTarget ); // 타겟의 포인터를 얻어냄. if( IsInvalidObj(pHit) ) return FALSE; // 클릭했을당시는 있었으나 발사되기전에 삭제되었다. ItemProp *pItemProp; if( nItemID == NULL_ID || nItemID == 0 ) pItemProp = GetActiveHandItemProp(); // 이런경우는 걍 손에 든 무기(혹은 기본아이템) else pItemProp = prj.GetItemProp( nItemID ); // 직접 아이템을 지정한 경우는 그걸로 공격함(몬스터가 주로 사용함) if( pItemProp == NULL ) { Error( "CMover::OnAttackSP : %s의 itemProp이 없다. %d", m_szName, nItemID ); return FALSE; } if( pItemProp->dwSpellRegion == SRO_AROUND ) { SendDamageAround( AF_GENERIC, this, OBJTYPE_PLAYER, nItemID, (float)( pItemProp->_dwSkillRange ), 0.0, 1.0f ); // 범위공격스따일 } else { #ifdef __CLIENT if( pHit->IsLive() ) pHit->m_pActMover->SendDamage( AF_MONSTER_SP_CLIENT, GetId(), (nItemID << 16) ); // 09_12_21 몬스터 스페셜 공격 #else if( pHit->IsLive() ) pHit->m_pActMover->SendDamage( AF_GENERIC, GetId(), (nItemID << 16) ); // 직접 공격 스따일. #endif } return TRUE; } // // 캐릭터가 높은곳에서 떨어진 시점에 호출 // void CMover::OnActDrop() { #ifdef __WORLDSERVER if( m_pActMover->GetDmgState() & OBJSTA_DMG_FLY_ALL ) // 데미지 플라이땐 이거 안하는게 좋다. return; if( FALSE == IsPlayer() ) { if( m_nCorr < 0 #if __VER >= 9 //__AI_0509 && GetSpeedFactor() < 1.9F #endif // __AI_0509 #ifdef __JEFF_11 && m_dwAIInterface != AII_PET #endif // __JEFF_11 ) { ClearDestPos(); SendActMsg( OBJMSG_STAND ); if( m_pActMover->IsFly() ) g_UserMng.AddMoverCorr2( this, GetPos(), m_pActMover->m_vDelta, GetAngle(), GetAngleX(), m_pActMover->m_fAccPower, m_pActMover->m_fTurnAngle, m_pActMover->GetState(), m_pActMover->GetStateFlag(), m_dwMotion, m_pActMover->m_nMotionEx, m_pModel->m_nLoop, m_dwMotionOption, g_TickCount.GetTickCount() ); else g_UserMng.AddMoverCorr( this, GetPos(), m_pActMover->m_vDelta, GetAngle(), m_pActMover->GetState(), m_pActMover->GetStateFlag(), m_dwMotion, m_pActMover->m_nMotionEx, m_pModel->m_nLoop, m_dwMotionOption, g_TickCount.GetTickCount() ); m_nCorr = 0; } } else { if( FALSE == IsEmptyDest() && FALSE == m_fWaitQueryGetPos ) { ( (CUser*)this )->AddQueryGetPos( NULL_ID ); m_fWaitQueryGetPos = TRUE; } } #else // __WORLDSERVER if( IsActiveMover() ) { if( m_nCorr != 0 ) { if( m_nCorr < 0 ) { ClearDest(); SendActMsg( OBJMSG_STAND ); } if( m_pActMover->IsFly() ) g_DPlay.SendPlayerCorr2(); else g_DPlay.SendPlayerCorr(); m_nCorr = 0; } } else { #if __VER >= 9 //__AI_0509 if( IsPlayer() || GetSpeedFactor() < 1.9F ) #endif // __AI_0509 { if( FALSE == IsEmptyDest() && FALSE == m_fWaitQueryGetPos ) { g_DPlay.SendQueryGetPos( this ); m_fWaitQueryGetPos = TRUE; } } } #endif // not __WORLDSERVER } void CMover::OnActCollision() { #ifdef __WORLDSERVER if( FALSE == IsPlayer() ) { if( m_nCorr < 0 #if __VER >= 9 //__AI_0509 && GetSpeedFactor() < 1.9F && m_dwAIInterface != AII_PET #endif // __AI_0509 ) { ClearDest(); SendActMsg( OBJMSG_STAND ); if( m_pActMover->IsFly() ) g_UserMng.AddMoverCorr2( this, GetPos(), m_pActMover->m_vDelta, GetAngle(), GetAngleX(), m_pActMover->m_fAccPower, m_pActMover->m_fTurnAngle, m_pActMover->GetState(), m_pActMover->GetStateFlag(), m_dwMotion, m_pActMover->m_nMotionEx, m_pModel->m_nLoop, m_dwMotionOption, g_TickCount.GetTickCount() ); else g_UserMng.AddMoverCorr( this, GetPos(), m_pActMover->m_vDelta, GetAngle(), m_pActMover->GetState(), m_pActMover->GetStateFlag(), m_dwMotion, m_pActMover->m_nMotionEx, m_pModel->m_nLoop, m_dwMotionOption, g_TickCount.GetTickCount() ); m_nCorr = 0; PostAIMsg( AIMSG_COLLISION ); } } else { if( FALSE == IsEmptyDest() && FALSE == m_fWaitQueryGetPos ) { ( (CUser*)this )->AddQueryGetPos( NULL_ID ); m_fWaitQueryGetPos = TRUE; } } #else // __WORLDSERVER if( TRUE == IsActiveMover() ) { if( m_nCorr != 0 ) { if( m_nCorr < 0 ) { ClearDest(); SendActMsg( OBJMSG_STAND ); CWndWorld* pWndWorld = (CWndWorld*)g_WndMng.GetWndBase( APP_WORLD ); if( pWndWorld ) pWndWorld->m_bLButtonDown = FALSE; } if( m_pActMover->IsFly() ) g_DPlay.SendPlayerCorr2(); else g_DPlay.SendPlayerCorr(); m_nCorr = 0; } } else if( FALSE == IsActiveMover() ) { #if __VER >= 9 //__AI_0509 if( IsPlayer() || GetSpeedFactor() < 1.9F ) #endif // __AI_0509 { if( FALSE == IsEmptyDest() && FALSE == m_fWaitQueryGetPos ) { g_DPlay.SendQueryGetPos( this ); m_fWaitQueryGetPos = TRUE; } } } #endif // __WORLDSERVER } // 근접스킬 동작 끝났을때. void CMover::OnActEndMeleeSkill() { ClearActParam(); // 행동상태 클리어 m_dwFlag &= (~MVRF_SKILL); #ifdef __WORLDSERVER if( IsPlayer() ) { if( ((CUser *)this)->m_playTaskBar.m_nUsedSkillQueue != -1 ) { ((CUser *)this)->m_playTaskBar.SetNextSkill( (CUser *)this ); } } #endif } // 마법스킬 동작 끝났을때. void CMover::OnActEndMagicSkill() { ClearActParam(); // 행동상태 클리어 m_dwFlag &= (~MVRF_SKILL); #ifdef __WORLDSERVER if( IsPlayer() ) { if( ((CUser *)this)->m_playTaskBar.m_nUsedSkillQueue != -1 ) { ((CUser *)this)->m_playTaskBar.SetNextSkill( (CUser *)this ); } } #endif } // 착지(JUMP4)플래그가 사라지는 순간. void CMover::OnActEndJump4() { if( FALSE == IsEmptyDestPos() ) SetDestPos( GetDestPos(), m_bForward, FALSE ); if( m_dwIndex == MI_CLOCKWORK1 ) { SendActMsg( OBJMSG_APPEAR ); } } // 착지 하는 순간에 발생. void CMover::OnActLanding() { #ifdef __CLIENT if( m_dwIndex == MI_CLOCKWORK1 ) { GetWorld()->m_pCamera->SetQuake( 60, 1.0f ); // 보스가 떨어지면 땅이 흔들림. } #endif } // 전진 하는 순간에 발생. void CMover::OnActFMove() { #ifdef __WORLDSERVER PostAIMsg( AIMSG_BEGINMOVE ); #endif } // Interact 오브젝트에 착지 했을때. // pIAObj : 어떤 IA오브젝트에 착지했는가. // vPos : 착지한 this의 좌표. void CMover::OnActIALanding( CObj *pIAObj, const D3DXVECTOR3 &vPos ) { if( pIAObj->GetType() != OT_SHIP ) return; CShip *pIA = (CShip *)pIAObj; CObj *pOldIA = GetIAObjLink(); SetIAObjLink( pIA ); if( IsActiveMover() ) { if( pIA != pOldIA ) // 걸어다닐때도 계속 갱신되기땜에 매번 보낼필요는 없다. { #ifdef __CLIENT D3DXVECTOR3 vLocal = GetPos() - pIA->GetPos(); // IA오브젝트로부터의 상대 좌표를 뽑음. g_DPlay.SendLocalPosFromIA( vLocal, pIA->GetId() ); // 상대좌표 서버로 전송 TRACE( "SendLocalPosFromIA\n" ); #endif //__CLIENT } } } int CMover::OnActCollecting() { #ifdef __CLIENT if( (m_dwFlag & MVRF_COLLECT) == 0 ) { ItemProp *pHandProp = GetActiveHandItemProp(); if( pHandProp->dwSfxObj2 != NULL_ID ) { D3DXVECTOR3 vSrc, vLocal = D3DXVECTOR3(0, 0.5f, 0); ((CModelObject *)m_pModel)->GetForcePos( &vLocal, 0, PARTS_RWEAPON, GetMatrixWorld() ); vSrc = vLocal; CSfx *pSfx = CreateSfx( D3DDEVICE, pHandProp->dwSfxObj2, vSrc, GetId(), D3DXVECTOR3(0,0,0), NULL_ID, -1 ); if( pSfx ) { pSfx->SetAngle( -GetAngle() + 90.0f ); m_dwFlag |= MVRF_COLLECT; // SFX가 생성됐음. } } } #endif // Client return 0; } // 공격을 막 시작했을때(일반/스킬/완드 등) void CMover::OnAttackStart( CMover *pTarget, OBJMSG dwMsg ) { } // this가 투명화 상태 걸려있으면 해제시킴. void CMover::RemoveInvisible() { #ifdef __WORLDSERVER if( GetAdjParam( DST_CHRSTATE ) & CHS_INVISIBILITY ) // 투명화 상태다. { ResetDestParam( DST_CHRSTATE, CHS_INVISIBILITY, TRUE ); } RemoveBuff( BUFF_SKILL, SI_ACR_SUP_DARKILLUSION ); // 해제. #endif // __WORLDSERVER } // pItem이 루팅가능한가를 판별. #ifdef __WORLDSERVER BOOL CMover::IsLoot( CItem *pItem, BOOL bPet ) { BOOL bTake = FALSE; if( pItem->IsDelete() || ( pItem->m_idHolder != 0 && pItem->m_idHolder != m_idPlayer ) ) { return bTake; } if( pItem->m_idOwn != NULL_ID ) // 아이템에 주인이 있을때 { // 일반적으로 떨어진 아이템. CMover *pOther = prj.GetMover( pItem->m_idOwn ); // pItem을 집을 권한이 있는사람.(가령...막타) if( IsValidObj(pOther) ) { if( m_idparty && (pOther->m_idparty == m_idparty) ) // 파티가 있고 나랑 같은 파티원이면 줏을수 있어요~~~ ㅋㅋㅋ bTake = TRUE; } else bTake = TRUE; // idOwn이 Invalid상태면 아무나 줏을 수 있음. if( pItem->m_idOwn == GetId() ) // 아이템의 소유권자면 집을 수 있다. bTake = TRUE; } else bTake = TRUE; // 주인이 없는거면 아무나 줏을수 있다. DWORD dwTime = g_tmCurrent; #ifdef __EVENT_MONSTER DWORD dwMonsterId = pItem->m_IdEventMonster; if( dwMonsterId != NULL_ID && CEventMonster::GetInstance()->SetEventMonster( dwMonsterId ) ) { DWORD dwLootTime = CEventMonster::GetInstance()->GetLootTime(); if( (dwTime - pItem->m_dwDropTime) >= (DWORD)( SEC(dwLootTime) ) ) bTake = TRUE; if( bPet && !CEventMonster::GetInstance()->IsPetAble() ) bTake = FALSE; } else #endif // __EVENT_MONSTER #if __VER >= 9 // __S_9_ADD if( (dwTime - pItem->m_dwDropTime) >= SEC(7) ) // 7초가 지난건 아무나 줏을 수 있다. #else // __S_9_ADD if( (dwTime - pItem->m_dwDropTime) >= SEC(40) ) // 40초가 지난건 아무나 줏을 수 있다. #endif // __S_9_ADD bTake = TRUE; // 펫은 리스폰된 아이템을 집을수 없음. if( bPet && bTake ) { if( 0 < ((CCtrl*)pItem)->m_lRespawn ) bTake = FALSE; #ifdef __JEFF_11 // 소지품이 가득 차서 해당 아이템을 획득할 수 없다 CItemElem* pItemElem = (CItemElem*)pItem->m_pItemBase; ItemProp* pItemProp = pItemElem->GetProp(); if( pItemProp->dwItemKind3 != IK3_GOLD && m_Inventory.IsFull( pItemElem, pItemProp, pItemElem->m_nItemNum ) ) bTake = FALSE; #endif // __JEFF_11 } return bTake; } #endif // WorldServer // DoLoot의 하위 - 몹이 떨어트린 아이템을 솔로잉일때 집으려 할때 처리부 BOOL CMover::SubLootDropMobSingle( CItem *pItem ) { BOOL bSuccess = TRUE; #ifdef __WORLDSERVER CItemBase* pItemBase = pItem->m_pItemBase; bSuccess = CreateItem( pItemBase ); if( IsPlayer() && pItemBase->GetProp() != NULL ) { if( bSuccess ) { ((CUser*)this)->AddDefinedText( TID_GAME_REAPITEM, "\"%s\"", pItemBase->GetProp()->szName ); if( IsLootSendText( pItemBase->GetProp() ) ) ((CUser*)this)->AddChatText( TID_GAME_REAPITEM, "\"%s\"", pItemBase->GetProp()->szName ); } else ((CUser*)this)->AddDefinedText( TID_GAME_LACKSPACE ); } if( ( (CItemElem*)pItemBase )->IsLogable() && bSuccess ) { switch( pItemBase->GetProp()->dwItemKind2 ) { case IK2_FOOD: case IK2_MAGIC: case IK2_POTION: case IK2_REFRESHER: { if( ( (CItemElem*)pItemBase )->m_nItemNum > 9 ) { LogItemInfo aLogItem; aLogItem.Action = "R"; aLogItem.SendName = "GROUND"; aLogItem.RecvName = GetName(); aLogItem.WorldId = GetWorld()->GetID(); aLogItem.Gold = aLogItem.Gold2 = GetGold(); g_DPSrvr.OnLogItem( aLogItem, ( (CItemElem*)pItemBase ), ( (CItemElem*)pItemBase )->m_nItemNum ); } break; } default: { LogItemInfo aLogItem; aLogItem.Action = "R"; aLogItem.SendName = "GROUND"; aLogItem.RecvName = GetName(); aLogItem.WorldId = GetWorld()->GetID(); aLogItem.Gold = aLogItem.Gold2 = GetGold(); g_DPSrvr.OnLogItem( aLogItem, ( (CItemElem*)pItemBase ), ( (CItemElem*)pItemBase )->m_nItemNum ); break; } } } #endif // WorldServer return bSuccess; } // SubLootDropMobSingle // DoLoot의 하위 - 몹이 떨어트린 아이템을 파티가 있을때 집으려 할때 처리부 BOOL CMover::SubLootDropMobParty( CItem *pItem, CParty *pParty ) { BOOL bSuccess = TRUE;; #ifdef __WORLDSERVER CUser *pListMember[ 8 ]; int nMaxListMember = 0; CUser* pMember = NULL; CUser* pGetUser = NULL; // float fDist; D3DXVECTOR3 vDist; CItemBase* pItemBase = pItem->m_pItemBase; // 아이템줍는사람 반경안에 드는 멤버들만 추려낸다. memset( pListMember, 0, sizeof(pListMember) ); int i; for( i = 0; i < pParty->m_nSizeofMember; i++ ) { pMember = g_UserMng.GetUserByPlayerID( pParty->m_aMember[i].m_uPlayerId ); // if( IsValidObj( (CObj*)pMember ) ) // 12-3 康: 아이템 획득은 같은 맵 일정 반경에 속한 사용자로 제한해야한다. /* if( IsValidObj( (CObj*)pMember ) && GetWorld() == pMember->GetWorld() ) { vDist = pMember->GetPos() - GetPos(); fDist = D3DXVec3LengthSq( &vDist ); // 아이템 줍는사람과 멤버간의 거리. if( fDist < 32.0f * 32.0f ) // xx미터보다 작으면 { pListMember[ nMaxListMember++ ] = pMember; } } */ //2009.01.21 // 반경 검사에 레이어 추가 if( IsValidArea( pMember, 32.0f ) ) pListMember[ nMaxListMember++ ] = pMember; } if( nMaxListMember == 0 ) { pGetUser = (CUser*)this; } else { switch( pParty->m_nTroupeShareItem ) { case 1 : // 순서분배 { for( i = 0 ; i < nMaxListMember ; i++ ) { if( pParty->m_nGetItemPlayerId == pListMember[i]->m_idPlayer ) { if( i + 1 >= nMaxListMember ) { pGetUser = pListMember[0]; break; } else { pGetUser = pListMember[ i+1 ]; break; } } } if( pGetUser == NULL ) { pGetUser = pListMember[0]; } } break; case 2 : // 수동분배 : 단장에게 다 들어감 { if( pParty->IsLeader( pListMember[0]->m_idPlayer ) ) { pGetUser = pListMember[0]; } else { pGetUser = (CUser*)this; } } break; case 3 : // 랜덤분배 : 랜덤하게 들어감 { DWORD dwRand = xRandom( nMaxListMember ); pGetUser = pListMember[dwRand]; } break; default: // 기본 개임분배 { pGetUser = (CUser*)this; } break; } // switch } pParty->m_nGetItemPlayerId = pGetUser->m_idPlayer; bSuccess = pGetUser->CreateItem( pItemBase ); for( i = 0; i < nMaxListMember; i++ ) { pMember = pListMember[i]; if( TRUE == pMember->IsPlayer() && pItemBase->GetProp() != NULL ) { if( bSuccess ) { if( pMember->m_idPlayer != pGetUser->m_idPlayer ) { if( ::GetLanguage() == LANG_TWN || ::GetLanguage() == LANG_JAP || ::GetLanguage() == LANG_HK ) ( (CUser*)pMember )->AddDefinedText( TID_GAME_TROUPEREAPITEM, "\"%s\" \"%s\"", pGetUser->GetName(), pItemBase->GetProp()->szName ); else { if( ::GetLanguage() == LANG_THA ) ( (CUser*)pMember )->AddDefinedText( TID_GAME_REAPITEM_THA, "\"%s\" \"%s\"", pGetUser->GetName(), pItemBase->GetProp()->szName ); else ( (CUser*)pMember )->AddDefinedText( TID_GAME_REAPITEM, "\"%s%s %s\"", pGetUser->GetName(), prj.GetText(TID_GAME_FROM2), pItemBase->GetProp()->szName ); } } else { ( (CUser*)pGetUser )->AddDefinedText( TID_GAME_REAPITEM, "\"%s\"", pItemBase->GetProp()->szName ); } } else { // CreateItem을 실패함 Full if( pGetUser == pMember ) ( (CUser*)pGetUser )->AddDefinedText( TID_GAME_LACKSPACE ); } } } if( ( (CItemElem*)pItemBase )->IsLogable() && bSuccess ) { switch( pItemBase->GetProp()->dwItemKind2 ) { case IK2_FOOD: case IK2_MAGIC: case IK2_POTION: case IK2_REFRESHER: { if( ( ( (CItemElem*)pItemBase )->m_nItemNum ) > 9 ) { LogItemInfo aLogItem; aLogItem.Action = "R"; aLogItem.SendName = "GROUND"; aLogItem.RecvName = pGetUser->GetName(); aLogItem.WorldId = pGetUser->GetWorld()->GetID(); aLogItem.Gold = aLogItem.Gold2 = pGetUser->GetGold(); g_DPSrvr.OnLogItem( aLogItem, ( (CItemElem*)pItemBase ), ( (CItemElem*)pItemBase )->m_nItemNum ); } break; } default: { LogItemInfo aLogItem; aLogItem.Action = "R"; aLogItem.SendName = "GROUND"; aLogItem.RecvName = pGetUser->GetName(); aLogItem.WorldId = pGetUser->GetWorld()->GetID(); aLogItem.Gold = aLogItem.Gold2 = pGetUser->GetGold(); g_DPSrvr.OnLogItem( aLogItem, ( (CItemElem*)pItemBase ), ( (CItemElem*)pItemBase )->m_nItemNum ); break; } } } #endif // __WORLDSERVER return bSuccess; } // SubLootDropMobParty // // // DoLoot의 하위 - 몹이 떨어트린 아이템 루팅부... BOOL CMover::SubLootDropMob( CItem *pItem ) { BOOL bSuccess = TRUE; #ifdef __WORLDSERVER CParty *pParty = g_PartyMng.GetParty( m_idparty ); if( pParty && pParty->IsMember( m_idPlayer ) ) // 파티가 있으므로 경험치 분배대로 해야함 { // 파티가 있을경우 루팅 처리. bSuccess = SubLootDropMobParty( pItem, pParty ); } else // 파티가 없을때~ { bSuccess = SubLootDropMobSingle( pItem ); } #endif // __WORLDSERVER return bSuccess; } // DoLoot의 하위 - 몹이 떨어트린게 아닌! 아이템루팅부... BOOL CMover::SubLootDropNotMob( CItem *pItem ) { BOOL bSuccess = TRUE; #ifdef __WORLDSERVER CItemBase* pItemBase = pItem->m_pItemBase; bSuccess = CreateItem( pItemBase ); if( TRUE == IsPlayer() && pItemBase->GetProp() != NULL ) { if( bSuccess ) { ((CUser*)this)->AddDefinedText( TID_GAME_REAPITEM, "\"%s\"", pItemBase->GetProp()->szName ); if( IsLootSendText( pItemBase->GetProp() ) ) ((CUser*)this)->AddChatText( TID_GAME_REAPITEM, "\"%s\"", pItemBase->GetProp()->szName ); } else ((CUser*)this)->AddDefinedText( TID_GAME_LACKSPACE ); } if( ( (CItemElem*)pItemBase )->IsLogable() && bSuccess ) { switch( pItemBase->GetProp()->dwItemKind2 ) { case IK2_FOOD: case IK2_MAGIC: case IK2_POTION: case IK2_REFRESHER: { if( ( (CItemElem*)pItemBase )->m_nItemNum > 9 ) { LogItemInfo aLogItem; aLogItem.Action = "R"; aLogItem.SendName = "GROUND"; aLogItem.RecvName = GetName(); aLogItem.WorldId = GetWorld()->GetID(); aLogItem.Gold = aLogItem.Gold2 = GetGold(); g_DPSrvr.OnLogItem( aLogItem, ( (CItemElem*)pItemBase ), ( (CItemElem*)pItemBase )->m_nItemNum ); } break; } default: { LogItemInfo aLogItem; aLogItem.Action = "R"; aLogItem.SendName = "GROUND"; aLogItem.RecvName = GetName(); aLogItem.WorldId = GetWorld()->GetID(); aLogItem.Gold = aLogItem.Gold2 = GetGold(); g_DPSrvr.OnLogItem( aLogItem, ( (CItemElem*)pItemBase ), ( (CItemElem*)pItemBase )->m_nItemNum ); break; } } } #endif // __WORLDSERVER return bSuccess; } // SubLootDropNotMob ////////////////////////////////////////////////////////////////////////// // // 바닥에 떨어진 pItem을 갖는다. // ////////////////////////////////////////////////////////////////////////// BOOL CMover::DoLoot( CItem *pItem ) { if( IsPlayer() == FALSE ) return FALSE; CItemBase* pItemBase = pItem->m_pItemBase; BOOL bSuccess = TRUE; #ifdef __CLIENT PLAYSND( SND_INF_GROUNDPICKUP ); #endif ItemProp *pItemProp = pItem->GetProp(); if( pItemProp->dwItemKind1 == IK1_GOLD ) { PickupGold( ((CItemElem*)pItemBase)->GetGold(), pItem->m_bDropMob ); } else { // <아이템 로그 - 획득> #ifdef __WORLDSERVER if( pItem->m_bDropMob == TRUE ) // 몬스터가 떨어뜨린것만 { // 몹이 떨어트린 아이템에 대한 루팅 처리 bSuccess = SubLootDropMob( pItem ); } else // 어떤유저가 떨어뜨린것은 줏은넘이 임자~ { // 몹이 떨어트린게 아닌 아이템의 루팅에 대한 처리 bSuccess = SubLootDropNotMob( pItem ); } #endif // __WORLDSERVER } if( TRUE == bSuccess ) { pItem->Delete(); #ifdef __WORLDSERVER // g_UserMng.AddMotion( this, OBJMSG_PICKUP ); RemoveInvisible(); // 아이템 줏으면 투명 해제. #endif // __WORLDSERVER } return bSuccess; }
[ "[email protected]@e2c90bd7-ee55-cca0-76d2-bbf4e3699278", "[email protected]@e2c90bd7-ee55-cca0-76d2-bbf4e3699278" ]
[ [ [ 1, 2144 ], [ 2146, 2167 ], [ 2169, 2621 ] ], [ [ 2145, 2145 ], [ 2168, 2168 ] ] ]
d7fdd6705bc703c02b48294d6333756b74aed406
c2426347b183e81f7eba0a61008d5b62b686bada
/OnlineUsersPage.cpp
abbf8e0919a1aac2f8891d13b5ae9668a691ba70
[]
no_license
zephyrer/ftp-mfc
cad97bda7165084460ec265b4430702bf38a055e
9ed7b2623e24ba523302c03f53515a61d3c7f28b
refs/heads/master
2021-01-23T06:44:50.496095
2010-10-16T02:46:05
2010-10-16T02:46:05
40,066,779
0
0
null
null
null
null
GB18030
C++
false
false
1,501
cpp
// OnlineUsersPage.cpp : implementation file // #include "stdafx.h" #include "llzyFtp.h" #include "OnlineUsersPage.h" // COnlineUsersPage dialog IMPLEMENT_DYNAMIC(COnlineUsersPage, CDialog) COnlineUsersPage::COnlineUsersPage(CWnd* pParent /*=NULL*/) : CDialog(COnlineUsersPage::IDD, pParent) { } COnlineUsersPage::~COnlineUsersPage() { } void COnlineUsersPage::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); DDX_Control(pDX, IDC_ONLINE_USERS, m_OnlineUsers); } BOOL COnlineUsersPage::OnInitDialog() { CDialog::OnInitDialog(); m_OnlineUsers.InsertColumn(0, "线程ID"); m_OnlineUsers.InsertColumn(1, "用户名"); m_OnlineUsers.InsertColumn(2, "IP 地址"); m_OnlineUsers.InsertColumn(3, "登录时间"); DWORD dwStyle = m_OnlineUsers.GetExtendedStyle(); dwStyle |= LVS_EX_FULLROWSELECT; m_OnlineUsers.SetExtendedStyle(dwStyle); return TRUE; } void COnlineUsersPage::OnSize(UINT nType, int cx, int cy) { CDialog::OnSize(nType, cx, cy); if (IsWindow(::GetDlgItem(m_hWnd, IDC_ONLINE_USERS))) { CRect rect; GetClientRect(rect); m_OnlineUsers.MoveWindow(rect); m_OnlineUsers.SetColumnWidth(0, 0); m_OnlineUsers.SetColumnWidth(1, rect.Width()/3-2); m_OnlineUsers.SetColumnWidth(2, rect.Width()/3-2); m_OnlineUsers.SetColumnWidth(3, rect.Width()/3-2); } } BEGIN_MESSAGE_MAP(COnlineUsersPage, CDialog) ON_WM_SIZE() END_MESSAGE_MAP() // COnlineUsersPage message handlers
[ "fjsllzy@16d5555c-4542-f5b6-b58a-99007303009a" ]
[ [ [ 1, 65 ] ] ]
4b820218f25e75d7a7cbc1ca037e407149b07f26
61614d09e428492817720cc9fa49beb0f79fb1ca
/src/Types/Blob.hpp
ddaa5fc82ea285de534d816c6d6599c610cd7607
[]
no_license
bonsa/DCL_CvBasic
e19083413e58ca126b55e58932f51ae68aa3adb0
1f7bd9198f12f178b820b9c98a2783e2b06e8f03
refs/heads/master
2021-01-20T19:05:43.471732
2011-05-13T18:46:47
2011-05-13T18:46:47
1,710,285
1
0
null
null
null
null
UTF-8
C++
false
false
5,422
hpp
/*! * \file Blob.hpp * \brief Blob declaration * \author Ricard Borràs, Inspecta S.L. * \date */ #ifndef CBLOB_H_ #define CBLOB_H_ #include <cxcore.h> #include "Types/BlobContour.hpp" #include "Types/Drawable.hpp" namespace Types { namespace Blobs { //! Type of labelled images typedef unsigned int t_labelType; //! Blob class class Blob : public Drawable { typedef std::list<BlobContour> t_contourList; public: Blob(); Blob( t_labelType id, CvPoint startPoint, CvSize originalImageSize ); virtual ~Blob(); //! Copy constructor Blob( const Blob &src ); Blob( const Blob *src ); //! Operador d'assignaci� //! Assigment operator Blob& operator=(const Blob &src ); //! Adds a new internal contour to the blob void AddInternalContour( const BlobContour &newContour ); //! Retrieves contour in Freeman's chain code BlobContour *GetExternalContour() { return &m_externalContour; } //! Retrieves blob storage CvMemStorage *GetStorage() { return m_storage; } //! Get label ID t_labelType GetID() { return m_id; } /*! * \brief Return true for extern blobs * \param mask * \param xBorder true to consider blobs touching horizontal borders as extern * \param yBorder true to consider blobs touching vertical borders as extern * \return */ int Exterior( IplImage *mask, bool xBorder = true, bool yBorder = true ); //! Compute blob's area double Area(); /*! * \brief Get blob perimeter, ie. sum of the length of all the contours * \return perimeter length */ double Perimeter(); //! Compute blob's moment (p,q up to MAX_CALCULATED_MOMENTS) double Moment(int p, int q); /*! * \brief Get extern perimeter (perimeter touching image borders) * * \note If BlobContour::GetContourPoints aproximates contours with a method different that NONE, * this function will not give correct results * * \param mask if != NULL, counts maskImage black pixels as external pixels and contour points touching * them are counted as external contour points. * \param xBorder true to consider blobs touching horizontal borders as extern * \param yBorder true to consider blobs touching vertical borders as extern * \return */ double ExternPerimeter( IplImage *mask, bool xBorder = true, bool yBorder = true ); /*! * \brief Get blob mean gray color in input image. * * This method calculates also standard deviation, which can be retrieved by StdDev method. * * \param image image from gray color are extracted * \return mean color */ double Mean( IplImage *image ); /*! * \brief Get standard deviation grey color. */ double StdDev( IplImage *image ); /*! * \brief Shows if the blob has associated information */ bool IsEmpty(); /*! * \brief Calculates the convex hull polygon of the blob * \return list of convex hull points */ BlobContour::t_PointList GetConvexHull(); /*! * \brief Fills the blob with a specified colour * \param image where to paint * \param color color to paint the blob * \param offsetX * \param offsetY * \post modifies input image and returns the seed point used to fill the blob ?? */ void draw( cv::Mat & image, CvScalar color, int offsetX = 0, int offsetY = 0 ); /*! * \brief Adds external contour to current external contour * \param blob blob from which extract the added external contour */ void JoinBlob( Blob *blob ); /*! * \brief Get bounding box (without rotation) of a blob * @return bounding box */ CvRect GetBoundingBox(); /*! * \brief Calculates bounding ellipse of external contour points * \note Calculation is made using second order moment aproximation * \return bounding ellipse */ CvBox2D GetEllipse(); //! Minimum X double MinX() { return GetBoundingBox().x; } //! Minimum Y double MinY() { return GetBoundingBox().y; } //! Maximum X double MaxX() { return GetBoundingBox().x + GetBoundingBox().width; } //! Maximum Y double MaxY() { return GetBoundingBox().y + GetBoundingBox().height; } private: //! Deallocates all contours void ClearContours(); ////////////////////////////////////////////////////////////////////////// // Blob contours ////////////////////////////////////////////////////////////////////////// //! Contour storage memory CvMemStorage *m_storage; //! External contour of the blob (crack codes) BlobContour m_externalContour; //! Internal contours (crack codes) t_contourList m_internalContours; ////////////////////////////////////////////////////////////////////////// // Blob features ////////////////////////////////////////////////////////////////////////// //! Label number t_labelType m_id; //! Area double m_area; //! Perimeter double m_perimeter; //! Extern perimeter from blob double m_externPerimeter; //! Mean gray color double m_meanGray; //! Standard deviation from gray color blob distribution double m_stdDevGray; //! Bounding box CvRect m_boundingBox; //! Bounding ellipse CvBox2D m_ellipse; //! Sizes from image where blob is extracted CvSize m_originalImageSize; }; //! vector of blobs typedef std::vector<Blob*> Blob_vector; } //: namespace Blobs } //: namespace Types #endif /* CBLOB_H_ */
[ [ [ 1, 221 ] ] ]
45072fc3aeb05232bfcef1e8c04f0deb30e9208c
97b7853d2eb3481f9fb091c5e61cb8d9ba052a50
/include/djFilter.h
ba3ccdc21b5f2379e381162d2dbfaca48cdf0706
[]
no_license
mentat/tehDJ
dad7826f7bca57603d57120267ef0711d2572859
ee1f782374897bf5e00102827194b89614029eed
refs/heads/master
2021-01-25T03:54:58.836751
2011-03-23T22:27:09
2011-03-23T22:27:09
1,518,542
0
0
null
null
null
null
UTF-8
C++
false
false
2,985
h
// --*-c++-*-- /* tehDJ - Mp3 DJ System Copyright (C) 2002 Jesse Lovelace This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __DJ_FILTER_H__ #define __DJ_FILTER_H__ #include <string> using namespace std; #if 0 class FilterOptions { public: FilterOptions() {} string GetName() { return m_name; } protected: string m_name; }; class SamplerOptions: public FilterOptions { public: SamplerOptions(): FilterOptions() { m_name = "SamplerOptions"; } SamplerOptions &operator=(const SamplerOptions &other); int mSamplingRate; bool mMode; // fast/accurate }; class Filter { public: Filter(const string& name, Filter * next = NULL, Filter * prev = NULL) : m_name(name), m_next(next), m_prev(prev), m_stop(false) {} virtual ~Filter() { delete m_next; } void Add(Filter * flt); // returns non-null only if it was head node and new node becomes head Filter * Remove(const string& name); // returns true if filter exists and options were set bool SetOptions(const string& name, FilterOptions * options); virtual bool IsOk(const string& name); virtual bool Start(const string& name); virtual bool Stop(const string& name); // calls Process() and forwards to next filter void * ProcessBlock(void * inBlock, int &numsamples, int samplebits, int channels); protected: bool m_stop; virtual bool DoIsOk() = 0; virtual void * DoProcessBlock(void * inBlock, int &numsamples, int samplebits, int channels) = 0; virtual bool DoSetOptions(FilterOptions * options) = 0; Filter * m_next; Filter * m_prev; string m_name; }; #endif #define IBUFFSIZE 4096 class Sampler { public: Sampler(); ~Sampler(); void * ProcessBlock(void * inBlock, double factor, int &numsamples, int samplebits, int channels); private: double m_factor; unsigned int Time, Time2; /* Current time/pos in input sample */ unsigned short Xp, Ncreep, Xoff, Xread; int OBUFFSIZE; short X1[IBUFFSIZE], *Y1; /* I/O buffers */ short X2[IBUFFSIZE], *Y2; /* I/O buffers */ unsigned short Nout, Nx; int i, Ycount, last; }; #endif #endif
[ [ [ 1, 113 ] ] ]
03f20119421d4744dd2a6e0ab635b09cd48cdffc
d6eba554d0c3db3b2252ad34ffce74669fa49c58
/Source/Objects/playerObj.h
a072a779047b4350b51242ade53c331aee3fb7c1
[]
no_license
nbucciarelli/Polarity-Shift
e7246af9b8c3eb4aa0e6aaa41b17f0914f9d0b10
8b9c982f2938d7d1e5bd1eb8de0bdf10505ed017
refs/heads/master
2016-09-11T00:24:32.906933
2008-09-26T18:01:01
2008-09-26T18:01:01
3,408,115
1
0
null
null
null
null
WINDOWS-1252
C++
false
false
3,231
h
#pragma once //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // File: “playerObj.h” // Author: Scott Smallback (SS) // Purpose: This is the header file for the object that will be made into the player //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #include "actorObj.h" #include "weapon.h" class CAnimationManager; class playerObj : public actorObj { protected: vector3 lookVector; int jumpCount; float maxJumpTime, jumpTime; bool jumpDone, jumping; public: //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Function: “Constructor” // Last Modified: August 27, 2008 // Purpose: This is the constructor for the player object //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// playerObj(); //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Function: “Deconstructor” // Last Modified: August 27, 2008 // Purpose: This is the deconstructor for the player object //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ~playerObj(); //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Function: “HandleEvent” // Last Modified: August 27, 2008 // Purpose: This handles events for the player object //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void HandleEvent(gameEvent *ev); //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Function: “Update” // Last Modified: August 27, 2008 // Purpose: This is the update for the player object //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void update(float dt); void render(); //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Function: “Mutators” // Last Modified: August 27, 2008 // Purpose: This is the setting information in the player object //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void setLook(const vector3& vec) { lookVector = vec; } //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Function: “Accessor” // Last Modified: August 27, 2008 // Purpose: This is the getting information in the player object //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// const vector3& getLook() const { return lookVector; } };
[ [ [ 1, 1 ], [ 7, 9 ], [ 11, 21 ], [ 27, 27 ], [ 34, 35 ], [ 41, 42 ], [ 48, 50 ], [ 56, 56 ], [ 63, 64 ] ], [ [ 2, 6 ], [ 10, 10 ], [ 22, 26 ], [ 28, 33 ], [ 36, 40 ], [ 43, 47 ], [ 51, 55 ], [ 57, 62 ] ] ]
fdcd67bf1693309ba5689417f39ded4b06a068b2
619941b532c6d2987c0f4e92b73549c6c945c7e5
/Stellar_/code/Render/coregraphics/rendertarget.cc
01d00a9029e777f033e4c707719107e63778b660
[]
no_license
dzw/stellarengine
2b70ddefc2827be4f44ec6082201c955788a8a16
2a0a7db2e43c7c3519e79afa56db247f9708bc26
refs/heads/master
2016-09-01T21:12:36.888921
2008-12-12T12:40:37
2008-12-12T12:40:37
36,939,169
0
0
null
null
null
null
UTF-8
C++
false
false
481
cc
//------------------------------------------------------------------------------ // rendertarget.cc // (C) 2007 Radon Labs GmbH //------------------------------------------------------------------------------ #include "stdneb.h" #include "coregraphics/rendertarget.h" #if __WIN32__ namespace CoreGraphics { ImplementClass(CoreGraphics::RenderTarget, 'RTGT', Direct3D9::D3D9RenderTarget); } #else #error "RenderTarget class not implemented on this platform!" #endif
[ "ctuomail@5f320639-c338-0410-82ad-c55551ec1e38" ]
[ [ [ 1, 14 ] ] ]
dac1ebaa5764ddd87221e93c5ac22ff978979471
a0bc9908be9d42d58af7a1a8f8398c2f7dcfa561
/SlonEngine/src/Graphics/FFTFilter.cpp
6de45b2ebe55284ef1487fdb3ef40a92c10a32e3
[]
no_license
BackupTheBerlios/slon
e0ca1137a84e8415798b5323bc7fd8f71fe1a9c6
dc10b00c8499b5b3966492e3d2260fa658fee2f3
refs/heads/master
2016-08-05T09:45:23.467442
2011-10-28T16:19:31
2011-10-28T16:19:31
39,895,039
0
0
null
null
null
null
UTF-8
C++
false
false
4,088
cpp
#include "stdafx.h" #include "Graphics/PostProcessCommon.h" #include "Graphics/Effect.h" #include "Graphics/FFTFilter.h" #include "Graphics/Common.h" #include "Log/Logger.h" #include "Utility/error.hpp" DECLARE_AUTO_LOGGER("graphics.FFTFilter") namespace slon { namespace graphics { FFTFilterShaderProgram::FFTFilterShaderProgram() : EffectShaderProgram(AUTO_LOGGER) { addShader("Data/Shaders/PostProcess/FFT/FFT.vert"); addShader("Data/Shaders/PostProcess/FFT/FFT.frag"); constructProgram(); } void FFTFilterShaderProgram::redirectUniforms() { using namespace sgl; using namespace math; // get uniforms fftInputUniform = loadSamplerUniform<Texture2D>("fftInput"); fftShiftUniform = loadUniform<Vector2f>("shift"); fftRowDirectionUniform = loadUniform<Vector2f>("rowDirection"); fftDirectionUniform = loadUniform<float>("direction"); fftSizeUniform = loadUniform<float>("N"); fftNumPartitionsUniform = loadUniform<float>("numPartitions"); } FFTFilter::FFTFilter() : fftDirection(1), fftShift(0, 0) { } void FFTFilter::setDirection(int _fftDirection) { fftDirection = _fftDirection; } int FFTFilter::getDirection() const { return fftDirection; } void FFTFilter::setIndexShift(const math::Vector2i& _fftShift) { fftShift = _fftShift; } math::Vector2i FFTFilter::getIndexShift() const { return fftShift; } // Override Filter unsigned FFTFilter::perform( sgl::RenderTarget* renderTarget, unsigned source ) const { using namespace sgl; using namespace math; assert(renderTarget); sgl::Texture2D* attachments[2] = { static_cast<sgl::Texture2D*>( renderTarget->ColorAttachment(0) ), static_cast<sgl::Texture2D*>( renderTarget->ColorAttachment(1) ) }; assert( attachments[0] && attachments[1] && attachments[0]->Width() == attachments[1]->Width() && attachments[0]->Height() == attachments[1]->Height() ); // perform unsigned numSwitches = 0; if ( SGL_OK == renderTarget->Bind() ) { // draw objects Device* device = currentDevice(); // compute FFT int N = attachments[0]->Width(); int numIterations = static_cast<int>( ::log( (double)N ) / ::log(2.0) + 0.5 );// + 1; // bind geometry ppu::DrawUtilities::beginChain(); device->SetViewport( rectangle(0, 0, N, N) ); // bind uniforms fftProgram.getProgram()->Bind(); fftProgram.fftDirectionUniform->Set( float(fftDirection) ); fftProgram.fftSizeUniform->Set( float(N) ); fftProgram.fftShiftUniform->Set( math::Vector2f(fftShift) ); fftProgram.fftInputUniform->Set(0, 0); // IFFT on rows int curPing = source; fftProgram.fftRowDirectionUniform->Set( Vector2f(1.0f, 0.0f) ); for(int i = 1; i <= numIterations; ++i) { sgl::Texture2D* attachment = attachments[curPing]; attachment->Bind(0); fftProgram.fftNumPartitionsUniform->Set( static_cast<float>(N >> i) ); curPing = !curPing; renderTarget->SetDrawBuffer(curPing); device->Draw(QUADS, 0 ,4); } // IFFT on columns fftProgram.fftRowDirectionUniform->Set( Vector2f(0.0f, 1.0f) ); for(int i = 1; i <= numIterations; ++i) { sgl::Texture2D* attachment = attachments[curPing]; attachment->Bind(0); fftProgram.fftNumPartitionsUniform->Set( static_cast<float>(N >> i) ); curPing = !curPing; renderTarget->SetDrawBuffer(curPing); device->Draw(QUADS, 0 ,4); } renderTarget->Unbind(); ppu::DrawUtilities::endChain(); numSwitches = 2 * numIterations; } return numSwitches; } } // namespace graphics } // namespace slon
[ "devnull@localhost" ]
[ [ [ 1, 141 ] ] ]
7fd25f845228ffd02a5119fe8a69cc5b9b088e93
ef8e875dbd9e81d84edb53b502b495e25163725c
/testbench/src/test_case/test_case.cpp
e28f321691df1ff34edd65ad2e17c265475d580e
[]
no_license
panone/litewiz
22b9d549097727754c9a1e6286c50c5ad8e94f2d
e80ed9f9d845b08c55b687117acb1ed9b6e9a444
refs/heads/master
2021-01-10T19:54:31.146153
2010-10-01T13:29:38
2010-10-01T13:29:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,435
cpp
/******************************************************************************* *******************************************************************************/ #include <QDir> #include <QDomElement> #include <QFile> #include <QFileInfo> #include "classifier.h" #include "console.h" #include "test_case.h" /******************************************************************************* *******************************************************************************/ TestCase::TestCase ( QString const & testSetPath, QDomElement const & definition ) { fileName = definition.attribute( "fileName" ); items = definition.attribute( "items" ).toInt(); variants = definition.attribute( "codecs" ).toInt(); if ( validate() ) { loadFileNameList( testSetPath ); } } /******************************************************************************* *******************************************************************************/ bool TestCase::isValid ( void ) { return valid; } /******************************************************************************* *******************************************************************************/ bool TestCase::run ( void ) { bool result = false; if ( valid ) { Classifier classifier; classifier.classify( fileNames ); Console::output() << QString( "Result: %1" ).arg( classifier.getDefaultVariance() ) << endl; } return result; } /******************************************************************************* *******************************************************************************/ bool TestCase::validate ( void ) { valid = true; if ( fileName.isEmpty() ) { Console::output() << "File name list is not specified" << endl; valid = false; } if ( items < 1 ) { Console::output() << QString( "Invalid number of items: %1" ).arg( items ) << endl; valid = false; } if ( variants < 1 ) { Console::output() << QString( "Invalid number of variants: %1" ).arg( variants ) << endl; valid = false; } return valid; } /******************************************************************************* *******************************************************************************/ void TestCase::loadFileNameList ( QString const & testSetPath ) { QString fileName = findFileNameList( testSetPath ); if ( !fileName.isEmpty() ) { fileNames = getTextFileContents( fileName ); if ( fileNames.isEmpty() ) { Console::output() << "The file name list is empty" << endl; valid = false; } } } /******************************************************************************* *******************************************************************************/ QString TestCase::findFileNameList ( QString const & testSetPath ) { QString result; QFileInfo fileInfo( fileName ); bool found = true; if ( !fileInfo.exists() ) { fileInfo.setFile( QDir( testSetPath ), fileName ); if ( !fileInfo.exists() ) { Console::output() << QString( "File name list \"%1\" is not found" ).arg( fileName ) << endl; found = false; } } if ( found ) { result = fileInfo.canonicalFilePath(); } return result; } /******************************************************************************* *******************************************************************************/ QStringList TestCase::getTextFileContents ( QString const & fileName ) { QStringList result; QFile file( fileName ); if ( file.open( QFile::ReadOnly | QFile::Text ) ) { QTextStream stream( &file ); while ( !stream.atEnd() ) { QString line = stream.readLine(); if ( !line.isEmpty() ) { result.append( line ); } } } else { Console::output() << QString( "Failed to open \"%1\"" ).arg( fileName ) << endl; } return result; } /******************************************************************************/
[ [ [ 1, 179 ] ] ]
925523bdfa1c1a660146fdae0ba52600b2cc13db
91b964984762870246a2a71cb32187eb9e85d74e
/SRC/OFFI SRC!/boost_1_34_1/boost_1_34_1/libs/wave/test/testwave/testfiles/t_6_034.cpp
bf277866f913f22195a7fa1df0c06e556ae6c26a
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
willrebuild/flyffsf
e5911fb412221e00a20a6867fd00c55afca593c7
d38cc11790480d617b38bb5fc50729d676aef80d
refs/heads/master
2021-01-19T20:27:35.200154
2011-02-10T12:34:43
2011-02-10T12:34:43
32,710,780
3
0
null
null
null
null
UTF-8
C++
false
false
2,315
cpp
/*============================================================================= Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ Copyright (c) 2001-2006 Hartmut Kaiser. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) The tests included in this file were initially taken from the mcpp V2.5 preprocessor validation suite and were modified to fit into the Boost.Wave unit test requirements. The original files of the mcpp preprocessor are distributed under the license reproduced at the end of this file. =============================================================================*/ // Tests error reporting: #define syntax errors. // 18.5: No argument. //E t_6_034.cpp(20): error: ill formed preprocessor directive: #define #define /*- * Copyright (c) 1998, 2002-2005 Kiyoshi Matsui <[email protected]> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */
[ "[email protected]@e2c90bd7-ee55-cca0-76d2-bbf4e3699278" ]
[ [ [ 1, 47 ] ] ]
caf4f00192d3fc05713bf670adce8e7a485ed922
ae028b72ebee6160043284f61aa0414c23cbfd0a
/Examples/Compile/CPP-predefined-libs/Boost/Src/main.cpp
8932310bd9457f17adabef895d2688afaa91360e
[]
no_license
XueHL/wudoo
c7aa60a93e1eabd2dc97987f5866582a2108bce2
e46761a02364bf453542b4f2cb919fb310d6ac02
refs/heads/master
2021-01-10T14:35:48.452210
2009-12-31T21:00:00
2009-12-31T21:00:00
50,088,931
0
0
null
null
null
null
UTF-8
C++
false
false
361
cpp
#include <iostream> #include "sharedptrtest.h" int main( int count, char * * args ) { std::cout << "shared_ptr created: " << ShPtrTst::Created() << " shared_ptr destroyed: " << ShPtrTst::Destroyed() << "\n"; RunShPtrTest(); std::cout << "shared_ptr created: " << ShPtrTst::Created() << " shared_ptr destroyed: " << ShPtrTst::Destroyed() << "\n"; }
[ "rchbiu@localhost" ]
[ [ [ 1, 9 ] ] ]
9fdc16eb7be2cf14cf57c0d7d653066c431712ed
e7c45d18fa1e4285e5227e5984e07c47f8867d1d
/Application/SysCAD/FLWDOC/FLWCMDS.CPP
e47a18c416a799744c52b2157dce81139cc9c98d
[]
no_license
abcweizhuo/Test3
0f3379e528a543c0d43aad09489b2444a2e0f86d
128a4edcf9a93d36a45e5585b70dee75e4502db4
refs/heads/master
2021-01-17T01:59:39.357645
2008-08-20T00:00:29
2008-08-20T00:00:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,706
cpp
//================== SysCAD - Copyright Kenwalt (Pty) Ltd =================== // $Nokeywords: $ //=========================================================================== #include "stdafx.h" #define __FLWCMDS_CPP #include "sc_defs.h" #include "syscad.h" #include "gpfuncs.h" #include "dlgbusy.h" #include "fixedit.h" #include "executiv.h" #include "tagdb.h" #include "drwhdr.h" #include "grf3drw.h" #include "cmdmenu.h" #include "sfe_clnt.h" #include "grfcmds.h" #include "flwcmds.h" #include "errorlog.h" #include "project.h" #ifdef _DEBUG #undef THIS_FILE static char BASED_CODE THIS_FILE[] = __FILE__; #endif //=========================================================================== inline SFEFlwLib * FE() { return gs_pPrj->FlwLib(); }; //=========================================================================== FlwCmdBlk::FlwCmdBlk(int ExtraCmds, int ExtraCIS): GrfComCmdBlk(60+ExtraCmds, 10+ExtraCIS) { //EngineName=""; DataFmt = "APPEND TAG CNVS ALL "; //FE()=NULL; } //--------------------------------------------------------------------------- FlwCmdBlk::~FlwCmdBlk() { } //--------------------------------------------------------------------------- void FlwCmdBlk::InitForCmd() { } //--------------------------------------------------------------------------- void FlwCmdBlk::OnActivateDoc(flag bActivate) { GrfComCmdBlk::OnActivateDoc(bActivate); pGrf->OnActivateDoc(bActivate); } //--------------------------------------------------------------------------- void FlwCmdBlk::BuildVNT() { SETVNT("HELP", "MODEL", N_A, -1, (CmdFn)&FlwCmdBlk::DoLoadUserDocs, EF_ERS); SETCIS(ID_HELP_UserDocs, "HELP MODEL\r"); GrfComCmdBlk::BuildVNT(); } //--------------------------------------------------------------------------- flag FlwCmdBlk::EngineOpen() { if (FE()) return True; gs_pCmd->Print("No Flow Engine Open\n"); return False; } //--------------------------------------------------------------------------- void FlwCmdBlk::DoSolve() { if (!EngineOpen()) return; pDsp->Open(); switch (When) { case EX_EXEC: { CWaitCursor Wait; // FE()->FE_DoSolveNet(); break; } case EX_RESULTS: DumpErrors(); break; default:; } pDsp->Close(); }; //--------------------------------------------------------------------------- void FlwCmdBlk::DoLoadUserDocs() { if (!EngineOpen()) return; switch (When) { case EX_EXEC: { if (pMdl && gs_pPrj) gs_pPrj->ModelHelp(); LogWarning("FlwCmds", 0, "No Documentation Found"); break; } } } //--------------------------------------------------------------------------- void FlwCmdBlk::DumpReplies() { } //--------------------------------------------------------------------------- void FlwCmdBlk::DumpErrors() { } //--------------------------------------------------------------------------- flag FlwCmdBlk::TestModelTagUnique(pchar pTag, CUniqueTagRulesBlk & TRB/*pchar pHdr, char SepChar*/, Strng &UniqueTag, flag HdrAsIs) { if (pTag==NULL || strlen(pTag)==0) return false; pDXF_Drawing pDrw=((pGrfCmdBlk)pGrf)->pDrw; Entity_List_Info InsInfo; Entity_List_Info EntInfo; DXF_ENTITY Ins = pDrw->First_Insert(InsInfo); while (Ins) { DXF_ENTITY TAtt = First_Ent(Attr_List(Ins), EntInfo); if (TAtt && Attr_Is(TAtt, "Tag")) { pchar pAttr=Attr_Value(TAtt); if (_stricmp(pTag, pAttr) == 0) return false; //found tag } Ins = pDrw->Next_Insert(InsInfo); } return true; } //--------------------------------------------------------------------------- flag FlwCmdBlk::TestSymbolNameUnique(Strng &Sym, pchar pHdr, char SepChar, Strng &UniqueSym) { pDXF_Drawing pDrw=((pGrfCmdBlk)pGrf)->pDrw; //Strng KernalName(pHdr); //KernalName+=SepChar; int unum = pDrw->Blocks.FindUnique(pHdr, -1); if (unum>=0) UniqueSym.Set("%s%c%d",pHdr,SepChar,unum); else UniqueSym.Set("%s%c1",pHdr,SepChar); return False; } ////--------------------------------------------------------------------------- // //int FlwCmdBlk::AddNodeModel(pchar ModelType, pchar Tag) // { // if (!EngineOpen()) // return False; // return FE()->FE_DoInsert(ModelType, Tag, NULL, NULL); // } // ////--------------------------------------------------------------------------- // //int FlwCmdBlk::DeleteNodeModel(pchar Tag) // { // VERIFY(FALSE); //OLD CODE 12/97 // if (!EngineOpen()) // return False; // return FE()->FE_DoDelete(Tag); // } // ////--------------------------------------------------------------------------- // //int FlwCmdBlk::AddNodeConnect(pchar Type, pchar Tag, pchar SrcTag, pchar SrcOut, pchar DstTag, pchar DstIn) // { // if (!EngineOpen()) // return False; // Strng Src, Dst; // Src.Set("%s.%s", SrcTag, SrcOut); // Dst.Set("%s.%s", DstTag, DstIn); // return FE()->FE_DoInsert(Type, Tag, Src(), Dst()); // } // ////--------------------------------------------------------------------------- // //int FlwCmdBlk::AddConnect(pchar SrcTag, pchar SrcOut, pchar DstTag, pchar DstIn) // { // if (!EngineOpen()) // return False; // Strng Src, Dst; // Src.Set("%s.%s", SrcTag, SrcOut); // Dst.Set("%s.%s", DstTag, DstIn); // return FE()->FE_DoConnect(Src(), Dst()); // } // //--------------------------------------------------------------------------- BOOL FlwCmdBlk::DoReadDocument(const char *pszPathName, FILE* pFile) { if (!feof(pFile)) { char c=fgetc(pFile); while (c=='f') { //pGrfDoc pGDoc=(pGrfDoc)pDoc; char what[512], buff[512]; fscanf(pFile, " %s %s ", what, buff); //FE()=SFEClientDLL::Attach();//EngineName()); //if (strcmp(what, "e")==0) // { // //EngineName=strcmp(buff , ".")!=0 ? buff : ""; // //SFEClientDLL::Detach();//FE()); // FE()=SFEClientDLL::Attach();//EngineName()); // //if (FE()==NULL) // // EngineName=""; // } c=fgetc(pFile); } if (c!=EOF) ungetc(c, pFile); } return 1; }; //--------------------------------------------------------------------------- BOOL FlwCmdBlk::DoWriteDocument(const char *pszPathName, FILE* pFile) { fprintf(pFile, "f \n" );//, EngineName.Length()>0 ? EngineName() : "."); return 1; }; //===========================================================================
[ [ [ 1, 66 ], [ 68, 153 ], [ 155, 258 ] ], [ [ 67, 67 ], [ 154, 154 ] ] ]
1d85ff6b8381657612e73a532d2c8f91e8382c63
331e63f76403f347bf45d52b2b72e999a15d26a7
/SIN/SIN_CORE/SINCommon/Src/SINNamer.cpp
89e9c945833e317b197f5151430ba5f13581eb82
[]
no_license
koutsop/sinmetalanguage
64c9dd10d65c89b169aa0d1dec3bd14cf14165f6
7ef17948ae3a6fd4c3589429e9862d1cbfbec80c
refs/heads/master
2021-01-10T20:08:40.852870
2010-05-23T17:42:04
2010-05-23T17:42:04
33,115,739
0
0
null
null
null
null
UTF-8
C++
false
false
1,322
cpp
#include "SINNamer.h" #include <cstdio> #include <cstring> namespace SIN { //---------------------------------------------------------------- Namer::Namer(char const _base[SINNAMER_BASELEN]): counter(0x00ul), base_offset(min<size_t>(strlen(_base), SINNAMER_BASELEN)), number_maximun_length(ULONG_MAX_STR_LEN) { strncpy(base, _base, SINNAMER_BASELEN); } //---------------------------------------------------------------- Namer::Namer(Namer const &_other): counter(_other.counter), base_offset(_other.base_offset), number_maximun_length(_other.number_maximun_length) { strncpy(base, _other.base, SINNAMER_BASELEN); } //---------------------------------------------------------------- Namer::~Namer(void) {} //---------------------------------------------------------------- char const *Namer::operator ++(void) { sprintf(base + base_offset, "%0*lu", number_maximun_length, ++counter); return base; } //---------------------------------------------------------------- char const *Namer::operator ++(int) { sprintf(base + base_offset, "%0*lu", number_maximun_length, counter++); return base; } } // namespace SIN
[ "koutsop@6a7033b6-9ebc-11de-a8ff-c955b97a4a10" ]
[ [ [ 1, 47 ] ] ]
dfba47703903964289f75c0bddf2c3df93d3f120
f95341dd85222aa39eaa225262234353f38f6f97
/Dreams/Dreams/MatrixTrails/Main.cpp
c0ae37ca557b6d5d700c085ca895a292eecdfb4d
[]
no_license
Templier/threeoaks
367b1a0a45596b8fe3607be747b0d0e475fa1df2
5091c0f54bd0a1b160ddca65a5e88286981c8794
refs/heads/master
2020-06-03T11:08:23.458450
2011-10-31T04:33:20
2011-10-31T04:33:20
32,111,618
0
0
null
null
null
null
UTF-8
C++
false
false
4,750
cpp
/////////////////////////////////////////////////////////////////////////////////////////////// // // MatrixTrails Dream // // Copyright (c) 2008, Julien Templier // All rights reserved. // // Adapted from the Matrix Trails Screensaver for XBox Media Center // Copyright (c) 2005 Joakim Eriksson <[email protected]> // // Thanks goes to Warren for his 'TestXBS' program! // Matrix Symbol Font by Lexandr (mCode 1.5 - http://www.deviantart.com/deviation/2040700/) // /////////////////////////////////////////////////////////////////////////////////////////////// // * $LastChangedRevision$ // * $LastChangedDate$ // * $LastChangedBy$ /////////////////////////////////////////////////////////////////////////////////////////////// // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // /////////////////////////////////////////////////////////////////////////////////////////////// #include "Utils/stdafx.h" #include <DreamSDK.h> #include "main.h" #include "matrixtrails.h" #include "XBMC/timer.h" #include <time.h> CMatrixTrails* gMatrixTrails = null; CTimer* gTimer = null; CConfig gConfig; static BOOL IsDreamPaused = FALSE; ////////////////////////////////////////////////////////////////////////// // Query default settings for the Dream // return the value for the type of setting QUERY_DEFAULT_SETTINGS { switch (type) { case QUERY_D3DFORMAT: case QUERY_VIDEOTEXTURE: case QUERY_4: case QUERY_5: return value; break; case QUERY_SCREENUPDATEFREQUENCY: return DEFAULT_SCREENUPDATEFREQUENCY; break; } return value; } ////////////////////////////////////////////////////////////////////////// // Notification when: // - started // - paused // - resumed // - stopped // - settings have changed NOTIFICATION_PROCEDURE { switch(type) { default: break; case NOTIFY_STARTED: IsDreamPaused = FALSE; break; case NOTIFY_STOPPED: IsDreamPaused = TRUE; break; case NOTIFY_PAUSED: IsDreamPaused = TRUE; break; case NOTIFY_PLAYING: IsDreamPaused = FALSE; break; case NOTIFY_5: break; case NOTIFY_SETTINGS_CHANGED: break; } } ////////////////////////////////////////////////////////////////////////// // Setup the plugin // load Direct3D resources, update registry keys SETUP_PLUGIN { gConfig.SetDefaults(); gConfig.LoadSettings(); gMatrixTrails = new CMatrixTrails(); if (!gMatrixTrails) return FALSE; gTimer = new CTimer(); gTimer->Init(); if (!gMatrixTrails->RestoreDevice(pd3dDevice, rect)) return FALSE; return TRUE; } ////////////////////////////////////////////////////////////////////////// // Update the scene in memory UPDATE_SCENE { if (!gMatrixTrails) return; gTimer->Update(); gMatrixTrails->Update(gTimer->GetDeltaTime()/4); } ////////////////////////////////////////////////////////////////////////// // Render the updated scene on screen RENDER_SCENE_ON_SCREEN { if (!gMatrixTrails || pd3dDevice == NULL) return -1; //pd3dDevice->Clear(0, NULL, D3DCLEAR_TARGET, D3DCOLOR_COLORVALUE(0, 0, 0, 0), 1.0f, 0); pd3dDevice->BeginScene(); gMatrixTrails->Draw(pd3dDevice); pd3dDevice->EndScene(); return 0; } ////////////////////////////////////////////////////////////////////////// // Free plugin resources FREE_PLUGIN { if (!gMatrixTrails) return; gMatrixTrails->InvalidateDevice(); SAFE_DELETE(gMatrixTrails); SAFE_DELETE(gTimer); } //////////////////////////////////////////////////////////////////////////// // void CConfig::SetDefaults() { m_CharDelayMin = 0.015f; m_CharDelayMax = 0.060f; m_FadeSpeedMin = 1.0f; m_FadeSpeedMax = 1.5f; m_NumColumns = 50; m_NumRows = 40; m_CharCol.Set(0.0f, 1.0f, 0.0f, 1.0f); m_NumChars = 32; m_CharSizeTex.x = 32.0f/TEXTURESIZE; m_CharSizeTex.y = 26.0f/TEXTURESIZE; } //////////////////////////////////////////////////////////////////////////// void CConfig::LoadSettings() { // Check for values in registry }
[ "julien.templier@ab80709b-eb45-0410-bb3a-633ce738720d" ]
[ [ [ 1, 194 ] ] ]
3c9ee53854610e0abcbaa942d0afb73f6d8311c6
842997c28ef03f8deb3422d0bb123c707732a252
/src/moaicore/MOAIBox2DFixture.cpp
7a254180e05edaa826bb750e4354ebb669f3c9bf
[]
no_license
bjorn/moai-beta
e31f600a3456c20fba683b8e39b11804ac88d202
2f06a454d4d94939dc3937367208222735dd164f
refs/heads/master
2021-01-17T11:46:46.018377
2011-06-10T07:33:55
2011-06-10T07:33:55
1,837,561
2
1
null
null
null
null
UTF-8
C++
false
false
7,315
cpp
// Copyright (c) 2010-2011 Zipline Games, Inc. All Rights Reserved. // http://getmoai.com #include "pch.h" #include <Box2D/Box2D.h> #include <moaicore/MOAIBox2DArbiter.h> #include <moaicore/MOAIBox2DFixture.h> #include <moaicore/MOAIBox2DWorld.h> #include <moaicore/MOAILogMessages.h> SUPPRESS_EMPTY_FILE_WARNING #if USE_BOX2D //================================================================// // local //================================================================// //----------------------------------------------------------------// /** @name destroy @text Schedule fixture for destruction. @in MOAIBox2DBody self @out nil */ int MOAIBox2DFixture::_destroy ( lua_State* L ) { MOAI_LUA_SETUP ( MOAIBox2DFixture, "U" ) assert ( self->mWorld ); self->mWorld->ScheduleDestruction ( *self ); return 0; } //----------------------------------------------------------------// /** @name setCollisionHandler @text Sets a Lua function to call when collisions occur. @in MOAIBox2DFixture self @in function handler @opt number phaseMask Any bitwise combination of MOAIBox2DArbiter.BEGIN, MOAIBox2DArbiter.END, MOAIBox2DArbiter.POST_SOLVE, MOAIBox2DArbiter.PRE_SOLVE, MOAIBox2DArbiter.ALL @opt number categoryMask Check against opposing fixture's category bits and generate collision events if match. @out nil */ int MOAIBox2DFixture::_setCollisionHandler ( lua_State* L ) { MOAI_LUA_SETUP ( MOAIBox2DFixture, "UF" ) self->mCollisionHandler.SetRef ( state, 2, false ); self->mCollisionPhaseMask = state.GetValue < u32 >( 3, MOAIBox2DArbiter::ALL ); self->mCollisionCategoryMask = state.GetValue < u32 >( 4, 0xffffffff ); return 0; } //----------------------------------------------------------------// /** @name setDensity @text See Box2D documentation. @in MOAIBox2DFixture self @in number density @out nil */ int MOAIBox2DFixture::_setDensity ( lua_State* L ) { MOAI_LUA_SETUP ( MOAIBox2DFixture, "UN" ) float density = state.GetValue < float >( 2, 0.0f ); self->mFixture->SetDensity ( density ); return 0; } //----------------------------------------------------------------// /** @name setFilter @text See Box2D documentation. @in MOAIBox2DFixture self @in number categoryBits @opt number maskBits @opt number groupIndex @out nil */ int MOAIBox2DFixture::_setFilter ( lua_State* L ) { MOAI_LUA_SETUP ( MOAIBox2DFixture, "UN" ) b2Filter filter = self->mFixture->GetFilterData (); filter.categoryBits = ( uint16 )state.GetValue < u32 >( 2, 0 ); filter.maskBits = ( uint16 )state.GetValue < u32 >( 3, 0xffffffff ); filter.groupIndex = ( int16 )state.GetValue < int >( 4, ( int )filter.groupIndex ); self->mFixture->SetFilterData ( filter ); return 0; } //----------------------------------------------------------------// /** @name setFriction @text See Box2D documentation. @in MOAIBox2DFixture self @in number friction @out nil */ int MOAIBox2DFixture::_setFriction ( lua_State* L ) { MOAI_LUA_SETUP ( MOAIBox2DFixture, "UN" ) float friction = state.GetValue < float >( 2, 0.0f ); self->mFixture->SetFriction ( friction ); return 0; } //----------------------------------------------------------------// /** @name setRestitution @text See Box2D documentation. @in MOAIBox2DFixture self @in number restitution @out nil */ int MOAIBox2DFixture::_setRestitution ( lua_State* L ) { MOAI_LUA_SETUP ( MOAIBox2DFixture, "UN" ) float restitution = state.GetValue < float >( 2, 0.0f ); self->mFixture->SetRestitution ( restitution ); return 0; } //----------------------------------------------------------------// /** @name setSensor @text See Box2D documentation. @in MOAIBox2DFixture self @opt boolean isSensor Default value is 'true' @out nil */ int MOAIBox2DFixture::_setSensor ( lua_State* L ) { MOAI_LUA_SETUP ( MOAIBox2DFixture, "U" ) bool isSensor = state.GetValue < bool >( 2, true ); self->mFixture->SetSensor ( isSensor ); return 0; } //================================================================// // MOAIBox2DFixture //================================================================// //----------------------------------------------------------------// void MOAIBox2DFixture::Destroy () { if ( this->mFixture ) { b2Body* body = this->mFixture->GetBody (); body->DestroyFixture ( this->mFixture ); this->mFixture = 0; this->Release (); } } //----------------------------------------------------------------// void MOAIBox2DFixture::HandleCollision ( u32 eventType, MOAIBox2DFixture* other, MOAIBox2DArbiter* arbiter ) { if ( this->mCollisionPhaseMask & eventType ) { const b2Filter& otherFilter = other->mFixture->GetFilterData (); if ( this->mCollisionCategoryMask & otherFilter.categoryBits ) { if ( this->mCollisionHandler ) { USLuaStateHandle state = USLuaRuntime::Get ().State (); if ( this->mCollisionHandler.PushRef ( state )) { state.Push ( eventType ); this->PushLuaUserdata ( state ); other->PushLuaUserdata ( state ); arbiter->PushLuaUserdata ( state ); state.DebugCall ( 4, 0 ); } } } } } //----------------------------------------------------------------// u32 MOAIBox2DFixture::LoadVerts ( USLuaState& state, int idx, b2Vec2* verts, u32 max, float unitsToMeters ) { int itr = state.PushTableItr ( idx ); idx = 0; u32 total = 0; for ( ; state.TableItrNext ( itr ) && ( total < max ); ++idx ) { float val = state.GetValue < float >( -1, 0 ); if ( idx & 0x01 ) { verts [ total ].y = val * unitsToMeters; total++; } else { verts [ total ].x = val * unitsToMeters; } } return total; } //----------------------------------------------------------------// MOAIBox2DFixture::MOAIBox2DFixture () : mFixture ( 0 ), mCollisionPhaseMask ( 0 ), mCollisionCategoryMask ( 0 ) { RTTI_BEGIN RTTI_EXTEND ( USLuaObject ) RTTI_END } //----------------------------------------------------------------// MOAIBox2DFixture::~MOAIBox2DFixture () { } //----------------------------------------------------------------// void MOAIBox2DFixture::RegisterLuaClass ( USLuaState& state ) { UNUSED ( state ); } //----------------------------------------------------------------// void MOAIBox2DFixture::RegisterLuaFuncs ( USLuaState& state ) { luaL_Reg regTable [] = { { "destroy", _destroy }, { "setCollisionHandler", _setCollisionHandler }, { "setDensity", _setDensity }, { "setFilter", _setFilter }, { "setFriction", _setFriction }, { "setRestitution", _setRestitution }, { "setSensor", _setSensor }, { NULL, NULL } }; luaL_register ( state, 0, regTable ); } //----------------------------------------------------------------// void MOAIBox2DFixture::SetFixture ( b2Fixture* fixture ) { this->mFixture = fixture; if ( fixture ) { fixture->SetUserData ( this ); } } //----------------------------------------------------------------// STLString MOAIBox2DFixture::ToString () { STLString repr; return repr; } #endif
[ "[email protected]", "[email protected]", "Patrick@agile.(none)" ]
[ [ [ 1, 17 ], [ 34, 39 ], [ 44, 49 ], [ 52, 78 ], [ 80, 83 ], [ 85, 88 ], [ 91, 150 ], [ 162, 164 ], [ 172, 172 ], [ 184, 188 ], [ 190, 199 ], [ 201, 203 ], [ 205, 212 ], [ 215, 233 ], [ 235, 263 ] ], [ [ 18, 33 ], [ 151, 161 ], [ 189, 189 ], [ 200, 200 ], [ 204, 204 ], [ 234, 234 ] ], [ [ 40, 43 ], [ 50, 51 ], [ 79, 79 ], [ 84, 84 ], [ 89, 90 ], [ 165, 171 ], [ 173, 183 ], [ 213, 214 ] ] ]
70ac6ea7168c9d0ac4e4316f89a8639435d78e07
6a69593bdd78c65cbaeb731155c44d1ccb134802
/programchallenge/3n+1/3n+1.cpp
ba3b1164b6b8e009bda3b7369a9e88fe1e2bafc4
[]
no_license
fannix/poj
2ccf77e5ed0c1ea54602015026e17fda8107dd71
49b8c49a48fb67cba38bd72d7d12c103545a4511
refs/heads/master
2016-09-06T01:35:49.157774
2011-05-10T06:04:30
2011-05-10T06:04:30
1,726,476
1
0
null
null
null
null
UTF-8
C++
false
false
707
cpp
#include <iostream> using namespace std; int main(){ int m, n; while (cin >> m >> n){ int a = m; int b = n; if (m > n){ int temp = m; m = n; n = temp; } int max = 0; for (int i = m; i <= n; i++){ int count = 1; int num = i; while (num != 1){ if (num % 2 == 0){ num /= 2; } else num = 3 * num + 1; count++; } if (max < count) max = count; } cout << a << " " << b << " " << max << endl; } return 0; } /* * error1: wrong side effect! while (i != 1) always make i equal 1 when loop terminate, thus make the for loop infinite * error2: the output of m, n should be the same order with input */
[ [ [ 1, 38 ] ] ]
1b7d6b98c4e3cf6062fe2ee297e4cae88b51defa
4d7f00745c1e8c04282cbde64066fe0684d1144e
/itsumo/src/interface/main.cpp
4e976f7989aa61e32fe9113740c6cc884fe7857d
[]
no_license
NiNjA-CodE/itsumo
45b5f7ce09c52300dee3a4a58a9e02c26ef46579
8bf7d590b520ec0be79f80a82370ee26314238da
refs/heads/master
2021-01-23T21:30:46.344786
2011-10-13T00:07:06
2011-10-13T00:07:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
241
cpp
#include <qapplication.h> #include "mainwindowimpl.h" int main (int argc, char **argv) { QApplication app(argc, argv); MainWindowImpl* mw = new MainWindowImpl(); app.setMainWidget(mw); mw->show(); return app.exec(); }
[ [ [ 1, 14 ] ] ]
7bf6c332041b0010091138225497ebd1c63bdb43
d9f1cc8e697ae4d1c74261ae6377063edd1c53f8
/src/graphics/Effect.cpp
80db0b8f7c70b514e84f43a5b0530055e8fd3ade
[]
no_license
commel/opencombat2005
344b3c00aaa7d1ec4af817e5ef9b5b036f2e4022
d72fc2b0be12367af34d13c47064f31d55b7a8e0
refs/heads/master
2023-05-19T05:18:54.728752
2005-12-01T05:11:44
2005-12-01T05:11:44
375,630,282
0
0
null
null
null
null
UTF-8
C++
false
false
1,739
cpp
#include ".\effect.h" #include <graphics\Screen.h> #include <misc\TGA.h> #include <sound\Sound.h> #include <application\Globals.h> Effect::Effect(char *name) { strcpy(_name, name); _frameHoldTime = 0; _completed = false; _currentFrameNumber = 0; _totalTime = 0; _incrementalTime = 0; Position.x = 0; Position.y = 0; _sound[0] = '\0'; _bPlaceOnTurret = false; } Effect::~Effect(void) { } // Adds a frame to this effect void Effect::AddFrame(TGA *tga, long frameHoldTime) { _frameHoldTime = frameHoldTime; _frames.Add(tga); } // Clone's this effect Effect * Effect::Clone() { Effect *e = new Effect(_name); strcpy(e->_sound, _sound); e->_dynamic = _dynamic; e->_bPlaceOnTurret = _bPlaceOnTurret; for(int i = 0; i < _frames.Count; ++i) { e->AddFrame(_frames.Items[i], _frameHoldTime); } return e; } void Effect::Simulate(long dt) { if(_totalTime == 0 && _sound[0] != '\0') { g_Globals->World.SoundEffects->GetSound(_sound)->Play(); } _totalTime += dt; _incrementalTime += dt; if(_incrementalTime > _frameHoldTime) { _incrementalTime = 0; _currentFrameNumber++; if(_currentFrameNumber >= _frames.Count) { _completed = true; } } } void Effect::Render(Screen *screen) { if(_completed) { return; } TGA *tga = _frames.Items[_currentFrameNumber]; screen->Blit(tga->GetData(), Position.x-tga->GetOriginX()-screen->Origin.x, Position.y - tga->GetOriginY()-screen->Origin.y, tga->GetWidth(), tga->GetHeight(), 0, 0, tga->GetWidth(), tga->GetHeight(), tga->GetDepth(), true); } void Effect::SetSound(char *name) { if(strlen(name) > 0) { strcpy(_sound, name); } else { _sound[0] = '\0'; } }
[ "opencombat" ]
[ [ [ 1, 90 ] ] ]
3d4be2ff06ed794c414ddd64f9f8c8c311bd2d49
c98bb32dca152d022f81b3aa1202e34954933501
/taggressive.cpp
357e85b1adc4d36f91af8f7fae0bb086383a561e
[]
no_license
keksi/tAggressive
594b77730e8cea189a3a80db28c4d3a31a573ee7
c631aff6c1f27b40ecc8a54c6b846e52b9158143
refs/heads/master
2016-09-06T02:31:17.869255
2011-04-11T19:21:30
2011-04-11T19:21:30
1,588,502
0
0
null
null
null
null
UTF-8
C++
false
false
4,794
cpp
// Qt/ #include <QtCore/QDir> #include <QtCore/QDebug> #include <QtGui/QTableWidget> #include <QtGui/QFileSystemModel> #include <QtGui/QSortFilterProxyModel> // taggressive/ #include "taggressive.h" #include "ui_taggressive.h" // taglib/ #include "tag.h" //--[ defines ]---------------------------------------------------------------- #define START_DIRECTORY "/home/tomjoad/Musik/Alben/" //----------------------------------------------------------------------------- Taggressive::Taggressive(QWidget *parent) : QMainWindow(parent) , m_ui(new Ui::Taggressive) , m_fsModel(0) , m_fsProxyModel(0) { m_ui->setupUi(this); // initialize initializeFileTree(); initializeFileTable(); } //----------------------------------------------------------------------------- Taggressive::~Taggressive() { delete m_ui; m_ui = 0; } //----------------------------------------------------------------------------- void Taggressive::fillFileTable(const QString &dirpath) { m_selectedDirMap.clear(); QDir albumDir(dirpath); QFileInfoList tracklist = albumDir.entryInfoList(QStringList() << "*.mp3"); m_ui->fileTable->setRowCount(tracklist.size()); for (int i=0; i < tracklist.size(); ++i) { QFileInfo fileInfo = tracklist.at(i); TagLib::FileRef fileRef(qPrintable(fileInfo.filePath())); m_selectedDirMap.insert(fileInfo.fileName(), fileRef); m_ui->fileTable->setItem( i, 0, new QTableWidgetItem(fileInfo.fileName())); m_ui->fileTable->setItem( i, 1, new QTableWidgetItem(fileRef.tag()->artist().toCString())); m_ui->fileTable->setItem( i, 2, new QTableWidgetItem(fileRef.tag()->album().toCString())); m_ui->fileTable->setItem( i, 3, new QTableWidgetItem(fileRef.tag()->title().toCString())); m_ui->fileTable->setItem( i, 4, new QTableWidgetItem(QString::number(fileRef.tag()->year()))); m_ui->fileTable->setItem( i, 5, new QTableWidgetItem(fileRef.tag()->genre().toCString())); m_ui->fileTable->setItem( i, 6, new QTableWidgetItem(QString::number(fileRef.tag()->track()))); m_ui->fileTable->setItem( i, 7, new QTableWidgetItem(QString::number(fileRef.audioProperties()->bitrate()))); m_ui->fileTable->setItem( i, 8, new QTableWidgetItem(QString("%1:%2") .arg(fileRef.audioProperties()->length()/60) .arg(fileRef.audioProperties()->length()%60))); } } //----------------------------------------------------------------------------- void Taggressive::initializeFileTree() { m_fsModel = new QFileSystemModel(this); m_fsModel->setRootPath(QDir::currentPath()); m_fsModel->setFilter(QDir::Dirs | QDir::NoDotAndDotDot | QDir::Drives); m_fsProxyModel = new QSortFilterProxyModel(this); m_fsProxyModel->setSourceModel(m_fsModel); m_fsProxyModel->setDynamicSortFilter(true); m_fsProxyModel->setSortCaseSensitivity(Qt::CaseInsensitive); m_ui->fileTree->setModel(m_fsProxyModel); m_ui->fileTree->setAnimated(true); m_ui->fileTree->setAlternatingRowColors(true); m_ui->fileTree->sortByColumn(0, Qt::AscendingOrder); m_ui->fileTree->setSortingEnabled(true); m_ui->fileTree->header()->setResizeMode(QHeaderView::ResizeToContents); m_ui->fileTree->header()->hideSection(1); m_ui->fileTree->header()->hideSection(2); m_ui->fileTree->header()->hideSection(3); m_ui->fileTree->setHeaderHidden(true); } //----------------------------------------------------------------------------- void Taggressive::initializeFileTable() { m_ui->fileTable->setAlternatingRowColors(true); m_ui->fileTable->sortItems(0); m_ui->fileTable->setColumnCount(9); m_ui->fileTable->setHorizontalHeaderLabels( QStringList() << "File name" << "Artist" << "Album" << "Title" << "Year" << "Genre" << "Track #" << "Bitrate" << "Time"); } //----------------------------------------------------------------------------- void Taggressive::on_actionClose_triggered() { exit(0); } //----------------------------------------------------------------------------- void Taggressive::on_actionEditTag_triggered() { // TODO: display edit tags dialog in here } //----------------------------------------------------------------------------- void Taggressive::on_fileTree_clicked(QModelIndex index) { QString path = m_fsModel->filePath(m_fsProxyModel->mapToSource(index)); fillFileTable(path); qDebug("Taggressive::on_fileTree_clicked() : displaying contents of '%s'", qPrintable(path)); }
[ [ [ 1, 128 ] ] ]
7d1a53817f9bdde4275f829aa08769751d4937fa
1e976ee65d326c2d9ed11c3235a9f4e2693557cf
/CommonSources/SimpleBrowser.h
4c83399ebedde3cb723d4a4c779421e1071ce3ff
[]
no_license
outcast1000/Jaangle
062c7d8d06e058186cb65bdade68a2ad8d5e7e65
18feb537068f1f3be6ecaa8a4b663b917c429e3d
refs/heads/master
2020-04-08T20:04:56.875651
2010-12-25T10:44:38
2010-12-25T10:44:38
19,334,292
3
0
null
null
null
null
UTF-8
C++
false
false
5,169
h
// /* // * // * Copyright (C) 2003-2010 Alexandros Economou // * // * This file is part of Jaangle (http://www.jaangle.com) // * // * This Program is free software; you can redistribute it and/or modify // * it under the terms of the GNU General Public License as published by // * the Free Software Foundation; either version 2, or (at your option) // * any later version. // * // * This Program is distributed in the hope that it will be useful, // * but WITHOUT ANY WARRANTY; without even the implied warranty of // * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // * GNU General Public License for more details. // * // * You should have received a copy of the GNU General Public License // * along with GNU Make; see the file COPYING. If not, write to // * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. // * http://www.gnu.org/copyleft/gpl.html // * // */ // // Change History: // // April 6, 2003 - Original release, and article posted at // http://www.codeproject.com/useritems/SimpleBrowserForMFC.asp // // April 12, 2003 - Replaced NavigateString() with Write() and Clear(). // - Added logic to Create() to wait for document ready. // - Added GetDocument() method. // - Added notification support. // - Added post data and headers to BeforeNavigate2 handling. // #if !defined(SimpleBrowser_defined) #define SimpleBrowser_defined #include "mshtml.h" class SimpleBrowserNotifier { public: virtual void OnBeforeNavigate(LPCTSTR url) = 0; virtual void OnDocumentComplete(LPCTSTR url) = 0; virtual void OnDownloadBegin() = 0; virtual void OnProgressChange(long progress,long progress_max) = 0; virtual void OnDownloadComplete() = 0; virtual void OnNavigateComplete(LPCTSTR url) = 0; virtual void OnStatusTextChange(LPCTSTR text) = 0; virtual void OnTitleChange(LPCTSTR text) = 0; virtual void EnableBackButton(BOOL bEnable) = 0; virtual void EnableNextButton(BOOL bEnable) = 0; }; class SimpleBrowser : public CWnd { public: // construction and creation SimpleBrowser(); virtual ~SimpleBrowser(); // create browser directly BOOL Create(DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID); // controls BOOL Navigate(LPCTSTR URL); BOOL LoadHTML(LPCTSTR html); BOOL LoadFromResource(INT resID); // append string to current document; note that the WebBrowser control tolerates void Write(LPCTSTR string); // clear current document void Clear(); void GoBack(); void GoForward(); void GoHome(); void Refresh(); void Stop(); // start printing contents; uses same 'metacharacters' for header and // footer as Internet Explorer; see IE Page Setup dialog void Print(LPCTSTR header = _T("&w&b&b&p"), LPCTSTR footer = _T("&d &t")); bool GetBusy(); READYSTATE GetReadyState(); CString GetLocationName(); CString GetLocationURL(); // get/set silent property (if true, dialog and message boxes may not be shown) bool GetSilent(); void PutSilent(bool silent = false); void SetNotifier(SimpleBrowserNotifier* pNotifier) {m_pNotifier = pNotifier;} BOOL ExecuteJavascript(LPCTSTR script); BOOL GetElementText(LPCTSTR elementName, LPTSTR bf, UINT bfLen); // get document interface; returns NULL // if interface is not available // (which is the case if you've navigated to // something that's NOT an HTML document, // like an Excel spreadsheet, which the // WebBrowser control is perfectly willing // to host) IWebBrowser2* GetBrowser() {return m_pBrowser;} IHTMLDocument2* GetDocument(); protected: virtual void PostNcDestroy(); afx_msg void OnSize(UINT nType, int cx, int cy); afx_msg BOOL OnEraseBkgnd(CDC* pDC); DECLARE_MESSAGE_MAP() DECLARE_EVENTSINK_MAP() //-----------------Events // called before navigation begins; URL is destination, frame // is frame name ("" if none), post_data is HTTP POST data (NULL if none), // and headers are HTTP headers sent to server; // return true to cancel navigation, false to continue // navigation to document complete; URL is location private: void OnBeforeNavigate2(LPDISPATCH lpDisp, VARIANT FAR *URL, VARIANT FAR *Flags, VARIANT FAR *TargetFrameName, VARIANT FAR *PostData, VARIANT FAR *Headers, VARIANT_BOOL *Cancel); void ReleaseObjects(); void OnDocumentComplete(LPDISPATCH lpDisp,VARIANT FAR* URL); void OnDownloadBegin(); void OnProgressChange(long progress,long progress_max); void OnDownloadComplete(); void OnNavigateComplete2(LPDISPATCH lpDisp,VARIANT FAR* URL); void OnStatusTextChange(BSTR text); void OnTitleChange(BSTR bstrText); void OnCommandStateChange(long command, VARIANT_BOOL Enable); public: IHTMLDocument3* GetDocument3(); private: CWnd* m_pBrowserWnd; // browser window IWebBrowser2* m_pBrowser; // browser control IDispatch* m_pBrowserDispatch; // browser control dispatch interface SimpleBrowserNotifier* m_pNotifier; }; #endif
[ "outcast1000@dc1b949e-fa36-4f9e-8e5c-de004ec35678" ]
[ [ [ 1, 151 ] ] ]
9c5723185bb3cb114afd037a22c0e44661ce76bd
1c9f99b2b2e3835038aba7ec0abc3a228e24a558
/Projects/elastix/elastix_sources_v4/src/Components/Metrics/ViolaWellsMutualInformation/elxViolaWellsMutualInformationMetric.h
c0baafafa48078a4b08804e6aeb905f10373f4aa
[]
no_license
mijc/Diploma
95fa1b04801ba9afb6493b24b53383d0fbd00b33
bae131ed74f1b344b219c0ffe0fffcd90306aeb8
refs/heads/master
2021-01-18T13:57:42.223466
2011-02-15T14:19:49
2011-02-15T14:19:49
1,369,569
0
0
null
null
null
null
UTF-8
C++
false
false
7,052
h
/*====================================================================== This file is part of the elastix software. Copyright (c) University Medical Center Utrecht. All rights reserved. See src/CopyrightElastix.txt or http://elastix.isi.uu.nl/legal.php for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. ======================================================================*/ #ifndef __elxViolaWellsMutualInformationMetric_H__ #define __elxViolaWellsMutualInformationMetric_H__ #include "elxIncludes.h" #include "itkMutualInformationImageToImageMetric.h" #include "elxTimer.h" namespace elastix { using namespace itk; /** * \class ViolaWellsMutualInformationMetric * \brief A metric based on the itk::MutualInformationImageToImageMetric. * * \warning: this metric is not very well tested in elastix. * \warning: this metric is not based on the AdvancedImageToImageMetric so * does not support the ImageSampler framework and might be very slow in * combination with B-spline transform. * \warning: this metric uses stochastic sampling of the images. Do not use * a quasi-Newton optimizer or a conjugate gradient. The StandardGradientDescent * is a better choice. * * The parameters used in this class are: * \parameter Metric: Select this metric as follows:\n * <tt>(Metric "ViolaWellsMutualInformation")</tt> * \parameter NumberOfSpatialSamples: for each resolution the number of samples * used to calculate this metrics value and its derivative. \n * example: <tt>(NumberOfSpatialSamples 5000 5000 10000)</tt> \n * The default is 10000 for each resolution. * \parameter FixedImageStandardDeviation: for each resolution the standard * deviation of the fixed image. \n * example: <tt>(FixedImageStandardDeviation 1.3 1.9 1.0)</tt> \n * The default is 0.4 for each resolution. * \parameter MovingImageStandardDeviation: for each resolution the standard * deviation of the moving image. \n * example: <tt>(MovingImageStandardDeviation 1.3 1.9 1.0)</tt> \n * The default is 0.4 for each resolution. * * \sa MutualInformationImageToImageMetric * \ingroup Metrics */ template <class TElastix > class ViolaWellsMutualInformationMetric : public MutualInformationImageToImageMetric< ITK_TYPENAME MetricBase<TElastix>::FixedImageType, ITK_TYPENAME MetricBase<TElastix>::MovingImageType >, public MetricBase<TElastix> { public: /** Standard ITK-stuff. */ typedef ViolaWellsMutualInformationMetric Self; typedef MutualInformationImageToImageMetric< typename MetricBase<TElastix>::FixedImageType, typename MetricBase<TElastix>::MovingImageType > Superclass1; typedef MetricBase<TElastix> Superclass2; typedef SmartPointer<Self> Pointer; typedef SmartPointer<const Self> ConstPointer; /** Method for creation through the object factory. */ itkNewMacro( Self ); /** Run-time type information (and related methods). */ itkTypeMacro( ViolaWellsMutualInformationMetric, MutualInformationImageToImageMetric ); /** Name of this class. * Use this name in the parameter file to select this specific metric. \n * example: <tt>(Metric "ViolaWellsMutualInformation")</tt>\n */ elxClassNameMacro( "ViolaWellsMutualInformation" ); /** Typedefs inherited from the superclass. */ typedef typename Superclass1::TransformType TransformType; typedef typename Superclass1::TransformPointer TransformPointer; typedef typename Superclass1::TransformJacobianType TransformJacobianType; typedef typename Superclass1::InterpolatorType InterpolatorType; typedef typename Superclass1::MeasureType MeasureType; typedef typename Superclass1::DerivativeType DerivativeType; typedef typename Superclass1::ParametersType ParametersType; typedef typename Superclass1::FixedImageType FixedImageType; typedef typename Superclass1::MovingImageType MovingImageType; typedef typename Superclass1::FixedImageConstPointer FixedImageConstPointer; typedef typename Superclass1::MovingImageConstPointer MovingImageCosntPointer; typedef typename Superclass1::FixedImageIndexType FixedImageIndexType; typedef typename Superclass1::FixedImageIndexValueType FixedImageIndexValueType; typedef typename Superclass1::MovingImageIndexType MovingImageIndexType; typedef typename Superclass1::FixedImagePointType FixedImagePointType; typedef typename Superclass1::MovingImagePointType MovingImagePointType; /** The moving image dimension. */ itkStaticConstMacro( MovingImageDimension, unsigned int, MovingImageType::ImageDimension ); /** Typedef's inherited from Elastix. */ typedef typename Superclass2::ElastixType ElastixType; typedef typename Superclass2::ElastixPointer ElastixPointer; typedef typename Superclass2::ConfigurationType ConfigurationType; typedef typename Superclass2::ConfigurationPointer ConfigurationPointer; typedef typename Superclass2::RegistrationType RegistrationType; typedef typename Superclass2::RegistrationPointer RegistrationPointer; typedef typename Superclass2::ITKBaseType ITKBaseType; /** Typedef's for timer. */ typedef tmr::Timer TimerType; typedef TimerType::Pointer TimerPointer; /** Execute stuff before each new pyramid resolution: * \li Set the number of spatial samples. * \li Set the standard deviation of the fixed image. * \li Set the standard deviation of the moving image. */ virtual void BeforeEachResolution(void); /** Sets up a timer to measure the intialisation time and * calls the Superclass' implementation. */ virtual void Initialize(void) throw (ExceptionObject); protected: /** The constructor. */ ViolaWellsMutualInformationMetric(); /** The destructor. */ virtual ~ViolaWellsMutualInformationMetric() {} private: /** The private constructor. */ ViolaWellsMutualInformationMetric( const Self& ); // purposely not implemented /** The private copy constructor. */ void operator=( const Self& ); // purposely not implemented }; // end class ViolaWellsMutualInformationMetric } // end namespace elastix #ifndef ITK_MANUAL_INSTANTIATION #include "elxViolaWellsMutualInformationMetric.hxx" #endif #endif // end #ifndef __elxViolaWellsMutualInformationMetric_H__
[ [ [ 1, 162 ] ] ]
3d718a9f33175057313605533f9508bfa2f1393b
119ba245bea18df8d27b84ee06e152b35c707da1
/unreal/branches/selection_copying/qrgui/visualDebugger/blockParser.cpp
2e1dc39e4165076053e7c042402d721498db1413
[]
no_license
nfrey/qreal
05cd4f9b9d3193531eb68ff238d8a447babcb3d2
71641e6c5f8dc87eef9ec3a01cabfb9dd7b0e164
refs/heads/master
2020-04-06T06:43:41.910531
2011-05-30T19:30:09
2011-05-30T19:30:09
1,634,768
0
0
null
null
null
null
UTF-8
C++
false
false
16,768
cpp
#include "blockParser.h" #include <QMessageBox> using namespace qReal; BlockParser::BlockParser(gui::ErrorReporter* errorReporter) : mHasParseErrors(false), mErrorReporter(errorReporter), mCurrentId (Id::rootId()) { } BlockParser::~BlockParser() { delete &mVariables; } QMap<QString, Number>* BlockParser::getVariables() { return &mVariables; } bool BlockParser::isDigit(QChar c) { char symbol = c.toAscii(); return '0' <= symbol && symbol <= '9'; } bool BlockParser::isSign(QChar c) { char symbol = c.toAscii(); return symbol == '-' || symbol == '+'; } bool BlockParser::isLetter(QChar c) { char symbol = c.toAscii(); return ('A'<= symbol && symbol <= 'Z') || ('a'<= symbol && symbol <='z'); } bool BlockParser::isExp(QChar c) { char symbol = c.toAscii(); return symbol == 'e' || symbol == 'E'; } bool BlockParser::isPoint(QChar c) { return c.toAscii() == '.'; } bool BlockParser::isRoundBracket(QChar c) { char symbol = c.toAscii(); return symbol == '(' || symbol == ')'; } bool BlockParser::isDisjunction(QChar c) { return c.toAscii() == '|'; } bool BlockParser::isConjunction(QChar c) { return c.toAscii() == '&'; } bool BlockParser::isComparison(QChar c) { char symbol = c.toAscii(); return symbol == '<' || symbol == '>'; } bool BlockParser::isArithmeticalMinusOrPlus(QChar c) { char symbol = c.toAscii(); return symbol == '-' || symbol == '+'; } bool BlockParser::isMultiplicationOrDivision(QChar c) { char symbol = c.toAscii(); return symbol == '*' || symbol == '/'; } bool BlockParser::isDelimiter(QChar c) { char symbol = c.toAscii(); return symbol == '\n' || symbol == '\r' || symbol == ' ' || symbol == '\t'; } bool BlockParser::isAssignment(QChar c) { return c.toAscii() == '='; } Number BlockParser::parseNumber(QString stream, int& pos) { int beginPos = pos; bool isDouble = false; if (pos < stream.length() && isSign(stream.at(pos))) { pos++; } if (!checkForDigit(stream, pos)) { return Number(); } while (pos < stream.length() && isDigit(stream.at(pos))) { pos++; } if (pos < stream.length() && isPoint(stream.at(pos))) { isDouble = true; pos++; if (!checkForDigit(stream, pos)) { return Number(); } while (pos < stream.length() && isDigit(stream.at(pos))) { pos++; } } if (pos < stream.length() && isExp(stream.at(pos))) { isDouble = true; pos++; if (isEndOfStream(stream, pos)) { return Number(); } if (pos < stream.length() && isSign(stream.at(pos))) { pos++; } if (!checkForDigit(stream, pos)) { return Number(); } while (pos < stream.length() && isDigit(stream.at(pos))) { pos++; } } if (isDouble) { return Number(stream.mid(beginPos, pos - beginPos).toDouble(), Number::doubleType); } else { return Number(stream.mid(beginPos, pos - beginPos).toInt(), Number::intType); } } QString BlockParser::parseIdentifier(QString stream, int& pos) { int beginPos = pos; if (checkForLetter(stream, pos)) { pos++; while (pos < stream.length() && (isDigit(stream.at(pos)) || isLetter(stream.at(pos)))) { pos++; } return stream.mid(beginPos, pos - beginPos); } return ""; } void BlockParser::skip(QString stream, int& pos) { while (pos < stream.length() && (isDelimiter(stream.at(pos)) || stream.at(pos).toAscii() == '<')) { if (isHtmlBrTag(stream, pos)) { pos += 4; return; } if (stream.at(pos).toAscii() == '<'){ return; } pos++; } } bool BlockParser::isHtmlBrTag(QString stream, int& pos) { if (pos + 3 < stream.length()) { return stream.at(pos).toAscii() == '<' && stream.at(pos + 1).toAscii() == 'b' && stream.at(pos + 2).toAscii() == 'r' && stream.at(pos + 3).toAscii() == '>'; } else { return false; } } Number BlockParser::parseTerm(QString stream, int& pos) { Number res; skip(stream, pos); if (hasErrors() || isEndOfStream(stream, pos)) { return Number(); } switch (stream.at(pos).toAscii()) { case '+': pos++; skip(stream, pos); res = parseTerm(stream, pos); break; case '-': pos++; skip(stream, pos); res = - (parseTerm(stream, pos)); break; case '(': pos++; skip(stream, pos); res = parseExpression(stream, pos); skip(stream, pos); if (!checkForClosingBracket(stream, pos)) { return res; } pos++; break; default: if (isDigit(stream.at(pos))) { res = parseNumber(stream, pos); } else if (isLetter(stream.at(pos))) { int unknownIdentifierIndex = pos; QString variable = parseIdentifier(stream, pos); if (mVariables.contains(variable)) { res = mVariables[variable]; } else { error(unknownIdentifier, QString::number(unknownIdentifierIndex + 1), "", variable); } } else { error(unexpectedSymbol, QString::number(pos+1), "digit\'' or \'letter\' or \'bracket\' or \'sign", QString(stream.at(pos))); } break; } skip(stream, pos); return res; } Number BlockParser::parseMult(QString stream, int& pos) { Number res = parseTerm(stream, pos); while (pos < stream.length() && isMultiplicationOrDivision(stream.at(pos))) { pos++; switch (stream.at(pos - 1).toAscii()) { case '*': res *= parseTerm(stream, pos); break; case '/': res /= parseTerm(stream, pos); break; } } return res; } Number BlockParser::parseExpression(QString stream, int& pos) { Number res = parseMult(stream, pos); while (pos < stream.length() && isArithmeticalMinusOrPlus(stream.at(pos))) { pos++; switch (stream.at(pos - 1).toAscii()) { case '+': res += parseMult(stream, pos); break; case '-': res -= parseMult(stream, pos); break; } } return res; } void BlockParser::parseVarPart(QString stream, int& pos) { skip(stream, pos); if (stream.mid(pos, 4).compare("var ") == 0) { pos += 4; skip(stream, pos); if (!isEndOfStream(stream, pos) && stream.mid(pos, 4).compare("int ") != 0 && stream.mid(pos, 7).compare("double ") != 0) { error(unexpectedSymbol, QString::number(pos + 1), "int\' or \'double", stream.at(pos)); return; } while (pos < stream.length() && (stream.mid(pos, 4).compare("int ") == 0 || stream.mid(pos, 7).compare("double ") == 0)) { Number::Type curType; if (stream.mid(pos, 4).compare("int ") == 0) { curType = Number::intType; pos += 4; } else { curType = Number::doubleType; pos += 7; } skip(stream, pos); while (pos < stream.length() && stream.at(pos).toAscii() != ';') { skip(stream, pos); QString variable = parseIdentifier(stream, pos); if (hasErrors()) { return; } skip(stream, pos); Number n; if (isEndOfStream(stream, pos)) { return; } switch (stream.at(pos).toAscii()) { case '=': pos++; skip(stream, pos); n = parseExpression(stream, pos); n.setProperty("Type", curType); mVariables[variable] = n; break; case ',': pos++; mVariables[variable] = n; skip(stream, pos); if (pos == stream.length()) { error(unexpectedEndOfStream, QString::number(pos+1)); return; } if (stream.at(pos).toAscii() == ';') { error(unexpectedSymbol, QString::number(pos+1), "\'letter", QString(stream.at(pos).toAscii())); return; } break; default: if (!checkForColon(stream, pos)) { return; } mVariables[variable] = n; break; } skip(stream, pos); } if (hasErrors()) { return; } pos++; skip(stream, pos); } } } void BlockParser::parseCommand(QString stream, int& pos) { int typesMismatchIndex = pos; QString variable = parseIdentifier(stream, pos); skip(stream, pos); if (hasErrors() || isEndOfStream(stream, pos)) { return; } if (!mVariables.contains(variable)) { error(unknownIdentifier, QString::number(typesMismatchIndex + 1), "", variable); } if (isAssignment(stream.at(pos))) { pos++; Number n = parseExpression(stream, pos); if (!hasErrors()) { Number::Type t1 = mVariables[variable].property("Type").toInt() ? Number::intType : Number::doubleType; Number::Type t2 = n.property("Type").toInt() ? Number::intType : Number::doubleType; if (t1==t2) { mVariables[variable] = n; } else { if (t1 == Number::intType) { mVariables[variable].setProperty("Number", n.property("Number").toInt()); error(typesMismatch, QString::number(typesMismatchIndex + 1), "\'int\'", "\'double\'"); } else { mVariables[variable].setProperty("Number", n.property("Number").toDouble()); } } } } else { error(unexpectedSymbol, QString::number(pos+1), "=", QString(stream.at(pos))); return; } if (!hasErrors() && checkForColon(stream, pos)) { pos++; } } void BlockParser::parseProcess(QString stream, int& pos, Id curId) { mCurrentId = curId; if (isEmpty(stream, pos)) { error(emptyProcess); return; } parseVarPart(stream, pos); if (hasErrors()) { return; } while (pos < stream.length() && !hasErrors()) { parseCommand(stream, pos); skip(stream, pos); } } bool BlockParser::parseSingleComprasion(QString stream, int& pos) { Number left = parseExpression(stream, pos); Number right; if (hasErrors() || isEndOfStream(stream, pos)) { return false; } switch (stream.at(pos).toAscii()) { case '=': pos++; if (checkForEqual(stream, pos)) { pos++; right = parseExpression(stream, pos); return left == right; } else { return false; } break; case '!': pos++; if (checkForEqual(stream, pos)) { pos++; right = parseExpression(stream, pos); return left != right; } else { return false; } break; case '<': pos++; if (pos < stream.length() && stream.at(pos).toAscii() == '=') { pos++; right = parseExpression(stream, pos); return left <= right; } else { right = parseExpression(stream, pos); return left < right; } break; case '>': pos++; if (pos < stream.length() && stream.at(pos).toAscii() == '=') { pos++; right = parseExpression(stream, pos); return left >= right; } else { right = parseExpression(stream, pos); return left > right; } break; } error(unexpectedSymbol, QString::number(pos+1), "=\',\'!\',\'>\',\'<", QString(stream.at(pos))); return false; } bool BlockParser::parseDisjunction(QString stream, int& pos) { bool res = false; skip(stream, pos); int index = stream.indexOf(')', pos); switch (stream.at(pos).toAscii()) { case '(': if ((index < stream.indexOf('<', pos) || stream.indexOf('<', pos) == -1) && (index < stream.indexOf('>', pos) || stream.indexOf('>', pos) == -1) && (index < stream.indexOf('=', pos) || stream.indexOf('=', pos) == -1) ) { res = parseSingleComprasion(stream, pos); } else { pos++; res = parseConditionHelper(stream, pos); skip(stream, pos); if (!hasErrors() && checkForClosingBracket(stream, pos)) { pos++; } } break; case '!': pos++; skip(stream, pos); if (hasErrors() || !checkForOpeningBracket(stream, pos)) { return res; } pos++; res = !(parseConditionHelper(stream, pos)); if (hasErrors() || !checkForClosingBracket(stream, pos)) { return res; } pos++; break; default: if (isDigit(stream.at(pos)) || isLetter(stream.at(pos))) { res = parseSingleComprasion(stream, pos); } else { error(unexpectedSymbol, QString::number(pos+1), "digit\' or \'letter\' or \'sign", QString(stream.at(pos))); } break; } skip(stream, pos); return res; } bool BlockParser::parseConjunction(QString stream, int& pos) { bool res = parseDisjunction(stream, pos); while (pos < (stream.length()-1) && isConjunction(stream.at(pos))) { pos++; if (isConjunction(stream.at(pos))) { pos++; res = parseDisjunction(stream, pos) && res; } else { error(unexpectedSymbol, QString::number(pos + 1), "&", QString(stream.at(pos))); return res; } } return res; } bool BlockParser::parseConditionHelper(QString stream, int& pos) { bool res = parseConjunction(stream, pos); while (pos < (stream.length()-1) && isDisjunction(stream.at(pos))) { pos++; if (isDisjunction(stream.at(pos))) { pos++; res = parseConjunction(stream, pos) || res; } else { error(unexpectedSymbol, QString::number(pos + 1), "|", QString(stream.at(pos))); return res; } } return res; } bool BlockParser::parseCondition(QString stream, int& pos, Id curId) { mCurrentId = curId; if (isEmpty(stream, pos)) { error(emptyCondition); return false; } bool res = parseConditionHelper(stream, pos); skip(stream, pos); if (!hasErrors() && pos < stream.length()) { error(unexpectedSymbol, QString::number(pos), "null string", QString(stream.at(pos))); } return res; } gui::ErrorReporter& BlockParser::getErrors() { return *mErrorReporter; } bool BlockParser::hasErrors() { return mHasParseErrors; } bool BlockParser::isEndOfStream(QString stream, int& pos) { if (pos == stream.length()) { error(unexpectedEndOfStream, QString::number(pos + 1)); return true; } return false; } bool BlockParser::checkForLetter(QString stream, int &pos) { if (isEndOfStream(stream, pos)) { return false; } if (!isLetter(stream.at(pos))) { error(unexpectedSymbol, QString::number(pos + 1), "letter", QString(stream.at(pos))); return false; } return true; } bool BlockParser::checkForDigit(QString stream, int &pos) { if (isEndOfStream(stream, pos)) { return false; } if (!isDigit(stream.at(pos))) { error(unexpectedSymbol, QString::number(pos + 1), "digit", QString(stream.at(pos))); return false; } return true; } bool BlockParser::checkForOpeningBracket(QString stream, int &pos) { if (isEndOfStream(stream, pos)) { return false; } if (stream.at(pos).toAscii() != '(') { error(unexpectedSymbol, QString::number(pos + 1), "(", QString(stream.at(pos))); return false; } return true; } bool BlockParser::checkForClosingBracket(QString stream, int &pos) { if (isEndOfStream(stream, pos)) { return false; } if (stream.at(pos).toAscii() != ')') { error(unexpectedSymbol, QString::number(pos + 1), ")", QString(stream.at(pos))); return false; } return true; } bool BlockParser::checkForColon(QString stream, int &pos) { if (isEndOfStream(stream, pos)) { return false; } if (stream.at(pos).toAscii() != ';') { error(unexpectedSymbol, QString::number(pos + 1), ";", QString(stream.at(pos))); return false; } return true; } bool BlockParser::checkForEqual(QString stream, int pos) { if (isEndOfStream(stream, pos)) { return false; } if (stream.at(pos).toAscii() != '=') { error(unexpectedSymbol, QString::number(pos + 1), "=", QString(stream.at(pos))); return false; } return true; } bool BlockParser::isEmpty(QString stream, int &pos) { skip(stream, pos); return pos == stream.length(); } void BlockParser::error(ParseErrorType type, QString pos, QString expected, QString got) { switch (type) { case unexpectedEndOfStream: mHasParseErrors = true; mErrorReporter->addCritical( "Unexpected end of stream at " + pos + ". Mb you forget \';\'?", mCurrentId); break; case unexpectedSymbol: mHasParseErrors = true; mErrorReporter->addCritical("Unexpected symbol at " + pos + " : expected \'" + expected + "\', got \'" + got + "\'", mCurrentId); break; case typesMismatch: mErrorReporter->addWarning("Types mismatch at " + pos + ": " + expected + " = " + got + ". Possible loss of data", mCurrentId); break; case unknownIdentifier: mHasParseErrors = true; mErrorReporter->addCritical("Unknown identifier at " + pos + " \'" + got + "\'", mCurrentId); break; case emptyProcess: mErrorReporter->addWarning("Empty process is unnecessary", mCurrentId); break; case emptyCondition: mHasParseErrors = true; mErrorReporter->addCritical("Condition can\'t be empty", mCurrentId); break; } } void BlockParser::setErrorReporter(gui::ErrorReporter *errorReporter) { mErrorReporter = errorReporter; } void BlockParser::clear() { mHasParseErrors = false; mErrorReporter = NULL; mVariables.clear(); mCurrentId = Id::rootId(); }
[ [ [ 1, 662 ] ] ]
869f478f5eea4feb9ecaa242abb461878ac3ac2f
1d6dcdeddc2066f451338361dc25196157b8b45c
/tp2/Visualizacion/Camara.h
d4d9dd2d17a13dcb63f6495ccbd897d61fc3f186
[]
no_license
nicohen/ssgg2009
1c105811837f82aaa3dd1f55987acaf8f62f16bb
467e4f475ef04d59740fa162ac10ee51f1f95f83
refs/heads/master
2020-12-24T08:16:36.476182
2009-08-15T00:43:57
2009-08-15T00:43:57
34,405,608
0
0
null
null
null
null
UTF-8
C++
false
false
885
h
#ifndef CAMARA_H #define CAMARA_H #define MAX_ZOOM 65365.0 /** * Clase que representa la camara que "filma" o "ve" una escena */ class Camara { public: Camara(); virtual ~Camara(); //getters float* getOjo() { return this->eye; } float* getSobre() { return this->at; } float* getArriba() { return this->up; } float getZoom() { return this->zoom; } //setters void setZoom(float zoom) { this->zoom = zoom; } //setters : permite variar la posicion de la camara en los parametros x,y void setPosicion(float x, float y){ this->eye[0] = x; this->eye[1] = y; } protected: private: // Variables que controlan la ubicaci�n de la c�mara en la Escena 3D float eye[3]; float at[3]; float up[3]; float zoom; }; #endif // CAMARA_H
[ "rodvar@6da81292-15a5-11de-a4db-e31d5fa7c4f0" ]
[ [ [ 1, 35 ] ] ]
f61330ca4bcd67f45a28c4819d5ed4c8d5812d0e
c9efecddc566c701b4b24b9d0997eb3cf929e5f5
/TestRec/TestRec/Common.h
6128c664b96dfdd938eace9a5d17858dbe74102d
[]
no_license
vlalo001/metaballs3d
f8ee9404f28cda009654f8edf2f322c72d5bfe8a
a24fddce4ec73fc7348287e2074268cc2920cc2f
refs/heads/master
2021-01-20T16:56:20.721059
2009-07-24T16:33:36
2009-07-24T16:33:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
152
h
#include <vector> #include <string> #include <assert.h> typedef float Vector3[3]; typedef float Matrix4x4[16]; typedef float ColorHSV[3];
[ "garry.wls@99a8374a-4571-11de-aeda-3f4d37dfb5fa" ]
[ [ [ 1, 10 ] ] ]
98fb0c9d5c69213ed8c81ebae539f1f0cacfc513
38926bfe477f933a307f51376dd3c356e7893ffc
/Source/SDKs/STLPORT/src/complex_io.cpp
5aa4a37ad065711a5eedb37b40b1170bac8f7708
[ "LicenseRef-scancode-stlport-4.5" ]
permissive
richmondx/dead6
b0e9dd94a0ebb297c0c6e9c4f24c6482ef4d5161
955f76f35d94ed5f991871407f3d3ad83f06a530
refs/heads/master
2021-12-05T14:32:01.782047
2008-01-01T13:13:39
2008-01-01T13:13:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,422
cpp
/* * Copyright (c) 1999 * Silicon Graphics Computer Systems, Inc. * * Copyright (c) 1999 * Boris Fomitchev * * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was * modified is included with the above copyright notice. * */ # include "stlport_prefix.h" #include <complex> #include <istream> _STLP_BEGIN_NAMESPACE # if ! (defined (_STLP_MSVC) && _STLP_MSVC < 1200) // Specializations for narrow characters; lets us avoid the nuisance of // widening. _STLP_OPERATOR_SPEC basic_ostream<char, char_traits<char> >& _STLP_CALL operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<float>& __z) { return __os << '(' << (double)__z.real() << ',' << (double)__z.imag() << ')'; } _STLP_OPERATOR_SPEC basic_ostream<char, char_traits<char> >& _STLP_CALL operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<double>& __z) { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; } #ifndef _STLP_NO_LONG_DOUBLE _STLP_OPERATOR_SPEC basic_ostream<char, char_traits<char> >& _STLP_CALL operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<long double>& __z) { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; } #endif // Specialization for narrow characters; lets us avoid widen. _STLP_OPERATOR_SPEC basic_istream<char, char_traits<char> >& _STLP_CALL operator>>(basic_istream<char, char_traits<char> >& __is, complex<float>& __z) { float __re = 0; float __im = 0; char __c; __is >> __c; if (__c == '(') { __is >> __re >> __c; if (__c == ',') __is >> __im >> __c; if (__c != ')') __is.setstate(ios_base::failbit); } else { __is.putback(__c); __is >> __re; } if (__is) __z = complex<float>(__re, __im); return __is; } _STLP_OPERATOR_SPEC basic_istream<char, char_traits<char> >& _STLP_CALL operator>>(basic_istream<char, char_traits<char> >& __is, complex<double>& __z) { double __re = 0; double __im = 0; char __c; __is >> __c; if (__c == '(') { __is >> __re >> __c; if (__c == ',') __is >> __im >> __c; if (__c != ')') __is.setstate(ios_base::failbit); } else { __is.putback(__c); __is >> __re; } if (__is) __z = complex<double>(__re, __im); return __is; } # ifndef _STLP_NO_LONG_DOUBLE _STLP_OPERATOR_SPEC basic_istream<char, char_traits<char> >& _STLP_CALL operator>>(basic_istream<char, char_traits<char> >& __is, complex<long double>& __z) { long double __re = 0; long double __im = 0; char __c; __is >> __c; if (__c == '(') { __is >> __re >> __c; if (__c == ',') __is >> __im >> __c; if (__c != ')') __is.setstate(ios_base::failbit); } else { __is.putback(__c); __is >> __re; } if (__is) __z = complex<long double>(__re, __im); return __is; } # endif # endif /* MSVC */ _STLP_END_NAMESPACE // Local Variables: // mode:C++ // End:
[ [ [ 1, 138 ] ] ]
5100c1909a647d3aef6b4139bfd441d993fadde6
fc3691e5b88f10ce159d61fd198f5742fb2f643c
/src/resources/types/ccargo.cpp
d85c4e406f2e74e766c2b19852306c62f4bbf86e
[]
no_license
hardyx/openpirates
6f438ed04ec1c64cb1d35e7da4e56aa919c91750
5833ee50474398bc7c364902343d3ff52f5306a6
refs/heads/master
2020-03-11T09:40:55.969627
2010-07-26T00:47:56
2010-07-26T00:47:56
129,919,203
2
0
null
null
null
null
UTF-8
C++
false
false
872
cpp
/*** * openPirates * Copyright (C) 2010 Scott Smith * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "ccargo.h" CCargo::CCargo() : mGold(), mFood(), mCannon(), mGoodTypeA(), mGoodTypeB() { } CCargo::~CCargo() { }
[ "pickle136@3faa6364-4847-409f-afa2-7fad3069fade" ]
[ [ [ 1, 32 ] ] ]
dbe9b69e1908c862e84e7fae9180e8be9230619c
b14d5833a79518a40d302e5eb40ed5da193cf1b2
/cpp/extern/xercesc++/2.6.0/src/xercesc/framework/XMLContentModel.hpp
9bc66e32bca5efe715bb707104c847fb02ef6b89
[ "Apache-2.0" ]
permissive
andyburke/bitflood
dcb3fb62dad7fa5e20cf9f1d58aaa94be30e82bf
fca6c0b635d07da4e6c7fbfa032921c827a981d6
refs/heads/master
2016-09-10T02:14:35.564530
2011-11-17T09:51:49
2011-11-17T09:51:49
2,794,411
1
0
null
null
null
null
UTF-8
C++
false
false
6,850
hpp
/* * Copyright 1999-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * $Log: XMLContentModel.hpp,v $ * Revision 1.6 2004/09/16 13:32:05 amassari * Updated error message for UPA to also state the complex type that is failing the test * * Revision 1.5 2004/09/08 13:55:58 peiyongz * Apache License Version 2.0 * * Revision 1.4 2003/05/15 18:26:07 knoaman * Partial implementation of the configurable memory manager. * * Revision 1.3 2003/03/07 18:08:10 tng * Return a reference instead of void for operator= * * Revision 1.2 2002/11/04 15:00:21 tng * C++ Namespace Support. * * Revision 1.1.1.1 2002/02/01 22:21:51 peiyongz * sane_include * * Revision 1.14 2001/11/21 14:30:13 knoaman * Fix for UPA checking. * * Revision 1.13 2001/08/21 16:06:10 tng * Schema: Unique Particle Attribution Constraint Checking. * * Revision 1.12 2001/08/13 15:06:38 knoaman * update <any> validation. * * Revision 1.11 2001/05/28 20:53:35 tng * Schema: move static data gInvalidTrans, gEOCFakeId, gEpsilonFakeId to XMLContentModel for others to access * * Revision 1.10 2001/05/11 13:25:31 tng * Copyright update. * * Revision 1.9 2001/05/03 21:02:23 tng * Schema: Add SubstitutionGroupComparator and update exception messages. By Pei Yong Zhang. * * Revision 1.8 2001/04/19 18:16:50 tng * Schema: SchemaValidator update, and use QName in Content Model * * Revision 1.7 2001/03/21 21:56:01 tng * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar. * * Revision 1.6 2001/02/27 14:48:30 tng * Schema: Add CMAny and ContentLeafNameTypeVector, by Pei Yong Zhang * * Revision 1.5 2000/03/02 19:54:24 roddey * This checkin includes many changes done while waiting for the * 1.1.0 code to be finished. I can't list them all here, but a list is * available elsewhere. * * Revision 1.4 2000/02/24 20:00:23 abagchi * Swat for removing Log from API docs * * Revision 1.3 2000/02/15 01:21:30 roddey * Some initial documentation improvements. More to come... * * Revision 1.2 2000/02/06 07:47:48 rahulj * Year 2K copyright swat. * * Revision 1.1.1.1 1999/11/09 01:08:30 twl * Initial checkin * * Revision 1.2 1999/11/08 20:44:37 rahul * Swat for adding in Product name and CVS comment log variable. * */ #if !defined(CONTENTMODEL_HPP) #define CONTENTMODEL_HPP #include <xercesc/util/XMemory.hpp> #include <xercesc/util/QName.hpp> XERCES_CPP_NAMESPACE_BEGIN class ContentLeafNameTypeVector; class GrammarResolver; class XMLStringPool; class XMLValidator; class SchemaGrammar; /** * This class defines the abstract interface for all content models. All * elements have a content model against which (if validating) its content * is checked. Each type of validator (DTD, Schema, etc...) can have * different types of content models, and even with each type of validator * there can be specialized content models. So this simple class provides * the abstract API via which all the types of contents models are dealt * with generically. Its pretty simple. */ class XMLPARSER_EXPORT XMLContentModel : public XMemory { public: // --------------------------------------------------------------------------- // Public static data // // gInvalidTrans // This value represents an invalid transition in each line of the // transition table. // // gEOCFakeId // gEpsilonFakeId // We have to put in a couple of special CMLeaf nodes to represent // special values, using fake element ids that we know won't conflict // with real element ids. // // // --------------------------------------------------------------------------- static const unsigned int gInvalidTrans; static const unsigned int gEOCFakeId; static const unsigned int gEpsilonFakeId; // ----------------------------------------------------------------------- // Constructors are hidden, only the virtual Destructor is exposed // ----------------------------------------------------------------------- /** @name Destructor */ //@{ virtual ~XMLContentModel() { } //@} // ----------------------------------------------------------------------- // The virtual content model interface provided by derived classes // ----------------------------------------------------------------------- virtual int validateContent ( QName** const children , const unsigned int childCount , const unsigned int emptyNamespaceId ) const = 0; virtual int validateContentSpecial ( QName** const children , const unsigned int childCount , const unsigned int emptyNamespaceId , GrammarResolver* const pGrammarResolver , XMLStringPool* const pStringPool ) const =0; virtual void checkUniqueParticleAttribution ( SchemaGrammar* const pGrammar , GrammarResolver* const pGrammarResolver , XMLStringPool* const pStringPool , XMLValidator* const pValidator , unsigned int* const pContentSpecOrgURI , const XMLCh* pComplexTypeName = 0 ) =0; virtual ContentLeafNameTypeVector* getContentLeafNameTypeVector() const = 0; virtual unsigned int getNextState(const unsigned int currentState, const unsigned int elementIndex) const = 0; protected : // ----------------------------------------------------------------------- // Hidden Constructors // ----------------------------------------------------------------------- XMLContentModel() { } private : // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- XMLContentModel(const XMLContentModel&); XMLContentModel& operator=(const XMLContentModel&); }; XERCES_CPP_NAMESPACE_END #endif
[ [ [ 1, 197 ] ] ]
3f77e7b1698599761f081974c8e5e2a9b7711fce
9773c3304eecc308671bcfa16b5390c81ef3b23a
/MDI AIPI V.6.92 2003 ( Correct Save Fired Rules, AM =-1, g_currentLine)/AIPI/ChartCtrl/ChartSurfaceSerie.cpp
bc2acb9394bd74ecf9a7da4aa71e3c0564a77939
[]
no_license
15831944/AiPI-1
2d09d6e6bd3fa104d0175cf562bb7826e1ac5ec4
9350aea6ac4c7870b43d0a9f992a1908a3c1c4a8
refs/heads/master
2021-12-02T20:34:03.136125
2011-10-27T00:07:54
2011-10-27T00:07:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,583
cpp
// ChartSurfaceSerie.cpp: implementation of the CChartSurfaceSerie class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "ChartSurfaceSerie.h" #include "ChartCtrl.h" #include <algorithm> #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CChartSurfaceSerie::CChartSurfaceSerie(CChartCtrl* pParent) : CChartSerie(pParent,stSurfaceSerie), m_FillStyle(fsHatchDownDiag), m_bHorizontal(true) { } CChartSurfaceSerie::~CChartSurfaceSerie() { } void CChartSurfaceSerie::Draw(CDC* pDC) { DrawAll(pDC); } void CChartSurfaceSerie::DrawAll(CDC* pDC) { size_t count = m_vPoints.size(); CPoint* pPoints = new CPoint[count+2]; CBrush NewBrush; if (m_FillStyle == fsSolid) NewBrush.CreateSolidBrush(m_ObjectColor); else { int nIndex = 0; switch (m_FillStyle) { case fsHatchDownDiag: nIndex = HS_FDIAGONAL; break; case fsHatchUpDiag: nIndex = HS_BDIAGONAL; break; case fsHatchCross: nIndex = HS_CROSS; break; case fsHatchDiagCross: nIndex = HS_DIAGCROSS; break; case fsHatchHorizontal: nIndex = HS_HORIZONTAL; break; case fsHatchVertical: nIndex = HS_VERTICAL; break; } NewBrush.CreateHatchBrush(nIndex,m_ObjectColor); } CBrush* pOldBrush = pDC->SelectObject(&NewBrush); for (size_t i=0; i<count; i++) { ValueToScreen(m_vPoints[i].X,m_vPoints[i].Y,pPoints[i+1]); } if (m_bHorizontal) { pPoints[0].x = pPoints[1].x; pPoints[count+1].x = pPoints[count].x; float Position = m_pHorizontalAxis->GetPosition()/100.00; int AxisPos = m_ObjectRect.top + (int)(Position * (m_ObjectRect.bottom-m_ObjectRect.top)); pPoints[0].y = AxisPos; pPoints[count+1].y = AxisPos; } else { pPoints[0].y = pPoints[1].y; pPoints[count+1].y = pPoints[count].y; float Position = m_pVerticalAxis->GetPosition()/100.00; int AxisPos = m_ObjectRect.left + (int)(Position * (m_ObjectRect.right-m_ObjectRect.left)); pPoints[0].x = AxisPos; pPoints[count+1].x = AxisPos; } pDC->SetBkMode(TRANSPARENT); //To have lines limited in the drawing rectangle : pDC->IntersectClipRect(m_ObjectRect); pDC->Polygon(pPoints,count+2); pDC->SelectClipRgn(NULL); pDC->SelectObject(pOldBrush); DeleteObject(NewBrush); delete[] pPoints; } int CChartSurfaceSerie::DrawLegend(CDC* pDC, CPoint UpperLeft, int BitmapWidth) const { if (m_strSerieName == _T("")) return 0; //Draw Text int TextHeigh = pDC->GetTextExtent(m_strSerieName.c_str()).cy; pDC->ExtTextOut(UpperLeft.x+BitmapWidth+6,UpperLeft.y+1,ETO_CLIPPED,NULL,m_strSerieName.c_str(),NULL); // Draw the bitmap CBrush NewBrush; if (m_FillStyle == fsSolid) NewBrush.CreateSolidBrush(m_ObjectColor); else { int nIndex = 0; switch (m_FillStyle) { case fsHatchDownDiag: nIndex = HS_FDIAGONAL; break; case fsHatchUpDiag: nIndex = HS_BDIAGONAL; break; case fsHatchCross: nIndex = HS_CROSS; break; case fsHatchDiagCross: nIndex = HS_DIAGCROSS; break; case fsHatchHorizontal: nIndex = HS_HORIZONTAL; break; case fsHatchVertical: nIndex = HS_VERTICAL; break; } NewBrush.CreateHatchBrush(nIndex,m_ObjectColor); } CBrush* pOldBrush = pDC->SelectObject(&NewBrush); pDC->Rectangle(UpperLeft.x+2,UpperLeft.y+2,UpperLeft.x+17,UpperLeft.y+17); pDC->SelectObject(pOldBrush); DeleteObject(NewBrush); return 15; } CSize CChartSurfaceSerie::GetLegendSize() const { CSize LegendSize; LegendSize.cx = 17; LegendSize.cy = 17; return LegendSize; } void CChartSurfaceSerie::AddPoint(double X, double Y) { CChartSerie::AddPoint(X,Y); ReorderPoints(); } void CChartSurfaceSerie::SetPoints(double *X, double *Y, int Count) { CChartSerie::SetPoints(X,Y,Count); ReorderPoints(); } void CChartSurfaceSerie::SetYPointValue(int PointIndex, double NewVal) { CChartSerie::SetYPointValue(PointIndex,NewVal); ReorderPoints(); } void CChartSurfaceSerie::SetXPointValue(int PointIndex, double NewVal) { CChartSerie::SetXPointValue(PointIndex,NewVal); ReorderPoints(); } void CChartSurfaceSerie::ReorderPoints() { SPointSort NewSort; NewSort.m_bHorizontal = m_bHorizontal; std::sort(m_vPoints.begin(),m_vPoints.end(),NewSort); }
[ [ [ 1, 202 ] ] ]
d0f7096bccb6573ee18e447f012166684dde9a5f
d71665b4e115bbf0abc680bb1c7eb31e69d86a1d
/SpacescapePlugin/include/SpacescapePrerequisites.h
7f9f6a3e8915cf2d2da1deb8ed5b5b808b389ac7
[ "MIT" ]
permissive
svenstaro/Spacescape
73c140d06fe4ae76ac1a613295f1e9f96cdda3bb
5a53ba43f8e4e78ca32ee5bb3d396ca7b0b71f7d
refs/heads/master
2021-01-02T09:08:59.624369
2010-04-05T04:28:57
2010-04-05T04:28:57
589,597
7
6
null
null
null
null
UTF-8
C++
false
false
1,979
h
/* This source file is part of Spacescape For the latest info, see http://alexcpeterson.com/spacescape "He determines the number of the stars and calls them each by name. " Psalm 147:4 The MIT License Copyright (c) 2010 Alex Peterson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __SPACESCAPEPREREQUISITES_H__ #define __SPACESCAPEPREREQUISITES_H__ #include "OgrePrerequisites.h" namespace Ogre { } #if (OGRE_PLATFORM == OGRE_PLATFORM_WIN32 ) && !defined(OGRE_STATIC_LIB) # ifdef OGRE_SPACESCAPEPLUGIN_EXPORTS # define _SpacescapePluginExport __declspec(dllexport) # else # if defined( __MINGW32__ ) # define _SpacescapePluginExport # else # define _SpacescapePluginExport __declspec(dllimport) # endif # endif #elif defined ( OGRE_GCC_VISIBILITY ) # define _SpacescapePluginExport __attribute__ ((visibility("default"))) #else # define _SpacescapePluginExport #endif #endif
[ [ [ 1, 56 ] ] ]
97b1de08198f993acc2d3ad381d5fb73d526010d
740ed7e8d98fc0af56ee8e0832e3bd28f08cf362
/src/game/megaman_demo/states/ShotgunShotLeft.h
368eb0471bccdbb5736e9b73a0e5351ae161523a
[]
no_license
fgervais/armconsoledemogame
420c53f926728b30fe1723733de2f32961a6a6d9
9158c0e684db16c4327b51aec45d1e4eed96b2d4
refs/heads/master
2021-01-10T11:27:43.912609
2010-07-29T18:53:06
2010-07-29T18:53:06
44,270,121
0
0
null
null
null
null
UTF-8
C++
false
false
646
h
/* * ShotgunShotLeft.h * * Created on: 2010-05-29 * Author: DUPA */ #ifndef SHOTGUNSHOTLEFT_H_ #define SHOTGUNSHOTLEFT_H_ #include "ShotgunState.h" class ShotgunShotLeft: public ShotgunState { public: static ShotgunState* getInstance(); // Base class function override virtual void initialize(ShotgunPellet*); virtual void update(ShotgunPellet*); private: ShotgunShotLeft(uint32_t animationWidth, uint32_t animationHeight, Bitmap** animationFrames, uint32_t numberOfFrame, Bitmap** animationMasks); virtual ~ShotgunShotLeft(); static ShotgunState* instance; }; #endif /* ShotgunSHOTLEFT_H_ */
[ [ [ 1, 28 ] ] ]
ae9606004d8d64aa13cae9c6090547853e7af1f5
1189af0cf195251bfe8c142befccf973583fd637
/project/jni/GenerateData.cpp
7d8bbe20ba7a8e62ea3071e8d5e88d5b18620a7c
[]
no_license
geesun/phoneloc
4b675bbdac4fdde09c04fb164e6944c80feb02e3
c56d5e4645a2bf01ddad37ffad4de77f4a23d729
refs/heads/master
2016-09-05T10:03:34.247547
2009-11-24T13:10:38
2009-11-24T13:10:38
371,331
7
2
null
null
null
null
UTF-8
C++
false
false
5,768
cpp
/************************************************************ 原作者信息: Author: rssn Email : [email protected] QQ : 126027268 Blog : http://blog.csdn.net/rssn_net/ Modify Histroy: 1) Geesun 2009/10/09 添加对区号的支持. 2)Geesun 2009/11/13 清除部分不用代码,分开生成数据程序, ************************************************************/ #include <stdio.h> #include <string.h> #include "Global.h" #define LINE_BUFFER_SIZE 256 char * ChangeFileExt(const char * fn, const char * fext) { int l=strlen(fn); int le=strlen(fext); int i; for( i=l-1; fn[i]!='.' && fn[i]!='\\' && fn[i]!='/' && fn[i]!=':' && i>=0; i--) ; char * fnext; //如果没扩展名 if(i<=0||fn[i]=='\\'||fn[i]=='/'||fn[i]==':') { fnext=new char[l+le+2]; strcpy(fnext,fn); fnext[l]='.'; l++; strcpy(fnext+l,fext); } else { l=i+1; fnext=new char[l+le+1]; strcpy(fnext,fn); strcpy(fnext+l,fext); } //申请新文件名的存储空间 return fnext; } //在字符串链表中搜索字符串,返回节点指针,若无则返回NULL inline StringNode * FindString(StringNode * st, const char * str) { for(StringNode * ps=st; ps!=NULL; ps=ps->next) { if(strcmp(ps->value,str)==0) return ps; } return NULL; } //文本数据 -> 二进制数据文件 void MpDataConvert(const char * fnin, const char * fnout) { FILE * fpin=fopen(fnin,"rb"); //输入文件 if(!fpin) { printf("打开文件失败!\n"); return; } printf("正在导入文件 [%s] 到 [%s] ... ",fnin,fnout); StringNode * stringTable; IndexNode * indexTable; StringNode * ps; IndexNode * p; int numLast; //上一行的号码 int numRead; //当前读取的号码 char * addrRead=new char[LINE_BUFFER_SIZE]; int tmp; unsigned short cityCode;// = new char [5]; int sfCount=0; //源文件记录计数 bool isFirst=true; while(!feof(fpin)) { fscanf(fpin,"%d,%[^,],%d",&numRead,addrRead,&tmp); sfCount++; cityCode = tmp; //首记录处理 if(isFirst) { ps=stringTable=new StringNode(addrRead,cityCode); ps->next=NULL; p=indexTable=new IndexNode(numRead,0,ps); p->next=NULL; isFirst=false; //保存本次读取的号码以便读下一行时用到 numLast=numRead; continue; } //如果地址未变 if(strcmp(p->Address->value,addrRead)==0) { //保存本次读取的号码以便读下一行时用到 numLast=numRead; continue; } //如果地址变了 else { //完成前一条记录 p->NumEnd=numLast; //开始新记录 StringNode * s=FindString(stringTable,addrRead); if(s==NULL) { ps=ps->next=new StringNode(addrRead,cityCode); s=ps; } p=p->next=new IndexNode(numRead,0,s); //保存本次读取的号码以便读下一行时用到 numLast=numRead; } } p->NumEnd=numLast; //关闭源文件 fclose(fpin); /***********************************************/ int j=0; for(p=indexTable;p!=NULL;p=p->next) { j++; } int k=0; for(ps=stringTable;ps!=NULL;ps=ps->next) { k++; } /***********************************************/ /***********************************************/ //导入数据文件 FILE * fpout=fopen(fnout,"wb"); int header[2]={0,0}; //文件头 fwrite(&header,sizeof(header),1,fpout); int pos=ftell(fpout); //写入字符串表 for(ps=stringTable;ps!=NULL;ps=ps->next) { pos=ftell(fpout); //记下字符串在文件中的偏移量 ps->offset=pos; fwrite(&ps->cityCode,sizeof(unsigned short),1,fpout); fwrite(ps->value,1,ps->length+1,fpout); } //写入索引记录表 pos=ftell(fpout); header[0]=pos; IndexStruct is; for(p=indexTable;p!=NULL;p=p->next) { pos=ftell(fpout); is.NumStart=p->NumStart; fwrite(&is.NumStart,sizeof(int)-1,1,fpout); is.NumEnd=p->NumEnd; fwrite(&is.NumEnd,sizeof(int)-1,1,fpout); is.Offset=p->Address->offset; fwrite(&is.Offset,sizeof(unsigned short),1,fpout); } pos=ftell(fpout); header[1]=pos-(sizeof(is)-2); //重写文件头 fseek(fpout,0,SEEK_SET); fwrite(&header,sizeof(header),1,fpout); //获取数据文件大小 fseek(fpout,0,SEEK_END); pos=ftell(fpout); //关闭文件 fclose(fpout); IndexNode *tIdx; //释放内存 for(p=indexTable;p!=NULL;) { tIdx = p; p = p->next; delete tIdx; } StringNode *tStr; for(ps=stringTable;ps!=NULL;) { tStr = ps; ps = ps->next; delete tStr; } printf("导入成功!\n"); printf("源文件记录数: %d\n",sfCount); printf("目标记录总数: %d\n",j); printf("字符串记录数: %d\n",k); printf("目标文件大小: %d字节\n",pos); /***********************************************/ } //显示帮助信息 inline void printHelp() { const char * en="Mps"; printf("手机数据生成程序.\n\n"); printf("导入数据库: %s -c <数据源文件名>\n",en); printf("\n示例:\n"); printf(" > %s -c MpData.txt 导入MpData.txt到MpData.dat\n",en); } //===================主程序入口=================== int main(int argc, char * argv[]) { if(argc>1) { char opcode='h'; char * val = NULL; //参数值 //获取操作码和参数值 for(int i=1;i<argc;i++) { if(argv[i][0]=='-') opcode=argv[i][1]; else val=argv[i]; } //操作选择 switch(opcode) { case 'c': //导入数据 MpDataConvert(val,ChangeFileExt(val,"dat")); break; case 'h': //帮助信息 printHelp(); break; default: //无操作 break; } } return 0; }
[ [ [ 1, 249 ] ] ]
3badb33b5585fd31be91716ff9b2736ee0d76308
d08c381305e3e675c3f8253ce88fafd5111b103c
/8_8_2008/curve_-project/doc/arm_curve_going/arm_curve_4/display.h
d785ae27757c9537f948e3959e4e03714cd2f900
[]
no_license
happypeter/tinylion
07ea77febf6dff84089eddd6e1e47cd2ae032eb2
2f802f291ff43c568f9ef5eb846719efca03cc80
refs/heads/master
2020-06-03T09:14:19.682005
2010-10-19T09:12:56
2010-10-19T09:12:56
914,128
1
0
null
null
null
null
UTF-8
C++
false
false
990
h
#ifndef DISPLAY_H #define DISPLAY_H #ifndef QT_H #include <qwidget.h> #endif // QT_H #include <qstringlist.h> //peter adds class QTimer; class Screen; class QStringList; class QString; class QLineEdit; class QPushButton; class DisplayWidget : public QWidget { Q_OBJECT public: DisplayWidget( QWidget *parent=0, const char *name=0 ); QSize sizeHint() const; double readCurveDate(); void readFile(); void run(); protected: private slots: void tick(); void start(); void stop(); private: Screen *screen1; Screen *screen2; Screen *screen3; QLineEdit *lineEdit; QPushButton *startButton, *stopButton; QTimer *timer; enum { Margin = 40}; QString str; QStringList strlist; QStringList ::Iterator it; int time; double yval; }; #endif // PLOT_H
[ [ [ 1, 48 ] ] ]
38836456099673acb3432b395aa92c49262321e3
5c7e6f9fce5ad61e3353d5cdc141c81e38ce791b
/pc/polinomio/vetor.cpp
d07d7e0f355fae6867478b014b7999651501b58b
[]
no_license
luizirber/maestrograd
cd343438953bcc9e3136da3282ac84324b48ea83
db6ed5ccea454c5c6d790b44b6dcdbc49a41e7e0
refs/heads/master
2021-01-19T21:25:35.334049
2008-09-22T23:47:01
2008-09-22T23:47:01
960,820
1
0
null
null
null
null
WINDOWS-1252
C++
false
false
1,810
cpp
#include "vetor.h" #include <iostream.h> #include <assert.h> int vetor<T>::cont_vetores =0; //inicia a variável vetor::vetor(int t) { tamanho = (t > 0 ? t : 10); arranjo = new int [tamanho]; assert(arranjo!=0); ++cont_vetores; for (int i=0; i<tamanho; i++) arranjo[i] =0 ; } vetor::vetor( const vetor& v):tamanho(v.tamanho) { arranjo = new int [tamanho]; assert(arranjo!=0); ++cont_vetores; for (int i=0; i<tamanho; i++) arranjo[i] =v.arranjo[i] ; } vetor::~vetor( ) { delete [ ] arranjo; --cont_vetores; } int vetor::pega_tamanho( ) const { return tamanho; } vetor& vetor::operator=(const vetor& v) { if (&v!=this) // teste para auto atribuição { if (tamanho!= v.tamanho) { delete[ ] arranjo; tamanho = v.tamanho; arranjo = new int [tamanho]; assert(arranjo!=0); } for (int i=0; i<tamanho; i++) arranjo[i] = v.arranjo[i]; } return *this; } bool vetor::operator==(const vetor& v) const { if (tamanho!=v.tamanho) return false; for (int i=0; i<tamanho; i++) if (arranjo[i]!=v.arranjo[i]) return false; return true; } bool vetor::operator!=(const vetor&v) const { return !(*this==v); } int& vetor::operator[ ](int i) { assert (i>=0 && i<tamanho); return arranjo[i]; } const int&vetor::operator[ ](int i)const { assert (i>=0 && i<tamanho); return arranjo[i]; } int vetor::pega_cont_vetores( ) { return cont_vetores; } ostream& operator<<(ostream& saida, const vetor& v) { for (int i=0; i<tamanho; i++) saida<<‘ ‘<<v.arranjo[i] ; saida<<endl; return saida; } istream& operator>>(istream& entrada,vetor& v) { for (int i=0; i<tamanho; i++) entrada>>v.arranjo[i] ; return entrada; }
[ [ [ 1, 86 ] ] ]
7c65d89019187077495167393240cdf22e9d2c22
30a1e1c0c95239e5fa248fbb1b4ed41c6fe825ff
/ssfar/src/registry.cpp
29d882265f1e37e482aecec07746070c289ed1aa
[]
no_license
inspirer/history
ed158ef5c04cdf95270821663820cf613b5c8de0
6df0145cd28477b23748b1b50e4264a67441daae
refs/heads/master
2021-01-01T17:22:46.101365
2011-06-12T00:58:37
2011-06-12T00:58:37
1,882,931
1
0
null
null
null
null
UTF-8
C++
false
false
2,769
cpp
// registry.cpp // (originaly from NetReg.cpp) #include "ss.h" char *FmtSSS="%s%s%s"; extern char PluginRootKey[MAX_PATH]; HKEY CreateRegKey( const char *Key ) { HKEY hKey; DWORD Disposition; char FullKeyName[512]; FSF.sprintf( FullKeyName, FmtSSS, PluginRootKey, *Key ? "\\":"", Key ); RegCreateKeyEx( HKEY_CURRENT_USER, FullKeyName, 0, NULL, 0, KEY_WRITE, NULL, &hKey, &Disposition ); return hKey; } HKEY OpenRegKey( const char *Key ) { HKEY hKey; char FullKeyName[512]; FSF.sprintf( FullKeyName, FmtSSS, PluginRootKey, *Key ? "\\":"", Key ); if( RegOpenKeyEx( HKEY_CURRENT_USER, FullKeyName, 0, KEY_QUERY_VALUE|KEY_SET_VALUE, &hKey ) != ERROR_SUCCESS ) return NULL; return hKey; } void SetRegKey( const char *Key, const char *ValueName, char *ValueData ) { HKEY hKey = CreateRegKey( Key ); RegSetValueEx( hKey, ValueName, 0, REG_SZ, (BYTE*)ValueData, strlen(ValueData) + 1 ); RegCloseKey( hKey ); } void KillRegVal( const char *Key, const char *ValueName ) { HKEY hKey = OpenRegKey( Key ); RegDeleteValue( hKey, ValueName ); RegCloseKey( hKey ); } void SetRegKey( const char *Key, const char *ValueName, DWORD ValueData ) { HKEY hKey = CreateRegKey( Key ); RegSetValueEx( hKey, ValueName, 0, REG_DWORD, (BYTE *)&ValueData, sizeof(ValueData) ); RegCloseKey( hKey ); } int GetRegKey( const char *Key,const char *ValueName,char *ValueData,char *Default,DWORD DataSize) { HKEY hKey = OpenRegKey( Key ); DWORD Type; int ExitCode = RegQueryValueEx( hKey, ValueName, 0, &Type, (BYTE*)ValueData, &DataSize ); RegCloseKey( hKey ); if( hKey == NULL || ExitCode != ERROR_SUCCESS ) { strcpy( ValueData, Default ); return FALSE; } return TRUE; } int GetRegKey( const char *Key, const char *ValueName, int &ValueData, DWORD Default ) { HKEY hKey = OpenRegKey( Key ); DWORD Type, Size = sizeof( ValueData ); int ExitCode = RegQueryValueEx( hKey, ValueName, 0, &Type, (BYTE *)&ValueData, &Size ); RegCloseKey(hKey); if( hKey == NULL || ExitCode != ERROR_SUCCESS ) { ValueData = Default; return FALSE; } return TRUE; } int EnumRegKey( const char *key, void (*save)( char *name, char *val, void *data ), void *data ) { HKEY hKey = OpenRegKey( key ); int res = ERROR_SUCCESS; char name[MAX_PATH], val[MAX_PATH]; if( !hKey ) hKey = CreateRegKey( key ); if( !hKey ) return 0; for( int index = 0; res == ERROR_SUCCESS; index++ ) { unsigned long sz1, sz2, type; sz1 = sz2 = MAX_PATH; res = RegEnumValue( hKey, index, name, &sz1, NULL, &type, (BYTE*)val, &sz2 ); if( res == ERROR_SUCCESS && type == REG_SZ ) { save(name, val, data); } } RegCloseKey(hKey); return 1; }
[ [ [ 1, 116 ] ] ]
5cb5c6cb2115921762d45783fe442358086be288
b22c254d7670522ec2caa61c998f8741b1da9388
/dependencies/OpenSceneGraph/include/osgUtil/LineSegmentIntersector
e43e4ed86ebe181f7d5562de1bc68aeaff18dd0e
[]
no_license
ldaehler/lbanet
341ddc4b62ef2df0a167caff46c2075fdfc85f5c
ecb54fc6fd691f1be3bae03681e355a225f92418
refs/heads/master
2021-01-23T13:17:19.963262
2011-03-22T21:49:52
2011-03-22T21:49:52
39,529,945
0
1
null
null
null
null
UTF-8
C++
false
false
4,993
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield * * This library is open source and may be redistributed and/or modified under * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or * (at your option) any later version. The full license is in LICENSE file * included with this distribution, and on the openscenegraph.org website. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * OpenSceneGraph Public License for more details. */ #ifndef OSGUTIL_LINESEGMENTINTERSECTOR #define OSGUTIL_LINESEGMENTINTERSECTOR 1 #include <osgUtil/IntersectionVisitor> namespace osgUtil { /** Concrete class for implementing line intersections with the scene graph. * To be used in conjunction with IntersectionVisitor. */ class OSGUTIL_EXPORT LineSegmentIntersector : public Intersector { public: /** Construct a LineSegmentIntersector the runs between the specified start and end points in MODEL coordinates. */ LineSegmentIntersector(const osg::Vec3d& start, const osg::Vec3d& end); /** Construct a LineSegmentIntersector the runs between the specified start and end points in the specified coordinate frame. */ LineSegmentIntersector(CoordinateFrame cf, const osg::Vec3d& start, const osg::Vec3d& end); /** Convenience constructor for supporting picking in WINDOW, or PROJECTION coordinates * In WINDOW coordinates creates a start value of (x,y,0) and end value of (x,y,1). * In PROJECTION coordinates (clip space cube) creates a start value of (x,y,-1) and end value of (x,y,1). * In VIEW and MODEL coordinates creates a start value of (x,y,0) and end value of (x,y,1).*/ LineSegmentIntersector(CoordinateFrame cf, double x, double y); struct Intersection { Intersection(): ratio(-1.0), primitiveIndex(0) {} bool operator < (const Intersection& rhs) const { return ratio < rhs.ratio; } typedef std::vector<unsigned int> IndexList; typedef std::vector<double> RatioList; double ratio; osg::NodePath nodePath; osg::ref_ptr<osg::Drawable> drawable; osg::ref_ptr<osg::RefMatrix> matrix; osg::Vec3d localIntersectionPoint; osg::Vec3 localIntersectionNormal; IndexList indexList; RatioList ratioList; unsigned int primitiveIndex; const osg::Vec3d& getLocalIntersectPoint() const { return localIntersectionPoint; } osg::Vec3d getWorldIntersectPoint() const { return matrix.valid() ? localIntersectionPoint * (*matrix) : localIntersectionPoint; } const osg::Vec3& getLocalIntersectNormal() const { return localIntersectionNormal; } osg::Vec3 getWorldIntersectNormal() const { return matrix.valid() ? osg::Matrix::transform3x3(osg::Matrix::inverse(*matrix),localIntersectionNormal) : localIntersectionNormal; } }; typedef std::multiset<Intersection> Intersections; inline void insertIntersection(const Intersection& intersection) { getIntersections().insert(intersection); } inline Intersections& getIntersections() { return _parent ? _parent->_intersections : _intersections; } inline Intersection getFirstIntersection() { Intersections& intersections = getIntersections(); return intersections.empty() ? Intersection() : *(intersections.begin()); } inline void setStart(const osg::Vec3d& start) { _start = start; } inline const osg::Vec3d& getStart() const { return _start; } inline void setEnd(const osg::Vec3d& end) { _end = end; } inline const osg::Vec3d& getEnd() const { return _end; } public: virtual Intersector* clone(osgUtil::IntersectionVisitor& iv); virtual bool enter(const osg::Node& node); virtual void leave(); virtual void intersect(osgUtil::IntersectionVisitor& iv, osg::Drawable* drawable); virtual void reset(); virtual bool containsIntersections() { return !_intersections.empty(); } protected: bool intersects(const osg::BoundingSphere& bs); bool intersectAndClip(osg::Vec3d& s, osg::Vec3d& e,const osg::BoundingBox& bb); LineSegmentIntersector* _parent; osg::Vec3d _start; osg::Vec3d _end; Intersections _intersections; }; } #endif
[ "vdelage@3806491c-8dad-11de-9a8c-6d5b7d1e4d13" ]
[ [ [ 1, 113 ] ] ]
efe619ff6b76c564bb85ed62fc8cf77d1b05de05
fac8de123987842827a68da1b580f1361926ab67
/inc/physics/Physics/Collide/Filter/Group/hkpGroupFilterSetup.h
3cb72419fa522d200840c53b4e15c92f5ed8bc09
[]
no_license
blockspacer/transporter-game
23496e1651b3c19f6727712a5652f8e49c45c076
083ae2ee48fcab2c7d8a68670a71be4d09954428
refs/heads/master
2021-05-31T04:06:07.101459
2009-02-19T20:59:59
2009-02-19T20:59:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,939
h
/* * * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's * prior written consent.This software contains code, techniques and know-how which is confidential and proprietary to Havok. * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2008 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement. * */ #ifndef HK_DYNAMICS2_GROUP_FILTER_SETUP_H #define HK_DYNAMICS2_GROUP_FILTER_SETUP_H #include <Physics/Collide/Filter/Group/hkpGroupFilter.h> /// A helper class to create a nice predefined set of collision groups (of course you can use your own enums). class hkpGroupFilterSetup { public: /// Basic groups for game objects. enum DefaultCollisionGroups { /// collides always with everything (no layer collision detection used). LAYER_NONE = 0, /// collides with everything but LAYER_KEYFRAME. LAYER_STATIC, /// collides with everything. LAYER_DYNAMIC, /// collides with everything. LAYER_PLAYER, /// collides with everything. LAYER_AI, /// collides with everything but LAYER_KEYFRAME, LAYER_STATIC (good for keyframe animation). LAYER_KEYFRAME, /// collides with everything. LAYER_DEBRIS, /// collides with everything but LAYER_FAST_DEBRIS. LAYER_FAST_DEBRIS }; /// initialize the group filter (see hkpGroupFilter for details). static void HK_CALL setupGroupFilter( hkpGroupFilter* filter ) { hkUint32 allBits = (1<<LAYER_STATIC) | (1<<LAYER_DYNAMIC) | (1<<LAYER_PLAYER) | (1<<LAYER_AI) | (1<<LAYER_KEYFRAME) |(1<<LAYER_DEBRIS) | (1<<LAYER_FAST_DEBRIS); filter->enableCollisionsUsingBitfield ( allBits, allBits ); filter->enableCollisionsUsingBitfield ( 1<<LAYER_NONE, 0xffffffff ); filter->enableCollisionsUsingBitfield ( 0xffffffff, 1<<LAYER_NONE ); filter->disableCollisionsBetween( LAYER_KEYFRAME, LAYER_KEYFRAME); filter->disableCollisionsBetween( LAYER_KEYFRAME, LAYER_STATIC ); filter->disableCollisionsBetween( LAYER_FAST_DEBRIS, LAYER_FAST_DEBRIS ); } }; #endif // HK_DYNAMICS2_GROUP_FILTER_SETUP_H /* * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20080529) * * Confidential Information of Havok. (C) Copyright 1999-2008 * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok * Logo, and the Havok buzzsaw logo are trademarks of Havok. Title, ownership * rights, and intellectual property rights in the Havok software remain in * Havok and/or its suppliers. * * Use of this software for evaluation purposes is subject to and indicates * acceptance of the End User licence Agreement for this product. A copy of * the license is included with this software and is also available at * www.havok.com/tryhavok * */
[ "uraymeiviar@bb790a93-564d-0410-8b31-212e73dc95e4" ]
[ [ [ 1, 76 ] ] ]
d1aa4ec18c04ee4f53e223b6bb04b26b9a873df1
1e01b697191a910a872e95ddfce27a91cebc57dd
/BNFAndOrJunction.h
d685247c3b95de2a8dd216ee31d9f4fb5afa52e8
[]
no_license
canercandan/codeworker
7c9871076af481e98be42bf487a9ec1256040d08
a68851958b1beef3d40114fd1ceb655f587c49ad
refs/heads/master
2020-05-31T22:53:56.492569
2011-01-29T19:12:59
2011-01-29T19:12:59
1,306,254
7
5
null
null
null
null
IBM852
C++
false
false
1,879
h
/* "CodeWorker": a scripting language for parsing and generating text. Copyright (C) 1996-1997, 1999-2003 CÚdric Lemaire This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA To contact the author: [email protected] */ #ifndef _BNFAndOrJunction_h_ #define _BNFAndOrJunction_h_ #include "GrfBlock.h" namespace CodeWorker { class DtaBNFScript; class BNFClause; class ExprScriptExpression; class ExprScriptVariable; class BNFAndOrJunction : public GrfBlock { private: DtaBNFScript* _pBNFScript; GrfCommand* _pLeftMember; bool _bContinue; public: BNFAndOrJunction(DtaBNFScript* pBNFScript, GrfBlock* pParent, bool bContinue); virtual ~BNFAndOrJunction(); virtual void accept(DtaVisitor& visitor, DtaVisitorEnvironment& env); inline GrfCommand* getLeftMember() const { return _pLeftMember; } inline void setLeftMember(GrfCommand* pLeftMember) { _pLeftMember = pLeftMember; } virtual bool isABNFCommand() const; virtual std::string toString() const; void compileCpp(CppCompilerEnvironment& theCompilerEnvironment) const; protected: virtual SEQUENCE_INTERRUPTION_LIST executeInternal(DtaScriptVariable& visibility); }; } #endif
[ "cedric.p.r.lemaire@28b3f5f3-d42e-7560-b87f-5f53cf622bc4" ]
[ [ [ 1, 60 ] ] ]
e20027857558ce5cb24eea58fbe8f00637ba266f
91b964984762870246a2a71cb32187eb9e85d74e
/SRC/OFFI SRC!/boost_1_34_1/boost_1_34_1/libs/mpl/test/find.cpp
6fdac42f20f574f4d41fec323930198e9fca25b4
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
willrebuild/flyffsf
e5911fb412221e00a20a6867fd00c55afca593c7
d38cc11790480d617b38bb5fc50729d676aef80d
refs/heads/master
2021-01-19T20:27:35.200154
2011-02-10T12:34:43
2011-02-10T12:34:43
32,710,780
3
0
null
null
null
null
UTF-8
C++
false
false
1,291
cpp
// Copyright Aleksey Gurtovoy 2000-2004 // // Distributed under the Boost Software License,Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/mpl for documentation. // $Source: /cvsroot/boost/boost/libs/mpl/test/find.cpp,v $ // $Date: 2004/10/01 16:32:41 $ // $Revision: 1.6 $ #include <boost/mpl/find.hpp> #include <boost/mpl/list.hpp> #include <boost/mpl/list_c.hpp> #include <boost/mpl/distance.hpp> #include <boost/mpl/begin_end.hpp> #include <boost/mpl/int.hpp> #include <boost/mpl/aux_/test.hpp> MPL_TEST_CASE() { typedef list<int,char,long,short,char,long,double,long>::type types; typedef list_c<int,1,0,5,1,7,5,0,5> values; typedef find<types, short>::type types_iter; typedef find< values, integral_c<int,7> >::type values_iter; MPL_ASSERT(( is_same< deref<types_iter>::type, short> )); MPL_ASSERT_RELATION( deref<values_iter>::type::value, ==, 7 ); typedef begin<types>::type types_first; typedef begin<values>::type values_first; MPL_ASSERT_RELATION( (mpl::distance< types_first,types_iter >::value), ==, 3 ); MPL_ASSERT_RELATION( (mpl::distance< values_first,values_iter >::value), ==, 4 ); }
[ "[email protected]@e2c90bd7-ee55-cca0-76d2-bbf4e3699278" ]
[ [ [ 1, 37 ] ] ]
c5f89e406a11bf3fc0fa8d67c322e4fcd814467b
9b402d093b852a574dccb869fbe4bada1ef069c6
/libs/bullet/inc/LinearMath/btQuaternion.h
33ea6c30fd82bc79f5e8a0e061ec6ed7af88527a
[]
no_license
wangscript007/foundation-engine
adb24d4ccc932d7a8f8238170029de6d2db0cbfb
2982b06d8f6b69c0654e0c90671aaef9cfc6cc40
refs/heads/master
2021-05-27T17:26:15.178095
2010-06-30T22:06:45
2010-06-30T22:06:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,562
h
/* Copyright (c) 2003-2006 Gino van den Bergen / Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #ifndef SIMD__QUATERNION_H_ #define SIMD__QUATERNION_H_ #include "btVector3.h" #include "btQuadWord.h" /**@brief The btQuaternion implements quaternion to perform linear algebra rotations in combination with btMatrix3x3, btVector3 and btTransform. */ class btQuaternion : public btQuadWord { public: /**@brief No initialization constructor */ btQuaternion() {} // template <typename btScalar> // explicit Quaternion(const btScalar *v) : Tuple4<btScalar>(v) {} /**@brief Constructor from scalars */ btQuaternion(const btScalar& x, const btScalar& y, const btScalar& z, const btScalar& w) : btQuadWord(x, y, z, w) {} /**@brief Axis angle Constructor * @param axis The axis which the rotation is around * @param angle The magnitude of the rotation around the angle (Radians) */ btQuaternion(const btVector3& axis, const btScalar& angle) { setRotation(axis, angle); } /**@brief Constructor from Euler angles * @param yaw Angle around Y unless BT_EULER_DEFAULT_ZYX defined then Z * @param pitch Angle around X unless BT_EULER_DEFAULT_ZYX defined then Y * @param roll Angle around Z unless BT_EULER_DEFAULT_ZYX defined then X */ btQuaternion(const btScalar& yaw, const btScalar& pitch, const btScalar& roll) { #ifndef BT_EULER_DEFAULT_ZYX setEuler(yaw, pitch, roll); #else setEulerZYX(yaw, pitch, roll); #endif } /**@brief Set the rotation using axis angle notation * @param axis The axis around which to rotate * @param angle The magnitude of the rotation in Radians */ void setRotation(const btVector3& axis, const btScalar& angle) { btScalar d = axis.length(); assert(d != btScalar(0.0)); btScalar s = btSin(angle * btScalar(0.5)) / d; setValue(axis.x() * s, axis.y() * s, axis.z() * s, btCos(angle * btScalar(0.5))); } /**@brief Set the quaternion using Euler angles * @param yaw Angle around Y * @param pitch Angle around X * @param roll Angle around Z */ void setEuler(const btScalar& yaw, const btScalar& pitch, const btScalar& roll) { btScalar halfYaw = btScalar(yaw) * btScalar(0.5); btScalar halfPitch = btScalar(pitch) * btScalar(0.5); btScalar halfRoll = btScalar(roll) * btScalar(0.5); btScalar cosYaw = btCos(halfYaw); btScalar sinYaw = btSin(halfYaw); btScalar cosPitch = btCos(halfPitch); btScalar sinPitch = btSin(halfPitch); btScalar cosRoll = btCos(halfRoll); btScalar sinRoll = btSin(halfRoll); setValue(cosRoll * sinPitch * cosYaw + sinRoll * cosPitch * sinYaw, cosRoll * cosPitch * sinYaw - sinRoll * sinPitch * cosYaw, sinRoll * cosPitch * cosYaw - cosRoll * sinPitch * sinYaw, cosRoll * cosPitch * cosYaw + sinRoll * sinPitch * sinYaw); } /**@brief Set the quaternion using euler angles * @param yaw Angle around Z * @param pitch Angle around Y * @param roll Angle around X */ void setEulerZYX(const btScalar& yaw, const btScalar& pitch, const btScalar& roll) { btScalar halfYaw = btScalar(yaw) * btScalar(0.5); btScalar halfPitch = btScalar(pitch) * btScalar(0.5); btScalar halfRoll = btScalar(roll) * btScalar(0.5); btScalar cosYaw = btCos(halfYaw); btScalar sinYaw = btSin(halfYaw); btScalar cosPitch = btCos(halfPitch); btScalar sinPitch = btSin(halfPitch); btScalar cosRoll = btCos(halfRoll); btScalar sinRoll = btSin(halfRoll); setValue(sinRoll * cosPitch * cosYaw - cosRoll * sinPitch * sinYaw, //x cosRoll * sinPitch * cosYaw + sinRoll * cosPitch * sinYaw, //y cosRoll * cosPitch * sinYaw - sinRoll * sinPitch * cosYaw, //z cosRoll * cosPitch * cosYaw + sinRoll * sinPitch * sinYaw); //formerly yzx } /**@brief Add two quaternions * @param q The quaternion to add to this one */ SIMD_FORCE_INLINE btQuaternion& operator+=(const btQuaternion& q) { m_floats[0] += q.x(); m_floats[1] += q.y(); m_floats[2] += q.z(); m_floats[3] += q.m_floats[3]; return *this; } /**@brief Subtract out a quaternion * @param q The quaternion to subtract from this one */ btQuaternion& operator-=(const btQuaternion& q) { m_floats[0] -= q.x(); m_floats[1] -= q.y(); m_floats[2] -= q.z(); m_floats[3] -= q.m_floats[3]; return *this; } /**@brief Scale this quaternion * @param s The scalar to scale by */ btQuaternion& operator*=(const btScalar& s) { m_floats[0] *= s; m_floats[1] *= s; m_floats[2] *= s; m_floats[3] *= s; return *this; } /**@brief Multiply this quaternion by q on the right * @param q The other quaternion * Equivilant to this = this * q */ btQuaternion& operator*=(const btQuaternion& q) { setValue(m_floats[3] * q.x() + m_floats[0] * q.m_floats[3] + m_floats[1] * q.z() - m_floats[2] * q.y(), m_floats[3] * q.y() + m_floats[1] * q.m_floats[3] + m_floats[2] * q.x() - m_floats[0] * q.z(), m_floats[3] * q.z() + m_floats[2] * q.m_floats[3] + m_floats[0] * q.y() - m_floats[1] * q.x(), m_floats[3] * q.m_floats[3] - m_floats[0] * q.x() - m_floats[1] * q.y() - m_floats[2] * q.z()); return *this; } /**@brief Return the dot product between this quaternion and another * @param q The other quaternion */ btScalar dot(const btQuaternion& q) const { return m_floats[0] * q.x() + m_floats[1] * q.y() + m_floats[2] * q.z() + m_floats[3] * q.m_floats[3]; } /**@brief Return the length squared of the quaternion */ btScalar length2() const { return dot(*this); } /**@brief Return the length of the quaternion */ btScalar length() const { return btSqrt(length2()); } /**@brief Normalize the quaternion * Such that x^2 + y^2 + z^2 +w^2 = 1 */ btQuaternion& normalize() { return *this /= length(); } /**@brief Return a scaled version of this quaternion * @param s The scale factor */ SIMD_FORCE_INLINE btQuaternion operator*(const btScalar& s) const { return btQuaternion(x() * s, y() * s, z() * s, m_floats[3] * s); } /**@brief Return an inversely scaled versionof this quaternion * @param s The inverse scale factor */ btQuaternion operator/(const btScalar& s) const { assert(s != btScalar(0.0)); return *this * (btScalar(1.0) / s); } /**@brief Inversely scale this quaternion * @param s The scale factor */ btQuaternion& operator/=(const btScalar& s) { assert(s != btScalar(0.0)); return *this *= btScalar(1.0) / s; } /**@brief Return a normalized version of this quaternion */ btQuaternion normalized() const { return *this / length(); } /**@brief Return the angle between this quaternion and the other * @param q The other quaternion */ btScalar angle(const btQuaternion& q) const { btScalar s = btSqrt(length2() * q.length2()); assert(s != btScalar(0.0)); return btAcos(dot(q) / s); } /**@brief Return the angle of rotation represented by this quaternion */ btScalar getAngle() const { btScalar s = btScalar(2.) * btAcos(m_floats[3]); return s; } /**@brief Return the inverse of this quaternion */ btQuaternion inverse() const { return btQuaternion(-m_floats[0], -m_floats[1], -m_floats[2], m_floats[3]); } /**@brief Return the sum of this quaternion and the other * @param q2 The other quaternion */ SIMD_FORCE_INLINE btQuaternion operator+(const btQuaternion& q2) const { const btQuaternion& q1 = *this; return btQuaternion(q1.x() + q2.x(), q1.y() + q2.y(), q1.z() + q2.z(), q1.m_floats[3] + q2.m_floats[3]); } /**@brief Return the difference between this quaternion and the other * @param q2 The other quaternion */ SIMD_FORCE_INLINE btQuaternion operator-(const btQuaternion& q2) const { const btQuaternion& q1 = *this; return btQuaternion(q1.x() - q2.x(), q1.y() - q2.y(), q1.z() - q2.z(), q1.m_floats[3] - q2.m_floats[3]); } /**@brief Return the negative of this quaternion * This simply negates each element */ SIMD_FORCE_INLINE btQuaternion operator-() const { const btQuaternion& q2 = *this; return btQuaternion( - q2.x(), - q2.y(), - q2.z(), - q2.m_floats[3]); } /**@todo document this and it's use */ SIMD_FORCE_INLINE btQuaternion farthest( const btQuaternion& qd) const { btQuaternion diff,sum; diff = *this - qd; sum = *this + qd; if( diff.dot(diff) > sum.dot(sum) ) return qd; return (-qd); } /**@brief Return the quaternion which is the result of Spherical Linear Interpolation between this and the other quaternion * @param q The other quaternion to interpolate with * @param t The ratio between this and q to interpolate. If t = 0 the result is this, if t=1 the result is q. * Slerp interpolates assuming constant velocity. */ btQuaternion slerp(const btQuaternion& q, const btScalar& t) const { btScalar theta = angle(q); if (theta != btScalar(0.0)) { btScalar d = btScalar(1.0) / btSin(theta); btScalar s0 = btSin((btScalar(1.0) - t) * theta); btScalar s1 = btSin(t * theta); return btQuaternion((m_floats[0] * s0 + q.x() * s1) * d, (m_floats[1] * s0 + q.y() * s1) * d, (m_floats[2] * s0 + q.z() * s1) * d, (m_floats[3] * s0 + q.m_floats[3] * s1) * d); } else { return *this; } } SIMD_FORCE_INLINE const btScalar& getW() const { return m_floats[3]; } }; /**@brief Return the negative of a quaternion */ SIMD_FORCE_INLINE btQuaternion operator-(const btQuaternion& q) { return btQuaternion(-q.x(), -q.y(), -q.z(), -q.w()); } /**@brief Return the product of two quaternions */ SIMD_FORCE_INLINE btQuaternion operator*(const btQuaternion& q1, const btQuaternion& q2) { return btQuaternion(q1.w() * q2.x() + q1.x() * q2.w() + q1.y() * q2.z() - q1.z() * q2.y(), q1.w() * q2.y() + q1.y() * q2.w() + q1.z() * q2.x() - q1.x() * q2.z(), q1.w() * q2.z() + q1.z() * q2.w() + q1.x() * q2.y() - q1.y() * q2.x(), q1.w() * q2.w() - q1.x() * q2.x() - q1.y() * q2.y() - q1.z() * q2.z()); } SIMD_FORCE_INLINE btQuaternion operator*(const btQuaternion& q, const btVector3& w) { return btQuaternion( q.w() * w.x() + q.y() * w.z() - q.z() * w.y(), q.w() * w.y() + q.z() * w.x() - q.x() * w.z(), q.w() * w.z() + q.x() * w.y() - q.y() * w.x(), -q.x() * w.x() - q.y() * w.y() - q.z() * w.z()); } SIMD_FORCE_INLINE btQuaternion operator*(const btVector3& w, const btQuaternion& q) { return btQuaternion( w.x() * q.w() + w.y() * q.z() - w.z() * q.y(), w.y() * q.w() + w.z() * q.x() - w.x() * q.z(), w.z() * q.w() + w.x() * q.y() - w.y() * q.x(), -w.x() * q.x() - w.y() * q.y() - w.z() * q.z()); } /**@brief Calculate the dot product between two quaternions */ SIMD_FORCE_INLINE btScalar dot(const btQuaternion& q1, const btQuaternion& q2) { return q1.dot(q2); } /**@brief Return the length of a quaternion */ SIMD_FORCE_INLINE btScalar length(const btQuaternion& q) { return q.length(); } /**@brief Return the angle between two quaternions*/ SIMD_FORCE_INLINE btScalar angle(const btQuaternion& q1, const btQuaternion& q2) { return q1.angle(q2); } /**@brief Return the inverse of a quaternion*/ SIMD_FORCE_INLINE btQuaternion inverse(const btQuaternion& q) { return q.inverse(); } /**@brief Return the result of spherical linear interpolation betwen two quaternions * @param q1 The first quaternion * @param q2 The second quaternion * @param t The ration between q1 and q2. t = 0 return q1, t=1 returns q2 * Slerp assumes constant velocity between positions. */ SIMD_FORCE_INLINE btQuaternion slerp(const btQuaternion& q1, const btQuaternion& q2, const btScalar& t) { return q1.slerp(q2, t); } SIMD_FORCE_INLINE btVector3 quatRotate(const btQuaternion& rotation, const btVector3& v) { btQuaternion q = rotation * v; q *= rotation.inverse(); return btVector3(q.getX(),q.getY(),q.getZ()); } SIMD_FORCE_INLINE btQuaternion shortestArcQuat(const btVector3& v0, const btVector3& v1) // Game Programming Gems 2.10. make sure v0,v1 are normalized { btVector3 c = v0.cross(v1); btScalar d = v0.dot(v1); if (d < -1.0 + SIMD_EPSILON) return btQuaternion(0.0f,1.0f,0.0f,0.0f); // just pick any vector btScalar s = btSqrt((1.0f + d) * 2.0f); btScalar rs = 1.0f / s; return btQuaternion(c.getX()*rs,c.getY()*rs,c.getZ()*rs,s * 0.5f); } SIMD_FORCE_INLINE btQuaternion shortestArcQuatNormalize2(btVector3& v0,btVector3& v1) { v0.normalize(); v1.normalize(); return shortestArcQuat(v0,v1); } #endif
[ "drivehappy@a5d1a9aa-f497-11dd-9d1a-b59b2e1864b6" ]
[ [ [ 1, 395 ] ] ]
a3575a81e56491b99cc9d7cf1425d64f92988f06
ed9ecdcba4932c1adacac9218c83e19f71695658
/CJEngine_2010/CJEngine/CJEngine/SampleApp.cpp
b3b511a355bdd72c6c6a1a86eafca9689500579e
[]
no_license
karansapra/futurattack
59cc71d2cc6564a066a8e2f18e2edfc140f7c4ab
81e46a33ec58b258161f0dd71757a499263aaa62
refs/heads/master
2021-01-10T08:47:01.902600
2010-09-20T20:25:04
2010-09-20T20:25:04
45,804,375
0
0
null
null
null
null
UTF-8
C++
false
false
6,231
cpp
#include <math.h> #include "./CJEngine.h" class App : public IEventListener { CJEngine * engine; SceneGraphManager * sgm; ResourceManager * rsm; SpriteNode * NWall; SpriteNode * SWall; SpriteNode * Ball; SpriteNode * LBox; SpriteNode * RBox; TextNode * Score; TextNode * Time; EffectNode * Effect; //Contains all sprites Texture * sprites_texture; Texture * horz_texture; FX * blur; Vector2<float> ball_speed; float box_size; int human_score; int cpu_score; enum STATE {PAUSE, GAME, ENTERPAUSE, FINISHED}; STATE State; float dt; public: void BallPhysics() { Ball->Rotation += 25; Ball->Translation += ball_speed *dt; if (Ball->Translation.Y>250) { Ball->Translation.Y = 250; ball_speed.Y = -ball_speed.Y; } else if(Ball->Translation.Y<-250) { Ball->Translation.Y = -250; ball_speed.Y = -ball_speed.Y; } if (Ball->Translation.X>330) { if ((Ball->Translation-RBox->Translation).Abs2()<(box_size+20)*(box_size+20)/4) { //IA touches the ball Ball->Translation.X=330; ball_speed.X = -ball_speed.X; cpu_score++; } else { //IA misses the ball Ball->Translation = Vector2<float>(0,150.0f*engine->GetRandomNumber()); ball_speed = ball_speed*-1; human_score+=5; //Winner->Visible = true; State = ENTERPAUSE; } } else if (Ball->Translation.X<-330) { if ((Ball->Translation-LBox->Translation).Abs2()<(box_size+20)*(box_size+20)/4) { //Human touches the ball Ball->Translation.X=-330; ball_speed.X = -ball_speed.X; human_score++; } else { //Human misses the ball Ball->Translation = Vector2<float>(0,150.0f*engine->GetRandomNumber()); ball_speed = ball_speed*-1; cpu_score+=5; //Looser->Visible = true; State = ENTERPAUSE; } } } void IA() { static unsigned int i = (unsigned int)((engine->GetRandomNumber()+2.2)*2); i--; if (i!=0) return; i = (unsigned int)((engine->GetRandomNumber()+2.2)*1.3); if ((Ball->Translation-RBox->Translation).Abs2()>150000 || (Ball->Translation-RBox->Translation).Abs2()<2000) return; float dy = RBox->Translation.Y - (Ball->Translation-ball_speed*dt).Y; if (dy>0) { if (RBox->Translation.Y>-(250-(box_size)/2)) { RBox->Translation.Y-=650*dt; } } else { if (RBox->Translation.Y<(250-(box_size)/2)) { RBox->Translation.Y+=650*dt; } } } void Animation() { double t = engine->GetElapsedTime(); } void GameplayFSM() { static double t0 = engine->GetElapsedTime(); static float t = (float)engine->GetElapsedTime(); float nt = (float)engine->GetElapsedTime(); dt = nt-t; t = nt; Animation(); switch (State) { case PAUSE: if (t0+1<engine->GetElapsedTime()) State = GAME; break; case GAME: BallPhysics(); IA(); break; case ENTERPAUSE: t0 = engine->GetElapsedTime(); if (box_size<40) State = FINISHED; else State = PAUSE; break; case FINISHED: break; default: break; } } App() { box_size = 100; State = PAUSE; engine = CJEngine::Instance(); engine->Init(); engine->RegisterEventListener(*this); sgm = engine->GetSceneGraphManager(); rsm = engine->GetResourceManager(); /* Textures */ sprites_texture = rsm->AddTexture("./sprites.png"); horz_texture = rsm->AddTexture("./horz.png"); /* FX Shaders */ blur = rsm->AddEffect("blur.vert","blur.frag"); Effect = sgm->AddEffectNode(); Effect->SetEffect(*blur); NWall = sgm->AddSpriteNode(); NWall->TexCoord_TopLeft = Vector2<float>(0.0f,0.97f); NWall->TexCoord_BottomRight = Vector2<float>(1.0f,1.0f); SWall = sgm->AddSpriteNode(); SWall->TexCoord_TopLeft = Vector2<float>(0.0f,0.97f); SWall->TexCoord_BottomRight = Vector2<float>(1.0f,1.0f); //Ball = sgm->AddSpriteNode((SceneNode&)*Effect); Ball = sgm->AddSpriteNode(); Ball->TexCoord_TopLeft = Vector2<float>(0.0f,0.75f); Ball->TexCoord_BottomRight = Vector2<float>(0.25f,1.0f); LBox = sgm->AddSpriteNode(); LBox->TexCoord_TopLeft = Vector2<float>(0.25f,0.0f); LBox->TexCoord_BottomRight = Vector2<float>(0.5f,1.0f); RBox = sgm->AddSpriteNode(); RBox->TexCoord_BottomRight = Vector2<float>(0.25f,0.0f); RBox->TexCoord_TopLeft = Vector2<float>(0.5f,1.0f); Score = sgm->AddTextNode(); Time = sgm->AddTextNode(); NWall->Translation.Y = 270; NWall->Size.X = 700; SWall->Translation.Y = -270; SWall->Size.X = 700; LBox->Translation.X = -350; LBox->Size.Y = box_size; RBox->Translation.X = 350; RBox->Size.Y = box_size; Time->Translation.X = -350; Time->Translation.Y = 285; Score->Translation.X = -200; Score->Translation.Y = 285; /* Textures */ NWall->AddTexture(*horz_texture); SWall->AddTexture(*horz_texture); Ball->AddTexture(*sprites_texture); LBox->AddTexture(*sprites_texture); RBox->AddTexture(*sprites_texture); human_score = 0; cpu_score = 0; char buf[64]; ball_speed = Vector2<float>(300,350); while (engine->Run()) { GameplayFSM(); engine->BeginRender(); sprintf_s(buf,64,"FPS:%.2lf",engine->GetFPS()); Time->SetText(buf); if (State!=FINISHED) sprintf_s(buf,64,"Human:%d AI:%d",human_score,cpu_score); else sprintf_s(buf,64,"Human:%d AI:%d --PAUSE--",human_score,cpu_score); Score->SetText(buf); sgm->RenderAllGraph(); engine->EndRender(); } } ~App() { delete engine; } void OnEvent(const Event & evt) { if ((evt.keystate[VK_UP]&0x80)!=0) { if (LBox->Translation.Y<(250-(box_size)/2)) LBox->Translation.Y+=500*dt; } if ((evt.keystate[VK_DOWN]&0x80)!=0) { if (LBox->Translation.Y>-(250-(box_size)/2)) LBox->Translation.Y-=500*dt; } if ((evt.keystate[VK_SPACE]&0x80)!=0) { if ((evt.keystate[VK_SPACE]&0x01)==1) State = FINISHED; else State = GAME; } } }; int main() { App p; return 0; }
[ "clems71@52ecbd26-af3e-11de-a2ab-0da4ed5138bb" ]
[ [ [ 1, 301 ] ] ]
0d260af602980564dc831da6939cdf7308e373c9
d8e1a65a5863ea5a111c8304a040f1c797f8ebbf
/ mtktest --username qq413187589/N65/N65_V1/plutommi/Customer/ResGenerator/MainFrm.h
7f8fe7b2af1894b650e468210d1557ed8e3d47b0
[]
no_license
manoj-gupta5/mtktest
a6b627cde8c9a543d473a99f778fd6f587a8d053
98370766a36fffb8b0dde1cc6dd144599ea184f6
refs/heads/master
2020-12-25T21:12:59.596045
2010-07-18T05:06:14
2010-07-18T05:06:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,762
h
/***************************************************************************** * Copyright Statement: * -------------------- * This software is protected by Copyright and the information contained * herein is confidential. The software may not be copied and the information * contained herein may not be used or disclosed except with the written * permission of MediaTek Inc. (C) 2005 * * BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE") * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO * NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S * SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM. * * BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE * LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE, * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE, * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE. * * THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE * WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF * LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND * RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER * THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC). * *****************************************************************************/ // MainFrm.h : interface of the CMainFrame class // ///////////////////////////////////////////////////////////////////////////// #if !defined(AFX_MAINFRM_H__EAA30A45_D8EF_4F09_A9F8_7189090A02FE__INCLUDED_) #define AFX_MAINFRM_H__EAA30A45_D8EF_4F09_A9F8_7189090A02FE__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CMainFrame : public CFrameWnd { protected: // create from serialization only CMainFrame(); DECLARE_DYNCREATE(CMainFrame) // Attributes public: // Operations public: // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CMainFrame) virtual BOOL PreCreateWindow(CREATESTRUCT& cs); // virtual BOOL PreTranslateMessage(MSG* pMsg); //}}AFX_VIRTUAL // Implementation public: virtual ~CMainFrame(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif void DisplayView(); protected: // control bar embedded members CStatusBar m_wndStatusBar; CToolBar m_wndToolBar; // Generated message map functions protected: //{{AFX_MSG(CMainFrame) afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); afx_msg void OnTimer(UINT nIDEvent); afx_msg void HandleStrFile(WPARAM wParam, LPARAM lParam); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_MAINFRM_H__EAA30A45_D8EF_4F09_A9F8_7189090A02FE__INCLUDED_)
[ "qq413187589@046de88f-2cd9-6c0a-3028-073e08bc931c" ]
[ [ [ 1, 98 ] ] ]
284f27390fa62ca6dca9a7cf86cd776bb729e6af
c5534a6df16a89e0ae8f53bcd49a6417e8d44409
/trunk/Dependencies/Xerces/include/xercesc/util/Transcoders/Iconv390/Iconv390TransService.hpp
58f026be9edc793f185db4c23c80d53a08f68104
[]
no_license
svn2github/ngene
b2cddacf7ec035aa681d5b8989feab3383dac012
61850134a354816161859fe86c2907c8e73dc113
refs/heads/master
2023-09-03T12:34:18.944872
2011-07-27T19:26:04
2011-07-27T19:26:04
78,163,390
2
0
null
null
null
null
UTF-8
C++
false
false
5,529
hpp
/* * Copyright 1999-2000,2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * $Id: Iconv390TransService.hpp 191054 2005-06-17 02:56:35Z jberry $ */ #ifndef ICONV390TRANSSERVICE_HPP #define ICONV390TRANSSERVICE_HPP #include <xercesc/util/TransService.hpp> #include <xercesc/util/Mutexes.hpp> #include <iconv.h> XERCES_CPP_NAMESPACE_BEGIN /* Max encoding name in characters. */ #define UCNV_MAX_CONVERTER_NAME_LENGTH 60 typedef struct iconvconverter { struct iconvconverter *nextconverter; char name [UCNV_MAX_CONVERTER_NAME_LENGTH]; XMLMutex fMutex; iconv_t fIconv390Descriptor; int usecount; } iconvconverter_t; class XMLUTIL_EXPORT Iconv390TransService : public XMLTransService { public : // ----------------------------------------------------------------------- // Constructors and Destructor // ----------------------------------------------------------------------- Iconv390TransService(); ~Iconv390TransService(); // ----------------------------------------------------------------------- // Implementation of the virtual transcoding service API // ----------------------------------------------------------------------- virtual int compareIString ( const XMLCh* const comp1 , const XMLCh* const comp2 ); virtual int compareNIString ( const XMLCh* const comp1 , const XMLCh* const comp2 , const unsigned int maxChars ); virtual const XMLCh* getId() const; virtual bool isSpace(const XMLCh toCheck) const; virtual XMLLCPTranscoder* makeNewLCPTranscoder(); virtual bool supportsSrcOfs() const; virtual void upperCase(XMLCh* const toUpperCase) const; virtual void lowerCase(XMLCh* const toLowerCase) const; protected : // ----------------------------------------------------------------------- // Protected virtual methods // ----------------------------------------------------------------------- virtual XMLTranscoder* makeNewXMLTranscoder ( const XMLCh* const encodingName , XMLTransService::Codes& resValue , const unsigned int blockSize , MemoryManager* const manager ); private : // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- Iconv390TransService(const Iconv390TransService&); Iconv390TransService& operator=(const Iconv390TransService&); }; class XMLUTIL_EXPORT Iconv390LCPTranscoder : public XMLLCPTranscoder { public : // ----------------------------------------------------------------------- // Constructors and Destructor // ----------------------------------------------------------------------- Iconv390LCPTranscoder(); Iconv390LCPTranscoder(iconvconverter_t* const toAdopt); ~Iconv390LCPTranscoder(); // ----------------------------------------------------------------------- // Implementation of the virtual transcoder interface // ----------------------------------------------------------------------- virtual unsigned int calcRequiredSize(const char* const srcText , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); virtual unsigned int calcRequiredSize(const XMLCh* const srcText , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); virtual char* transcode(const XMLCh* const toTranscode); virtual char* transcode(const XMLCh* const toTranscode, MemoryManager* const manager); virtual bool transcode ( const XMLCh* const toTranscode , char* const toFill , const unsigned int maxBytes , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager ); virtual XMLCh* transcode(const char* const toTranscode); virtual XMLCh* transcode(const char* const toTranscode, MemoryManager* const manager); virtual bool transcode ( const char* const toTranscode , XMLCh* const toFill , const unsigned int maxChars , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager ); private : // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- Iconv390LCPTranscoder(const Iconv390LCPTranscoder&); Iconv390LCPTranscoder& operator=(const Iconv390LCPTranscoder&); iconvconverter_t *converter; }; XERCES_CPP_NAMESPACE_END #endif
[ "Riddlemaster@fdc6060e-f348-4335-9a41-9933a8eecd57" ]
[ [ [ 1, 153 ] ] ]
9de0da1ea83630ee90e349ab19eb3c8036d48ffd
11af1673bab82ca2329ef8b596d1f3d2f8b82481
/source/cgame/cg_servercmds.cpp
7939e28e280f7337d187cb09f4d0ea6c47e71b57
[]
no_license
legacyrp/legacyojp
8b33ecf24fd973bee5e7adbd369748cfdd891202
d918151e917ea06e8698f423bbe2cf6ab9d7f180
refs/heads/master
2021-01-10T20:09:55.748893
2011-04-18T21:07:13
2011-04-18T21:07:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
46,676
cpp
// Copyright (C) 1999-2000 Id Software, Inc. // // cg_servercmds.c -- reliably sequenced text commands sent by the server // these are processed at snapshot transition time, so there will definately // be a valid snapshot this frame #include "cg_local.h" //[SVN] //rearraigned repository to make it easier to initially compile. #include "../../jke/ui/jamp/menudef.h" //#include "../../ui/menudef.h" //[/SVN] #if !defined(CL_LIGHT_H_INC) #include "cg_lights.h" #endif //[Mac] #if MAC_PORT #include "../ghoul2/g2.h" #else #include "..\ghoul2\g2.h" #endif //[/Mac] #include "../ui/ui_public.h" extern void CG_AddToAddText(char *text); /* ================= CG_ParseScores ================= */ //[ExpSys] //racc - the number of arguements for each player in the score update. I had to boost this to add the skill point updates. //Needed to make it one more bigger to hold if we are wanted or not. #define SCOREUPDATEARGS 15 //[/ExpSys] static void CG_ParseScores( void ) { int i, powerups, readScores; cg.numScores = atoi( CG_Argv( 1 ) ); readScores = cg.numScores; if (readScores > MAX_CLIENT_SCORE_SEND) { readScores = MAX_CLIENT_SCORE_SEND; } if ( cg.numScores > MAX_CLIENTS ) { cg.numScores = MAX_CLIENTS; } cg.numScores = readScores; cg.teamScores[0] = atoi( CG_Argv( 2 ) ); cg.teamScores[1] = atoi( CG_Argv( 3 ) ); memset( cg.scores, 0, sizeof( cg.scores ) ); for ( i = 0 ; i < readScores ; i++ ) { // //[ExpSys] //added skill points as an item on the scoreboard cg.scores[i].client = atoi( CG_Argv( i * SCOREUPDATEARGS + 4 ) ); cg.scores[i].score = atoi( CG_Argv( i * SCOREUPDATEARGS + 5 ) ); cg.scores[i].ping = atoi( CG_Argv( i * SCOREUPDATEARGS + 6 ) ); cg.scores[i].time = atoi( CG_Argv( i * SCOREUPDATEARGS + 7 ) ); cg.scores[i].scoreFlags = atoi( CG_Argv( i * SCOREUPDATEARGS + 8 ) ); powerups = atoi( CG_Argv( i * SCOREUPDATEARGS + 9 ) ); cg.scores[i].accuracy = atoi(CG_Argv(i * SCOREUPDATEARGS + 10)); cg.scores[i].impressiveCount = atoi(CG_Argv(i * SCOREUPDATEARGS + 11)); cg.scores[i].excellentCount = atoi(CG_Argv(i * SCOREUPDATEARGS + 12)); cg.scores[i].guantletCount = atoi(CG_Argv(i * SCOREUPDATEARGS + 13)); cg.scores[i].defendCount = atoi(CG_Argv(i * SCOREUPDATEARGS + 14)); cg.scores[i].assistCount = atoi(CG_Argv(i * SCOREUPDATEARGS + 15)); cg.scores[i].perfect = (qboolean)atoi(CG_Argv(i * SCOREUPDATEARGS + 16)); cg.scores[i].captures = atoi(CG_Argv(i * SCOREUPDATEARGS + 17)); cg.scores[i].skill = atoi(CG_Argv(i * SCOREUPDATEARGS + 18)); /* basejka code cg.scores[i].client = atoi( CG_Argv( i * 14 + 4 ) ); cg.scores[i].score = atoi( CG_Argv( i * 14 + 5 ) ); cg.scores[i].ping = atoi( CG_Argv( i * 14 + 6 ) ); cg.scores[i].time = atoi( CG_Argv( i * 14 + 7 ) ); cg.scores[i].scoreFlags = atoi( CG_Argv( i * 14 + 8 ) ); powerups = atoi( CG_Argv( i * 14 + 9 ) ); cg.scores[i].accuracy = atoi(CG_Argv(i * 14 + 10)); cg.scores[i].impressiveCount = atoi(CG_Argv(i * 14 + 11)); cg.scores[i].excellentCount = atoi(CG_Argv(i * 14 + 12)); cg.scores[i].guantletCount = atoi(CG_Argv(i * 14 + 13)); cg.scores[i].defendCount = atoi(CG_Argv(i * 14 + 14)); cg.scores[i].assistCount = atoi(CG_Argv(i * 14 + 15)); cg.scores[i].perfect = atoi(CG_Argv(i * 14 + 16)); cg.scores[i].captures = atoi(CG_Argv(i * 14 + 17)); */ //[/ExpSys] if ( cg.scores[i].client < 0 || cg.scores[i].client >= MAX_CLIENTS ) { cg.scores[i].client = 0; } cgs.clientinfo[ cg.scores[i].client ].score = cg.scores[i].score; cgs.clientinfo[ cg.scores[i].client ].powerups = powerups; cg.scores[i].team = cgs.clientinfo[cg.scores[i].client].team; } CG_SetScoreSelection(NULL); } /* ================= CG_ParseTeamInfo ================= */ static void CG_ParseTeamInfo( void ) { int i; int client; //[BugFix34] //changed the function to handle the new "delta" based team overlay updates. int transNumber; //number of players updated in this data packet. int x; transNumber = atoi( CG_Argv( 1 ) ); //numSortedTeamPlayers = atoi( CG_Argv( 1 ) ); for ( i = 0 ; i < transNumber ; i++ ) { //for ( i = 0 ; i < numSortedTeamPlayers ; i++ ) { //[/BugFix34] client = atoi( CG_Argv( i * 6 + 2 ) ); //[BugFix34] //figure out if this player is on the overlay or not yet. for(x = 0; x < numSortedTeamPlayers; x++) { if(sortedTeamPlayers[x] == client) {//found ourself break; } } if(x == numSortedTeamPlayers) {//this player isn't in the sorted listed, add them sortedTeamPlayers[x] = client; numSortedTeamPlayers++; } //sortedTeamPlayers[i] = client; //[BugFix34] cgs.clientinfo[ client ].location = atoi( CG_Argv( i * 6 + 3 ) ); cgs.clientinfo[ client ].health = atoi( CG_Argv( i * 6 + 4 ) ); cgs.clientinfo[ client ].armor = atoi( CG_Argv( i * 6 + 5 ) ); cgs.clientinfo[ client ].curWeapon = atoi( CG_Argv( i * 6 + 6 ) ); cgs.clientinfo[ client ].powerups = atoi( CG_Argv( i * 6 + 7 ) ); } } /* ================ CG_ParseServerinfo This is called explicitly when the gamestate is first received, and whenever the server updates any serverinfo flagged cvars ================ */ //[SIEGECVARFIX] extern void siege_Cvar_Set( char *cvarName, char *value ); //[/SIEGECVARFIX] void CG_ParseServerinfo( void ) { const char *info; const char *tinfo; char *mapname; info = CG_ConfigString( CS_SERVERINFO ); cgs.debugMelee = atoi( Info_ValueForKey( info, "g_debugMelee" ) ); //trap_Cvar_GetHiddenVarValue("g_iknowkungfu"); cgs.stepSlideFix = atoi( Info_ValueForKey( info, "g_stepSlideFix" ) ); cgs.noSpecMove = atoi( Info_ValueForKey( info, "g_noSpecMove" ) ); trap_Cvar_Set("bg_fighterAltControl", Info_ValueForKey( info, "bg_fighterAltControl" )); cgs.siegeTeamSwitch = atoi( Info_ValueForKey( info, "g_siegeTeamSwitch" ) ); cgs.showDuelHealths = atoi( Info_ValueForKey( info, "g_showDuelHealths" ) ); cgs.gametype = atoi( Info_ValueForKey( info, "g_gametype" ) ); trap_Cvar_Set("g_gametype", va("%i", cgs.gametype)); cgs.needpass = (qboolean)atoi( Info_ValueForKey( info, "needpass" ) ); cgs.jediVmerc = (qboolean)atoi( Info_ValueForKey( info, "g_jediVmerc" ) ); cgs.wDisable = atoi( Info_ValueForKey( info, "wdisable" ) ); cgs.fDisable = atoi( Info_ValueForKey( info, "fdisable" ) ); cgs.dmflags = atoi( Info_ValueForKey( info, "dmflags" ) ); cgs.teamflags = atoi( Info_ValueForKey( info, "teamflags" ) ); cgs.fraglimit = atoi( Info_ValueForKey( info, "fraglimit" ) ); cgs.duel_fraglimit = atoi( Info_ValueForKey( info, "duel_fraglimit" ) ); cgs.capturelimit = atoi( Info_ValueForKey( info, "capturelimit" ) ); cgs.timelimit = atoi( Info_ValueForKey( info, "timelimit" ) ); cgs.maxclients = atoi( Info_ValueForKey( info, "sv_maxclients" ) ); //[MapURLs] strcpy( cgs.mapURL, Info_ValueForKey( info, "mapURL" ) ); //[/MapURLs] mapname = Info_ValueForKey( info, "mapname" ); //rww - You must do this one here, Info_ValueForKey always uses the same memory pointer. trap_Cvar_Set ( "ui_about_mapname", mapname ); Com_sprintf( cgs.mapname, sizeof( cgs.mapname ), "maps/%s.bsp", mapname ); // Q_strncpyz( cgs.redTeam, Info_ValueForKey( info, "g_redTeam" ), sizeof(cgs.redTeam) ); // trap_Cvar_Set("g_redTeam", cgs.redTeam); // Q_strncpyz( cgs.blueTeam, Info_ValueForKey( info, "g_blueTeam" ), sizeof(cgs.blueTeam) ); // trap_Cvar_Set("g_blueTeam", cgs.blueTeam); trap_Cvar_Set ( "ui_about_gametype", va("%i", cgs.gametype ) ); trap_Cvar_Set ( "ui_about_fraglimit", va("%i", cgs.fraglimit ) ); trap_Cvar_Set ( "ui_about_duellimit", va("%i", cgs.duel_fraglimit ) ); trap_Cvar_Set ( "ui_about_capturelimit", va("%i", cgs.capturelimit ) ); trap_Cvar_Set ( "ui_about_timelimit", va("%i", cgs.timelimit ) ); trap_Cvar_Set ( "ui_about_maxclients", va("%i", cgs.maxclients ) ); trap_Cvar_Set ( "ui_about_dmflags", va("%i", cgs.dmflags ) ); trap_Cvar_Set ( "ui_about_hostname", Info_ValueForKey( info, "sv_hostname" ) ); trap_Cvar_Set ( "ui_about_needpass", Info_ValueForKey( info, "g_needpass" ) ); trap_Cvar_Set ( "ui_about_botminplayers", Info_ValueForKey ( info, "bot_minplayers" ) ); //Set the siege teams based on what the server has for overrides. //[SIEGECVARFIX] siege_Cvar_Set("cg_siegeTeam1", Info_ValueForKey(info, "g_siegeTeam1")); siege_Cvar_Set("cg_siegeTeam2", Info_ValueForKey(info, "g_siegeTeam2")); //trap_Cvar_Set("cg_siegeTeam1", Info_ValueForKey(info, "g_siegeTeam1")); //trap_Cvar_Set("cg_siegeTeam2", Info_ValueForKey(info, "g_siegeTeam2")); //[/SIEGECVARFIX] tinfo = CG_ConfigString( CS_TERRAINS + 1 ); if ( !tinfo || !*tinfo ) { cg.mInRMG = qfalse; } else { int weather = 0; cg.mInRMG = qtrue; trap_Cvar_Set("RMG", "1"); weather = atoi( Info_ValueForKey( info, "RMG_weather" ) ); trap_Cvar_Set("RMG_weather", va("%i", weather)); if (weather == 1 || weather == 2) { cg.mRMGWeather = qtrue; } else { cg.mRMGWeather = qfalse; } } } /* ================== CG_ParseWarmup ================== */ static void CG_ParseWarmup( void ) { const char *info; int warmup; info = CG_ConfigString( CS_WARMUP ); warmup = atoi( info ); cg.warmupCount = -1; cg.warmup = warmup; } /* ================ CG_SetConfigValues Called on load to set the initial values from configure strings ================ */ void CG_SetConfigValues( void ) { const char *s; const char *str; cgs.scores1 = atoi( CG_ConfigString( CS_SCORES1 ) ); cgs.scores2 = atoi( CG_ConfigString( CS_SCORES2 ) ); cgs.levelStartTime = atoi( CG_ConfigString( CS_LEVEL_START_TIME ) ); if( cgs.gametype == GT_CTF || cgs.gametype == GT_CTY ) { s = CG_ConfigString( CS_FLAGSTATUS ); cgs.redflag = s[0] - '0'; cgs.blueflag = s[1] - '0'; } cg.warmup = atoi( CG_ConfigString( CS_WARMUP ) ); // Track who the jedi master is cgs.jediMaster = atoi ( CG_ConfigString ( CS_CLIENT_JEDIMASTER ) ); cgs.duelWinner = atoi ( CG_ConfigString ( CS_CLIENT_DUELWINNER ) ); str = CG_ConfigString(CS_CLIENT_DUELISTS); if (str && str[0]) { char buf[64]; int c = 0; int i = 0; while (str[i] && str[i] != '|') { buf[c] = str[i]; c++; i++; } buf[c] = 0; cgs.duelist1 = atoi ( buf ); c = 0; i++; while (str[i]) { buf[c] = str[i]; c++; i++; } buf[c] = 0; cgs.duelist2 = atoi ( buf ); } } /* ===================== CG_ShaderStateChanged ===================== */ void CG_ShaderStateChanged(void) { char originalShader[MAX_QPATH]; char newShader[MAX_QPATH]; char timeOffset[16]; const char *o; char *n,*t; o = CG_ConfigString( CS_SHADERSTATE ); while (o && *o) { n = (char*)strstr(o, "="); if (n && *n) { strncpy(originalShader, o, n-o); originalShader[n-o] = 0; n++; t = strstr(n, ":"); if (t && *t) { strncpy(newShader, n, t-n); newShader[t-n] = 0; } else { break; } t++; o = strstr(t, "@"); if (o) { strncpy(timeOffset, t, o-t); timeOffset[o-t] = 0; o++; trap_R_RemapShader( originalShader, newShader, timeOffset ); } } else { break; } } } extern char *cg_customSoundNames[MAX_CUSTOM_SOUNDS]; extern const char *cg_customCombatSoundNames[MAX_CUSTOM_COMBAT_SOUNDS]; extern const char *cg_customExtraSoundNames[MAX_CUSTOM_EXTRA_SOUNDS]; extern const char *cg_customJediSoundNames[MAX_CUSTOM_JEDI_SOUNDS]; extern const char *cg_customDuelSoundNames[MAX_CUSTOM_DUEL_SOUNDS]; static const char *GetCustomSoundForType(int setType, int index) { switch (setType) { case 1: return cg_customSoundNames[index]; case 2: return cg_customCombatSoundNames[index]; case 3: return cg_customExtraSoundNames[index]; case 4: return cg_customJediSoundNames[index]; case 5: return bg_customSiegeSoundNames[index]; case 6: return cg_customDuelSoundNames[index]; default: assert(0); return NULL; } } void SetCustomSoundForType(clientInfo_t *ci, int setType, int index, sfxHandle_t sfx) { switch (setType) { case 1: ci->sounds[index] = sfx; break; case 2: ci->combatSounds[index] = sfx; break; case 3: ci->extraSounds[index] = sfx; break; case 4: ci->jediSounds[index] = sfx; break; case 5: ci->siegeSounds[index] = sfx; break; case 6: ci->duelSounds[index] = sfx; break; default: assert(0); break; } } static void CG_RegisterCustomSounds(clientInfo_t *ci, int setType, const char *psDir) { int iTableEntries = 0; int i; switch (setType) { case 1: iTableEntries = MAX_CUSTOM_SOUNDS; break; case 2: iTableEntries = MAX_CUSTOM_COMBAT_SOUNDS; break; case 3: iTableEntries = MAX_CUSTOM_EXTRA_SOUNDS; break; case 4: iTableEntries = MAX_CUSTOM_JEDI_SOUNDS; break; case 5: iTableEntries = MAX_CUSTOM_SIEGE_SOUNDS; default: assert(0); return; } for ( i = 0 ; i<iTableEntries; i++ ) { sfxHandle_t hSFX; const char *s = GetCustomSoundForType(setType, i); if ( !s ) { break; } s++; hSFX = trap_S_RegisterSound( va("sound/chars/%s/misc/%s", psDir, s) ); if (hSFX == 0) { char modifiedSound[MAX_QPATH]; char *p; strcpy(modifiedSound, s); p = strchr(modifiedSound,'.'); if (p) { char testNumber[2]; p--; //before we destroy it.. we want to see if this is actually a number. //If it isn't a number then don't try decrementing and registering as //it will only cause a disk hit (we don't try precaching such files) testNumber[0] = *p; testNumber[1] = 0; if (atoi(testNumber)) { *p = 0; strcat(modifiedSound, "1.wav"); hSFX = trap_S_RegisterSound( va("sound/chars/%s/misc/%s", psDir, modifiedSound) ); } } } SetCustomSoundForType(ci, setType, i, hSFX); } } void CG_PrecacheNPCSounds(const char *str) { char sEnd[MAX_QPATH]; char pEnd[MAX_QPATH]; int i = 0; int j = 0; int k = 0; k = 2; while (str[k]) { pEnd[k-2] = str[k]; k++; } pEnd[k-2] = 0; while (i < 4) //4 types { //It would be better if we knew what type this actually was (extra, combat, jedi, etc). //But that would require extra configstring indexing and that is a bad thing. while (j < MAX_CUSTOM_SOUNDS) { const char *s = GetCustomSoundForType(i+1, j); if (s && s[0]) { //whatever it is, try registering it under this folder. k = 1; while (s[k]) { sEnd[k-1] = s[k]; k++; } sEnd[k-1] = 0; trap_S_ShutUp(qtrue); trap_S_RegisterSound( va("sound/chars/%s/misc/%s", pEnd, sEnd) ); trap_S_ShutUp(qfalse); } else { //move onto the next set break; } j++; } j = 0; i++; } } void CG_HandleNPCSounds(centity_t *cent) { if (!cent->npcClient) { return; } //standard if (cent->currentState.csSounds_Std) { const char *s = CG_ConfigString( CS_SOUNDS + cent->currentState.csSounds_Std ); if (s && s[0]) { char sEnd[MAX_QPATH]; int i = 2; int j = 0; //Parse past the initial "*" which indicates this is a custom sound, and the $ which indicates //it is an NPC custom sound dir. while (s[i]) { sEnd[j] = s[i]; j++; i++; } sEnd[j] = 0; CG_RegisterCustomSounds(cent->npcClient, 1, sEnd); } } else { memset(&cent->npcClient->sounds, 0, sizeof(cent->npcClient->sounds)); } //combat if (cent->currentState.csSounds_Combat) { const char *s = CG_ConfigString( CS_SOUNDS + cent->currentState.csSounds_Combat ); if (s && s[0]) { char sEnd[MAX_QPATH]; int i = 2; int j = 0; //Parse past the initial "*" which indicates this is a custom sound, and the $ which indicates //it is an NPC custom sound dir. while (s[i]) { sEnd[j] = s[i]; j++; i++; } sEnd[j] = 0; CG_RegisterCustomSounds(cent->npcClient, 2, sEnd); } } else { memset(&cent->npcClient->combatSounds, 0, sizeof(cent->npcClient->combatSounds)); } //extra if (cent->currentState.csSounds_Extra) { const char *s = CG_ConfigString( CS_SOUNDS + cent->currentState.csSounds_Extra ); if (s && s[0]) { char sEnd[MAX_QPATH]; int i = 2; int j = 0; //Parse past the initial "*" which indicates this is a custom sound, and the $ which indicates //it is an NPC custom sound dir. while (s[i]) { sEnd[j] = s[i]; j++; i++; } sEnd[j] = 0; CG_RegisterCustomSounds(cent->npcClient, 3, sEnd); } } else { memset(&cent->npcClient->extraSounds, 0, sizeof(cent->npcClient->extraSounds)); } //jedi if (cent->currentState.csSounds_Jedi) { const char *s = CG_ConfigString( CS_SOUNDS + cent->currentState.csSounds_Jedi ); if (s && s[0]) { char sEnd[MAX_QPATH]; int i = 2; int j = 0; //Parse past the initial "*" which indicates this is a custom sound, and the $ which indicates //it is an NPC custom sound dir. while (s[i]) { sEnd[j] = s[i]; j++; i++; } sEnd[j] = 0; CG_RegisterCustomSounds(cent->npcClient, 4, sEnd); } } else { memset(&cent->npcClient->jediSounds, 0, sizeof(cent->npcClient->jediSounds)); } } int CG_HandleAppendedSkin(char *modelName); void CG_CacheG2AnimInfo(char *modelName); // nmckenzie: DUEL_HEALTH - fixme - we could really clean this up immensely with some helper functions. void SetDuelistHealthsFromConfigString ( const char *str ) { char buf[64]; int c = 0; int i = 0; while (str[i] && str[i] != '|') { buf[c] = str[i]; c++; i++; } buf[c] = 0; cgs.duelist1health = atoi ( buf ); c = 0; i++; while (str[i] && str[i] != '|') { buf[c] = str[i]; c++; i++; } buf[c] = 0; cgs.duelist2health = atoi ( buf ); c = 0; i++; if ( str[i] == '!' ) { // we only have 2 duelists, apparently. cgs.duelist3health = -1; return; } while (str[i] && str[i] != '|') { buf[c] = str[i]; c++; i++; } buf[c] = 0; cgs.duelist3health = atoi ( buf ); } /* ================ CG_ConfigStringModified ================ */ extern int cgSiegeRoundState; extern int cgSiegeRoundTime; void CG_ParseSiegeObjectiveStatus(const char *str); void CG_ParseWeatherEffect(const char *str); extern void CG_ParseSiegeState(const char *str); //cg_main.c extern int cg_beatingSiegeTime; extern int cg_siegeWinTeam; //[CoOp] void CG_CameraParse( void ); //[/CoOp] static void CG_ConfigStringModified( void ) { const char *str; int num; num = atoi( CG_Argv( 1 ) ); // get the gamestate from the client system, which will have the // new configstring already integrated trap_GetGameState( &cgs.gameState ); // look up the individual string that was modified str = CG_ConfigString( num ); // do something with it if necessary if ( num == CS_MUSIC ) { CG_StartMusic( qtrue ); } else if ( num == CS_SERVERINFO ) { CG_ParseServerinfo(); } else if ( num == CS_WARMUP ) { CG_ParseWarmup(); } else if ( num == CS_SCORES1 ) { cgs.scores1 = atoi( str ); } else if ( num == CS_SCORES2 ) { cgs.scores2 = atoi( str ); } else if ( num == CS_CLIENT_JEDIMASTER ) { cgs.jediMaster = atoi ( str ); } else if ( num == CS_CLIENT_DUELWINNER ) { cgs.duelWinner = atoi ( str ); } else if ( num == CS_CLIENT_DUELISTS ) { char buf[64]; int c = 0; int i = 0; while (str[i] && str[i] != '|') { buf[c] = str[i]; c++; i++; } buf[c] = 0; cgs.duelist1 = atoi ( buf ); c = 0; i++; while (str[i] && str[i] != '|') { buf[c] = str[i]; c++; i++; } buf[c] = 0; cgs.duelist2 = atoi ( buf ); if (str[i]) { c = 0; i++; while (str[i]) { buf[c] = str[i]; c++; i++; } buf[c] = 0; cgs.duelist3 = atoi(buf); } } else if ( num == CS_CLIENT_DUELHEALTHS ) { // nmckenzie: DUEL_HEALTH SetDuelistHealthsFromConfigString(str); } else if ( num == CS_LEVEL_START_TIME ) { cgs.levelStartTime = atoi( str ); } else if ( num == CS_VOTE_TIME ) { cgs.voteTime = atoi( str ); cgs.voteModified = qtrue; } else if ( num == CS_VOTE_YES ) { cgs.voteYes = atoi( str ); cgs.voteModified = qtrue; } else if ( num == CS_VOTE_NO ) { cgs.voteNo = atoi( str ); cgs.voteModified = qtrue; } else if ( num == CS_VOTE_STRING ) { Q_strncpyz( cgs.voteString, str, sizeof( cgs.voteString ) ); } else if ( num >= CS_TEAMVOTE_TIME && num <= CS_TEAMVOTE_TIME + 1) { cgs.teamVoteTime[num-CS_TEAMVOTE_TIME] = atoi( str ); cgs.teamVoteModified[num-CS_TEAMVOTE_TIME] = qtrue; } else if ( num >= CS_TEAMVOTE_YES && num <= CS_TEAMVOTE_YES + 1) { cgs.teamVoteYes[num-CS_TEAMVOTE_YES] = atoi( str ); cgs.teamVoteModified[num-CS_TEAMVOTE_YES] = qtrue; } else if ( num >= CS_TEAMVOTE_NO && num <= CS_TEAMVOTE_NO + 1) { cgs.teamVoteNo[num-CS_TEAMVOTE_NO] = atoi( str ); cgs.teamVoteModified[num-CS_TEAMVOTE_NO] = qtrue; } else if ( num >= CS_TEAMVOTE_STRING && num <= CS_TEAMVOTE_STRING + 1) { Q_strncpyz( cgs.teamVoteString[num-CS_TEAMVOTE_STRING], str, sizeof( cgs.teamVoteString ) ); } else if ( num == CS_INTERMISSION ) { cg.intermissionStarted = (qboolean)atoi( str ); } else if ( num >= CS_MODELS && num < CS_MODELS+MAX_MODELS ) { char modelName[MAX_QPATH]; strcpy(modelName, str); if (strstr(modelName, ".glm") || modelName[0] == '$') { //Check to see if it has a custom skin attached. CG_HandleAppendedSkin(modelName); CG_CacheG2AnimInfo(modelName); } if (modelName[0] != '$' && modelName[0] != '@') { //don't register vehicle names and saber names as models. cgs.gameModels[ num-CS_MODELS ] = trap_R_RegisterModel( modelName ); } else { cgs.gameModels[ num-CS_MODELS ] = 0; } // GHOUL2 Insert start /* } else if ( num >= CS_CHARSKINS && num < CS_CHARSKINS+MAX_CHARSKINS ) { cgs.skins[ num-CS_CHARSKINS ] = trap_R_RegisterSkin( str ); */ //rww - removed and replaced with CS_G2BONES // Ghoul2 Insert end } else if ( num >= CS_SOUNDS && num < CS_SOUNDS+MAX_SOUNDS ) { if ( str[0] != '*' ) { // player specific sounds don't register here cgs.gameSounds[ num-CS_SOUNDS] = trap_S_RegisterSound( str ); } else if (str[1] == '$') { //an NPC soundset CG_PrecacheNPCSounds(str); } } else if ( num >= CS_EFFECTS && num < CS_EFFECTS+MAX_FX ) { if (str[0] == '*') { //it's a special global weather effect CG_ParseWeatherEffect(str); cgs.gameEffects[ num-CS_EFFECTS] = 0; } else { cgs.gameEffects[ num-CS_EFFECTS] = trap_FX_RegisterEffect( str ); } } else if ( num >= CS_SIEGE_STATE && num < CS_SIEGE_STATE+1 ) { if (str[0]) { CG_ParseSiegeState(str); } } else if ( num >= CS_SIEGE_WINTEAM && num < CS_SIEGE_WINTEAM+1 ) { if (str[0]) { cg_siegeWinTeam = atoi(str); } } else if ( num >= CS_SIEGE_OBJECTIVES && num < CS_SIEGE_OBJECTIVES+1 ) { CG_ParseSiegeObjectiveStatus(str); } else if (num >= CS_SIEGE_TIMEOVERRIDE && num < CS_SIEGE_TIMEOVERRIDE+1) { cg_beatingSiegeTime = atoi(str); CG_SetSiegeTimerCvar ( cg_beatingSiegeTime ); } else if ( num >= CS_PLAYERS && num < CS_PLAYERS+MAX_CLIENTS ) { CG_NewClientInfo( num - CS_PLAYERS, qtrue); CG_BuildSpectatorString(); } else if ( num == CS_FLAGSTATUS ) { if( cgs.gametype == GT_CTF || cgs.gametype == GT_CTY ) { // format is rb where its red/blue, 0 is at base, 1 is taken, 2 is dropped cgs.redflag = str[0] - '0'; cgs.blueflag = str[1] - '0'; } } else if ( num == CS_SHADERSTATE ) { CG_ShaderStateChanged(); } else if ( num >= CS_LIGHT_STYLES && num < CS_LIGHT_STYLES + (MAX_LIGHT_STYLES * 3)) { CG_SetLightstyle(num - CS_LIGHT_STYLES); } //[CoOp] else if ( num == CS_CAMERA ) { CG_CameraParse(); } //[/CoOp] } //frees all ghoul2 stuff and npc stuff from a centity -rww void CG_KillCEntityG2(int entNum) { int j; clientInfo_t *ci = NULL; centity_t *cent = &cg_entities[entNum]; if (entNum < MAX_CLIENTS) { ci = &cgs.clientinfo[entNum]; } else { ci = cent->npcClient; } if (ci) { if (ci == cent->npcClient) { //never going to be != cent->ghoul2, unless cent->ghoul2 has already been removed (and then this ptr is not valid) ci->ghoul2Model = NULL; } else if (ci->ghoul2Model == cent->ghoul2) { ci->ghoul2Model = NULL; } else if (ci->ghoul2Model && trap_G2_HaveWeGhoul2Models(ci->ghoul2Model)) { trap_G2API_CleanGhoul2Models(&ci->ghoul2Model); ci->ghoul2Model = NULL; } //Clean up any weapon instances for custom saber stuff j = 0; while (j < MAX_SABERS) { if (ci->ghoul2Weapons[j] && trap_G2_HaveWeGhoul2Models(ci->ghoul2Weapons[j])) { trap_G2API_CleanGhoul2Models(&ci->ghoul2Weapons[j]); ci->ghoul2Weapons[j] = NULL; } //[VisualWeapons] if (ci->ghoul2HolsterWeapons[j] && trap_G2_HaveWeGhoul2Models(ci->ghoul2HolsterWeapons[j])) { trap_G2API_CleanGhoul2Models(&ci->ghoul2HolsterWeapons[j]); ci->ghoul2HolsterWeapons[j] = NULL; } //[/VisualWeapons] j++; } } if (cent->ghoul2 && trap_G2_HaveWeGhoul2Models(cent->ghoul2)) { trap_G2API_CleanGhoul2Models(&cent->ghoul2); cent->ghoul2 = NULL; } if (cent->grip_arm && trap_G2_HaveWeGhoul2Models(cent->grip_arm)) { trap_G2API_CleanGhoul2Models(&cent->grip_arm); cent->grip_arm = NULL; } if (cent->frame_hold && trap_G2_HaveWeGhoul2Models(cent->frame_hold)) { trap_G2API_CleanGhoul2Models(&cent->frame_hold); cent->frame_hold = NULL; } if (cent->npcClient) { CG_DestroyNPCClient(&cent->npcClient); } cent->isRagging = qfalse; //just in case. cent->ikStatus = qfalse; cent->localAnimIndex = 0; } void CG_KillCEntityInstances(void) { int i = 0; centity_t *cent; while (i < MAX_GENTITIES) { cent = &cg_entities[i]; if (i >= MAX_CLIENTS && cent->currentState.number == i) { //do not clear G2 instances on client ents, they are constant CG_KillCEntityG2(i); } cent->bolt1 = 0; cent->bolt2 = 0; cent->bolt3 = 0; cent->bolt4 = 0; cent->bodyHeight = 0;//SABER_LENGTH_MAX; //cent->saberExtendTime = 0; cent->boltInfo = 0; cent->frame_minus1_refreshed = 0; cent->frame_minus2_refreshed = 0; cent->dustTrailTime = 0; cent->ghoul2weapon = NULL; //cent->torsoBolt = 0; cent->trailTime = 0; cent->frame_hold_time = 0; cent->frame_hold_refreshed = 0; cent->trickAlpha = 0; cent->trickAlphaTime = 0; VectorClear(cent->turAngles); cent->weapon = 0; cent->teamPowerEffectTime = 0; cent->teamPowerType = qfalse; cent->numLoopingSounds = 0; cent->localAnimIndex = 0; i++; } } /* =============== CG_MapRestart The server has issued a map_restart, so the next snapshot is completely new and should not be interpolated to. A tournement restart will clear everything, but doesn't require a reload of all the media =============== */ static void CG_MapRestart( void ) { if ( cg_showmiss.integer ) { CG_Printf( "CG_MapRestart\n" ); } trap_R_ClearDecals ( ); //FIXME: trap_FX_Reset? CG_InitLocalEntities(); CG_InitMarkPolys(); CG_ClearParticles (); CG_KillCEntityInstances(); // make sure the "3 frags left" warnings play again cg.fraglimitWarnings = 0; cg.timelimitWarnings = 0; cg.intermissionStarted = qfalse; cgs.voteTime = 0; cg.mapRestart = qtrue; CG_StartMusic(qtrue); trap_S_ClearLoopingSounds(); // we really should clear more parts of cg here and stop sounds // play the "fight" sound if this is a restart without warmup if ( cg.warmup == 0 && cgs.gametype != GT_SIEGE && cgs.gametype != GT_POWERDUEL/* && cgs.gametype == GT_DUEL */) { trap_S_StartLocalSound( cgs.media.countFightSound, CHAN_ANNOUNCER ); CG_CenterPrint( CG_GetStringEdString("MP_SVGAME", "BEGIN_DUEL"), 120, GIANTCHAR_WIDTH*2 ); } /* if (cg_singlePlayerActive.integer) { trap_Cvar_Set("ui_matchStartTime", va("%i", cg.time)); if (cg_recordSPDemo.integer && cg_recordSPDemoName.string && *cg_recordSPDemoName.string) { trap_SendConsoleCommand(va("set g_synchronousclients 1 ; record %s \n", cg_recordSPDemoName.string)); } } */ trap_Cvar_Set("cg_thirdPerson", "0"); } /* ================= CG_RemoveChatEscapeChar ================= */ static void CG_RemoveChatEscapeChar( char *text ) { int i, l; l = 0; for ( i = 0; text[i]; i++ ) { if (text[i] == '\x19') continue; text[l++] = text[i]; } text[l] = '\0'; } #define MAX_STRINGED_SV_STRING 1024 // this is an quake-engine limit, not a StringEd limit void CG_CheckSVStringEdRef(char *buf, const char *str) { //I don't really like doing this. But it utilizes the system that was already in place. int i = 0; int b = 0; int strLen = 0; qboolean gotStrip = qfalse; if (!str || !str[0]) { if (str) { strcpy(buf, str); } return; } strcpy(buf, str); strLen = strlen(str); if (strLen >= MAX_STRINGED_SV_STRING) { return; } while (i < strLen && str[i]) { gotStrip = qfalse; if (str[i] == '@' && (i+1) < strLen) { if (str[i+1] == '@' && (i+2) < strLen) { if (str[i+2] == '@' && (i+3) < strLen) { //@@@ should mean to insert a StringEd reference here, so insert it into buf at the current place char stringRef[MAX_STRINGED_SV_STRING]; int r = 0; while (i < strLen && str[i] == '@') { i++; } while (i < strLen && str[i] && str[i] != ' ' && str[i] != ':' && str[i] != '.' && str[i] != '\n') { stringRef[r] = str[i]; r++; i++; } stringRef[r] = 0; buf[b] = 0; Q_strcat(buf, MAX_STRINGED_SV_STRING, CG_GetStringEdString("MP_SVGAME", stringRef)); //[UITweaks] //RAFIXME - this only fixes the problem if the player has the client plugin. //Which won't happen if the mod is server only. Maybe rename the .str file again? if(buf[0] && buf[0] == '?' && buf[1] && buf[1] == '?') {//couldn't find the string in MP_SVGAME, try the OJP_MENUS.str buf[b] = 0; Q_strcat(buf, MAX_STRINGED_SV_STRING, CG_GetStringEdString("OJP_MENUS", stringRef)); } //[UITweaks] //[CoOp] if(buf[0] && buf[0] == '?' && buf[1] && buf[1] == '?') {//couldn't find the string in MP_SVGAME or OJP_MENUS, try the OJP_MENUS.str buf[b] = 0; Q_strcat(buf, MAX_STRINGED_SV_STRING, CG_GetStringEdString("SP_INGAME", stringRef)); } //[/CoOp] b = strlen(buf); } } } if (!gotStrip) { buf[b] = str[i]; b++; } i++; } buf[b] = 0; } static void CG_BodyQueueCopy(centity_t *cent, int clientNum, int knownWeapon) { centity_t *source; animation_t *anim; float animSpeed; int flags=BONE_ANIM_OVERRIDE_FREEZE; clientInfo_t *ci; if (cent->ghoul2) { trap_G2API_CleanGhoul2Models(&cent->ghoul2); } if (clientNum < 0 || clientNum >= MAX_CLIENTS) { return; } source = &cg_entities[ clientNum ]; ci = &cgs.clientinfo[ clientNum ]; if (!source) { return; } if (!source->ghoul2) { return; } cent->isRagging = qfalse; //reset in case it's still set from another body that was in this cent slot. cent->ownerRagging = source->isRagging; //if the owner was in ragdoll state, then we want to go into it too right away. cent->bodyFadeTime = 0; cent->bodyHeight = 0; cent->dustTrailTime = source->dustTrailTime; trap_G2API_DuplicateGhoul2Instance(source->ghoul2, &cent->ghoul2); if (source->isRagging) { //just reset it now. source->isRagging = qfalse; trap_G2API_SetRagDoll(source->ghoul2, NULL); //calling with null parms resets to no ragdoll. } //either force the weapon from when we died or remove it if it was a dropped weapon if (knownWeapon > WP_BRYAR_PISTOL && trap_G2API_HasGhoul2ModelOnIndex(&(cent->ghoul2), 1)) { trap_G2API_RemoveGhoul2Model(&(cent->ghoul2), 1); } else if (trap_G2API_HasGhoul2ModelOnIndex(&(cent->ghoul2), 1)) { trap_G2API_CopySpecificGhoul2Model(CG_G2WeaponInstance(cent, knownWeapon), 0, cent->ghoul2, 1); } if (!cent->ownerRagging) { int aNum; int eFrame; qboolean fallBack = qfalse; //anim = &bgAllAnims[cent->localAnimIndex].anims[ cent->currentState.torsoAnim ]; if (!BG_InDeathAnim(source->currentState.torsoAnim)) { //then just snap the corpse into a default anim = &bgAllAnims[source->localAnimIndex].anims[ BOTH_DEAD1 ]; fallBack = qtrue; } else { anim = &bgAllAnims[source->localAnimIndex].anims[ source->currentState.torsoAnim ]; } animSpeed = 50.0f / anim->frameLerp; if (!fallBack) { //this will just set us to the last frame of the animation, in theory aNum = cgs.clientinfo[source->currentState.number].frame+1; while (aNum >= anim->firstFrame+anim->numFrames) { aNum--; } if (aNum < anim->firstFrame-1) { //wrong animation...? aNum = (anim->firstFrame+anim->numFrames)-1; } } else { aNum = anim->firstFrame; } eFrame = anim->firstFrame + anim->numFrames; //if (!cgs.clientinfo[source->currentState.number].frame || (cent->currentState.torsoAnim) != (source->currentState.torsoAnim) ) //{ // aNum = (anim->firstFrame+anim->numFrames)-1; //} trap_G2API_SetBoneAnim(cent->ghoul2, 0, "upper_lumbar", aNum, eFrame, flags, animSpeed, cg.time, -1, 150); trap_G2API_SetBoneAnim(cent->ghoul2, 0, "model_root", aNum, eFrame, flags, animSpeed, cg.time, -1, 150); trap_G2API_SetBoneAnim(cent->ghoul2, 0, "Motion", aNum, eFrame, flags, animSpeed, cg.time, -1, 150); } //After we create the bodyqueue, regenerate any limbs on the real instance if (source->torsoBolt) { CG_ReattachLimb(source); } } /* ================= CG_ServerCommand The string has been tokenized and can be retrieved with Cmd_Argc() / Cmd_Argv() ================= */ //[CoOp] int CG_PlayCinematic(const char *name, float x, float y, float w, float h); void CGCam_Fade( vec4_t source, vec4_t dest, float duration ); qboolean InBriefing = qfalse; //flag to let the client know that we're showing a briefing //menu qboolean InCinematic = qfalse; //flag to indicate we're watching a ROQ. int CinematicNum; //[/CoOp] void CG_SiegeBriefingDisplay(int team, int dontshow); void CG_ParseSiegeExtendedData(void); extern void CG_ChatBox_AddString(char *chatStr); //cg_draw.c static void CG_ServerCommand( void ) { const char *cmd; char text[MAX_SAY_TEXT]; qboolean IRCG = qfalse; cmd = CG_Argv(0); if ( !cmd[0] ) { // server claimed the command return; } if (!strcmp(cmd, "sxd")) { //siege extended data, contains extra info certain classes may want to know about other clients CG_ParseSiegeExtendedData(); return; } if (!strcmp(cmd, "sb")) { //siege briefing display CG_SiegeBriefingDisplay(atoi(CG_Argv(1)), 0); return; } if ( !strcmp( cmd, "scl" ) ) { //if (!( trap_Key_GetCatcher() & KEYCATCH_UI )) //Well, I want it to come up even if the briefing display is up. { trap_OpenUIMenu(UIMENU_CLASSSEL); //UIMENU_CLASSSEL } return; } //[CoOp] if ( !strcmp( cmd, "briefmenu" ) ) {//open up the briefing menu for the next map. //grab the briefing menu file. InBriefing = qtrue; trap_Cvar_Set("ui_menubrief", CG_Argv(1)); trap_OpenUIMenu(UIMENU_BRIEFING); return; } //[/CoOp] if ( !strcmp( cmd, "spc" ) ) { trap_Cvar_Set("ui_myteam", "3"); trap_OpenUIMenu(UIMENU_PLAYERCONFIG); //UIMENU_CLASSSEL return; } if ( !strcmp( cmd, "lui" ) ) { // trap_Cvar_Set("ui_myteam", "3"); trap_OpenUIMenu(UIMENU_LOGIN); //UIMENU_CLASSSEL return; } if ( !strcmp( cmd, "lui_login") ) { trap_Cvar_Set("ui_account_loggedIn", "true"); return; } if ( !strcmp( cmd, "lui_logout") ) { trap_Cvar_Set("ui_account_loggedIn", "false"); return; } if(!strcmp(cmd, "addtext")) { if (trap_Argc() < 1) { Com_Printf("WARNING: Invalid call to addtext\n"); return; } const char *text = CG_Argv(1); CG_AddToAddText((char*)text); return; } if ( !strcmp( cmd, "nfr" ) ) { //"nfr" == "new force rank" (want a short string) int doMenu = 0; int setTeam = 0; int newRank = 0; int oldRank = 0; char buffer[256]; if (trap_Argc() < 3) { #ifdef _DEBUG Com_Printf("WARNING: Invalid newForceRank string\n"); #endif return; } newRank = atoi(CG_Argv(1)); doMenu = atoi(CG_Argv(2)); setTeam = atoi(CG_Argv(3)); trap_Cvar_VariableStringBuffer("ui_rankChange",buffer,256); oldRank = atoi(buffer); trap_Cvar_Set("ui_rankChange", va("%i", newRank)); if(oldRank > 0) { oldRank = newRank - oldRank; if(oldRank != 0) { if(oldRank > 0) CG_AddToAddText(va("+%i skill point",oldRank)); else CG_AddToAddText(va("%i skill point",oldRank)); } } trap_Cvar_Set("ui_myteam", va("%i", setTeam)); if (!( trap_Key_GetCatcher() & KEYCATCH_UI ) && doMenu) { //trap_OpenUIMenu(UIMENU_PLAYERCONFIG); } return; } if ( !strcmp( cmd, "kg2" ) ) { //Kill a ghoul2 instance in this slot. //If it has been occupied since this message was sent somehow, the worst that can (should) happen //is the instance will have to reinit with its current info. int indexNum = 0; int argNum = trap_Argc(); int i = 1; if (argNum < 1) { return; } while (i < argNum) { indexNum = atoi(CG_Argv(i)); if (cg_entities[indexNum].ghoul2 && trap_G2_HaveWeGhoul2Models(cg_entities[indexNum].ghoul2)) { if (indexNum < MAX_CLIENTS) { //You try to do very bad thing! #ifdef _DEBUG Com_Printf("WARNING: Tried to kill a client ghoul2 instance with a kg2 command!\n"); #endif return; } CG_KillCEntityG2(indexNum); } i++; } return; } if (!strcmp(cmd, "kls")) { //kill looping sounds int indexNum = 0; int argNum = trap_Argc(); centity_t *clent = NULL; centity_t *trackerent = NULL; if (argNum < 1) { assert(0); return; } indexNum = atoi(CG_Argv(1)); if (indexNum != -1) { clent = &cg_entities[indexNum]; } if (argNum >= 2) { indexNum = atoi(CG_Argv(2)); if (indexNum != -1) { trackerent = &cg_entities[indexNum]; } } if (clent) { CG_S_StopLoopingSound(clent->currentState.number, -1); } if (trackerent) { CG_S_StopLoopingSound(trackerent->currentState.number, -1); } return; } if (!strcmp(cmd, "ircg")) { //this means param 2 is the body index and we want to copy to bodyqueue on it IRCG = qtrue; } if (!strcmp(cmd, "rcg") || IRCG) { //rcg - Restore Client Ghoul (make sure limbs are reattached and ragdoll state is reset - this must be done reliably) int indexNum = 0; int argNum = trap_Argc(); centity_t *clent; if (argNum < 1) { assert(0); return; } indexNum = atoi(CG_Argv(1)); if (indexNum < 0 || indexNum >= MAX_CLIENTS) { assert(0); return; } clent = &cg_entities[indexNum]; //assert(clent->ghoul2); if (!clent->ghoul2) { //this can happen while connecting as a client return; } #ifdef _DEBUG if (!trap_G2_HaveWeGhoul2Models(clent->ghoul2)) { assert(!"Tried to reset state on a bad instance. Crash is inevitable."); } #endif if (IRCG) { int bodyIndex = 0; int weaponIndex = 0; int side = 0; centity_t *body; assert(argNum >= 3); bodyIndex = atoi(CG_Argv(2)); weaponIndex = atoi(CG_Argv(3)); side = atoi(CG_Argv(4)); body = &cg_entities[bodyIndex]; if (side) { body->teamPowerType = qtrue; //light side } else { body->teamPowerType = qfalse; //dark side } CG_BodyQueueCopy(body, clent->currentState.number, weaponIndex); } //reattach any missing limbs if (clent->torsoBolt) { CG_ReattachLimb(clent); } //make sure ragdoll state is reset if (clent->isRagging) { clent->isRagging = qfalse; trap_G2API_SetRagDoll(clent->ghoul2, NULL); //calling with null parms resets to no ragdoll. } //clear all the decals as well trap_G2API_ClearSkinGore(clent->ghoul2); clent->weapon = 0; clent->ghoul2weapon = NULL; //force a weapon reinit return; } if ( !strcmp( cmd, "cp" ) ) { char strEd[MAX_STRINGED_SV_STRING]; CG_CheckSVStringEdRef(strEd, CG_Argv(1)); CG_CenterPrint( strEd, SCREEN_HEIGHT * 0.30, BIGCHAR_WIDTH ); return; } if ( !strcmp( cmd, "cps" ) ) { char strEd[MAX_STRINGED_SV_STRING]; char *x = (char *)CG_Argv(1); if (x[0] == '@') { x++; } trap_SP_GetStringTextString(x, strEd, MAX_STRINGED_SV_STRING); //[Asteroids] CG_CenterPrint( strEd, SCREEN_HEIGHT * 0.20, BIGCHAR_WIDTH ); //[/Asteroids] return; } if ( !strcmp( cmd, "cs" ) ) { CG_ConfigStringModified(); return; } if ( !strcmp( cmd, "print" ) ) { char strEd[MAX_STRINGED_SV_STRING]; CG_CheckSVStringEdRef(strEd, CG_Argv(1)); CG_Printf( "%s", strEd ); return; } if ( !strcmp( cmd, "chat" ) ) { if ( !cg_teamChatsOnly.integer ) { trap_S_StartLocalSound( cgs.media.talkSound, CHAN_LOCAL_SOUND ); Q_strncpyz( text, CG_Argv(1), MAX_SAY_TEXT ); CG_RemoveChatEscapeChar( text ); CG_ChatBox_AddString(text); CG_Printf( "*%s\n", text ); } return; } if ( !strcmp( cmd, "tchat" ) ) { trap_S_StartLocalSound( cgs.media.talkSound, CHAN_LOCAL_SOUND ); Q_strncpyz( text, CG_Argv(1), MAX_SAY_TEXT ); CG_RemoveChatEscapeChar( text ); CG_ChatBox_AddString(text); CG_Printf( "*%s\n", text ); return; } //chat with location, possibly localized. if ( !strcmp( cmd, "lchat" ) ) { if ( !cg_teamChatsOnly.integer ) { char name[MAX_STRING_CHARS]; char loc[MAX_STRING_CHARS]; char color[8]; char message[MAX_STRING_CHARS]; if (trap_Argc() < 4) { return; } strcpy(name, CG_Argv(1)); strcpy(loc, CG_Argv(2)); strcpy(color, CG_Argv(3)); strcpy(message, CG_Argv(4)); if (loc[0] == '@') { //get localized text trap_SP_GetStringTextString(loc+1, loc, MAX_STRING_CHARS); } trap_S_StartLocalSound( cgs.media.talkSound, CHAN_LOCAL_SOUND ); //Q_strncpyz( text, CG_Argv(1), MAX_SAY_TEXT ); Com_sprintf(text, MAX_SAY_TEXT, "%s<%s>^%s%s", name, loc, color, message); CG_RemoveChatEscapeChar( text ); CG_ChatBox_AddString(text); CG_Printf( "*%s\n", text ); } return; } if ( !strcmp( cmd, "ltchat" ) ) { char name[MAX_STRING_CHARS]; char loc[MAX_STRING_CHARS]; char color[8]; char message[MAX_STRING_CHARS]; if (trap_Argc() < 4) { return; } strcpy(name, CG_Argv(1)); strcpy(loc, CG_Argv(2)); strcpy(color, CG_Argv(3)); strcpy(message, CG_Argv(4)); if (loc[0] == '@') { //get localized text trap_SP_GetStringTextString(loc+1, loc, MAX_STRING_CHARS); } trap_S_StartLocalSound( cgs.media.talkSound, CHAN_LOCAL_SOUND ); //Q_strncpyz( text, CG_Argv(1), MAX_SAY_TEXT ); Com_sprintf(text, MAX_SAY_TEXT, "%s<%s> ^%s%s", name, loc, color, message); CG_RemoveChatEscapeChar( text ); CG_ChatBox_AddString(text); CG_Printf( "*%s\n", text ); return; } if ( !strcmp( cmd, "scores" ) ) { CG_ParseScores(); return; } if ( !strcmp( cmd, "tinfo" ) ) { CG_ParseTeamInfo(); return; } if ( !strcmp( cmd, "map_restart" ) ) { CG_MapRestart(); return; } //[OverflowProtection] //this command was vulnerable to buffer overflow and could cause problems due to not properly returning //after processing the command. if ( Q_strncmp (cmd, "remapShader", 11) == 0 ) { if (trap_Argc() == 4) { char shader1[MAX_QPATH]; char shader2[MAX_QPATH]; Q_strncpyz(shader1, CG_Argv(1), sizeof(shader1)); Q_strncpyz(shader2, CG_Argv(2), sizeof(shader2)); trap_R_RemapShader(shader1, shader2, CG_Argv(3)); return; } } /* basejka code if ( Q_stricmp (cmd, "remapShader") == 0 ) { if (trap_Argc() == 4) { trap_R_RemapShader(CG_Argv(1), CG_Argv(2), CG_Argv(3)); } } */ //[/OverflowProtection] // loaddeferred can be both a servercmd and a consolecmd if ( !strcmp( cmd, "loaddefered" ) ) { // FIXME: spelled wrong, but not changing for demo CG_LoadDeferredPlayers(); return; } // clientLevelShot is sent before taking a special screenshot for // the menu system during development if ( !strcmp( cmd, "clientLevelShot" ) ) { cg.levelShot = qtrue; return; } //[ROQFILES] if ( !strcmp( cmd, "inGameCinematic" ) ) { fileHandle_t file; char name[MAX_STRING_CHARS]; strcpy(name, va("video/%s.roq", CG_Argv(1))); //precashe the file? trap_FS_FOpenFile( name, &file, FS_READ ); // trigger the file copy if (file) { trap_FS_FCloseFile( file ); } CinematicNum = trap_CIN_PlayCinematic(name, 0, 0, 0, 0, 0); trap_CIN_RunCinematic(CinematicNum); trap_CIN_SetExtents(CinematicNum, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT); trap_CIN_DrawCinematic(CinematicNum); InCinematic = qtrue; return; } //[/ROQFILES] //[LastManStanding] if ( !strcmp( cmd, "LMSWin" ) ) { trap_S_StartLocalSound( cgs.media.winnerSound, CHAN_ANNOUNCER ); return; } if ( !strcmp( cmd, "LMSLose" ) ) { trap_S_StartLocalSound( cgs.media.loserSound, CHAN_ANNOUNCER ); return; } //[/LastManStanding] if ( strcmp( cmd, "forcechanged" ) ) CG_Printf( "Unknown client game command: %s\n", cmd ); } /* ==================== CG_ExecuteNewServerCommands Execute all of the server commands that were received along with this this snapshot. ==================== */ void CG_ExecuteNewServerCommands( int latestSequence ) { while ( cgs.serverCommandSequence < latestSequence ) { if ( trap_GetServerCommand( ++cgs.serverCommandSequence ) ) { CG_ServerCommand(); } } }
[ "[email protected]@5776d9f2-9662-11de-ad41-3fcdc5e0e42d" ]
[ [ [ 1, 1883 ] ] ]
dc5d4c3ea9af007cab09ab3c4dba2a3549a791d8
9a48be80edc7692df4918c0222a1640545384dbb
/Libraries/Boost1.40/libs/interprocess/example/comp_doc_message_queueA.cpp
7d1570b3e6d96a71ffb36af7b96ba9e4a3f590fd
[ "BSL-1.0" ]
permissive
fcrick/RepSnapper
05e4fb1157f634acad575fffa2029f7f655b7940
a5809843f37b7162f19765e852b968648b33b694
refs/heads/master
2021-01-17T21:42:29.537504
2010-06-07T05:38:05
2010-06-07T05:38:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,340
cpp
////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2006-2007. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/interprocess for documentation. // ////////////////////////////////////////////////////////////////////////////// #include <boost/interprocess/detail/config_begin.hpp> //[doc_message_queueA #include <boost/interprocess/ipc/message_queue.hpp> #include <iostream> #include <vector> using namespace boost::interprocess; int main () { try{ //Erase previous message queue message_queue::remove("message_queue"); //Create a message_queue. message_queue mq (create_only //only create ,"message_queue" //name ,100 //max message number ,sizeof(int) //max message size ); //Send 100 numbers for(int i = 0; i < 100; ++i){ mq.send(&i, sizeof(i), 0); } } catch(interprocess_exception &ex){ std::cout << ex.what() << std::endl; return 1; } return 0; } //] #include <boost/interprocess/detail/config_end.hpp>
[ "metrix@Blended.(none)" ]
[ [ [ 1, 45 ] ] ]
bb4b5862bb385d7950f355b15bed92290f7c999d
21da454a8f032d6ad63ca9460656c1e04440310e
/src/wcpp/io/wscByteArrayInputStream.h
c93d892d8d7c6093cd8c90e3207f23392fc4a592
[]
no_license
merezhang/wcpp
d9879ffb103513a6b58560102ec565b9dc5855dd
e22eb48ea2dd9eda5cd437960dd95074774b70b0
refs/heads/master
2021-01-10T06:29:42.908096
2009-08-31T09:20:31
2009-08-31T09:20:31
46,339,619
0
0
null
null
null
null
UTF-8
C++
false
false
300
h
#ifndef __wscByteArrayInputStream_h__ #define __wscByteArrayInputStream_h__ #include "wscInputStream.h" #include "wsiByteArrayInputStream.h" class wscByteArrayInputStream : public wscInputStream, public wsiByteArrayInputStream { }; #endif // __wsByteArrayInputStream_h__
[ "xukun0217@98f29a9a-77f1-11de-91f8-ab615253d9e8" ]
[ [ [ 1, 17 ] ] ]
de48f28b7272d41fc413aed9bace4ccb043702f3
eb8a27a2cc7307f0bc9596faa4aa4a716676c5c5
/WinEdition/browser-lcc/jscc/src/v8/v8/src/parser.cc
42162eb5de9a432d6501d69cf5ff7acecf9981a4
[ "LicenseRef-scancode-public-domain", "Artistic-2.0", "BSD-3-Clause", "Artistic-1.0", "bzip2-1.0.6" ]
permissive
baxtree/OKBuzzer
c46c7f271a26be13adcf874d77a7a6762a8dc6be
a16e2baad145f5c65052cdc7c767e78cdfee1181
refs/heads/master
2021-01-02T22:17:34.168564
2011-06-15T02:29:56
2011-06-15T02:29:56
1,790,181
0
0
null
null
null
null
UTF-8
C++
false
false
175,300
cc
// Copyright 2011 the V8 project authors. All rights reserved. // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following // disclaimer in the documentation and/or other materials provided // with the distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived // from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "v8.h" #include "api.h" #include "ast.h" #include "bootstrapper.h" #include "codegen.h" #include "compiler.h" #include "func-name-inferrer.h" #include "messages.h" #include "parser.h" #include "platform.h" #include "preparser.h" #include "runtime.h" #include "scopeinfo.h" #include "string-stream.h" #include "ast-inl.h" namespace v8 { namespace internal { // PositionStack is used for on-stack allocation of token positions for // new expressions. Please look at ParseNewExpression. class PositionStack { public: explicit PositionStack(bool* ok) : top_(NULL), ok_(ok) {} ~PositionStack() { ASSERT(!*ok_ || is_empty()); } class Element { public: Element(PositionStack* stack, int value) { previous_ = stack->top(); value_ = value; stack->set_top(this); } private: Element* previous() { return previous_; } int value() { return value_; } friend class PositionStack; Element* previous_; int value_; }; bool is_empty() { return top_ == NULL; } int pop() { ASSERT(!is_empty()); int result = top_->value(); top_ = top_->previous(); return result; } private: Element* top() { return top_; } void set_top(Element* value) { top_ = value; } Element* top_; bool* ok_; }; RegExpBuilder::RegExpBuilder() : zone_(Isolate::Current()->zone()), pending_empty_(false), characters_(NULL), terms_(), alternatives_() #ifdef DEBUG , last_added_(ADD_NONE) #endif {} void RegExpBuilder::FlushCharacters() { pending_empty_ = false; if (characters_ != NULL) { RegExpTree* atom = new(zone()) RegExpAtom(characters_->ToConstVector()); characters_ = NULL; text_.Add(atom); LAST(ADD_ATOM); } } void RegExpBuilder::FlushText() { FlushCharacters(); int num_text = text_.length(); if (num_text == 0) { return; } else if (num_text == 1) { terms_.Add(text_.last()); } else { RegExpText* text = new(zone()) RegExpText(); for (int i = 0; i < num_text; i++) text_.Get(i)->AppendToText(text); terms_.Add(text); } text_.Clear(); } void RegExpBuilder::AddCharacter(uc16 c) { pending_empty_ = false; if (characters_ == NULL) { characters_ = new ZoneList<uc16>(4); } characters_->Add(c); LAST(ADD_CHAR); } void RegExpBuilder::AddEmpty() { pending_empty_ = true; } void RegExpBuilder::AddAtom(RegExpTree* term) { if (term->IsEmpty()) { AddEmpty(); return; } if (term->IsTextElement()) { FlushCharacters(); text_.Add(term); } else { FlushText(); terms_.Add(term); } LAST(ADD_ATOM); } void RegExpBuilder::AddAssertion(RegExpTree* assert) { FlushText(); terms_.Add(assert); LAST(ADD_ASSERT); } void RegExpBuilder::NewAlternative() { FlushTerms(); } void RegExpBuilder::FlushTerms() { FlushText(); int num_terms = terms_.length(); RegExpTree* alternative; if (num_terms == 0) { alternative = RegExpEmpty::GetInstance(); } else if (num_terms == 1) { alternative = terms_.last(); } else { alternative = new(zone()) RegExpAlternative(terms_.GetList()); } alternatives_.Add(alternative); terms_.Clear(); LAST(ADD_NONE); } RegExpTree* RegExpBuilder::ToRegExp() { FlushTerms(); int num_alternatives = alternatives_.length(); if (num_alternatives == 0) { return RegExpEmpty::GetInstance(); } if (num_alternatives == 1) { return alternatives_.last(); } return new(zone()) RegExpDisjunction(alternatives_.GetList()); } void RegExpBuilder::AddQuantifierToAtom(int min, int max, RegExpQuantifier::Type type) { if (pending_empty_) { pending_empty_ = false; return; } RegExpTree* atom; if (characters_ != NULL) { ASSERT(last_added_ == ADD_CHAR); // Last atom was character. Vector<const uc16> char_vector = characters_->ToConstVector(); int num_chars = char_vector.length(); if (num_chars > 1) { Vector<const uc16> prefix = char_vector.SubVector(0, num_chars - 1); text_.Add(new(zone()) RegExpAtom(prefix)); char_vector = char_vector.SubVector(num_chars - 1, num_chars); } characters_ = NULL; atom = new(zone()) RegExpAtom(char_vector); FlushText(); } else if (text_.length() > 0) { ASSERT(last_added_ == ADD_ATOM); atom = text_.RemoveLast(); FlushText(); } else if (terms_.length() > 0) { ASSERT(last_added_ == ADD_ATOM); atom = terms_.RemoveLast(); if (atom->max_match() == 0) { // Guaranteed to only match an empty string. LAST(ADD_TERM); if (min == 0) { return; } terms_.Add(atom); return; } } else { // Only call immediately after adding an atom or character! UNREACHABLE(); return; } terms_.Add(new(zone()) RegExpQuantifier(min, max, type, atom)); LAST(ADD_TERM); } Handle<String> Parser::LookupSymbol(int symbol_id) { // Length of symbol cache is the number of identified symbols. // If we are larger than that, or negative, it's not a cached symbol. // This might also happen if there is no preparser symbol data, even // if there is some preparser data. if (static_cast<unsigned>(symbol_id) >= static_cast<unsigned>(symbol_cache_.length())) { if (scanner().is_literal_ascii()) { return isolate()->factory()->LookupAsciiSymbol( scanner().literal_ascii_string()); } else { return isolate()->factory()->LookupTwoByteSymbol( scanner().literal_uc16_string()); } } return LookupCachedSymbol(symbol_id); } Handle<String> Parser::LookupCachedSymbol(int symbol_id) { // Make sure the cache is large enough to hold the symbol identifier. if (symbol_cache_.length() <= symbol_id) { // Increase length to index + 1. symbol_cache_.AddBlock(Handle<String>::null(), symbol_id + 1 - symbol_cache_.length()); } Handle<String> result = symbol_cache_.at(symbol_id); if (result.is_null()) { if (scanner().is_literal_ascii()) { result = isolate()->factory()->LookupAsciiSymbol( scanner().literal_ascii_string()); } else { result = isolate()->factory()->LookupTwoByteSymbol( scanner().literal_uc16_string()); } symbol_cache_.at(symbol_id) = result; return result; } isolate()->counters()->total_preparse_symbols_skipped()->Increment(); return result; } FunctionEntry ScriptDataImpl::GetFunctionEntry(int start) { // The current pre-data entry must be a FunctionEntry with the given // start position. if ((function_index_ + FunctionEntry::kSize <= store_.length()) && (static_cast<int>(store_[function_index_]) == start)) { int index = function_index_; function_index_ += FunctionEntry::kSize; return FunctionEntry(store_.SubVector(index, index + FunctionEntry::kSize)); } return FunctionEntry(); } int ScriptDataImpl::GetSymbolIdentifier() { return ReadNumber(&symbol_data_); } bool ScriptDataImpl::SanityCheck() { // Check that the header data is valid and doesn't specify // point to positions outside the store. if (store_.length() < PreparseDataConstants::kHeaderSize) return false; if (magic() != PreparseDataConstants::kMagicNumber) return false; if (version() != PreparseDataConstants::kCurrentVersion) return false; if (has_error()) { // Extra sane sanity check for error message encoding. if (store_.length() <= PreparseDataConstants::kHeaderSize + PreparseDataConstants::kMessageTextPos) { return false; } if (Read(PreparseDataConstants::kMessageStartPos) > Read(PreparseDataConstants::kMessageEndPos)) { return false; } unsigned arg_count = Read(PreparseDataConstants::kMessageArgCountPos); int pos = PreparseDataConstants::kMessageTextPos; for (unsigned int i = 0; i <= arg_count; i++) { if (store_.length() <= PreparseDataConstants::kHeaderSize + pos) { return false; } int length = static_cast<int>(Read(pos)); if (length < 0) return false; pos += 1 + length; } if (store_.length() < PreparseDataConstants::kHeaderSize + pos) { return false; } return true; } // Check that the space allocated for function entries is sane. int functions_size = static_cast<int>(store_[PreparseDataConstants::kFunctionsSizeOffset]); if (functions_size < 0) return false; if (functions_size % FunctionEntry::kSize != 0) return false; // Check that the count of symbols is non-negative. int symbol_count = static_cast<int>(store_[PreparseDataConstants::kSymbolCountOffset]); if (symbol_count < 0) return false; // Check that the total size has room for header and function entries. int minimum_size = PreparseDataConstants::kHeaderSize + functions_size; if (store_.length() < minimum_size) return false; return true; } const char* ScriptDataImpl::ReadString(unsigned* start, int* chars) { int length = start[0]; char* result = NewArray<char>(length + 1); for (int i = 0; i < length; i++) { result[i] = start[i + 1]; } result[length] = '\0'; if (chars != NULL) *chars = length; return result; } Scanner::Location ScriptDataImpl::MessageLocation() { int beg_pos = Read(PreparseDataConstants::kMessageStartPos); int end_pos = Read(PreparseDataConstants::kMessageEndPos); return Scanner::Location(beg_pos, end_pos); } const char* ScriptDataImpl::BuildMessage() { unsigned* start = ReadAddress(PreparseDataConstants::kMessageTextPos); return ReadString(start, NULL); } Vector<const char*> ScriptDataImpl::BuildArgs() { int arg_count = Read(PreparseDataConstants::kMessageArgCountPos); const char** array = NewArray<const char*>(arg_count); // Position after text found by skipping past length field and // length field content words. int pos = PreparseDataConstants::kMessageTextPos + 1 + Read(PreparseDataConstants::kMessageTextPos); for (int i = 0; i < arg_count; i++) { int count = 0; array[i] = ReadString(ReadAddress(pos), &count); pos += count + 1; } return Vector<const char*>(array, arg_count); } unsigned ScriptDataImpl::Read(int position) { return store_[PreparseDataConstants::kHeaderSize + position]; } unsigned* ScriptDataImpl::ReadAddress(int position) { return &store_[PreparseDataConstants::kHeaderSize + position]; } Scope* Parser::NewScope(Scope* parent, Scope::Type type, bool inside_with) { Scope* result = new(zone()) Scope(parent, type); result->Initialize(inside_with); return result; } // ---------------------------------------------------------------------------- // Target is a support class to facilitate manipulation of the // Parser's target_stack_ (the stack of potential 'break' and // 'continue' statement targets). Upon construction, a new target is // added; it is removed upon destruction. class Target BASE_EMBEDDED { public: Target(Target** variable, AstNode* node) : variable_(variable), node_(node), previous_(*variable) { *variable = this; } ~Target() { *variable_ = previous_; } Target* previous() { return previous_; } AstNode* node() { return node_; } private: Target** variable_; AstNode* node_; Target* previous_; }; class TargetScope BASE_EMBEDDED { public: explicit TargetScope(Target** variable) : variable_(variable), previous_(*variable) { *variable = NULL; } ~TargetScope() { *variable_ = previous_; } private: Target** variable_; Target* previous_; }; // ---------------------------------------------------------------------------- // LexicalScope is a support class to facilitate manipulation of the // Parser's scope stack. The constructor sets the parser's top scope // to the incoming scope, and the destructor resets it. // // Additionally, it stores transient information used during parsing. // These scopes are not kept around after parsing or referenced by syntax // trees so they can be stack-allocated and hence used by the pre-parser. class LexicalScope BASE_EMBEDDED { public: LexicalScope(Parser* parser, Scope* scope, Isolate* isolate); ~LexicalScope(); int NextMaterializedLiteralIndex() { int next_index = materialized_literal_count_ + JSFunction::kLiteralsPrefixSize; materialized_literal_count_++; return next_index; } int materialized_literal_count() { return materialized_literal_count_; } void SetThisPropertyAssignmentInfo( bool only_simple_this_property_assignments, Handle<FixedArray> this_property_assignments) { only_simple_this_property_assignments_ = only_simple_this_property_assignments; this_property_assignments_ = this_property_assignments; } bool only_simple_this_property_assignments() { return only_simple_this_property_assignments_; } Handle<FixedArray> this_property_assignments() { return this_property_assignments_; } void AddProperty() { expected_property_count_++; } int expected_property_count() { return expected_property_count_; } private: // Captures the number of literals that need materialization in the // function. Includes regexp literals, and boilerplate for object // and array literals. int materialized_literal_count_; // Properties count estimation. int expected_property_count_; // Keeps track of assignments to properties of this. Used for // optimizing constructors. bool only_simple_this_property_assignments_; Handle<FixedArray> this_property_assignments_; // Bookkeeping Parser* parser_; // Previous values LexicalScope* lexical_scope_parent_; Scope* previous_scope_; int previous_with_nesting_level_; unsigned previous_ast_node_id_; }; LexicalScope::LexicalScope(Parser* parser, Scope* scope, Isolate* isolate) : materialized_literal_count_(0), expected_property_count_(0), only_simple_this_property_assignments_(false), this_property_assignments_(isolate->factory()->empty_fixed_array()), parser_(parser), lexical_scope_parent_(parser->lexical_scope_), previous_scope_(parser->top_scope_), previous_with_nesting_level_(parser->with_nesting_level_), previous_ast_node_id_(isolate->ast_node_id()) { parser->top_scope_ = scope; parser->lexical_scope_ = this; parser->with_nesting_level_ = 0; isolate->set_ast_node_id(AstNode::kFunctionEntryId + 1); } LexicalScope::~LexicalScope() { parser_->top_scope_->Leave(); parser_->top_scope_ = previous_scope_; parser_->lexical_scope_ = lexical_scope_parent_; parser_->with_nesting_level_ = previous_with_nesting_level_; parser_->isolate()->set_ast_node_id(previous_ast_node_id_); } // ---------------------------------------------------------------------------- // The CHECK_OK macro is a convenient macro to enforce error // handling for functions that may fail (by returning !*ok). // // CAUTION: This macro appends extra statements after a call, // thus it must never be used where only a single statement // is correct (e.g. an if statement branch w/o braces)! #define CHECK_OK ok); \ if (!*ok) return NULL; \ ((void)0 #define DUMMY ) // to make indentation work #undef DUMMY #define CHECK_FAILED /**/); \ if (failed_) return NULL; \ ((void)0 #define DUMMY ) // to make indentation work #undef DUMMY // ---------------------------------------------------------------------------- // Implementation of Parser Parser::Parser(Handle<Script> script, bool allow_natives_syntax, v8::Extension* extension, ScriptDataImpl* pre_data) : isolate_(script->GetIsolate()), symbol_cache_(pre_data ? pre_data->symbol_count() : 0), script_(script), scanner_(isolate_->unicode_cache()), top_scope_(NULL), with_nesting_level_(0), lexical_scope_(NULL), target_stack_(NULL), allow_natives_syntax_(allow_natives_syntax), extension_(extension), pre_data_(pre_data), fni_(NULL), stack_overflow_(false), parenthesized_function_(false) { AstNode::ResetIds(); } FunctionLiteral* Parser::ParseProgram(Handle<String> source, bool in_global_context, StrictModeFlag strict_mode) { CompilationZoneScope zone_scope(DONT_DELETE_ON_EXIT); HistogramTimerScope timer(isolate()->counters()->parse()); isolate()->counters()->total_parse_size()->Increment(source->length()); fni_ = new(zone()) FuncNameInferrer(); // Initialize parser state. source->TryFlatten(); if (source->IsExternalTwoByteString()) { // Notice that the stream is destroyed at the end of the branch block. // The last line of the blocks can't be moved outside, even though they're // identical calls. ExternalTwoByteStringUC16CharacterStream stream( Handle<ExternalTwoByteString>::cast(source), 0, source->length()); scanner_.Initialize(&stream); return DoParseProgram(source, in_global_context, strict_mode, &zone_scope); } else { GenericStringUC16CharacterStream stream(source, 0, source->length()); scanner_.Initialize(&stream); return DoParseProgram(source, in_global_context, strict_mode, &zone_scope); } } FunctionLiteral* Parser::DoParseProgram(Handle<String> source, bool in_global_context, StrictModeFlag strict_mode, ZoneScope* zone_scope) { ASSERT(target_stack_ == NULL); if (pre_data_ != NULL) pre_data_->Initialize(); // Compute the parsing mode. mode_ = FLAG_lazy ? PARSE_LAZILY : PARSE_EAGERLY; if (allow_natives_syntax_ || extension_ != NULL) mode_ = PARSE_EAGERLY; Scope::Type type = in_global_context ? Scope::GLOBAL_SCOPE : Scope::EVAL_SCOPE; Handle<String> no_name = isolate()->factory()->empty_symbol(); FunctionLiteral* result = NULL; { Scope* scope = NewScope(top_scope_, type, inside_with()); LexicalScope lexical_scope(this, scope, isolate()); if (strict_mode == kStrictMode) { top_scope_->EnableStrictMode(); } ZoneList<Statement*>* body = new ZoneList<Statement*>(16); bool ok = true; int beg_loc = scanner().location().beg_pos; ParseSourceElements(body, Token::EOS, &ok); if (ok && top_scope_->is_strict_mode()) { CheckOctalLiteral(beg_loc, scanner().location().end_pos, &ok); } if (ok) { result = new(zone()) FunctionLiteral( no_name, top_scope_, body, lexical_scope.materialized_literal_count(), lexical_scope.expected_property_count(), lexical_scope.only_simple_this_property_assignments(), lexical_scope.this_property_assignments(), 0, 0, source->length(), false); } else if (stack_overflow_) { isolate()->StackOverflow(); } } // Make sure the target stack is empty. ASSERT(target_stack_ == NULL); // If there was a syntax error we have to get rid of the AST // and it is not safe to do so before the scope has been deleted. if (result == NULL) zone_scope->DeleteOnExit(); return result; } FunctionLiteral* Parser::ParseLazy(CompilationInfo* info) { CompilationZoneScope zone_scope(DONT_DELETE_ON_EXIT); HistogramTimerScope timer(isolate()->counters()->parse_lazy()); Handle<String> source(String::cast(script_->source())); isolate()->counters()->total_parse_size()->Increment(source->length()); Handle<SharedFunctionInfo> shared_info = info->shared_info(); // Initialize parser state. source->TryFlatten(); if (source->IsExternalTwoByteString()) { ExternalTwoByteStringUC16CharacterStream stream( Handle<ExternalTwoByteString>::cast(source), shared_info->start_position(), shared_info->end_position()); FunctionLiteral* result = ParseLazy(info, &stream, &zone_scope); return result; } else { GenericStringUC16CharacterStream stream(source, shared_info->start_position(), shared_info->end_position()); FunctionLiteral* result = ParseLazy(info, &stream, &zone_scope); return result; } } FunctionLiteral* Parser::ParseLazy(CompilationInfo* info, UC16CharacterStream* source, ZoneScope* zone_scope) { Handle<SharedFunctionInfo> shared_info = info->shared_info(); scanner_.Initialize(source); ASSERT(target_stack_ == NULL); Handle<String> name(String::cast(shared_info->name())); fni_ = new(zone()) FuncNameInferrer(); fni_->PushEnclosingName(name); mode_ = PARSE_EAGERLY; // Place holder for the result. FunctionLiteral* result = NULL; { // Parse the function literal. Handle<String> no_name = isolate()->factory()->empty_symbol(); Scope* scope = NewScope(top_scope_, Scope::GLOBAL_SCOPE, inside_with()); if (!info->closure().is_null()) { scope = Scope::DeserializeScopeChain(info, scope); } LexicalScope lexical_scope(this, scope, isolate()); if (shared_info->strict_mode()) { top_scope_->EnableStrictMode(); } FunctionLiteralType type = shared_info->is_expression() ? EXPRESSION : DECLARATION; bool ok = true; result = ParseFunctionLiteral(name, false, // Strict mode name already checked. RelocInfo::kNoPosition, type, &ok); // Make sure the results agree. ASSERT(ok == (result != NULL)); } // Make sure the target stack is empty. ASSERT(target_stack_ == NULL); // If there was a stack overflow we have to get rid of AST and it is // not safe to do before scope has been deleted. if (result == NULL) { zone_scope->DeleteOnExit(); if (stack_overflow_) isolate()->StackOverflow(); } else { Handle<String> inferred_name(shared_info->inferred_name()); result->set_inferred_name(inferred_name); } return result; } Handle<String> Parser::GetSymbol(bool* ok) { int symbol_id = -1; if (pre_data() != NULL) { symbol_id = pre_data()->GetSymbolIdentifier(); } return LookupSymbol(symbol_id); } void Parser::ReportMessage(const char* type, Vector<const char*> args) { Scanner::Location source_location = scanner().location(); ReportMessageAt(source_location, type, args); } void Parser::ReportMessageAt(Scanner::Location source_location, const char* type, Vector<const char*> args) { MessageLocation location(script_, source_location.beg_pos, source_location.end_pos); Factory* factory = isolate()->factory(); Handle<FixedArray> elements = factory->NewFixedArray(args.length()); for (int i = 0; i < args.length(); i++) { Handle<String> arg_string = factory->NewStringFromUtf8(CStrVector(args[i])); elements->set(i, *arg_string); } Handle<JSArray> array = factory->NewJSArrayWithElements(elements); Handle<Object> result = factory->NewSyntaxError(type, array); isolate()->Throw(*result, &location); } void Parser::ReportMessageAt(Scanner::Location source_location, const char* type, Vector<Handle<String> > args) { MessageLocation location(script_, source_location.beg_pos, source_location.end_pos); Factory* factory = isolate()->factory(); Handle<FixedArray> elements = factory->NewFixedArray(args.length()); for (int i = 0; i < args.length(); i++) { elements->set(i, *args[i]); } Handle<JSArray> array = factory->NewJSArrayWithElements(elements); Handle<Object> result = factory->NewSyntaxError(type, array); isolate()->Throw(*result, &location); } // Base class containing common code for the different finder classes used by // the parser. class ParserFinder { protected: ParserFinder() {} static Assignment* AsAssignment(Statement* stat) { if (stat == NULL) return NULL; ExpressionStatement* exp_stat = stat->AsExpressionStatement(); if (exp_stat == NULL) return NULL; return exp_stat->expression()->AsAssignment(); } }; // An InitializationBlockFinder finds and marks sequences of statements of the // form expr.a = ...; expr.b = ...; etc. class InitializationBlockFinder : public ParserFinder { public: InitializationBlockFinder() : first_in_block_(NULL), last_in_block_(NULL), block_size_(0) {} ~InitializationBlockFinder() { if (InBlock()) EndBlock(); } void Update(Statement* stat) { Assignment* assignment = AsAssignment(stat); if (InBlock()) { if (BlockContinues(assignment)) { UpdateBlock(assignment); } else { EndBlock(); } } if (!InBlock() && (assignment != NULL) && (assignment->op() == Token::ASSIGN)) { StartBlock(assignment); } } private: // The minimum number of contiguous assignment that will // be treated as an initialization block. Benchmarks show that // the overhead exceeds the savings below this limit. static const int kMinInitializationBlock = 3; // Returns true if the expressions appear to denote the same object. // In the context of initialization blocks, we only consider expressions // of the form 'expr.x' or expr["x"]. static bool SameObject(Expression* e1, Expression* e2) { VariableProxy* v1 = e1->AsVariableProxy(); VariableProxy* v2 = e2->AsVariableProxy(); if (v1 != NULL && v2 != NULL) { return v1->name()->Equals(*v2->name()); } Property* p1 = e1->AsProperty(); Property* p2 = e2->AsProperty(); if ((p1 == NULL) || (p2 == NULL)) return false; Literal* key1 = p1->key()->AsLiteral(); Literal* key2 = p2->key()->AsLiteral(); if ((key1 == NULL) || (key2 == NULL)) return false; if (!key1->handle()->IsString() || !key2->handle()->IsString()) { return false; } String* name1 = String::cast(*key1->handle()); String* name2 = String::cast(*key2->handle()); if (!name1->Equals(name2)) return false; return SameObject(p1->obj(), p2->obj()); } // Returns true if the expressions appear to denote different properties // of the same object. static bool PropertyOfSameObject(Expression* e1, Expression* e2) { Property* p1 = e1->AsProperty(); Property* p2 = e2->AsProperty(); if ((p1 == NULL) || (p2 == NULL)) return false; return SameObject(p1->obj(), p2->obj()); } bool BlockContinues(Assignment* assignment) { if ((assignment == NULL) || (first_in_block_ == NULL)) return false; if (assignment->op() != Token::ASSIGN) return false; return PropertyOfSameObject(first_in_block_->target(), assignment->target()); } void StartBlock(Assignment* assignment) { first_in_block_ = assignment; last_in_block_ = assignment; block_size_ = 1; } void UpdateBlock(Assignment* assignment) { last_in_block_ = assignment; ++block_size_; } void EndBlock() { if (block_size_ >= kMinInitializationBlock) { first_in_block_->mark_block_start(); last_in_block_->mark_block_end(); } last_in_block_ = first_in_block_ = NULL; block_size_ = 0; } bool InBlock() { return first_in_block_ != NULL; } Assignment* first_in_block_; Assignment* last_in_block_; int block_size_; DISALLOW_COPY_AND_ASSIGN(InitializationBlockFinder); }; // A ThisNamedPropertyAssigmentFinder finds and marks statements of the form // this.x = ...;, where x is a named property. It also determines whether a // function contains only assignments of this type. class ThisNamedPropertyAssigmentFinder : public ParserFinder { public: explicit ThisNamedPropertyAssigmentFinder(Isolate* isolate) : isolate_(isolate), only_simple_this_property_assignments_(true), names_(NULL), assigned_arguments_(NULL), assigned_constants_(NULL) {} void Update(Scope* scope, Statement* stat) { // Bail out if function already has property assignment that are // not simple this property assignments. if (!only_simple_this_property_assignments_) { return; } // Check whether this statement is of the form this.x = ...; Assignment* assignment = AsAssignment(stat); if (IsThisPropertyAssignment(assignment)) { HandleThisPropertyAssignment(scope, assignment); } else { only_simple_this_property_assignments_ = false; } } // Returns whether only statements of the form this.x = y; where y is either a // constant or a function argument was encountered. bool only_simple_this_property_assignments() { return only_simple_this_property_assignments_; } // Returns a fixed array containing three elements for each assignment of the // form this.x = y; Handle<FixedArray> GetThisPropertyAssignments() { if (names_ == NULL) { return isolate_->factory()->empty_fixed_array(); } ASSERT(names_ != NULL); ASSERT(assigned_arguments_ != NULL); ASSERT_EQ(names_->length(), assigned_arguments_->length()); ASSERT_EQ(names_->length(), assigned_constants_->length()); Handle<FixedArray> assignments = isolate_->factory()->NewFixedArray(names_->length() * 3); for (int i = 0; i < names_->length(); i++) { assignments->set(i * 3, *names_->at(i)); assignments->set(i * 3 + 1, Smi::FromInt(assigned_arguments_->at(i))); assignments->set(i * 3 + 2, *assigned_constants_->at(i)); } return assignments; } private: bool IsThisPropertyAssignment(Assignment* assignment) { if (assignment != NULL) { Property* property = assignment->target()->AsProperty(); return assignment->op() == Token::ASSIGN && property != NULL && property->obj()->AsVariableProxy() != NULL && property->obj()->AsVariableProxy()->is_this(); } return false; } void HandleThisPropertyAssignment(Scope* scope, Assignment* assignment) { // Check that the property assigned to is a named property, which is not // __proto__. Property* property = assignment->target()->AsProperty(); ASSERT(property != NULL); Literal* literal = property->key()->AsLiteral(); uint32_t dummy; if (literal != NULL && literal->handle()->IsString() && !String::cast(*(literal->handle()))->Equals( isolate_->heap()->Proto_symbol()) && !String::cast(*(literal->handle()))->AsArrayIndex(&dummy)) { Handle<String> key = Handle<String>::cast(literal->handle()); // Check whether the value assigned is either a constant or matches the // name of one of the arguments to the function. if (assignment->value()->AsLiteral() != NULL) { // Constant assigned. Literal* literal = assignment->value()->AsLiteral(); AssignmentFromConstant(key, literal->handle()); return; } else if (assignment->value()->AsVariableProxy() != NULL) { // Variable assigned. Handle<String> name = assignment->value()->AsVariableProxy()->name(); // Check whether the variable assigned matches an argument name. for (int i = 0; i < scope->num_parameters(); i++) { if (*scope->parameter(i)->name() == *name) { // Assigned from function argument. AssignmentFromParameter(key, i); return; } } } } // It is not a simple "this.x = value;" assignment with a constant // or parameter value. AssignmentFromSomethingElse(); } void AssignmentFromParameter(Handle<String> name, int index) { EnsureAllocation(); names_->Add(name); assigned_arguments_->Add(index); assigned_constants_->Add(isolate_->factory()->undefined_value()); } void AssignmentFromConstant(Handle<String> name, Handle<Object> value) { EnsureAllocation(); names_->Add(name); assigned_arguments_->Add(-1); assigned_constants_->Add(value); } void AssignmentFromSomethingElse() { // The this assignment is not a simple one. only_simple_this_property_assignments_ = false; } void EnsureAllocation() { if (names_ == NULL) { ASSERT(assigned_arguments_ == NULL); ASSERT(assigned_constants_ == NULL); names_ = new ZoneStringList(4); assigned_arguments_ = new ZoneList<int>(4); assigned_constants_ = new ZoneObjectList(4); } } Isolate* isolate_; bool only_simple_this_property_assignments_; ZoneStringList* names_; ZoneList<int>* assigned_arguments_; ZoneObjectList* assigned_constants_; }; void* Parser::ParseSourceElements(ZoneList<Statement*>* processor, int end_token, bool* ok) { // SourceElements :: // (Statement)* <end_token> // Allocate a target stack to use for this set of source // elements. This way, all scripts and functions get their own // target stack thus avoiding illegal breaks and continues across // functions. TargetScope scope(&this->target_stack_); ASSERT(processor != NULL); InitializationBlockFinder block_finder; ThisNamedPropertyAssigmentFinder this_property_assignment_finder(isolate()); bool directive_prologue = true; // Parsing directive prologue. while (peek() != end_token) { if (directive_prologue && peek() != Token::STRING) { directive_prologue = false; } Scanner::Location token_loc = scanner().peek_location(); Statement* stat; if (peek() == Token::FUNCTION) { // FunctionDeclaration is only allowed in the context of SourceElements // (Ecma 262 5th Edition, clause 14): // SourceElement: // Statement // FunctionDeclaration // Common language extension is to allow function declaration in place // of any statement. This language extension is disabled in strict mode. stat = ParseFunctionDeclaration(CHECK_OK); } else { stat = ParseStatement(NULL, CHECK_OK); } if (stat == NULL || stat->IsEmpty()) { directive_prologue = false; // End of directive prologue. continue; } if (directive_prologue) { // A shot at a directive. ExpressionStatement *e_stat; Literal *literal; // Still processing directive prologue? if ((e_stat = stat->AsExpressionStatement()) != NULL && (literal = e_stat->expression()->AsLiteral()) != NULL && literal->handle()->IsString()) { Handle<String> directive = Handle<String>::cast(literal->handle()); // Check "use strict" directive (ES5 14.1). if (!top_scope_->is_strict_mode() && directive->Equals(isolate()->heap()->use_strict()) && token_loc.end_pos - token_loc.beg_pos == isolate()->heap()->use_strict()->length() + 2) { top_scope_->EnableStrictMode(); // "use strict" is the only directive for now. directive_prologue = false; } } else { // End of the directive prologue. directive_prologue = false; } } // We find and mark the initialization blocks on top level code only. // This is because the optimization prevents reuse of the map transitions, // so it should be used only for code that will only be run once. if (top_scope_->is_global_scope()) { block_finder.Update(stat); } // Find and mark all assignments to named properties in this (this.x =) if (top_scope_->is_function_scope()) { this_property_assignment_finder.Update(top_scope_, stat); } processor->Add(stat); } // Propagate the collected information on this property assignments. if (top_scope_->is_function_scope()) { bool only_simple_this_property_assignments = this_property_assignment_finder.only_simple_this_property_assignments() && top_scope_->declarations()->length() == 0; if (only_simple_this_property_assignments) { lexical_scope_->SetThisPropertyAssignmentInfo( only_simple_this_property_assignments, this_property_assignment_finder.GetThisPropertyAssignments()); } } return 0; } Statement* Parser::ParseStatement(ZoneStringList* labels, bool* ok) { // Statement :: // Block // VariableStatement // EmptyStatement // ExpressionStatement // IfStatement // IterationStatement // ContinueStatement // BreakStatement // ReturnStatement // WithStatement // LabelledStatement // SwitchStatement // ThrowStatement // TryStatement // DebuggerStatement // Note: Since labels can only be used by 'break' and 'continue' // statements, which themselves are only valid within blocks, // iterations or 'switch' statements (i.e., BreakableStatements), // labels can be simply ignored in all other cases; except for // trivial labeled break statements 'label: break label' which is // parsed into an empty statement. // Keep the source position of the statement int statement_pos = scanner().peek_location().beg_pos; Statement* stmt = NULL; switch (peek()) { case Token::LBRACE: return ParseBlock(labels, ok); case Token::CONST: // fall through case Token::VAR: stmt = ParseVariableStatement(ok); break; case Token::SEMICOLON: Next(); return EmptyStatement(); case Token::IF: stmt = ParseIfStatement(labels, ok); break; case Token::DO: stmt = ParseDoWhileStatement(labels, ok); break; case Token::WHILE: stmt = ParseWhileStatement(labels, ok); break; case Token::FOR: stmt = ParseForStatement(labels, ok); break; case Token::CONTINUE: stmt = ParseContinueStatement(ok); break; case Token::BREAK: stmt = ParseBreakStatement(labels, ok); break; case Token::RETURN: stmt = ParseReturnStatement(ok); break; case Token::WITH: stmt = ParseWithStatement(labels, ok); break; case Token::SWITCH: stmt = ParseSwitchStatement(labels, ok); break; case Token::THROW: stmt = ParseThrowStatement(ok); break; case Token::TRY: { // NOTE: It is somewhat complicated to have labels on // try-statements. When breaking out of a try-finally statement, // one must take great care not to treat it as a // fall-through. It is much easier just to wrap the entire // try-statement in a statement block and put the labels there Block* result = new(zone()) Block(labels, 1, false); Target target(&this->target_stack_, result); TryStatement* statement = ParseTryStatement(CHECK_OK); if (statement) { statement->set_statement_pos(statement_pos); } if (result) result->AddStatement(statement); return result; } case Token::FUNCTION: { // In strict mode, FunctionDeclaration is only allowed in the context // of SourceElements. if (top_scope_->is_strict_mode()) { ReportMessageAt(scanner().peek_location(), "strict_function", Vector<const char*>::empty()); *ok = false; return NULL; } return ParseFunctionDeclaration(ok); } case Token::NATIVE: return ParseNativeDeclaration(ok); case Token::DEBUGGER: stmt = ParseDebuggerStatement(ok); break; default: stmt = ParseExpressionOrLabelledStatement(labels, ok); } // Store the source position of the statement if (stmt != NULL) stmt->set_statement_pos(statement_pos); return stmt; } VariableProxy* Parser::Declare(Handle<String> name, Variable::Mode mode, FunctionLiteral* fun, bool resolve, bool* ok) { Variable* var = NULL; // If we are inside a function, a declaration of a variable // is a truly local variable, and the scope of the variable // is always the function scope. // If a function scope exists, then we can statically declare this // variable and also set its mode. In any case, a Declaration node // will be added to the scope so that the declaration can be added // to the corresponding activation frame at runtime if necessary. // For instance declarations inside an eval scope need to be added // to the calling function context. // Similarly, strict mode eval scope does not leak variable declarations to // the caller's scope so we declare all locals, too. if (top_scope_->is_function_scope() || top_scope_->is_strict_mode_eval_scope()) { // Declare the variable in the function scope. var = top_scope_->LocalLookup(name); if (var == NULL) { // Declare the name. var = top_scope_->DeclareLocal(name, mode); } else { // The name was declared before; check for conflicting // re-declarations. If the previous declaration was a const or the // current declaration is a const then we have a conflict. There is // similar code in runtime.cc in the Declare functions. if ((mode == Variable::CONST) || (var->mode() == Variable::CONST)) { // We only have vars and consts in declarations. ASSERT(var->mode() == Variable::VAR || var->mode() == Variable::CONST); const char* type = (var->mode() == Variable::VAR) ? "var" : "const"; Handle<String> type_string = isolate()->factory()->NewStringFromUtf8(CStrVector(type), TENURED); Expression* expression = NewThrowTypeError(isolate()->factory()->redeclaration_symbol(), type_string, name); top_scope_->SetIllegalRedeclaration(expression); } } } // We add a declaration node for every declaration. The compiler // will only generate code if necessary. In particular, declarations // for inner local variables that do not represent functions won't // result in any generated code. // // Note that we always add an unresolved proxy even if it's not // used, simply because we don't know in this method (w/o extra // parameters) if the proxy is needed or not. The proxy will be // bound during variable resolution time unless it was pre-bound // below. // // WARNING: This will lead to multiple declaration nodes for the // same variable if it is declared several times. This is not a // semantic issue as long as we keep the source order, but it may be // a performance issue since it may lead to repeated // Runtime::DeclareContextSlot() calls. VariableProxy* proxy = top_scope_->NewUnresolved(name, inside_with()); top_scope_->AddDeclaration(new(zone()) Declaration(proxy, mode, fun)); // For global const variables we bind the proxy to a variable. if (mode == Variable::CONST && top_scope_->is_global_scope()) { ASSERT(resolve); // should be set by all callers Variable::Kind kind = Variable::NORMAL; var = new(zone()) Variable(top_scope_, name, Variable::CONST, true, kind); } // If requested and we have a local variable, bind the proxy to the variable // at parse-time. This is used for functions (and consts) declared inside // statements: the corresponding function (or const) variable must be in the // function scope and not a statement-local scope, e.g. as provided with a // 'with' statement: // // with (obj) { // function f() {} // } // // which is translated into: // // with (obj) { // // in this case this is not: 'var f; f = function () {};' // var f = function () {}; // } // // Note that if 'f' is accessed from inside the 'with' statement, it // will be allocated in the context (because we must be able to look // it up dynamically) but it will also be accessed statically, i.e., // with a context slot index and a context chain length for this // initialization code. Thus, inside the 'with' statement, we need // both access to the static and the dynamic context chain; the // runtime needs to provide both. if (resolve && var != NULL) proxy->BindTo(var); return proxy; } // Language extension which is only enabled for source files loaded // through the API's extension mechanism. A native function // declaration is resolved by looking up the function through a // callback provided by the extension. Statement* Parser::ParseNativeDeclaration(bool* ok) { if (extension_ == NULL) { ReportUnexpectedToken(Token::NATIVE); *ok = false; return NULL; } Expect(Token::NATIVE, CHECK_OK); Expect(Token::FUNCTION, CHECK_OK); Handle<String> name = ParseIdentifier(CHECK_OK); Expect(Token::LPAREN, CHECK_OK); bool done = (peek() == Token::RPAREN); while (!done) { ParseIdentifier(CHECK_OK); done = (peek() == Token::RPAREN); if (!done) { Expect(Token::COMMA, CHECK_OK); } } Expect(Token::RPAREN, CHECK_OK); Expect(Token::SEMICOLON, CHECK_OK); // Make sure that the function containing the native declaration // isn't lazily compiled. The extension structures are only // accessible while parsing the first time not when reparsing // because of lazy compilation. top_scope_->ForceEagerCompilation(); // Compute the function template for the native function. v8::Handle<v8::FunctionTemplate> fun_template = extension_->GetNativeFunction(v8::Utils::ToLocal(name)); ASSERT(!fun_template.IsEmpty()); // Instantiate the function and create a shared function info from it. Handle<JSFunction> fun = Utils::OpenHandle(*fun_template->GetFunction()); const int literals = fun->NumberOfLiterals(); Handle<Code> code = Handle<Code>(fun->shared()->code()); Handle<Code> construct_stub = Handle<Code>(fun->shared()->construct_stub()); Handle<SharedFunctionInfo> shared = isolate()->factory()->NewSharedFunctionInfo(name, literals, code, Handle<SerializedScopeInfo>(fun->shared()->scope_info())); shared->set_construct_stub(*construct_stub); // Copy the function data to the shared function info. shared->set_function_data(fun->shared()->function_data()); int parameters = fun->shared()->formal_parameter_count(); shared->set_formal_parameter_count(parameters); // TODO(1240846): It's weird that native function declarations are // introduced dynamically when we meet their declarations, whereas // other functions are setup when entering the surrounding scope. SharedFunctionInfoLiteral* lit = new(zone()) SharedFunctionInfoLiteral(shared); VariableProxy* var = Declare(name, Variable::VAR, NULL, true, CHECK_OK); return new(zone()) ExpressionStatement(new(zone()) Assignment( Token::INIT_VAR, var, lit, RelocInfo::kNoPosition)); } Statement* Parser::ParseFunctionDeclaration(bool* ok) { // FunctionDeclaration :: // 'function' Identifier '(' FormalParameterListopt ')' '{' FunctionBody '}' Expect(Token::FUNCTION, CHECK_OK); int function_token_position = scanner().location().beg_pos; bool is_reserved = false; Handle<String> name = ParseIdentifierOrReservedWord(&is_reserved, CHECK_OK); FunctionLiteral* fun = ParseFunctionLiteral(name, is_reserved, function_token_position, DECLARATION, CHECK_OK); // Even if we're not at the top-level of the global or a function // scope, we treat is as such and introduce the function with it's // initial value upon entering the corresponding scope. Declare(name, Variable::VAR, fun, true, CHECK_OK); return EmptyStatement(); } Block* Parser::ParseBlock(ZoneStringList* labels, bool* ok) { // Block :: // '{' Statement* '}' // Note that a Block does not introduce a new execution scope! // (ECMA-262, 3rd, 12.2) // // Construct block expecting 16 statements. Block* result = new(zone()) Block(labels, 16, false); Target target(&this->target_stack_, result); Expect(Token::LBRACE, CHECK_OK); while (peek() != Token::RBRACE) { Statement* stat = ParseStatement(NULL, CHECK_OK); if (stat && !stat->IsEmpty()) result->AddStatement(stat); } Expect(Token::RBRACE, CHECK_OK); return result; } Block* Parser::ParseVariableStatement(bool* ok) { // VariableStatement :: // VariableDeclarations ';' Expression* dummy; // to satisfy the ParseVariableDeclarations() signature Block* result = ParseVariableDeclarations(true, &dummy, CHECK_OK); ExpectSemicolon(CHECK_OK); return result; } bool Parser::IsEvalOrArguments(Handle<String> string) { return string.is_identical_to(isolate()->factory()->eval_symbol()) || string.is_identical_to(isolate()->factory()->arguments_symbol()); } // If the variable declaration declares exactly one non-const // variable, then *var is set to that variable. In all other cases, // *var is untouched; in particular, it is the caller's responsibility // to initialize it properly. This mechanism is used for the parsing // of 'for-in' loops. Block* Parser::ParseVariableDeclarations(bool accept_IN, Expression** var, bool* ok) { // VariableDeclarations :: // ('var' | 'const') (Identifier ('=' AssignmentExpression)?)+[','] Variable::Mode mode = Variable::VAR; bool is_const = false; if (peek() == Token::VAR) { Consume(Token::VAR); } else if (peek() == Token::CONST) { Consume(Token::CONST); if (top_scope_->is_strict_mode()) { ReportMessage("strict_const", Vector<const char*>::empty()); *ok = false; return NULL; } mode = Variable::CONST; is_const = true; } else { UNREACHABLE(); // by current callers } // The scope of a variable/const declared anywhere inside a function // is the entire function (ECMA-262, 3rd, 10.1.3, and 12.2). Thus we can // transform a source-level variable/const declaration into a (Function) // Scope declaration, and rewrite the source-level initialization into an // assignment statement. We use a block to collect multiple assignments. // // We mark the block as initializer block because we don't want the // rewriter to add a '.result' assignment to such a block (to get compliant // behavior for code such as print(eval('var x = 7')), and for cosmetic // reasons when pretty-printing. Also, unless an assignment (initialization) // is inside an initializer block, it is ignored. // // Create new block with one expected declaration. Block* block = new(zone()) Block(NULL, 1, true); VariableProxy* last_var = NULL; // the last variable declared int nvars = 0; // the number of variables declared do { if (fni_ != NULL) fni_->Enter(); // Parse variable name. if (nvars > 0) Consume(Token::COMMA); Handle<String> name = ParseIdentifier(CHECK_OK); if (fni_ != NULL) fni_->PushVariableName(name); // Strict mode variables may not be named eval or arguments if (top_scope_->is_strict_mode() && IsEvalOrArguments(name)) { ReportMessage("strict_var_name", Vector<const char*>::empty()); *ok = false; return NULL; } // Declare variable. // Note that we *always* must treat the initial value via a separate init // assignment for variables and constants because the value must be assigned // when the variable is encountered in the source. But the variable/constant // is declared (and set to 'undefined') upon entering the function within // which the variable or constant is declared. Only function variables have // an initial value in the declaration (because they are initialized upon // entering the function). // // If we have a const declaration, in an inner scope, the proxy is always // bound to the declared variable (independent of possibly surrounding with // statements). last_var = Declare(name, mode, NULL, is_const /* always bound for CONST! */, CHECK_OK); nvars++; // Parse initialization expression if present and/or needed. A // declaration of the form: // // var v = x; // // is syntactic sugar for: // // var v; v = x; // // In particular, we need to re-lookup 'v' as it may be a // different 'v' than the 'v' in the declaration (if we are inside // a 'with' statement that makes a object property with name 'v' // visible). // // However, note that const declarations are different! A const // declaration of the form: // // const c = x; // // is *not* syntactic sugar for: // // const c; c = x; // // The "variable" c initialized to x is the same as the declared // one - there is no re-lookup (see the last parameter of the // Declare() call above). Expression* value = NULL; int position = -1; if (peek() == Token::ASSIGN) { Expect(Token::ASSIGN, CHECK_OK); position = scanner().location().beg_pos; value = ParseAssignmentExpression(accept_IN, CHECK_OK); // Don't infer if it is "a = function(){...}();"-like expression. if (fni_ != NULL && value->AsCall() == NULL) fni_->Infer(); } // Make sure that 'const c' actually initializes 'c' to undefined // even though it seems like a stupid thing to do. if (value == NULL && is_const) { value = GetLiteralUndefined(); } // Global variable declarations must be compiled in a specific // way. When the script containing the global variable declaration // is entered, the global variable must be declared, so that if it // doesn't exist (not even in a prototype of the global object) it // gets created with an initial undefined value. This is handled // by the declarations part of the function representing the // top-level global code; see Runtime::DeclareGlobalVariable. If // it already exists (in the object or in a prototype), it is // *not* touched until the variable declaration statement is // executed. // // Executing the variable declaration statement will always // guarantee to give the global object a "local" variable; a // variable defined in the global object and not in any // prototype. This way, global variable declarations can shadow // properties in the prototype chain, but only after the variable // declaration statement has been executed. This is important in // browsers where the global object (window) has lots of // properties defined in prototype objects. if (top_scope_->is_global_scope()) { // Compute the arguments for the runtime call. ZoneList<Expression*>* arguments = new ZoneList<Expression*>(3); // We have at least 1 parameter. arguments->Add(new(zone()) Literal(name)); CallRuntime* initialize; if (is_const) { arguments->Add(value); value = NULL; // zap the value to avoid the unnecessary assignment // Construct the call to Runtime_InitializeConstGlobal // and add it to the initialization statement block. // Note that the function does different things depending on // the number of arguments (1 or 2). initialize = new(zone()) CallRuntime( isolate()->factory()->InitializeConstGlobal_symbol(), Runtime::FunctionForId(Runtime::kInitializeConstGlobal), arguments); } else { // Add strict mode. // We may want to pass singleton to avoid Literal allocations. arguments->Add(NewNumberLiteral( top_scope_->is_strict_mode() ? kStrictMode : kNonStrictMode)); // Be careful not to assign a value to the global variable if // we're in a with. The initialization value should not // necessarily be stored in the global object in that case, // which is why we need to generate a separate assignment node. if (value != NULL && !inside_with()) { arguments->Add(value); value = NULL; // zap the value to avoid the unnecessary assignment } // Construct the call to Runtime_InitializeVarGlobal // and add it to the initialization statement block. // Note that the function does different things depending on // the number of arguments (2 or 3). initialize = new(zone()) CallRuntime( isolate()->factory()->InitializeVarGlobal_symbol(), Runtime::FunctionForId(Runtime::kInitializeVarGlobal), arguments); } block->AddStatement(new(zone()) ExpressionStatement(initialize)); } // Add an assignment node to the initialization statement block if // we still have a pending initialization value. We must distinguish // between variables and constants: Variable initializations are simply // assignments (with all the consequences if they are inside a 'with' // statement - they may change a 'with' object property). Constant // initializations always assign to the declared constant which is // always at the function scope level. This is only relevant for // dynamically looked-up variables and constants (the start context // for constant lookups is always the function context, while it is // the top context for variables). Sigh... if (value != NULL) { Token::Value op = (is_const ? Token::INIT_CONST : Token::INIT_VAR); Assignment* assignment = new(zone()) Assignment(op, last_var, value, position); if (block) { block->AddStatement(new(zone()) ExpressionStatement(assignment)); } } if (fni_ != NULL) fni_->Leave(); } while (peek() == Token::COMMA); if (!is_const && nvars == 1) { // We have a single, non-const variable. ASSERT(last_var != NULL); *var = last_var; } return block; } static bool ContainsLabel(ZoneStringList* labels, Handle<String> label) { ASSERT(!label.is_null()); if (labels != NULL) for (int i = labels->length(); i-- > 0; ) if (labels->at(i).is_identical_to(label)) return true; return false; } Statement* Parser::ParseExpressionOrLabelledStatement(ZoneStringList* labels, bool* ok) { // ExpressionStatement | LabelledStatement :: // Expression ';' // Identifier ':' Statement bool starts_with_idenfifier = peek_any_identifier(); Expression* expr = ParseExpression(true, CHECK_OK); if (peek() == Token::COLON && starts_with_idenfifier && expr && expr->AsVariableProxy() != NULL && !expr->AsVariableProxy()->is_this()) { // Expression is a single identifier, and not, e.g., a parenthesized // identifier. VariableProxy* var = expr->AsVariableProxy(); Handle<String> label = var->name(); // TODO(1240780): We don't check for redeclaration of labels // during preparsing since keeping track of the set of active // labels requires nontrivial changes to the way scopes are // structured. However, these are probably changes we want to // make later anyway so we should go back and fix this then. if (ContainsLabel(labels, label) || TargetStackContainsLabel(label)) { SmartPointer<char> c_string = label->ToCString(DISALLOW_NULLS); const char* elms[2] = { "Label", *c_string }; Vector<const char*> args(elms, 2); ReportMessage("redeclaration", args); *ok = false; return NULL; } if (labels == NULL) labels = new ZoneStringList(4); labels->Add(label); // Remove the "ghost" variable that turned out to be a label // from the top scope. This way, we don't try to resolve it // during the scope processing. top_scope_->RemoveUnresolved(var); Expect(Token::COLON, CHECK_OK); return ParseStatement(labels, ok); } // Parsed expression statement. ExpectSemicolon(CHECK_OK); return new(zone()) ExpressionStatement(expr); } IfStatement* Parser::ParseIfStatement(ZoneStringList* labels, bool* ok) { // IfStatement :: // 'if' '(' Expression ')' Statement ('else' Statement)? Expect(Token::IF, CHECK_OK); Expect(Token::LPAREN, CHECK_OK); Expression* condition = ParseExpression(true, CHECK_OK); Expect(Token::RPAREN, CHECK_OK); Statement* then_statement = ParseStatement(labels, CHECK_OK); Statement* else_statement = NULL; if (peek() == Token::ELSE) { Next(); else_statement = ParseStatement(labels, CHECK_OK); } else { else_statement = EmptyStatement(); } return new(zone()) IfStatement(condition, then_statement, else_statement); } Statement* Parser::ParseContinueStatement(bool* ok) { // ContinueStatement :: // 'continue' Identifier? ';' Expect(Token::CONTINUE, CHECK_OK); Handle<String> label = Handle<String>::null(); Token::Value tok = peek(); if (!scanner().has_line_terminator_before_next() && tok != Token::SEMICOLON && tok != Token::RBRACE && tok != Token::EOS) { label = ParseIdentifier(CHECK_OK); } IterationStatement* target = NULL; target = LookupContinueTarget(label, CHECK_OK); if (target == NULL) { // Illegal continue statement. const char* message = "illegal_continue"; Vector<Handle<String> > args; if (!label.is_null()) { message = "unknown_label"; args = Vector<Handle<String> >(&label, 1); } ReportMessageAt(scanner().location(), message, args); *ok = false; return NULL; } ExpectSemicolon(CHECK_OK); return new(zone()) ContinueStatement(target); } Statement* Parser::ParseBreakStatement(ZoneStringList* labels, bool* ok) { // BreakStatement :: // 'break' Identifier? ';' Expect(Token::BREAK, CHECK_OK); Handle<String> label; Token::Value tok = peek(); if (!scanner().has_line_terminator_before_next() && tok != Token::SEMICOLON && tok != Token::RBRACE && tok != Token::EOS) { label = ParseIdentifier(CHECK_OK); } // Parse labeled break statements that target themselves into // empty statements, e.g. 'l1: l2: l3: break l2;' if (!label.is_null() && ContainsLabel(labels, label)) { return EmptyStatement(); } BreakableStatement* target = NULL; target = LookupBreakTarget(label, CHECK_OK); if (target == NULL) { // Illegal break statement. const char* message = "illegal_break"; Vector<Handle<String> > args; if (!label.is_null()) { message = "unknown_label"; args = Vector<Handle<String> >(&label, 1); } ReportMessageAt(scanner().location(), message, args); *ok = false; return NULL; } ExpectSemicolon(CHECK_OK); return new(zone()) BreakStatement(target); } Statement* Parser::ParseReturnStatement(bool* ok) { // ReturnStatement :: // 'return' Expression? ';' // Consume the return token. It is necessary to do the before // reporting any errors on it, because of the way errors are // reported (underlining). Expect(Token::RETURN, CHECK_OK); // An ECMAScript program is considered syntactically incorrect if it // contains a return statement that is not within the body of a // function. See ECMA-262, section 12.9, page 67. // // To be consistent with KJS we report the syntax error at runtime. if (!top_scope_->is_function_scope()) { Handle<String> type = isolate()->factory()->illegal_return_symbol(); Expression* throw_error = NewThrowSyntaxError(type, Handle<Object>::null()); return new(zone()) ExpressionStatement(throw_error); } Token::Value tok = peek(); if (scanner().has_line_terminator_before_next() || tok == Token::SEMICOLON || tok == Token::RBRACE || tok == Token::EOS) { ExpectSemicolon(CHECK_OK); return new(zone()) ReturnStatement(GetLiteralUndefined()); } Expression* expr = ParseExpression(true, CHECK_OK); ExpectSemicolon(CHECK_OK); return new(zone()) ReturnStatement(expr); } Block* Parser::WithHelper(Expression* obj, ZoneStringList* labels, bool is_catch_block, bool* ok) { // Parse the statement and collect escaping labels. ZoneList<Label*>* target_list = new ZoneList<Label*>(0); TargetCollector collector(target_list); Statement* stat; { Target target(&this->target_stack_, &collector); with_nesting_level_++; top_scope_->RecordWithStatement(); stat = ParseStatement(labels, CHECK_OK); with_nesting_level_--; } // Create resulting block with two statements. // 1: Evaluate the with expression. // 2: The try-finally block evaluating the body. Block* result = new(zone()) Block(NULL, 2, false); if (result != NULL) { result->AddStatement(new(zone()) WithEnterStatement(obj, is_catch_block)); // Create body block. Block* body = new(zone()) Block(NULL, 1, false); body->AddStatement(stat); // Create exit block. Block* exit = new(zone()) Block(NULL, 1, false); exit->AddStatement(new(zone()) WithExitStatement()); // Return a try-finally statement. TryFinallyStatement* wrapper = new(zone()) TryFinallyStatement(body, exit); wrapper->set_escaping_targets(collector.targets()); result->AddStatement(wrapper); } return result; } Statement* Parser::ParseWithStatement(ZoneStringList* labels, bool* ok) { // WithStatement :: // 'with' '(' Expression ')' Statement Expect(Token::WITH, CHECK_OK); if (top_scope_->is_strict_mode()) { ReportMessage("strict_mode_with", Vector<const char*>::empty()); *ok = false; return NULL; } Expect(Token::LPAREN, CHECK_OK); Expression* expr = ParseExpression(true, CHECK_OK); Expect(Token::RPAREN, CHECK_OK); return WithHelper(expr, labels, false, CHECK_OK); } CaseClause* Parser::ParseCaseClause(bool* default_seen_ptr, bool* ok) { // CaseClause :: // 'case' Expression ':' Statement* // 'default' ':' Statement* Expression* label = NULL; // NULL expression indicates default case if (peek() == Token::CASE) { Expect(Token::CASE, CHECK_OK); label = ParseExpression(true, CHECK_OK); } else { Expect(Token::DEFAULT, CHECK_OK); if (*default_seen_ptr) { ReportMessage("multiple_defaults_in_switch", Vector<const char*>::empty()); *ok = false; return NULL; } *default_seen_ptr = true; } Expect(Token::COLON, CHECK_OK); int pos = scanner().location().beg_pos; ZoneList<Statement*>* statements = new ZoneList<Statement*>(5); while (peek() != Token::CASE && peek() != Token::DEFAULT && peek() != Token::RBRACE) { Statement* stat = ParseStatement(NULL, CHECK_OK); statements->Add(stat); } return new(zone()) CaseClause(label, statements, pos); } SwitchStatement* Parser::ParseSwitchStatement(ZoneStringList* labels, bool* ok) { // SwitchStatement :: // 'switch' '(' Expression ')' '{' CaseClause* '}' SwitchStatement* statement = new(zone()) SwitchStatement(labels); Target target(&this->target_stack_, statement); Expect(Token::SWITCH, CHECK_OK); Expect(Token::LPAREN, CHECK_OK); Expression* tag = ParseExpression(true, CHECK_OK); Expect(Token::RPAREN, CHECK_OK); bool default_seen = false; ZoneList<CaseClause*>* cases = new ZoneList<CaseClause*>(4); Expect(Token::LBRACE, CHECK_OK); while (peek() != Token::RBRACE) { CaseClause* clause = ParseCaseClause(&default_seen, CHECK_OK); cases->Add(clause); } Expect(Token::RBRACE, CHECK_OK); if (statement) statement->Initialize(tag, cases); return statement; } Statement* Parser::ParseThrowStatement(bool* ok) { // ThrowStatement :: // 'throw' Expression ';' Expect(Token::THROW, CHECK_OK); int pos = scanner().location().beg_pos; if (scanner().has_line_terminator_before_next()) { ReportMessage("newline_after_throw", Vector<const char*>::empty()); *ok = false; return NULL; } Expression* exception = ParseExpression(true, CHECK_OK); ExpectSemicolon(CHECK_OK); return new(zone()) ExpressionStatement(new(zone()) Throw(exception, pos)); } TryStatement* Parser::ParseTryStatement(bool* ok) { // TryStatement :: // 'try' Block Catch // 'try' Block Finally // 'try' Block Catch Finally // // Catch :: // 'catch' '(' Identifier ')' Block // // Finally :: // 'finally' Block Expect(Token::TRY, CHECK_OK); ZoneList<Label*>* target_list = new ZoneList<Label*>(0); TargetCollector collector(target_list); Block* try_block; { Target target(&this->target_stack_, &collector); try_block = ParseBlock(NULL, CHECK_OK); } Block* catch_block = NULL; Variable* catch_var = NULL; Block* finally_block = NULL; Token::Value tok = peek(); if (tok != Token::CATCH && tok != Token::FINALLY) { ReportMessage("no_catch_or_finally", Vector<const char*>::empty()); *ok = false; return NULL; } // If we can break out from the catch block and there is a finally block, // then we will need to collect jump targets from the catch block. Since // we don't know yet if there will be a finally block, we always collect // the jump targets. ZoneList<Label*>* catch_target_list = new ZoneList<Label*>(0); TargetCollector catch_collector(catch_target_list); bool has_catch = false; if (tok == Token::CATCH) { has_catch = true; Consume(Token::CATCH); Expect(Token::LPAREN, CHECK_OK); Handle<String> name = ParseIdentifier(CHECK_OK); if (top_scope_->is_strict_mode() && IsEvalOrArguments(name)) { ReportMessage("strict_catch_variable", Vector<const char*>::empty()); *ok = false; return NULL; } Expect(Token::RPAREN, CHECK_OK); if (peek() == Token::LBRACE) { // Allocate a temporary for holding the finally state while // executing the finally block. catch_var = top_scope_->NewTemporary(isolate()->factory()->catch_var_symbol()); Literal* name_literal = new(zone()) Literal(name); VariableProxy* catch_var_use = new(zone()) VariableProxy(catch_var); Expression* obj = new(zone()) CatchExtensionObject(name_literal, catch_var_use); { Target target(&this->target_stack_, &catch_collector); catch_block = WithHelper(obj, NULL, true, CHECK_OK); } } else { Expect(Token::LBRACE, CHECK_OK); } tok = peek(); } if (tok == Token::FINALLY || !has_catch) { Consume(Token::FINALLY); // Declare a variable for holding the finally state while // executing the finally block. finally_block = ParseBlock(NULL, CHECK_OK); } // Simplify the AST nodes by converting: // 'try { } catch { } finally { }' // to: // 'try { try { } catch { } } finally { }' if (catch_block != NULL && finally_block != NULL) { VariableProxy* catch_var_defn = new(zone()) VariableProxy(catch_var); TryCatchStatement* statement = new(zone()) TryCatchStatement(try_block, catch_var_defn, catch_block); statement->set_escaping_targets(collector.targets()); try_block = new(zone()) Block(NULL, 1, false); try_block->AddStatement(statement); catch_block = NULL; } TryStatement* result = NULL; if (catch_block != NULL) { ASSERT(finally_block == NULL); VariableProxy* catch_var_defn = new(zone()) VariableProxy(catch_var); result = new(zone()) TryCatchStatement(try_block, catch_var_defn, catch_block); result->set_escaping_targets(collector.targets()); } else { ASSERT(finally_block != NULL); result = new(zone()) TryFinallyStatement(try_block, finally_block); // Add the jump targets of the try block and the catch block. for (int i = 0; i < collector.targets()->length(); i++) { catch_collector.AddTarget(collector.targets()->at(i)); } result->set_escaping_targets(catch_collector.targets()); } return result; } DoWhileStatement* Parser::ParseDoWhileStatement(ZoneStringList* labels, bool* ok) { // DoStatement :: // 'do' Statement 'while' '(' Expression ')' ';' DoWhileStatement* loop = new(zone()) DoWhileStatement(labels); Target target(&this->target_stack_, loop); Expect(Token::DO, CHECK_OK); Statement* body = ParseStatement(NULL, CHECK_OK); Expect(Token::WHILE, CHECK_OK); Expect(Token::LPAREN, CHECK_OK); if (loop != NULL) { int position = scanner().location().beg_pos; loop->set_condition_position(position); } Expression* cond = ParseExpression(true, CHECK_OK); Expect(Token::RPAREN, CHECK_OK); // Allow do-statements to be terminated with and without // semi-colons. This allows code such as 'do;while(0)return' to // parse, which would not be the case if we had used the // ExpectSemicolon() functionality here. if (peek() == Token::SEMICOLON) Consume(Token::SEMICOLON); if (loop != NULL) loop->Initialize(cond, body); return loop; } WhileStatement* Parser::ParseWhileStatement(ZoneStringList* labels, bool* ok) { // WhileStatement :: // 'while' '(' Expression ')' Statement WhileStatement* loop = new(zone()) WhileStatement(labels); Target target(&this->target_stack_, loop); Expect(Token::WHILE, CHECK_OK); Expect(Token::LPAREN, CHECK_OK); Expression* cond = ParseExpression(true, CHECK_OK); Expect(Token::RPAREN, CHECK_OK); Statement* body = ParseStatement(NULL, CHECK_OK); if (loop != NULL) loop->Initialize(cond, body); return loop; } Statement* Parser::ParseForStatement(ZoneStringList* labels, bool* ok) { // ForStatement :: // 'for' '(' Expression? ';' Expression? ';' Expression? ')' Statement Statement* init = NULL; Expect(Token::FOR, CHECK_OK); Expect(Token::LPAREN, CHECK_OK); if (peek() != Token::SEMICOLON) { if (peek() == Token::VAR || peek() == Token::CONST) { Expression* each = NULL; Block* variable_statement = ParseVariableDeclarations(false, &each, CHECK_OK); if (peek() == Token::IN && each != NULL) { ForInStatement* loop = new(zone()) ForInStatement(labels); Target target(&this->target_stack_, loop); Expect(Token::IN, CHECK_OK); Expression* enumerable = ParseExpression(true, CHECK_OK); Expect(Token::RPAREN, CHECK_OK); Statement* body = ParseStatement(NULL, CHECK_OK); loop->Initialize(each, enumerable, body); Block* result = new(zone()) Block(NULL, 2, false); result->AddStatement(variable_statement); result->AddStatement(loop); // Parsed for-in loop w/ variable/const declaration. return result; } else { init = variable_statement; } } else { Expression* expression = ParseExpression(false, CHECK_OK); if (peek() == Token::IN) { // Signal a reference error if the expression is an invalid // left-hand side expression. We could report this as a syntax // error here but for compatibility with JSC we choose to report // the error at runtime. if (expression == NULL || !expression->IsValidLeftHandSide()) { Handle<String> type = isolate()->factory()->invalid_lhs_in_for_in_symbol(); expression = NewThrowReferenceError(type); } ForInStatement* loop = new(zone()) ForInStatement(labels); Target target(&this->target_stack_, loop); Expect(Token::IN, CHECK_OK); Expression* enumerable = ParseExpression(true, CHECK_OK); Expect(Token::RPAREN, CHECK_OK); Statement* body = ParseStatement(NULL, CHECK_OK); if (loop) loop->Initialize(expression, enumerable, body); // Parsed for-in loop. return loop; } else { init = new(zone()) ExpressionStatement(expression); } } } // Standard 'for' loop ForStatement* loop = new(zone()) ForStatement(labels); Target target(&this->target_stack_, loop); // Parsed initializer at this point. Expect(Token::SEMICOLON, CHECK_OK); Expression* cond = NULL; if (peek() != Token::SEMICOLON) { cond = ParseExpression(true, CHECK_OK); } Expect(Token::SEMICOLON, CHECK_OK); Statement* next = NULL; if (peek() != Token::RPAREN) { Expression* exp = ParseExpression(true, CHECK_OK); next = new(zone()) ExpressionStatement(exp); } Expect(Token::RPAREN, CHECK_OK); Statement* body = ParseStatement(NULL, CHECK_OK); if (loop) loop->Initialize(init, cond, next, body); return loop; } // Precedence = 1 Expression* Parser::ParseExpression(bool accept_IN, bool* ok) { // Expression :: // AssignmentExpression // Expression ',' AssignmentExpression Expression* result = ParseAssignmentExpression(accept_IN, CHECK_OK); while (peek() == Token::COMMA) { Expect(Token::COMMA, CHECK_OK); int position = scanner().location().beg_pos; Expression* right = ParseAssignmentExpression(accept_IN, CHECK_OK); result = new(zone()) BinaryOperation(Token::COMMA, result, right, position); } return result; } // Precedence = 2 Expression* Parser::ParseAssignmentExpression(bool accept_IN, bool* ok) { // AssignmentExpression :: // ConditionalExpression // LeftHandSideExpression AssignmentOperator AssignmentExpression if (fni_ != NULL) fni_->Enter(); Expression* expression = ParseConditionalExpression(accept_IN, CHECK_OK); if (!Token::IsAssignmentOp(peek())) { if (fni_ != NULL) fni_->Leave(); // Parsed conditional expression only (no assignment). return expression; } // Signal a reference error if the expression is an invalid left-hand // side expression. We could report this as a syntax error here but // for compatibility with JSC we choose to report the error at // runtime. if (expression == NULL || !expression->IsValidLeftHandSide()) { Handle<String> type = isolate()->factory()->invalid_lhs_in_assignment_symbol(); expression = NewThrowReferenceError(type); } if (top_scope_->is_strict_mode()) { // Assignment to eval or arguments is disallowed in strict mode. CheckStrictModeLValue(expression, "strict_lhs_assignment", CHECK_OK); } Token::Value op = Next(); // Get assignment operator. int pos = scanner().location().beg_pos; Expression* right = ParseAssignmentExpression(accept_IN, CHECK_OK); // TODO(1231235): We try to estimate the set of properties set by // constructors. We define a new property whenever there is an // assignment to a property of 'this'. We should probably only add // properties if we haven't seen them before. Otherwise we'll // probably overestimate the number of properties. Property* property = expression ? expression->AsProperty() : NULL; if (op == Token::ASSIGN && property != NULL && property->obj()->AsVariableProxy() != NULL && property->obj()->AsVariableProxy()->is_this()) { lexical_scope_->AddProperty(); } // If we assign a function literal to a property we pretenure the // literal so it can be added as a constant function property. if (property != NULL && right->AsFunctionLiteral() != NULL) { right->AsFunctionLiteral()->set_pretenure(true); } if (fni_ != NULL) { // Check if the right hand side is a call to avoid inferring a // name if we're dealing with "a = function(){...}();"-like // expression. if ((op == Token::INIT_VAR || op == Token::INIT_CONST || op == Token::ASSIGN) && (right->AsCall() == NULL)) { fni_->Infer(); } fni_->Leave(); } return new(zone()) Assignment(op, expression, right, pos); } // Precedence = 3 Expression* Parser::ParseConditionalExpression(bool accept_IN, bool* ok) { // ConditionalExpression :: // LogicalOrExpression // LogicalOrExpression '?' AssignmentExpression ':' AssignmentExpression // We start using the binary expression parser for prec >= 4 only! Expression* expression = ParseBinaryExpression(4, accept_IN, CHECK_OK); if (peek() != Token::CONDITIONAL) return expression; Consume(Token::CONDITIONAL); // In parsing the first assignment expression in conditional // expressions we always accept the 'in' keyword; see ECMA-262, // section 11.12, page 58. int left_position = scanner().peek_location().beg_pos; Expression* left = ParseAssignmentExpression(true, CHECK_OK); Expect(Token::COLON, CHECK_OK); int right_position = scanner().peek_location().beg_pos; Expression* right = ParseAssignmentExpression(accept_IN, CHECK_OK); return new(zone()) Conditional(expression, left, right, left_position, right_position); } static int Precedence(Token::Value tok, bool accept_IN) { if (tok == Token::IN && !accept_IN) return 0; // 0 precedence will terminate binary expression parsing return Token::Precedence(tok); } // Precedence >= 4 Expression* Parser::ParseBinaryExpression(int prec, bool accept_IN, bool* ok) { ASSERT(prec >= 4); Expression* x = ParseUnaryExpression(CHECK_OK); for (int prec1 = Precedence(peek(), accept_IN); prec1 >= prec; prec1--) { // prec1 >= 4 while (Precedence(peek(), accept_IN) == prec1) { Token::Value op = Next(); int position = scanner().location().beg_pos; Expression* y = ParseBinaryExpression(prec1 + 1, accept_IN, CHECK_OK); // Compute some expressions involving only number literals. if (x && x->AsLiteral() && x->AsLiteral()->handle()->IsNumber() && y && y->AsLiteral() && y->AsLiteral()->handle()->IsNumber()) { double x_val = x->AsLiteral()->handle()->Number(); double y_val = y->AsLiteral()->handle()->Number(); switch (op) { case Token::ADD: x = NewNumberLiteral(x_val + y_val); continue; case Token::SUB: x = NewNumberLiteral(x_val - y_val); continue; case Token::MUL: x = NewNumberLiteral(x_val * y_val); continue; case Token::DIV: x = NewNumberLiteral(x_val / y_val); continue; case Token::BIT_OR: x = NewNumberLiteral(DoubleToInt32(x_val) | DoubleToInt32(y_val)); continue; case Token::BIT_AND: x = NewNumberLiteral(DoubleToInt32(x_val) & DoubleToInt32(y_val)); continue; case Token::BIT_XOR: x = NewNumberLiteral(DoubleToInt32(x_val) ^ DoubleToInt32(y_val)); continue; case Token::SHL: { int value = DoubleToInt32(x_val) << (DoubleToInt32(y_val) & 0x1f); x = NewNumberLiteral(value); continue; } case Token::SHR: { uint32_t shift = DoubleToInt32(y_val) & 0x1f; uint32_t value = DoubleToUint32(x_val) >> shift; x = NewNumberLiteral(value); continue; } case Token::SAR: { uint32_t shift = DoubleToInt32(y_val) & 0x1f; int value = ArithmeticShiftRight(DoubleToInt32(x_val), shift); x = NewNumberLiteral(value); continue; } default: break; } } // For now we distinguish between comparisons and other binary // operations. (We could combine the two and get rid of this // code and AST node eventually.) if (Token::IsCompareOp(op)) { // We have a comparison. Token::Value cmp = op; switch (op) { case Token::NE: cmp = Token::EQ; break; case Token::NE_STRICT: cmp = Token::EQ_STRICT; break; default: break; } x = NewCompareNode(cmp, x, y, position); if (cmp != op) { // The comparison was negated - add a NOT. x = new(zone()) UnaryOperation(Token::NOT, x, position); } } else { // We have a "normal" binary operation. x = new(zone()) BinaryOperation(op, x, y, position); } } } return x; } Expression* Parser::NewCompareNode(Token::Value op, Expression* x, Expression* y, int position) { ASSERT(op != Token::NE && op != Token::NE_STRICT); if (op == Token::EQ || op == Token::EQ_STRICT) { bool is_strict = (op == Token::EQ_STRICT); Literal* x_literal = x->AsLiteral(); if (x_literal != NULL && x_literal->IsNull()) { return new(zone()) CompareToNull(is_strict, y); } Literal* y_literal = y->AsLiteral(); if (y_literal != NULL && y_literal->IsNull()) { return new(zone()) CompareToNull(is_strict, x); } } return new(zone()) CompareOperation(op, x, y, position); } Expression* Parser::ParseUnaryExpression(bool* ok) { // UnaryExpression :: // PostfixExpression // 'delete' UnaryExpression // 'void' UnaryExpression // 'typeof' UnaryExpression // '++' UnaryExpression // '--' UnaryExpression // '+' UnaryExpression // '-' UnaryExpression // '~' UnaryExpression // '!' UnaryExpression Token::Value op = peek(); if (Token::IsUnaryOp(op)) { op = Next(); int position = scanner().location().beg_pos; Expression* expression = ParseUnaryExpression(CHECK_OK); // Compute some expressions involving only number literals. if (expression != NULL && expression->AsLiteral() && expression->AsLiteral()->handle()->IsNumber()) { double value = expression->AsLiteral()->handle()->Number(); switch (op) { case Token::ADD: return expression; case Token::SUB: return NewNumberLiteral(-value); case Token::BIT_NOT: return NewNumberLiteral(~DoubleToInt32(value)); default: break; } } // "delete identifier" is a syntax error in strict mode. if (op == Token::DELETE && top_scope_->is_strict_mode()) { VariableProxy* operand = expression->AsVariableProxy(); if (operand != NULL && !operand->is_this()) { ReportMessage("strict_delete", Vector<const char*>::empty()); *ok = false; return NULL; } } return new(zone()) UnaryOperation(op, expression, position); } else if (Token::IsCountOp(op)) { op = Next(); Expression* expression = ParseUnaryExpression(CHECK_OK); // Signal a reference error if the expression is an invalid // left-hand side expression. We could report this as a syntax // error here but for compatibility with JSC we choose to report the // error at runtime. if (expression == NULL || !expression->IsValidLeftHandSide()) { Handle<String> type = isolate()->factory()->invalid_lhs_in_prefix_op_symbol(); expression = NewThrowReferenceError(type); } if (top_scope_->is_strict_mode()) { // Prefix expression operand in strict mode may not be eval or arguments. CheckStrictModeLValue(expression, "strict_lhs_prefix", CHECK_OK); } int position = scanner().location().beg_pos; return new(zone()) CountOperation(op, true /* prefix */, expression, position); } else { return ParsePostfixExpression(ok); } } Expression* Parser::ParsePostfixExpression(bool* ok) { // PostfixExpression :: // LeftHandSideExpression ('++' | '--')? Expression* expression = ParseLeftHandSideExpression(CHECK_OK); if (!scanner().has_line_terminator_before_next() && Token::IsCountOp(peek())) { // Signal a reference error if the expression is an invalid // left-hand side expression. We could report this as a syntax // error here but for compatibility with JSC we choose to report the // error at runtime. if (expression == NULL || !expression->IsValidLeftHandSide()) { Handle<String> type = isolate()->factory()->invalid_lhs_in_postfix_op_symbol(); expression = NewThrowReferenceError(type); } if (top_scope_->is_strict_mode()) { // Postfix expression operand in strict mode may not be eval or arguments. CheckStrictModeLValue(expression, "strict_lhs_prefix", CHECK_OK); } Token::Value next = Next(); int position = scanner().location().beg_pos; expression = new(zone()) CountOperation(next, false /* postfix */, expression, position); } return expression; } Expression* Parser::ParseLeftHandSideExpression(bool* ok) { // LeftHandSideExpression :: // (NewExpression | MemberExpression) ... Expression* result; if (peek() == Token::NEW) { result = ParseNewExpression(CHECK_OK); } else { result = ParseMemberExpression(CHECK_OK); } while (true) { switch (peek()) { case Token::LBRACK: { Consume(Token::LBRACK); int pos = scanner().location().beg_pos; Expression* index = ParseExpression(true, CHECK_OK); result = new(zone()) Property(result, index, pos); Expect(Token::RBRACK, CHECK_OK); break; } case Token::LPAREN: { int pos = scanner().location().beg_pos; ZoneList<Expression*>* args = ParseArguments(CHECK_OK); // Keep track of eval() calls since they disable all local variable // optimizations. // The calls that need special treatment are the // direct (i.e. not aliased) eval calls. These calls are all of the // form eval(...) with no explicit receiver object where eval is not // declared in the current scope chain. // These calls are marked as potentially direct eval calls. Whether // they are actually direct calls to eval is determined at run time. // TODO(994): In ES5, it doesn't matter if the "eval" var is declared // in the local scope chain. It only matters that it's called "eval", // is called without a receiver and it refers to the original eval // function. VariableProxy* callee = result->AsVariableProxy(); if (callee != NULL && callee->IsVariable(isolate()->factory()->eval_symbol())) { Handle<String> name = callee->name(); Variable* var = top_scope_->Lookup(name); if (var == NULL) { top_scope_->RecordEvalCall(); } } result = NewCall(result, args, pos); break; } case Token::PERIOD: { Consume(Token::PERIOD); int pos = scanner().location().beg_pos; Handle<String> name = ParseIdentifierName(CHECK_OK); result = new(zone()) Property(result, new(zone()) Literal(name), pos); if (fni_ != NULL) fni_->PushLiteralName(name); break; } default: return result; } } } Expression* Parser::ParseNewPrefix(PositionStack* stack, bool* ok) { // NewExpression :: // ('new')+ MemberExpression // The grammar for new expressions is pretty warped. The keyword // 'new' can either be a part of the new expression (where it isn't // followed by an argument list) or a part of the member expression, // where it must be followed by an argument list. To accommodate // this, we parse the 'new' keywords greedily and keep track of how // many we have parsed. This information is then passed on to the // member expression parser, which is only allowed to match argument // lists as long as it has 'new' prefixes left Expect(Token::NEW, CHECK_OK); PositionStack::Element pos(stack, scanner().location().beg_pos); Expression* result; if (peek() == Token::NEW) { result = ParseNewPrefix(stack, CHECK_OK); } else { result = ParseMemberWithNewPrefixesExpression(stack, CHECK_OK); } if (!stack->is_empty()) { int last = stack->pop(); result = new(zone()) CallNew(result, new ZoneList<Expression*>(0), last); } return result; } Expression* Parser::ParseNewExpression(bool* ok) { PositionStack stack(ok); return ParseNewPrefix(&stack, ok); } Expression* Parser::ParseMemberExpression(bool* ok) { return ParseMemberWithNewPrefixesExpression(NULL, ok); } Expression* Parser::ParseMemberWithNewPrefixesExpression(PositionStack* stack, bool* ok) { // MemberExpression :: // (PrimaryExpression | FunctionLiteral) // ('[' Expression ']' | '.' Identifier | Arguments)* // Parse the initial primary or function expression. Expression* result = NULL; if (peek() == Token::FUNCTION) { Expect(Token::FUNCTION, CHECK_OK); int function_token_position = scanner().location().beg_pos; Handle<String> name; bool is_reserved_name = false; if (peek_any_identifier()) { name = ParseIdentifierOrReservedWord(&is_reserved_name, CHECK_OK); } result = ParseFunctionLiteral(name, is_reserved_name, function_token_position, NESTED, CHECK_OK); } else { result = ParsePrimaryExpression(CHECK_OK); } while (true) { switch (peek()) { case Token::LBRACK: { Consume(Token::LBRACK); int pos = scanner().location().beg_pos; Expression* index = ParseExpression(true, CHECK_OK); result = new(zone()) Property(result, index, pos); Expect(Token::RBRACK, CHECK_OK); break; } case Token::PERIOD: { Consume(Token::PERIOD); int pos = scanner().location().beg_pos; Handle<String> name = ParseIdentifierName(CHECK_OK); result = new(zone()) Property(result, new(zone()) Literal(name), pos); if (fni_ != NULL) fni_->PushLiteralName(name); break; } case Token::LPAREN: { if ((stack == NULL) || stack->is_empty()) return result; // Consume one of the new prefixes (already parsed). ZoneList<Expression*>* args = ParseArguments(CHECK_OK); int last = stack->pop(); result = new CallNew(result, args, last); break; } default: return result; } } } DebuggerStatement* Parser::ParseDebuggerStatement(bool* ok) { // In ECMA-262 'debugger' is defined as a reserved keyword. In some browser // contexts this is used as a statement which invokes the debugger as i a // break point is present. // DebuggerStatement :: // 'debugger' ';' Expect(Token::DEBUGGER, CHECK_OK); ExpectSemicolon(CHECK_OK); return new(zone()) DebuggerStatement(); } void Parser::ReportUnexpectedToken(Token::Value token) { // We don't report stack overflows here, to avoid increasing the // stack depth even further. Instead we report it after parsing is // over, in ParseProgram/ParseJson. if (token == Token::ILLEGAL && stack_overflow_) return; // Four of the tokens are treated specially switch (token) { case Token::EOS: return ReportMessage("unexpected_eos", Vector<const char*>::empty()); case Token::NUMBER: return ReportMessage("unexpected_token_number", Vector<const char*>::empty()); case Token::STRING: return ReportMessage("unexpected_token_string", Vector<const char*>::empty()); case Token::IDENTIFIER: return ReportMessage("unexpected_token_identifier", Vector<const char*>::empty()); case Token::FUTURE_RESERVED_WORD: return ReportMessage(top_scope_->is_strict_mode() ? "unexpected_strict_reserved" : "unexpected_token_identifier", Vector<const char*>::empty()); default: const char* name = Token::String(token); ASSERT(name != NULL); ReportMessage("unexpected_token", Vector<const char*>(&name, 1)); } } void Parser::ReportInvalidPreparseData(Handle<String> name, bool* ok) { SmartPointer<char> name_string = name->ToCString(DISALLOW_NULLS); const char* element[1] = { *name_string }; ReportMessage("invalid_preparser_data", Vector<const char*>(element, 1)); *ok = false; } Expression* Parser::ParsePrimaryExpression(bool* ok) { // PrimaryExpression :: // 'this' // 'null' // 'true' // 'false' // Identifier // Number // String // ArrayLiteral // ObjectLiteral // RegExpLiteral // '(' Expression ')' Expression* result = NULL; switch (peek()) { case Token::THIS: { Consume(Token::THIS); VariableProxy* recv = top_scope_->receiver(); result = recv; break; } case Token::NULL_LITERAL: Consume(Token::NULL_LITERAL); result = new(zone()) Literal(isolate()->factory()->null_value()); break; case Token::TRUE_LITERAL: Consume(Token::TRUE_LITERAL); result = new(zone()) Literal(isolate()->factory()->true_value()); break; case Token::FALSE_LITERAL: Consume(Token::FALSE_LITERAL); result = new(zone()) Literal(isolate()->factory()->false_value()); break; case Token::IDENTIFIER: case Token::FUTURE_RESERVED_WORD: { Handle<String> name = ParseIdentifier(CHECK_OK); if (fni_ != NULL) fni_->PushVariableName(name); result = top_scope_->NewUnresolved(name, inside_with(), scanner().location().beg_pos); break; } case Token::NUMBER: { Consume(Token::NUMBER); ASSERT(scanner().is_literal_ascii()); double value = StringToDouble(isolate()->unicode_cache(), scanner().literal_ascii_string(), ALLOW_HEX | ALLOW_OCTALS); result = NewNumberLiteral(value); break; } case Token::STRING: { Consume(Token::STRING); Handle<String> symbol = GetSymbol(CHECK_OK); result = new(zone()) Literal(symbol); if (fni_ != NULL) fni_->PushLiteralName(symbol); break; } case Token::ASSIGN_DIV: result = ParseRegExpLiteral(true, CHECK_OK); break; case Token::DIV: result = ParseRegExpLiteral(false, CHECK_OK); break; case Token::LBRACK: result = ParseArrayLiteral(CHECK_OK); break; case Token::LBRACE: result = ParseObjectLiteral(CHECK_OK); break; case Token::LPAREN: Consume(Token::LPAREN); // Heuristically try to detect immediately called functions before // seeing the call parentheses. parenthesized_function_ = (peek() == Token::FUNCTION); result = ParseExpression(true, CHECK_OK); Expect(Token::RPAREN, CHECK_OK); break; case Token::MOD: if (allow_natives_syntax_ || extension_ != NULL) { result = ParseV8Intrinsic(CHECK_OK); break; } // If we're not allowing special syntax we fall-through to the // default case. default: { Token::Value tok = Next(); ReportUnexpectedToken(tok); *ok = false; return NULL; } } return result; } void Parser::BuildArrayLiteralBoilerplateLiterals(ZoneList<Expression*>* values, Handle<FixedArray> literals, bool* is_simple, int* depth) { // Fill in the literals. // Accumulate output values in local variables. bool is_simple_acc = true; int depth_acc = 1; for (int i = 0; i < values->length(); i++) { MaterializedLiteral* m_literal = values->at(i)->AsMaterializedLiteral(); if (m_literal != NULL && m_literal->depth() >= depth_acc) { depth_acc = m_literal->depth() + 1; } Handle<Object> boilerplate_value = GetBoilerplateValue(values->at(i)); if (boilerplate_value->IsUndefined()) { literals->set_the_hole(i); is_simple_acc = false; } else { literals->set(i, *boilerplate_value); } } *is_simple = is_simple_acc; *depth = depth_acc; } Expression* Parser::ParseArrayLiteral(bool* ok) { // ArrayLiteral :: // '[' Expression? (',' Expression?)* ']' ZoneList<Expression*>* values = new ZoneList<Expression*>(4); Expect(Token::LBRACK, CHECK_OK); while (peek() != Token::RBRACK) { Expression* elem; if (peek() == Token::COMMA) { elem = GetLiteralTheHole(); } else { elem = ParseAssignmentExpression(true, CHECK_OK); } values->Add(elem); if (peek() != Token::RBRACK) { Expect(Token::COMMA, CHECK_OK); } } Expect(Token::RBRACK, CHECK_OK); // Update the scope information before the pre-parsing bailout. int literal_index = lexical_scope_->NextMaterializedLiteralIndex(); // Allocate a fixed array with all the literals. Handle<FixedArray> literals = isolate()->factory()->NewFixedArray(values->length(), TENURED); // Fill in the literals. bool is_simple = true; int depth = 1; for (int i = 0, n = values->length(); i < n; i++) { MaterializedLiteral* m_literal = values->at(i)->AsMaterializedLiteral(); if (m_literal != NULL && m_literal->depth() + 1 > depth) { depth = m_literal->depth() + 1; } Handle<Object> boilerplate_value = GetBoilerplateValue(values->at(i)); if (boilerplate_value->IsUndefined()) { literals->set_the_hole(i); is_simple = false; } else { literals->set(i, *boilerplate_value); } } // Simple and shallow arrays can be lazily copied, we transform the // elements array to a copy-on-write array. if (is_simple && depth == 1 && values->length() > 0) { literals->set_map(isolate()->heap()->fixed_cow_array_map()); } return new(zone()) ArrayLiteral(literals, values, literal_index, is_simple, depth); } bool Parser::IsBoilerplateProperty(ObjectLiteral::Property* property) { return property != NULL && property->kind() != ObjectLiteral::Property::PROTOTYPE; } bool CompileTimeValue::IsCompileTimeValue(Expression* expression) { if (expression->AsLiteral() != NULL) return true; MaterializedLiteral* lit = expression->AsMaterializedLiteral(); return lit != NULL && lit->is_simple(); } bool CompileTimeValue::ArrayLiteralElementNeedsInitialization( Expression* value) { // If value is a literal the property value is already set in the // boilerplate object. if (value->AsLiteral() != NULL) return false; // If value is a materialized literal the property value is already set // in the boilerplate object if it is simple. if (CompileTimeValue::IsCompileTimeValue(value)) return false; return true; } Handle<FixedArray> CompileTimeValue::GetValue(Expression* expression) { ASSERT(IsCompileTimeValue(expression)); Handle<FixedArray> result = FACTORY->NewFixedArray(2, TENURED); ObjectLiteral* object_literal = expression->AsObjectLiteral(); if (object_literal != NULL) { ASSERT(object_literal->is_simple()); if (object_literal->fast_elements()) { result->set(kTypeSlot, Smi::FromInt(OBJECT_LITERAL_FAST_ELEMENTS)); } else { result->set(kTypeSlot, Smi::FromInt(OBJECT_LITERAL_SLOW_ELEMENTS)); } result->set(kElementsSlot, *object_literal->constant_properties()); } else { ArrayLiteral* array_literal = expression->AsArrayLiteral(); ASSERT(array_literal != NULL && array_literal->is_simple()); result->set(kTypeSlot, Smi::FromInt(ARRAY_LITERAL)); result->set(kElementsSlot, *array_literal->constant_elements()); } return result; } CompileTimeValue::Type CompileTimeValue::GetType(Handle<FixedArray> value) { Smi* type_value = Smi::cast(value->get(kTypeSlot)); return static_cast<Type>(type_value->value()); } Handle<FixedArray> CompileTimeValue::GetElements(Handle<FixedArray> value) { return Handle<FixedArray>(FixedArray::cast(value->get(kElementsSlot))); } Handle<Object> Parser::GetBoilerplateValue(Expression* expression) { if (expression->AsLiteral() != NULL) { return expression->AsLiteral()->handle(); } if (CompileTimeValue::IsCompileTimeValue(expression)) { return CompileTimeValue::GetValue(expression); } return isolate()->factory()->undefined_value(); } // Defined in ast.cc bool IsEqualString(void* first, void* second); bool IsEqualNumber(void* first, void* second); // Validation per 11.1.5 Object Initialiser class ObjectLiteralPropertyChecker { public: ObjectLiteralPropertyChecker(Parser* parser, bool strict) : props(&IsEqualString), elems(&IsEqualNumber), parser_(parser), strict_(strict) { } void CheckProperty( ObjectLiteral::Property* property, Scanner::Location loc, bool* ok); private: enum PropertyKind { kGetAccessor = 0x01, kSetAccessor = 0x02, kAccessor = kGetAccessor | kSetAccessor, kData = 0x04 }; static intptr_t GetPropertyKind(ObjectLiteral::Property* property) { switch (property->kind()) { case ObjectLiteral::Property::GETTER: return kGetAccessor; case ObjectLiteral::Property::SETTER: return kSetAccessor; default: return kData; } } HashMap props; HashMap elems; Parser* parser_; bool strict_; }; void ObjectLiteralPropertyChecker::CheckProperty( ObjectLiteral::Property* property, Scanner::Location loc, bool* ok) { ASSERT(property != NULL); Literal *lit = property->key(); Handle<Object> handle = lit->handle(); uint32_t hash; HashMap* map; void* key; if (handle->IsSymbol()) { Handle<String> name(String::cast(*handle)); if (name->AsArrayIndex(&hash)) { Handle<Object> key_handle = FACTORY->NewNumberFromUint(hash); key = key_handle.location(); map = &elems; } else { key = handle.location(); hash = name->Hash(); map = &props; } } else if (handle->ToArrayIndex(&hash)) { key = handle.location(); map = &elems; } else { ASSERT(handle->IsNumber()); double num = handle->Number(); char arr[100]; Vector<char> buffer(arr, ARRAY_SIZE(arr)); const char* str = DoubleToCString(num, buffer); Handle<String> name = FACTORY->NewStringFromAscii(CStrVector(str)); key = name.location(); hash = name->Hash(); map = &props; } // Lookup property previously defined, if any. HashMap::Entry* entry = map->Lookup(key, hash, true); intptr_t prev = reinterpret_cast<intptr_t> (entry->value); intptr_t curr = GetPropertyKind(property); // Duplicate data properties are illegal in strict mode. if (strict_ && (curr & prev & kData) != 0) { parser_->ReportMessageAt(loc, "strict_duplicate_property", Vector<const char*>::empty()); *ok = false; return; } // Data property conflicting with an accessor. if (((curr & kData) && (prev & kAccessor)) || ((prev & kData) && (curr & kAccessor))) { parser_->ReportMessageAt(loc, "accessor_data_property", Vector<const char*>::empty()); *ok = false; return; } // Two accessors of the same type conflicting if ((curr & prev & kAccessor) != 0) { parser_->ReportMessageAt(loc, "accessor_get_set", Vector<const char*>::empty()); *ok = false; return; } // Update map entry->value = reinterpret_cast<void*> (prev | curr); *ok = true; } void Parser::BuildObjectLiteralConstantProperties( ZoneList<ObjectLiteral::Property*>* properties, Handle<FixedArray> constant_properties, bool* is_simple, bool* fast_elements, int* depth) { int position = 0; // Accumulate the value in local variables and store it at the end. bool is_simple_acc = true; int depth_acc = 1; uint32_t max_element_index = 0; uint32_t elements = 0; for (int i = 0; i < properties->length(); i++) { ObjectLiteral::Property* property = properties->at(i); if (!IsBoilerplateProperty(property)) { is_simple_acc = false; continue; } MaterializedLiteral* m_literal = property->value()->AsMaterializedLiteral(); if (m_literal != NULL && m_literal->depth() >= depth_acc) { depth_acc = m_literal->depth() + 1; } // Add CONSTANT and COMPUTED properties to boilerplate. Use undefined // value for COMPUTED properties, the real value is filled in at // runtime. The enumeration order is maintained. Handle<Object> key = property->key()->handle(); Handle<Object> value = GetBoilerplateValue(property->value()); is_simple_acc = is_simple_acc && !value->IsUndefined(); // Keep track of the number of elements in the object literal and // the largest element index. If the largest element index is // much larger than the number of elements, creating an object // literal with fast elements will be a waste of space. uint32_t element_index = 0; if (key->IsString() && Handle<String>::cast(key)->AsArrayIndex(&element_index) && element_index > max_element_index) { max_element_index = element_index; elements++; } else if (key->IsSmi()) { int key_value = Smi::cast(*key)->value(); if (key_value > 0 && static_cast<uint32_t>(key_value) > max_element_index) { max_element_index = key_value; } elements++; } // Add name, value pair to the fixed array. constant_properties->set(position++, *key); constant_properties->set(position++, *value); } *fast_elements = (max_element_index <= 32) || ((2 * elements) >= max_element_index); *is_simple = is_simple_acc; *depth = depth_acc; } ObjectLiteral::Property* Parser::ParseObjectLiteralGetSet(bool is_getter, bool* ok) { // Special handling of getter and setter syntax: // { ... , get foo() { ... }, ... , set foo(v) { ... v ... } , ... } // We have already read the "get" or "set" keyword. Token::Value next = Next(); bool is_keyword = Token::IsKeyword(next); if (next == Token::IDENTIFIER || next == Token::NUMBER || next == Token::FUTURE_RESERVED_WORD || next == Token::STRING || is_keyword) { Handle<String> name; if (is_keyword) { name = isolate_->factory()->LookupAsciiSymbol(Token::String(next)); } else { name = GetSymbol(CHECK_OK); } FunctionLiteral* value = ParseFunctionLiteral(name, false, // reserved words are allowed here RelocInfo::kNoPosition, DECLARATION, CHECK_OK); // Allow any number of parameters for compatiabilty with JSC. // Specification only allows zero parameters for get and one for set. ObjectLiteral::Property* property = new(zone()) ObjectLiteral::Property(is_getter, value); return property; } else { ReportUnexpectedToken(next); *ok = false; return NULL; } } Expression* Parser::ParseObjectLiteral(bool* ok) { // ObjectLiteral :: // '{' ( // ((IdentifierName | String | Number) ':' AssignmentExpression) // | (('get' | 'set') (IdentifierName | String | Number) FunctionLiteral) // )*[','] '}' ZoneList<ObjectLiteral::Property*>* properties = new ZoneList<ObjectLiteral::Property*>(4); int number_of_boilerplate_properties = 0; bool has_function = false; ObjectLiteralPropertyChecker checker(this, top_scope_->is_strict_mode()); Expect(Token::LBRACE, CHECK_OK); Scanner::Location loc = scanner().location(); while (peek() != Token::RBRACE) { if (fni_ != NULL) fni_->Enter(); Literal* key = NULL; Token::Value next = peek(); // Location of the property name token Scanner::Location loc = scanner().peek_location(); switch (next) { case Token::FUTURE_RESERVED_WORD: case Token::IDENTIFIER: { bool is_getter = false; bool is_setter = false; Handle<String> id = ParseIdentifierOrGetOrSet(&is_getter, &is_setter, CHECK_OK); if (fni_ != NULL) fni_->PushLiteralName(id); if ((is_getter || is_setter) && peek() != Token::COLON) { // Update loc to point to the identifier loc = scanner().peek_location(); ObjectLiteral::Property* property = ParseObjectLiteralGetSet(is_getter, CHECK_OK); if (IsBoilerplateProperty(property)) { number_of_boilerplate_properties++; } // Validate the property. checker.CheckProperty(property, loc, CHECK_OK); properties->Add(property); if (peek() != Token::RBRACE) Expect(Token::COMMA, CHECK_OK); if (fni_ != NULL) { fni_->Infer(); fni_->Leave(); } continue; // restart the while } // Failed to parse as get/set property, so it's just a property // called "get" or "set". key = new(zone()) Literal(id); break; } case Token::STRING: { Consume(Token::STRING); Handle<String> string = GetSymbol(CHECK_OK); if (fni_ != NULL) fni_->PushLiteralName(string); uint32_t index; if (!string.is_null() && string->AsArrayIndex(&index)) { key = NewNumberLiteral(index); break; } key = new(zone()) Literal(string); break; } case Token::NUMBER: { Consume(Token::NUMBER); ASSERT(scanner().is_literal_ascii()); double value = StringToDouble(isolate()->unicode_cache(), scanner().literal_ascii_string(), ALLOW_HEX | ALLOW_OCTALS); key = NewNumberLiteral(value); break; } default: if (Token::IsKeyword(next)) { Consume(next); Handle<String> string = GetSymbol(CHECK_OK); key = new(zone()) Literal(string); } else { // Unexpected token. Token::Value next = Next(); ReportUnexpectedToken(next); *ok = false; return NULL; } } Expect(Token::COLON, CHECK_OK); Expression* value = ParseAssignmentExpression(true, CHECK_OK); ObjectLiteral::Property* property = new(zone()) ObjectLiteral::Property(key, value); // Mark object literals that contain function literals and pretenure the // literal so it can be added as a constant function property. if (value->AsFunctionLiteral() != NULL) { has_function = true; value->AsFunctionLiteral()->set_pretenure(true); } // Count CONSTANT or COMPUTED properties to maintain the enumeration order. if (IsBoilerplateProperty(property)) number_of_boilerplate_properties++; // Validate the property checker.CheckProperty(property, loc, CHECK_OK); properties->Add(property); // TODO(1240767): Consider allowing trailing comma. if (peek() != Token::RBRACE) Expect(Token::COMMA, CHECK_OK); if (fni_ != NULL) { fni_->Infer(); fni_->Leave(); } } Expect(Token::RBRACE, CHECK_OK); // Computation of literal_index must happen before pre parse bailout. int literal_index = lexical_scope_->NextMaterializedLiteralIndex(); Handle<FixedArray> constant_properties = isolate()->factory()->NewFixedArray( number_of_boilerplate_properties * 2, TENURED); bool is_simple = true; bool fast_elements = true; int depth = 1; BuildObjectLiteralConstantProperties(properties, constant_properties, &is_simple, &fast_elements, &depth); return new(zone()) ObjectLiteral(constant_properties, properties, literal_index, is_simple, fast_elements, depth, has_function); } Expression* Parser::ParseRegExpLiteral(bool seen_equal, bool* ok) { if (!scanner().ScanRegExpPattern(seen_equal)) { Next(); ReportMessage("unterminated_regexp", Vector<const char*>::empty()); *ok = false; return NULL; } int literal_index = lexical_scope_->NextMaterializedLiteralIndex(); Handle<String> js_pattern = NextLiteralString(TENURED); scanner().ScanRegExpFlags(); Handle<String> js_flags = NextLiteralString(TENURED); Next(); return new(zone()) RegExpLiteral(js_pattern, js_flags, literal_index); } ZoneList<Expression*>* Parser::ParseArguments(bool* ok) { // Arguments :: // '(' (AssignmentExpression)*[','] ')' ZoneList<Expression*>* result = new ZoneList<Expression*>(4); Expect(Token::LPAREN, CHECK_OK); bool done = (peek() == Token::RPAREN); while (!done) { Expression* argument = ParseAssignmentExpression(true, CHECK_OK); result->Add(argument); done = (peek() == Token::RPAREN); if (!done) Expect(Token::COMMA, CHECK_OK); } Expect(Token::RPAREN, CHECK_OK); return result; } FunctionLiteral* Parser::ParseFunctionLiteral(Handle<String> var_name, bool name_is_reserved, int function_token_position, FunctionLiteralType type, bool* ok) { // Function :: // '(' FormalParameterList? ')' '{' FunctionBody '}' bool is_named = !var_name.is_null(); // The name associated with this function. If it's a function expression, // this is the actual function name, otherwise this is the name of the // variable declared and initialized with the function (expression). In // that case, we don't have a function name (it's empty). Handle<String> name = is_named ? var_name : isolate()->factory()->empty_symbol(); // The function name, if any. Handle<String> function_name = isolate()->factory()->empty_symbol(); if (is_named && (type == EXPRESSION || type == NESTED)) { function_name = name; } int num_parameters = 0; Scope* scope = NewScope(top_scope_, Scope::FUNCTION_SCOPE, inside_with()); ZoneList<Statement*>* body = new ZoneList<Statement*>(8); int materialized_literal_count; int expected_property_count; int start_pos; int end_pos; bool only_simple_this_property_assignments; Handle<FixedArray> this_property_assignments; // Parse function body. { LexicalScope lexical_scope(this, scope, isolate()); top_scope_->SetScopeName(name); // FormalParameterList :: // '(' (Identifier)*[','] ')' Expect(Token::LPAREN, CHECK_OK); start_pos = scanner().location().beg_pos; Scanner::Location name_loc = Scanner::NoLocation(); Scanner::Location dupe_loc = Scanner::NoLocation(); Scanner::Location reserved_loc = Scanner::NoLocation(); bool done = (peek() == Token::RPAREN); while (!done) { bool is_reserved = false; Handle<String> param_name = ParseIdentifierOrReservedWord(&is_reserved, CHECK_OK); // Store locations for possible future error reports. if (!name_loc.IsValid() && IsEvalOrArguments(param_name)) { name_loc = scanner().location(); } if (!dupe_loc.IsValid() && top_scope_->IsDeclared(param_name)) { dupe_loc = scanner().location(); } if (!reserved_loc.IsValid() && is_reserved) { reserved_loc = scanner().location(); } Variable* parameter = top_scope_->DeclareLocal(param_name, Variable::VAR); top_scope_->AddParameter(parameter); num_parameters++; if (num_parameters > kMaxNumFunctionParameters) { ReportMessageAt(scanner().location(), "too_many_parameters", Vector<const char*>::empty()); *ok = false; return NULL; } done = (peek() == Token::RPAREN); if (!done) Expect(Token::COMMA, CHECK_OK); } Expect(Token::RPAREN, CHECK_OK); Expect(Token::LBRACE, CHECK_OK); // If we have a named function expression, we add a local variable // declaration to the body of the function with the name of the // function and let it refer to the function itself (closure). // NOTE: We create a proxy and resolve it here so that in the // future we can change the AST to only refer to VariableProxies // instead of Variables and Proxis as is the case now. if (!function_name.is_null() && function_name->length() > 0) { Variable* fvar = top_scope_->DeclareFunctionVar(function_name); VariableProxy* fproxy = top_scope_->NewUnresolved(function_name, inside_with()); fproxy->BindTo(fvar); body->Add(new(zone()) ExpressionStatement( new(zone()) Assignment(Token::INIT_CONST, fproxy, new(zone()) ThisFunction(), RelocInfo::kNoPosition))); } // Determine if the function will be lazily compiled. The mode can // only be PARSE_LAZILY if the --lazy flag is true. bool is_lazily_compiled = (mode() == PARSE_LAZILY && top_scope_->outer_scope()->is_global_scope() && top_scope_->HasTrivialOuterContext() && !parenthesized_function_); parenthesized_function_ = false; // The bit was set for this function only. int function_block_pos = scanner().location().beg_pos; if (is_lazily_compiled && pre_data() != NULL) { FunctionEntry entry = pre_data()->GetFunctionEntry(function_block_pos); if (!entry.is_valid()) { ReportInvalidPreparseData(name, CHECK_OK); } end_pos = entry.end_pos(); if (end_pos <= function_block_pos) { // End position greater than end of stream is safe, and hard to check. ReportInvalidPreparseData(name, CHECK_OK); } isolate()->counters()->total_preparse_skipped()->Increment( end_pos - function_block_pos); // Seek to position just before terminal '}'. scanner().SeekForward(end_pos - 1); materialized_literal_count = entry.literal_count(); expected_property_count = entry.property_count(); only_simple_this_property_assignments = false; this_property_assignments = isolate()->factory()->empty_fixed_array(); Expect(Token::RBRACE, CHECK_OK); } else { ParseSourceElements(body, Token::RBRACE, CHECK_OK); materialized_literal_count = lexical_scope.materialized_literal_count(); expected_property_count = lexical_scope.expected_property_count(); only_simple_this_property_assignments = lexical_scope.only_simple_this_property_assignments(); this_property_assignments = lexical_scope.this_property_assignments(); Expect(Token::RBRACE, CHECK_OK); end_pos = scanner().location().end_pos; } // Validate strict mode. if (top_scope_->is_strict_mode()) { if (IsEvalOrArguments(name)) { int position = function_token_position != RelocInfo::kNoPosition ? function_token_position : (start_pos > 0 ? start_pos - 1 : start_pos); Scanner::Location location = Scanner::Location(position, start_pos); ReportMessageAt(location, "strict_function_name", Vector<const char*>::empty()); *ok = false; return NULL; } if (name_loc.IsValid()) { ReportMessageAt(name_loc, "strict_param_name", Vector<const char*>::empty()); *ok = false; return NULL; } if (dupe_loc.IsValid()) { ReportMessageAt(dupe_loc, "strict_param_dupe", Vector<const char*>::empty()); *ok = false; return NULL; } if (name_is_reserved) { int position = function_token_position != RelocInfo::kNoPosition ? function_token_position : (start_pos > 0 ? start_pos - 1 : start_pos); Scanner::Location location = Scanner::Location(position, start_pos); ReportMessageAt(location, "strict_reserved_word", Vector<const char*>::empty()); *ok = false; return NULL; } if (reserved_loc.IsValid()) { ReportMessageAt(reserved_loc, "strict_reserved_word", Vector<const char*>::empty()); *ok = false; return NULL; } CheckOctalLiteral(start_pos, end_pos, CHECK_OK); } } FunctionLiteral* function_literal = new(zone()) FunctionLiteral(name, scope, body, materialized_literal_count, expected_property_count, only_simple_this_property_assignments, this_property_assignments, num_parameters, start_pos, end_pos, (function_name->length() > 0)); function_literal->set_function_token_position(function_token_position); if (fni_ != NULL && !is_named) fni_->AddFunction(function_literal); return function_literal; } Expression* Parser::ParseV8Intrinsic(bool* ok) { // CallRuntime :: // '%' Identifier Arguments Expect(Token::MOD, CHECK_OK); Handle<String> name = ParseIdentifier(CHECK_OK); ZoneList<Expression*>* args = ParseArguments(CHECK_OK); if (extension_ != NULL) { // The extension structures are only accessible while parsing the // very first time not when reparsing because of lazy compilation. top_scope_->ForceEagerCompilation(); } const Runtime::Function* function = Runtime::FunctionForSymbol(name); // Check for built-in IS_VAR macro. if (function != NULL && function->intrinsic_type == Runtime::RUNTIME && function->function_id == Runtime::kIS_VAR) { // %IS_VAR(x) evaluates to x if x is a variable, // leads to a parse error otherwise. Could be implemented as an // inline function %_IS_VAR(x) to eliminate this special case. if (args->length() == 1 && args->at(0)->AsVariableProxy() != NULL) { return args->at(0); } else { ReportMessage("unable_to_parse", Vector<const char*>::empty()); *ok = false; return NULL; } } // Check that the expected number of arguments are being passed. if (function != NULL && function->nargs != -1 && function->nargs != args->length()) { ReportMessage("illegal_access", Vector<const char*>::empty()); *ok = false; return NULL; } // We have a valid intrinsics call or a call to a builtin. return new(zone()) CallRuntime(name, function, args); } bool Parser::peek_any_identifier() { Token::Value next = peek(); return next == Token::IDENTIFIER || next == Token::FUTURE_RESERVED_WORD; } void Parser::Consume(Token::Value token) { Token::Value next = Next(); USE(next); USE(token); ASSERT(next == token); } void Parser::Expect(Token::Value token, bool* ok) { Token::Value next = Next(); if (next == token) return; ReportUnexpectedToken(next); *ok = false; } bool Parser::Check(Token::Value token) { Token::Value next = peek(); if (next == token) { Consume(next); return true; } return false; } void Parser::ExpectSemicolon(bool* ok) { // Check for automatic semicolon insertion according to // the rules given in ECMA-262, section 7.9, page 21. Token::Value tok = peek(); if (tok == Token::SEMICOLON) { Next(); return; } if (scanner().has_line_terminator_before_next() || tok == Token::RBRACE || tok == Token::EOS) { return; } Expect(Token::SEMICOLON, ok); } Literal* Parser::GetLiteralUndefined() { return new(zone()) Literal(isolate()->factory()->undefined_value()); } Literal* Parser::GetLiteralTheHole() { return new(zone()) Literal(isolate()->factory()->the_hole_value()); } Literal* Parser::GetLiteralNumber(double value) { return NewNumberLiteral(value); } Handle<String> Parser::ParseIdentifier(bool* ok) { bool is_reserved; return ParseIdentifierOrReservedWord(&is_reserved, ok); } Handle<String> Parser::ParseIdentifierOrReservedWord(bool* is_reserved, bool* ok) { *is_reserved = false; if (top_scope_->is_strict_mode()) { Expect(Token::IDENTIFIER, ok); } else { if (!Check(Token::IDENTIFIER)) { Expect(Token::FUTURE_RESERVED_WORD, ok); *is_reserved = true; } } if (!*ok) return Handle<String>(); return GetSymbol(ok); } Handle<String> Parser::ParseIdentifierName(bool* ok) { Token::Value next = Next(); if (next != Token::IDENTIFIER && next != Token::FUTURE_RESERVED_WORD && !Token::IsKeyword(next)) { ReportUnexpectedToken(next); *ok = false; return Handle<String>(); } return GetSymbol(ok); } // Checks LHS expression for assignment and prefix/postfix increment/decrement // in strict mode. void Parser::CheckStrictModeLValue(Expression* expression, const char* error, bool* ok) { ASSERT(top_scope_->is_strict_mode()); VariableProxy* lhs = expression != NULL ? expression->AsVariableProxy() : NULL; if (lhs != NULL && !lhs->is_this() && IsEvalOrArguments(lhs->name())) { ReportMessage(error, Vector<const char*>::empty()); *ok = false; } } // Checks whether octal literal last seen is between beg_pos and end_pos. // If so, reports an error. void Parser::CheckOctalLiteral(int beg_pos, int end_pos, bool* ok) { int octal = scanner().octal_position(); if (beg_pos <= octal && octal <= end_pos) { ReportMessageAt(Scanner::Location(octal, octal + 1), "strict_octal_literal", Vector<const char*>::empty()); scanner().clear_octal_position(); *ok = false; } } // This function reads an identifier and determines whether or not it // is 'get' or 'set'. Handle<String> Parser::ParseIdentifierOrGetOrSet(bool* is_get, bool* is_set, bool* ok) { Handle<String> result = ParseIdentifier(ok); if (!*ok) return Handle<String>(); if (scanner().is_literal_ascii() && scanner().literal_length() == 3) { const char* token = scanner().literal_ascii_string().start(); *is_get = strncmp(token, "get", 3) == 0; *is_set = !*is_get && strncmp(token, "set", 3) == 0; } return result; } // ---------------------------------------------------------------------------- // Parser support bool Parser::TargetStackContainsLabel(Handle<String> label) { for (Target* t = target_stack_; t != NULL; t = t->previous()) { BreakableStatement* stat = t->node()->AsBreakableStatement(); if (stat != NULL && ContainsLabel(stat->labels(), label)) return true; } return false; } BreakableStatement* Parser::LookupBreakTarget(Handle<String> label, bool* ok) { bool anonymous = label.is_null(); for (Target* t = target_stack_; t != NULL; t = t->previous()) { BreakableStatement* stat = t->node()->AsBreakableStatement(); if (stat == NULL) continue; if ((anonymous && stat->is_target_for_anonymous()) || (!anonymous && ContainsLabel(stat->labels(), label))) { RegisterTargetUse(stat->break_target(), t->previous()); return stat; } } return NULL; } IterationStatement* Parser::LookupContinueTarget(Handle<String> label, bool* ok) { bool anonymous = label.is_null(); for (Target* t = target_stack_; t != NULL; t = t->previous()) { IterationStatement* stat = t->node()->AsIterationStatement(); if (stat == NULL) continue; ASSERT(stat->is_target_for_anonymous()); if (anonymous || ContainsLabel(stat->labels(), label)) { RegisterTargetUse(stat->continue_target(), t->previous()); return stat; } } return NULL; } void Parser::RegisterTargetUse(Label* target, Target* stop) { // Register that a break target found at the given stop in the // target stack has been used from the top of the target stack. Add // the break target to any TargetCollectors passed on the stack. for (Target* t = target_stack_; t != stop; t = t->previous()) { TargetCollector* collector = t->node()->AsTargetCollector(); if (collector != NULL) collector->AddTarget(target); } } Literal* Parser::NewNumberLiteral(double number) { return new(zone()) Literal(isolate()->factory()->NewNumber(number, TENURED)); } Expression* Parser::NewThrowReferenceError(Handle<String> type) { return NewThrowError(isolate()->factory()->MakeReferenceError_symbol(), type, HandleVector<Object>(NULL, 0)); } Expression* Parser::NewThrowSyntaxError(Handle<String> type, Handle<Object> first) { int argc = first.is_null() ? 0 : 1; Vector< Handle<Object> > arguments = HandleVector<Object>(&first, argc); return NewThrowError( isolate()->factory()->MakeSyntaxError_symbol(), type, arguments); } Expression* Parser::NewThrowTypeError(Handle<String> type, Handle<Object> first, Handle<Object> second) { ASSERT(!first.is_null() && !second.is_null()); Handle<Object> elements[] = { first, second }; Vector< Handle<Object> > arguments = HandleVector<Object>(elements, ARRAY_SIZE(elements)); return NewThrowError( isolate()->factory()->MakeTypeError_symbol(), type, arguments); } Expression* Parser::NewThrowError(Handle<String> constructor, Handle<String> type, Vector< Handle<Object> > arguments) { int argc = arguments.length(); Handle<FixedArray> elements = isolate()->factory()->NewFixedArray(argc, TENURED); for (int i = 0; i < argc; i++) { Handle<Object> element = arguments[i]; if (!element.is_null()) { elements->set(i, *element); } } Handle<JSArray> array = isolate()->factory()->NewJSArrayWithElements(elements, TENURED); ZoneList<Expression*>* args = new ZoneList<Expression*>(2); args->Add(new(zone()) Literal(type)); args->Add(new(zone()) Literal(array)); return new(zone()) Throw(new(zone()) CallRuntime(constructor, NULL, args), scanner().location().beg_pos); } // ---------------------------------------------------------------------------- // JSON Handle<Object> JsonParser::ParseJson(Handle<String> script, UC16CharacterStream* source) { scanner_.Initialize(source); stack_overflow_ = false; Handle<Object> result = ParseJsonValue(); if (result.is_null() || scanner_.Next() != Token::EOS) { if (stack_overflow_) { // Scanner failed. isolate()->StackOverflow(); } else { // Parse failed. Scanner's current token is the unexpected token. Token::Value token = scanner_.current_token(); const char* message; const char* name_opt = NULL; switch (token) { case Token::EOS: message = "unexpected_eos"; break; case Token::NUMBER: message = "unexpected_token_number"; break; case Token::STRING: message = "unexpected_token_string"; break; case Token::IDENTIFIER: case Token::FUTURE_RESERVED_WORD: message = "unexpected_token_identifier"; break; default: message = "unexpected_token"; name_opt = Token::String(token); ASSERT(name_opt != NULL); break; } Scanner::Location source_location = scanner_.location(); Factory* factory = isolate()->factory(); MessageLocation location(factory->NewScript(script), source_location.beg_pos, source_location.end_pos); Handle<JSArray> array; if (name_opt == NULL) { array = factory->NewJSArray(0); } else { Handle<String> name = factory->NewStringFromUtf8(CStrVector(name_opt)); Handle<FixedArray> element = factory->NewFixedArray(1); element->set(0, *name); array = factory->NewJSArrayWithElements(element); } Handle<Object> result = factory->NewSyntaxError(message, array); isolate()->Throw(*result, &location); return Handle<Object>::null(); } } return result; } Handle<String> JsonParser::GetString() { int literal_length = scanner_.literal_length(); if (literal_length == 0) { return isolate()->factory()->empty_string(); } if (scanner_.is_literal_ascii()) { return isolate()->factory()->NewStringFromAscii( scanner_.literal_ascii_string()); } else { return isolate()->factory()->NewStringFromTwoByte( scanner_.literal_uc16_string()); } } // Parse any JSON value. Handle<Object> JsonParser::ParseJsonValue() { Token::Value token = scanner_.Next(); switch (token) { case Token::STRING: return GetString(); case Token::NUMBER: return isolate()->factory()->NewNumber(scanner_.number()); case Token::FALSE_LITERAL: return isolate()->factory()->false_value(); case Token::TRUE_LITERAL: return isolate()->factory()->true_value(); case Token::NULL_LITERAL: return isolate()->factory()->null_value(); case Token::LBRACE: return ParseJsonObject(); case Token::LBRACK: return ParseJsonArray(); default: return ReportUnexpectedToken(); } } // Parse a JSON object. Scanner must be right after '{' token. Handle<Object> JsonParser::ParseJsonObject() { Handle<JSFunction> object_constructor( isolate()->global_context()->object_function()); Handle<JSObject> json_object = isolate()->factory()->NewJSObject(object_constructor); if (scanner_.peek() == Token::RBRACE) { scanner_.Next(); } else { if (StackLimitCheck(isolate()).HasOverflowed()) { stack_overflow_ = true; return Handle<Object>::null(); } do { if (scanner_.Next() != Token::STRING) { return ReportUnexpectedToken(); } Handle<String> key = GetString(); if (scanner_.Next() != Token::COLON) { return ReportUnexpectedToken(); } Handle<Object> value = ParseJsonValue(); if (value.is_null()) return Handle<Object>::null(); uint32_t index; if (key->AsArrayIndex(&index)) { SetOwnElement(json_object, index, value, kNonStrictMode); } else if (key->Equals(isolate()->heap()->Proto_symbol())) { // We can't remove the __proto__ accessor since it's hardcoded // in several places. Instead go along and add the value as // the prototype of the created object if possible. SetPrototype(json_object, value); } else { SetLocalPropertyIgnoreAttributes(json_object, key, value, NONE); } } while (scanner_.Next() == Token::COMMA); if (scanner_.current_token() != Token::RBRACE) { return ReportUnexpectedToken(); } } return json_object; } // Parse a JSON array. Scanner must be right after '[' token. Handle<Object> JsonParser::ParseJsonArray() { ZoneScope zone_scope(DELETE_ON_EXIT); ZoneList<Handle<Object> > elements(4); Token::Value token = scanner_.peek(); if (token == Token::RBRACK) { scanner_.Next(); } else { if (StackLimitCheck(isolate()).HasOverflowed()) { stack_overflow_ = true; return Handle<Object>::null(); } do { Handle<Object> element = ParseJsonValue(); if (element.is_null()) return Handle<Object>::null(); elements.Add(element); token = scanner_.Next(); } while (token == Token::COMMA); if (token != Token::RBRACK) { return ReportUnexpectedToken(); } } // Allocate a fixed array with all the elements. Handle<FixedArray> fast_elements = isolate()->factory()->NewFixedArray(elements.length()); for (int i = 0, n = elements.length(); i < n; i++) { fast_elements->set(i, *elements[i]); } return isolate()->factory()->NewJSArrayWithElements(fast_elements); } // ---------------------------------------------------------------------------- // Regular expressions RegExpParser::RegExpParser(FlatStringReader* in, Handle<String>* error, bool multiline) : isolate_(Isolate::Current()), error_(error), captures_(NULL), in_(in), current_(kEndMarker), next_pos_(0), capture_count_(0), has_more_(true), multiline_(multiline), simple_(false), contains_anchor_(false), is_scanned_for_captures_(false), failed_(false) { Advance(); } uc32 RegExpParser::Next() { if (has_next()) { return in()->Get(next_pos_); } else { return kEndMarker; } } void RegExpParser::Advance() { if (next_pos_ < in()->length()) { StackLimitCheck check(isolate()); if (check.HasOverflowed()) { ReportError(CStrVector(Isolate::kStackOverflowMessage)); } else if (isolate()->zone()->excess_allocation()) { ReportError(CStrVector("Regular expression too large")); } else { current_ = in()->Get(next_pos_); next_pos_++; } } else { current_ = kEndMarker; has_more_ = false; } } void RegExpParser::Reset(int pos) { next_pos_ = pos; Advance(); } void RegExpParser::Advance(int dist) { next_pos_ += dist - 1; Advance(); } bool RegExpParser::simple() { return simple_; } RegExpTree* RegExpParser::ReportError(Vector<const char> message) { failed_ = true; *error_ = isolate()->factory()->NewStringFromAscii(message, NOT_TENURED); // Zip to the end to make sure the no more input is read. current_ = kEndMarker; next_pos_ = in()->length(); return NULL; } // Pattern :: // Disjunction RegExpTree* RegExpParser::ParsePattern() { RegExpTree* result = ParseDisjunction(CHECK_FAILED); ASSERT(!has_more()); // If the result of parsing is a literal string atom, and it has the // same length as the input, then the atom is identical to the input. if (result->IsAtom() && result->AsAtom()->length() == in()->length()) { simple_ = true; } return result; } // Disjunction :: // Alternative // Alternative | Disjunction // Alternative :: // [empty] // Term Alternative // Term :: // Assertion // Atom // Atom Quantifier RegExpTree* RegExpParser::ParseDisjunction() { // Used to store current state while parsing subexpressions. RegExpParserState initial_state(NULL, INITIAL, 0); RegExpParserState* stored_state = &initial_state; // Cache the builder in a local variable for quick access. RegExpBuilder* builder = initial_state.builder(); while (true) { switch (current()) { case kEndMarker: if (stored_state->IsSubexpression()) { // Inside a parenthesized group when hitting end of input. ReportError(CStrVector("Unterminated group") CHECK_FAILED); } ASSERT_EQ(INITIAL, stored_state->group_type()); // Parsing completed successfully. return builder->ToRegExp(); case ')': { if (!stored_state->IsSubexpression()) { ReportError(CStrVector("Unmatched ')'") CHECK_FAILED); } ASSERT_NE(INITIAL, stored_state->group_type()); Advance(); // End disjunction parsing and convert builder content to new single // regexp atom. RegExpTree* body = builder->ToRegExp(); int end_capture_index = captures_started(); int capture_index = stored_state->capture_index(); SubexpressionType type = stored_state->group_type(); // Restore previous state. stored_state = stored_state->previous_state(); builder = stored_state->builder(); // Build result of subexpression. if (type == CAPTURE) { RegExpCapture* capture = new(zone()) RegExpCapture(body, capture_index); captures_->at(capture_index - 1) = capture; body = capture; } else if (type != GROUPING) { ASSERT(type == POSITIVE_LOOKAHEAD || type == NEGATIVE_LOOKAHEAD); bool is_positive = (type == POSITIVE_LOOKAHEAD); body = new(zone()) RegExpLookahead(body, is_positive, end_capture_index - capture_index, capture_index); } builder->AddAtom(body); // For compatability with JSC and ES3, we allow quantifiers after // lookaheads, and break in all cases. break; } case '|': { Advance(); builder->NewAlternative(); continue; } case '*': case '+': case '?': return ReportError(CStrVector("Nothing to repeat")); case '^': { Advance(); if (multiline_) { builder->AddAssertion( new(zone()) RegExpAssertion(RegExpAssertion::START_OF_LINE)); } else { builder->AddAssertion( new(zone()) RegExpAssertion(RegExpAssertion::START_OF_INPUT)); set_contains_anchor(); } continue; } case '$': { Advance(); RegExpAssertion::Type type = multiline_ ? RegExpAssertion::END_OF_LINE : RegExpAssertion::END_OF_INPUT; builder->AddAssertion(new(zone()) RegExpAssertion(type)); continue; } case '.': { Advance(); // everything except \x0a, \x0d, \u2028 and \u2029 ZoneList<CharacterRange>* ranges = new ZoneList<CharacterRange>(2); CharacterRange::AddClassEscape('.', ranges); RegExpTree* atom = new(zone()) RegExpCharacterClass(ranges, false); builder->AddAtom(atom); break; } case '(': { SubexpressionType type = CAPTURE; Advance(); if (current() == '?') { switch (Next()) { case ':': type = GROUPING; break; case '=': type = POSITIVE_LOOKAHEAD; break; case '!': type = NEGATIVE_LOOKAHEAD; break; default: ReportError(CStrVector("Invalid group") CHECK_FAILED); break; } Advance(2); } else { if (captures_ == NULL) { captures_ = new ZoneList<RegExpCapture*>(2); } if (captures_started() >= kMaxCaptures) { ReportError(CStrVector("Too many captures") CHECK_FAILED); } captures_->Add(NULL); } // Store current state and begin new disjunction parsing. stored_state = new(zone()) RegExpParserState(stored_state, type, captures_started()); builder = stored_state->builder(); continue; } case '[': { RegExpTree* atom = ParseCharacterClass(CHECK_FAILED); builder->AddAtom(atom); break; } // Atom :: // \ AtomEscape case '\\': switch (Next()) { case kEndMarker: return ReportError(CStrVector("\\ at end of pattern")); case 'b': Advance(2); builder->AddAssertion( new(zone()) RegExpAssertion(RegExpAssertion::BOUNDARY)); continue; case 'B': Advance(2); builder->AddAssertion( new(zone()) RegExpAssertion(RegExpAssertion::NON_BOUNDARY)); continue; // AtomEscape :: // CharacterClassEscape // // CharacterClassEscape :: one of // d D s S w W case 'd': case 'D': case 's': case 'S': case 'w': case 'W': { uc32 c = Next(); Advance(2); ZoneList<CharacterRange>* ranges = new ZoneList<CharacterRange>(2); CharacterRange::AddClassEscape(c, ranges); RegExpTree* atom = new(zone()) RegExpCharacterClass(ranges, false); builder->AddAtom(atom); break; } case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { int index = 0; if (ParseBackReferenceIndex(&index)) { RegExpCapture* capture = NULL; if (captures_ != NULL && index <= captures_->length()) { capture = captures_->at(index - 1); } if (capture == NULL) { builder->AddEmpty(); break; } RegExpTree* atom = new(zone()) RegExpBackReference(capture); builder->AddAtom(atom); break; } uc32 first_digit = Next(); if (first_digit == '8' || first_digit == '9') { // Treat as identity escape builder->AddCharacter(first_digit); Advance(2); break; } } // FALLTHROUGH case '0': { Advance(); uc32 octal = ParseOctalLiteral(); builder->AddCharacter(octal); break; } // ControlEscape :: one of // f n r t v case 'f': Advance(2); builder->AddCharacter('\f'); break; case 'n': Advance(2); builder->AddCharacter('\n'); break; case 'r': Advance(2); builder->AddCharacter('\r'); break; case 't': Advance(2); builder->AddCharacter('\t'); break; case 'v': Advance(2); builder->AddCharacter('\v'); break; case 'c': { Advance(); uc32 controlLetter = Next(); // Special case if it is an ASCII letter. // Convert lower case letters to uppercase. uc32 letter = controlLetter & ~('a' ^ 'A'); if (letter < 'A' || 'Z' < letter) { // controlLetter is not in range 'A'-'Z' or 'a'-'z'. // This is outside the specification. We match JSC in // reading the backslash as a literal character instead // of as starting an escape. builder->AddCharacter('\\'); } else { Advance(2); builder->AddCharacter(controlLetter & 0x1f); } break; } case 'x': { Advance(2); uc32 value; if (ParseHexEscape(2, &value)) { builder->AddCharacter(value); } else { builder->AddCharacter('x'); } break; } case 'u': { Advance(2); uc32 value; if (ParseHexEscape(4, &value)) { builder->AddCharacter(value); } else { builder->AddCharacter('u'); } break; } default: // Identity escape. builder->AddCharacter(Next()); Advance(2); break; } break; case '{': { int dummy; if (ParseIntervalQuantifier(&dummy, &dummy)) { ReportError(CStrVector("Nothing to repeat") CHECK_FAILED); } // fallthrough } default: builder->AddCharacter(current()); Advance(); break; } // end switch(current()) int min; int max; switch (current()) { // QuantifierPrefix :: // * // + // ? // { case '*': min = 0; max = RegExpTree::kInfinity; Advance(); break; case '+': min = 1; max = RegExpTree::kInfinity; Advance(); break; case '?': min = 0; max = 1; Advance(); break; case '{': if (ParseIntervalQuantifier(&min, &max)) { if (max < min) { ReportError(CStrVector("numbers out of order in {} quantifier.") CHECK_FAILED); } break; } else { continue; } default: continue; } RegExpQuantifier::Type type = RegExpQuantifier::GREEDY; if (current() == '?') { type = RegExpQuantifier::NON_GREEDY; Advance(); } else if (FLAG_regexp_possessive_quantifier && current() == '+') { // FLAG_regexp_possessive_quantifier is a debug-only flag. type = RegExpQuantifier::POSSESSIVE; Advance(); } builder->AddQuantifierToAtom(min, max, type); } } #ifdef DEBUG // Currently only used in an ASSERT. static bool IsSpecialClassEscape(uc32 c) { switch (c) { case 'd': case 'D': case 's': case 'S': case 'w': case 'W': return true; default: return false; } } #endif // In order to know whether an escape is a backreference or not we have to scan // the entire regexp and find the number of capturing parentheses. However we // don't want to scan the regexp twice unless it is necessary. This mini-parser // is called when needed. It can see the difference between capturing and // noncapturing parentheses and can skip character classes and backslash-escaped // characters. void RegExpParser::ScanForCaptures() { // Start with captures started previous to current position int capture_count = captures_started(); // Add count of captures after this position. int n; while ((n = current()) != kEndMarker) { Advance(); switch (n) { case '\\': Advance(); break; case '[': { int c; while ((c = current()) != kEndMarker) { Advance(); if (c == '\\') { Advance(); } else { if (c == ']') break; } } break; } case '(': if (current() != '?') capture_count++; break; } } capture_count_ = capture_count; is_scanned_for_captures_ = true; } bool RegExpParser::ParseBackReferenceIndex(int* index_out) { ASSERT_EQ('\\', current()); ASSERT('1' <= Next() && Next() <= '9'); // Try to parse a decimal literal that is no greater than the total number // of left capturing parentheses in the input. int start = position(); int value = Next() - '0'; Advance(2); while (true) { uc32 c = current(); if (IsDecimalDigit(c)) { value = 10 * value + (c - '0'); if (value > kMaxCaptures) { Reset(start); return false; } Advance(); } else { break; } } if (value > captures_started()) { if (!is_scanned_for_captures_) { int saved_position = position(); ScanForCaptures(); Reset(saved_position); } if (value > capture_count_) { Reset(start); return false; } } *index_out = value; return true; } // QuantifierPrefix :: // { DecimalDigits } // { DecimalDigits , } // { DecimalDigits , DecimalDigits } // // Returns true if parsing succeeds, and set the min_out and max_out // values. Values are truncated to RegExpTree::kInfinity if they overflow. bool RegExpParser::ParseIntervalQuantifier(int* min_out, int* max_out) { ASSERT_EQ(current(), '{'); int start = position(); Advance(); int min = 0; if (!IsDecimalDigit(current())) { Reset(start); return false; } while (IsDecimalDigit(current())) { int next = current() - '0'; if (min > (RegExpTree::kInfinity - next) / 10) { // Overflow. Skip past remaining decimal digits and return -1. do { Advance(); } while (IsDecimalDigit(current())); min = RegExpTree::kInfinity; break; } min = 10 * min + next; Advance(); } int max = 0; if (current() == '}') { max = min; Advance(); } else if (current() == ',') { Advance(); if (current() == '}') { max = RegExpTree::kInfinity; Advance(); } else { while (IsDecimalDigit(current())) { int next = current() - '0'; if (max > (RegExpTree::kInfinity - next) / 10) { do { Advance(); } while (IsDecimalDigit(current())); max = RegExpTree::kInfinity; break; } max = 10 * max + next; Advance(); } if (current() != '}') { Reset(start); return false; } Advance(); } } else { Reset(start); return false; } *min_out = min; *max_out = max; return true; } uc32 RegExpParser::ParseOctalLiteral() { ASSERT('0' <= current() && current() <= '7'); // For compatibility with some other browsers (not all), we parse // up to three octal digits with a value below 256. uc32 value = current() - '0'; Advance(); if ('0' <= current() && current() <= '7') { value = value * 8 + current() - '0'; Advance(); if (value < 32 && '0' <= current() && current() <= '7') { value = value * 8 + current() - '0'; Advance(); } } return value; } bool RegExpParser::ParseHexEscape(int length, uc32 *value) { int start = position(); uc32 val = 0; bool done = false; for (int i = 0; !done; i++) { uc32 c = current(); int d = HexValue(c); if (d < 0) { Reset(start); return false; } val = val * 16 + d; Advance(); if (i == length - 1) { done = true; } } *value = val; return true; } uc32 RegExpParser::ParseClassCharacterEscape() { ASSERT(current() == '\\'); ASSERT(has_next() && !IsSpecialClassEscape(Next())); Advance(); switch (current()) { case 'b': Advance(); return '\b'; // ControlEscape :: one of // f n r t v case 'f': Advance(); return '\f'; case 'n': Advance(); return '\n'; case 'r': Advance(); return '\r'; case 't': Advance(); return '\t'; case 'v': Advance(); return '\v'; case 'c': { uc32 controlLetter = Next(); uc32 letter = controlLetter & ~('A' ^ 'a'); // For compatibility with JSC, inside a character class // we also accept digits and underscore as control characters. if ((controlLetter >= '0' && controlLetter <= '9') || controlLetter == '_' || (letter >= 'A' && letter <= 'Z')) { Advance(2); // Control letters mapped to ASCII control characters in the range // 0x00-0x1f. return controlLetter & 0x1f; } // We match JSC in reading the backslash as a literal // character instead of as starting an escape. return '\\'; } case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': // For compatibility, we interpret a decimal escape that isn't // a back reference (and therefore either \0 or not valid according // to the specification) as a 1..3 digit octal character code. return ParseOctalLiteral(); case 'x': { Advance(); uc32 value; if (ParseHexEscape(2, &value)) { return value; } // If \x is not followed by a two-digit hexadecimal, treat it // as an identity escape. return 'x'; } case 'u': { Advance(); uc32 value; if (ParseHexEscape(4, &value)) { return value; } // If \u is not followed by a four-digit hexadecimal, treat it // as an identity escape. return 'u'; } default: { // Extended identity escape. We accept any character that hasn't // been matched by a more specific case, not just the subset required // by the ECMAScript specification. uc32 result = current(); Advance(); return result; } } return 0; } CharacterRange RegExpParser::ParseClassAtom(uc16* char_class) { ASSERT_EQ(0, *char_class); uc32 first = current(); if (first == '\\') { switch (Next()) { case 'w': case 'W': case 'd': case 'D': case 's': case 'S': { *char_class = Next(); Advance(2); return CharacterRange::Singleton(0); // Return dummy value. } case kEndMarker: return ReportError(CStrVector("\\ at end of pattern")); default: uc32 c = ParseClassCharacterEscape(CHECK_FAILED); return CharacterRange::Singleton(c); } } else { Advance(); return CharacterRange::Singleton(first); } } static const uc16 kNoCharClass = 0; // Adds range or pre-defined character class to character ranges. // If char_class is not kInvalidClass, it's interpreted as a class // escape (i.e., 's' means whitespace, from '\s'). static inline void AddRangeOrEscape(ZoneList<CharacterRange>* ranges, uc16 char_class, CharacterRange range) { if (char_class != kNoCharClass) { CharacterRange::AddClassEscape(char_class, ranges); } else { ranges->Add(range); } } RegExpTree* RegExpParser::ParseCharacterClass() { static const char* kUnterminated = "Unterminated character class"; static const char* kRangeOutOfOrder = "Range out of order in character class"; ASSERT_EQ(current(), '['); Advance(); bool is_negated = false; if (current() == '^') { is_negated = true; Advance(); } ZoneList<CharacterRange>* ranges = new ZoneList<CharacterRange>(2); while (has_more() && current() != ']') { uc16 char_class = kNoCharClass; CharacterRange first = ParseClassAtom(&char_class CHECK_FAILED); if (current() == '-') { Advance(); if (current() == kEndMarker) { // If we reach the end we break out of the loop and let the // following code report an error. break; } else if (current() == ']') { AddRangeOrEscape(ranges, char_class, first); ranges->Add(CharacterRange::Singleton('-')); break; } uc16 char_class_2 = kNoCharClass; CharacterRange next = ParseClassAtom(&char_class_2 CHECK_FAILED); if (char_class != kNoCharClass || char_class_2 != kNoCharClass) { // Either end is an escaped character class. Treat the '-' verbatim. AddRangeOrEscape(ranges, char_class, first); ranges->Add(CharacterRange::Singleton('-')); AddRangeOrEscape(ranges, char_class_2, next); continue; } if (first.from() > next.to()) { return ReportError(CStrVector(kRangeOutOfOrder) CHECK_FAILED); } ranges->Add(CharacterRange::Range(first.from(), next.to())); } else { AddRangeOrEscape(ranges, char_class, first); } } if (!has_more()) { return ReportError(CStrVector(kUnterminated) CHECK_FAILED); } Advance(); if (ranges->length() == 0) { ranges->Add(CharacterRange::Everything()); is_negated = !is_negated; } return new(zone()) RegExpCharacterClass(ranges, is_negated); } // ---------------------------------------------------------------------------- // The Parser interface. ParserMessage::~ParserMessage() { for (int i = 0; i < args().length(); i++) DeleteArray(args()[i]); DeleteArray(args().start()); } ScriptDataImpl::~ScriptDataImpl() { if (owns_store_) store_.Dispose(); } int ScriptDataImpl::Length() { return store_.length() * sizeof(unsigned); } const char* ScriptDataImpl::Data() { return reinterpret_cast<const char*>(store_.start()); } bool ScriptDataImpl::HasError() { return has_error(); } void ScriptDataImpl::Initialize() { // Prepares state for use. if (store_.length() >= PreparseDataConstants::kHeaderSize) { function_index_ = PreparseDataConstants::kHeaderSize; int symbol_data_offset = PreparseDataConstants::kHeaderSize + store_[PreparseDataConstants::kFunctionsSizeOffset]; if (store_.length() > symbol_data_offset) { symbol_data_ = reinterpret_cast<byte*>(&store_[symbol_data_offset]); } else { // Partial preparse causes no symbol information. symbol_data_ = reinterpret_cast<byte*>(&store_[0] + store_.length()); } symbol_data_end_ = reinterpret_cast<byte*>(&store_[0] + store_.length()); } } int ScriptDataImpl::ReadNumber(byte** source) { // Reads a number from symbol_data_ in base 128. The most significant // bit marks that there are more digits. // If the first byte is 0x80 (kNumberTerminator), it would normally // represent a leading zero. Since that is useless, and therefore won't // appear as the first digit of any actual value, it is used to // mark the end of the input stream. byte* data = *source; if (data >= symbol_data_end_) return -1; byte input = *data; if (input == PreparseDataConstants::kNumberTerminator) { // End of stream marker. return -1; } int result = input & 0x7f; data++; while ((input & 0x80u) != 0) { if (data >= symbol_data_end_) return -1; input = *data; result = (result << 7) | (input & 0x7f); data++; } *source = data; return result; } // Create a Scanner for the preparser to use as input, and preparse the source. static ScriptDataImpl* DoPreParse(UC16CharacterStream* source, bool allow_lazy, ParserRecorder* recorder) { Isolate* isolate = Isolate::Current(); V8JavaScriptScanner scanner(isolate->unicode_cache()); scanner.Initialize(source); intptr_t stack_limit = isolate->stack_guard()->real_climit(); if (!preparser::PreParser::PreParseProgram(&scanner, recorder, allow_lazy, stack_limit)) { isolate->StackOverflow(); return NULL; } // Extract the accumulated data from the recorder as a single // contiguous vector that we are responsible for disposing. Vector<unsigned> store = recorder->ExtractData(); return new ScriptDataImpl(store); } // Preparse, but only collect data that is immediately useful, // even if the preparser data is only used once. ScriptDataImpl* ParserApi::PartialPreParse(UC16CharacterStream* source, v8::Extension* extension) { bool allow_lazy = FLAG_lazy && (extension == NULL); if (!allow_lazy) { // Partial preparsing is only about lazily compiled functions. // If we don't allow lazy compilation, the log data will be empty. return NULL; } PartialParserRecorder recorder; return DoPreParse(source, allow_lazy, &recorder); } ScriptDataImpl* ParserApi::PreParse(UC16CharacterStream* source, v8::Extension* extension) { Handle<Script> no_script; bool allow_lazy = FLAG_lazy && (extension == NULL); CompleteParserRecorder recorder; return DoPreParse(source, allow_lazy, &recorder); } bool RegExpParser::ParseRegExp(FlatStringReader* input, bool multiline, RegExpCompileData* result) { ASSERT(result != NULL); RegExpParser parser(input, &result->error, multiline); RegExpTree* tree = parser.ParsePattern(); if (parser.failed()) { ASSERT(tree == NULL); ASSERT(!result->error.is_null()); } else { ASSERT(tree != NULL); ASSERT(result->error.is_null()); result->tree = tree; int capture_count = parser.captures_started(); result->simple = tree->IsAtom() && parser.simple() && capture_count == 0; result->contains_anchor = parser.contains_anchor(); result->capture_count = capture_count; } return !parser.failed(); } bool ParserApi::Parse(CompilationInfo* info) { ASSERT(info->function() == NULL); FunctionLiteral* result = NULL; Handle<Script> script = info->script(); if (info->is_lazy()) { Parser parser(script, true, NULL, NULL); result = parser.ParseLazy(info); } else { bool allow_natives_syntax = info->allows_natives_syntax() || FLAG_allow_natives_syntax; ScriptDataImpl* pre_data = info->pre_parse_data(); Parser parser(script, allow_natives_syntax, info->extension(), pre_data); if (pre_data != NULL && pre_data->has_error()) { Scanner::Location loc = pre_data->MessageLocation(); const char* message = pre_data->BuildMessage(); Vector<const char*> args = pre_data->BuildArgs(); parser.ReportMessageAt(loc, message, args); DeleteArray(message); for (int i = 0; i < args.length(); i++) { DeleteArray(args[i]); } DeleteArray(args.start()); ASSERT(info->isolate()->has_pending_exception()); } else { Handle<String> source = Handle<String>(String::cast(script->source())); result = parser.ParseProgram(source, info->is_global(), info->StrictMode()); } } info->SetFunction(result); return (result != NULL); } } } // namespace v8::internal
[ [ [ 1, 5164 ] ] ]
4e428f890ad165eb5d136726b71d19f870786f67
ea12fed4c32e9c7992956419eb3e2bace91f063a
/zombie/code/zombie/nscene/src/nscene/nimpostornode_main.cc
9f980f514a1b71e6f64515701666a2017618444e
[]
no_license
ugozapad/TheZombieEngine
832492930df28c28cd349673f79f3609b1fe7190
8e8c3e6225c2ed93e07287356def9fbdeacf3d6a
refs/heads/master
2020-04-30T11:35:36.258363
2011-02-24T14:18:43
2011-02-24T14:18:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,014
cc
#include "precompiled/pchnscene.h" //------------------------------------------------------------------------------ // nimpostornode_main.cc // (C) 2005 Conjurer Services, S.A. //------------------------------------------------------------------------------ #include "nscene/nimpostornode.h" nNebulaScriptClass(nImpostorNode, "ngeometrynode"); //------------------------------------------------------------------------------ /** */ nImpostorNode::nImpostorNode() : curVertexPtr(0), maxVertices(0), curVertex(0), curIndex(0) { this->SetWorldCoord(true); } //------------------------------------------------------------------------------ /** */ nImpostorNode::~nImpostorNode() { // empty } //------------------------------------------------------------------------------ /** */ bool nImpostorNode::LoadResources() { return nGeometryNode::LoadResources(); } //------------------------------------------------------------------------------ /** */ void nImpostorNode::UnloadResources() { nGeometryNode::UnloadResources(); } //------------------------------------------------------------------------------ /** */ void nImpostorNode::Attach(nSceneGraph* sceneGraph, nEntityObject* entityObject) { return nGeometryNode::Attach(sceneGraph, entityObject); } //------------------------------------------------------------------------------ /** */ bool nImpostorNode::Apply(nSceneGraph* sceneGraph) { if (nGeometryNode::Apply(sceneGraph)) { nGfxServer2* gfxServer = nGfxServer2::Instance(); nShader2* curShader = gfxServer->GetShader(); // set scale factor for the impostor if (curShader->IsParameterUsed(nShaderState::Scale)) { curShader->SetFloat(nShaderState::Scale, this->localBox.extents().y); } // reset number of instances N_IFDEF_NLOG(this->numInstancesDrawn = 0); // setup and reset the dynamic mesh if (!this->dynMesh.IsValid()) { this->dynMesh.Initialize(nGfxServer2::TriangleList, nMesh2::Coord | nMesh2::Uv0 | nMesh2::Uv1, nMesh2::WriteOnly | nMesh2::NeedsVertexShader, false);//!indexed n_assert(this->dynMesh.IsValid()); } // check that last rendering worked ok! n_assert(this->curVertexPtr == 0); n_assert(this->maxVertices == 0); n_assert(this->curVertex == 0); n_assert(this->curIndex == 0); this->dynMesh.Begin(this->curVertexPtr, this->maxVertices); return true; } return false; } //------------------------------------------------------------------------------ /** */ bool nImpostorNode::Render(nSceneGraph* sceneGraph, nEntityObject* /*entityObject*/) { //do not call nGeometryNode::Render, it performs rendering of instances //nGeometryNode::Render(sceneGraph, entityObject); //TODO- if the current impostor doesn't fit the dynamic mesh, swap it //... N_IFDEF_NLOG(++this->numInstancesDrawn); // fill the dynamic array with info on this instance const vector2 spriteCorners[4] = { vector2(-1.0, -1.0), vector2(-1.0, 1.0), vector2(1.0, 1.0), vector2(1.0, -1.0) }; this->curVertex += 6; //const vector3& curPosition = sceneGraph->GetModelTransform().pos_component(); const bbox3& localBox = this->GetLocalBox(); vector3 curPosition = sceneGraph->GetModelTransform() * localBox.center(); float*& dstVertices = this->curVertexPtr; // TODO transform center of local bbox, use extents as extrude vector // vertex 0 dstVertices[curIndex++] = curPosition.x; dstVertices[curIndex++] = curPosition.y; dstVertices[curIndex++] = curPosition.z; dstVertices[curIndex++] = 0.0f; dstVertices[curIndex++] = 1.0f; dstVertices[curIndex++] = spriteCorners[0].x; dstVertices[curIndex++] = spriteCorners[0].y; // vertex 1 dstVertices[curIndex++] = curPosition.x; dstVertices[curIndex++] = curPosition.y; dstVertices[curIndex++] = curPosition.z; dstVertices[curIndex++] = 0.0f; dstVertices[curIndex++] = 0.0f; dstVertices[curIndex++] = spriteCorners[1].x; dstVertices[curIndex++] = spriteCorners[1].y; // vertex 2 dstVertices[curIndex++] = curPosition.x; dstVertices[curIndex++] = curPosition.y; dstVertices[curIndex++] = curPosition.z; dstVertices[curIndex++] = 1.0f; dstVertices[curIndex++] = 0.0f; dstVertices[curIndex++] = spriteCorners[2].x; dstVertices[curIndex++] = spriteCorners[2].y; // vertex 3 dstVertices[curIndex++] = curPosition.x; dstVertices[curIndex++] = curPosition.y; dstVertices[curIndex++] = curPosition.z; dstVertices[curIndex++] = 0.0f; dstVertices[curIndex++] = 1.0f; dstVertices[curIndex++] = spriteCorners[0].x; dstVertices[curIndex++] = spriteCorners[0].y; // vertex 4 dstVertices[curIndex++] = curPosition.x; dstVertices[curIndex++] = curPosition.y; dstVertices[curIndex++] = curPosition.z; dstVertices[curIndex++] = 1.0f; dstVertices[curIndex++] = 0.0f; dstVertices[curIndex++] = spriteCorners[2].x; dstVertices[curIndex++] = spriteCorners[2].y; // vertex 5 dstVertices[curIndex++] = curPosition.x; dstVertices[curIndex++] = curPosition.y; dstVertices[curIndex++] = curPosition.z; dstVertices[curIndex++] = 1.0f; dstVertices[curIndex++] = 1.0f; dstVertices[curIndex++] = spriteCorners[3].x; dstVertices[curIndex++] = spriteCorners[3].y; return true; } //------------------------------------------------------------------------------ /** */ bool nImpostorNode::Flush(nSceneGraph* N_IFNDEF_NGAME(sceneGraph)) { NLOG(renderpass, (3, " - nImpostorNode flushing %d instances", this->numInstancesDrawn)) #ifndef NGAME if (sceneGraph->GetShaderIndex() == this->wireframeShaderIndex) { nShader2* curShader = nGfxServer2::Instance()->GetShader(); if (curShader->IsParameterUsed(nShaderState::isSkinned)) { curShader->SetInt(nShaderState::isSkinned, 2);//IMPOSTOR } if (curShader->IsParameterUsed(nShaderState::CullMode)) { curShader->SetInt(nShaderState::CullMode, nShaderState::NoCull); } } #endif nGfxServer2::Instance()->PushTransform(nGfxServer2::Model, matrix44()); this->dynMesh.End(curVertex); nGfxServer2::Instance()->PopTransform(nGfxServer2::Model); this->curVertexPtr = 0; this->maxVertices = 0; this->curVertex = 0; this->curIndex = 0; return true; }
[ "magarcias@c1fa4281-9647-0410-8f2c-f027dd5e0a91" ]
[ [ [ 1, 231 ] ] ]
ce8b43c654d491a096763e21ca694ee867d670b3
7b4c786d4258ce4421b1e7bcca9011d4eeb50083
/_20090206_代码统计专用文件夹/C++Primer中文版(第4版)/第三章 标准库类型/20090129_习题3.19_创建vector对象_用迭代器更改当前值_并显示.cpp
d1305fbaa1388a2cda62f1eb7faf9393a42acf5a
[]
no_license
lzq123218/guoyishi-works
dbfa42a3e2d3bd4a984a5681e4335814657551ef
4e78c8f2e902589c3f06387374024225f52e5a92
refs/heads/master
2021-12-04T11:11:32.639076
2011-05-30T14:12:43
2011-05-30T14:12:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
275
cpp
#include <iostream> #include <vector> using namespace std; int main() { vector<int> ivec(10,20); for(vector<int>::iterator iter = ivec.begin();iter != ivec.end();++iter){ cout << *iter << "\t"; *iter = (*iter)*2; cout << *iter << endl; } return 0; }
[ "baicaibang@70501136-4834-11de-8855-c187e5f49513" ]
[ [ [ 1, 15 ] ] ]
ebc6fb20e89828f29706f62aee1b4cffece75874
36bf908bb8423598bda91bd63c4bcbc02db67a9d
/Library/CHotkeyHandler.cpp
15febe39e79e820d09d62728a8f847983dbeed2d
[]
no_license
code4bones/crawlpaper
edbae18a8b099814a1eed5453607a2d66142b496
f218be1947a9791b2438b438362bc66c0a505f99
refs/heads/master
2021-01-10T13:11:23.176481
2011-04-14T11:04:17
2011-04-14T11:04:17
44,686,513
0
1
null
null
null
null
UTF-8
C++
false
false
18,886
cpp
#include "env.h" #include "pragma.h" #include "macro.h" #include "window.h" #include "traceexpr.h" //#define _TRACE_FLAG _TRFLAG_TRACEOUTPUT //#define _TRACE_FLAG _TRFLAG_NOTRACE #define _TRACE_FLAG_INFO _TRFLAG_NOTRACE #define _TRACE_FLAG_WARN _TRFLAG_NOTRACE #define _TRACE_FLAG_ERR _TRFLAG_NOTRACE /* History ---------- Monday, April 21, 2003 * Initial version Tuesday, April 22, 2003 * Added list entries recycling into RemoveHandler(). Now removing works correctly. * Added utility functions: HotkeyFlagsToModifiers() and HotkeyModifiersToFlags() Wednesday, April 23, 2003 * Added checks on Start() to prevent starting if already started. Thursday, April 24, 2003 * Fixed CreateThread() in Start() calling so that it works on Win9x. Thursday, May 01, 2003 * Fixed code in MakeWindow() and now CHotkeyHandler works under Win9x very well. Monday, Oct 20, 2003 * Removed 'using std::vector' from header file * Fixed a minor bug in RemoveHandler() */ /* ----------------------------------------------------------------------------- * Copyright (c) 2003 Lallous <[email protected]> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ----------------------------------------------------------------------------- */ /* CHotkeyHandler() is a class that wrappes the RegisterHotkey() and its UnregisterHotkey() Windows APIs. This class provides a simple method to implement and handle multiple hotkeys at the same time. * Debug Flag: -------------- bool bDebug; This flag is used to turn debugging on/off. Useful when you're developing. * Constructor --------------- CHotkeyHandler(bool Debug = false); This constructor initializes internal variables and sets debug info on/off If you call Start() and do not call Stop() the destructor will automatically Stop() for you. * Start() ----------- int Start(LPVOID Param=NULL); This method is asynchronous; It starts the hotkey listener. You must have at least one handler inserted before calling this method, otherwise hkheNoEntry would be returned. It returns an hkhe error code. 'Param' is a user supplied pointer used when calling the hotkey callbacks. * Stop() ----------- int Stop(); After you've started the hotkey listener, you can stop it w/ Stop(). Stop() will return success if it was stopped successfully or if it was not started at all. * InsertHandler() -------------------- int InsertHandler(WORD mod, WORD virt, tHotkeyCB cb, int &index); This function will return an error code. 'index' will be filled by the index of where the hotkey is stored (1 based). If you attempt to insert a hotkey that already exists then 'index' will be the index value of that previously inserted hotkey. 'mod' is any of the MOD_XXXX constants. 'virt' is the virtual key code. 'cb' is the handler that will be called. The prototype is: void Callback(void *param) The 'param' of 'cb' will be the one that you passed when you called Start() * RemoveHandler() -------------------- int RemoveHandler(const int index); Removes a hotkey definition. This function has effects only when called before Start() or after Stop(). * HotkeyModifiersToFlags() ---------------------------- WORD HotkeyModifiersToFlags(WORD modf); Converts from MOD_XXX modifiers into HOTKEYF_XXXX to be used by HOTKEYFLAGS. This method is static. * HotkeyFlagsToModifiers() ----------------------------- WORD HotkeyFlagsToModifiers(WORD hkf); Converts HOTKEYFLAGS used by CHotKeyCtrl into MOD_XXX used by windows API This method is static. Error codes ------------- CHotkeyHandler::hkheXXXXX hkheOk - Success hkheClassError - Window class registration error hkheWindowError - Window creation error hkheNoEntry - No entry found at given index hkheRegHotkeyError - Could not register hotkey hkheMessageLoop - Could not create message loop thread hkheInternal - Internal error */ #include "chotkeyhandler.h" //------------------------------------------------------------------------------------- // Initializes internal variables CHotkeyHandler::CHotkeyHandler(bool Debug) { bDebug = Debug; m_bStarted = false; m_hWnd = NULL; m_hMessageLoopThread = m_hPollingError = m_hRaceProtection = NULL; } //------------------------------------------------------------------------------------- // Initializes internal variables CHotkeyHandler::~CHotkeyHandler() { if (m_bStarted) Stop(); } //------------------------------------------------------------------------------------- // Releases and deletes the protection mutex void CHotkeyHandler::EndRaceProtection() { if (m_hRaceProtection) { ::ReleaseMutex(m_hRaceProtection); ::CloseHandle(m_hRaceProtection); // invalidate handle m_hRaceProtection = NULL; } } //------------------------------------------------------------------------------------- // Creates and acquires protection mutex bool CHotkeyHandler::BeginRaceProtection() { LPCTSTR szMutex = _T("{97B7C451-2467-4C3C-BB91-25AC918C2430}"); // failed to create a mutex ? to open ? if ( // failed to create and the object does not exist? ( !(m_hRaceProtection = ::CreateMutex(NULL, FALSE, szMutex)) && (::GetLastError() != ERROR_ALREADY_EXISTS) ) || !(m_hRaceProtection = ::OpenMutex(MUTEX_ALL_ACCESS, FALSE, szMutex)) ) return false; ::WaitForSingleObject(m_hRaceProtection, INFINITE); return true; } //------------------------------------------------------------------------------------- // removes a disabled hotkey from the internal list // If this function is of use only before a Start() call or after a Stop() int CHotkeyHandler::RemoveHandler(const int index) { // index out of range ? if (m_listHk.size() <= index) return hkheNoEntry; // mark handler as deleted m_listHk.at(index).deleted = true; return hkheOk; } //------------------------------------------------------------------------------------- // Generates a unique atom and then registers a hotkey // int CHotkeyHandler::EnableHotkey(const int index) { TCHAR atomname[MAX_PATH]; ATOM a; // get hotkey definition tHotkeyDef *def = &m_listHk.at(index); // If entry does not exist then return Ok if (def->deleted) return hkheOk; // compose atom name wsprintf(atomname, _T("ED7D65EB-B139-44BB-B455-7BB83FE361DE-%08lX"), MAKELONG(def->virt, def->mod)); // Try to create an atom a = ::GlobalAddAtom(atomname); // could not create? probably already there if (!a) a = ::GlobalFindAtom(atomname); // try to locate atom if (!a || !::RegisterHotKey(m_hWnd, a, def->mod, def->virt)) { if (a) ::GlobalDeleteAtom(a); return hkheRegHotkeyError; } // store atom into definition too def->id = a; return hkheOk; } //------------------------------------------------------------------------------------- // Unregisters a hotkey and deletes the atom int CHotkeyHandler::DisableHotkey(const int index) { // get hotkey definition tHotkeyDef *def = &m_listHk.at(index); // skip deleted entry if (def->deleted) return hkheOk; // already registered if (def->id) { UnregisterHotKey(m_hWnd, def->id); GlobalDeleteAtom(def->id); return hkheOk; } else return hkheNoEntry; } //------------------------------------------------------------------------------------- // Locates a hotkey definition given its ID int CHotkeyHandler::FindHandlerById(const ATOM id, tHotkeyDef *&def) { tHotkeyList::iterator i; for (i=m_listHk.begin(); i != m_listHk.end(); i++) { def = &*i; if ((def->id == id) && !def->deleted) return hkheOk; } return hkheNoEntry; } //------------------------------------------------------------------------------------- // Finds a deleted entry int CHotkeyHandler::FindDeletedHandler(int &idx) { tHotkeyDef *def; int i, c = m_listHk.size(); for (i=0; i< c; i++) { def = &m_listHk[i]; if (def->deleted) { idx = i; return hkheOk; } } return hkheNoEntry; } //------------------------------------------------------------------------------------- // Finds a hotkeydef given it's modifier 'mod' and virtuak key 'virt' // If return value is hkheOk then 'idx' is filled with the found index // Otherwise 'idx' is left untouched. int CHotkeyHandler::FindHandler(WORD mod, WORD virt, int &idx) { tHotkeyDef *def; int i, c = m_listHk.size(); for (i=0; i < c; i++) { def = &m_listHk[i]; // found anything in the list ? if ( (def->mod == mod) && (def->virt == virt) && !def->deleted) { // return its id idx = i; return hkheOk; } } return hkheNoEntry; } //------------------------------------------------------------------------------------- // Inserts a hotkey into the list // Returns into 'idx' the index of where the definition is added // You may use the returned idx to modify/delete this definition int CHotkeyHandler::InsertHandler(WORD mod, WORD virt, tHotkeyCB cb, int &idx) { tHotkeyDef def; // Try to find a deleted entry and use it if (FindDeletedHandler(idx) == hkheOk) { tHotkeyDef *d = &m_listHk.at(idx); d->deleted = false; d->id = NULL; d->callback = cb; d->virt = virt; d->mod = mod; } // Add a new entry else if (FindHandler(mod, virt, idx) == hkheNoEntry) { def.mod = mod; def.virt = virt; def.callback = cb; def.id = NULL; def.deleted = false; idx = m_listHk.size(); m_listHk.push_back(def); } return hkheOk; } //------------------------------------------------------------------------------------- // Window Procedure // Almost empty; it responds to the WM_DESTROY message only LRESULT CALLBACK CHotkeyHandler::WindowProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam) { switch (Msg) { case WM_DESTROY: ::PostQuitMessage(0); break; default: return ::DefWindowProc(hWnd, Msg, wParam, lParam); } return 0; } //------------------------------------------------------------------------------------- // This function is run from a new thread, it: // 1) Create our hidden window to process hotkeys // 2) Enables (registers) all defined hotkeys // 3) Starts the message loop DWORD WINAPI CHotkeyHandler::MessageLoop(LPVOID Param) { int rc; CHotkeyHandler *_this = reinterpret_cast<CHotkeyHandler *>(Param); // create window if ((rc = _this->MakeWindow()) != hkheOk) { _this->m_PollingError = rc; ::SetEvent(_this->m_hPollingError); return rc; } // register all hotkeys for (int i=0; i<_this->m_listHk.size(); i++) { // try to register if ((rc = _this->EnableHotkey(i)) != hkheOk) { // disable hotkeys enabled so far for (int j=0;j<i;j++) _this->DisableHotkey(j); // uninit window _this->MakeWindow(true); // signal that error is ready _this->m_PollingError = rc; ::SetEvent(_this->m_hPollingError); return rc; } } _this->m_PollingError = hkheOk; ::SetEvent(_this->m_hPollingError); MSG msg; BOOL bRet; while ( ((bRet = ::GetMessage(&msg, _this->m_hWnd, 0, 0)) != 0) ) { if (bRet == -1) break; // hotkey received ? if (msg.message == WM_HOTKEY) { tHotkeyDef *def; // try to find handler (wParam == id (ATOM) if (_this->FindHandlerById( (ATOM) msg.wParam, def) == hkheOk) { // call the registered handler if (def->callback) def->callback(_this->m_lpCallbackParam); } } ::TranslateMessage(&msg); ::DispatchMessage(&msg); } return hkheOk; } //------------------------------------------------------------------------------------- // This asynchronous function will register all hotkeys and starts the window message // loop into its own thread. You would have to call Stop() to unroll everything // int CHotkeyHandler::Start(LPVOID cbParam) { int rc; // avoid starting again if already started if (m_bStarted) return hkheOk; // Do not start if no entries are there! if (m_listHk.empty()) return hkheNoEntry; if (!BeginRaceProtection()) return hkheInternal; if (!(m_hPollingError = ::CreateEvent(NULL, FALSE, FALSE, NULL))) { rc = hkheMessageLoop; goto cleanup; } m_lpCallbackParam = cbParam; // create message loop thread DWORD dwThreadId; m_hMessageLoopThread = ::CreateThread(NULL, NULL, MessageLoop, static_cast<LPVOID>(this), NULL, &dwThreadId); if (!m_hMessageLoopThread) { rc = hkheMessageLoop; goto cleanup; } // wait until we get an error code from the message loop thread ::WaitForSingleObject(m_hPollingError, INFINITE); if (m_PollingError != hkheOk) { ::CloseHandle(m_hMessageLoopThread); m_hMessageLoopThread = NULL; } rc = m_PollingError; m_bStarted = true; cleanup: EndRaceProtection(); return rc; } //------------------------------------------------------------------------------------- // Disables all hotkeys then kills the hidden window that processed the hotkeys // The return code is the one returned from the MessageLoop() // int CHotkeyHandler::Stop() { // not started? return Success if (!m_bStarted || !m_hMessageLoopThread) return hkheOk; if (!BeginRaceProtection()) return hkheInternal; // disable all hotkeys for (int i=0;i<m_listHk.size();i++) DisableHotkey(i); // tell message loop to terminate ::SendMessage(m_hWnd, WM_DESTROY, 0, 0); // wait for the thread to exit by itself if (::WaitForSingleObject(m_hMessageLoopThread, 3000) == WAIT_TIMEOUT) ::TerminateThread(m_hMessageLoopThread, 0); // kill thread DWORD exitCode; ::GetExitCodeThread(m_hMessageLoopThread, &exitCode); // close handle of thread ::CloseHandle(m_hMessageLoopThread); // reset this variable m_hMessageLoopThread = NULL; // unregister window class MakeWindow(true); // kill error polling event ::CloseHandle(m_hPollingError); m_bStarted = false; EndRaceProtection(); return exitCode; } //------------------------------------------------------------------------------------- // Creates the hidden window that will receive hotkeys notification // When bUnmake, it will Unregister the window class int CHotkeyHandler::MakeWindow(bool bUnmake) { HWND hwnd; WNDCLASSEX wcl; HINSTANCE hInstance = ::GetModuleHandle(NULL); // Our hotkey processing window class LPTSTR szClassName = _T("HKWND-CLS-BC090410-3872-49E5-BDF7-1BB8056BF696"); if (bUnmake) { UnregisterClass(szClassName, hInstance); m_hWnd = NULL; return hkheOk; } // Set the window class wcl.cbSize = sizeof(WNDCLASSEX); wcl.cbClsExtra = 0; wcl.cbWndExtra = 0; wcl.hbrBackground = NULL;//(HBRUSH) GetStockObject(WHITE_BRUSH); wcl.lpszClassName = szClassName; wcl.lpszMenuName = NULL; wcl.hCursor = NULL;//LoadCursor(NULL, IDC_ARROW); wcl.hIcon = NULL;//LoadIcon(NULL, IDI_APPLICATION); wcl.hIconSm = NULL;//LoadIcon(NULL, IDI_WINLOGO); wcl.hInstance = hInstance; wcl.lpfnWndProc = WindowProc; wcl.style = 0; // Failed to register class other than that the class already exists? if (!::RegisterClassEx(&wcl) && (::GetLastError() != ERROR_CLASS_ALREADY_EXISTS)) return hkheClassError; // Create the window hwnd = ::CreateWindowEx( 0, szClassName, _T("CHotkeyHandlerWindow"), WS_OVERLAPPEDWINDOW, 0, 0, 100, 100, HWND_DESKTOP, NULL, hInstance, NULL); // Window creation failed ? if (!hwnd) return hkheWindowError; // hide window ::ShowWindow(hwnd, bDebug ? SW_SHOW : SW_HIDE); m_hWnd = hwnd; return hkheOk; } //--------------------------------------------------------------------------------- // Converts HOTKEYFLAGS used by CHotKeyCtrl into MOD_XXX used by windows API // WORD CHotkeyHandler::HotkeyFlagsToModifiers(WORD hkf) { WORD r; r = ((hkf & HOTKEYF_CONTROL) ? MOD_CONTROL : 0) | ((hkf & HOTKEYF_ALT) ? MOD_ALT : 0) | ((hkf & HOTKEYF_SHIFT) ? MOD_SHIFT : 0); return r; } //--------------------------------------------------------------------------------- // Converts from MOD_XXX modifiers into HOTKEYF_XXXX // WORD CHotkeyHandler::HotkeyModifiersToFlags(WORD modf) { WORD r; r = ((modf & MOD_CONTROL) ? HOTKEYF_CONTROL : 0) | ((modf & MOD_ALT) ? HOTKEYF_ALT : 0) | ((modf & MOD_SHIFT) ? HOTKEYF_SHIFT : 0); return r; }
[ [ [ 1, 635 ] ] ]
79526d8196c27febf20cd047ab85bc63de37dfd1
b8ac0bb1d1731d074b7a3cbebccc283529b750d4
/Code/controllers/RecollectionBenchmark/robotapi/webts/WebotsRobot.cpp
00c9b09e29543c9f8b6aa6d95bfc633f94adbd7f
[]
no_license
dh-04/tpf-robotica
5efbac38d59fda0271ac4639ea7b3b4129c28d82
10a7f4113d5a38dc0568996edebba91f672786e9
refs/heads/master
2022-12-10T18:19:22.428435
2010-11-05T02:42:29
2010-11-05T02:42:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,645
cpp
#include "WebotsRobot.h" #include <robotapi/webts/WebotsCamera.h> #include <robotapi/webts/WebotsDistanceSensor.h> #include <robotapi/webts/WebotsServo.h> #include <robotapi/webts/WebotsBattery.h> #include <robotapi/webts/WebotsPCBattery.h> #include <robotapi/webts/WebotsDifferentialWheels.h> #include <robotapi/webts/WebotsTrashBin.h> #include <webots/Camera.hpp> #include <webots/Robot.hpp> #include <webots/GPS.hpp> #include <utils/Rectangle2D.h> #include <math.h> namespace robotapi { namespace webts { webots::Robot * robot; webots::GPS * gps; double lastPosX, lastPosZ; double lastGPSX, lastGPSZ; double distanceCoveredOdometry, distanceCoveredGPS; WebotsRobot::WebotsRobot( WorldInfo * wi, webots::DifferentialWheels & dw){ robot = &dw; this->wi = wi; this->df = new WebotsDifferentialWheels(this->wi, (webots::DifferentialWheels&)*robot); IWbDeviceTag * wdt = new WebotsDeviceTag(3); std::string s = "HOLA"; this->pcBattery = new WebotsPCBattery(s,*wdt); this->robotBattery = new WebotsBattery(*robot,s,*wdt); this->ag = this->wi->getArenaGrid(); gps = robot->getGPS("gps"); if ( gps != NULL ){ gps->enable(32); lastGPSX = this->wi->getInitialPosition()->getX(); lastGPSZ = this->wi->getInitialPosition()->getY(); } lastPosX = this->wi->getInitialPosition()->getX(); lastPosZ = this->wi->getInitialPosition()->getY(); distanceCoveredOdometry = 0; distanceCoveredGPS = 0; } std::string WebotsRobot::getName(){ return robot->getName(); } double WebotsRobot::getTime(){ return robot->getTime(); } int WebotsRobot::getMode(){ return robot->getMode(); } bool WebotsRobot::getSynchronization(){ return robot->getSynchronization(); } double WebotsRobot::getBasicTimeStep(){ return robot->getBasicTimeStep(); } ICamera & WebotsRobot::getCamera(std::string name){ WebotsCamera * cam = new WebotsCamera(*robot->getCamera(name)); return * cam; } IDistanceSensor & WebotsRobot::getDistanceSensor(std::string name){ WebotsDistanceSensor * ds = new WebotsDistanceSensor(*robot->getDistanceSensor(name)); return * ds; } IServo & WebotsRobot::getServo(std::string name){ WebotsServo * s = new WebotsServo(*robot->getServo(name)); return * s; } IDevice & WebotsRobot::getDevice(std::string name){ IWbDeviceTag * wdt = new WebotsDeviceTag(3); WebotsDevice * d = new WebotsDevice(name, *wdt); return * d; } IDifferentialWheels & WebotsRobot::getDifferentialWheels(std::string name){ return *this->df; } IBattery & WebotsRobot::getBattery(std::string name){ if ( name.compare("b1") == 0 ) return *this->pcBattery; return *this->robotBattery; } ITrashBin & WebotsRobot::getTrashBin(std::string name){ if ( this->tb == NULL ) this->tb = new WebotsTrashBin(*robot->getTouchSensor(name)); return * (this->tb); } void WebotsRobot::step(int ms){ robot->step(ms); df->computeOdometry(); utils::ArenaGridSlot * currentSlot = this->ag->getSlotAt(df->getPosition()); // printf("STEPPING"); #ifdef REFRESH_SEEN_SLOTS if ( currentSlot != NULL ){ //printf("Current Slot: %g - %g --> Timestamp: %ld\n",currentSlot->getX(),currentSlot->getZ(),currentSlot->getTimeStamp()); std::list<utils::ArenaGridSlot *> seenSlots = this->getSlotsSeen(df->getPosition(), df->getOrientation(), currentSlot); this->saveChanges(seenSlots); } #endif #ifdef CONTROLLER_DEBUG printf("Current Position : %g %g %g\n",df->getPosition()->getX(),df->getPosition()->getY(),df->getOrientation()); #endif #ifdef OUTPUT_ODOMETRY_ERROR_GPS if ( gps != NULL ){ const double * values = gps->getValues(); double difX = values[0] - lastGPSX; double difZ = values[2] - lastGPSZ; double angle = atan2(-difX,-difZ); distanceCoveredOdometry += sqrt( (df->getPosition()->getX() - lastPosX ) * (df->getPosition()->getX() - lastPosX ) + (df->getPosition()->getY() - lastPosZ ) * (df->getPosition()->getY() - lastPosZ ) ); distanceCoveredGPS += sqrt( difX * difX + difZ * difZ ); printf("GPS Position : %g %g %g\n",values[0],values[2],angle);//(new utils::MyAngle(angle))->getNormalizedValue()); lastGPSX = values[0]; lastGPSZ = values[2]; lastPosX = df->getPosition()->getX(); lastPosZ = df->getPosition()->getY(); FILE * pFile; pFile = fopen ("odometryError.txt","a+"); if (pFile!=NULL){ fprintf(pFile,"%g %g %g %g %g %g %g %g\n",df->getPosition()->getX(), values[0], df->getPosition()->getY(), values[2], df->getOrientation(), angle, distanceCoveredOdometry, distanceCoveredGPS); } fclose(pFile); } #endif #ifdef CONTROLLER_DEBUG printf("Slots Left: %d - Really Left: %d - Visited : %d\n",this->ag->getSlotsLeft(),this->ag->getSlotsLeftWOExcluded(),this->ag->getSlotsVisited()); printf("Robot Battery : %g - PC Battery : %g\n",robotBattery->getValue(),pcBattery->getValue()); #endif // Refresh stats if ( gc != NULL ) gc->stepWasDone(); return ; } void WebotsRobot::saveChanges(std::list<utils::ArenaGridSlot *> ags){ std::list<utils::ArenaGridSlot *>::iterator it; time_t ts = time(NULL); #ifdef SAVE_CHANGED FILE * pFile; pFile = fopen ("changes.tmp","w"); if (pFile!=NULL){ #endif time_t ts0 = this->ag->getInitialTimeStamp(); for ( it=ags.begin() ; it != ags.end() ; it++ ){ if ( (*it)->setTimeStamp(ts) <= ts0 ) this->ag->setSlotVisited(*it); #ifdef SAVE_CHANGED fprintf(pFile,"(%d,%d)",(*it)->getI(),(*it)->getJ()); #endif // printf("(%d,%d)\n",(*it)->getI(),(*it)->getJ()); } #ifdef SAVE_CHANGED } fclose (pFile); #endif return; } std::list<utils::ArenaGridSlot *> WebotsRobot::getSlotsSeen(utils::MyPoint * position, double angle, utils::ArenaGridSlot * currentSlot){ std::list<utils::ArenaGridSlot *> out; out.push_back(currentSlot); utils::Rectangle2D * rect = new utils::Rectangle2D( position, this->wi->getMinimumDistance(), this->wi->getMaximumDistance(), angle, this->wi->getCameraFOVH()); if ( rect == NULL ) return out; //printf("Pos act: (%g,%g)",position->getX(),position->getY()); //printf("Angle: %g",angle); utils::MyPoint * minP = rect->getMinPoint(); utils::MyPoint * maxP = rect->getMaxPoint(); int minI = this->ag->getIForPoint(minP); int maxI = this->ag->getIForPoint(maxP); int minJ = this->ag->getJForPoint(minP); int maxJ = this->ag->getJForPoint(maxP); //printf("minI : %d, maxI : %d, minJ : %d, maxJ : %d\n",minI,maxI,minJ,maxJ); for( int i = minI ; i < maxI ; i++ ){ for( int j = minJ ; j < maxJ ; j++ ){ utils::ArenaGridSlot * current = this->ag->getSlotAt(i,j); if ( current != NULL ){ utils::MyPoint * cp = new utils::MyPoint(current->getX(),current->getZ()); if ( rect->containsPoint(cp) ){ out.push_back(current); } delete cp; } } } if ( minP != NULL ) delete minP; if ( maxP != NULL ) delete maxP; delete rect; return out; } void WebotsRobot::setGC(IGarbageCleaner * gc){ this->gc = gc; } void WebotsRobot::shutdown(){ }; } /* End of namespace robotapi::webts */ } /* End of namespace robotapi */
[ "guicamest@d69ea68a-f96b-11de-8cdf-e97ad7d0f28a", "nachogoni@d69ea68a-f96b-11de-8cdf-e97ad7d0f28a" ]
[ [ [ 1, 233 ], [ 235, 236 ], [ 240, 241 ] ], [ [ 234, 234 ], [ 237, 239 ] ] ]
9d0773b4c63857bd78183d621095eef395df2231
25ea75be9b8c75ffe945af24211492ba0d0fc53a
/org.qtjambi.maven.plugins.utils/src/main/resources/qt_test/qt_test.h
44ef3c56f0dde219fad5ca67faf151ab9e2621d9
[]
no_license
qtjambi/qtjambi-community-maven
54d77fabff7b2c7ef2ba6bf29c617cd2ec99285b
96d7fbc840ed6580859a233f771c9589381d00e7
refs/heads/master
2020-12-30T10:23:06.279320
2011-10-10T11:59:50
2011-10-10T11:59:50
38,209,465
0
0
null
null
null
null
UTF-8
C++
false
false
724
h
/* * * * */ #ifndef _QT_TEST_H #define _QT_TEST_H #include <time.h> #include <QtCore> #include <QApplication> #include <QMainWindow> #include <QPushButton> class MyApplication : public QApplication { Q_OBJECT private: QMainWindow *qMainWindow; QPushButton *qButton; QTimer *timer; int tick_count; bool done; time_t starttime; time_t endtime; void init(); int update_button(QPushButton &button); public: MyApplication(int &argc, char **argv); virtual ~MyApplication(); public slots: void tick(); void myQuit(); }; extern int my_function(int a, int b); #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus } #endif #endif /* _QT_TEST_H */
[ [ [ 1, 52 ] ] ]
cb3d502a211548a95dc6036561e7c5aea38d4391
54cacc105d6bacdcfc37b10d57016bdd67067383
/trunk/source/level/objects/components/CmpScriptedUsable.cpp
60d1e54c0855e5f7489eeae37d98e9b94aeba360
[]
no_license
galek/hesperus
4eb10e05945c6134901cc677c991b74ce6c8ac1e
dabe7ce1bb65ac5aaad144933d0b395556c1adc4
refs/heads/master
2020-12-31T05:40:04.121180
2009-12-06T17:38:49
2009-12-06T17:38:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,212
cpp
/*** * hesperus: CmpScriptedUsable.cpp * Copyright Stuart Golodetz, 2009. All rights reserved. ***/ #include "CmpScriptedUsable.h" #include <source/util/Properties.h> namespace hesp { //#################### CONSTRUCTORS #################### CmpScriptedUsable::CmpScriptedUsable(const std::string& usableGroup, const std::vector<std::string>& hotspots, const std::string& scriptName) : CmpUsable(usableGroup, hotspots), m_scriptName(scriptName) { // TODO: Script-related stuff } //#################### STATIC FACTORY METHODS #################### IObjectComponent_Ptr CmpScriptedUsable::load(const Properties& properties) { return IObjectComponent_Ptr(new CmpScriptedUsable(properties.get<std::string>("Group"), properties.get<std::vector<std::string> >("Hotspots"), properties.get<std::string>("Script"))); } //#################### PUBLIC METHODS #################### Properties CmpScriptedUsable::save() const { Properties properties; properties.set("Group", usable_group()); properties.set("Hotspots", hotspots()); properties.set("Script", m_scriptName); return properties; } void CmpScriptedUsable::use() { // TODO } }
[ [ [ 1, 42 ] ] ]
e505a888c6713576dfa94878c7b265ceb4e3d3ef
ef99cef8dc1995c6535a131e46cd89dda30fcecd
/InitDialog.cpp
b7e6ee26745da36f1fd8800034b02cce2d768270
[]
no_license
sundapeng/snlcomplier
37b738db9631355621d872e4156c971927a6d7ce
13a5318454dcb9c405b0cfc29a3371df6274ee24
refs/heads/master
2016-09-05T15:44:33.901594
2010-07-02T04:56:09
2010-07-02T04:56:09
32,118,730
1
1
null
null
null
null
UTF-8
C++
false
false
10,616
cpp
// InitDialog.cpp : implementation file // #include "stdafx.h" #include "AI3.h" #include "InitDialog.h" ///////////////////////////////////////////////////////////////////////////// // CInitDialog dialog CInitDialog::CInitDialog(CWnd* pParent /*=NULL*/) : CDialog(CInitDialog::IDD, pParent) { } void CInitDialog::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); DDX_Control(pDX, IDC_ED1, m_ED1); DDX_Control(pDX, IDC_ED2, m_ED2); DDX_Control(pDX, IDC_ED3, m_ED3); DDX_Control(pDX, IDC_ED4, m_ED4); DDX_Control(pDX, IDC_ED5, m_ED5); DDX_Control(pDX, IDC_ED6, m_ED6); DDX_Control(pDX, IDC_ED7, m_ED7); DDX_Control(pDX, IDC_ED8, m_ED8); DDX_Control(pDX, IDC_ED9, m_ED9); DDX_Control(pDX, IDC_ST1, m_ST1); DDX_Control(pDX, IDC_ST2, m_ST2); DDX_Control(pDX, IDC_ST3, m_ST3); DDX_Control(pDX, IDC_ST4, m_ST4); DDX_Control(pDX, IDC_ST5, m_ST5); DDX_Control(pDX, IDC_ST6, m_ST6); DDX_Control(pDX, IDC_ST7, m_ST7); DDX_Control(pDX, IDC_ST8, m_ST8); DDX_Control(pDX, IDC_ST9, m_ST9); } BEGIN_MESSAGE_MAP(CInitDialog, CDialog) ON_BN_CLICKED(IDC_ST1, OnSrcButton1) ON_BN_CLICKED(IDC_ST2, OnSrcButton2) ON_BN_CLICKED(IDC_ST3, OnSrcButton3) ON_BN_CLICKED(IDC_ST4, OnSrcButton4) ON_BN_CLICKED(IDC_ST5, OnSrcButton5) ON_BN_CLICKED(IDC_ST6, OnSrcButton6) ON_BN_CLICKED(IDC_ST7, OnSrcButton7) ON_BN_CLICKED(IDC_ST8, OnSrcButton8) ON_BN_CLICKED(IDC_ST9, OnSrcButton9) ON_BN_CLICKED(IDC_ED1, OnDescButton1) ON_BN_CLICKED(IDC_ED2, OnDescButton2) ON_BN_CLICKED(IDC_ED3, OnDescButton3) ON_BN_CLICKED(IDC_ED4, OnDescButton4) ON_BN_CLICKED(IDC_ED5, OnDescButton5) ON_BN_CLICKED(IDC_ED6, OnDescButton6) ON_BN_CLICKED(IDC_ED7, OnDescButton7) ON_BN_CLICKED(IDC_ED8, OnDescButton8) ON_BN_CLICKED(IDC_ED9, OnDescButton9) END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CInitDialog message handlers BOOL CInitDialog::OnInitDialog() { CDialog::OnInitDialog(); int k=1; for(int i=0;i<MaxItem;i++) for(int j=0;j<MaxItem;j++) { m_Src[i][j] = k; m_Desc[i][j] = k++; } m_Src[MaxItem-1][MaxItem-1] = 0; m_Desc[MaxItem-1][MaxItem-1] = 0; UpdateSrcRadio(); UpdateDescRadio(); return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE } int CInitDialog::GetSrcData(int i,int j) { return m_Src[i][j]; } DataType CInitDialog::GetDescData(int i,int j) { return m_Desc[i][j]; } void CInitDialog::OnSrcButton1() { if(m_Src[0][1] ==0 ) { m_Src[0][1] = m_Src[0][0]; m_Src[0][0] = 0; } else if(m_Src[1][0] == 0) { m_Src[1][0] = m_Src[0][0]; m_Src[0][0] = 0; } else m_ST1.SetCheck(false); UpdateSrcRadio(); } void CInitDialog::OnSrcButton2() { if(m_Src[0][0] ==0 ) { m_Src[0][0] = m_Src[0][1]; m_Src[0][1] = 0; } else if(m_Src[1][1] == 0) { m_Src[1][1] = m_Src[0][1]; m_Src[0][1] = 0; } else if(m_Src[0][2] == 0) { m_Src[0][2] = m_Src[0][1]; m_Src[0][1] = 0; } else m_ST2.SetCheck(false); UpdateSrcRadio(); } void CInitDialog::OnSrcButton3() { if(m_Src[0][1] ==0 ) { m_Src[0][1] = m_Src[0][2]; m_Src[0][2] = 0; } else if(m_Src[1][2] == 0) { m_Src[1][2] = m_Src[0][2]; m_Src[0][2] = 0; } else m_ST3.SetCheck(false); UpdateSrcRadio(); } void CInitDialog::OnSrcButton4() { if(m_Src[1][1] == 0) { m_Src[1][1] = m_Src[1][0]; m_Src[1][0] = 0; } else if(m_Src[0][0] == 0) { m_Src[0][0] = m_Src[1][0]; m_Src[1][0] = 0; } else if(m_Src[2][0] == 0) { m_Src[2][0] = m_Src[1][0]; m_Src[1][0] = 0; } else m_ST4.SetCheck(false); UpdateSrcRadio(); } void CInitDialog::OnSrcButton5() { if(m_Src[1][2] ==0 ) { m_Src[1][2] = m_Src[1][1]; m_Src[1][1] = 0; } else if(m_Src[1][0] == 0) { m_Src[1][0] = m_Src[1][1]; m_Src[1][1] = 0; } else if(m_Src[0][1] == 0) { m_Src[0][1] = m_Src[1][1]; m_Src[1][1] = 0; } else if(m_Src[2][1] == 0) { m_Src[2][1] = m_Src[1][1]; m_Src[1][1] = 0; } else m_ST5.SetCheck(false); UpdateSrcRadio(); } void CInitDialog::OnSrcButton6() { if(m_Src[2][2] ==0 ) { m_Src[2][2] = m_Src[1][2]; m_Src[1][2] = 0; } else if(m_Src[0][2] == 0) { m_Src[0][2] = m_Src[1][2]; m_Src[1][2] = 0; } else if(m_Src[1][1] == 0) { m_Src[1][1] = m_Src[1][2]; m_Src[1][2] = 0; } else m_ST6.SetCheck(false); UpdateSrcRadio(); } void CInitDialog::OnSrcButton7() { if(m_Src[1][0] ==0 ) { m_Src[1][0] = m_Src[2][0]; m_Src[2][0] = 0; } else if(m_Src[2][1] == 0) { m_Src[2][1] = m_Src[2][0]; m_Src[2][0] = 0; } else m_ST7.SetCheck(false); UpdateSrcRadio(); } void CInitDialog::OnSrcButton8() { if(m_Src[2][0] ==0 ) { m_Src[2][0] = m_Src[2][1]; m_Src[2][1] = 0; } else if(m_Src[2][2] == 0) { m_Src[2][2] = m_Src[2][1]; m_Src[2][1] = 0; } else if(m_Src[1][1] == 0) { m_Src[1][1] = m_Src[2][1]; m_Src[2][1] = 0; } else m_ST8.SetCheck(false); UpdateSrcRadio(); } void CInitDialog::OnSrcButton9() { if(m_Src[2][1] ==0 ) { m_Src[2][1] = m_Src[2][2]; m_Src[2][2] = 0; } else if(m_Src[1][2] == 0) { m_Src[1][2] = m_Src[2][2]; m_Src[2][2] = 0; } else m_ST9.SetCheck(false); UpdateSrcRadio(); } void CInitDialog::OnDescButton1() { if(m_Desc[0][1] ==0 ) { m_Desc[0][1] = m_Desc[0][0]; m_Desc[0][0] = 0; } else if(m_Desc[1][0] == 0) { m_Desc[1][0] = m_Desc[0][0]; m_Desc[0][0] = 0; } else m_ED1.SetCheck(false); UpdateDescRadio(); } void CInitDialog::OnDescButton2() { if(m_Desc[0][0] ==0 ) { m_Desc[0][0] = m_Desc[0][1]; m_Desc[0][1] = 0; } else if(m_Desc[1][1] == 0) { m_Desc[1][1] = m_Desc[0][1]; m_Desc[0][1] = 0; } else if(m_Desc[0][2] == 0) { m_Desc[0][2] = m_Desc[0][1]; m_Desc[0][1] = 0; } else m_ED2.SetCheck(false); UpdateDescRadio(); } void CInitDialog::OnDescButton3() { if(m_Desc[0][1] ==0 ) { m_Desc[0][1] = m_Desc[0][2]; m_Desc[0][2] = 0; } else if(m_Desc[1][2] == 0) { m_Desc[1][2] = m_Desc[0][2]; m_Desc[0][2] = 0; } else m_ED3.SetCheck(false); UpdateDescRadio(); } void CInitDialog::OnDescButton4() { if(m_Desc[1][1] == 0) { m_Desc[1][1] = m_Desc[1][0]; m_Desc[1][0] = 0; } else if(m_Desc[0][0] == 0) { m_Desc[0][0] = m_Desc[1][0]; m_Desc[1][0] = 0; } else if(m_Desc[2][0] == 0) { m_Desc[2][0] = m_Desc[1][0]; m_Desc[1][0] = 0; } else m_ED4.SetCheck(false); UpdateDescRadio(); } void CInitDialog::OnDescButton5() { if(m_Desc[1][2] ==0 ) { m_Desc[1][2] = m_Desc[1][1]; m_Desc[1][1] = 0; } else if(m_Desc[1][0] == 0) { m_Desc[1][0] = m_Desc[1][1]; m_Desc[1][1] = 0; } else if(m_Desc[0][1] == 0) { m_Desc[0][1] = m_Desc[1][1]; m_Desc[1][1] = 0; } else if(m_Desc[2][1] == 0) { m_Desc[2][1] = m_Desc[1][1]; m_Desc[1][1] = 0; } else m_ED5.SetCheck(false); UpdateDescRadio(); } void CInitDialog::OnDescButton6() { if(m_Desc[2][2] ==0 ) { m_Desc[2][2] = m_Desc[1][2]; m_Desc[1][2] = 0; } else if(m_Desc[0][2] == 0) { m_Desc[0][2] = m_Desc[1][2]; m_Desc[1][2] = 0; } else if(m_Desc[1][1] == 0) { m_Desc[1][1] = m_Desc[1][2]; m_Desc[1][2] = 0; } else m_ED6.SetCheck(false); UpdateDescRadio(); } void CInitDialog::OnDescButton7() { if(m_Desc[1][0] ==0 ) { m_Desc[1][0] = m_Desc[2][0]; m_Desc[2][0] = 0; } else if(m_Desc[2][1] == 0) { m_Desc[2][1] = m_Desc[2][0]; m_Desc[2][0] = 0; } else m_ED7.SetCheck(false); UpdateDescRadio(); } void CInitDialog::OnDescButton8() { if(m_Desc[2][0] ==0 ) { m_Desc[2][0] = m_Desc[2][1]; m_Desc[2][1] = 0; } else if(m_Desc[2][2] == 0) { m_Desc[2][2] = m_Desc[2][1]; m_Desc[2][1] = 0; } else if(m_Desc[1][1] == 0) { m_Desc[1][1] = m_Desc[2][1]; m_Desc[2][1] = 0; } else m_ED8.SetCheck(false); UpdateDescRadio(); } void CInitDialog::OnDescButton9() { if(m_Desc[2][1] ==0 ) { m_Desc[2][1] = m_Desc[2][2]; m_Desc[2][2] = 0; } else if(m_Desc[1][2] == 0) { m_Desc[1][2] = m_Desc[2][2]; m_Desc[2][2] = 0; } else m_ED9.SetCheck(false); UpdateDescRadio(); } void CInitDialog::UpdateSrcRadio() { CString Msg; if(m_Src[0][0] == 0) {Msg = "";m_ST1.SetCheck(1);} else Msg.Format("%d",m_Src[0][0]); m_ST1.SetWindowText(Msg); if(m_Src[0][1] == 0) {Msg = "";m_ST2.SetCheck(1);} else Msg.Format("%d",m_Src[0][1]); m_ST2.SetWindowText(Msg); if(m_Src[0][2] == 0) {Msg = "";m_ST3.SetCheck(1);} else Msg.Format("%d",m_Src[0][2]); m_ST3.SetWindowText(Msg); if(m_Src[1][0] == 0) {Msg = "";m_ST4.SetCheck(1);} else Msg.Format("%d",m_Src[1][0]); m_ST4.SetWindowText(Msg); if(m_Src[1][1] == 0) {Msg = "";m_ST5.SetCheck(1);} else Msg.Format("%d",m_Src[1][1]); m_ST5.SetWindowText(Msg); if(m_Src[1][2] == 0) {Msg = "";m_ST6.SetCheck(1);} else Msg.Format("%d",m_Src[1][2]); m_ST6.SetWindowText(Msg); if(m_Src[2][0] == 0) {Msg = "";m_ST7.SetCheck(1);} else Msg.Format("%d",m_Src[2][0]); m_ST7.SetWindowText(Msg); if(m_Src[2][1] == 0) {Msg = "";m_ST8.SetCheck(1);} else Msg.Format("%d",m_Src[2][1]); m_ST8.SetWindowText(Msg); if(m_Src[2][2] == 0) {Msg = "";m_ST9.SetCheck(1);} else Msg.Format("%d",m_Src[2][2]); m_ST9.SetWindowText(Msg); } void CInitDialog::UpdateDescRadio() { CString Msg; if(m_Desc[0][0] == 0) {Msg = "";m_ED1.SetCheck(1);} else Msg.Format("%d",m_Desc[0][0]); m_ED1.SetWindowText(Msg); if(m_Desc[0][1] == 0) {Msg = "";m_ED2.SetCheck(1);} else Msg.Format("%d",m_Desc[0][1]); m_ED2.SetWindowText(Msg); if(m_Desc[0][2] == 0) {Msg = "";m_ED3.SetCheck(1);} else Msg.Format("%d",m_Desc[0][2]); m_ED3.SetWindowText(Msg); if(m_Desc[1][0] == 0) {Msg = "";m_ED4.SetCheck(1);} else Msg.Format("%d",m_Desc[1][0]); m_ED4.SetWindowText(Msg); if(m_Desc[1][1] == 0) {Msg = "";m_ED5.SetCheck(1);} else Msg.Format("%d",m_Desc[1][1]); m_ED5.SetWindowText(Msg); if(m_Desc[1][2] == 0) {Msg = "";m_ED6.SetCheck(1);} else Msg.Format("%d",m_Desc[1][2]); m_ED6.SetWindowText(Msg); if(m_Desc[2][0] == 0) {Msg = "";m_ED7.SetCheck(1);} else Msg.Format("%d",m_Desc[2][0]); m_ED7.SetWindowText(Msg); if(m_Desc[2][1] == 0) {Msg = "";m_ED8.SetCheck(1);} else Msg.Format("%d",m_Desc[2][1]); m_ED8.SetWindowText(Msg); if(m_Desc[2][2] == 0) {Msg = "";m_ED9.SetCheck(1);} else Msg.Format("%d",m_Desc[2][2]); m_ED9.SetWindowText(Msg); }
[ "[email protected]@a7bbafab-dc4b-51e6-8110-5f81b14c7997" ]
[ [ [ 1, 505 ] ] ]
1c5acf49becbe5d98c5509a3fc63b7ae0e10815b
ca99bc050dbc58be61a92e04f2a80a4b83cb6000
/Game/src/Entities/Tux.cpp
150fd862b5c7e381ea3cbf05b110ecb526a79f82
[]
no_license
NicolasBeaudrot/angry-tux
e26c619346c63a468ad3711de786e94f5b78a2f1
5a8259f57ba59db9071158a775948d06e424a9a8
refs/heads/master
2021-01-06T20:41:23.705460
2011-04-14T18:28:04
2011-04-14T18:28:04
32,141,181
0
0
null
null
null
null
UTF-8
C++
false
false
2,196
cpp
#include "Tux.h" Tux::Tux(sf::RenderWindow* app ,sf::Vector2i& position ,std::string& path ,int type ,b2World* world) : Entity(app, position, path = "tuxs/" + path, 0){ _type = type; _fire = false; //Physics definition b2BodyDef bd; bd.position.Set(_position.x, _position.y); bd.type = b2_dynamicBody; bd.angularDamping = 0.01f; b2CircleShape circle; circle.m_radius = _image->GetWidth() / 2.0f; b2FixtureDef fixtureDef; fixtureDef.shape = &circle; fixtureDef.density = 1.0f; fixtureDef.friction = 0.3f; fixtureDef.restitution = 0.3f; fixtureDef.filter.groupIndex = -type; _tuxBody = world->CreateBody(&bd); _tuxBody->CreateFixture(&fixtureDef); b2MassData mass_data; mass_data.center = b2Vec2(0,0); mass_data.mass = 250.0f; mass_data.I = 600.0f; _tuxBody->SetMassData(&mass_data); _sprite.SetCenter(_image->GetWidth()/2, _image->GetHeight()/2); } Tux::~Tux() { } void Tux::mouseReleased(sf::Vector2f firstPosition, sf::Vector2f secondPosition, float time_elapse) { firstPosition = Conversion::to_sfmlcoord(firstPosition); secondPosition = Conversion::to_sfmlcoord(secondPosition); int K = 1000000; float angle = Algorithm::getAngle(firstPosition, secondPosition); std::cout << "Angle: " << angle << std::endl; _force = b2Vec2(cos(Conversion::to_radian(angle)) * K, sin(Conversion::to_radian(angle)) * K); _tuxBody->ApplyForce(_force, _tuxBody->GetWorldCenter()); _fire = true; cpt=0; } void Tux::render() { if (_fire) { if (_timer.GetElapsedTime() > 0.5) { if (cpt < 3) { _tuxBody->ApplyForce(_force, _tuxBody->GetWorldCenter()); cpt++; } else { _fire = false; } _timer.Reset(); } } sf::Vector2i position_sfml = Conversion::to_sfmlcoord(_tuxBody->GetPosition().x, _tuxBody->GetPosition().y); _sprite.SetPosition(position_sfml.x, position_sfml.y); _sprite.SetRotation(Conversion::to_degres(_tuxBody->GetAngle())); _app->Draw(_sprite); }
[ "nicolas.beaudrot@43db0318-7ac6-f280-19a0-2e79116859ad" ]
[ [ [ 1, 74 ] ] ]
562e97676f997ee979aecac7c6a59637f2bb79c5
070b26919a6adff4f7d0e97c6e44d7b98272892c
/src/bitboard_reversi.h
830567614646abb02d9bb20753d7c1d181463d37
[]
no_license
tosik/BitboardReversi
9cb07aaf661cbedf70b1da27fa4afadbb8899e33
c12824231d80b65dca9e59a6af4410ced089971a
refs/heads/master
2021-01-25T03:48:05.004956
2011-08-27T16:02:49
2011-08-27T16:03:50
388,290
4
0
null
null
null
null
SHIFT_JIS
C++
false
false
3,574
h
/** @file * @brief Bitboard Reversi ヘッダファイル * @author Toshiyuki Hirooka * * Bitboard を用いた NxM に対応のリバーシ * */ #pragma once #include <ctime> #include <iostream> #include <map> #include "setting.h" #include "bitboard_reversi_functions.h" namespace Fujitalab { namespace Reversi { /** Bitboard版のリバーシクラス * */ class BitboardReversi { public: /** 板の状態(黒石) */ Bitboard black; /** 板の状態(白石) */ Bitboard white; /** 手番(true = 黒、 false = 白) */ bool current_color; /** stack(undo用) */ BoardStack board_stack; /** 交代したかを監視する変数 */ bool changed; /** コンストラクタ(オブジェクトの初期化) */ BitboardReversi(); /** 設置する(ひっくり返さない) * * @param b 設置する座標のみが1のビットボード * @param color 設置する色 */ void set(Bitboard b, bool color); /** 着手する(ひっくり返す) * * 高速化用に最適化されているため、特定の条件でのみ正しく動く * @param m 着手する座標のビットボード */ void put(Bitboard m); /** x,y を使って着手する(ひっくり返す) * * @param x 着手するX座標 * @param y 着手するY座標 */ void put(int x, int y); /** 着手する(ひっくり返す)安全版 * * putが高速化用に最適化されているのに対して、 * こちらは低速だが状態に依存することなくいつでも正しく動くことを保障している(つまり安全) * @param m 着手する座標のビットボード */ void putSafety(Bitboard m); /** x,y を使って着手する安全版 * * @param x 着手するX座標 * @param y 着手するY座標 */ void putSafety(int x, int y); /** 1手戻す * */ void undo(); /** 現在の局面の状態を Board 型にする * * @return 局面の状態 */ Board toBoard(); /** 局面の状態を与える * * @param black 黒の状態 * @param white 白の状態 * @param current_color 手番 */ void setBoard(Bitboard black, Bitboard white, bool current_color); /** 現在の局面を表示 * */ void view(); /** 現在の局面の着手可能箇所を表示 * */ void viewMobility(); /** 着手可能な箇所をビットボードで取得 * * @return 着手可能な箇所のビットボード */ Bitboard getMobility(); /** 与えた局面において、着手可能な箇所をビットボードで取得 * * @param black 黒の状態 * @param white 白の状態 * @return 着手可能な箇所のビットボード */ Bitboard getMobility(Bitboard black, Bitboard white); /** 着手可能を検査するための特殊な変数 * */ Bitboard r_Left; Bitboard r_Right; Bitboard r_Top; Bitboard r_Bottom; Bitboard r_LeftTop; Bitboard r_LeftBottom; Bitboard r_RightTop; Bitboard r_RightBottom; /** 着手後に反転する石が示されているビットボードを取得 * * @param mob 着手するビットボード * @return 反転する石のパターンのビットボード */ Bitboard getReversedPattern(Bitboard mob); }; } }
[ [ [ 1, 152 ] ] ]
5f6dd1eb311f19c9d749db1e9078cbf5ad56d9e1
7476d2c710c9a48373ce77f8e0113cb6fcc4c93b
/RakNet/LinuxStrings.cpp
9db015f475be83aa68742ee902e1d651633bad8a
[]
no_license
CmaThomas/Vault-Tec-Multiplayer-Mod
af23777ef39237df28545ee82aa852d687c75bc9
5c1294dad16edd00f796635edaf5348227c33933
refs/heads/master
2021-01-16T21:13:29.029937
2011-10-30T21:58:41
2011-10-30T22:00:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
495
cpp
#if (defined(__GNUC__) || defined(__GCCXML__) ) && !defined(_WIN32) #include <string.h> #ifndef _stricmp int _stricmp(const char* s1, const char* s2) { return strcasecmp(s1,s2); } #endif int _strnicmp(const char* s1, const char* s2, size_t n) { return strncasecmp(s1,s2,n); } #ifndef __APPLE__ char *_strlwr(char * str ) { if (str==0) return 0; for (int i=0; str[i]; i++) { if (str[i]>='A' && str[i]<='Z') str[i]+='a'-'A'; } return str; } #endif #endif
[ [ [ 1, 26 ] ] ]
a7310ab56d21346da8daf25e6256435c08211d82
720466c088f243d6d54046e34872a91e3c911c58
/math/hdaf/hdaf.h
78375ec45e1d912a7d6e82cafef8ae03401cec9e
[]
no_license
tmarkovich/mathlib
57f0d788a34e235b003bb49da4cb47bceb812026
a24353d59d38e18a44e084c5fc2accee6c1750a1
refs/heads/master
2021-01-17T18:24:02.477880
2011-03-05T23:17:58
2011-03-05T23:17:58
14,571,612
1
0
null
null
null
null
UTF-8
C++
false
false
22,051
h
#ifndef ML_HDAF_H #define ML_HDAF_H #include <arprec/mp_real.h> #include <mathlib/math/std_math.h> #include <mathlib/tools/std_tools.h> #include <mathlib/math/polynomials/ml_poly.h> #include <mathlib/math/convolution/convolution.h> #include <boost/math/special_functions/erf.hpp> #include "../polynomials/laguerre_polys.cpp" //#include "grids/grid1D.cpp" //#include "hdaf.h" // waring: this is crappy code struct hdaf_coefficients { public: int mmax; double * data; hdaf_coefficients(int mmax):mmax(mmax),data(0) { load(); } hdaf_coefficients(const hdaf_coefficients & rhs):mmax(rhs.mmax),data(0) { load(); } ~hdaf_coefficients() { if (data) delete [] data; } void operator= (const hdaf_coefficients & rhs) { mmax = rhs.mmax; load(); } inline const double operator() (const int & m, const int & n) const { assert(0 <= n && n <= m); assert(m <= mmax); return data[n+m*(m+1)/2 ];} void load() { ifstream in; sprintf(fname,"%s/hdaf_coefficients_%d.dat",ML_DATA_DIR,mmax); in.open(fname,ios::binary); if ( !(in.good() && in.is_open())) { hdaf_coefficients::generate(mmax); sprintf(fname,"%s/hdaf_coefficients_%d.dat",ML_DATA_DIR,mmax); in.open(fname,ios::binary); assert(in.good() && in.is_open()); } if (data) delete [] data; data = new double [ (mmax+1)*(mmax+2)/2 +1]; in.read((char *)data,((mmax+1)*(mmax+2)/2+1)*8); in.close(); } static void generate(int M ) { mp::mp_init(100); ofstream out; sprintf(fname,"%s/hdaf_coefficients_%d.dat",ML_DATA_DIR,M); out.open(fname, fstream::binary); assert(out.good() && out.is_open()); double * data_ = new double [(M+1)*(M+2)/2+1]; for (int m=0; m<=M; m++) { cout << m << endl; static mp_real mp_sqrtpi = sqrt( atan(mp_real(1.0))*4.0 ); mp_real sum = 0.0; mp_real Bn = 0.0; mp_real P; for (int n=0; n<=m; n++) { P = 1.0; Bn = 1.0; for (int k=n+1; k<=m; k++) { P *= (mp_real)((mp_real)k-0.5)/(k-n); Bn += P; } Bn /= gamma((mp_real)(n+1)); if ( n%2 ) Bn = -Bn; data_[m*(m+1)/2+n] = dble(Bn/mp_sqrtpi); } /* mp_real sum = 0.0; for (int k=0; k<=m; k++) { sum = 0; for (int n=0; n<=m-k; n++) sum += gamma((mp_real)(2*(n+k)+1))/ ( gamma((mp_real)(2*k+1))*gamma((mp_real)(n+1))*gamma((mp_real)(n+k+1))*pow(4,-n) ); data_[m*(m+1)/2+k] = dble(sum/sqrt( atan(mp_real(1.0))*4.0 ))*pow(-1,k); }*/ } out.write((char *)(data_),8*(M*(M+1)/2+1)); out.close(); delete [] data_; } }; template<class T > void make_hdaf_ml_poly(ml_poly<T > & P, int m ) { // sets P such that // // delta_m (x) = exp(-x*x) * P(x) // // then delta_{m,sig} (x) = 1/(sqrt2*sig) * exp(-x*x/(sig*sig*2)) * P(x/(sig*sqrt2)); // static int m_max = 100; static hdaf_coefficients C(m_max); if (m > m_max) { m_max *= 1 << ((int)ceil(log2(m/m_max))); assert(m <= m_max); // this is crap, dont care, fix later, 100 enough for now C = hdaf_coefficients(m_max); } P.degree(m*2); P = 0.0; for (int k=0; k<=m; k++) P[2*k] = C(m,k); } template<class T > void differentiate_hdaf_poly( ml_poly<T > & P, int d=1 ) { // takes the P set by make_hdaf_ml_poly, // and makes it the result of differentiating // delta_m (x) = exp(-x*x) * P(x); // d times, so // // delta^(d)_m (x) = exp(-x*x) * P(x); ml_poly<T > Q; ml_poly<T > gd(0.0,-2.0); // differentiate d times for (int k=0; k<d; k++) { P.differentiate(Q); // Q = d/dx P P *= gd; P += Q; } } template<class T > void square_hdaf_poly( ml_poly<T> & P ) { ml_poly<T > Q; // square Q = P; P *= Q; } template<class T > T hdaf_truncate_error(double x, ml_poly<T > & P, double sigma=ml_sqrt2/2 ) { // let f(x) = ( delta^(d)_{m,sig} (x) )^2 // then F(x) = sqrt( \int_x^\infty f(y) dy ) // // so the fractional errror, in truncating a convolution by delta, to x, is F(x)/F(0) // // this is what this function returns. uses integration by parts and erfc. x /= ml_sqrt2*sigma; int n = P.degree(); T F_0 = 0.0, F_x = 0.0; // cumulative distributions T x2 = x*x; T ex2 = exp(-x2*2.0); T I_k = 0.0; // integral steps in int by parts, recursion T xp = 0.0; // appropriate powers of x I_k = ml_sqrt2pi*erfc(x*ml_sqrt2)/4; F_x += P[0]*I_k; xp = x; for (int k=2; k<=n; k+=2) { I_k = ex2*xp/4 + (I_k*(k-1))/4; F_x += P[k]*I_k; xp *= x2; } I_k = ex2/4; if(n>=1) F_x += P[1]*I_k; xp = x2; for (int k=3; k<=n; k+=2) { I_k = ex2*xp/4 + (I_k*(k-1))/4; F_x += P[k]*I_k; xp *= x2; } I_k = ml_sqrtpi/(ml_sqrt2*2); F_0 += I_k*P[0]; for (int k=2; k<=n; k+=2) { I_k *= 0.25*(k-1); F_0 += I_k*P[k]; } I_k = ml_sqrt2/8; if(n>=1) F_0 += I_k*P[1]; for (int k=1; k<=n; k+=2) { I_k *= 0.5*((k+1)*k); F_0 += I_k*P[k]; } //cout << "|" ; clean_print(F_x); cout << " "; clean_print(F_x); cout << " | "; //cout << "|" ; clean_print(F_x/F_0); cout << " | "; return sqrt(norm(F_x/F_0)); } double hdaf_truncate_error (double x, int m, double sigma, int d=0 ) { // returns the error in truncating the convoltion of a function by delta^(d)_{m,sig} to x, // in the L2 sense. error(0) = 1, error(\infty) = 0, decreases monotonically. // // finding the inverse of this function would be great... static ml_poly<double > P; static int m_ = -1; if (m != m_) { m_ = m; make_hdaf_ml_poly( P, m ); differentiate_hdaf_poly( P, d ); square_hdaf_poly( P ); } return hdaf_truncate_error (x, P, sigma ); } template< class T > T hdaf_truncate_error_ (double x, int m, double sigma, int d=0 ) { // this version for aribtrary type // returns the error in truncating the convoltion of a function by delta^(d)_{m,sig} to x, // in the L2 sense. error(0) = 1, error(\infty) = 0, decreases monotonically. // // finding the inverse of this function would be great... static ml_poly<T > P; static int m_ = -1; if (m != m_) { m_ = m; make_hdaf_ml_poly( P, m ); differentiate_hdaf_poly( P, d ); square_hdaf_poly( P ); } return hdaf_truncate_error (x, P, sigma ); } double hdaf_truncate_point (double eps_min, double eps_max, int m, double sigma, int d=0 ) { // determines the truncate point for the hdaf kernel, delta^(d)_{m,sig} (x). // // finds point so that eps_min < error(x) < eps_max // eps_max > error(x) > eps_min // // can be written more nicely, works though // if (eps_min > eps_max){ double temp = eps_min; eps_min = eps_max; eps_max = temp; } // eps_max > eps_min if (eps_min == eps_max) eps_min -= 1E-8; static double eps_min_save = 0; static double eps_max_save = 0; static int m_save = 0; static double sigma_save = 0; static int d_save = 0; static double x_0_save = 0; if ( eps_min_save == eps_min && eps_max_save == eps_max && m_save == m && sigma_save == sigma && d_save == d ) return x_0_save; mp::mp_init(50); int max_iter1 = 130; int max_iter2 = 200; double search_factor = 1.5; double lb,ub; double x = 1.0; double eps = 0.0; int k,count = 0; // first find upper and lower bounds by searching between powers of search_power x = 1.0; eps = dble( hdaf_truncate_error_<mp_real> (x, m, sigma, d ) ); count ++; if ( eps_min < eps && eps < eps_max ) {x_0_save = x; return x; } // condition met if (eps > eps_max) // too low { // look for lower bound for (int k=0; k<max_iter1; k++) { x *= search_factor; eps = dble( hdaf_truncate_error_<mp_real> (x, m, sigma, d ) ); count ++; if ( eps_min < eps && eps < eps_max ) { x_0_save = x; return x; } // condition met if (eps >= eps_max) continue; // still too low else { lb = x/search_factor; break; } // found lower bound } // now look for upper bound if (eps < eps_min) ub = x; // found else for (k=0; k<max_iter1; k++) { x *= search_factor; eps = dble( hdaf_truncate_error_<mp_real> (x, m, sigma, d ) ); count ++; if ( eps_min < eps && eps < eps_max ) { x_0_save = x; return x; } // condition met if (eps >= eps_min) continue; // still too low else { ub = x; break; } // found upper bound } } else // too high { // look for upper bound for (k=0; k<max_iter1; k++) { x /= search_factor; eps = dble( hdaf_truncate_error_<mp_real> (x, m, sigma, d ) ); count ++; if ( eps_min < eps && eps < eps_max ) { x_0_save = x; return x; } // condition met if (eps <= eps_min) continue; // still too high else { ub = x*search_factor; break; } // found upper bound } // now look for lower bound if (eps >= eps_max) lb = x; // found else for (k=0; k<max_iter1; k++) { x /= search_factor; eps = dble( hdaf_truncate_error_<mp_real> (x, m, sigma, d ) ); count ++; if ( eps_min < eps && eps < eps_max ) { x_0_save = x; return x; } // condition met if (eps < eps_max) continue; // still too low else { lb = x; break; } // found upper bound } } //cout << k << endl; // found upper and lower bounds, check x = lb; eps = dble( hdaf_truncate_error_<mp_real> (x, m, sigma, d ) ); count ++; if ( eps_min < eps && eps < eps_max ) { x_0_save = x; return x; } // condition met assert( eps >= eps_max ); x = ub; eps = dble( hdaf_truncate_error_<mp_real> (x, m, sigma, d ) ); count ++; if ( eps_min < eps && eps < eps_max ) { x_0_save = x; return x; } // condition met assert( eps <= eps_min ); // now do a linear type search on interval [lb,ub]. // finds point so that eps_min < eps < eps_max // eps_max > eps > eps_min x = (ub+lb)/2; eps = dble( hdaf_truncate_error_<mp_real> (x, m, sigma, d ) ); count ++; for (k=0; k<max_iter2; k++) { if ( eps_min < eps && eps < eps_max ) { //cout << "took this many iterations: " << count << endl; return x; } // condition met if (eps >= eps_max) lb = x; // upper half if (eps <= eps_min) ub = x; // lower half x = (ub+lb)/2; eps = dble( hdaf_truncate_error_<mp_real> (x, m, sigma, d ) ); count ++; } if ( eps_min < eps && eps < eps_max ) {x_0_save = x; return x;} std::cout << "warning: hdaf_truncate_point unsatisfactory, hdaf.h.\n"; x_0_save = x; return x; } double fast_hdaf( double const & x, int const & m, double const & sigma ) { static int mmax = 100; static hdaf_coefficients C(mmax); if (m > mmax) { mmax *= 2; C.mmax = mmax; C.load(); return fast_hdaf(x,m,sigma); } double Z = x*x/(sigma*sigma*2); double sum = 0; for (int i=m; i>=0; i--) { sum *= Z; sum += C(m,i); } return exp(-Z)*sum/(ml_sqrt2*sigma); } template<class Xtype, class Ytype=Xtype > class hdaf_delta : public functor<Xtype, Ytype> { public: Ytype sigma; int m; hdaf_delta(int m_, Ytype sig) :m(m_),sigma(sig) {}; Ytype operator() (Xtype const & x) const { Ytype S = 0.0; Ytype Z = x*x/(sigma*sigma*2); for ( int n=0; n<=m; n++) S += laguerre(n,(Ytype)(-0.5),Z); S *= exp(-Z); S /= ml_sq2pi*sigma; return S; } }; /* class hdaf_delta<double, double > : public functor<double, double > { public: double sigma; int m; hdaf_delta(int m_, double sig) :m(m_),sigma(sig) {}; double operator() (double const & x) const { mp_real S = 0.0; mp_real Z = x*x/(sigma*sigma*2); for ( int n=0; n<=m; n++) S += laguerre(n,(mp_real)(-0.5),Z); S *= exp(-Z); S /= sq2pi*sigma; return dble(S); } }; */ template<class T > double hdaf_bp_interpolate( T * & s_in, T * & s_out, int n, double sampling_period, const int & m_low, const double & low_cut, const int & m_high, const double & high_cut, double eps = 1E-3 ) { double high_sigma = sqrt(2*m_high+1)/(high_cut*ml_2pi); double low_sigma = sqrt(2*m_low+1)/(low_cut*ml_2pi); double ierfc_eps = boost::math::erfc_inv( eps ); double t_max = 2.0*low_sigma*ierfc_eps; int k_max = (int)ceil(t_max/sampling_period); T * ker_ = new T [2*k_max+1]; T * ker = &(ker_[k_max]); for (int k = 0; k<=k_max; k++) ker[k] = (fast_hdaf( k*sampling_period, m_high, high_sigma ) -fast_hdaf( k*sampling_period, m_low, low_sigma ))*sampling_period; for (int k = 1; k<=k_max; k++) ker[-k] = (fast_hdaf( -k*sampling_period, m_high, high_sigma ) -fast_hdaf( -k*sampling_period, m_low, low_sigma ))*sampling_period; non_periodic_convolution( ker, s_in, s_out, k_max, k_max, n ); } template<class T > double hdaf_bp_interpolate_periodic( T * & s_in, T * & s_out, int n, double sampling_period, const int & m_low, const double & low_cut, const int & m_high, const double & high_cut) { double high_sigma = sqrt(2*m_high+1)/(high_cut*ml_2pi); double low_sigma = sqrt(2*m_low+1)/(low_cut*ml_2pi); int k_max = n/2-1; T * ker_ = new T [2*k_max+1]; T * ker = &(ker_[k_max]); for (int k = 0; k<=k_max; k++) ker[k] = (fast_hdaf( k*sampling_period, m_high, high_sigma ) -fast_hdaf( k*sampling_period, m_low, low_sigma ))*sampling_period; for (int k = 1; k<=k_max; k++) ker[-k] = (fast_hdaf( -k*sampling_period, m_high, high_sigma ) -fast_hdaf( -k*sampling_period, m_low, low_sigma ))*sampling_period; //hdaf_delta<Ttype,Stype > hdaf1(m_low,sigma1) periodic_convolution( ker, s_in, s_out, k_max, k_max, n ); } double hdaf_bp_interpolate( double * & s_in, int n_in, double in_sampling_period, double in_initial_time, double * & s_out, int n_out, double out_sampling_period, double out_initial_time, const int & m_low, const double & low_cut, const int & m_high, const double & high_cut, double eps = 1E-3 ) { double ierfc_eps = boost::math::erfc_inv( eps ); double high_sigma = sqrt(2*m_high+1)/(high_cut*ml_2pi); double low_sigma = sqrt(2*m_low+1)/(low_cut*ml_2pi); double t_max = 2.0*low_sigma*ierfc_eps; if (!s_in) s_in = new double [n_in]; if (!s_out) s_out = new double [n_out]; double t_j,t_k; int k_min,k_max; //non_periodic_convolution(T * ker, T * in, T *& out, int n_l, int n_r, int n ) for (int j=0; j<n_out; j++) { cout << j << "\t" << n_out << endl; t_j = out_initial_time + out_sampling_period*j; s_out[j] = 0; k_min = max((int)floor((t_j-t_max-in_initial_time)/in_sampling_period), 0); k_max = min((int)ceil((t_j+t_max-in_initial_time)/in_sampling_period)+1, n_in); for (int k = k_min; k<k_max; k++) { t_k = in_initial_time + in_sampling_period*k; s_out[j] += s_in[k]*fast_hdaf( t_j-t_k, m_high, high_sigma ); s_out[j] -= s_in[k]*fast_hdaf( t_j-t_k, m_low, low_sigma ); } s_out[j] *= out_sampling_period; } } double hdaf_bp_interpolate( float * & s_in, int n_in, double in_sampling_period, double in_initial_time, float * & s_out, int n_out, double out_sampling_period, double out_initial_time, const int & m_low, const double & low_cut, const int & m_high, const double & high_cut, double eps_min = 1E-3, double eps_max = 1E-4 ) { double high_sigma = sqrt(2*m_high+1)/(high_cut*ml_2pi); double low_sigma = sqrt(2*m_low+1)/(low_cut*ml_2pi); double t_max = hdaf_truncate_point (eps_min, eps_max, m_low, low_sigma, 0 ); if (!s_out) s_out = new float [n_out]; double t_j,t_k; int k_min,k_max; for (int j=0; j<n_out; j++) { cout << j << "\t" << n_out << endl; t_j = out_initial_time + out_sampling_period*j; s_out[j] = 0; k_min = max((int)floor((t_j-t_max-in_initial_time)/in_sampling_period), 0); k_max = min((int)ceil((t_j+t_max-in_initial_time)/in_sampling_period)+1, n_in); for (int k = k_min; k<k_max; k++) { t_k = in_initial_time + in_sampling_period*k; s_out[j] += s_in[k]*fast_hdaf( t_j-t_k, m_high, high_sigma ); s_out[j] -= s_in[k]*fast_hdaf( t_j-t_k, m_low, low_sigma ); } s_out[j] *= out_sampling_period; } } #define hdaf_deltaHat hdaf_delta_hat class hdaf_delta_hat : public functor<double, double> { public: double sigma; int m; dlognfact lognfact; hdaf_deltaHat(int m_, double sig, int mmax_ = 2000) :m(m_),sigma(sig),lognfact(mmax_) {}; double operator() (double const & k) const { if (m >= lognfact.nmax) *(const_cast<dlognfact *> (&lognfact)) = dlognfact(lognfact.nmax*2); double s = 0.0; double x = k*k*sigma*sigma/2.0; double r = log(fabs(k))*2.0+log(sigma)*2.0; if (fabs(k)<1E-12) return 1.0; for (int n = 0;n<=m;n++) s += exp(-x+r*n-ml_log2*n-lognfact(n)); return s; } }; template<class Xtype, class Ytype> class hdaf_delta_nosigma : public functor<Xtype, Ytype> { public: int m; hdaf_delta_nosigma (int m_ ) :m(m_) {}; Ytype operator() (Xtype const & x) const { Ytype S = 0.0; Ytype Z = x*x; for ( int n=0; n<=m; n++) S += laguerre(n,(Ytype)(-0.5),Z); S *= exp(-Z); S /= ml_sqrtpi; return S; } }; double hdaf_integral(int m,double sigma, double a, double b) { /* a /= sigma*sqrt2; b /= sigma*sqrt2; double B[m+1]; for (int n=0; n<=m; n++) { B[n] = 0; int k = n+1; double P = 1.0/(n+1); if (k<=m) B[n] += P; k++; for (; k<=m; k++) { P *= (double)(2*k*k-3*k+1)/(2*k*(k-n-1)); B[n] += P; } B[n] /= (2*sqrtpi*dfactorial[n]); if (n%2) B[n] = -B[n]; } double sum_a = 0; double sum_b = 0; for (int i=m; i>=0; i--) { sum_a *= a*a; sum_a += B[i]; sum_b *= b*b; sum_b += B[i]; } sum_a *= a*exp(-a*a); sum_b *= b*exp(-b*b); return ((erf(b)-erf(a))/2 +sum_b-sum_a);*/ static int m_max = 100; static hdaf_coefficients C(m_max); a /= sigma*ml_sqrt2; b /= sigma*ml_sqrt2; double sum = 0.0; double a2 = a*a; double b2 = b*b; double pa = 0.5*a*exp(-a*a); double pb = 0.5*b*exp(-b*b); double I_k = (erf(b)-erf(a))*ml_sqrtpi/2; sum += I_k*C(m,0); for (int k=1; k<=m; k++ ) { // I_k = (pa-pb)+ I_k*(2*k-1)/2; I_k = -0.5*( pow(b,2*k-1)*exp(-b*b) - pow(a,2*k-1)*exp(-a*a) ) + (I_k*(2*k-1))/2; pa *= a2; pb *= b2; sum += C(m,k)*I_k; } return sum;//*sqrt2*sigma; } double hdaf_integral_accurate(int m,double sigma, double a, double b) { mp::mp_init(1); a /= sigma*ml_sqrt2; b /= sigma*ml_sqrt2; mp_real B[m+1]; for (int n=0; n<=m; n++) { //cout << n << endl; B[n] = 0; int k = n+1; mp_real P = (mp_real)(1.0)/(n+1); if (k<=m) B[n] += P; k++; for (; k<=m; k++) { P *= ((mp_real)(2*k*k-3*k+1))/(2*k*(k-n-1)); B[n] += P; } B[n] /= (2*ml_sqrtpi*dfactorial[n]); B[n] /= (gamma((mp_real)0.5)*gamma(mp_real(n+1)))*2.0; if (n%2) B[n] = -B[n]; } mp_real sum_a = 0.0; mp_real sum_b = 0.0; for (int i=m; i>=0; i--) { sum_a *= a*a; sum_a += B[i]; sum_b *= b*b; sum_b += B[i]; } sum_a *= a*exp(-a*a); sum_b *= b*exp(-b*b); return dble(((erf((mp_real)b)-erf((mp_real)a))/2 +sum_b-sum_a)); } class hdaf_bp_filter_response : public functor<double, double> { public: hdaf_deltaHat hdaf_low; hdaf_deltaHat hdaf_high; hdaf_bp_filter_response(int m_low, double low_cut, int m_high, double high_cut ) :hdaf_low(m_low, sqrt(2*m_low+1)/(low_cut*ml_2pi) ),hdaf_high(m_high, sqrt(2*m_high+1)/(high_cut*ml_2pi) ) { cout << low_cut << "\t" << high_cut << endl; }; double operator() (double const & k) const { return hdaf_high(k)-hdaf_low(k); } }; /* template<class D> D hdaf_delta(D x, int M, D sigma); class HDAFfilter : public functor<double, double> { public: double k0; double delta; double * lognfact; int mmax; HDAFfilter(int K, double D, double * lognfact_, int M) : k0(K),delta(D),lognfact(lognfact_),mmax(M) {}; double operator() (double k) { double sigma = sqrt2/(delta); int m = ceil(k0*k0/(delta*delta)-0.5); assert(m <= mmax); double s = 0.0; double x = k*k*sigma*sigma/2.0; double r = log(fabs(k))*2.0+log(sigma)*2.0; if (fabs(k)<1E-12) return 1.0; for (int n = 0;n<=m;n++) s += exp(-x+r*n-_log2*n-lognfact[n]); return s; } }; template<class D> D hdaf_delta(D x, int M, D sigma); template<> double hdaf_delta(double x, int M, double sigma); template<> mp_real hdaf_delta(mp_real x, int M, mp_real sigma); template<class D> D hdaf_delta_2(D x, int M, D sigma); template<> double hdaf_delta_2(double x, int M, double sigma); template<> mp_real hdaf_delta_2(mp_real x, int M, mp_real sigma); */ /* void HDAF1(grid1D<double> in, grid1D<double> out, double M, double sig); double hdafDelta(double x, double M, double sig); double hdafDelta_2(double x, double M, double sig); double hdafDeltaHat_M(double xi, double M, double sig); */ #endif
[ "[email protected]", "nick@nick-desktop.(none)", "[email protected]" ]
[ [ [ 1, 2 ], [ 190, 190 ], [ 192, 192 ] ], [ [ 3, 18 ], [ 20, 189 ], [ 191, 191 ], [ 193, 293 ], [ 298, 636 ], [ 638, 638 ], [ 640, 644 ], [ 646, 918 ] ], [ [ 19, 19 ], [ 294, 297 ], [ 637, 637 ], [ 639, 639 ], [ 645, 645 ] ] ]
999090ddf278d8ac7d463f1510ea35b7faa96acd
be2e23022d2eadb59a3ac3932180a1d9c9dee9c2
/GameServer/MapGroupKernel/NpcLink.h
47efa124b7f53587490eafa8150c04d8536a1c8b
[]
no_license
cronoszeu/revresyksgpr
78fa60d375718ef789042c452cca1c77c8fa098e
5a8f637e78f7d9e3e52acdd7abee63404de27e78
refs/heads/master
2020-04-16T17:33:10.793895
2010-06-16T12:52:45
2010-06-16T12:52:45
35,539,807
0
2
null
null
null
null
UTF-8
C++
false
false
458
h
#pragma once class CNpcLink { protected: CNpcLink(); virtual ~CNpcLink(); public: static CNpcLink* CreateNew(PROCESS_ID idProcess, CNpc* pOwner); void Release() { delete this; } public: // application void SetLinkMap(OBJID idMap); CGameMap* GetLinkMap(); // return null: data error bool EraseMap(); protected: PROCESS_ID m_idProcess; CNpc* m_pOwner; CGameMap* m_pLinkMap; MYHEAP_DECLARATION(s_heap) };
[ "rpgsky.com@cc92e6ba-efcf-11de-bf31-4dec8810c1c1" ]
[ [ [ 1, 27 ] ] ]
46effb3436023cf959a0f5963ce426d612f7f0c5
138a353006eb1376668037fcdfbafc05450aa413
/source/ArenaCamera.cpp
48b047fa6f49144f1cdf706b0241410033d51e0e
[]
no_license
sonicma7/choreopower
107ed0a5f2eb5fa9e47378702469b77554e44746
1480a8f9512531665695b46dcfdde3f689888053
refs/heads/master
2020-05-16T20:53:11.590126
2009-11-18T03:10:12
2009-11-18T03:10:12
32,246,184
0
0
null
null
null
null
UTF-8
C++
false
false
1,002
cpp
#include "ArenaCamera.h" ArenaCamera::ArenaCamera(Ogre::SceneNode *target1, Ogre::SceneNode *target2, Ogre::Camera *cam) { mTarget1 = target1; mTarget2 = target2; mCamera = cam; mMinDist = 0.0f; } ArenaCamera::~ArenaCamera() { } void ArenaCamera::setMinDistanceAway(float dist) { mMinDist = dist; } void ArenaCamera::update() { Ogre::Vector3 lookAt; Ogre::Vector3 camPos(mCamera->getPosition()); float distance; float idealDistance; float fov = mCamera->getFOVy().valueRadians(); float xDist; float otherAngle = 90 - fov; lookAt = (mTarget1->getPosition() + mTarget2->getPosition()) * 0.5f; xDist = fabs(mTarget1->getPosition().x - mTarget2->getPosition().x); distance = camPos.z - lookAt.z; idealDistance = 0.5f * xDist * Ogre::Math::Sin(otherAngle) / Ogre::Math::Sin(0.5f * fov); if(idealDistance > mMinDist) { camPos.z = idealDistance; } else { camPos.z = mMinDist; } mCamera->setPosition(camPos); mCamera->lookAt(lookAt); }
[ "Sonicma7@0822fb10-d3c0-11de-a505-35228575a32e" ]
[ [ [ 1, 41 ] ] ]
fec26d3f4d00b112009a6c142ca0c2a00dfac4db
8bdca3c7a80b5e92000f5a49af50c3565df210bf
/MarioBros/MarioBros/Clumn.h
f50e2094f981562835b6ce8211a0d14c6ff80140
[]
no_license
NguyenMinhTri/mario-directx-laptringgame2d
d8e5bffd78ea321a0d51980ea4e72675390ce0c1
28becda2fbfb13a8c04358a50ce2f1f7b23db247
refs/heads/master
2021-01-10T15:52:48.275384
2011-11-29T03:34:06
2011-11-29T03:34:06
44,036,200
0
0
null
null
null
null
UTF-8
C++
false
false
377
h
#pragma once #include "Animation.h" #include "Sprite.h" #include "Object.h" #include <list> using namespace std; class Clumn:public Object { public: Clumn(); Clumn(float _x, float _y,float width,float height,int _ID,Sprite* _sprite); void Render(Camera* camera); void ResetWhenReload(Sprite* _sprite); void Save(fstream *fs); void Load(fstream *fs); };
[ [ [ 1, 18 ] ] ]
b32e5a3188eaff70c3052f01909cb1fd60564767
8b506bf34b36af04fa970f2749e0c8033f1a9d7a
/Code/Boot/apBoot.cpp
6dc8bd74ee9a8ac6328da9017d6c39112423cb01
[]
no_license
gunstar/Prototype
a5155e25d7d54a1991425e7be85bfc7da42c634f
a4448b5f6d18048ecaedf26c71e2b107e021ea6e
refs/heads/master
2021-01-10T21:42:24.221750
2011-11-06T10:16:26
2011-11-06T10:16:26
2,708,481
0
0
null
null
null
null
UTF-8
C++
false
false
3,813
cpp
#include "enAlloc.h" #include "gwEngine.h" #ifdef WIN32 #include <windows.h> #include <commctrl.h> #else #include <iostream> using namespace std; #endif #include <stdio.h> /*******************************************************************/ #include "../Games/CityGame/ciMain.h" void runCityGame() { gwEngine* engine = new gwEngine(); if(engine->open("City Game")) { ciMain* game = new ciMain(engine); game->run(); delete game; engine->close(); } delete engine; } /*******************************************************************/ #include "../Games/DungeonGame/duMain.h" void runDungeonGame() { gwEngine* engine = new gwEngine(); if(engine->open("Dungeon Game")) { duMain* game = new duMain(engine); game->run(); delete game; engine->close(); } delete engine; } /*******************************************************************/ #include "../Games/FencingGame/feMain.h" void runFencingGame() { gwEngine* engine = new gwEngine(); if(engine->open("Fencing Game")) { feMain* game = new feMain(engine); game->run(); delete game; engine->close(); } delete engine; } /*******************************************************************/ #include "../Games/FPRTSGame/fpMain.h" void runFPRTSGame() { gwEngine* engine = new gwEngine(); if(engine->open("FP RTS Game")) { fpMain* game = new fpMain(engine); game->run(); delete game; engine->close(); } delete engine; } /*******************************************************************/ #include "../Games/IGI/igMain.h" void runIGIGame() { gwEngine* engine = new gwEngine(); if(engine->open("IGI Game")) { igMain* game = new igMain(engine); game->run(); delete game; engine->close(); } delete engine; } /*******************************************************************/ #include "../Games/RacingGame/raMain.h" void runRacingGame() { gwEngine* engine = new gwEngine(); if(engine->open("Racing Game")) { raMain* game = new raMain(engine); game->run(); delete game; engine->close(); } delete engine; } /*******************************************************************/ #include "../Games/ShootingGame/shMain.h" void runShootingGame() { gwEngine* engine = new gwEngine(); if(engine->open("Shooting Game")) { shMain* game = new shMain(engine); game->run(); delete game; engine->close(); } delete engine; } /*******************************************************************/ #include "../Games/TestGame/teMain.h" void runTestGame() { gwEngine* engine = new gwEngine(); if(engine->open("Test Game")) { teMain* game = new teMain(engine); game->run(); delete game; engine->close(); } delete engine; } /*******************************************************************/ #ifdef WIN32 int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmd, int show) #else int main(int, char*[]) #endif { // Initialize common controls (make sure to include Comctl32.lib in project): #ifdef WIN32 InitCommonControls(); #endif // Get current memory count: int memory = enAllocGetSize(); // Run: //runCityGame(); //runDungeonGame(); //runFencingGame(); //runFPRTSGame(); //runIGIGame(); //runRacingGame(); runShootingGame(); //runTestGame(); // Check memory: int memoryLost = enAllocGetSize() - memory; if(memoryLost > 0) { char text[100]; sprintf(text, "Error: Memory Overflow (%d bytes)\n", memoryLost); #ifdef WIN32 MessageBox(0, text, "Boot", MB_OK | MB_ICONERROR); #else cerr << text << flush; #endif } return 0; }
[ [ [ 1, 238 ] ] ]
40abc948bd72f1e07764d2ed07105d3227123e22
b73f27ba54ad98fa4314a79f2afbaee638cf13f0
/include/utility/ZipUtility.h
2b84c1d2a8b3ebc0120c827873ab322e26fc4853
[]
no_license
weimingtom/httpcontentparser
4d5ed678f2b38812e05328b01bc6b0c161690991
54554f163b16a7c56e8350a148b1bd29461300a0
refs/heads/master
2021-01-09T21:58:30.326476
2009-09-23T08:05:31
2009-09-23T08:05:31
48,733,304
3
0
null
null
null
null
GB18030
C++
false
false
5,196
h
#ifndef _UTILITY_ZIPUTILITY_H__ #define _UTILITY_ZIPUTILITY_H__ #include <zlib/zconf.h> #include <zlib/zlib.h> // class ZipUtility // 此类负责在对堆栈上解压缩Zip格式 // 首先它拥有一部分堆栈缓冲区,如果栈缓冲区不能满足使用 // 它才会从堆上分配空间 template <int STACK_BUFFER_SIZE = 1024> class ZipUtility { public: ZipUtility(void) { heap_buffer_ = NULL; have_ = 0; buffer_size_ = STACK_BUFFER_SIZE; buffer_pointer_ = stack_buffer_; } ~ZipUtility(void) { if (NULL != heap_buffer_) { delete heap_buffer_; heap_buffer_ = NULL; } } public: int infloate_size(Bytef *src, const int size); int uncompress(Bytef * src, const int size); int compress(Bytef *src, const int size, const int level = Z_DEFAULT_COMPRESSION); // 缓冲区 int get_buffer_size() const { return buffer_size_;} int get_inflate_size() const { return have_;} int get_data_size() const { return have_;} Bytef * get_buffer() { return buffer_pointer_;} private: Bytef * buffer_pointer_; // buffer_pointer_会首先使用STACK上的缓冲 // 如果不够用,才会在堆上分配内容 Bytef stack_buffer_[STACK_BUFFER_SIZE]; Bytef *heap_buffer_; int buffer_size_; int have_; private: // 重新分配缓冲区 int realloc_buffer() { const int new_buffer_size = get_buffer_size() * 2; Bytef * new_buffer = new Bytef[new_buffer_size]; memcpy(new_buffer, get_buffer(), get_buffer_size()); // 释放缓存去(如果不是栈缓冲区) if (get_buffer_size() > STACK_BUFFER_SIZE) { delete[] get_buffer(); } // 充值指针 buffer_pointer_ = new_buffer; buffer_size_ = new_buffer_size; return get_buffer_size(); } }; // 压缩 template <int STACK_BUFFER_SIZE> int ZipUtility<STACK_BUFFER_SIZE>::compress(Bytef *src, const int size, const int level) { int ret, flush = Z_FINISH; z_stream strm; /* allocate deflate state */ strm.zalloc = Z_NULL; strm.zfree = Z_NULL; strm.opaque = Z_NULL; ret = deflateInit(&strm, level); if (ret != Z_OK) return ret; strm.avail_in = size; strm.next_in = src; /* run deflate() on input until output buffer not full, finish compression if all of source has been read in */ have_ = 0; do { strm.avail_out = get_buffer_size() - get_data_size(); strm.next_out = get_buffer() + get_data_size(); ret = deflate(&strm, flush); /* no bad return value */ assert(ret != Z_STREAM_ERROR); /* state not clobbered */ have_ += get_buffer_size() - get_data_size() - strm.avail_out; // 如果缓冲区用尽,就需要重新分配缓冲区 if (get_buffer_size() == have_) { realloc_buffer(); } } while (strm.avail_out == 0); /* clean up and return */ (void)deflateEnd(&strm); return Z_OK; } // 获取解压缩后的大小 template <int STACK_BUFFER_SIZE> int ZipUtility<STACK_BUFFER_SIZE>::infloate_size(Bytef * src, const int size) { have_ = 0; // 初试大小为0 int ret; z_stream strm; if (size == 0) return Z_OK; /* allocate inflate state */ strm.zalloc = Z_NULL; strm.zfree = Z_NULL; strm.opaque = Z_NULL; strm.avail_in = 0; strm.next_in = Z_NULL; ret = inflateInit(&strm); if (ret != Z_OK) return ret; // 初始化 strm.avail_in = size; strm.next_in = src; do { strm.avail_out = get_buffer_size() - get_data_size(); strm.next_out = get_buffer() + get_data_size(); // 增加大小 have_ += STACK_BUFFER_SIZE - strm.avail_out; } while (strm.avail_out == 0); // 销毁 (void)inflateEnd(&strm); *infloat = strm.total_out; return ret == Z_STREAM_END ? Z_OK : Z_DATA_ERROR; } // 解压缩 template <int STACK_BUFFER_SIZE> int ZipUtility<STACK_BUFFER_SIZE>::uncompress(Bytef * src, const int size) { have_ = 0; int ret; z_stream strm; /* allocate inflate state */ strm.zalloc = Z_NULL; strm.zfree = Z_NULL; strm.opaque = Z_NULL; strm.avail_in = 0; strm.next_in = Z_NULL; if (size == 0) return Z_OK; ret = inflateInit(&strm); if (ret != Z_OK) return ret; // 开始解压缩 strm.avail_in = size; strm.next_in = src; /* run inflate() on input until output buffer not full */ do { strm.avail_out = get_buffer_size() - get_data_size(); strm.next_out = get_buffer() + get_data_size(); // 解压缩 ret = inflate(&strm, Z_NO_FLUSH); assert(ret != Z_STREAM_ERROR); /* state not clobbered */ switch (ret) { case Z_NEED_DICT: ret = Z_DATA_ERROR; /* and fall through */ case Z_DATA_ERROR: case Z_MEM_ERROR: (void)inflateEnd(&strm); return ret; } // 解压缩所处理的数据大小 have_ += get_buffer_size() - get_data_size() - strm.avail_out; // 如果缓冲区用尽,就需要重新分配缓冲区 if (get_buffer_size() == have_) { realloc_buffer(); } } while (strm.avail_out == 0); /* clean up and return */ (void)inflateEnd(&strm); return ret == Z_STREAM_END ? Z_OK : Z_DATA_ERROR; } #endif // _UTILITY_ZIPUTILITY_H__
[ [ [ 1, 209 ] ] ]
182275420cc4747c9ffa3cb8f47cb9ad10e55750
94c1c7459eb5b2826e81ad2750019939f334afc8
/source/FyAddMoney.h
142e5af31e4ec491af2ed4c76251238c652351e4
[]
no_license
wgwang/yinhustock
1c57275b4bca093e344a430eeef59386e7439d15
382ed2c324a0a657ddef269ebfcd84634bd03c3a
refs/heads/master
2021-01-15T17:07:15.833611
2010-11-27T07:06:40
2010-11-27T07:06:40
37,531,026
1
3
null
null
null
null
UTF-8
C++
false
false
1,297
h
#if !defined(AFX_FYADDMONEY_H__AA9D2BA2_D444_11D6_968F_AE9E83D8F170__INCLUDED_) #define AFX_FYADDMONEY_H__AA9D2BA2_D444_11D6_968F_AE9E83D8F170__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class FyAddMoney : public CDialog { public: static void ShowTime(CString sID); static int g_nUseTimes; static void SetUrl(char * chUrl); static CString GetUrl(); static bool ToLogOn(); static bool ToLogOn2(); static void ReadSettings(CString &sUser,CString &sID); static void SaveSettings(CString sUser,CString sID); static CString GetReturnCode(CString sUrl,bool bPrompt,int &nErrorCode); FyAddMoney(CWnd* pParent = NULL); //{{AFX_DATA(FyAddMoney) enum { IDD = IDD_FY_ADDMONEY }; CString m_sUser; CString m_sID; //}}AFX_DATA //{{AFX_VIRTUAL(FyAddMoney) protected: virtual void DoDataExchange(CDataExchange* pDX); //}}AFX_VIRTUAL protected: //{{AFX_MSG(FyAddMoney) virtual void OnCancel(); virtual void OnOK(); virtual BOOL OnInitDialog(); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_FYADDMONEY_H__AA9D2BA2_D444_11D6_968F_AE9E83D8F170__INCLUDED_)
[ [ [ 1, 52 ] ] ]
75a27305f423061402d3806e769ffe2543da8da8
27359980429a4bfce783bfa4699b0b500e088250
/src/mousehook/stdafx.cpp
62f61911e3cfede787056f7fc0619ac731764918
[]
no_license
asdlei99/cchelper
d3204e51ad2e8f15f2d813092eba9ff62cf5dddb
a98b85061a864103c06d22d2d6322cc73bdcb1bf
refs/heads/master
2022-01-29T08:11:40.666682
2009-11-19T03:01:42
2009-11-19T03:01:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
296
cpp
// stdafx.cpp : source file that includes just the standard includes // mousehook.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "tanbunko@2befaa78-c350-11de-b037-cf5282a2cdbc" ]
[ [ [ 1, 8 ] ] ]
fb5caadedf3eba1558bda55577207ca0457b5ab0
b2d46af9c6152323ce240374afc998c1574db71f
/cursovideojuegos/theflostiproject/3rdParty/boost/libs/type_traits/test/has_nothrow_constr_test.cpp
84ad4df6adc6971b22c11e3a22fd7831bfbdfeb0
[]
no_license
bugbit/cipsaoscar
601b4da0f0a647e71717ed35ee5c2f2d63c8a0f4
52aa8b4b67d48f59e46cb43527480f8b3552e96d
refs/heads/master
2021-01-10T21:31:18.653163
2011-09-28T16:39:12
2011-09-28T16:39:12
33,032,640
0
0
null
null
null
null
UTF-8
C++
false
false
11,680
cpp
// (C) Copyright John Maddock 2000. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" #ifdef TEST_STD # include <type_traits> #else # include <boost/type_traits/has_nothrow_constructor.hpp> #endif TT_TEST_BEGIN(has_nothrow_constructor) BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<bool>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<bool const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<bool volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<bool const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<signed char>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<signed char const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<signed char volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<signed char const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned char>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<char>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned char const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<char const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned char volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<char volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned char const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<char const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned short>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<short>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned short const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<short const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned short volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<short volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned short const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<short const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned int>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<int>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned int const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<int const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned int volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<int volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned int const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<int const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned long>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<long>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned long const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<long const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned long volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<long volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned long const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<long const volatile>::value, true); #ifdef BOOST_HAS_LONG_LONG BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor< ::boost::ulong_long_type>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor< ::boost::long_long_type>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor< ::boost::ulong_long_type const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor< ::boost::long_long_type const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor< ::boost::ulong_long_type volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor< ::boost::long_long_type volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor< ::boost::ulong_long_type const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor< ::boost::long_long_type const volatile>::value, true); #endif #ifdef BOOST_HAS_MS_INT64 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int8>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int8>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int8 const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int8 const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int8 volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int8 volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int8 const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int8 const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int16>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int16>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int16 const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int16 const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int16 volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int16 volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int16 const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int16 const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int32>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int32>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int32 const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int32 const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int32 volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int32 volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int32 const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int32 const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int64>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int64>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int64 const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int64 const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int64 volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int64 volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<unsigned __int64 const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<__int64 const volatile>::value, true); #endif BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<float>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<float const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<float volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<float const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<double>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<double const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<double volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<double const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<long double>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<long double const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<long double volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<long double const volatile>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<int>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<void*>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<int*const>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<f1>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<f2>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<f3>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<mf1>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<mf2>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<mf3>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<mp>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<cmf>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<enum_UDT>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<int&>::value, false); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<const int&>::value, false); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<int[2]>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<int[3][2]>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<int[2][4][5][6][3]>::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<UDT>::value, false); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<empty_UDT>::value, false); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<void>::value, true); // cases we would like to succeed but can't implement in the language: BOOST_CHECK_SOFT_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<empty_POD_UDT>::value, true, false); BOOST_CHECK_SOFT_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<POD_UDT>::value, true, false); BOOST_CHECK_SOFT_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<POD_union_UDT>::value, true, false); BOOST_CHECK_SOFT_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<empty_POD_union_UDT>::value, true, false); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::has_nothrow_constructor<test_abc1>::value, false); TT_TEST_END
[ "ohernandezba@71d53fa2-cca5-e1f2-4b5e-677cbd06613a" ]
[ [ [ 1, 163 ] ] ]
60b5bb22c5bedbd7db71d2f9d774e24e6e426e82
5ac13fa1746046451f1989b5b8734f40d6445322
/minimangalore/Nebula2/code/nebula2/src/gui/nguiicon_main.cc
d5adda57b3e57deca8dee9f83f0d759e665012c1
[]
no_license
moltenguy1/minimangalore
9f2edf7901e7392490cc22486a7cf13c1790008d
4d849672a6f25d8e441245d374b6bde4b59cbd48
refs/heads/master
2020-04-23T08:57:16.492734
2009-08-01T09:13:33
2009-08-01T09:13:33
35,933,330
0
0
null
null
null
null
UTF-8
C++
false
false
5,511
cc
//------------------------------------------------------------------------------ // nguiicon_main.cc // (C) 2003 RadonLabs GmbH //------------------------------------------------------------------------------ #include "gui/nguiicon.h" #include "gui/nguiiconcanvas.h" nNebulaClass(nGuiIcon, "nguilabel"); //------------------------------------------------------------------------------ /** */ nGuiIcon::nGuiIcon() : dragging(false) { this->canvasClass = kernelServer->FindClass("nguiiconcanvas"); } //------------------------------------------------------------------------------ /** */ nGuiIcon::~nGuiIcon() { // empty } //------------------------------------------------------------------------------ /** Get pointer to my icon canvas. */ nGuiIconCanvas* nGuiIcon::GetCanvas() const { nGuiWidget* parent = (nGuiWidget*) this->GetParent(); n_assert(parent && parent->IsA(this->canvasClass)); return (nGuiIconCanvas*) parent; } //------------------------------------------------------------------------------ /** Called when dragging this icon should start. */ bool nGuiIcon::OnDragStart(const vector2& mousePos) { if (this->GetCanvas()->OnDragStart(mousePos, this)) { this->dragging = true; this->dragStartMousePos = mousePos; this->dragStartRect = this->rect; return true; } return false; } //------------------------------------------------------------------------------ /** Returns true when the icon thinks that the provided mouse position is a valid drop position. */ bool nGuiIcon::IsValidDropPos(const vector2& mousePos) { return this->GetCanvas()->IsValidDropPos(mousePos, this); } //------------------------------------------------------------------------------ /** Called when mouse moved and this icon is currently dragged. This will change the position of the icon accordingly must return true when icon is over a "droppable" position. */ void nGuiIcon::OnDragging(const vector2& mousePos) { n_assert(this->dragging); nGuiIconCanvas* canvas = this->GetCanvas(); canvas->OnDragging(mousePos, this); float canvasWidth = canvas->GetRect().v1.x - canvas->GetRect().v0.x; float canvasHeight = canvas->GetRect().v1.y - canvas->GetRect().v0.y; // fix widget rectangle vector2 dragDist = mousePos - dragStartMousePos; rectangle r = this->dragStartRect; r.v0 += dragDist; r.v1 += dragDist; float width = r.width(); float height = r.height(); vector2 size = r.v1 - r.v0; if (r.midpoint().x < 0.0f) { r.v0.x = -width * 0.5f; r.v1.x = r.v0.x + width; } if (r.midpoint().y < 0.0f) { r.v0.y = -height * 0.5f; r.v1.y = r.v0.y + height; } if (r.midpoint().x > canvasWidth) { r.v0.x = canvasWidth - width * 0.5f; r.v1.x = r.v0.x + width; } if (r.midpoint().y > canvasHeight) { r.v0.y = canvasHeight - height * 0.5f; r.v1.y = r.v0.y + height; } /* if (r.v0.x < 0.0f) { r.v0.x = 0.0f; r.v1.x = size.x; } else if (r.v1.x > canvasWidth) { r.v1.x = canvasWidth; r.v0.x = canvasWidth - size.x; } if (r.v0.y < 0.0f) { r.v0.y = 0.0f; r.v1.y = size.y; } else if (r.v1.y > canvasHeight) { r.v1.y = canvasHeight; r.v0.y = canvasHeight - size.y; } */ this->rect = r; } //------------------------------------------------------------------------------ /** Called when this icon has been dropped over a valid position. */ void nGuiIcon::OnDropped(const vector2& mousePos) { this->dragging = false; this->GetCanvas()->OnDropped(mousePos, this); } //------------------------------------------------------------------------------ /** Called when dragging has been cancelled. */ void nGuiIcon::OnDragCancelled(const vector2& mousePos) { this->rect = this->dragStartRect; this->dragging = false; this->GetCanvas()->OnDragCancelled(mousePos, this); } //------------------------------------------------------------------------------ /** */ bool nGuiIcon::OnButtonDown(const vector2& mousePos) { if (this->IsShown() && (this->Inside(mousePos))) { return this->OnDragStart(mousePos); } return nGuiWidget::OnButtonDown(mousePos); } //------------------------------------------------------------------------------ /** */ bool nGuiIcon::OnMouseMoved(const vector2& mousePos) { if (this->dragging) { this->OnDragging(mousePos); } return nGuiLabel::OnMouseMoved(mousePos); } //------------------------------------------------------------------------------ /** */ bool nGuiIcon::OnButtonUp(const vector2& mousePos) { if (this->dragging) { if (this->IsValidDropPos(mousePos)) { this->OnDropped(mousePos); } else { this->OnDragCancelled(mousePos); } } return nGuiWidget::OnButtonUp(mousePos); } //------------------------------------------------------------------------------ /** */ bool nGuiIcon::OnRButtonDown(const vector2& mousePos) { if (this->dragging) { this->OnDragCancelled(mousePos); } return nGuiWidget::OnRButtonDown(mousePos); }
[ "BawooiT@d1c0eb94-fc07-11dd-a7be-4b3ef3b0700c" ]
[ [ [ 1, 216 ] ] ]
9003ac266cff2fc00c78abe0f3593c24ff5ba3ac
91b964984762870246a2a71cb32187eb9e85d74e
/SRC/OFFI SRC!/_Interface/WndNeuz.cpp
f85de2ffef06d5999b0260e0e993fa4389cab1a6
[]
no_license
willrebuild/flyffsf
e5911fb412221e00a20a6867fd00c55afca593c7
d38cc11790480d617b38bb5fc50729d676aef80d
refs/heads/master
2021-01-19T20:27:35.200154
2011-02-10T12:34:43
2011-02-10T12:34:43
32,710,780
3
0
null
null
null
null
UHC
C++
false
false
23,320
cpp
// WndArcane.cpp: implementation of the CWndNeuz class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "resdata.h" #include "WndStyle.h" #include "WndHelp.h" ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // // 타이틀 바 (축소, 최대, 종료 버튼) // ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// /* #define WTBID_CLOSE 100 #define WTBID_MAX 101 #define WTBID_MIN 102 #define WTBID_HELP 103 #define WTBID_REPORT 104 #define WTBID_PIN 105 */ CWndTitleBar::CWndTitleBar() { } CWndTitleBar::~CWndTitleBar() { } void CWndTitleBar::OnDraw(C2DRender* p2DRender) { } void CWndTitleBar::OnInitialUpdate() { CWndBase::OnInitialUpdate(); m_nButtonMax = 0; if(m_pParentWnd->IsWndStyle( WBS_PIN ) ) m_awndButton[ WTBID_PIN - 10000 ].Create( _T( "P" ), 0, CRect( m_nButtonMax * 16, 1, m_nButtonMax * 16 + 16, 20), this, WTBID_PIN ), m_nButtonMax++; if(m_pParentWnd->IsWndStyle( WBS_VIEW ) ) m_awndButton[ WTBID_REPORT - 10000 ].Create( _T( "V" ), 0, CRect( m_nButtonMax * 16, 1, m_nButtonMax * 16 + 16, 20), this, WTBID_REPORT ), m_nButtonMax++; if(m_pParentWnd->IsWndStyle( WBS_EXTENSION ) ) m_awndButton[ WTBID_EXTENSION - 10000 ].Create( _T( "E" ), WBS_CHECK | WBS_PUSHLIKE , CRect( m_nButtonMax * 15, 0, m_nButtonMax * 16 + 16, 20), this, WTBID_EXTENSION ), m_nButtonMax++; if(m_pParentWnd->IsWndStyle( WBS_HELP ) ) { m_awndButton[ WTBID_HELP - 10000 ].Create( _T( "?" ), 0, CRect( m_nButtonMax * 16, 1 , m_nButtonMax * 16 + 16, 20), this, WTBID_HELP ), m_nButtonMax++; //#ifdef __CLIENT m_awndButton[ WTBID_HELP - 10000 ].SetTexture( m_pApp->m_pd3dDevice, MakePath( DIR_THEME, "ButtWndHelp.tga" ), TRUE ); m_awndButton[ WTBID_HELP - 10000 ].FitTextureSize(); //#endif } if(m_pParentWnd->IsWndStyle( WBS_MINIMIZEBOX ) ) m_awndButton[ WTBID_MIN - 10000 ].Create( _T( "_" ), 0, CRect( m_nButtonMax * 16, 1 , m_nButtonMax* 16 + 16, 20), this, WTBID_MIN ), m_nButtonMax++; #if __VER >= 15 // __IMPROVE_QUEST_INTERFACE m_awndButton[ WTBID_MIN - 10000 ].SetTexture( m_pApp->m_pd3dDevice, MakePath( DIR_THEME, "ButtWndMin.tga" ), TRUE ); m_awndButton[ WTBID_MIN - 10000 ].FitTextureSize(); #endif // __IMPROVE_QUEST_INTERFACE if(m_pParentWnd->IsWndStyle( WBS_MAXIMIZEBOX ) ) { m_awndButton[ WTBID_MAX - 10000 ].Create( _T( "|" ), 0, CRect( m_nButtonMax * 16, 1 , m_nButtonMax* 16 + 16, 20), this, WTBID_MAX ), m_nButtonMax++; //#ifdef __CLIENT m_awndButton[ WTBID_MAX - 10000 ].SetTexture( m_pApp->m_pd3dDevice, MakePath( DIR_THEME, "ButtWndMax.tga" ), TRUE ); m_awndButton[ WTBID_MAX - 10000 ].FitTextureSize(); //#endif } if(m_pParentWnd->IsWndStyle( WBS_CAPTION ) ) { #if __VER >= 15 // __IMPROVE_QUEST_INTERFACE if( m_pParentWnd->m_bNoCloseButton == FALSE ) { m_awndButton[ WTBID_CLOSE - 10000 ].Create( _T( "x" ), 0, CRect( m_nButtonMax * 16, 1 , m_nButtonMax * 16 + 16, 20), this, WTBID_CLOSE ), m_nButtonMax++; m_awndButton[ WTBID_CLOSE - 10000 ].SetTexture( m_pApp->m_pd3dDevice, MakePath( DIR_THEME, "ButtWndExit.tga" ), TRUE ); m_awndButton[ WTBID_CLOSE - 10000 ].FitTextureSize(); } #else // __IMPROVE_QUEST_INTERFACE m_awndButton[ WTBID_CLOSE - 10000 ].Create( _T( "x" ), 0, CRect( m_nButtonMax * 16, 1 , m_nButtonMax * 16 + 16, 20), this, WTBID_CLOSE ), m_nButtonMax++; //#ifdef __CLIENT m_awndButton[ WTBID_CLOSE - 10000 ].SetTexture( m_pApp->m_pd3dDevice, MakePath( DIR_THEME, "ButtWndExit.tga" ), TRUE ); m_awndButton[ WTBID_CLOSE - 10000 ].FitTextureSize(); //#endif #endif // __IMPROVE_QUEST_INTERFACE } CRect rect( 0, 4, m_nButtonMax * 16, 20 ); SetWndRect( rect ); ///wndTitleBar.Create( WBS_CHILD | WBS_DOCKING | WBS_NOFRAME, CRect(0,0,48,20), this, 100000);// ,m_pSprPack,9); //m_wndTitleBar.SetTitle("fuck"); //m_wndTitleBar.Move(CPoint(GetWindowRect().Width()-52,3)); //SetWndRect(rect); } void CWndTitleBar::Replace() { if( m_pParentWnd ) Move( CPoint( m_pParentWnd->GetWindowRect().Width() - m_nButtonMax * 16 - 7, 4 ) ); } BOOL CWndTitleBar::Initialize(CWndBase* pWndParent,DWORD dwStyle) { return TRUE; } BOOL CWndTitleBar::OnCommand( UINT nID, DWORD dwMessage, CWndBase* pWndBase ) { //if(m_pParentWnd) m_pParentWnd->OnCommand(nID,dwMessage); return TRUE; } BOOL CWndTitleBar::OnChildNotify( UINT message, UINT nID, LRESULT* pLResult ) { if(m_pParentWnd) m_pParentWnd->OnChildNotify( message, nID, pLResult ); return TRUE; } void CWndTitleBar::OnSize(UINT nType, int cx, int cy) { } BOOL CWndTitleBar::OnEraseBkgnd(C2DRender* p2DRender) { return 1; } ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// // // Neuz 윈도 기본 베이스 클레스 // ///////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// CWndNeuz::CWndNeuz() { m_bFullMax = FALSE; m_dwWID = 0; m_ptMouseCenter = CPoint( -1, -1 ); // m_bWndTile = FALSE;//TRUE; m_dwColor = 0xffffffff; m_bPutRegInfo = TRUE; m_d3dFormat = D3DFMT_A4R4G4B4 ; } CWndNeuz::~CWndNeuz() { // PLAYSND( SND_INF_CLOSE ); int i; for( i = 0; i < m_wndArrayTemp.GetSize(); i++ ) safe_delete( (CWndBase*)m_wndArrayTemp.GetAt( i ) ); #ifdef __CLIENT // 애플렛으로 등록된 윈도만 파괴할 때 윈도의 정보를 저장한다. //if( g_WndMng.GetAppletFunc( GetWndId() ) && m_bPutRegInfo ) // g_WndMng.PutRegInfo( this, 1, FALSE ); // g_WndMng.PutRegInfo( GetWndId(), GetWindowRect( TRUE ), FALSE ); // 타일 형태의 윈도는 윈도가 종료할 때 텍스춰를 파괴해야한다. if( m_strTexture.IsEmpty() == FALSE ) { // 타일 형태는 파일을 읽는 것이 아니므로 자기 포인터가 텍스춰 ID로 사용되었다. CString strTextureId; strTextureId.Format( "%p", this ); m_textureMng.RemoveTexture( strTextureId ); } #endif } #ifdef __CLIENT void CWndNeuz::SerializeRegInfo( CAr& ar, DWORD& dwVersion ) { if( ar.IsLoading() ) { } else { dwVersion = 0; } } #endif void CWndNeuz::OnDraw(C2DRender* p2DRender) { } void CWndNeuz::PaintFrame( C2DRender* p2DRender ) { if( IsFullMax() && m_nWinSize == WSIZE_MAX ) return; CWndBase::PaintFrame( p2DRender ); } void CWndNeuz::OnInitialUpdate() { CWndBase::OnInitialUpdate(); m_rectBackup = m_rectWindow; int x = m_rectWindow.Width() / 2; int y = m_rectWindow.Height() - 45; CSize size = CSize( 60, 25 );//m_pSprPack->GetAt(9)->GetSize(); // //DWORD dwStyle,const RECT& rect,CWndBase* pParentWnd,UINT nID); if( IsWndStyle( WBS_CAPTION ) ) { m_wndTitleBar.Create( WBS_CHILD | WBS_DOCKING | WBS_NODRAWFRAME | WBS_NOFRAME, CRect(0,0,0,0), this, 100000 ); m_wndTitleBar.SetTitle( "fuck" ); m_wndTitleBar.Replace(); } // m_wndButton.Create("OK",0,CRect(0,0,0+size.cx,0+size.cy),this,IDOK);//,m_pSprPack,9); // m_wndClose.SetDefault(TRUE); LPWNDAPPLET lpWndApplet = m_resMng.GetAt ( GetWndId() ); if( lpWndApplet ) { //#ifndef __NEWINTERFACE // lpWndApplet->bTile = FALSE; //#endif SetTitle( lpWndApplet->strTitle ); m_bTile = ( lpWndApplet->bTile != FALSE ); m_strTexture = lpWndApplet->strTexture; m_d3dFormat = lpWndApplet->d3dFormat; int i; for( i = 0; i < lpWndApplet->ptrCtrlArray.GetSize(); i++ ) { m_wndArrayTemp.Add( CreateControl( m_pApp->GetSafeHwnd(), (LPWNDCTRL)lpWndApplet->ptrCtrlArray.GetAt( i ) ) ); } } // SetFocus(); //m_bWndTile = TRUE; // AdjustWndBase(); #if __VER >= 8 #ifdef __DISABLE_GAMMA_WND if(g_Neuz.m_bStartFullscreen) #endif g_Neuz.Drv_SetGamma( g_Neuz.GetSafeHwnd(), g_Option.m_fGamma, g_Option.m_nOverBright, g_Option.m_fContrast ); #endif //__Y_GAMMA_CONTROL_8 } void CWndNeuz::AdjustWndBase( D3DFORMAT d3dFormat ) { if( m_strTexture.IsEmpty() || IsVisible() == FALSE || IsWndStyle( WBS_NODRAWFRAME ) ) return; if( m_bTile == FALSE ) { SetTexture( m_pApp->m_pd3dDevice, MakePath( DIR_THEME, m_strTexture ), TRUE ); return; } CWndBase::AdjustWndBase( m_d3dFormat ); } void CWndNeuz::AdditionalSkinTexture( LPWORD pDest, CSize size1, D3DFORMAT d3dFormat ) { if( m_strTexture.IsEmpty() ) return; CRect rect = GetWindowRect( TRUE ); CSize size2 = CSize( rect.Width(), rect.Height() ); LPIMAGE lpImage[12]; CSize sizeBmp[1]; CString strFileName; /* 0 1 2 3 4 5 6 7 8 9 0 1 */ // m_strTile = "WndTile00.bmp"; int nImgBit = IMGBIT_32; int i; for( i = 0; i < 12; i++ ) { CString strTemp1 = m_strTexture.Left( m_strTexture.GetLength() - 6 ); CString strTemp2 = m_strTexture.Right( 4 ); strFileName.Format( "%s%02d%s", strTemp1, i, strTemp2 ); if( m_strWndTileMap.Lookup( strFileName, (void*&)lpImage[i] ) == FALSE ) { lpImage[i] = new IMAGE; lpImage[i]->size.cx = 99; if( LoadImage( MakePath( DIR_THEME, strFileName ), lpImage[i] ) == FALSE ) Error( "CWndNeuz::AdditionalSkinTexture에서 %s Open1 실패", strFileName ); m_strWndTileMap.SetAt( strFileName, lpImage[i] ); } //else //{ // sizeBmp[i] = CSize(16,16); //} } sizeBmp[0] = CSize(16,16); CSize sizeDiv = size2; sizeDiv.cx %= sizeBmp[ 0 ].cx; sizeDiv.cy %= sizeBmp[ 0 ].cy; size2.cx /= sizeBmp[ 0 ].cx; size2.cx *= sizeBmp[ 0 ].cx; size2.cy /= sizeBmp[ 0 ].cy; size2.cy *= sizeBmp[ 0 ].cy; if( sizeDiv.cx ) size2.cx += sizeBmp[ 0 ].cx; if( sizeDiv.cy ) size2.cy += sizeBmp[ 0 ].cy; i = 0; CSize sizeTile = size2; sizeTile.cx /= 16; sizeTile.cy /= 16; CPoint point( 0, 0); for( int y = 0; y < sizeTile.cy; y++ ) { point.x = 0; for( int x = 0; x < sizeTile.cx; x++) { /////////////////////////////// if( x == 0 && y == 0 ) i = 0; else if( x < sizeTile.cx - 1 && y == 0 ) i = 1; else if( x == sizeTile.cx - 1 && y == 0 ) i = 2; else /////////////////////////////// if( x == 0 && y == 1 ) i = 3; else if( x < sizeTile.cx - 1 && y == 1 ) i = 4; else if( x == sizeTile.cx - 1 && y == 1 ) i = 5; else /////////////////////////////// if( x == 0 && y < sizeTile.cy - 1 ) i = 6; else if( x < sizeTile.cx - 1 && y < sizeTile.cy - 1 ) i = 7; else if( x == sizeTile.cx - 1 && y < sizeTile.cy - 1 ) i = 8; else /////////////////////////////// if( x == 0 && y == sizeTile.cy - 1 ) i = 9; else if( x < sizeTile.cx - 1 && y == sizeTile.cy - 1 ) i = 10; else if( x == sizeTile.cx - 1 && y == sizeTile.cy - 1 ) i = 11; PaintTexture( pDest, lpImage[i], point, size1 ); point.x += 16; } point.y += 16; } } BOOL CWndNeuz::Initialize(CWndBase* pWndParent,DWORD dwStyle) { CRect rect(0,0,300,300); //m_strMessage = lpszMessage; //m_nType = nType; //SetTitle("메지시 윈도"); return CWndBase::Create(dwStyle | WBS_MOVE|/*WBS_MODAL|*/WBS_SOUND|WBS_CAPTION,rect,m_pWndRoot,10); } BOOL CWndNeuz::OnCommand( UINT nID, DWORD dwMessage, CWndBase* pWndBase ) { return TRUE; } BOOL CWndNeuz::OnChildNotify( UINT message, UINT nID, LRESULT* pLResult ) { if( message == WNM_CLICKED ) { switch(nID) { case WTBID_HELP: // 핼프 버튼 { #ifdef __CLIENT LPWNDAPPLET lpWndApplet = m_resMng.GetAt ( GetWndId() ); #ifdef __HELP_BUG_FIX if(g_WndMng.m_pWndHelpInstant) SAFE_DELETE(g_WndMng.m_pWndHelpInstant); g_WndMng.m_pWndHelpInstant = new CWndHelpInstant; g_WndMng.m_pWndHelpInstant->m_strHelpKey = lpWndApplet->strToolTip; g_WndMng.m_pWndHelpInstant->Initialize(); #else //__HELP_BUG_FIX // 헬프 이중생성 방지 for( int i=0; i<g_vecHelpInsKey.size(); i++ ) { if( g_vecHelpInsKey[i] == lpWndApplet->strToolTip ) return FALSE; } CWndHelpInstant* pHelpInstant = new CWndHelpInstant; pHelpInstant->m_strHelpKey = lpWndApplet->strToolTip; // 헬프 이중생성 방지 g_vecHelpInsKey.push_back( pHelpInstant->m_strHelpKey ); pHelpInstant->Initialize(); #endif //__HELP_BUG_FIX #endif } break; case WTBID_MIN: // 최소화 break; case WTBID_MAX: // 최대화 if( m_nWinSize == WSIZE_WINDOW ) SetSizeMax(); else SetSizeWnd(); break; case WTBID_CLOSE: // 종료 { #ifdef __CLIENT #ifndef __HELP_BUG_FIX // 헬프 이중생성 방지 if( GetWndId() == APP_HELP_INSTANT ) { CString strKey = ((CWndHelpInstant*)this)->m_strHelpKey; vector<CString>::iterator where = find(g_vecHelpInsKey.begin(), g_vecHelpInsKey.end(), strKey ); if(where != g_vecHelpInsKey.end()) g_vecHelpInsKey.erase(where); } #endif //__HELP_BUG_FIX #endif Destroy(); } break; } } return TRUE; } void CWndNeuz::SetSizeMax() { if( m_bFullMax ) { if( m_nWinSize == WSIZE_WINDOW ) { m_rectBackup = GetWindowRect(TRUE); CRect rect; CWndBase* pWndFull = m_pWndRoot->FindFullWnd(); if(pWndFull) rect = pWndFull->GetWindowRect(TRUE); //rect = pWndFull->GetLayoutRect( TRUE ); else if(IsWndStyle(WBS_CHILD)) rect = m_pParentWnd->GetClientRect(TRUE); else { //rect = m_pWndRoot->GetWindowRect(); rect = m_pWndRoot->GetLayoutRect(); //rect.left = rect.Width() - 200; } m_wndTitleBar.GetDlgItem( WTBID_MAX )->SetTitle( _T( "#" ) ); m_bFullWnd = TRUE; m_nWinSize = WSIZE_MAX; SetWndRect(rect); } } else if( m_nWinSize == WSIZE_WINDOW ) { m_rectBackup = GetWindowRect(TRUE); CRect rect; CWndBase* pWndFull = m_pWndRoot->FindFullWnd(); if(pWndFull) rect = pWndFull->GetWindowRect(TRUE); else if(IsWndStyle(WBS_CHILD)) rect = m_pParentWnd->GetClientRect(TRUE); else { //rect = m_pWndRoot->GetWindowRect(); rect = m_pWndRoot->GetLayoutRect(); rect.left = rect.Width() - 200; } SetWndRect(rect); m_wndTitleBar.GetDlgItem( WTBID_MAX )->SetTitle( _T( "#" ) ); AddWndStyle(WBS_MANAGER); m_bFullWnd = TRUE; m_nWinSize = 2; } } void CWndNeuz::SetSizeWnd() { if( m_bFullMax ) { if( m_nWinSize != WSIZE_WINDOW ) { m_nWinSize = WSIZE_WINDOW; SetWndRect(m_rectBackup); m_wndTitleBar.GetDlgItem( WTBID_MAX )->SetTitle( _T( "#" ) ); } } else { if( m_nWinSize != WSIZE_WINDOW ) { m_nWinSize = WSIZE_WINDOW; SetWndRect(m_rectBackup); m_wndTitleBar.GetDlgItem( WTBID_MAX )->SetTitle( _T( "#" ) ); DelWndStyle(WBS_MANAGER); } } } void CWndNeuz::OnSize(UINT nType, int cx, int cy) { if(IsWndRoot()) return; if( m_bTile ) //m_strTexture.IsEmpty() == FALSE ) { CRect rectWnd = GetWndRect(); CSize size2( rectWnd.Width(), rectWnd.Height() ); CSize sizeDiv = size2; sizeDiv.cx %= 16; sizeDiv.cy %= 16; size2.cx /= 16; size2.cx *= 16; size2.cy /= 16; size2.cy *= 16; if( sizeDiv.cx ) size2.cx += 16; if( sizeDiv.cy ) size2.cy += 16; rectWnd.bottom = rectWnd.top + size2.cy; rectWnd.right = rectWnd.left + size2.cx; SetWndRect( rectWnd, FALSE ); } AdjustWndBase(); m_wndTitleBar.Replace(); CWndBase::OnSize( nType, cx, cy ); // if( rectOld.Width() != m_rectClient.Width() || rectOld.Height() != m_rectClient.Height() ) // 차일드 윈도우들의 사이즈를 조절 /* for(int i = 0; i < m_wndArray.GetSize(); i++) { CWndBase* pWnd = (CWndBase*)m_wndArray.GetAt(i); if(pWnd->IsWndStyle(WBS_DOCKED))// && pWnd->IsWndStyle(WBS_CHILD)) { CRect rect = pWnd->GetWindowRect(TRUE); rect.SetRect(0,0,cx,cy); pWnd->SetWndRect(rect); } } */ /* if(IsWndStyle(WBS_DOCKED))// && IsWndStyle(WBS_CHILD)) { m_wndTitleBar.m_wndMinimize.SetVisible(FALSE); m_wndTitleBar.m_wndMaximize.SetVisible(FALSE); } */ } void CWndNeuz::OnNonClientLButtonDblClk( UINT nFlags, CPoint point ) { if( IsWndStyle( WBS_MAXIMIZEBOX ) ) OnChildNotify( WNM_CLICKED, WTBID_MAX, NULL ); } // 윈도 사이즈를 세팅한다. // 클라이언트 사이즈도 자동으로 조정된다. void CWndNeuz::SetWndRect( CRect rectWnd, BOOL bOnSize ) { CRect rectOld = m_rectClient; if( m_bFullMax && m_nWinSize == 2 ) { m_rectWindow = rectWnd; m_rectClient = m_rectWindow; if( bOnSize && ( rectOld.Width() != m_rectClient.Width() || rectOld.Height() != m_rectClient.Height() ) ) OnSize(0,m_rectClient.Width(),m_rectClient.Height()); } else CWndBase::SetWndRect( rectWnd, bOnSize ); } CWndBase* CWndNeuz::CreateControl( HWND hWnd, LPWNDCTRL lpWndCtrl ) { DWORD dwWndStyle = lpWndCtrl->dwWndStyle; CWndBase* pWndBase = NULL; switch( lpWndCtrl->dwWndType ) { case WTYPE_BUTTON: pWndBase = new CWndButton; ((CWndButton*)pWndBase)->Create( lpWndCtrl->strTitle, dwWndStyle, lpWndCtrl->rect, this, lpWndCtrl->dwWndId ); if( lpWndCtrl->strTexture.IsEmpty() == FALSE ) ((CWndButton*)pWndBase)->SetTexture( m_pApp->m_pd3dDevice, MakePath( DIR_THEME, lpWndCtrl->strTexture ), TRUE ); pWndBase->m_bTile = (lpWndCtrl->bTile != FALSE); ((CWndButton*)pWndBase)->SetGroup( lpWndCtrl->m_bGroup ); break; case WTYPE_TEXT: pWndBase = new CWndText; ((CWndText*)pWndBase)->Create( dwWndStyle, lpWndCtrl->rect, this, lpWndCtrl->dwWndId ); ((CWndText*)pWndBase)->m_string = lpWndCtrl->strTitle; if( lpWndCtrl->strTexture.IsEmpty() == FALSE ) ((CWndStatic*)pWndBase)->m_strTexture = lpWndCtrl->strTexture; pWndBase->m_bTile = (lpWndCtrl->bTile != FALSE); break; case WTYPE_STATIC: pWndBase = new CWndStatic; ((CWndStatic*)pWndBase)->Create( lpWndCtrl->strTitle, dwWndStyle | WBS_CAPTION, lpWndCtrl->rect, this, lpWndCtrl->dwWndId ); if( lpWndCtrl->strTexture.IsEmpty() == FALSE ) ((CWndStatic*)pWndBase)->m_strTexture = lpWndCtrl->strTexture; pWndBase->m_bTile = (lpWndCtrl->bTile != FALSE); break; case WTYPE_EDITCTRL: pWndBase = new CWndEdit; ((CWndEdit*)pWndBase)->Create( hWnd, dwWndStyle, lpWndCtrl->rect, this, lpWndCtrl->dwWndId ); //((CWndButton*)pWndBase)->Create( _T( "Button" ), 0, CRect( 0, 0, 100, 20), &m_dialogWnd, 10 ); if( lpWndCtrl->strTexture.IsEmpty() == FALSE ) ((CWndStatic*)pWndBase)->m_strTexture = lpWndCtrl->strTexture; pWndBase->m_bTile = (lpWndCtrl->bTile != FALSE); break; case WTYPE_LISTBOX: pWndBase = new CWndListBox; ((CWndListBox*)pWndBase)->Create( dwWndStyle, lpWndCtrl->rect, this, lpWndCtrl->dwWndId ); //((CWndButton*)pWndBase)->Create( _T( "Button" ), 0, CRect( 0, 0, 100, 20), &m_dialogWnd, 10 ); if( lpWndCtrl->strTexture.IsEmpty() == FALSE ) ((CWndStatic*)pWndBase)->m_strTexture = lpWndCtrl->strTexture; pWndBase->m_bTile = (lpWndCtrl->bTile != FALSE); break; case WTYPE_LISTCTRL: pWndBase = new CWndListCtrl; ((CWndListCtrl*)pWndBase)->Create( dwWndStyle, lpWndCtrl->rect, this, lpWndCtrl->dwWndId ); //((CWndButton*)pWndBase)->Create( _T( "Button" ), 0, CRect( 0, 0, 100, 20), &m_dialogWnd, 10 ); if( lpWndCtrl->strTexture.IsEmpty() == FALSE ) ((CWndStatic*)pWndBase)->m_strTexture = lpWndCtrl->strTexture; pWndBase->m_bTile = (lpWndCtrl->bTile != FALSE); break; case WTYPE_COMBOBOX: pWndBase = new CWndComboBox; ((CWndComboBox*)pWndBase)->Create( dwWndStyle, lpWndCtrl->rect, this, lpWndCtrl->dwWndId ); if( lpWndCtrl->strTexture.IsEmpty() == FALSE ) ((CWndStatic*)pWndBase)->m_strTexture = lpWndCtrl->strTexture; pWndBase->m_bTile = (lpWndCtrl->bTile != FALSE); break; case WTYPE_TABCTRL: pWndBase = new CWndTabCtrl; ((CWndTabCtrl*)pWndBase)->Create( dwWndStyle, lpWndCtrl->rect, this, lpWndCtrl->dwWndId ); //((CWndButton*)pWndBase)->Create( _T( "Button" ), 0, CRect( 0, 0, 100, 20), &m_dialogWnd, 10 ); break; case WTYPE_TREECTRL: pWndBase = new CWndTreeCtrl; ((CWndTreeCtrl*)pWndBase)->Create( dwWndStyle, lpWndCtrl->rect, this, lpWndCtrl->dwWndId ); //((CWndButton*)pWndBase)->Create( _T( "Button" ), 0, CRect( 0, 0, 100, 20), &m_dialogWnd, 10 ); if( lpWndCtrl->strTexture.IsEmpty() == FALSE ) ((CWndStatic*)pWndBase)->m_strTexture = lpWndCtrl->strTexture; pWndBase->m_bTile = (lpWndCtrl->bTile != FALSE); break; } if( pWndBase ) pWndBase->m_strToolTip = lpWndCtrl->strToolTip; return pWndBase; } /* BOOL CWndNeuz::InitDialog( HWND hWnd, LPWNDAPPLET LPWNDAPPLET ) { CRect rect(0,0,300,300); SetTitle( LPWNDAPPLET->strTitle ); BOOL bResult = CWndNeuz::Create( 0 | WBS_MOVE | WBS_SOUND | WBS_THICKFRAME | WBS_CAPTION, rect, NULL, LPWNDAPPLET->dwWndId); int i; for( i = 0; i < LPWNDAPPLET->ptrCtrlArray.GetSize(); i++ ) CreateControl( hWnd, (LPWNDCTRL)LPWNDAPPLET->ptrCtrlArray.GetAt( i ) ); return bResult; } */ BOOL CWndNeuz::InitDialog( HWND hWnd, DWORD dwWID, DWORD dwStyle, CPoint ptLeftTop, CWndBase* pWndParent ) { LPWNDAPPLET lpWndApplet = m_resMng.GetAt ( dwWID ); CRect rect; if(dwWID == APP_LOGIN) rect = CRect( ptLeftTop.x, ptLeftTop.y, ptLeftTop.x + lpWndApplet->size.cx, ptLeftTop.y + 200 ); else rect = CRect( ptLeftTop.x, ptLeftTop.y, ptLeftTop.x + lpWndApplet->size.cx, ptLeftTop.y + lpWndApplet->size.cy ); if( m_ptMouseCenter.x != -1 ) { GET_CLIENT_POINT( hWnd, point ); rect.OffsetRect( -point ); } //m_strToolTip = lpWndApplet->strToolTip; if( lpWndApplet->strToolTip.IsEmpty() ) return CWndNeuz::Create( lpWndApplet->dwWndStyle | dwStyle, rect, pWndParent, lpWndApplet->dwWndId ); return CWndNeuz::Create( lpWndApplet->dwWndStyle | dwStyle | WBS_HELP, rect, pWndParent, lpWndApplet->dwWndId ); } BOOL CWndNeuz::OnSetCursor( CWndBase* pWndBase, UINT nHitTest, UINT message ) { if( IsWndStyle( WBS_THICKFRAME ) && ( IsFullMax() == FALSE || m_nWinSize != WSIZE_MAX ) ) { if( m_bLButtonDown == FALSE ) { CPoint point = GetMousePoint(); ClientToScreen( &point ); CRect rectWindow = GetWindowRect( TRUE ); point -= rectWindow.TopLeft(); int nResizeDir = GetResizeDir( point ); if( nResizeDir ) { // 1 = top // 2 = bottom // 3 = left // 4 = right // 5 = topLeft // 6 = topRight // 7 = bottomLeft // 8 = bottomRigh; switch( nResizeDir ) { case 1: case 2: SetMouseCursor( CUR_RESIZE_VERT ); break; case 3: case 4: SetMouseCursor( CUR_RESIZE_HORI ); break; case 5: case 8: SetMouseCursor( CUR_RESIZE_HV1 ); break; case 6: case 7: SetMouseCursor( CUR_RESIZE_HV2 ); break; } } else CWndBase::OnSetCursor( pWndBase, nHitTest, message ); } } else CWndBase::OnSetCursor( pWndBase, nHitTest, message ); return TRUE; } //enum { IDD = IDD_PROP_APPLET_GENERAL };
[ "[email protected]@e2c90bd7-ee55-cca0-76d2-bbf4e3699278" ]
[ [ [ 1, 731 ] ] ]
0da3b2b8f44f9d74251e37aca9b03b779a98f0d9
d2996420f8c3a6bbeef63a311dd6adc4acc40436
/src/client/ClientObject.cpp
57ccc3403904a2e1333209ad981b1602d3258398
[]
no_license
aruwen/graviator
4d2e06e475492102fbf5d65754be33af641c0d6c
9a881db9bb0f0de2e38591478429626ab8030e1d
refs/heads/master
2021-01-19T00:13:10.843905
2011-03-13T13:15:25
2011-03-13T13:15:25
32,136,578
0
0
null
null
null
null
UTF-8
C++
false
false
966
cpp
#include "ClientObject.h" ClientObject::ClientObject(char type, vec3f position, vec3f alignment): mType(type), mPosition(position), mAlignment(alignment), mUpdated(true), mAge(0) { } ClientObject::~ClientObject(void) { } bool ClientObject::update(vec3f position, vec3f alignment) { mPosition = position; mAlignment = alignment; mUpdated = true; mAge = 0; return mUpdated; } bool ClientObject::isSameTypeAs(char type) { bool typeIsEqual = true; if (mType != type) typeIsEqual = false; return typeIsEqual; } void ClientObject::markAsRead() { mUpdated = false; } bool ClientObject::getUpdeted() { return mUpdated; } char ClientObject::getType() { return mType; } vec3f ClientObject::getPosition() { return mPosition; } vec3f ClientObject::getAlignment() { return mAlignment; } int ClientObject::getAge() { return mAge; } void ClientObject::incrementAge() { mAge++; }
[ "[email protected]@c8d5bfcc-1391-a108-90e5-e810ef6ef867" ]
[ [ [ 1, 67 ] ] ]
543443f2eaf0a409f89e7db33b6cd736e73e69bf
b7c505dcef43c0675fd89d428e45f3c2850b124f
/Src/ControllerQt/Views/ColorSpaceView.h
66d30d78fa61218c779f9682e53f549a5c05ac91
[ "BSD-2-Clause" ]
permissive
pranet/bhuman2009fork
14e473bd6e5d30af9f1745311d689723bfc5cfdb
82c1bd4485ae24043aa720a3aa7cb3e605b1a329
refs/heads/master
2021-01-15T17:55:37.058289
2010-02-28T13:52:56
2010-02-28T13:52:56
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
2,880
h
/** * @file ControllerQt/Views/ColorSpaceView.h * * Declaration of class ColorSpaceView * * @author <a href="mailto:[email protected]">Thomas Röfer</a> */ #ifndef ColorSpaceView_H #define ColorSpaceView_H #include "View3D.h" class RobotConsole; /** * @class ColorSpaceView * * A class to represent a view with information about the timing of modules. * * @author <a href="mailto:[email protected]">Thomas Röfer</a> */ class ColorSpaceView : public View3D { public: /** * The image formats available. */ enum ColorModel { YCbCr, RGB, TSL, HSI, user, numberOfColorModels }; /** * Constructor. * @param c The console object. * @param n The name of the image to display. * @param cm The color model in which the image should be displayed by this view. * @param ch The channel to display (1..3) or 0 to display all channels. * @param b The background color. */ ColorSpaceView(RobotConsole& c, const std::string& n, ColorModel cm, int ch, const Vector3<float>& b); /** * The function returns the name of a color model as string. * @param cm The color model. * @return The string representation of the name of the color model. */ static const char* getColorModelName(ColorModel cm) { static const char* names[] = {"YCbCr", "RGB", "TSL", "HSI", "user"}; return names[cm]; } /** * The function returns the name of a channel in a certain color model as string. * @param cm The color model. * @param channel The channel in the color model. * @return The string representation of the name of the channel in the color model. */ static const char* getChannelNameForColorModel(ColorModel cm, int channel) { static const char* names[][4] = { {"all", "Cb", "Y", "Cr"}, {"all", "R", "G", "B"}, {"all", "T", "S", "L"}, {"all", "H", "S", "I"}, {"all", "0", "1", "2"} }; return names[cm][channel]; } protected: /** * Update the display lists if required. */ virtual void updateDisplayLists(); /** * Need the display lists to be updated? * @return Yes or no? */ virtual bool needsUpdate() const; /** * The function returns the view distance. * @return The distance from which the scene is viewed. */ virtual double getViewDistance() const {return channel ? 5.0 : 8.0;} private: RobotConsole& console; /**< A reference to the console object. */ std::string name; /**< The name of the image. */ ColorModel colorModel; /**< The color model in which the image should be displayed by this view. */ int channel; /**< The channel to display (1..3) or 0 to display all channels. */ unsigned lastTimeStamp; /**< The frame number of last image that was drawn. */ }; #endif //ColorSpaceView_H
[ "alon@rogue.(none)" ]
[ [ [ 1, 106 ] ] ]
f2316d51c32a63ab29cbef75be9818db86d9b207
9426ad6e612863451ad7aac2ad8c8dd100a37a98
/Samples/smplComponent/Unknown.h
cf56c87f9db3eab8457a292c508be82998f236eb
[]
no_license
piroxiljin/ullib
61f7bd176c6088d42fd5aa38a4ba5d4825becd35
7072af667b6d91a3afd2f64310c6e1f3f6a055b1
refs/heads/master
2020-12-28T19:46:57.920199
2010-02-17T01:43:44
2010-02-17T01:43:44
57,068,293
0
0
null
2016-04-25T19:05:41
2016-04-25T19:05:41
null
UTF-8
C++
false
false
2,828
h
#ifndef __UNKNOWN_H__ #define __UNKNOWN_H__ #include <objbase.h> /////////////////////////////////////////////////////////// // // Nondelegating IUnknown interface // - Nondelegating version of IUnknown // interface INonDelegatingUnknown { virtual HRESULT __stdcall NonDelegatingQueryInterface(const IID& iid, void** ppv) = 0 ; virtual ULONG __stdcall NonDelegatingAddRef() = 0 ; virtual ULONG __stdcall NonDelegatingRelease() = 0 ; } ; /////////////////////////////////////////////////////////// // // Declaration of CUnknown // - Base class for implementing IUnknown // class CUnknown : public INonDelegatingUnknown { public: // Nondelegating IUnknown implementation virtual HRESULT __stdcall NonDelegatingQueryInterface(const IID&, void**) ; virtual ULONG __stdcall NonDelegatingAddRef() ; virtual ULONG __stdcall NonDelegatingRelease() ; // Constructor CUnknown(IUnknown* pUnknownOuter) ; // Destructor virtual ~CUnknown() ; // Initialization (especially for aggregates) virtual HRESULT Init() { return S_OK ;} // Notification to derived classes that we are releasing virtual void FinalRelease() ; // Count of currently active components static long ActiveComponents() { return s_cActiveComponents ;} // Helper function HRESULT FinishQI(IUnknown* pI, void** ppv) ; protected: // Support for delegation IUnknown* GetOuterUnknown() const { return m_pUnknownOuter ;} private: // Reference count for this object long m_cRef ; // Pointer to (external) outer IUnknown IUnknown* m_pUnknownOuter ; // Count of all active instances static long s_cActiveComponents ; } ; /////////////////////////////////////////////////////////// // // Delegating IUnknown // - Delegates to the nondelegating IUnknown, or to the // outer IUnknown if the component is aggregated. // #define DECLARE_IUNKNOWN \ virtual HRESULT __stdcall \ QueryInterface(const IID& iid, void** ppv) \ { \ return GetOuterUnknown()->QueryInterface(iid,ppv) ; \ } ; \ virtual ULONG __stdcall AddRef() \ { \ return GetOuterUnknown()->AddRef() ; \ } ; \ virtual ULONG __stdcall Release() \ { \ return GetOuterUnknown()->Release() ; \ } ; /////////////////////////////////////////////////////////// #endif//__UNKNOWN_H__
[ "UncleLab@a8b69a72-a546-0410-9fb4-5106a01aa11f" ]
[ [ [ 1, 96 ] ] ]
0b7ac558eeae7135267fa557a388bbb4ab1439c8
ab6fac7c23855a25067f126b9ca4123762a9e2cc
/domtext.h
7b50035293451960c90bdbca61bdd2bbe8756668
[]
no_license
icedman/axdom
e6595f293252cafbe9bb1062cf7271e0edd91bb0
170b095ac9b9a427ed23d724d2e3256b0cd8e2d5
refs/heads/master
2016-09-06T11:46:26.500571
2007-03-03T06:43:44
2007-03-03T06:43:44
35,222,867
0
1
null
null
null
null
UTF-8
C++
false
false
1,222
h
/* Version: MPL 1.1/GPL 2.0/LGPL 2.1 The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License")=0; you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. Copyright 2007 Marvin Sanchez http://code.google.com/u/m4rvin2005/ */ #ifndef AX_DOMTEXT #define AX_DOMTEXT #include <dom/domcfg.h> #include <dom/characterdata.h> namespace Dom { class DOM_CLASS_EXPORT DOMText : public CharacterData { public: DOMText* splitText(unsigned int offset) { return 0; } DOMText() { nodeName = "#text"; nodeType = TEXT_NODE; } DOMText(const DOMString* data) { nodeName = "#text"; nodeValue = (DOMCHAR*)data; nodeType = TEXT_NODE; } DOMText(DOMText *t) { nodeType = (NodeType)t->getNodeType(); nodeName = (DOMCHAR*)t->getNodeName(); nodeValue = (DOMCHAR*)t->getNodeValue(); } }; } #endif
[ "m4rvin2005@b6128d8e-bb2a-0410-8e4f-1757bdd5bb4d" ]
[ [ [ 1, 54 ] ] ]
3153dec5e7ca1bff834cfc93f84ea308fd3eb9bc
af3b3fd56239cddee37913ee4184e2c62b428659
/unix/thread/Event.h
6f607b2128beea8523b8e7220d7b1d9ab03a554f
[]
no_license
d3v3r4/clearcase-sponge
7c80405b58c2720777a008e67693869ea835b60e
699a1ef4874b9b9da2c84072774172d22c1d7369
refs/heads/master
2021-01-01T05:32:15.402646
2009-06-15T06:39:38
2009-06-15T06:39:38
41,874,171
0
0
null
null
null
null
UTF-8
C++
false
false
1,917
h
// Event.h #ifndef EVENT_H #define EVENT_H #include <base.h> #include <abstract/Lockable.h> #include <util/ErrMsg.h> #include <pthread.h> #include <time.h> /* * Unix implementation of an event for multithreaded signaling. Wrapper * around a pthread_cond_t and an associated pthread_mutex_t. */ class Event : public Lockable { public: /* * Creates the event and its associated mutex. */ Event(); /* * Deletes the event and mutex OS object. * * NOTE: This WILL FAIL if there is a thread waiting on the event. As * a destructor cannot safely throw an exception this will log an * error and kill the application on failure. */ ~Event(); /* * Locks the mutex used by this event. You must lock the mutex in * order to wait on the event. */ void lock(); /* * Unlocks the mutex used by this event. You must unlock the mutex * after waiting on the event. */ void unlock(); /* * Signals a thread waiting on this event. This restarts one of the * threads waiting on this event. */ void signal(); /* * Signals all threads waiting on this event. This restarts every thread * waiting on this event. * * NOTE: The OS scheduling policy determines the ordering in which they are * signaled and acquire the associated event mutex. */ void signalAll(); /* * Waits on this event and unlocks the associated mutex. You must first * call lock to lock the mutex. A call to wait should be followed by a call * to unlock as the mutex is automatically locked once more the thread is * signaled. */ void wait(); /* * Same as wait(), but with a timeout. */ void wait(int milliseconds); private: pthread_cond_t m_cond; // The pthread condition object that this class wraps pthread_mutex_t m_mutex;// The mutex used by the condition object }; #endif // EVENT_H
[ "scott.conger@2a29f4a4-5970-11de-9a1b-6103e4980ab8" ]
[ [ [ 1, 79 ] ] ]
062caaaa84ca64baa4beacab265e22a199299550
55196303f36aa20da255031a8f115b6af83e7d11
/include/bikini/base/variant.inl
81ce2bb9ceb056488776e45126fefb29587ee8e2
[]
no_license
Heartbroken/bikini
3f5447647d39587ffe15a7ae5badab3300d2a2ff
fe74f51a3a5d281c671d303632ff38be84d23dd7
refs/heads/master
2021-01-10T19:48:40.851837
2010-05-25T19:58:52
2010-05-25T19:58:52
37,190,932
0
0
null
null
null
null
UTF-8
C++
false
false
5,613
inl
/*---------------------------------------------------------------------------------------------*//* Binary Kinematics 3 - C++ Game Programming Library Copyright (C) 2008-2010 Viktor Reutskyy [email protected] *//*---------------------------------------------------------------------------------------------*/ #pragma once #ifdef _DEBUG template<typename _Typelist, uint _I> struct _typelist_item_ { typename _Typelist::item_<_I>::type value; }; template<typename _Typelist, uint _I = _Typelist::count> struct _typelist_walker_ : _typelist_walker_<_Typelist, _I - 1> { _typelist_item_<_Typelist, _I - 1> _; }; template<typename _Typelist> struct _typelist_walker_<_Typelist, 0> {}; #endif // _variant_helper_ template<typename _L, bool _D> struct _variant_helper_ { static inline void construct(handle &_h, uint _t, pointer _v) { _h = _L::construct(_t, _v); } static inline void destruct(handle &_h, uint _t) { _L::destruct(_h, _t, true); } }; template<typename _L> struct _variant_helper_<_L, false> { static inline void construct(handle _h, uint _t, pointer _v) { _L::construct(_h, _t, _v); } static inline void destruct(handle _h, uint _t) { _L::destruct(_h, _t, false); } }; template<typename _L, bool _D> inline variant_<_L, _D>::variant_() : m_type(bad_ID) { # ifdef _DEBUG static _typelist_walker_<types> l_types; # endif } template<typename _L, bool _D> inline variant_<_L, _D>::variant_(const variant_ &_v) : m_type(bad_ID) { construct(_v.type(), _v.data()); # ifdef _DEBUG static _typelist_walker_<types> l_types; # endif } template<typename _L, bool _D> template<typename _T> inline variant_<_L, _D>::variant_(const _T &_v) : m_type(bad_ID) { c_assert(_L::type_<_T>::exists); construct(_L::type_<_T>::index, &_v); # ifdef _DEBUG static _typelist_walker_<types> l_types; # endif } template<typename _L, bool _D> template<typename _L2, bool _D2> inline variant_<_L, _D>::variant_(const variant_<_L2, _D2> &_v) : m_type(bad_ID) { construct(_L::otherlist<_L2>::remap(_v.type()), _v.data()); # ifdef _DEBUG static _typelist_walker_<types> l_types; # endif } template<typename _L, bool _D> inline variant_<_L, _D>::~variant_() { destruct(); } template<typename _L, bool _D> inline uint variant_<_L, _D>::type() const { return m_type; } template<typename _L, bool _D> inline pointer variant_<_L, _D>::data() const { return m_data; } template<typename _L, bool _D> inline void variant_<_L, _D>::construct(uint _type, pointer _data) { assert(_type < _L::count || _type == bad_ID); destruct(); m_type = _type; if(_type != bad_ID) _variant_helper_<_L, _D>::construct(m_data, _type, _data); } template<typename _L, bool _D> inline void variant_<_L, _D>::destruct() { if(m_type == bad_ID) return; _variant_helper_<_L, _D>::destruct(m_data, m_type); m_type = bad_ID; } template<typename _L, bool _D> inline variant_<_L, _D>& variant_<_L, _D>::operator = (const variant_ &_v) { construct(_v.type(), _v.data()); return *this; } template<typename _L, bool _D> template<typename _T> inline variant_<_L, _D>& variant_<_L, _D>::operator = (const _T &_v) { c_assert(_L::type_<_T>::exists); construct(_L::type_<_T>::index, &_v); return *this; } template<typename _L, bool _D> template<typename _L2, bool _D2> inline variant_<_L, _D>& variant_<_L, _D>::operator = (const variant_<_L2, _D2> &_v) { construct(_L::otherlist_<_L2>::remap(_v.type()), _v.data()); return *this; } template<typename _L, bool _D> inline bool variant_<_L, _D>::operator == (const variant_ &_v) const { return m_type != bad_ID && m_type == _v.type() && _L::compare(m_type, m_data, _v.data()); } template<typename _L, bool _D> template<typename _T> inline bool variant_<_L, _D>::operator == (const _T &_v) const { return m_type != bad_ID && m_type == typelist::type_<_T>::index && _L::compare(m_type, m_data, &_v); } template<typename _L, bool _D> template<typename _L2, bool _D2> inline bool variant_<_L, _D>::operator == (const variant_<_L2, _D2> &_v) const { return m_type != bad_ID && m_type == _L::otherlist_<_L2>::remap(_v.type()) && _L::compare(m_type, m_data, _v.data()); } template<typename _L, bool _D> template<typename _T> inline bool variant_<_L, _D>::operator != (const _T &_v) const { return !(*this == _v); } template<typename _L, bool _D> template<typename _T> inline static bool variant_<_L, _D>::can_take() { return _L::type_<_T>::exists; } template<typename _L, bool _D> template<typename _T> inline static bool variant_<_L, _D>::can_take(const _T &_v) { return _L::type_<_T>::exists; } template<typename _L, bool _D> template<typename _L2, bool _D2> inline static bool variant_<_L, _D>::can_take(const variant_<_L2, _D2> &_v) { return _L::otherlist_<_L2>::remap(_v.type()) != bad_ID; } template<typename _L, bool _D> inline bool variant_<_L, _D>::is_nothing() const { return m_type == bad_ID; } template<typename _L, bool _D> template<typename _T> inline bool variant_<_L, _D>::is_() const { return !is_nothing() && _L::type_<_T>::index == m_type; } template<typename _L, bool _D> template<typename _T> inline _T& variant_<_L, _D>::get_() { return *reinterpret_cast<_T*>(m_data); } template<typename _L, bool _D> template<typename _T> inline const _T& variant_<_L, _D>::get_() const { return *reinterpret_cast<const _T*>(m_data); } template<typename _L, bool _D> template<typename _T> inline const _T& variant_<_L, _D>::def(const _T &_def) const { return is_<_T>() ? get_<_T>() : _def; }
[ "[email protected]", "viktor.reutskyy@68c2588f-494f-0410-aecb-65da31d84587" ]
[ [ [ 1, 3 ], [ 6, 10 ], [ 29, 30 ], [ 33, 36 ], [ 39, 43 ], [ 49, 50 ], [ 53, 53 ], [ 57, 58 ], [ 61, 62 ], [ 66, 67 ], [ 70, 70 ], [ 74, 75 ], [ 78, 80 ], [ 83, 85 ], [ 88, 90 ], [ 93, 98 ], [ 101, 105 ], [ 108, 111 ], [ 114, 118 ], [ 121, 124 ], [ 127, 129 ], [ 132, 134 ], [ 137, 139 ], [ 142, 144 ], [ 147, 149 ], [ 152, 154 ], [ 157, 159 ], [ 162, 164 ], [ 167, 169 ], [ 177, 179 ], [ 182, 183 ] ], [ [ 4, 5 ], [ 11, 28 ], [ 31, 32 ], [ 37, 38 ], [ 44, 48 ], [ 51, 52 ], [ 54, 56 ], [ 59, 60 ], [ 63, 65 ], [ 68, 69 ], [ 71, 73 ], [ 76, 77 ], [ 81, 82 ], [ 86, 87 ], [ 91, 92 ], [ 99, 100 ], [ 106, 107 ], [ 112, 113 ], [ 119, 120 ], [ 125, 126 ], [ 130, 131 ], [ 135, 136 ], [ 140, 141 ], [ 145, 146 ], [ 150, 151 ], [ 155, 156 ], [ 160, 161 ], [ 165, 166 ], [ 170, 176 ], [ 180, 181 ] ] ]
a9de5889cb1c73a67a5b9cd8c2e221ffad2877e0
67346d8d188dbf2a958520a7e80637481d15e676
/include/GameStateCredits.h
5d8ba5dc3b58b38a1ebc775de42b9891e3b705c2
[]
no_license
Alrin77/ndsgameengine
1a137621eb1b32849c179cd7f8c719c600b1a1f6
7afbb847273074ba0f7d3050322d7183c2b2c212
refs/heads/master
2016-09-03T07:30:11.105686
2010-12-04T22:05:16
2010-12-04T22:05:16
33,461,675
0
0
null
null
null
null
UTF-8
C++
false
false
252
h
#pragma once #include "GameState.h" class GameStateCredits : public GameState{ public: GameStateCredits(); ~GameStateCredits(); void Initialize(); void Update(); void Draw(); void Cleanup(); void Pause(); void Resume(); };
[ "[email protected]@21144042-5242-e64c-d35b-eb64d47aa59c" ]
[ [ [ 1, 17 ] ] ]
707a1a6678ef8560bc654a482744cd618d7e2ee2
42c3d7d1e3ea56c183a310ecb286ac4bb6c19224
/ffmpeg/ffmpeg/FFMPEGPlayer/inc/FFMPEGPlayerAppUi.h
b86cb29980ce9a4774c18d426b8a9a80087f7c43
[]
no_license
overshyn/SymFFMPEG
ce69e5e67c36d464b354592618eb15282d1a4f20
da88cb785da237e17ff1418757d77dd5888256a5
refs/heads/master
2021-01-15T22:29:06.807231
2011-05-11T21:52:29
2011-05-11T21:52:29
1,576,355
2
0
null
null
null
null
UTF-8
C++
false
false
1,836
h
/* ============================================================================ Name : FFMPEGPlayerAppUi.h Author : Alex Copyright : Your copyright notice Description : Declares UI class for application. ============================================================================ */ #ifndef __FFMPEGPLAYERAPPUI_h__ #define __FFMPEGPLAYERAPPUI_h__ // INCLUDES #include <aknappui.h> // FORWARD DECLARATIONS class CFFMPEGPlayerAppView; // CLASS DECLARATION /** * CFFMPEGPlayerAppUi application UI class. * Interacts with the user through the UI and request message processing * from the handler class */ class CFFMPEGPlayerAppUi : public CAknAppUi { public: // Constructors and destructor /** * ConstructL. * 2nd phase constructor. */ void ConstructL(); /** * CFFMPEGPlayerAppUi. * C++ default constructor. This needs to be public due to * the way the framework constructs the AppUi */ CFFMPEGPlayerAppUi(); /** * ~CFFMPEGPlayerAppUi. * Virtual Destructor. */ virtual ~CFFMPEGPlayerAppUi(); private: // Functions from base classes /** * From CEikAppUi, HandleCommandL. * Takes care of command handling. * @param aCommand Command to be handled. */ void HandleCommandL(TInt aCommand); /** * HandleStatusPaneSizeChange. * Called by the framework when the application status pane * size is changed. */ void HandleStatusPaneSizeChange(); /** * From CCoeAppUi, HelpContextL. * Provides help context for the application. * size is changed. */ CArrayFix<TCoeHelpContext>* HelpContextL() const; private: // Data /** * The application view * Owned by CFFMPEGPlayerAppUi */ CFFMPEGPlayerAppView* iAppView; }; #endif // __FFMPEGPLAYERAPPUI_h__ // End of File
[ [ [ 1, 85 ] ] ]
07275c8f841c04901edb3d00689eae330cbe3543
bf19f77fdef85e76a7ebdedfa04a207ba7afcada
/Base.h
13b5869bba9be28b6dc6647af6b09c6fa49f690c
[]
no_license
marvelman610/tmntactis
2aa3176d913a72ed985709843634933b80d7cb4a
a4e290960510e5f23ff7dbc1e805e130ee9bb57d
refs/heads/master
2020-12-24T13:36:54.332385
2010-07-12T08:08:12
2010-07-12T08:08:12
39,046,976
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
3,648
h
//////////////////////////////////////////////////////// // File Name : "Base.h" // // Author : Matthew Di Matteo (MD) // // Purpose : To encapsulate all shared data and functionality // for our game objects //////////////////////////////////////////////////////// #ifndef BASE_H #define BASE_H #include "IBaseInterface.h" #include "Tile.h" #include <vector> using std::vector; enum TYPE{ OBJECT_WEAPON, OBJECT_BATTLEITEM, OBJECT_BOSS, OBJECT_NINJA, OBJECT_TURTLE}; class CAnimation; class CBase : public IBaseInterface { private: int m_nImageID; int m_nState; char* m_szName; //vector<CAnimation> animations; float m_fPosX; float m_fPosY; float m_fVelX; float m_fVelY; int m_nWidth; int m_nHeight; int m_nHealthMax; int m_nHealth; int m_nLevel; int m_nStrength; int m_nDefense; int m_nAccuracy; int m_nSpeed; int m_nRange; int m_nBasePoints; int m_nCurrPoints; CTile m_pTileArray; protected: int m_nType; public: /////////////////////////////////////////////////////////////////// // Function: "Base(Constructor)" /////////////////////////////////////////////////////////////////// CBase(); /////////////////////////////////////////////////////////////////// // Function: "~Base(Destructor)" /////////////////////////////////////////////////////////////////// virtual ~CBase() {} ////////////////////////////////////// // Function: Accessors // // Purpose : To get the specified type /////////////////////////////////////// inline int GetImageID()const {return m_nImageID;} inline float GetPosX()const {return m_fPosX;} inline float GetPosY()const {return m_fPosY;} inline float GetVelX()const {return m_fVelX;} inline float GetVelY()const {return m_fVelY;} inline int GetWidth() const {return m_nWidth;} inline int GetHeight() const {return m_nHeight;} inline int GetType(){return m_nType;} ////////////////////////////////////// // Function: Mutators // // Purpose : To set the specified type /////////////////////////////////////// inline void SetImageID(int nImageID){m_nImageID = nImageID;} inline void SetPosX(float nPosX){m_fPosX = nPosX;} inline void SetPosY(float nPosY){m_fPosY = nPosY;} inline void SetVelX(float nVelX){m_fVelX = nVelX;} inline void SetVelY(float nVelY){m_fVelY = nVelY;} inline void SetWidth(int nWidth){m_nWidth = nWidth;} inline void SetHeight(int nHeight){m_nHeight = nHeight;} //////////////////////////////////////////////////////////////////// // Function: “Update” // // Purpose: Updates game objects based on time. //////////////////////////////////////////////////////////////////// virtual void Update(float fElapsedTime); //////////////////////////////////////////////////////////////////// // Function: “Render” // // Purpose: Draws game objects to the screen. //////////////////////////////////////////////////////////////////// virtual void Render(); //////////////////////////////////////////////////////////////////// // Function: “Release” // // Purpose: Decrements the count varible. If the variable reaches zero, // the pointer is no longer needed and is deleted. //////////////////////////////////////////////////////////////////// void Release() { } //////////////////////////////////////////////////////////////////// // Function: “Pathfind” // // Purpose: Will be used by all derived objects to do path finding. // //////////////////////////////////////////////////////////////////// vector<CTile> Pathfind(void); }; #endif
[ "marvelman610@7dc79cba-3e6d-11de-b8bc-ddcf2599578a" ]
[ [ [ 1, 132 ] ] ]
c878bd5c298a6cf39a57ba071d3e33d487c47ebd
91b964984762870246a2a71cb32187eb9e85d74e
/SRC/OFFI SRC!/boost_1_34_1/boost_1_34_1/libs/serialization/test/test_non_default_ctor2.cpp
e999b41b2700c7dc24358511389acef8562d7ab2
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
willrebuild/flyffsf
e5911fb412221e00a20a6867fd00c55afca593c7
d38cc11790480d617b38bb5fc50729d676aef80d
refs/heads/master
2021-01-19T20:27:35.200154
2011-02-10T12:34:43
2011-02-10T12:34:43
32,710,780
3
0
null
null
null
null
UTF-8
C++
false
false
3,319
cpp
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 // test_non_default_ctor2.cpp // (C) Copyright 2002 Martin Ecker. // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // should pass compilation and execution // this tests complex usage of non-default constructor. Specifically // the case where a constructor serializes a pointer member. #include <fstream> #include <cstdio> // for remove() #include <boost/config.hpp> #if defined(BOOST_NO_STDC_NAMESPACE) namespace std{ using ::remove; } #endif #include "test_tools.hpp" #include <boost/preprocessor/stringize.hpp> #include BOOST_PP_STRINGIZE(BOOST_ARCHIVE_TEST) class IntValueHolder { public: IntValueHolder() : value(0) {} IntValueHolder(int newvalue) : value(newvalue) {} int GetValue() const { return value; } private: int value; friend class boost::serialization::access; template <class ArchiveT> void serialize(ArchiveT& ar, const unsigned int /* file_version */) { ar & BOOST_SERIALIZATION_NVP(value); } }; class FloatValueHolder { public: FloatValueHolder() : value(0) {} FloatValueHolder(float newvalue) : value(newvalue) {} float GetValue() const { return value; } private: float value; friend class boost::serialization::access; template <class ArchiveT> void serialize(ArchiveT& ar, const unsigned int /* file_version */) { ar & BOOST_SERIALIZATION_NVP(value); } }; class A { public: A(const IntValueHolder& initialValue) : value(initialValue), floatValue(new FloatValueHolder(10.0f)) {} ~A() { delete floatValue; } IntValueHolder value; FloatValueHolder* floatValue; private: friend class boost::serialization::access; template <class ArchiveT> void serialize(ArchiveT& ar, const unsigned int /* file_version */) { ar & BOOST_SERIALIZATION_NVP(floatValue); } }; namespace boost { namespace serialization { template <class ArchiveT> void save_construct_data(ArchiveT& archive, const A* p, unsigned int version) { archive & boost::serialization::make_nvp("initialValue", p->value); } template <class ArchiveT> void load_construct_data(ArchiveT& archive, A* p, unsigned int version) { IntValueHolder initialValue; archive & boost::serialization::make_nvp("initialValue", initialValue); ::new (p) A(initialValue); } } // serialization } // namespace boost int test_main( int /* argc */, char* /* argv */[] ) { const char * testfile = boost::archive::tmpnam(NULL); BOOST_REQUIRE(NULL != testfile); A* a = new A(5); { test_ostream os(testfile, TEST_STREAM_FLAGS); test_oarchive oa(os); oa << BOOST_SERIALIZATION_NVP(a); } A* a_new; { test_istream is(testfile, TEST_STREAM_FLAGS); test_iarchive ia(is); ia >> BOOST_SERIALIZATION_NVP(a_new); } delete a; delete a_new; return EXIT_SUCCESS; }
[ "[email protected]@e2c90bd7-ee55-cca0-76d2-bbf4e3699278" ]
[ [ [ 1, 146 ] ] ]